blob: 69b80d078f06da6a6a9cbeaf6c3df68260453f46 [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"
Chris Wilson5d723d72016-08-04 16:32:35 +010037#include "intel_frontbuffer.h"
David Howells760285e2012-10-02 18:01:07 +010038#include <drm/i915_drm.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080039#include "i915_drv.h"
Chris Wilsonc37efb92016-06-17 08:28:47 +010040#include "i915_gem_dmabuf.h"
Imre Deakdb18b6a2016-03-24 12:41:40 +020041#include "intel_dsi.h"
Jesse Barnese5510fa2010-07-01 16:48:37 -070042#include "i915_trace.h"
Xi Ruoyao319c1d42015-03-12 20:16:32 +080043#include <drm/drm_atomic.h>
Matt Roperc196e1d2015-01-21 16:35:48 -080044#include <drm/drm_atomic_helper.h>
David Howells760285e2012-10-02 18:01:07 +010045#include <drm/drm_dp_helper.h>
46#include <drm/drm_crtc_helper.h>
Matt Roper465c1202014-05-29 08:06:54 -070047#include <drm/drm_plane_helper.h>
48#include <drm/drm_rect.h>
Keith Packardc0f372b32011-11-16 22:24:52 -080049#include <linux/dma_remapping.h>
Alex Goinsfd8e0582015-11-25 18:43:38 -080050#include <linux/reservation.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080051
Daniel Vetter5a21b662016-05-24 17:13:53 +020052static bool is_mmio_work(struct intel_flip_work *work)
53{
54 return work->mmio_work.func;
55}
56
Matt Roper465c1202014-05-29 08:06:54 -070057/* Primary plane formats for gen <= 3 */
Damien Lespiau568db4f2015-05-12 16:13:18 +010058static const uint32_t i8xx_primary_formats[] = {
Damien Lespiau67fe7dc2015-05-15 19:06:00 +010059 DRM_FORMAT_C8,
60 DRM_FORMAT_RGB565,
Matt Roper465c1202014-05-29 08:06:54 -070061 DRM_FORMAT_XRGB1555,
Damien Lespiau67fe7dc2015-05-15 19:06:00 +010062 DRM_FORMAT_XRGB8888,
Matt Roper465c1202014-05-29 08:06:54 -070063};
64
65/* Primary plane formats for gen >= 4 */
Damien Lespiau568db4f2015-05-12 16:13:18 +010066static const uint32_t i965_primary_formats[] = {
Damien Lespiau67fe7dc2015-05-15 19:06:00 +010067 DRM_FORMAT_C8,
68 DRM_FORMAT_RGB565,
69 DRM_FORMAT_XRGB8888,
Matt Roper465c1202014-05-29 08:06:54 -070070 DRM_FORMAT_XBGR8888,
Damien Lespiau6c0fd452015-05-19 12:29:16 +010071 DRM_FORMAT_XRGB2101010,
72 DRM_FORMAT_XBGR2101010,
73};
74
75static const uint32_t skl_primary_formats[] = {
76 DRM_FORMAT_C8,
77 DRM_FORMAT_RGB565,
78 DRM_FORMAT_XRGB8888,
79 DRM_FORMAT_XBGR8888,
Damien Lespiau67fe7dc2015-05-15 19:06:00 +010080 DRM_FORMAT_ARGB8888,
Matt Roper465c1202014-05-29 08:06:54 -070081 DRM_FORMAT_ABGR8888,
82 DRM_FORMAT_XRGB2101010,
Matt Roper465c1202014-05-29 08:06:54 -070083 DRM_FORMAT_XBGR2101010,
Kumar, Maheshea916ea2015-09-03 16:17:09 +053084 DRM_FORMAT_YUYV,
85 DRM_FORMAT_YVYU,
86 DRM_FORMAT_UYVY,
87 DRM_FORMAT_VYUY,
Matt Roper465c1202014-05-29 08:06:54 -070088};
89
Matt Roper3d7d6512014-06-10 08:28:13 -070090/* Cursor formats */
91static const uint32_t intel_cursor_formats[] = {
92 DRM_FORMAT_ARGB8888,
93};
94
Jesse Barnesf1f644d2013-06-27 00:39:25 +030095static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020096 struct intel_crtc_state *pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +030097static void ironlake_pch_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020098 struct intel_crtc_state *pipe_config);
Jesse Barnesf1f644d2013-06-27 00:39:25 +030099
Jesse Barneseb1bfe82014-02-12 12:26:25 -0800100static int intel_framebuffer_init(struct drm_device *dev,
101 struct intel_framebuffer *ifb,
102 struct drm_mode_fb_cmd2 *mode_cmd,
103 struct drm_i915_gem_object *obj);
Daniel Vetter5b18e572014-04-24 23:55:06 +0200104static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc);
105static void intel_set_pipe_timings(struct intel_crtc *intel_crtc);
Jani Nikulabc58be62016-03-18 17:05:39 +0200106static void intel_set_pipe_src_size(struct intel_crtc *intel_crtc);
Daniel Vetter29407aa2014-04-24 23:55:08 +0200107static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -0700108 struct intel_link_m_n *m_n,
109 struct intel_link_m_n *m2_n2);
Daniel Vetter29407aa2014-04-24 23:55:08 +0200110static void ironlake_set_pipeconf(struct drm_crtc *crtc);
Daniel Vetter229fca92014-04-24 23:55:09 +0200111static void haswell_set_pipeconf(struct drm_crtc *crtc);
Jani Nikula391bf042016-03-18 17:05:40 +0200112static void haswell_set_pipemisc(struct drm_crtc *crtc);
Ville Syrjäläd288f652014-10-28 13:20:22 +0200113static void vlv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200114 const struct intel_crtc_state *pipe_config);
Ville Syrjäläd288f652014-10-28 13:20:22 +0200115static void chv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200116 const struct intel_crtc_state *pipe_config);
Daniel Vetter5a21b662016-05-24 17:13:53 +0200117static void intel_begin_crtc_commit(struct drm_crtc *, struct drm_crtc_state *);
118static void intel_finish_crtc_commit(struct drm_crtc *, struct drm_crtc_state *);
Chandra Konduru549e2bf2015-04-07 15:28:38 -0700119static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
120 struct intel_crtc_state *crtc_state);
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +0200121static void skylake_pfit_enable(struct intel_crtc *crtc);
122static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force);
123static void ironlake_pfit_enable(struct intel_crtc *crtc);
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +0200124static void intel_modeset_setup_hw_state(struct drm_device *dev);
Ville Syrjälä2622a082016-03-09 19:07:26 +0200125static void intel_pre_disable_primary_noatomic(struct drm_crtc *crtc);
Ville Syrjälä4e5ca602016-05-11 22:44:44 +0300126static int ilk_max_pixel_rate(struct drm_atomic_state *state);
Imre Deak324513c2016-06-13 16:44:36 +0300127static int bxt_calc_cdclk(int max_pixclk);
Damien Lespiaue7457a92013-08-08 22:28:59 +0100128
Ma Lingd4906092009-03-18 20:13:27 +0800129struct intel_limit {
Ander Conselvan de Oliveira4c5def92016-05-04 12:11:58 +0300130 struct {
131 int min, max;
132 } dot, vco, n, m, m1, m2, p, p1;
133
134 struct {
135 int dot_limit;
136 int p2_slow, p2_fast;
137 } p2;
Ma Lingd4906092009-03-18 20:13:27 +0800138};
Jesse Barnes79e53942008-11-07 14:24:08 -0800139
Ville Syrjäläbfa7df02015-09-24 23:29:18 +0300140/* returns HPLL frequency in kHz */
141static int valleyview_get_vco(struct drm_i915_private *dev_priv)
142{
143 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
144
145 /* Obtain SKU information */
146 mutex_lock(&dev_priv->sb_lock);
147 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
148 CCK_FUSE_HPLL_FREQ_MASK;
149 mutex_unlock(&dev_priv->sb_lock);
150
151 return vco_freq[hpll_freq] * 1000;
152}
153
Ville Syrjäläc30fec62016-03-04 21:43:02 +0200154int vlv_get_cck_clock(struct drm_i915_private *dev_priv,
155 const char *name, u32 reg, int ref_freq)
Ville Syrjäläbfa7df02015-09-24 23:29:18 +0300156{
157 u32 val;
158 int divider;
159
Ville Syrjäläbfa7df02015-09-24 23:29:18 +0300160 mutex_lock(&dev_priv->sb_lock);
161 val = vlv_cck_read(dev_priv, reg);
162 mutex_unlock(&dev_priv->sb_lock);
163
164 divider = val & CCK_FREQUENCY_VALUES;
165
166 WARN((val & CCK_FREQUENCY_STATUS) !=
167 (divider << CCK_FREQUENCY_STATUS_SHIFT),
168 "%s change in progress\n", name);
169
Ville Syrjäläc30fec62016-03-04 21:43:02 +0200170 return DIV_ROUND_CLOSEST(ref_freq << 1, divider + 1);
171}
172
173static int vlv_get_cck_clock_hpll(struct drm_i915_private *dev_priv,
174 const char *name, u32 reg)
175{
176 if (dev_priv->hpll_freq == 0)
177 dev_priv->hpll_freq = valleyview_get_vco(dev_priv);
178
179 return vlv_get_cck_clock(dev_priv, name, reg,
180 dev_priv->hpll_freq);
Ville Syrjäläbfa7df02015-09-24 23:29:18 +0300181}
182
Ville Syrjäläe7dc33f2016-03-02 17:22:13 +0200183static int
184intel_pch_rawclk(struct drm_i915_private *dev_priv)
Daniel Vetterd2acd212012-10-20 20:57:43 +0200185{
Ville Syrjäläe7dc33f2016-03-02 17:22:13 +0200186 return (I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK) * 1000;
Daniel Vetterd2acd212012-10-20 20:57:43 +0200187}
188
Ville Syrjäläe7dc33f2016-03-02 17:22:13 +0200189static int
190intel_vlv_hrawclk(struct drm_i915_private *dev_priv)
Jani Nikula79e50a42015-08-26 10:58:20 +0300191{
Ville Syrjälä19ab4ed2016-04-27 17:43:22 +0300192 /* RAWCLK_FREQ_VLV register updated from power well code */
Ville Syrjälä35d38d12016-03-02 17:22:16 +0200193 return vlv_get_cck_clock_hpll(dev_priv, "hrawclk",
194 CCK_DISPLAY_REF_CLOCK_CONTROL);
Ville Syrjäläe7dc33f2016-03-02 17:22:13 +0200195}
196
197static int
198intel_g4x_hrawclk(struct drm_i915_private *dev_priv)
199{
Jani Nikula79e50a42015-08-26 10:58:20 +0300200 uint32_t clkcfg;
201
Ville Syrjäläe7dc33f2016-03-02 17:22:13 +0200202 /* hrawclock is 1/4 the FSB frequency */
Jani Nikula79e50a42015-08-26 10:58:20 +0300203 clkcfg = I915_READ(CLKCFG);
204 switch (clkcfg & CLKCFG_FSB_MASK) {
205 case CLKCFG_FSB_400:
Ville Syrjäläe7dc33f2016-03-02 17:22:13 +0200206 return 100000;
Jani Nikula79e50a42015-08-26 10:58:20 +0300207 case CLKCFG_FSB_533:
Ville Syrjäläe7dc33f2016-03-02 17:22:13 +0200208 return 133333;
Jani Nikula79e50a42015-08-26 10:58:20 +0300209 case CLKCFG_FSB_667:
Ville Syrjäläe7dc33f2016-03-02 17:22:13 +0200210 return 166667;
Jani Nikula79e50a42015-08-26 10:58:20 +0300211 case CLKCFG_FSB_800:
Ville Syrjäläe7dc33f2016-03-02 17:22:13 +0200212 return 200000;
Jani Nikula79e50a42015-08-26 10:58:20 +0300213 case CLKCFG_FSB_1067:
Ville Syrjäläe7dc33f2016-03-02 17:22:13 +0200214 return 266667;
Jani Nikula79e50a42015-08-26 10:58:20 +0300215 case CLKCFG_FSB_1333:
Ville Syrjäläe7dc33f2016-03-02 17:22:13 +0200216 return 333333;
Jani Nikula79e50a42015-08-26 10:58:20 +0300217 /* these two are just a guess; one of them might be right */
218 case CLKCFG_FSB_1600:
219 case CLKCFG_FSB_1600_ALT:
Ville Syrjäläe7dc33f2016-03-02 17:22:13 +0200220 return 400000;
Jani Nikula79e50a42015-08-26 10:58:20 +0300221 default:
Ville Syrjäläe7dc33f2016-03-02 17:22:13 +0200222 return 133333;
Jani Nikula79e50a42015-08-26 10:58:20 +0300223 }
224}
225
Ville Syrjälä19ab4ed2016-04-27 17:43:22 +0300226void intel_update_rawclk(struct drm_i915_private *dev_priv)
Ville Syrjäläe7dc33f2016-03-02 17:22:13 +0200227{
228 if (HAS_PCH_SPLIT(dev_priv))
229 dev_priv->rawclk_freq = intel_pch_rawclk(dev_priv);
230 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
231 dev_priv->rawclk_freq = intel_vlv_hrawclk(dev_priv);
232 else if (IS_G4X(dev_priv) || IS_PINEVIEW(dev_priv))
233 dev_priv->rawclk_freq = intel_g4x_hrawclk(dev_priv);
234 else
235 return; /* no rawclk on other platforms, or no need to know it */
236
237 DRM_DEBUG_DRIVER("rawclk rate: %d kHz\n", dev_priv->rawclk_freq);
238}
239
Ville Syrjäläbfa7df02015-09-24 23:29:18 +0300240static void intel_update_czclk(struct drm_i915_private *dev_priv)
241{
Wayne Boyer666a4532015-12-09 12:29:35 -0800242 if (!(IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)))
Ville Syrjäläbfa7df02015-09-24 23:29:18 +0300243 return;
244
245 dev_priv->czclk_freq = vlv_get_cck_clock_hpll(dev_priv, "czclk",
246 CCK_CZ_CLOCK_CONTROL);
247
248 DRM_DEBUG_DRIVER("CZ clock rate: %d kHz\n", dev_priv->czclk_freq);
249}
250
Chris Wilson021357a2010-09-07 20:54:59 +0100251static inline u32 /* units of 100MHz */
Ville Syrjälä21a727b2016-02-17 21:41:10 +0200252intel_fdi_link_freq(struct drm_i915_private *dev_priv,
253 const struct intel_crtc_state *pipe_config)
Chris Wilson021357a2010-09-07 20:54:59 +0100254{
Ville Syrjälä21a727b2016-02-17 21:41:10 +0200255 if (HAS_DDI(dev_priv))
256 return pipe_config->port_clock; /* SPLL */
257 else if (IS_GEN5(dev_priv))
258 return ((I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2) * 10000;
Ville Syrjäläe3b247d2016-02-17 21:41:09 +0200259 else
Ville Syrjälä21a727b2016-02-17 21:41:10 +0200260 return 270000;
Chris Wilson021357a2010-09-07 20:54:59 +0100261}
262
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300263static const struct intel_limit intel_limits_i8xx_dac = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400264 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200265 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200266 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400267 .m = { .min = 96, .max = 140 },
268 .m1 = { .min = 18, .max = 26 },
269 .m2 = { .min = 6, .max = 16 },
270 .p = { .min = 4, .max = 128 },
271 .p1 = { .min = 2, .max = 33 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700272 .p2 = { .dot_limit = 165000,
273 .p2_slow = 4, .p2_fast = 2 },
Keith Packarde4b36692009-06-05 19:22:17 -0700274};
275
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300276static const struct intel_limit intel_limits_i8xx_dvo = {
Daniel Vetter5d536e22013-07-06 12:52:06 +0200277 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200278 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200279 .n = { .min = 2, .max = 16 },
Daniel Vetter5d536e22013-07-06 12:52:06 +0200280 .m = { .min = 96, .max = 140 },
281 .m1 = { .min = 18, .max = 26 },
282 .m2 = { .min = 6, .max = 16 },
283 .p = { .min = 4, .max = 128 },
284 .p1 = { .min = 2, .max = 33 },
285 .p2 = { .dot_limit = 165000,
286 .p2_slow = 4, .p2_fast = 4 },
287};
288
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300289static const struct intel_limit intel_limits_i8xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400290 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200291 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200292 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400293 .m = { .min = 96, .max = 140 },
294 .m1 = { .min = 18, .max = 26 },
295 .m2 = { .min = 6, .max = 16 },
296 .p = { .min = 4, .max = 128 },
297 .p1 = { .min = 1, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700298 .p2 = { .dot_limit = 165000,
299 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700300};
Eric Anholt273e27c2011-03-30 13:01:10 -0700301
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300302static const struct intel_limit intel_limits_i9xx_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400303 .dot = { .min = 20000, .max = 400000 },
304 .vco = { .min = 1400000, .max = 2800000 },
305 .n = { .min = 1, .max = 6 },
306 .m = { .min = 70, .max = 120 },
Patrik Jakobsson4f7dfb62013-02-13 22:20:22 +0100307 .m1 = { .min = 8, .max = 18 },
308 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400309 .p = { .min = 5, .max = 80 },
310 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700311 .p2 = { .dot_limit = 200000,
312 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700313};
314
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300315static const struct intel_limit intel_limits_i9xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400316 .dot = { .min = 20000, .max = 400000 },
317 .vco = { .min = 1400000, .max = 2800000 },
318 .n = { .min = 1, .max = 6 },
319 .m = { .min = 70, .max = 120 },
Patrik Jakobsson53a7d2d2013-02-13 22:20:21 +0100320 .m1 = { .min = 8, .max = 18 },
321 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400322 .p = { .min = 7, .max = 98 },
323 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700324 .p2 = { .dot_limit = 112000,
325 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700326};
327
Eric Anholt273e27c2011-03-30 13:01:10 -0700328
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300329static const struct intel_limit intel_limits_g4x_sdvo = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700330 .dot = { .min = 25000, .max = 270000 },
331 .vco = { .min = 1750000, .max = 3500000},
332 .n = { .min = 1, .max = 4 },
333 .m = { .min = 104, .max = 138 },
334 .m1 = { .min = 17, .max = 23 },
335 .m2 = { .min = 5, .max = 11 },
336 .p = { .min = 10, .max = 30 },
337 .p1 = { .min = 1, .max = 3},
338 .p2 = { .dot_limit = 270000,
339 .p2_slow = 10,
340 .p2_fast = 10
Ma Ling044c7c42009-03-18 20:13:23 +0800341 },
Keith Packarde4b36692009-06-05 19:22:17 -0700342};
343
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300344static const struct intel_limit intel_limits_g4x_hdmi = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700345 .dot = { .min = 22000, .max = 400000 },
346 .vco = { .min = 1750000, .max = 3500000},
347 .n = { .min = 1, .max = 4 },
348 .m = { .min = 104, .max = 138 },
349 .m1 = { .min = 16, .max = 23 },
350 .m2 = { .min = 5, .max = 11 },
351 .p = { .min = 5, .max = 80 },
352 .p1 = { .min = 1, .max = 8},
353 .p2 = { .dot_limit = 165000,
354 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700355};
356
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300357static const struct intel_limit intel_limits_g4x_single_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700358 .dot = { .min = 20000, .max = 115000 },
359 .vco = { .min = 1750000, .max = 3500000 },
360 .n = { .min = 1, .max = 3 },
361 .m = { .min = 104, .max = 138 },
362 .m1 = { .min = 17, .max = 23 },
363 .m2 = { .min = 5, .max = 11 },
364 .p = { .min = 28, .max = 112 },
365 .p1 = { .min = 2, .max = 8 },
366 .p2 = { .dot_limit = 0,
367 .p2_slow = 14, .p2_fast = 14
Ma Ling044c7c42009-03-18 20:13:23 +0800368 },
Keith Packarde4b36692009-06-05 19:22:17 -0700369};
370
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300371static const struct intel_limit intel_limits_g4x_dual_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700372 .dot = { .min = 80000, .max = 224000 },
373 .vco = { .min = 1750000, .max = 3500000 },
374 .n = { .min = 1, .max = 3 },
375 .m = { .min = 104, .max = 138 },
376 .m1 = { .min = 17, .max = 23 },
377 .m2 = { .min = 5, .max = 11 },
378 .p = { .min = 14, .max = 42 },
379 .p1 = { .min = 2, .max = 6 },
380 .p2 = { .dot_limit = 0,
381 .p2_slow = 7, .p2_fast = 7
Ma Ling044c7c42009-03-18 20:13:23 +0800382 },
Keith Packarde4b36692009-06-05 19:22:17 -0700383};
384
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300385static const struct intel_limit intel_limits_pineview_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400386 .dot = { .min = 20000, .max = 400000},
387 .vco = { .min = 1700000, .max = 3500000 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700388 /* Pineview's Ncounter is a ring counter */
Akshay Joshi0206e352011-08-16 15:34:10 -0400389 .n = { .min = 3, .max = 6 },
390 .m = { .min = 2, .max = 256 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700391 /* Pineview only has one combined m divider, which we treat as m2. */
Akshay Joshi0206e352011-08-16 15:34:10 -0400392 .m1 = { .min = 0, .max = 0 },
393 .m2 = { .min = 0, .max = 254 },
394 .p = { .min = 5, .max = 80 },
395 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700396 .p2 = { .dot_limit = 200000,
397 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700398};
399
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300400static const struct intel_limit intel_limits_pineview_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400401 .dot = { .min = 20000, .max = 400000 },
402 .vco = { .min = 1700000, .max = 3500000 },
403 .n = { .min = 3, .max = 6 },
404 .m = { .min = 2, .max = 256 },
405 .m1 = { .min = 0, .max = 0 },
406 .m2 = { .min = 0, .max = 254 },
407 .p = { .min = 7, .max = 112 },
408 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700409 .p2 = { .dot_limit = 112000,
410 .p2_slow = 14, .p2_fast = 14 },
Keith Packarde4b36692009-06-05 19:22:17 -0700411};
412
Eric Anholt273e27c2011-03-30 13:01:10 -0700413/* Ironlake / Sandybridge
414 *
415 * We calculate clock using (register_value + 2) for N/M1/M2, so here
416 * the range value for them is (actual_value - 2).
417 */
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300418static const struct intel_limit intel_limits_ironlake_dac = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700419 .dot = { .min = 25000, .max = 350000 },
420 .vco = { .min = 1760000, .max = 3510000 },
421 .n = { .min = 1, .max = 5 },
422 .m = { .min = 79, .max = 127 },
423 .m1 = { .min = 12, .max = 22 },
424 .m2 = { .min = 5, .max = 9 },
425 .p = { .min = 5, .max = 80 },
426 .p1 = { .min = 1, .max = 8 },
427 .p2 = { .dot_limit = 225000,
428 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700429};
430
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300431static const struct intel_limit intel_limits_ironlake_single_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700432 .dot = { .min = 25000, .max = 350000 },
433 .vco = { .min = 1760000, .max = 3510000 },
434 .n = { .min = 1, .max = 3 },
435 .m = { .min = 79, .max = 118 },
436 .m1 = { .min = 12, .max = 22 },
437 .m2 = { .min = 5, .max = 9 },
438 .p = { .min = 28, .max = 112 },
439 .p1 = { .min = 2, .max = 8 },
440 .p2 = { .dot_limit = 225000,
441 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800442};
443
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300444static const struct intel_limit intel_limits_ironlake_dual_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700445 .dot = { .min = 25000, .max = 350000 },
446 .vco = { .min = 1760000, .max = 3510000 },
447 .n = { .min = 1, .max = 3 },
448 .m = { .min = 79, .max = 127 },
449 .m1 = { .min = 12, .max = 22 },
450 .m2 = { .min = 5, .max = 9 },
451 .p = { .min = 14, .max = 56 },
452 .p1 = { .min = 2, .max = 8 },
453 .p2 = { .dot_limit = 225000,
454 .p2_slow = 7, .p2_fast = 7 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800455};
456
Eric Anholt273e27c2011-03-30 13:01:10 -0700457/* LVDS 100mhz refclk limits. */
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300458static const struct intel_limit intel_limits_ironlake_single_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700459 .dot = { .min = 25000, .max = 350000 },
460 .vco = { .min = 1760000, .max = 3510000 },
461 .n = { .min = 1, .max = 2 },
462 .m = { .min = 79, .max = 126 },
463 .m1 = { .min = 12, .max = 22 },
464 .m2 = { .min = 5, .max = 9 },
465 .p = { .min = 28, .max = 112 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400466 .p1 = { .min = 2, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700467 .p2 = { .dot_limit = 225000,
468 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800469};
470
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300471static const struct intel_limit intel_limits_ironlake_dual_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700472 .dot = { .min = 25000, .max = 350000 },
473 .vco = { .min = 1760000, .max = 3510000 },
474 .n = { .min = 1, .max = 3 },
475 .m = { .min = 79, .max = 126 },
476 .m1 = { .min = 12, .max = 22 },
477 .m2 = { .min = 5, .max = 9 },
478 .p = { .min = 14, .max = 42 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400479 .p1 = { .min = 2, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700480 .p2 = { .dot_limit = 225000,
481 .p2_slow = 7, .p2_fast = 7 },
Zhao Yakui45476682009-12-31 16:06:04 +0800482};
483
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300484static const struct intel_limit intel_limits_vlv = {
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300485 /*
486 * These are the data rate limits (measured in fast clocks)
487 * since those are the strictest limits we have. The fast
488 * clock and actual rate limits are more relaxed, so checking
489 * them would make no difference.
490 */
491 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
Daniel Vetter75e53982013-04-18 21:10:43 +0200492 .vco = { .min = 4000000, .max = 6000000 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700493 .n = { .min = 1, .max = 7 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700494 .m1 = { .min = 2, .max = 3 },
495 .m2 = { .min = 11, .max = 156 },
Ville Syrjäläb99ab662013-09-24 21:26:26 +0300496 .p1 = { .min = 2, .max = 3 },
Ville Syrjälä5fdc9c492013-09-24 21:26:29 +0300497 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700498};
499
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300500static const struct intel_limit intel_limits_chv = {
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300501 /*
502 * These are the data rate limits (measured in fast clocks)
503 * since those are the strictest limits we have. The fast
504 * clock and actual rate limits are more relaxed, so checking
505 * them would make no difference.
506 */
507 .dot = { .min = 25000 * 5, .max = 540000 * 5},
Ville Syrjälä17fe1022015-02-26 21:01:52 +0200508 .vco = { .min = 4800000, .max = 6480000 },
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300509 .n = { .min = 1, .max = 1 },
510 .m1 = { .min = 2, .max = 2 },
511 .m2 = { .min = 24 << 22, .max = 175 << 22 },
512 .p1 = { .min = 2, .max = 4 },
513 .p2 = { .p2_slow = 1, .p2_fast = 14 },
514};
515
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300516static const struct intel_limit intel_limits_bxt = {
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200517 /* FIXME: find real dot limits */
518 .dot = { .min = 0, .max = INT_MAX },
Vandana Kannane6292552015-07-01 17:02:57 +0530519 .vco = { .min = 4800000, .max = 6700000 },
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200520 .n = { .min = 1, .max = 1 },
521 .m1 = { .min = 2, .max = 2 },
522 /* FIXME: find real m2 limits */
523 .m2 = { .min = 2 << 22, .max = 255 << 22 },
524 .p1 = { .min = 2, .max = 4 },
525 .p2 = { .p2_slow = 1, .p2_fast = 20 },
526};
527
Ander Conselvan de Oliveiracdba9542015-06-01 12:49:51 +0200528static bool
529needs_modeset(struct drm_crtc_state *state)
530{
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200531 return drm_atomic_crtc_needs_modeset(state);
Ander Conselvan de Oliveiracdba9542015-06-01 12:49:51 +0200532}
533
Imre Deakdccbea32015-06-22 23:35:51 +0300534/*
535 * Platform specific helpers to calculate the port PLL loopback- (clock.m),
536 * and post-divider (clock.p) values, pre- (clock.vco) and post-divided fast
537 * (clock.dot) clock rates. This fast dot clock is fed to the port's IO logic.
538 * The helpers' return value is the rate of the clock that is fed to the
539 * display engine's pipe which can be the above fast dot clock rate or a
540 * divided-down version of it.
541 */
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500542/* m1 is reserved as 0 in Pineview, n is a ring counter */
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +0300543static int pnv_calc_dpll_params(int refclk, struct dpll *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800544{
Shaohua Li21778322009-02-23 15:19:16 +0800545 clock->m = clock->m2 + 2;
546 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200547 if (WARN_ON(clock->n == 0 || clock->p == 0))
Imre Deakdccbea32015-06-22 23:35:51 +0300548 return 0;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300549 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
550 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Imre Deakdccbea32015-06-22 23:35:51 +0300551
552 return clock->dot;
Shaohua Li21778322009-02-23 15:19:16 +0800553}
554
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200555static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
556{
557 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
558}
559
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +0300560static int i9xx_calc_dpll_params(int refclk, struct dpll *clock)
Shaohua Li21778322009-02-23 15:19:16 +0800561{
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200562 clock->m = i9xx_dpll_compute_m(clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800563 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200564 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
Imre Deakdccbea32015-06-22 23:35:51 +0300565 return 0;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300566 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
567 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Imre Deakdccbea32015-06-22 23:35:51 +0300568
569 return clock->dot;
Jesse Barnes79e53942008-11-07 14:24:08 -0800570}
571
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +0300572static int vlv_calc_dpll_params(int refclk, struct dpll *clock)
Imre Deak589eca62015-06-22 23:35:50 +0300573{
574 clock->m = clock->m1 * clock->m2;
575 clock->p = clock->p1 * clock->p2;
576 if (WARN_ON(clock->n == 0 || clock->p == 0))
Imre Deakdccbea32015-06-22 23:35:51 +0300577 return 0;
Imre Deak589eca62015-06-22 23:35:50 +0300578 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
579 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Imre Deakdccbea32015-06-22 23:35:51 +0300580
581 return clock->dot / 5;
Imre Deak589eca62015-06-22 23:35:50 +0300582}
583
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +0300584int chv_calc_dpll_params(int refclk, struct dpll *clock)
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300585{
586 clock->m = clock->m1 * clock->m2;
587 clock->p = clock->p1 * clock->p2;
588 if (WARN_ON(clock->n == 0 || clock->p == 0))
Imre Deakdccbea32015-06-22 23:35:51 +0300589 return 0;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300590 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
591 clock->n << 22);
592 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Imre Deakdccbea32015-06-22 23:35:51 +0300593
594 return clock->dot / 5;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300595}
596
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800597#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800598/**
599 * Returns whether the given set of divisors are valid for a given refclk with
600 * the given connectors.
601 */
602
Chris Wilson1b894b52010-12-14 20:04:54 +0000603static bool intel_PLL_is_valid(struct drm_device *dev,
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300604 const struct intel_limit *limit,
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +0300605 const struct dpll *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800606{
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300607 if (clock->n < limit->n.min || limit->n.max < clock->n)
608 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800609 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400610 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800611 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400612 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800613 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400614 INTELPllInvalid("m1 out of range\n");
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300615
Wayne Boyer666a4532015-12-09 12:29:35 -0800616 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev) &&
617 !IS_CHERRYVIEW(dev) && !IS_BROXTON(dev))
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300618 if (clock->m1 <= clock->m2)
619 INTELPllInvalid("m1 <= m2\n");
620
Wayne Boyer666a4532015-12-09 12:29:35 -0800621 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) && !IS_BROXTON(dev)) {
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300622 if (clock->p < limit->p.min || limit->p.max < clock->p)
623 INTELPllInvalid("p out of range\n");
624 if (clock->m < limit->m.min || limit->m.max < clock->m)
625 INTELPllInvalid("m out of range\n");
626 }
627
Jesse Barnes79e53942008-11-07 14:24:08 -0800628 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400629 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800630 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
631 * connector, etc., rather than just a single range.
632 */
633 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400634 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800635
636 return true;
637}
638
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300639static int
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300640i9xx_select_p2_div(const struct intel_limit *limit,
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300641 const struct intel_crtc_state *crtc_state,
642 int target)
Jesse Barnes79e53942008-11-07 14:24:08 -0800643{
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300644 struct drm_device *dev = crtc_state->base.crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800645
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +0300646 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800647 /*
Daniel Vettera210b022012-11-26 17:22:08 +0100648 * For LVDS just rely on its current settings for dual-channel.
649 * We haven't figured out how to reliably set up different
650 * single/dual channel state, if we even can.
Jesse Barnes79e53942008-11-07 14:24:08 -0800651 */
Daniel Vetter1974cad2012-11-26 17:22:09 +0100652 if (intel_is_dual_link_lvds(dev))
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300653 return limit->p2.p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -0800654 else
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300655 return limit->p2.p2_slow;
Jesse Barnes79e53942008-11-07 14:24:08 -0800656 } else {
657 if (target < limit->p2.dot_limit)
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300658 return limit->p2.p2_slow;
Jesse Barnes79e53942008-11-07 14:24:08 -0800659 else
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300660 return limit->p2.p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -0800661 }
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300662}
663
Ander Conselvan de Oliveira70e8aa22016-03-21 18:00:16 +0200664/*
665 * Returns a set of divisors for the desired target clock with the given
666 * refclk, or FALSE. The returned values represent the clock equation:
667 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
668 *
669 * Target and reference clocks are specified in kHz.
670 *
671 * If match_clock is provided, then best_clock P divider must match the P
672 * divider from @match_clock used for LVDS downclocking.
673 */
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300674static bool
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300675i9xx_find_best_dpll(const struct intel_limit *limit,
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300676 struct intel_crtc_state *crtc_state,
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +0300677 int target, int refclk, struct dpll *match_clock,
678 struct dpll *best_clock)
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300679{
680 struct drm_device *dev = crtc_state->base.crtc->dev;
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +0300681 struct dpll clock;
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300682 int err = target;
Jesse Barnes79e53942008-11-07 14:24:08 -0800683
Akshay Joshi0206e352011-08-16 15:34:10 -0400684 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800685
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300686 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
687
Zhao Yakui42158662009-11-20 11:24:18 +0800688 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
689 clock.m1++) {
690 for (clock.m2 = limit->m2.min;
691 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterc0efc382013-06-03 20:56:24 +0200692 if (clock.m2 >= clock.m1)
Zhao Yakui42158662009-11-20 11:24:18 +0800693 break;
694 for (clock.n = limit->n.min;
695 clock.n <= limit->n.max; clock.n++) {
696 for (clock.p1 = limit->p1.min;
697 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800698 int this_err;
699
Imre Deakdccbea32015-06-22 23:35:51 +0300700 i9xx_calc_dpll_params(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000701 if (!intel_PLL_is_valid(dev, limit,
702 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800703 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800704 if (match_clock &&
705 clock.p != match_clock->p)
706 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800707
708 this_err = abs(clock.dot - target);
709 if (this_err < err) {
710 *best_clock = clock;
711 err = this_err;
712 }
713 }
714 }
715 }
716 }
717
718 return (err != target);
719}
720
Ander Conselvan de Oliveira70e8aa22016-03-21 18:00:16 +0200721/*
722 * Returns a set of divisors for the desired target clock with the given
723 * refclk, or FALSE. The returned values represent the clock equation:
724 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
725 *
726 * Target and reference clocks are specified in kHz.
727 *
728 * If match_clock is provided, then best_clock P divider must match the P
729 * divider from @match_clock used for LVDS downclocking.
730 */
Ma Lingd4906092009-03-18 20:13:27 +0800731static bool
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300732pnv_find_best_dpll(const struct intel_limit *limit,
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200733 struct intel_crtc_state *crtc_state,
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +0300734 int target, int refclk, struct dpll *match_clock,
735 struct dpll *best_clock)
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200736{
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300737 struct drm_device *dev = crtc_state->base.crtc->dev;
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +0300738 struct dpll clock;
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200739 int err = target;
740
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200741 memset(best_clock, 0, sizeof(*best_clock));
742
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300743 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
744
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200745 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
746 clock.m1++) {
747 for (clock.m2 = limit->m2.min;
748 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200749 for (clock.n = limit->n.min;
750 clock.n <= limit->n.max; clock.n++) {
751 for (clock.p1 = limit->p1.min;
752 clock.p1 <= limit->p1.max; clock.p1++) {
753 int this_err;
754
Imre Deakdccbea32015-06-22 23:35:51 +0300755 pnv_calc_dpll_params(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800756 if (!intel_PLL_is_valid(dev, limit,
757 &clock))
758 continue;
759 if (match_clock &&
760 clock.p != match_clock->p)
761 continue;
762
763 this_err = abs(clock.dot - target);
764 if (this_err < err) {
765 *best_clock = clock;
766 err = this_err;
767 }
768 }
769 }
770 }
771 }
772
773 return (err != target);
774}
775
Ander Conselvan de Oliveira997c0302016-03-21 18:00:12 +0200776/*
777 * Returns a set of divisors for the desired target clock with the given
778 * refclk, or FALSE. The returned values represent the clock equation:
779 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
Ander Conselvan de Oliveira70e8aa22016-03-21 18:00:16 +0200780 *
781 * Target and reference clocks are specified in kHz.
782 *
783 * If match_clock is provided, then best_clock P divider must match the P
784 * divider from @match_clock used for LVDS downclocking.
Ander Conselvan de Oliveira997c0302016-03-21 18:00:12 +0200785 */
Ma Lingd4906092009-03-18 20:13:27 +0800786static bool
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300787g4x_find_best_dpll(const struct intel_limit *limit,
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200788 struct intel_crtc_state *crtc_state,
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +0300789 int target, int refclk, struct dpll *match_clock,
790 struct dpll *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800791{
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300792 struct drm_device *dev = crtc_state->base.crtc->dev;
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +0300793 struct dpll clock;
Ma Lingd4906092009-03-18 20:13:27 +0800794 int max_n;
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300795 bool found = false;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400796 /* approximately equals target * 0.00585 */
797 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800798
799 memset(best_clock, 0, sizeof(*best_clock));
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300800
801 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
802
Ma Lingd4906092009-03-18 20:13:27 +0800803 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200804 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800805 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200806 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800807 for (clock.m1 = limit->m1.max;
808 clock.m1 >= limit->m1.min; clock.m1--) {
809 for (clock.m2 = limit->m2.max;
810 clock.m2 >= limit->m2.min; clock.m2--) {
811 for (clock.p1 = limit->p1.max;
812 clock.p1 >= limit->p1.min; clock.p1--) {
813 int this_err;
814
Imre Deakdccbea32015-06-22 23:35:51 +0300815 i9xx_calc_dpll_params(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000816 if (!intel_PLL_is_valid(dev, limit,
817 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800818 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000819
820 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800821 if (this_err < err_most) {
822 *best_clock = clock;
823 err_most = this_err;
824 max_n = clock.n;
825 found = true;
826 }
827 }
828 }
829 }
830 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800831 return found;
832}
Ma Lingd4906092009-03-18 20:13:27 +0800833
Imre Deakd5dd62b2015-03-17 11:40:03 +0200834/*
835 * Check if the calculated PLL configuration is more optimal compared to the
836 * best configuration and error found so far. Return the calculated error.
837 */
838static bool vlv_PLL_is_optimal(struct drm_device *dev, int target_freq,
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +0300839 const struct dpll *calculated_clock,
840 const struct dpll *best_clock,
Imre Deakd5dd62b2015-03-17 11:40:03 +0200841 unsigned int best_error_ppm,
842 unsigned int *error_ppm)
843{
Imre Deak9ca3ba02015-03-17 11:40:05 +0200844 /*
845 * For CHV ignore the error and consider only the P value.
846 * Prefer a bigger P value based on HW requirements.
847 */
848 if (IS_CHERRYVIEW(dev)) {
849 *error_ppm = 0;
850
851 return calculated_clock->p > best_clock->p;
852 }
853
Imre Deak24be4e42015-03-17 11:40:04 +0200854 if (WARN_ON_ONCE(!target_freq))
855 return false;
856
Imre Deakd5dd62b2015-03-17 11:40:03 +0200857 *error_ppm = div_u64(1000000ULL *
858 abs(target_freq - calculated_clock->dot),
859 target_freq);
860 /*
861 * Prefer a better P value over a better (smaller) error if the error
862 * is small. Ensure this preference for future configurations too by
863 * setting the error to 0.
864 */
865 if (*error_ppm < 100 && calculated_clock->p > best_clock->p) {
866 *error_ppm = 0;
867
868 return true;
869 }
870
871 return *error_ppm + 10 < best_error_ppm;
872}
873
Ander Conselvan de Oliveira65b3d6a2016-03-21 18:00:13 +0200874/*
875 * Returns a set of divisors for the desired target clock with the given
876 * refclk, or FALSE. The returned values represent the clock equation:
877 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
878 */
Zhenyu Wang2c072452009-06-05 15:38:42 +0800879static bool
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300880vlv_find_best_dpll(const struct intel_limit *limit,
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200881 struct intel_crtc_state *crtc_state,
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +0300882 int target, int refclk, struct dpll *match_clock,
883 struct dpll *best_clock)
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700884{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200885 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300886 struct drm_device *dev = crtc->base.dev;
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +0300887 struct dpll clock;
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300888 unsigned int bestppm = 1000000;
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300889 /* min update 19.2 MHz */
890 int max_n = min(limit->n.max, refclk / 19200);
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300891 bool found = false;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700892
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300893 target *= 5; /* fast clock */
894
895 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700896
897 /* based on hardware requirement, prefer smaller n to precision */
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300898 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Ville Syrjälä811bbf02013-09-24 21:26:25 +0300899 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
Ville Syrjälä889059d2013-09-24 21:26:27 +0300900 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
Ville Syrjäläc1a9ae42013-09-24 21:26:23 +0300901 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300902 clock.p = clock.p1 * clock.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700903 /* based on hardware requirement, prefer bigger m1,m2 values */
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300904 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
Imre Deakd5dd62b2015-03-17 11:40:03 +0200905 unsigned int ppm;
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300906
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300907 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
908 refclk * clock.m1);
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300909
Imre Deakdccbea32015-06-22 23:35:51 +0300910 vlv_calc_dpll_params(refclk, &clock);
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300911
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300912 if (!intel_PLL_is_valid(dev, limit,
913 &clock))
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300914 continue;
915
Imre Deakd5dd62b2015-03-17 11:40:03 +0200916 if (!vlv_PLL_is_optimal(dev, target,
917 &clock,
918 best_clock,
919 bestppm, &ppm))
920 continue;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300921
Imre Deakd5dd62b2015-03-17 11:40:03 +0200922 *best_clock = clock;
923 bestppm = ppm;
924 found = true;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700925 }
926 }
927 }
928 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700929
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300930 return found;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700931}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700932
Ander Conselvan de Oliveira65b3d6a2016-03-21 18:00:13 +0200933/*
934 * Returns a set of divisors for the desired target clock with the given
935 * refclk, or FALSE. The returned values represent the clock equation:
936 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
937 */
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300938static bool
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +0300939chv_find_best_dpll(const struct intel_limit *limit,
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200940 struct intel_crtc_state *crtc_state,
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +0300941 int target, int refclk, struct dpll *match_clock,
942 struct dpll *best_clock)
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300943{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200944 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300945 struct drm_device *dev = crtc->base.dev;
Imre Deak9ca3ba02015-03-17 11:40:05 +0200946 unsigned int best_error_ppm;
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +0300947 struct dpll clock;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300948 uint64_t m2;
949 int found = false;
950
951 memset(best_clock, 0, sizeof(*best_clock));
Imre Deak9ca3ba02015-03-17 11:40:05 +0200952 best_error_ppm = 1000000;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300953
954 /*
955 * Based on hardware doc, the n always set to 1, and m1 always
956 * set to 2. If requires to support 200Mhz refclk, we need to
957 * revisit this because n may not 1 anymore.
958 */
959 clock.n = 1, clock.m1 = 2;
960 target *= 5; /* fast clock */
961
962 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
963 for (clock.p2 = limit->p2.p2_fast;
964 clock.p2 >= limit->p2.p2_slow;
965 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
Imre Deak9ca3ba02015-03-17 11:40:05 +0200966 unsigned int error_ppm;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300967
968 clock.p = clock.p1 * clock.p2;
969
970 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
971 clock.n) << 22, refclk * clock.m1);
972
973 if (m2 > INT_MAX/clock.m1)
974 continue;
975
976 clock.m2 = m2;
977
Imre Deakdccbea32015-06-22 23:35:51 +0300978 chv_calc_dpll_params(refclk, &clock);
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300979
980 if (!intel_PLL_is_valid(dev, limit, &clock))
981 continue;
982
Imre Deak9ca3ba02015-03-17 11:40:05 +0200983 if (!vlv_PLL_is_optimal(dev, target, &clock, best_clock,
984 best_error_ppm, &error_ppm))
985 continue;
986
987 *best_clock = clock;
988 best_error_ppm = error_ppm;
989 found = true;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300990 }
991 }
992
993 return found;
994}
995
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200996bool bxt_find_best_dpll(struct intel_crtc_state *crtc_state, int target_clock,
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +0300997 struct dpll *best_clock)
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200998{
Ander Conselvan de Oliveira65b3d6a2016-03-21 18:00:13 +0200999 int refclk = 100000;
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +03001000 const struct intel_limit *limit = &intel_limits_bxt;
Imre Deak5ab7b0b2015-03-06 03:29:25 +02001001
Ander Conselvan de Oliveira65b3d6a2016-03-21 18:00:13 +02001002 return chv_find_best_dpll(limit, crtc_state,
Imre Deak5ab7b0b2015-03-06 03:29:25 +02001003 target_clock, refclk, NULL, best_clock);
1004}
1005
Ville Syrjälä20ddf662013-09-04 18:25:25 +03001006bool intel_crtc_active(struct drm_crtc *crtc)
1007{
1008 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1009
1010 /* Be paranoid as we can arrive here with only partial
1011 * state retrieved from the hardware during setup.
1012 *
Damien Lespiau241bfc32013-09-25 16:45:37 +01001013 * We can ditch the adjusted_mode.crtc_clock check as soon
Ville Syrjälä20ddf662013-09-04 18:25:25 +03001014 * as Haswell has gained clock readout/fastboot support.
1015 *
Dave Airlie66e514c2014-04-03 07:51:54 +10001016 * We can ditch the crtc->primary->fb check as soon as we can
Ville Syrjälä20ddf662013-09-04 18:25:25 +03001017 * properly reconstruct framebuffers.
Matt Roperc3d1f432015-03-09 10:19:23 -07001018 *
1019 * FIXME: The intel_crtc->active here should be switched to
1020 * crtc->state->active once we have proper CRTC states wired up
1021 * for atomic.
Ville Syrjälä20ddf662013-09-04 18:25:25 +03001022 */
Matt Roperc3d1f432015-03-09 10:19:23 -07001023 return intel_crtc->active && crtc->primary->state->fb &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001024 intel_crtc->config->base.adjusted_mode.crtc_clock;
Ville Syrjälä20ddf662013-09-04 18:25:25 +03001025}
1026
Paulo Zanonia5c961d2012-10-24 15:59:34 -02001027enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
1028 enum pipe pipe)
1029{
1030 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
1031 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1032
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001033 return intel_crtc->config->cpu_transcoder;
Paulo Zanonia5c961d2012-10-24 15:59:34 -02001034}
1035
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +03001036static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
1037{
Chris Wilsonfac5e232016-07-04 11:34:36 +01001038 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001039 i915_reg_t reg = PIPEDSL(pipe);
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +03001040 u32 line1, line2;
1041 u32 line_mask;
1042
1043 if (IS_GEN2(dev))
1044 line_mask = DSL_LINEMASK_GEN2;
1045 else
1046 line_mask = DSL_LINEMASK_GEN3;
1047
1048 line1 = I915_READ(reg) & line_mask;
Daniel Vetter6adfb1e2015-07-07 09:10:40 +02001049 msleep(5);
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +03001050 line2 = I915_READ(reg) & line_mask;
1051
1052 return line1 == line2;
1053}
1054
Keith Packardab7ad7f2010-10-03 00:33:06 -07001055/*
1056 * intel_wait_for_pipe_off - wait for pipe to turn off
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001057 * @crtc: crtc whose pipe to wait for
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001058 *
1059 * After disabling a pipe, we can't wait for vblank in the usual way,
1060 * spinning on the vblank interrupt status bit, since we won't actually
1061 * see an interrupt when the pipe is disabled.
1062 *
Keith Packardab7ad7f2010-10-03 00:33:06 -07001063 * On Gen4 and above:
1064 * wait for the pipe register state bit to turn off
1065 *
1066 * Otherwise:
1067 * wait for the display line value to settle (it usually
1068 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +01001069 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001070 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001071static void intel_wait_for_pipe_off(struct intel_crtc *crtc)
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001072{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001073 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001074 struct drm_i915_private *dev_priv = to_i915(dev);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001075 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001076 enum pipe pipe = crtc->pipe;
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001077
Keith Packardab7ad7f2010-10-03 00:33:06 -07001078 if (INTEL_INFO(dev)->gen >= 4) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001079 i915_reg_t reg = PIPECONF(cpu_transcoder);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001080
Keith Packardab7ad7f2010-10-03 00:33:06 -07001081 /* Wait for the Pipe State to go off */
Chris Wilsonb8511f52016-06-30 15:32:53 +01001082 if (intel_wait_for_register(dev_priv,
1083 reg, I965_PIPECONF_ACTIVE, 0,
1084 100))
Daniel Vetter284637d2012-07-09 09:51:57 +02001085 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -07001086 } else {
Keith Packardab7ad7f2010-10-03 00:33:06 -07001087 /* Wait for the display line to settle */
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +03001088 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
Daniel Vetter284637d2012-07-09 09:51:57 +02001089 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -07001090 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001091}
1092
Jesse Barnesb24e7172011-01-04 15:09:30 -08001093/* Only for pre-ILK configs */
Daniel Vetter55607e82013-06-16 21:42:39 +02001094void assert_pll(struct drm_i915_private *dev_priv,
1095 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001096{
Jesse Barnesb24e7172011-01-04 15:09:30 -08001097 u32 val;
1098 bool cur_state;
1099
Ville Syrjälä649636e2015-09-22 19:50:01 +03001100 val = I915_READ(DPLL(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001101 cur_state = !!(val & DPLL_VCO_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001102 I915_STATE_WARN(cur_state != state,
Jesse Barnesb24e7172011-01-04 15:09:30 -08001103 "PLL state assertion failure (expected %s, current %s)\n",
Jani Nikula87ad3212016-01-14 12:53:34 +02001104 onoff(state), onoff(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001105}
Jesse Barnesb24e7172011-01-04 15:09:30 -08001106
Jani Nikula23538ef2013-08-27 15:12:22 +03001107/* XXX: the dsi pll is shared between MIPI DSI ports */
Lionel Landwerlin8563b1e2016-03-16 10:57:14 +00001108void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
Jani Nikula23538ef2013-08-27 15:12:22 +03001109{
1110 u32 val;
1111 bool cur_state;
1112
Ville Syrjäläa5805162015-05-26 20:42:30 +03001113 mutex_lock(&dev_priv->sb_lock);
Jani Nikula23538ef2013-08-27 15:12:22 +03001114 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
Ville Syrjäläa5805162015-05-26 20:42:30 +03001115 mutex_unlock(&dev_priv->sb_lock);
Jani Nikula23538ef2013-08-27 15:12:22 +03001116
1117 cur_state = val & DSI_PLL_VCO_EN;
Rob Clarke2c719b2014-12-15 13:56:32 -05001118 I915_STATE_WARN(cur_state != state,
Jani Nikula23538ef2013-08-27 15:12:22 +03001119 "DSI PLL state assertion failure (expected %s, current %s)\n",
Jani Nikula87ad3212016-01-14 12:53:34 +02001120 onoff(state), onoff(cur_state));
Jani Nikula23538ef2013-08-27 15:12:22 +03001121}
Jani Nikula23538ef2013-08-27 15:12:22 +03001122
Jesse Barnes040484a2011-01-03 12:14:26 -08001123static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1124 enum pipe pipe, bool state)
1125{
Jesse Barnes040484a2011-01-03 12:14:26 -08001126 bool cur_state;
Paulo Zanoniad80a812012-10-24 16:06:19 -02001127 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1128 pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001129
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001130 if (HAS_DDI(dev_priv)) {
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001131 /* DDI does not have a specific FDI_TX register */
Ville Syrjälä649636e2015-09-22 19:50:01 +03001132 u32 val = I915_READ(TRANS_DDI_FUNC_CTL(cpu_transcoder));
Paulo Zanoniad80a812012-10-24 16:06:19 -02001133 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001134 } else {
Ville Syrjälä649636e2015-09-22 19:50:01 +03001135 u32 val = I915_READ(FDI_TX_CTL(pipe));
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001136 cur_state = !!(val & FDI_TX_ENABLE);
1137 }
Rob Clarke2c719b2014-12-15 13:56:32 -05001138 I915_STATE_WARN(cur_state != state,
Jesse Barnes040484a2011-01-03 12:14:26 -08001139 "FDI TX state assertion failure (expected %s, current %s)\n",
Jani Nikula87ad3212016-01-14 12:53:34 +02001140 onoff(state), onoff(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001141}
1142#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1143#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1144
1145static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1146 enum pipe pipe, bool state)
1147{
Jesse Barnes040484a2011-01-03 12:14:26 -08001148 u32 val;
1149 bool cur_state;
1150
Ville Syrjälä649636e2015-09-22 19:50:01 +03001151 val = I915_READ(FDI_RX_CTL(pipe));
Paulo Zanonid63fa0d2012-11-20 13:27:35 -02001152 cur_state = !!(val & FDI_RX_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001153 I915_STATE_WARN(cur_state != state,
Jesse Barnes040484a2011-01-03 12:14:26 -08001154 "FDI RX state assertion failure (expected %s, current %s)\n",
Jani Nikula87ad3212016-01-14 12:53:34 +02001155 onoff(state), onoff(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001156}
1157#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1158#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1159
1160static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1161 enum pipe pipe)
1162{
Jesse Barnes040484a2011-01-03 12:14:26 -08001163 u32 val;
1164
1165 /* ILK FDI PLL is always enabled */
Tvrtko Ursulin7e22dbb2016-05-10 10:57:06 +01001166 if (IS_GEN5(dev_priv))
Jesse Barnes040484a2011-01-03 12:14:26 -08001167 return;
1168
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001169 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001170 if (HAS_DDI(dev_priv))
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001171 return;
1172
Ville Syrjälä649636e2015-09-22 19:50:01 +03001173 val = I915_READ(FDI_TX_CTL(pipe));
Rob Clarke2c719b2014-12-15 13:56:32 -05001174 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 -08001175}
1176
Daniel Vetter55607e82013-06-16 21:42:39 +02001177void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1178 enum pipe pipe, bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001179{
Jesse Barnes040484a2011-01-03 12:14:26 -08001180 u32 val;
Daniel Vetter55607e82013-06-16 21:42:39 +02001181 bool cur_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001182
Ville Syrjälä649636e2015-09-22 19:50:01 +03001183 val = I915_READ(FDI_RX_CTL(pipe));
Daniel Vetter55607e82013-06-16 21:42:39 +02001184 cur_state = !!(val & FDI_RX_PLL_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001185 I915_STATE_WARN(cur_state != state,
Daniel Vetter55607e82013-06-16 21:42:39 +02001186 "FDI RX PLL assertion failure (expected %s, current %s)\n",
Jani Nikula87ad3212016-01-14 12:53:34 +02001187 onoff(state), onoff(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001188}
1189
Daniel Vetterb680c372014-09-19 18:27:27 +02001190void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1191 enum pipe pipe)
Jesse Barnesea0760c2011-01-04 15:09:32 -08001192{
Chris Wilson91c8a322016-07-05 10:40:23 +01001193 struct drm_device *dev = &dev_priv->drm;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001194 i915_reg_t pp_reg;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001195 u32 val;
1196 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001197 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001198
Jani Nikulabedd4db2014-08-22 15:04:13 +03001199 if (WARN_ON(HAS_DDI(dev)))
1200 return;
1201
1202 if (HAS_PCH_SPLIT(dev)) {
1203 u32 port_sel;
1204
Imre Deak44cb7342016-08-10 14:07:29 +03001205 pp_reg = PP_CONTROL(0);
1206 port_sel = I915_READ(PP_ON_DELAYS(0)) & PANEL_PORT_SELECT_MASK;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001207
1208 if (port_sel == PANEL_PORT_SELECT_LVDS &&
1209 I915_READ(PCH_LVDS) & LVDS_PIPEB_SELECT)
1210 panel_pipe = PIPE_B;
1211 /* XXX: else fix for eDP */
Wayne Boyer666a4532015-12-09 12:29:35 -08001212 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Jani Nikulabedd4db2014-08-22 15:04:13 +03001213 /* presumably write lock depends on pipe, not port select */
Imre Deak44cb7342016-08-10 14:07:29 +03001214 pp_reg = PP_CONTROL(pipe);
Jani Nikulabedd4db2014-08-22 15:04:13 +03001215 panel_pipe = pipe;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001216 } else {
Imre Deak44cb7342016-08-10 14:07:29 +03001217 pp_reg = PP_CONTROL(0);
Jani Nikulabedd4db2014-08-22 15:04:13 +03001218 if (I915_READ(LVDS) & LVDS_PIPEB_SELECT)
1219 panel_pipe = PIPE_B;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001220 }
1221
1222 val = I915_READ(pp_reg);
1223 if (!(val & PANEL_POWER_ON) ||
Jani Nikulaec49ba22014-08-21 15:06:25 +03001224 ((val & PANEL_UNLOCK_MASK) == PANEL_UNLOCK_REGS))
Jesse Barnesea0760c2011-01-04 15:09:32 -08001225 locked = false;
1226
Rob Clarke2c719b2014-12-15 13:56:32 -05001227 I915_STATE_WARN(panel_pipe == pipe && locked,
Jesse Barnesea0760c2011-01-04 15:09:32 -08001228 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001229 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001230}
1231
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001232static void assert_cursor(struct drm_i915_private *dev_priv,
1233 enum pipe pipe, bool state)
1234{
Chris Wilson91c8a322016-07-05 10:40:23 +01001235 struct drm_device *dev = &dev_priv->drm;
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001236 bool cur_state;
1237
Paulo Zanonid9d82082014-02-27 16:30:56 -03001238 if (IS_845G(dev) || IS_I865G(dev))
Ville Syrjälä0b87c242015-09-22 19:47:51 +03001239 cur_state = I915_READ(CURCNTR(PIPE_A)) & CURSOR_ENABLE;
Paulo Zanonid9d82082014-02-27 16:30:56 -03001240 else
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03001241 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001242
Rob Clarke2c719b2014-12-15 13:56:32 -05001243 I915_STATE_WARN(cur_state != state,
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001244 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
Jani Nikula87ad3212016-01-14 12:53:34 +02001245 pipe_name(pipe), onoff(state), onoff(cur_state));
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001246}
1247#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1248#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1249
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001250void assert_pipe(struct drm_i915_private *dev_priv,
1251 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001252{
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001253 bool cur_state;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001254 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1255 pipe);
Imre Deak4feed0e2016-02-12 18:55:14 +02001256 enum intel_display_power_domain power_domain;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001257
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001258 /* if we need the pipe quirk it must be always on */
1259 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1260 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Daniel Vetter8e636782012-01-22 01:36:48 +01001261 state = true;
1262
Imre Deak4feed0e2016-02-12 18:55:14 +02001263 power_domain = POWER_DOMAIN_TRANSCODER(cpu_transcoder);
1264 if (intel_display_power_get_if_enabled(dev_priv, power_domain)) {
Ville Syrjälä649636e2015-09-22 19:50:01 +03001265 u32 val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni69310162013-01-29 16:35:19 -02001266 cur_state = !!(val & PIPECONF_ENABLE);
Imre Deak4feed0e2016-02-12 18:55:14 +02001267
1268 intel_display_power_put(dev_priv, power_domain);
1269 } else {
1270 cur_state = false;
Paulo Zanoni69310162013-01-29 16:35:19 -02001271 }
1272
Rob Clarke2c719b2014-12-15 13:56:32 -05001273 I915_STATE_WARN(cur_state != state,
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001274 "pipe %c assertion failure (expected %s, current %s)\n",
Jani Nikula87ad3212016-01-14 12:53:34 +02001275 pipe_name(pipe), onoff(state), onoff(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001276}
1277
Chris Wilson931872f2012-01-16 23:01:13 +00001278static void assert_plane(struct drm_i915_private *dev_priv,
1279 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001280{
Jesse Barnesb24e7172011-01-04 15:09:30 -08001281 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001282 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001283
Ville Syrjälä649636e2015-09-22 19:50:01 +03001284 val = I915_READ(DSPCNTR(plane));
Chris Wilson931872f2012-01-16 23:01:13 +00001285 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001286 I915_STATE_WARN(cur_state != state,
Chris Wilson931872f2012-01-16 23:01:13 +00001287 "plane %c assertion failure (expected %s, current %s)\n",
Jani Nikula87ad3212016-01-14 12:53:34 +02001288 plane_name(plane), onoff(state), onoff(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001289}
1290
Chris Wilson931872f2012-01-16 23:01:13 +00001291#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1292#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1293
Jesse Barnesb24e7172011-01-04 15:09:30 -08001294static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1295 enum pipe pipe)
1296{
Chris Wilson91c8a322016-07-05 10:40:23 +01001297 struct drm_device *dev = &dev_priv->drm;
Ville Syrjälä649636e2015-09-22 19:50:01 +03001298 int i;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001299
Ville Syrjälä653e1022013-06-04 13:49:05 +03001300 /* Primary planes are fixed to pipes on gen4+ */
1301 if (INTEL_INFO(dev)->gen >= 4) {
Ville Syrjälä649636e2015-09-22 19:50:01 +03001302 u32 val = I915_READ(DSPCNTR(pipe));
Rob Clarke2c719b2014-12-15 13:56:32 -05001303 I915_STATE_WARN(val & DISPLAY_PLANE_ENABLE,
Adam Jackson28c057942011-10-07 14:38:42 -04001304 "plane %c assertion failure, should be disabled but not\n",
1305 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001306 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001307 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001308
Jesse Barnesb24e7172011-01-04 15:09:30 -08001309 /* Need to check both planes against the pipe */
Damien Lespiau055e3932014-08-18 13:49:10 +01001310 for_each_pipe(dev_priv, i) {
Ville Syrjälä649636e2015-09-22 19:50:01 +03001311 u32 val = I915_READ(DSPCNTR(i));
1312 enum pipe cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
Jesse Barnesb24e7172011-01-04 15:09:30 -08001313 DISPPLANE_SEL_PIPE_SHIFT;
Rob Clarke2c719b2014-12-15 13:56:32 -05001314 I915_STATE_WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001315 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1316 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001317 }
1318}
1319
Jesse Barnes19332d72013-03-28 09:55:38 -07001320static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1321 enum pipe pipe)
1322{
Chris Wilson91c8a322016-07-05 10:40:23 +01001323 struct drm_device *dev = &dev_priv->drm;
Ville Syrjälä649636e2015-09-22 19:50:01 +03001324 int sprite;
Jesse Barnes19332d72013-03-28 09:55:38 -07001325
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001326 if (INTEL_INFO(dev)->gen >= 9) {
Damien Lespiau3bdcfc02015-02-28 14:54:09 +00001327 for_each_sprite(dev_priv, pipe, sprite) {
Ville Syrjälä649636e2015-09-22 19:50:01 +03001328 u32 val = I915_READ(PLANE_CTL(pipe, sprite));
Rob Clarke2c719b2014-12-15 13:56:32 -05001329 I915_STATE_WARN(val & PLANE_CTL_ENABLE,
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001330 "plane %d assertion failure, should be off on pipe %c but is still active\n",
1331 sprite, pipe_name(pipe));
1332 }
Wayne Boyer666a4532015-12-09 12:29:35 -08001333 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Damien Lespiau3bdcfc02015-02-28 14:54:09 +00001334 for_each_sprite(dev_priv, pipe, sprite) {
Ville Syrjälä649636e2015-09-22 19:50:01 +03001335 u32 val = I915_READ(SPCNTR(pipe, sprite));
Rob Clarke2c719b2014-12-15 13:56:32 -05001336 I915_STATE_WARN(val & SP_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001337 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +00001338 sprite_name(pipe, sprite), pipe_name(pipe));
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001339 }
1340 } else if (INTEL_INFO(dev)->gen >= 7) {
Ville Syrjälä649636e2015-09-22 19:50:01 +03001341 u32 val = I915_READ(SPRCTL(pipe));
Rob Clarke2c719b2014-12-15 13:56:32 -05001342 I915_STATE_WARN(val & SPRITE_ENABLE,
Ville Syrjälä06da8da2013-04-17 17:48:51 +03001343 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001344 plane_name(pipe), pipe_name(pipe));
1345 } else if (INTEL_INFO(dev)->gen >= 5) {
Ville Syrjälä649636e2015-09-22 19:50:01 +03001346 u32 val = I915_READ(DVSCNTR(pipe));
Rob Clarke2c719b2014-12-15 13:56:32 -05001347 I915_STATE_WARN(val & DVS_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001348 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1349 plane_name(pipe), pipe_name(pipe));
Jesse Barnes19332d72013-03-28 09:55:38 -07001350 }
1351}
1352
Ville Syrjälä08c71e52014-08-06 14:49:45 +03001353static void assert_vblank_disabled(struct drm_crtc *crtc)
1354{
Rob Clarke2c719b2014-12-15 13:56:32 -05001355 if (I915_STATE_WARN_ON(drm_crtc_vblank_get(crtc) == 0))
Ville Syrjälä08c71e52014-08-06 14:49:45 +03001356 drm_crtc_vblank_put(crtc);
1357}
1358
Ander Conselvan de Oliveira7abd4b32016-03-08 17:46:15 +02001359void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1360 enum pipe pipe)
Jesse Barnes92f25842011-01-04 15:09:34 -08001361{
Jesse Barnes92f25842011-01-04 15:09:34 -08001362 u32 val;
1363 bool enabled;
1364
Ville Syrjälä649636e2015-09-22 19:50:01 +03001365 val = I915_READ(PCH_TRANSCONF(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001366 enabled = !!(val & TRANS_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001367 I915_STATE_WARN(enabled,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001368 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1369 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001370}
1371
Keith Packard4e634382011-08-06 10:39:45 -07001372static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1373 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001374{
1375 if ((val & DP_PORT_EN) == 0)
1376 return false;
1377
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001378 if (HAS_PCH_CPT(dev_priv)) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001379 u32 trans_dp_ctl = I915_READ(TRANS_DP_CTL(pipe));
Keith Packardf0575e92011-07-25 22:12:43 -07001380 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1381 return false;
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001382 } else if (IS_CHERRYVIEW(dev_priv)) {
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001383 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1384 return false;
Keith Packardf0575e92011-07-25 22:12:43 -07001385 } else {
1386 if ((val & DP_PIPE_MASK) != (pipe << 30))
1387 return false;
1388 }
1389 return true;
1390}
1391
Keith Packard1519b992011-08-06 10:35:34 -07001392static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1393 enum pipe pipe, u32 val)
1394{
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001395 if ((val & SDVO_ENABLE) == 0)
Keith Packard1519b992011-08-06 10:35:34 -07001396 return false;
1397
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001398 if (HAS_PCH_CPT(dev_priv)) {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001399 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001400 return false;
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001401 } else if (IS_CHERRYVIEW(dev_priv)) {
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001402 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1403 return false;
Keith Packard1519b992011-08-06 10:35:34 -07001404 } else {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001405 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001406 return false;
1407 }
1408 return true;
1409}
1410
1411static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1412 enum pipe pipe, u32 val)
1413{
1414 if ((val & LVDS_PORT_EN) == 0)
1415 return false;
1416
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001417 if (HAS_PCH_CPT(dev_priv)) {
Keith Packard1519b992011-08-06 10:35:34 -07001418 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1419 return false;
1420 } else {
1421 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1422 return false;
1423 }
1424 return true;
1425}
1426
1427static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1428 enum pipe pipe, u32 val)
1429{
1430 if ((val & ADPA_DAC_ENABLE) == 0)
1431 return false;
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001432 if (HAS_PCH_CPT(dev_priv)) {
Keith Packard1519b992011-08-06 10:35:34 -07001433 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1434 return false;
1435 } else {
1436 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1437 return false;
1438 }
1439 return true;
1440}
1441
Jesse Barnes291906f2011-02-02 12:28:03 -08001442static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001443 enum pipe pipe, i915_reg_t reg,
1444 u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001445{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001446 u32 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001447 I915_STATE_WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001448 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001449 i915_mmio_reg_offset(reg), pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001450
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001451 I915_STATE_WARN(HAS_PCH_IBX(dev_priv) && (val & DP_PORT_EN) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001452 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001453 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001454}
1455
1456static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001457 enum pipe pipe, i915_reg_t reg)
Jesse Barnes291906f2011-02-02 12:28:03 -08001458{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001459 u32 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001460 I915_STATE_WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001461 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001462 i915_mmio_reg_offset(reg), pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001463
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001464 I915_STATE_WARN(HAS_PCH_IBX(dev_priv) && (val & SDVO_ENABLE) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001465 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001466 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001467}
1468
1469static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1470 enum pipe pipe)
1471{
Jesse Barnes291906f2011-02-02 12:28:03 -08001472 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001473
Keith Packardf0575e92011-07-25 22:12:43 -07001474 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1475 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1476 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001477
Ville Syrjälä649636e2015-09-22 19:50:01 +03001478 val = I915_READ(PCH_ADPA);
Rob Clarke2c719b2014-12-15 13:56:32 -05001479 I915_STATE_WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001480 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001481 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001482
Ville Syrjälä649636e2015-09-22 19:50:01 +03001483 val = I915_READ(PCH_LVDS);
Rob Clarke2c719b2014-12-15 13:56:32 -05001484 I915_STATE_WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001485 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001486 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001487
Paulo Zanonie2debe92013-02-18 19:00:27 -03001488 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1489 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1490 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
Jesse Barnes291906f2011-02-02 12:28:03 -08001491}
1492
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +03001493static void _vlv_enable_pll(struct intel_crtc *crtc,
1494 const struct intel_crtc_state *pipe_config)
1495{
1496 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1497 enum pipe pipe = crtc->pipe;
1498
1499 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
1500 POSTING_READ(DPLL(pipe));
1501 udelay(150);
1502
Chris Wilson2c30b432016-06-30 15:32:54 +01001503 if (intel_wait_for_register(dev_priv,
1504 DPLL(pipe),
1505 DPLL_LOCK_VLV,
1506 DPLL_LOCK_VLV,
1507 1))
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +03001508 DRM_ERROR("DPLL %d failed to lock\n", pipe);
1509}
1510
Ville Syrjäläd288f652014-10-28 13:20:22 +02001511static void vlv_enable_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001512 const struct intel_crtc_state *pipe_config)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001513{
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +03001514 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä8bd3f302016-03-15 16:39:57 +02001515 enum pipe pipe = crtc->pipe;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001516
Ville Syrjälä8bd3f302016-03-15 16:39:57 +02001517 assert_pipe_disabled(dev_priv, pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001518
Daniel Vetter87442f72013-06-06 00:52:17 +02001519 /* PLL is protected by panel, make sure we can write it */
Ville Syrjälä7d1a83c2016-03-15 16:39:58 +02001520 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001521
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +03001522 if (pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE)
1523 _vlv_enable_pll(crtc, pipe_config);
Daniel Vetter426115c2013-07-11 22:13:42 +02001524
Ville Syrjälä8bd3f302016-03-15 16:39:57 +02001525 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
1526 POSTING_READ(DPLL_MD(pipe));
Daniel Vetter87442f72013-06-06 00:52:17 +02001527}
1528
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +03001529
1530static void _chv_enable_pll(struct intel_crtc *crtc,
1531 const struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001532{
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +03001533 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä8bd3f302016-03-15 16:39:57 +02001534 enum pipe pipe = crtc->pipe;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001535 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001536 u32 tmp;
1537
Ville Syrjäläa5805162015-05-26 20:42:30 +03001538 mutex_lock(&dev_priv->sb_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001539
1540 /* Enable back the 10bit clock to display controller */
1541 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1542 tmp |= DPIO_DCLKP_EN;
1543 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1544
Ville Syrjälä54433e92015-05-26 20:42:31 +03001545 mutex_unlock(&dev_priv->sb_lock);
1546
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001547 /*
1548 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1549 */
1550 udelay(1);
1551
1552 /* Enable PLL */
Ville Syrjäläd288f652014-10-28 13:20:22 +02001553 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001554
1555 /* Check PLL is locked */
Chris Wilson6b188262016-06-30 15:32:55 +01001556 if (intel_wait_for_register(dev_priv,
1557 DPLL(pipe), DPLL_LOCK_VLV, DPLL_LOCK_VLV,
1558 1))
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001559 DRM_ERROR("PLL %d failed to lock\n", pipe);
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +03001560}
1561
1562static void chv_enable_pll(struct intel_crtc *crtc,
1563 const struct intel_crtc_state *pipe_config)
1564{
1565 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1566 enum pipe pipe = crtc->pipe;
1567
1568 assert_pipe_disabled(dev_priv, pipe);
1569
1570 /* PLL is protected by panel, make sure we can write it */
1571 assert_panel_unlocked(dev_priv, pipe);
1572
1573 if (pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE)
1574 _chv_enable_pll(crtc, pipe_config);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001575
Ville Syrjäläc2317752016-03-15 16:39:56 +02001576 if (pipe != PIPE_A) {
1577 /*
1578 * WaPixelRepeatModeFixForC0:chv
1579 *
1580 * DPLLCMD is AWOL. Use chicken bits to propagate
1581 * the value from DPLLBMD to either pipe B or C.
1582 */
1583 I915_WRITE(CBR4_VLV, pipe == PIPE_B ? CBR_DPLLBMD_PIPE_B : CBR_DPLLBMD_PIPE_C);
1584 I915_WRITE(DPLL_MD(PIPE_B), pipe_config->dpll_hw_state.dpll_md);
1585 I915_WRITE(CBR4_VLV, 0);
1586 dev_priv->chv_dpll_md[pipe] = pipe_config->dpll_hw_state.dpll_md;
1587
1588 /*
1589 * DPLLB VGA mode also seems to cause problems.
1590 * We should always have it disabled.
1591 */
1592 WARN_ON((I915_READ(DPLL(PIPE_B)) & DPLL_VGA_MODE_DIS) == 0);
1593 } else {
1594 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
1595 POSTING_READ(DPLL_MD(pipe));
1596 }
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001597}
1598
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001599static int intel_num_dvo_pipes(struct drm_device *dev)
1600{
1601 struct intel_crtc *crtc;
1602 int count = 0;
1603
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03001604 for_each_intel_crtc(dev, crtc) {
Maarten Lankhorst3538b9d2015-06-01 12:50:10 +02001605 count += crtc->base.state->active &&
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03001606 intel_crtc_has_type(crtc->config, INTEL_OUTPUT_DVO);
1607 }
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001608
1609 return count;
1610}
1611
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001612static void i9xx_enable_pll(struct intel_crtc *crtc)
Daniel Vetter87442f72013-06-06 00:52:17 +02001613{
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001614 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001615 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001616 i915_reg_t reg = DPLL(crtc->pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001617 u32 dpll = crtc->config->dpll_hw_state.dpll;
Daniel Vetter87442f72013-06-06 00:52:17 +02001618
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001619 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001620
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001621 /* PLL is protected by panel, make sure we can write it */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001622 if (IS_MOBILE(dev) && !IS_I830(dev))
1623 assert_panel_unlocked(dev_priv, crtc->pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001624
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001625 /* Enable DVO 2x clock on both PLLs if necessary */
1626 if (IS_I830(dev) && intel_num_dvo_pipes(dev) > 0) {
1627 /*
1628 * It appears to be important that we don't enable this
1629 * for the current pipe before otherwise configuring the
1630 * PLL. No idea how this should be handled if multiple
1631 * DVO outputs are enabled simultaneosly.
1632 */
1633 dpll |= DPLL_DVO_2X_MODE;
1634 I915_WRITE(DPLL(!crtc->pipe),
1635 I915_READ(DPLL(!crtc->pipe)) | DPLL_DVO_2X_MODE);
1636 }
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001637
Ville Syrjäläc2b63372015-10-07 22:08:25 +03001638 /*
1639 * Apparently we need to have VGA mode enabled prior to changing
1640 * the P1/P2 dividers. Otherwise the DPLL will keep using the old
1641 * dividers, even though the register value does change.
1642 */
1643 I915_WRITE(reg, 0);
1644
Ville Syrjälä8e7a65a2015-10-07 22:08:24 +03001645 I915_WRITE(reg, dpll);
1646
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001647 /* Wait for the clocks to stabilize. */
1648 POSTING_READ(reg);
1649 udelay(150);
1650
1651 if (INTEL_INFO(dev)->gen >= 4) {
1652 I915_WRITE(DPLL_MD(crtc->pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001653 crtc->config->dpll_hw_state.dpll_md);
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001654 } else {
1655 /* The pixel multiplier can only be updated once the
1656 * DPLL is enabled and the clocks are stable.
1657 *
1658 * So write it again.
1659 */
1660 I915_WRITE(reg, dpll);
1661 }
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001662
1663 /* We do this three times for luck */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001664 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001665 POSTING_READ(reg);
1666 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001667 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001668 POSTING_READ(reg);
1669 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001670 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001671 POSTING_READ(reg);
1672 udelay(150); /* wait for warmup */
1673}
1674
1675/**
Daniel Vetter50b44a42013-06-05 13:34:33 +02001676 * i9xx_disable_pll - disable a PLL
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001677 * @dev_priv: i915 private structure
1678 * @pipe: pipe PLL to disable
1679 *
1680 * Disable the PLL for @pipe, making sure the pipe is off first.
1681 *
1682 * Note! This is for pre-ILK only.
1683 */
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001684static void i9xx_disable_pll(struct intel_crtc *crtc)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001685{
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001686 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001687 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001688 enum pipe pipe = crtc->pipe;
1689
1690 /* Disable DVO 2x clock on both PLLs if necessary */
1691 if (IS_I830(dev) &&
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03001692 intel_crtc_has_type(crtc->config, INTEL_OUTPUT_DVO) &&
Maarten Lankhorst3538b9d2015-06-01 12:50:10 +02001693 !intel_num_dvo_pipes(dev)) {
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001694 I915_WRITE(DPLL(PIPE_B),
1695 I915_READ(DPLL(PIPE_B)) & ~DPLL_DVO_2X_MODE);
1696 I915_WRITE(DPLL(PIPE_A),
1697 I915_READ(DPLL(PIPE_A)) & ~DPLL_DVO_2X_MODE);
1698 }
1699
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001700 /* Don't disable pipe or pipe PLLs if needed */
1701 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1702 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001703 return;
1704
1705 /* Make sure the pipe isn't still relying on us */
1706 assert_pipe_disabled(dev_priv, pipe);
1707
Ville Syrjäläb8afb912015-06-29 15:25:48 +03001708 I915_WRITE(DPLL(pipe), DPLL_VGA_MODE_DIS);
Daniel Vetter50b44a42013-06-05 13:34:33 +02001709 POSTING_READ(DPLL(pipe));
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001710}
1711
Jesse Barnesf6071162013-10-01 10:41:38 -07001712static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1713{
Ville Syrjäläb8afb912015-06-29 15:25:48 +03001714 u32 val;
Jesse Barnesf6071162013-10-01 10:41:38 -07001715
1716 /* Make sure the pipe isn't still relying on us */
1717 assert_pipe_disabled(dev_priv, pipe);
1718
Ville Syrjälä03ed5cbf2016-03-15 16:39:55 +02001719 val = DPLL_INTEGRATED_REF_CLK_VLV |
1720 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
1721 if (pipe != PIPE_A)
1722 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1723
Jesse Barnesf6071162013-10-01 10:41:38 -07001724 I915_WRITE(DPLL(pipe), val);
1725 POSTING_READ(DPLL(pipe));
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001726}
1727
1728static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1729{
Ville Syrjäläd7520482014-04-09 13:28:59 +03001730 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001731 u32 val;
1732
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001733 /* Make sure the pipe isn't still relying on us */
1734 assert_pipe_disabled(dev_priv, pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001735
Ville Syrjälä60bfe442015-06-29 15:25:49 +03001736 val = DPLL_SSC_REF_CLK_CHV |
1737 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001738 if (pipe != PIPE_A)
1739 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
Ville Syrjälä03ed5cbf2016-03-15 16:39:55 +02001740
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001741 I915_WRITE(DPLL(pipe), val);
1742 POSTING_READ(DPLL(pipe));
Ville Syrjäläd7520482014-04-09 13:28:59 +03001743
Ville Syrjäläa5805162015-05-26 20:42:30 +03001744 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläd7520482014-04-09 13:28:59 +03001745
1746 /* Disable 10bit clock to display controller */
1747 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1748 val &= ~DPIO_DCLKP_EN;
1749 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1750
Ville Syrjäläa5805162015-05-26 20:42:30 +03001751 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnesf6071162013-10-01 10:41:38 -07001752}
1753
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001754void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001755 struct intel_digital_port *dport,
1756 unsigned int expected_mask)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001757{
1758 u32 port_mask;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001759 i915_reg_t dpll_reg;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001760
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001761 switch (dport->port) {
1762 case PORT_B:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001763 port_mask = DPLL_PORTB_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001764 dpll_reg = DPLL(0);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001765 break;
1766 case PORT_C:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001767 port_mask = DPLL_PORTC_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001768 dpll_reg = DPLL(0);
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001769 expected_mask <<= 4;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001770 break;
1771 case PORT_D:
1772 port_mask = DPLL_PORTD_READY_MASK;
1773 dpll_reg = DPIO_PHY_STATUS;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001774 break;
1775 default:
1776 BUG();
1777 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07001778
Chris Wilson370004d2016-06-30 15:32:56 +01001779 if (intel_wait_for_register(dev_priv,
1780 dpll_reg, port_mask, expected_mask,
1781 1000))
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001782 WARN(1, "timed out waiting for port %c ready: got 0x%x, expected 0x%x\n",
1783 port_name(dport->port), I915_READ(dpll_reg) & port_mask, expected_mask);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001784}
1785
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001786static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1787 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001788{
Chris Wilson91c8a322016-07-05 10:40:23 +01001789 struct drm_device *dev = &dev_priv->drm;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001790 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vettere2b78262013-06-07 23:10:03 +02001791 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001792 i915_reg_t reg;
1793 uint32_t val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001794
Jesse Barnes040484a2011-01-03 12:14:26 -08001795 /* Make sure PCH DPLL is enabled */
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +02001796 assert_shared_dpll_enabled(dev_priv, intel_crtc->config->shared_dpll);
Jesse Barnes040484a2011-01-03 12:14:26 -08001797
1798 /* FDI must be feeding us bits for PCH ports */
1799 assert_fdi_tx_enabled(dev_priv, pipe);
1800 assert_fdi_rx_enabled(dev_priv, pipe);
1801
Daniel Vetter23670b322012-11-01 09:15:30 +01001802 if (HAS_PCH_CPT(dev)) {
1803 /* Workaround: Set the timing override bit before enabling the
1804 * pch transcoder. */
1805 reg = TRANS_CHICKEN2(pipe);
1806 val = I915_READ(reg);
1807 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1808 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001809 }
Daniel Vetter23670b322012-11-01 09:15:30 +01001810
Daniel Vetterab9412b2013-05-03 11:49:46 +02001811 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001812 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001813 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001814
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001815 if (HAS_PCH_IBX(dev_priv)) {
Jesse Barnese9bcff52011-06-24 12:19:20 -07001816 /*
Ville Syrjäläc5de7c62015-05-05 17:06:22 +03001817 * Make the BPC in transcoder be consistent with
1818 * that in pipeconf reg. For HDMI we must use 8bpc
1819 * here for both 8bpc and 12bpc.
Jesse Barnese9bcff52011-06-24 12:19:20 -07001820 */
Daniel Vetterdfd07d72012-12-17 11:21:38 +01001821 val &= ~PIPECONF_BPC_MASK;
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03001822 if (intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_HDMI))
Ville Syrjäläc5de7c62015-05-05 17:06:22 +03001823 val |= PIPECONF_8BPC;
1824 else
1825 val |= pipeconf_val & PIPECONF_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001826 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001827
1828 val &= ~TRANS_INTERLACE_MASK;
1829 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001830 if (HAS_PCH_IBX(dev_priv) &&
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03001831 intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_SDVO))
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001832 val |= TRANS_LEGACY_INTERLACED_ILK;
1833 else
1834 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001835 else
1836 val |= TRANS_PROGRESSIVE;
1837
Jesse Barnes040484a2011-01-03 12:14:26 -08001838 I915_WRITE(reg, val | TRANS_ENABLE);
Chris Wilson650fbd82016-06-30 15:32:57 +01001839 if (intel_wait_for_register(dev_priv,
1840 reg, TRANS_STATE_ENABLE, TRANS_STATE_ENABLE,
1841 100))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001842 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
Jesse Barnes040484a2011-01-03 12:14:26 -08001843}
1844
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001845static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02001846 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08001847{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001848 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001849
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001850 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01001851 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02001852 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001853
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001854 /* Workaround: set timing override bit. */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03001855 val = I915_READ(TRANS_CHICKEN2(PIPE_A));
Daniel Vetter23670b322012-11-01 09:15:30 +01001856 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03001857 I915_WRITE(TRANS_CHICKEN2(PIPE_A), val);
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001858
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02001859 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02001860 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001861
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02001862 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1863 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02001864 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001865 else
1866 val |= TRANS_PROGRESSIVE;
1867
Daniel Vetterab9412b2013-05-03 11:49:46 +02001868 I915_WRITE(LPT_TRANSCONF, val);
Chris Wilsond9f96242016-06-30 15:32:58 +01001869 if (intel_wait_for_register(dev_priv,
1870 LPT_TRANSCONF,
1871 TRANS_STATE_ENABLE,
1872 TRANS_STATE_ENABLE,
1873 100))
Paulo Zanoni937bb612012-10-31 18:12:47 -02001874 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001875}
1876
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001877static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1878 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001879{
Chris Wilson91c8a322016-07-05 10:40:23 +01001880 struct drm_device *dev = &dev_priv->drm;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001881 i915_reg_t reg;
1882 uint32_t val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001883
1884 /* FDI relies on the transcoder */
1885 assert_fdi_tx_disabled(dev_priv, pipe);
1886 assert_fdi_rx_disabled(dev_priv, pipe);
1887
Jesse Barnes291906f2011-02-02 12:28:03 -08001888 /* Ports must be off as well */
1889 assert_pch_ports_disabled(dev_priv, pipe);
1890
Daniel Vetterab9412b2013-05-03 11:49:46 +02001891 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001892 val = I915_READ(reg);
1893 val &= ~TRANS_ENABLE;
1894 I915_WRITE(reg, val);
1895 /* wait for PCH transcoder off, transcoder state */
Chris Wilsona7d04662016-06-30 15:32:59 +01001896 if (intel_wait_for_register(dev_priv,
1897 reg, TRANS_STATE_ENABLE, 0,
1898 50))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001899 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
Daniel Vetter23670b322012-11-01 09:15:30 +01001900
Ville Syrjäläc4656132015-10-29 21:25:56 +02001901 if (HAS_PCH_CPT(dev)) {
Daniel Vetter23670b322012-11-01 09:15:30 +01001902 /* Workaround: Clear the timing override chicken bit again. */
1903 reg = TRANS_CHICKEN2(pipe);
1904 val = I915_READ(reg);
1905 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1906 I915_WRITE(reg, val);
1907 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001908}
1909
Maarten Lankhorstb7076542016-08-23 16:18:08 +02001910void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001911{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001912 u32 val;
1913
Daniel Vetterab9412b2013-05-03 11:49:46 +02001914 val = I915_READ(LPT_TRANSCONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001915 val &= ~TRANS_ENABLE;
Daniel Vetterab9412b2013-05-03 11:49:46 +02001916 I915_WRITE(LPT_TRANSCONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001917 /* wait for PCH transcoder off, transcoder state */
Chris Wilsondfdb4742016-06-30 15:33:00 +01001918 if (intel_wait_for_register(dev_priv,
1919 LPT_TRANSCONF, TRANS_STATE_ENABLE, 0,
1920 50))
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02001921 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001922
1923 /* Workaround: clear timing override bit. */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03001924 val = I915_READ(TRANS_CHICKEN2(PIPE_A));
Daniel Vetter23670b322012-11-01 09:15:30 +01001925 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03001926 I915_WRITE(TRANS_CHICKEN2(PIPE_A), val);
Jesse Barnes92f25842011-01-04 15:09:34 -08001927}
1928
1929/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001930 * intel_enable_pipe - enable a pipe, asserting requirements
Paulo Zanoni03722642014-01-17 13:51:09 -02001931 * @crtc: crtc responsible for the pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08001932 *
Paulo Zanoni03722642014-01-17 13:51:09 -02001933 * Enable @crtc's pipe, making sure that various hardware specific requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001934 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08001935 */
Paulo Zanonie1fdc472014-01-17 13:51:12 -02001936static void intel_enable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001937{
Paulo Zanoni03722642014-01-17 13:51:09 -02001938 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001939 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoni03722642014-01-17 13:51:09 -02001940 enum pipe pipe = crtc->pipe;
Ville Syrjälä1a70a7282015-10-29 21:25:50 +02001941 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Daniel Vetter1a240d42012-11-29 22:18:51 +01001942 enum pipe pch_transcoder;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001943 i915_reg_t reg;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001944 u32 val;
1945
Ville Syrjälä9e2ee2d2015-06-24 21:59:35 +03001946 DRM_DEBUG_KMS("enabling pipe %c\n", pipe_name(pipe));
1947
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001948 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001949 assert_cursor_disabled(dev_priv, pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001950 assert_sprites_disabled(dev_priv, pipe);
1951
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001952 if (HAS_PCH_LPT(dev_priv))
Paulo Zanonicc391bb2012-11-20 13:27:37 -02001953 pch_transcoder = TRANSCODER_A;
1954 else
1955 pch_transcoder = pipe;
1956
Jesse Barnesb24e7172011-01-04 15:09:30 -08001957 /*
1958 * A pipe without a PLL won't actually be able to drive bits from
1959 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1960 * need the check.
1961 */
Ville Syrjälä09fa8bb2016-08-05 20:41:34 +03001962 if (HAS_GMCH_DISPLAY(dev_priv)) {
Ville Syrjäläd7edc4e2016-06-22 21:57:07 +03001963 if (intel_crtc_has_type(crtc->config, INTEL_OUTPUT_DSI))
Jani Nikula23538ef2013-08-27 15:12:22 +03001964 assert_dsi_pll_enabled(dev_priv);
1965 else
1966 assert_pll_enabled(dev_priv, pipe);
Ville Syrjälä09fa8bb2016-08-05 20:41:34 +03001967 } else {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001968 if (crtc->config->has_pch_encoder) {
Jesse Barnes040484a2011-01-03 12:14:26 -08001969 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02001970 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01001971 assert_fdi_tx_pll_enabled(dev_priv,
1972 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08001973 }
1974 /* FIXME: assert CPU port conditions for SNB+ */
1975 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08001976
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001977 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001978 val = I915_READ(reg);
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02001979 if (val & PIPECONF_ENABLE) {
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001980 WARN_ON(!((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1981 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)));
Chris Wilson00d70b12011-03-17 07:18:29 +00001982 return;
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02001983 }
Chris Wilson00d70b12011-03-17 07:18:29 +00001984
1985 I915_WRITE(reg, val | PIPECONF_ENABLE);
Paulo Zanoni851855d2013-12-19 19:12:29 -02001986 POSTING_READ(reg);
Ville Syrjäläb7792d82015-12-14 18:23:43 +02001987
1988 /*
1989 * Until the pipe starts DSL will read as 0, which would cause
1990 * an apparent vblank timestamp jump, which messes up also the
1991 * frame count when it's derived from the timestamps. So let's
1992 * wait for the pipe to start properly before we call
1993 * drm_crtc_vblank_on()
1994 */
1995 if (dev->max_vblank_count == 0 &&
1996 wait_for(intel_get_crtc_scanline(crtc) != crtc->scanline_offset, 50))
1997 DRM_ERROR("pipe %c didn't start\n", pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001998}
1999
2000/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002001 * intel_disable_pipe - disable a pipe, asserting requirements
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002002 * @crtc: crtc whose pipes is to be disabled
Jesse Barnesb24e7172011-01-04 15:09:30 -08002003 *
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002004 * Disable the pipe of @crtc, making sure that various hardware
2005 * specific requirements are met, if applicable, e.g. plane
2006 * disabled, panel fitter off, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002007 *
2008 * Will wait until the pipe has shut down before returning.
2009 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002010static void intel_disable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002011{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002012 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002013 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002014 enum pipe pipe = crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002015 i915_reg_t reg;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002016 u32 val;
2017
Ville Syrjälä9e2ee2d2015-06-24 21:59:35 +03002018 DRM_DEBUG_KMS("disabling pipe %c\n", pipe_name(pipe));
2019
Jesse Barnesb24e7172011-01-04 15:09:30 -08002020 /*
2021 * Make sure planes won't keep trying to pump pixels to us,
2022 * or we might hang the display.
2023 */
2024 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002025 assert_cursor_disabled(dev_priv, pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07002026 assert_sprites_disabled(dev_priv, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002027
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002028 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002029 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00002030 if ((val & PIPECONF_ENABLE) == 0)
2031 return;
2032
Ville Syrjälä67adc642014-08-15 01:21:57 +03002033 /*
2034 * Double wide has implications for planes
2035 * so best keep it disabled when not needed.
2036 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002037 if (crtc->config->double_wide)
Ville Syrjälä67adc642014-08-15 01:21:57 +03002038 val &= ~PIPECONF_DOUBLE_WIDE;
2039
2040 /* Don't disable pipe or pipe PLLs if needed */
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002041 if (!(pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) &&
2042 !(pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Ville Syrjälä67adc642014-08-15 01:21:57 +03002043 val &= ~PIPECONF_ENABLE;
2044
2045 I915_WRITE(reg, val);
2046 if ((val & PIPECONF_ENABLE) == 0)
2047 intel_wait_for_pipe_off(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002048}
2049
Ville Syrjälä832be822016-01-12 21:08:33 +02002050static unsigned int intel_tile_size(const struct drm_i915_private *dev_priv)
2051{
2052 return IS_GEN2(dev_priv) ? 2048 : 4096;
2053}
2054
Ville Syrjälä27ba3912016-02-15 22:54:40 +02002055static unsigned int intel_tile_width_bytes(const struct drm_i915_private *dev_priv,
2056 uint64_t fb_modifier, unsigned int cpp)
Ville Syrjälä7b49f942016-01-12 21:08:32 +02002057{
2058 switch (fb_modifier) {
2059 case DRM_FORMAT_MOD_NONE:
2060 return cpp;
2061 case I915_FORMAT_MOD_X_TILED:
2062 if (IS_GEN2(dev_priv))
2063 return 128;
2064 else
2065 return 512;
2066 case I915_FORMAT_MOD_Y_TILED:
2067 if (IS_GEN2(dev_priv) || HAS_128_BYTE_Y_TILING(dev_priv))
2068 return 128;
2069 else
2070 return 512;
2071 case I915_FORMAT_MOD_Yf_TILED:
2072 switch (cpp) {
2073 case 1:
2074 return 64;
2075 case 2:
2076 case 4:
2077 return 128;
2078 case 8:
2079 case 16:
2080 return 256;
2081 default:
2082 MISSING_CASE(cpp);
2083 return cpp;
2084 }
2085 break;
2086 default:
2087 MISSING_CASE(fb_modifier);
2088 return cpp;
2089 }
2090}
2091
Ville Syrjälä832be822016-01-12 21:08:33 +02002092unsigned int intel_tile_height(const struct drm_i915_private *dev_priv,
2093 uint64_t fb_modifier, unsigned int cpp)
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002094{
Ville Syrjälä832be822016-01-12 21:08:33 +02002095 if (fb_modifier == DRM_FORMAT_MOD_NONE)
2096 return 1;
2097 else
2098 return intel_tile_size(dev_priv) /
Ville Syrjälä27ba3912016-02-15 22:54:40 +02002099 intel_tile_width_bytes(dev_priv, fb_modifier, cpp);
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002100}
2101
Ville Syrjälä8d0deca2016-02-15 22:54:41 +02002102/* Return the tile dimensions in pixel units */
2103static void intel_tile_dims(const struct drm_i915_private *dev_priv,
2104 unsigned int *tile_width,
2105 unsigned int *tile_height,
2106 uint64_t fb_modifier,
2107 unsigned int cpp)
2108{
2109 unsigned int tile_width_bytes =
2110 intel_tile_width_bytes(dev_priv, fb_modifier, cpp);
2111
2112 *tile_width = tile_width_bytes / cpp;
2113 *tile_height = intel_tile_size(dev_priv) / tile_width_bytes;
2114}
2115
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002116unsigned int
2117intel_fb_align_height(struct drm_device *dev, unsigned int height,
Ville Syrjälä832be822016-01-12 21:08:33 +02002118 uint32_t pixel_format, uint64_t fb_modifier)
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002119{
Ville Syrjälä832be822016-01-12 21:08:33 +02002120 unsigned int cpp = drm_format_plane_cpp(pixel_format, 0);
2121 unsigned int tile_height = intel_tile_height(to_i915(dev), fb_modifier, cpp);
2122
2123 return ALIGN(height, tile_height);
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002124}
2125
Ville Syrjälä1663b9d2016-02-15 22:54:45 +02002126unsigned int intel_rotation_info_size(const struct intel_rotation_info *rot_info)
2127{
2128 unsigned int size = 0;
2129 int i;
2130
2131 for (i = 0 ; i < ARRAY_SIZE(rot_info->plane); i++)
2132 size += rot_info->plane[i].width * rot_info->plane[i].height;
2133
2134 return size;
2135}
2136
Daniel Vetter75c82a52015-10-14 16:51:04 +02002137static void
Ville Syrjälä3465c582016-02-15 22:54:43 +02002138intel_fill_fb_ggtt_view(struct i915_ggtt_view *view,
2139 const struct drm_framebuffer *fb,
2140 unsigned int rotation)
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002141{
Ville Syrjälä2d7a2152016-02-15 22:54:47 +02002142 if (intel_rotation_90_or_270(rotation)) {
2143 *view = i915_ggtt_view_rotated;
2144 view->params.rotated = to_intel_framebuffer(fb)->rot_info;
2145 } else {
2146 *view = i915_ggtt_view_normal;
2147 }
2148}
2149
Ville Syrjälä603525d2016-01-12 21:08:37 +02002150static unsigned int intel_linear_alignment(const struct drm_i915_private *dev_priv)
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002151{
2152 if (INTEL_INFO(dev_priv)->gen >= 9)
2153 return 256 * 1024;
Ville Syrjälä985b8bb2015-06-11 16:31:15 +03002154 else if (IS_BROADWATER(dev_priv) || IS_CRESTLINE(dev_priv) ||
Wayne Boyer666a4532015-12-09 12:29:35 -08002155 IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002156 return 128 * 1024;
2157 else if (INTEL_INFO(dev_priv)->gen >= 4)
2158 return 4 * 1024;
2159 else
Ville Syrjälä44c59052015-06-11 16:31:16 +03002160 return 0;
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002161}
2162
Ville Syrjälä603525d2016-01-12 21:08:37 +02002163static unsigned int intel_surf_alignment(const struct drm_i915_private *dev_priv,
2164 uint64_t fb_modifier)
2165{
2166 switch (fb_modifier) {
2167 case DRM_FORMAT_MOD_NONE:
2168 return intel_linear_alignment(dev_priv);
2169 case I915_FORMAT_MOD_X_TILED:
2170 if (INTEL_INFO(dev_priv)->gen >= 9)
2171 return 256 * 1024;
2172 return 0;
2173 case I915_FORMAT_MOD_Y_TILED:
2174 case I915_FORMAT_MOD_Yf_TILED:
2175 return 1 * 1024 * 1024;
2176 default:
2177 MISSING_CASE(fb_modifier);
2178 return 0;
2179 }
2180}
2181
Chris Wilson058d88c2016-08-15 10:49:06 +01002182struct i915_vma *
2183intel_pin_and_fence_fb_obj(struct drm_framebuffer *fb, unsigned int rotation)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002184{
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002185 struct drm_device *dev = fb->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01002186 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002187 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002188 struct i915_ggtt_view view;
Chris Wilson058d88c2016-08-15 10:49:06 +01002189 struct i915_vma *vma;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002190 u32 alignment;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002191
Matt Roperebcdd392014-07-09 16:22:11 -07002192 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
2193
Ville Syrjälä603525d2016-01-12 21:08:37 +02002194 alignment = intel_surf_alignment(dev_priv, fb->modifier[0]);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002195
Ville Syrjälä3465c582016-02-15 22:54:43 +02002196 intel_fill_fb_ggtt_view(&view, fb, rotation);
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002197
Chris Wilson693db182013-03-05 14:52:39 +00002198 /* Note that the w/a also requires 64 PTE of padding following the
2199 * bo. We currently fill all unused PTE with the shadow page and so
2200 * we should always have valid PTE following the scanout preventing
2201 * the VT-d warning.
2202 */
Chris Wilson48f112f2016-06-24 14:07:14 +01002203 if (intel_scanout_needs_vtd_wa(dev_priv) && alignment < 256 * 1024)
Chris Wilson693db182013-03-05 14:52:39 +00002204 alignment = 256 * 1024;
2205
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002206 /*
2207 * Global gtt pte registers are special registers which actually forward
2208 * writes to a chunk of system memory. Which means that there is no risk
2209 * that the register values disappear as soon as we call
2210 * intel_runtime_pm_put(), so it is correct to wrap only the
2211 * pin/unpin/fence and not more.
2212 */
2213 intel_runtime_pm_get(dev_priv);
2214
Chris Wilson058d88c2016-08-15 10:49:06 +01002215 vma = i915_gem_object_pin_to_display_plane(obj, alignment, &view);
Chris Wilson49ef5292016-08-18 17:17:00 +01002216 if (IS_ERR(vma))
2217 goto err;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002218
Chris Wilson05a20d02016-08-18 17:16:55 +01002219 if (i915_vma_is_map_and_fenceable(vma)) {
Chris Wilson49ef5292016-08-18 17:17:00 +01002220 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2221 * fence, whereas 965+ only requires a fence if using
2222 * framebuffer compression. For simplicity, we always, when
2223 * possible, install a fence as the cost is not that onerous.
2224 *
2225 * If we fail to fence the tiled scanout, then either the
2226 * modeset will reject the change (which is highly unlikely as
2227 * the affected systems, all but one, do not have unmappable
2228 * space) or we will not be able to enable full powersaving
2229 * techniques (also likely not to apply due to various limits
2230 * FBC and the like impose on the size of the buffer, which
2231 * presumably we violated anyway with this unmappable buffer).
2232 * Anyway, it is presumably better to stumble onwards with
2233 * something and try to run the system in a "less than optimal"
2234 * mode that matches the user configuration.
2235 */
2236 if (i915_vma_get_fence(vma) == 0)
2237 i915_vma_pin_fence(vma);
Vivek Kasireddy98072162015-10-29 18:54:38 -07002238 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002239
Chris Wilson49ef5292016-08-18 17:17:00 +01002240err:
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002241 intel_runtime_pm_put(dev_priv);
Chris Wilson058d88c2016-08-15 10:49:06 +01002242 return vma;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002243}
2244
Chris Wilsonfb4b8ce2016-04-28 09:56:35 +01002245void intel_unpin_fb_obj(struct drm_framebuffer *fb, unsigned int rotation)
Chris Wilson1690e1e2011-12-14 13:57:08 +01002246{
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +00002247 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002248 struct i915_ggtt_view view;
Chris Wilson058d88c2016-08-15 10:49:06 +01002249 struct i915_vma *vma;
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +00002250
Matt Roperebcdd392014-07-09 16:22:11 -07002251 WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex));
2252
Ville Syrjälä3465c582016-02-15 22:54:43 +02002253 intel_fill_fb_ggtt_view(&view, fb, rotation);
Chris Wilson05a20d02016-08-18 17:16:55 +01002254 vma = i915_gem_object_to_ggtt(obj, &view);
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002255
Chris Wilson49ef5292016-08-18 17:17:00 +01002256 i915_vma_unpin_fence(vma);
Chris Wilson058d88c2016-08-15 10:49:06 +01002257 i915_gem_object_unpin_from_display_plane(vma);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002258}
2259
Ville Syrjäläef78ec92015-10-13 22:48:39 +03002260static int intel_fb_pitch(const struct drm_framebuffer *fb, int plane,
2261 unsigned int rotation)
2262{
2263 if (intel_rotation_90_or_270(rotation))
2264 return to_intel_framebuffer(fb)->rotated[plane].pitch;
2265 else
2266 return fb->pitches[plane];
2267}
2268
Ville Syrjälä8d0deca2016-02-15 22:54:41 +02002269/*
Ville Syrjälä6687c902015-09-15 13:16:41 +03002270 * Convert the x/y offsets into a linear offset.
2271 * Only valid with 0/180 degree rotation, which is fine since linear
2272 * offset is only used with linear buffers on pre-hsw and tiled buffers
2273 * with gen2/3, and 90/270 degree rotations isn't supported on any of them.
2274 */
2275u32 intel_fb_xy_to_linear(int x, int y,
Ville Syrjälä29490562016-01-20 18:02:50 +02002276 const struct intel_plane_state *state,
2277 int plane)
Ville Syrjälä6687c902015-09-15 13:16:41 +03002278{
Ville Syrjälä29490562016-01-20 18:02:50 +02002279 const struct drm_framebuffer *fb = state->base.fb;
Ville Syrjälä6687c902015-09-15 13:16:41 +03002280 unsigned int cpp = drm_format_plane_cpp(fb->pixel_format, plane);
2281 unsigned int pitch = fb->pitches[plane];
2282
2283 return y * pitch + x * cpp;
2284}
2285
2286/*
2287 * Add the x/y offsets derived from fb->offsets[] to the user
2288 * specified plane src x/y offsets. The resulting x/y offsets
2289 * specify the start of scanout from the beginning of the gtt mapping.
2290 */
2291void intel_add_fb_offsets(int *x, int *y,
Ville Syrjälä29490562016-01-20 18:02:50 +02002292 const struct intel_plane_state *state,
2293 int plane)
Ville Syrjälä6687c902015-09-15 13:16:41 +03002294
2295{
Ville Syrjälä29490562016-01-20 18:02:50 +02002296 const struct intel_framebuffer *intel_fb = to_intel_framebuffer(state->base.fb);
2297 unsigned int rotation = state->base.rotation;
Ville Syrjälä6687c902015-09-15 13:16:41 +03002298
2299 if (intel_rotation_90_or_270(rotation)) {
2300 *x += intel_fb->rotated[plane].x;
2301 *y += intel_fb->rotated[plane].y;
2302 } else {
2303 *x += intel_fb->normal[plane].x;
2304 *y += intel_fb->normal[plane].y;
2305 }
2306}
2307
2308/*
Ville Syrjälä29cf9492016-02-15 22:54:42 +02002309 * Input tile dimensions and pitch must already be
2310 * rotated to match x and y, and in pixel units.
2311 */
Ville Syrjälä66a2d922016-02-05 18:44:05 +02002312static u32 _intel_adjust_tile_offset(int *x, int *y,
2313 unsigned int tile_width,
2314 unsigned int tile_height,
2315 unsigned int tile_size,
2316 unsigned int pitch_tiles,
2317 u32 old_offset,
2318 u32 new_offset)
Ville Syrjälä29cf9492016-02-15 22:54:42 +02002319{
Ville Syrjäläb9b24032016-02-08 18:28:00 +02002320 unsigned int pitch_pixels = pitch_tiles * tile_width;
Ville Syrjälä29cf9492016-02-15 22:54:42 +02002321 unsigned int tiles;
2322
2323 WARN_ON(old_offset & (tile_size - 1));
2324 WARN_ON(new_offset & (tile_size - 1));
2325 WARN_ON(new_offset > old_offset);
2326
2327 tiles = (old_offset - new_offset) / tile_size;
2328
2329 *y += tiles / pitch_tiles * tile_height;
2330 *x += tiles % pitch_tiles * tile_width;
2331
Ville Syrjäläb9b24032016-02-08 18:28:00 +02002332 /* minimize x in case it got needlessly big */
2333 *y += *x / pitch_pixels * tile_height;
2334 *x %= pitch_pixels;
2335
Ville Syrjälä29cf9492016-02-15 22:54:42 +02002336 return new_offset;
2337}
2338
2339/*
Ville Syrjälä66a2d922016-02-05 18:44:05 +02002340 * Adjust the tile offset by moving the difference into
2341 * the x/y offsets.
2342 */
2343static u32 intel_adjust_tile_offset(int *x, int *y,
2344 const struct intel_plane_state *state, int plane,
2345 u32 old_offset, u32 new_offset)
2346{
2347 const struct drm_i915_private *dev_priv = to_i915(state->base.plane->dev);
2348 const struct drm_framebuffer *fb = state->base.fb;
2349 unsigned int cpp = drm_format_plane_cpp(fb->pixel_format, plane);
2350 unsigned int rotation = state->base.rotation;
2351 unsigned int pitch = intel_fb_pitch(fb, plane, rotation);
2352
2353 WARN_ON(new_offset > old_offset);
2354
2355 if (fb->modifier[plane] != DRM_FORMAT_MOD_NONE) {
2356 unsigned int tile_size, tile_width, tile_height;
2357 unsigned int pitch_tiles;
2358
2359 tile_size = intel_tile_size(dev_priv);
2360 intel_tile_dims(dev_priv, &tile_width, &tile_height,
2361 fb->modifier[plane], cpp);
2362
2363 if (intel_rotation_90_or_270(rotation)) {
2364 pitch_tiles = pitch / tile_height;
2365 swap(tile_width, tile_height);
2366 } else {
2367 pitch_tiles = pitch / (tile_width * cpp);
2368 }
2369
2370 _intel_adjust_tile_offset(x, y, tile_width, tile_height,
2371 tile_size, pitch_tiles,
2372 old_offset, new_offset);
2373 } else {
2374 old_offset += *y * pitch + *x * cpp;
2375
2376 *y = (old_offset - new_offset) / pitch;
2377 *x = ((old_offset - new_offset) - *y * pitch) / cpp;
2378 }
2379
2380 return new_offset;
2381}
2382
2383/*
Ville Syrjälä8d0deca2016-02-15 22:54:41 +02002384 * Computes the linear offset to the base tile and adjusts
2385 * x, y. bytes per pixel is assumed to be a power-of-two.
2386 *
2387 * In the 90/270 rotated case, x and y are assumed
2388 * to be already rotated to match the rotated GTT view, and
2389 * pitch is the tile_height aligned framebuffer height.
Ville Syrjälä6687c902015-09-15 13:16:41 +03002390 *
2391 * This function is used when computing the derived information
2392 * under intel_framebuffer, so using any of that information
2393 * here is not allowed. Anything under drm_framebuffer can be
2394 * used. This is why the user has to pass in the pitch since it
2395 * is specified in the rotated orientation.
Ville Syrjälä8d0deca2016-02-15 22:54:41 +02002396 */
Ville Syrjälä6687c902015-09-15 13:16:41 +03002397static u32 _intel_compute_tile_offset(const struct drm_i915_private *dev_priv,
2398 int *x, int *y,
2399 const struct drm_framebuffer *fb, int plane,
2400 unsigned int pitch,
2401 unsigned int rotation,
2402 u32 alignment)
Daniel Vetterc2c75132012-07-05 12:17:30 +02002403{
Ville Syrjälä4f2d9932016-02-15 22:54:44 +02002404 uint64_t fb_modifier = fb->modifier[plane];
2405 unsigned int cpp = drm_format_plane_cpp(fb->pixel_format, plane);
Ville Syrjälä6687c902015-09-15 13:16:41 +03002406 u32 offset, offset_aligned;
Ville Syrjälä29cf9492016-02-15 22:54:42 +02002407
Ville Syrjälä29cf9492016-02-15 22:54:42 +02002408 if (alignment)
2409 alignment--;
2410
Ville Syrjäläb5c65332016-01-12 21:08:31 +02002411 if (fb_modifier != DRM_FORMAT_MOD_NONE) {
Ville Syrjälä8d0deca2016-02-15 22:54:41 +02002412 unsigned int tile_size, tile_width, tile_height;
2413 unsigned int tile_rows, tiles, pitch_tiles;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002414
Ville Syrjäläd8433102016-01-12 21:08:35 +02002415 tile_size = intel_tile_size(dev_priv);
Ville Syrjälä8d0deca2016-02-15 22:54:41 +02002416 intel_tile_dims(dev_priv, &tile_width, &tile_height,
2417 fb_modifier, cpp);
2418
2419 if (intel_rotation_90_or_270(rotation)) {
2420 pitch_tiles = pitch / tile_height;
2421 swap(tile_width, tile_height);
2422 } else {
2423 pitch_tiles = pitch / (tile_width * cpp);
2424 }
Daniel Vetterc2c75132012-07-05 12:17:30 +02002425
Ville Syrjäläd8433102016-01-12 21:08:35 +02002426 tile_rows = *y / tile_height;
2427 *y %= tile_height;
Chris Wilsonbc752862013-02-21 20:04:31 +00002428
Ville Syrjälä8d0deca2016-02-15 22:54:41 +02002429 tiles = *x / tile_width;
2430 *x %= tile_width;
Ville Syrjäläd8433102016-01-12 21:08:35 +02002431
Ville Syrjälä29cf9492016-02-15 22:54:42 +02002432 offset = (tile_rows * pitch_tiles + tiles) * tile_size;
2433 offset_aligned = offset & ~alignment;
Chris Wilsonbc752862013-02-21 20:04:31 +00002434
Ville Syrjälä66a2d922016-02-05 18:44:05 +02002435 _intel_adjust_tile_offset(x, y, tile_width, tile_height,
2436 tile_size, pitch_tiles,
2437 offset, offset_aligned);
Ville Syrjälä29cf9492016-02-15 22:54:42 +02002438 } else {
Chris Wilsonbc752862013-02-21 20:04:31 +00002439 offset = *y * pitch + *x * cpp;
Ville Syrjälä29cf9492016-02-15 22:54:42 +02002440 offset_aligned = offset & ~alignment;
2441
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002442 *y = (offset & alignment) / pitch;
2443 *x = ((offset & alignment) - *y * pitch) / cpp;
Chris Wilsonbc752862013-02-21 20:04:31 +00002444 }
Ville Syrjälä29cf9492016-02-15 22:54:42 +02002445
2446 return offset_aligned;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002447}
2448
Ville Syrjälä6687c902015-09-15 13:16:41 +03002449u32 intel_compute_tile_offset(int *x, int *y,
Ville Syrjälä29490562016-01-20 18:02:50 +02002450 const struct intel_plane_state *state,
2451 int plane)
Ville Syrjälä6687c902015-09-15 13:16:41 +03002452{
Ville Syrjälä29490562016-01-20 18:02:50 +02002453 const struct drm_i915_private *dev_priv = to_i915(state->base.plane->dev);
2454 const struct drm_framebuffer *fb = state->base.fb;
2455 unsigned int rotation = state->base.rotation;
Ville Syrjäläef78ec92015-10-13 22:48:39 +03002456 int pitch = intel_fb_pitch(fb, plane, rotation);
Ville Syrjälä8d970652016-01-28 16:30:28 +02002457 u32 alignment;
2458
2459 /* AUX_DIST needs only 4K alignment */
2460 if (fb->pixel_format == DRM_FORMAT_NV12 && plane == 1)
2461 alignment = 4096;
2462 else
2463 alignment = intel_surf_alignment(dev_priv, fb->modifier[plane]);
Ville Syrjälä6687c902015-09-15 13:16:41 +03002464
2465 return _intel_compute_tile_offset(dev_priv, x, y, fb, plane, pitch,
2466 rotation, alignment);
2467}
2468
2469/* Convert the fb->offset[] linear offset into x/y offsets */
2470static void intel_fb_offset_to_xy(int *x, int *y,
2471 const struct drm_framebuffer *fb, int plane)
2472{
2473 unsigned int cpp = drm_format_plane_cpp(fb->pixel_format, plane);
2474 unsigned int pitch = fb->pitches[plane];
2475 u32 linear_offset = fb->offsets[plane];
2476
2477 *y = linear_offset / pitch;
2478 *x = linear_offset % pitch / cpp;
2479}
2480
Ville Syrjälä72618eb2016-02-04 20:38:20 +02002481static unsigned int intel_fb_modifier_to_tiling(uint64_t fb_modifier)
2482{
2483 switch (fb_modifier) {
2484 case I915_FORMAT_MOD_X_TILED:
2485 return I915_TILING_X;
2486 case I915_FORMAT_MOD_Y_TILED:
2487 return I915_TILING_Y;
2488 default:
2489 return I915_TILING_NONE;
2490 }
2491}
2492
Ville Syrjälä6687c902015-09-15 13:16:41 +03002493static int
2494intel_fill_fb_info(struct drm_i915_private *dev_priv,
2495 struct drm_framebuffer *fb)
2496{
2497 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
2498 struct intel_rotation_info *rot_info = &intel_fb->rot_info;
2499 u32 gtt_offset_rotated = 0;
2500 unsigned int max_size = 0;
2501 uint32_t format = fb->pixel_format;
2502 int i, num_planes = drm_format_num_planes(format);
2503 unsigned int tile_size = intel_tile_size(dev_priv);
2504
2505 for (i = 0; i < num_planes; i++) {
2506 unsigned int width, height;
2507 unsigned int cpp, size;
2508 u32 offset;
2509 int x, y;
2510
2511 cpp = drm_format_plane_cpp(format, i);
2512 width = drm_format_plane_width(fb->width, format, i);
2513 height = drm_format_plane_height(fb->height, format, i);
2514
2515 intel_fb_offset_to_xy(&x, &y, fb, i);
2516
2517 /*
Ville Syrjälä60d5f2a2016-01-22 18:41:24 +02002518 * The fence (if used) is aligned to the start of the object
2519 * so having the framebuffer wrap around across the edge of the
2520 * fenced region doesn't really work. We have no API to configure
2521 * the fence start offset within the object (nor could we probably
2522 * on gen2/3). So it's just easier if we just require that the
2523 * fb layout agrees with the fence layout. We already check that the
2524 * fb stride matches the fence stride elsewhere.
2525 */
2526 if (i915_gem_object_is_tiled(intel_fb->obj) &&
2527 (x + width) * cpp > fb->pitches[i]) {
2528 DRM_DEBUG("bad fb plane %d offset: 0x%x\n",
2529 i, fb->offsets[i]);
2530 return -EINVAL;
2531 }
2532
2533 /*
Ville Syrjälä6687c902015-09-15 13:16:41 +03002534 * First pixel of the framebuffer from
2535 * the start of the normal gtt mapping.
2536 */
2537 intel_fb->normal[i].x = x;
2538 intel_fb->normal[i].y = y;
2539
2540 offset = _intel_compute_tile_offset(dev_priv, &x, &y,
2541 fb, 0, fb->pitches[i],
Daniel Vettercc926382016-08-15 10:41:47 +02002542 DRM_ROTATE_0, tile_size);
Ville Syrjälä6687c902015-09-15 13:16:41 +03002543 offset /= tile_size;
2544
2545 if (fb->modifier[i] != DRM_FORMAT_MOD_NONE) {
2546 unsigned int tile_width, tile_height;
2547 unsigned int pitch_tiles;
2548 struct drm_rect r;
2549
2550 intel_tile_dims(dev_priv, &tile_width, &tile_height,
2551 fb->modifier[i], cpp);
2552
2553 rot_info->plane[i].offset = offset;
2554 rot_info->plane[i].stride = DIV_ROUND_UP(fb->pitches[i], tile_width * cpp);
2555 rot_info->plane[i].width = DIV_ROUND_UP(x + width, tile_width);
2556 rot_info->plane[i].height = DIV_ROUND_UP(y + height, tile_height);
2557
2558 intel_fb->rotated[i].pitch =
2559 rot_info->plane[i].height * tile_height;
2560
2561 /* how many tiles does this plane need */
2562 size = rot_info->plane[i].stride * rot_info->plane[i].height;
2563 /*
2564 * If the plane isn't horizontally tile aligned,
2565 * we need one more tile.
2566 */
2567 if (x != 0)
2568 size++;
2569
2570 /* rotate the x/y offsets to match the GTT view */
2571 r.x1 = x;
2572 r.y1 = y;
2573 r.x2 = x + width;
2574 r.y2 = y + height;
2575 drm_rect_rotate(&r,
2576 rot_info->plane[i].width * tile_width,
2577 rot_info->plane[i].height * tile_height,
Daniel Vettercc926382016-08-15 10:41:47 +02002578 DRM_ROTATE_270);
Ville Syrjälä6687c902015-09-15 13:16:41 +03002579 x = r.x1;
2580 y = r.y1;
2581
2582 /* rotate the tile dimensions to match the GTT view */
2583 pitch_tiles = intel_fb->rotated[i].pitch / tile_height;
2584 swap(tile_width, tile_height);
2585
2586 /*
2587 * We only keep the x/y offsets, so push all of the
2588 * gtt offset into the x/y offsets.
2589 */
Ville Syrjälä66a2d922016-02-05 18:44:05 +02002590 _intel_adjust_tile_offset(&x, &y, tile_size,
2591 tile_width, tile_height, pitch_tiles,
2592 gtt_offset_rotated * tile_size, 0);
Ville Syrjälä6687c902015-09-15 13:16:41 +03002593
2594 gtt_offset_rotated += rot_info->plane[i].width * rot_info->plane[i].height;
2595
2596 /*
2597 * First pixel of the framebuffer from
2598 * the start of the rotated gtt mapping.
2599 */
2600 intel_fb->rotated[i].x = x;
2601 intel_fb->rotated[i].y = y;
2602 } else {
2603 size = DIV_ROUND_UP((y + height) * fb->pitches[i] +
2604 x * cpp, tile_size);
2605 }
2606
2607 /* how many tiles in total needed in the bo */
2608 max_size = max(max_size, offset + size);
2609 }
2610
2611 if (max_size * tile_size > to_intel_framebuffer(fb)->obj->base.size) {
2612 DRM_DEBUG("fb too big for bo (need %u bytes, have %zu bytes)\n",
2613 max_size * tile_size, to_intel_framebuffer(fb)->obj->base.size);
2614 return -EINVAL;
2615 }
2616
2617 return 0;
2618}
2619
Damien Lespiaub35d63f2015-01-20 12:51:50 +00002620static int i9xx_format_to_fourcc(int format)
Jesse Barnes46f297f2014-03-07 08:57:48 -08002621{
2622 switch (format) {
2623 case DISPPLANE_8BPP:
2624 return DRM_FORMAT_C8;
2625 case DISPPLANE_BGRX555:
2626 return DRM_FORMAT_XRGB1555;
2627 case DISPPLANE_BGRX565:
2628 return DRM_FORMAT_RGB565;
2629 default:
2630 case DISPPLANE_BGRX888:
2631 return DRM_FORMAT_XRGB8888;
2632 case DISPPLANE_RGBX888:
2633 return DRM_FORMAT_XBGR8888;
2634 case DISPPLANE_BGRX101010:
2635 return DRM_FORMAT_XRGB2101010;
2636 case DISPPLANE_RGBX101010:
2637 return DRM_FORMAT_XBGR2101010;
2638 }
2639}
2640
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00002641static int skl_format_to_fourcc(int format, bool rgb_order, bool alpha)
2642{
2643 switch (format) {
2644 case PLANE_CTL_FORMAT_RGB_565:
2645 return DRM_FORMAT_RGB565;
2646 default:
2647 case PLANE_CTL_FORMAT_XRGB_8888:
2648 if (rgb_order) {
2649 if (alpha)
2650 return DRM_FORMAT_ABGR8888;
2651 else
2652 return DRM_FORMAT_XBGR8888;
2653 } else {
2654 if (alpha)
2655 return DRM_FORMAT_ARGB8888;
2656 else
2657 return DRM_FORMAT_XRGB8888;
2658 }
2659 case PLANE_CTL_FORMAT_XRGB_2101010:
2660 if (rgb_order)
2661 return DRM_FORMAT_XBGR2101010;
2662 else
2663 return DRM_FORMAT_XRGB2101010;
2664 }
2665}
2666
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002667static bool
Daniel Vetterf6936e22015-03-26 12:17:05 +01002668intel_alloc_initial_plane_obj(struct intel_crtc *crtc,
2669 struct intel_initial_plane_config *plane_config)
Jesse Barnes46f297f2014-03-07 08:57:48 -08002670{
2671 struct drm_device *dev = crtc->base.dev;
Paulo Zanoni3badb492015-09-23 12:52:23 -03002672 struct drm_i915_private *dev_priv = to_i915(dev);
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002673 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002674 struct drm_i915_gem_object *obj = NULL;
2675 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Damien Lespiau2d140302015-02-05 17:22:18 +00002676 struct drm_framebuffer *fb = &plane_config->fb->base;
Daniel Vetterf37b5c22015-02-10 23:12:27 +01002677 u32 base_aligned = round_down(plane_config->base, PAGE_SIZE);
2678 u32 size_aligned = round_up(plane_config->base + plane_config->size,
2679 PAGE_SIZE);
2680
2681 size_aligned -= base_aligned;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002682
Chris Wilsonff2652e2014-03-10 08:07:02 +00002683 if (plane_config->size == 0)
2684 return false;
2685
Paulo Zanoni3badb492015-09-23 12:52:23 -03002686 /* If the FB is too big, just don't use it since fbdev is not very
2687 * important and we should probably use that space with FBC or other
2688 * features. */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002689 if (size_aligned * 2 > ggtt->stolen_usable_size)
Paulo Zanoni3badb492015-09-23 12:52:23 -03002690 return false;
2691
Tvrtko Ursulin12c83d92016-02-11 10:27:29 +00002692 mutex_lock(&dev->struct_mutex);
2693
Daniel Vetterf37b5c22015-02-10 23:12:27 +01002694 obj = i915_gem_object_create_stolen_for_preallocated(dev,
2695 base_aligned,
2696 base_aligned,
2697 size_aligned);
Tvrtko Ursulin12c83d92016-02-11 10:27:29 +00002698 if (!obj) {
2699 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002700 return false;
Tvrtko Ursulin12c83d92016-02-11 10:27:29 +00002701 }
Jesse Barnes46f297f2014-03-07 08:57:48 -08002702
Chris Wilson3e510a82016-08-05 10:14:23 +01002703 if (plane_config->tiling == I915_TILING_X)
2704 obj->tiling_and_stride = fb->pitches[0] | I915_TILING_X;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002705
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002706 mode_cmd.pixel_format = fb->pixel_format;
2707 mode_cmd.width = fb->width;
2708 mode_cmd.height = fb->height;
2709 mode_cmd.pitches[0] = fb->pitches[0];
Daniel Vetter18c52472015-02-10 17:16:09 +00002710 mode_cmd.modifier[0] = fb->modifier[0];
2711 mode_cmd.flags = DRM_MODE_FB_MODIFIERS;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002712
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002713 if (intel_framebuffer_init(dev, to_intel_framebuffer(fb),
Jesse Barnes484b41d2014-03-07 08:57:55 -08002714 &mode_cmd, obj)) {
Jesse Barnes46f297f2014-03-07 08:57:48 -08002715 DRM_DEBUG_KMS("intel fb init failed\n");
2716 goto out_unref_obj;
2717 }
Tvrtko Ursulin12c83d92016-02-11 10:27:29 +00002718
Jesse Barnes46f297f2014-03-07 08:57:48 -08002719 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002720
Daniel Vetterf6936e22015-03-26 12:17:05 +01002721 DRM_DEBUG_KMS("initial plane fb obj %p\n", obj);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002722 return true;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002723
2724out_unref_obj:
Chris Wilsonf8c417c2016-07-20 13:31:53 +01002725 i915_gem_object_put(obj);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002726 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002727 return false;
2728}
2729
Daniel Vetter5a21b662016-05-24 17:13:53 +02002730/* Update plane->state->fb to match plane->fb after driver-internal updates */
2731static void
2732update_state_fb(struct drm_plane *plane)
2733{
2734 if (plane->fb == plane->state->fb)
2735 return;
2736
2737 if (plane->state->fb)
2738 drm_framebuffer_unreference(plane->state->fb);
2739 plane->state->fb = plane->fb;
2740 if (plane->state->fb)
2741 drm_framebuffer_reference(plane->state->fb);
2742}
2743
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002744static void
Daniel Vetterf6936e22015-03-26 12:17:05 +01002745intel_find_initial_plane_obj(struct intel_crtc *intel_crtc,
2746 struct intel_initial_plane_config *plane_config)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002747{
2748 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01002749 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002750 struct drm_crtc *c;
2751 struct intel_crtc *i;
Matt Roper2ff8fde2014-07-08 07:50:07 -07002752 struct drm_i915_gem_object *obj;
Daniel Vetter88595ac2015-03-26 12:42:24 +01002753 struct drm_plane *primary = intel_crtc->base.primary;
Maarten Lankhorstbe5651f2015-07-13 16:30:18 +02002754 struct drm_plane_state *plane_state = primary->state;
Matt Roper200757f2015-12-03 11:37:36 -08002755 struct drm_crtc_state *crtc_state = intel_crtc->base.state;
2756 struct intel_plane *intel_plane = to_intel_plane(primary);
Matt Roper0a8d8a82015-12-03 11:37:38 -08002757 struct intel_plane_state *intel_state =
2758 to_intel_plane_state(plane_state);
Daniel Vetter88595ac2015-03-26 12:42:24 +01002759 struct drm_framebuffer *fb;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002760
Damien Lespiau2d140302015-02-05 17:22:18 +00002761 if (!plane_config->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002762 return;
2763
Daniel Vetterf6936e22015-03-26 12:17:05 +01002764 if (intel_alloc_initial_plane_obj(intel_crtc, plane_config)) {
Daniel Vetter88595ac2015-03-26 12:42:24 +01002765 fb = &plane_config->fb->base;
2766 goto valid_fb;
Damien Lespiauf55548b2015-02-05 18:30:20 +00002767 }
Jesse Barnes484b41d2014-03-07 08:57:55 -08002768
Damien Lespiau2d140302015-02-05 17:22:18 +00002769 kfree(plane_config->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002770
2771 /*
2772 * Failed to alloc the obj, check to see if we should share
2773 * an fb with another CRTC instead
2774 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002775 for_each_crtc(dev, c) {
Jesse Barnes484b41d2014-03-07 08:57:55 -08002776 i = to_intel_crtc(c);
2777
2778 if (c == &intel_crtc->base)
2779 continue;
2780
Matt Roper2ff8fde2014-07-08 07:50:07 -07002781 if (!i->active)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002782 continue;
2783
Daniel Vetter88595ac2015-03-26 12:42:24 +01002784 fb = c->primary->fb;
2785 if (!fb)
Matt Roper2ff8fde2014-07-08 07:50:07 -07002786 continue;
2787
Daniel Vetter88595ac2015-03-26 12:42:24 +01002788 obj = intel_fb_obj(fb);
Chris Wilson058d88c2016-08-15 10:49:06 +01002789 if (i915_gem_object_ggtt_offset(obj, NULL) == plane_config->base) {
Daniel Vetter88595ac2015-03-26 12:42:24 +01002790 drm_framebuffer_reference(fb);
2791 goto valid_fb;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002792 }
2793 }
Daniel Vetter88595ac2015-03-26 12:42:24 +01002794
Matt Roper200757f2015-12-03 11:37:36 -08002795 /*
2796 * We've failed to reconstruct the BIOS FB. Current display state
2797 * indicates that the primary plane is visible, but has a NULL FB,
2798 * which will lead to problems later if we don't fix it up. The
2799 * simplest solution is to just disable the primary plane now and
2800 * pretend the BIOS never had it enabled.
2801 */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002802 to_intel_plane_state(plane_state)->base.visible = false;
Matt Roper200757f2015-12-03 11:37:36 -08002803 crtc_state->plane_mask &= ~(1 << drm_plane_index(primary));
Ville Syrjälä2622a082016-03-09 19:07:26 +02002804 intel_pre_disable_primary_noatomic(&intel_crtc->base);
Matt Roper200757f2015-12-03 11:37:36 -08002805 intel_plane->disable_plane(primary, &intel_crtc->base);
2806
Daniel Vetter88595ac2015-03-26 12:42:24 +01002807 return;
2808
2809valid_fb:
Ville Syrjäläf44e2652015-11-13 19:16:13 +02002810 plane_state->src_x = 0;
2811 plane_state->src_y = 0;
Maarten Lankhorstbe5651f2015-07-13 16:30:18 +02002812 plane_state->src_w = fb->width << 16;
2813 plane_state->src_h = fb->height << 16;
2814
Ville Syrjäläf44e2652015-11-13 19:16:13 +02002815 plane_state->crtc_x = 0;
2816 plane_state->crtc_y = 0;
Maarten Lankhorstbe5651f2015-07-13 16:30:18 +02002817 plane_state->crtc_w = fb->width;
2818 plane_state->crtc_h = fb->height;
2819
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002820 intel_state->base.src.x1 = plane_state->src_x;
2821 intel_state->base.src.y1 = plane_state->src_y;
2822 intel_state->base.src.x2 = plane_state->src_x + plane_state->src_w;
2823 intel_state->base.src.y2 = plane_state->src_y + plane_state->src_h;
2824 intel_state->base.dst.x1 = plane_state->crtc_x;
2825 intel_state->base.dst.y1 = plane_state->crtc_y;
2826 intel_state->base.dst.x2 = plane_state->crtc_x + plane_state->crtc_w;
2827 intel_state->base.dst.y2 = plane_state->crtc_y + plane_state->crtc_h;
Matt Roper0a8d8a82015-12-03 11:37:38 -08002828
Daniel Vetter88595ac2015-03-26 12:42:24 +01002829 obj = intel_fb_obj(fb);
Chris Wilson3e510a82016-08-05 10:14:23 +01002830 if (i915_gem_object_is_tiled(obj))
Daniel Vetter88595ac2015-03-26 12:42:24 +01002831 dev_priv->preserve_bios_swizzle = true;
2832
Maarten Lankhorstbe5651f2015-07-13 16:30:18 +02002833 drm_framebuffer_reference(fb);
2834 primary->fb = primary->state->fb = fb;
Maarten Lankhorst36750f22015-06-01 12:49:54 +02002835 primary->crtc = primary->state->crtc = &intel_crtc->base;
Maarten Lankhorst36750f22015-06-01 12:49:54 +02002836 intel_crtc->base.state->plane_mask |= (1 << drm_plane_index(primary));
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01002837 atomic_or(to_intel_plane(primary)->frontbuffer_bit,
2838 &obj->frontbuffer_bits);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002839}
2840
Ville Syrjäläb63a16f2016-01-28 16:53:54 +02002841static int skl_max_plane_width(const struct drm_framebuffer *fb, int plane,
2842 unsigned int rotation)
2843{
2844 int cpp = drm_format_plane_cpp(fb->pixel_format, plane);
2845
2846 switch (fb->modifier[plane]) {
2847 case DRM_FORMAT_MOD_NONE:
2848 case I915_FORMAT_MOD_X_TILED:
2849 switch (cpp) {
2850 case 8:
2851 return 4096;
2852 case 4:
2853 case 2:
2854 case 1:
2855 return 8192;
2856 default:
2857 MISSING_CASE(cpp);
2858 break;
2859 }
2860 break;
2861 case I915_FORMAT_MOD_Y_TILED:
2862 case I915_FORMAT_MOD_Yf_TILED:
2863 switch (cpp) {
2864 case 8:
2865 return 2048;
2866 case 4:
2867 return 4096;
2868 case 2:
2869 case 1:
2870 return 8192;
2871 default:
2872 MISSING_CASE(cpp);
2873 break;
2874 }
2875 break;
2876 default:
2877 MISSING_CASE(fb->modifier[plane]);
2878 }
2879
2880 return 2048;
2881}
2882
2883static int skl_check_main_surface(struct intel_plane_state *plane_state)
2884{
2885 const struct drm_i915_private *dev_priv = to_i915(plane_state->base.plane->dev);
2886 const struct drm_framebuffer *fb = plane_state->base.fb;
2887 unsigned int rotation = plane_state->base.rotation;
Daniel Vettercc926382016-08-15 10:41:47 +02002888 int x = plane_state->base.src.x1 >> 16;
2889 int y = plane_state->base.src.y1 >> 16;
2890 int w = drm_rect_width(&plane_state->base.src) >> 16;
2891 int h = drm_rect_height(&plane_state->base.src) >> 16;
Ville Syrjäläb63a16f2016-01-28 16:53:54 +02002892 int max_width = skl_max_plane_width(fb, 0, rotation);
2893 int max_height = 4096;
Ville Syrjälä8d970652016-01-28 16:30:28 +02002894 u32 alignment, offset, aux_offset = plane_state->aux.offset;
Ville Syrjäläb63a16f2016-01-28 16:53:54 +02002895
2896 if (w > max_width || h > max_height) {
2897 DRM_DEBUG_KMS("requested Y/RGB source size %dx%d too big (limit %dx%d)\n",
2898 w, h, max_width, max_height);
2899 return -EINVAL;
2900 }
2901
2902 intel_add_fb_offsets(&x, &y, plane_state, 0);
2903 offset = intel_compute_tile_offset(&x, &y, plane_state, 0);
2904
2905 alignment = intel_surf_alignment(dev_priv, fb->modifier[0]);
2906
2907 /*
Ville Syrjälä8d970652016-01-28 16:30:28 +02002908 * AUX surface offset is specified as the distance from the
2909 * main surface offset, and it must be non-negative. Make
2910 * sure that is what we will get.
2911 */
2912 if (offset > aux_offset)
2913 offset = intel_adjust_tile_offset(&x, &y, plane_state, 0,
2914 offset, aux_offset & ~(alignment - 1));
2915
2916 /*
Ville Syrjäläb63a16f2016-01-28 16:53:54 +02002917 * When using an X-tiled surface, the plane blows up
2918 * if the x offset + width exceed the stride.
2919 *
2920 * TODO: linear and Y-tiled seem fine, Yf untested,
2921 */
2922 if (fb->modifier[0] == I915_FORMAT_MOD_X_TILED) {
2923 int cpp = drm_format_plane_cpp(fb->pixel_format, 0);
2924
2925 while ((x + w) * cpp > fb->pitches[0]) {
2926 if (offset == 0) {
2927 DRM_DEBUG_KMS("Unable to find suitable display surface offset\n");
2928 return -EINVAL;
2929 }
2930
2931 offset = intel_adjust_tile_offset(&x, &y, plane_state, 0,
2932 offset, offset - alignment);
2933 }
2934 }
2935
2936 plane_state->main.offset = offset;
2937 plane_state->main.x = x;
2938 plane_state->main.y = y;
2939
2940 return 0;
2941}
2942
Ville Syrjälä8d970652016-01-28 16:30:28 +02002943static int skl_check_nv12_aux_surface(struct intel_plane_state *plane_state)
2944{
2945 const struct drm_framebuffer *fb = plane_state->base.fb;
2946 unsigned int rotation = plane_state->base.rotation;
2947 int max_width = skl_max_plane_width(fb, 1, rotation);
2948 int max_height = 4096;
Daniel Vettercc926382016-08-15 10:41:47 +02002949 int x = plane_state->base.src.x1 >> 17;
2950 int y = plane_state->base.src.y1 >> 17;
2951 int w = drm_rect_width(&plane_state->base.src) >> 17;
2952 int h = drm_rect_height(&plane_state->base.src) >> 17;
Ville Syrjälä8d970652016-01-28 16:30:28 +02002953 u32 offset;
2954
2955 intel_add_fb_offsets(&x, &y, plane_state, 1);
2956 offset = intel_compute_tile_offset(&x, &y, plane_state, 1);
2957
2958 /* FIXME not quite sure how/if these apply to the chroma plane */
2959 if (w > max_width || h > max_height) {
2960 DRM_DEBUG_KMS("CbCr source size %dx%d too big (limit %dx%d)\n",
2961 w, h, max_width, max_height);
2962 return -EINVAL;
2963 }
2964
2965 plane_state->aux.offset = offset;
2966 plane_state->aux.x = x;
2967 plane_state->aux.y = y;
2968
2969 return 0;
2970}
2971
Ville Syrjäläb63a16f2016-01-28 16:53:54 +02002972int skl_check_plane_surface(struct intel_plane_state *plane_state)
2973{
2974 const struct drm_framebuffer *fb = plane_state->base.fb;
2975 unsigned int rotation = plane_state->base.rotation;
2976 int ret;
2977
2978 /* Rotate src coordinates to match rotated GTT view */
2979 if (intel_rotation_90_or_270(rotation))
Daniel Vettercc926382016-08-15 10:41:47 +02002980 drm_rect_rotate(&plane_state->base.src,
2981 fb->width, fb->height, DRM_ROTATE_270);
Ville Syrjäläb63a16f2016-01-28 16:53:54 +02002982
Ville Syrjälä8d970652016-01-28 16:30:28 +02002983 /*
2984 * Handle the AUX surface first since
2985 * the main surface setup depends on it.
2986 */
2987 if (fb->pixel_format == DRM_FORMAT_NV12) {
2988 ret = skl_check_nv12_aux_surface(plane_state);
2989 if (ret)
2990 return ret;
2991 } else {
2992 plane_state->aux.offset = ~0xfff;
2993 plane_state->aux.x = 0;
2994 plane_state->aux.y = 0;
2995 }
2996
Ville Syrjäläb63a16f2016-01-28 16:53:54 +02002997 ret = skl_check_main_surface(plane_state);
2998 if (ret)
2999 return ret;
3000
3001 return 0;
3002}
3003
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +01003004static void i9xx_update_primary_plane(struct drm_plane *primary,
3005 const struct intel_crtc_state *crtc_state,
3006 const struct intel_plane_state *plane_state)
Jesse Barnes81255562010-08-02 12:07:50 -07003007{
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +01003008 struct drm_device *dev = primary->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003009 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +01003010 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
3011 struct drm_framebuffer *fb = plane_state->base.fb;
3012 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Jesse Barnes81255562010-08-02 12:07:50 -07003013 int plane = intel_crtc->plane;
Ville Syrjälä54ea9da2016-01-20 21:05:25 +02003014 u32 linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07003015 u32 dspcntr;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003016 i915_reg_t reg = DSPCNTR(plane);
Ville Syrjälä8d0deca2016-02-15 22:54:41 +02003017 unsigned int rotation = plane_state->base.rotation;
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003018 int x = plane_state->base.src.x1 >> 16;
3019 int y = plane_state->base.src.y1 >> 16;
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03003020
Ville Syrjäläf45651b2014-08-08 21:51:10 +03003021 dspcntr = DISPPLANE_GAMMA_ENABLE;
3022
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03003023 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03003024
3025 if (INTEL_INFO(dev)->gen < 4) {
3026 if (intel_crtc->pipe == PIPE_B)
3027 dspcntr |= DISPPLANE_SEL_PIPE_B;
3028
3029 /* pipesrc and dspsize control the size that is scaled from,
3030 * which should always be the user's requested size.
3031 */
3032 I915_WRITE(DSPSIZE(plane),
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +01003033 ((crtc_state->pipe_src_h - 1) << 16) |
3034 (crtc_state->pipe_src_w - 1));
Ville Syrjäläf45651b2014-08-08 21:51:10 +03003035 I915_WRITE(DSPPOS(plane), 0);
Ville Syrjäläc14b0482014-10-16 20:52:34 +03003036 } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) {
3037 I915_WRITE(PRIMSIZE(plane),
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +01003038 ((crtc_state->pipe_src_h - 1) << 16) |
3039 (crtc_state->pipe_src_w - 1));
Ville Syrjäläc14b0482014-10-16 20:52:34 +03003040 I915_WRITE(PRIMPOS(plane), 0);
3041 I915_WRITE(PRIMCNSTALPHA(plane), 0);
Ville Syrjäläf45651b2014-08-08 21:51:10 +03003042 }
3043
Ville Syrjälä57779d02012-10-31 17:50:14 +02003044 switch (fb->pixel_format) {
3045 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07003046 dspcntr |= DISPPLANE_8BPP;
3047 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02003048 case DRM_FORMAT_XRGB1555:
Ville Syrjälä57779d02012-10-31 17:50:14 +02003049 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07003050 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02003051 case DRM_FORMAT_RGB565:
3052 dspcntr |= DISPPLANE_BGRX565;
3053 break;
3054 case DRM_FORMAT_XRGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02003055 dspcntr |= DISPPLANE_BGRX888;
3056 break;
3057 case DRM_FORMAT_XBGR8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02003058 dspcntr |= DISPPLANE_RGBX888;
3059 break;
3060 case DRM_FORMAT_XRGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02003061 dspcntr |= DISPPLANE_BGRX101010;
3062 break;
3063 case DRM_FORMAT_XBGR2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02003064 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07003065 break;
3066 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01003067 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07003068 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02003069
Ville Syrjälä72618eb2016-02-04 20:38:20 +02003070 if (INTEL_GEN(dev_priv) >= 4 &&
3071 fb->modifier[0] == I915_FORMAT_MOD_X_TILED)
Ville Syrjäläf45651b2014-08-08 21:51:10 +03003072 dspcntr |= DISPPLANE_TILED;
Jesse Barnes81255562010-08-02 12:07:50 -07003073
Ville Syrjäläde1aa622013-06-07 10:47:01 +03003074 if (IS_G4X(dev))
3075 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
3076
Ville Syrjälä29490562016-01-20 18:02:50 +02003077 intel_add_fb_offsets(&x, &y, plane_state, 0);
Jesse Barnes81255562010-08-02 12:07:50 -07003078
Ville Syrjälä6687c902015-09-15 13:16:41 +03003079 if (INTEL_INFO(dev)->gen >= 4)
Daniel Vetterc2c75132012-07-05 12:17:30 +02003080 intel_crtc->dspaddr_offset =
Ville Syrjälä29490562016-01-20 18:02:50 +02003081 intel_compute_tile_offset(&x, &y, plane_state, 0);
Daniel Vettere506a0c2012-07-05 12:17:29 +02003082
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +03003083 if (rotation == DRM_ROTATE_180) {
Sonika Jindal48404c12014-08-22 14:06:04 +05303084 dspcntr |= DISPPLANE_ROTATE_180;
3085
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +01003086 x += (crtc_state->pipe_src_w - 1);
3087 y += (crtc_state->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05303088 }
3089
Ville Syrjälä29490562016-01-20 18:02:50 +02003090 linear_offset = intel_fb_xy_to_linear(x, y, plane_state, 0);
Ville Syrjälä6687c902015-09-15 13:16:41 +03003091
3092 if (INTEL_INFO(dev)->gen < 4)
3093 intel_crtc->dspaddr_offset = linear_offset;
3094
Paulo Zanoni2db33662015-09-14 15:20:03 -03003095 intel_crtc->adjusted_x = x;
3096 intel_crtc->adjusted_y = y;
3097
Sonika Jindal48404c12014-08-22 14:06:04 +05303098 I915_WRITE(reg, dspcntr);
3099
Ville Syrjälä01f2c772011-12-20 00:06:49 +02003100 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003101 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter85ba7b72014-01-24 10:31:44 +01003102 I915_WRITE(DSPSURF(plane),
Ville Syrjälä6687c902015-09-15 13:16:41 +03003103 intel_fb_gtt_offset(fb, rotation) +
3104 intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01003105 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02003106 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01003107 } else
Chris Wilson058d88c2016-08-15 10:49:06 +01003108 I915_WRITE(DSPADDR(plane), i915_gem_object_ggtt_offset(obj, NULL) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01003109 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07003110}
3111
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +01003112static void i9xx_disable_primary_plane(struct drm_plane *primary,
3113 struct drm_crtc *crtc)
Jesse Barnes17638cd2011-06-24 12:19:23 -07003114{
3115 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003116 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes17638cd2011-06-24 12:19:23 -07003117 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +01003118 int plane = intel_crtc->plane;
3119
3120 I915_WRITE(DSPCNTR(plane), 0);
3121 if (INTEL_INFO(dev_priv)->gen >= 4)
3122 I915_WRITE(DSPSURF(plane), 0);
3123 else
3124 I915_WRITE(DSPADDR(plane), 0);
3125 POSTING_READ(DSPCNTR(plane));
3126}
3127
3128static void ironlake_update_primary_plane(struct drm_plane *primary,
3129 const struct intel_crtc_state *crtc_state,
3130 const struct intel_plane_state *plane_state)
3131{
3132 struct drm_device *dev = primary->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003133 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +01003134 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
3135 struct drm_framebuffer *fb = plane_state->base.fb;
Jesse Barnes17638cd2011-06-24 12:19:23 -07003136 int plane = intel_crtc->plane;
Ville Syrjälä54ea9da2016-01-20 21:05:25 +02003137 u32 linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07003138 u32 dspcntr;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003139 i915_reg_t reg = DSPCNTR(plane);
Ville Syrjälä8d0deca2016-02-15 22:54:41 +02003140 unsigned int rotation = plane_state->base.rotation;
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003141 int x = plane_state->base.src.x1 >> 16;
3142 int y = plane_state->base.src.y1 >> 16;
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03003143
Ville Syrjäläf45651b2014-08-08 21:51:10 +03003144 dspcntr = DISPPLANE_GAMMA_ENABLE;
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03003145 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03003146
3147 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
3148 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
3149
Ville Syrjälä57779d02012-10-31 17:50:14 +02003150 switch (fb->pixel_format) {
3151 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07003152 dspcntr |= DISPPLANE_8BPP;
3153 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02003154 case DRM_FORMAT_RGB565:
3155 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07003156 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02003157 case DRM_FORMAT_XRGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02003158 dspcntr |= DISPPLANE_BGRX888;
3159 break;
3160 case DRM_FORMAT_XBGR8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02003161 dspcntr |= DISPPLANE_RGBX888;
3162 break;
3163 case DRM_FORMAT_XRGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02003164 dspcntr |= DISPPLANE_BGRX101010;
3165 break;
3166 case DRM_FORMAT_XBGR2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02003167 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07003168 break;
3169 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01003170 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07003171 }
3172
Ville Syrjälä72618eb2016-02-04 20:38:20 +02003173 if (fb->modifier[0] == I915_FORMAT_MOD_X_TILED)
Jesse Barnes17638cd2011-06-24 12:19:23 -07003174 dspcntr |= DISPPLANE_TILED;
Jesse Barnes17638cd2011-06-24 12:19:23 -07003175
Ville Syrjäläf45651b2014-08-08 21:51:10 +03003176 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03003177 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07003178
Ville Syrjälä29490562016-01-20 18:02:50 +02003179 intel_add_fb_offsets(&x, &y, plane_state, 0);
Ville Syrjälä6687c902015-09-15 13:16:41 +03003180
Daniel Vetterc2c75132012-07-05 12:17:30 +02003181 intel_crtc->dspaddr_offset =
Ville Syrjälä29490562016-01-20 18:02:50 +02003182 intel_compute_tile_offset(&x, &y, plane_state, 0);
Ville Syrjälä6687c902015-09-15 13:16:41 +03003183
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +03003184 if (rotation == DRM_ROTATE_180) {
Sonika Jindal48404c12014-08-22 14:06:04 +05303185 dspcntr |= DISPPLANE_ROTATE_180;
3186
3187 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +01003188 x += (crtc_state->pipe_src_w - 1);
3189 y += (crtc_state->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05303190 }
3191 }
3192
Ville Syrjälä29490562016-01-20 18:02:50 +02003193 linear_offset = intel_fb_xy_to_linear(x, y, plane_state, 0);
Ville Syrjälä6687c902015-09-15 13:16:41 +03003194
Paulo Zanoni2db33662015-09-14 15:20:03 -03003195 intel_crtc->adjusted_x = x;
3196 intel_crtc->adjusted_y = y;
3197
Sonika Jindal48404c12014-08-22 14:06:04 +05303198 I915_WRITE(reg, dspcntr);
Jesse Barnes17638cd2011-06-24 12:19:23 -07003199
Ville Syrjälä01f2c772011-12-20 00:06:49 +02003200 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetter85ba7b72014-01-24 10:31:44 +01003201 I915_WRITE(DSPSURF(plane),
Ville Syrjälä6687c902015-09-15 13:16:41 +03003202 intel_fb_gtt_offset(fb, rotation) +
3203 intel_crtc->dspaddr_offset);
Paulo Zanonib3dc6852013-11-02 21:07:33 -07003204 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00003205 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
3206 } else {
3207 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
3208 I915_WRITE(DSPLINOFF(plane), linear_offset);
3209 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07003210 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07003211}
3212
Ville Syrjälä7b49f942016-01-12 21:08:32 +02003213u32 intel_fb_stride_alignment(const struct drm_i915_private *dev_priv,
3214 uint64_t fb_modifier, uint32_t pixel_format)
Damien Lespiaub3218032015-02-27 11:15:18 +00003215{
Ville Syrjälä7b49f942016-01-12 21:08:32 +02003216 if (fb_modifier == DRM_FORMAT_MOD_NONE) {
3217 return 64;
3218 } else {
3219 int cpp = drm_format_plane_cpp(pixel_format, 0);
Damien Lespiaub3218032015-02-27 11:15:18 +00003220
Ville Syrjälä27ba3912016-02-15 22:54:40 +02003221 return intel_tile_width_bytes(dev_priv, fb_modifier, cpp);
Damien Lespiaub3218032015-02-27 11:15:18 +00003222 }
3223}
3224
Ville Syrjälä6687c902015-09-15 13:16:41 +03003225u32 intel_fb_gtt_offset(struct drm_framebuffer *fb,
3226 unsigned int rotation)
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00003227{
Ville Syrjälä6687c902015-09-15 13:16:41 +03003228 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Daniel Vetterce7f1722015-10-14 16:51:06 +02003229 struct i915_ggtt_view view;
Chris Wilson058d88c2016-08-15 10:49:06 +01003230 struct i915_vma *vma;
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00003231
Ville Syrjälä6687c902015-09-15 13:16:41 +03003232 intel_fill_fb_ggtt_view(&view, fb, rotation);
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00003233
Chris Wilson058d88c2016-08-15 10:49:06 +01003234 vma = i915_gem_object_to_ggtt(obj, &view);
3235 if (WARN(!vma, "ggtt vma for display object not found! (view=%u)\n",
3236 view.type))
3237 return -1;
3238
Chris Wilsonbde13eb2016-08-15 10:49:07 +01003239 return i915_ggtt_offset(vma);
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00003240}
3241
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02003242static void skl_detach_scaler(struct intel_crtc *intel_crtc, int id)
3243{
3244 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003245 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02003246
3247 I915_WRITE(SKL_PS_CTRL(intel_crtc->pipe, id), 0);
3248 I915_WRITE(SKL_PS_WIN_POS(intel_crtc->pipe, id), 0);
3249 I915_WRITE(SKL_PS_WIN_SZ(intel_crtc->pipe, id), 0);
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02003250}
3251
Chandra Kondurua1b22782015-04-07 15:28:45 -07003252/*
3253 * This function detaches (aka. unbinds) unused scalers in hardware
3254 */
Maarten Lankhorst05832362015-06-15 12:33:48 +02003255static void skl_detach_scalers(struct intel_crtc *intel_crtc)
Chandra Kondurua1b22782015-04-07 15:28:45 -07003256{
Chandra Kondurua1b22782015-04-07 15:28:45 -07003257 struct intel_crtc_scaler_state *scaler_state;
3258 int i;
3259
Chandra Kondurua1b22782015-04-07 15:28:45 -07003260 scaler_state = &intel_crtc->config->scaler_state;
3261
3262 /* loop through and disable scalers that aren't in use */
3263 for (i = 0; i < intel_crtc->num_scalers; i++) {
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02003264 if (!scaler_state->scalers[i].in_use)
3265 skl_detach_scaler(intel_crtc, i);
Chandra Kondurua1b22782015-04-07 15:28:45 -07003266 }
3267}
3268
Ville Syrjäläd2196772016-01-28 18:33:11 +02003269u32 skl_plane_stride(const struct drm_framebuffer *fb, int plane,
3270 unsigned int rotation)
3271{
3272 const struct drm_i915_private *dev_priv = to_i915(fb->dev);
3273 u32 stride = intel_fb_pitch(fb, plane, rotation);
3274
3275 /*
3276 * The stride is either expressed as a multiple of 64 bytes chunks for
3277 * linear buffers or in number of tiles for tiled buffers.
3278 */
3279 if (intel_rotation_90_or_270(rotation)) {
3280 int cpp = drm_format_plane_cpp(fb->pixel_format, plane);
3281
3282 stride /= intel_tile_height(dev_priv, fb->modifier[0], cpp);
3283 } else {
3284 stride /= intel_fb_stride_alignment(dev_priv, fb->modifier[0],
3285 fb->pixel_format);
3286 }
3287
3288 return stride;
3289}
3290
Chandra Konduru6156a452015-04-27 13:48:39 -07003291u32 skl_plane_ctl_format(uint32_t pixel_format)
3292{
Chandra Konduru6156a452015-04-27 13:48:39 -07003293 switch (pixel_format) {
Damien Lespiaud161cf72015-05-12 16:13:17 +01003294 case DRM_FORMAT_C8:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003295 return PLANE_CTL_FORMAT_INDEXED;
Chandra Konduru6156a452015-04-27 13:48:39 -07003296 case DRM_FORMAT_RGB565:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003297 return PLANE_CTL_FORMAT_RGB_565;
Chandra Konduru6156a452015-04-27 13:48:39 -07003298 case DRM_FORMAT_XBGR8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003299 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX;
Chandra Konduru6156a452015-04-27 13:48:39 -07003300 case DRM_FORMAT_XRGB8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003301 return PLANE_CTL_FORMAT_XRGB_8888;
Chandra Konduru6156a452015-04-27 13:48:39 -07003302 /*
3303 * XXX: For ARBG/ABGR formats we default to expecting scanout buffers
3304 * to be already pre-multiplied. We need to add a knob (or a different
3305 * DRM_FORMAT) for user-space to configure that.
3306 */
3307 case DRM_FORMAT_ABGR8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003308 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX |
Chandra Konduru6156a452015-04-27 13:48:39 -07003309 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
Chandra Konduru6156a452015-04-27 13:48:39 -07003310 case DRM_FORMAT_ARGB8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003311 return PLANE_CTL_FORMAT_XRGB_8888 |
Chandra Konduru6156a452015-04-27 13:48:39 -07003312 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
Chandra Konduru6156a452015-04-27 13:48:39 -07003313 case DRM_FORMAT_XRGB2101010:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003314 return PLANE_CTL_FORMAT_XRGB_2101010;
Chandra Konduru6156a452015-04-27 13:48:39 -07003315 case DRM_FORMAT_XBGR2101010:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003316 return PLANE_CTL_ORDER_RGBX | PLANE_CTL_FORMAT_XRGB_2101010;
Chandra Konduru6156a452015-04-27 13:48:39 -07003317 case DRM_FORMAT_YUYV:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003318 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YUYV;
Chandra Konduru6156a452015-04-27 13:48:39 -07003319 case DRM_FORMAT_YVYU:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003320 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YVYU;
Chandra Konduru6156a452015-04-27 13:48:39 -07003321 case DRM_FORMAT_UYVY:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003322 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_UYVY;
Chandra Konduru6156a452015-04-27 13:48:39 -07003323 case DRM_FORMAT_VYUY:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003324 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_VYUY;
Chandra Konduru6156a452015-04-27 13:48:39 -07003325 default:
Damien Lespiau4249eee2015-05-12 16:13:16 +01003326 MISSING_CASE(pixel_format);
Chandra Konduru6156a452015-04-27 13:48:39 -07003327 }
Damien Lespiau8cfcba42015-05-12 16:13:14 +01003328
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003329 return 0;
Chandra Konduru6156a452015-04-27 13:48:39 -07003330}
3331
3332u32 skl_plane_ctl_tiling(uint64_t fb_modifier)
3333{
Chandra Konduru6156a452015-04-27 13:48:39 -07003334 switch (fb_modifier) {
3335 case DRM_FORMAT_MOD_NONE:
3336 break;
3337 case I915_FORMAT_MOD_X_TILED:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003338 return PLANE_CTL_TILED_X;
Chandra Konduru6156a452015-04-27 13:48:39 -07003339 case I915_FORMAT_MOD_Y_TILED:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003340 return PLANE_CTL_TILED_Y;
Chandra Konduru6156a452015-04-27 13:48:39 -07003341 case I915_FORMAT_MOD_Yf_TILED:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003342 return PLANE_CTL_TILED_YF;
Chandra Konduru6156a452015-04-27 13:48:39 -07003343 default:
3344 MISSING_CASE(fb_modifier);
3345 }
Damien Lespiau8cfcba42015-05-12 16:13:14 +01003346
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003347 return 0;
Chandra Konduru6156a452015-04-27 13:48:39 -07003348}
3349
3350u32 skl_plane_ctl_rotation(unsigned int rotation)
3351{
Chandra Konduru6156a452015-04-27 13:48:39 -07003352 switch (rotation) {
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +03003353 case DRM_ROTATE_0:
Chandra Konduru6156a452015-04-27 13:48:39 -07003354 break;
Sonika Jindal1e8df162015-05-20 13:40:48 +05303355 /*
3356 * DRM_ROTATE_ is counter clockwise to stay compatible with Xrandr
3357 * while i915 HW rotation is clockwise, thats why this swapping.
3358 */
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +03003359 case DRM_ROTATE_90:
Sonika Jindal1e8df162015-05-20 13:40:48 +05303360 return PLANE_CTL_ROTATE_270;
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +03003361 case DRM_ROTATE_180:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003362 return PLANE_CTL_ROTATE_180;
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +03003363 case DRM_ROTATE_270:
Sonika Jindal1e8df162015-05-20 13:40:48 +05303364 return PLANE_CTL_ROTATE_90;
Chandra Konduru6156a452015-04-27 13:48:39 -07003365 default:
3366 MISSING_CASE(rotation);
3367 }
3368
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003369 return 0;
Chandra Konduru6156a452015-04-27 13:48:39 -07003370}
3371
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +01003372static void skylake_update_primary_plane(struct drm_plane *plane,
3373 const struct intel_crtc_state *crtc_state,
3374 const struct intel_plane_state *plane_state)
Damien Lespiau70d21f02013-07-03 21:06:04 +01003375{
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +01003376 struct drm_device *dev = plane->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003377 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +01003378 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
3379 struct drm_framebuffer *fb = plane_state->base.fb;
Lyude62e0fb82016-08-22 12:50:08 -04003380 const struct skl_wm_values *wm = &dev_priv->wm.skl_results;
Damien Lespiau70d21f02013-07-03 21:06:04 +01003381 int pipe = intel_crtc->pipe;
Ville Syrjäläd2196772016-01-28 18:33:11 +02003382 u32 plane_ctl;
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +01003383 unsigned int rotation = plane_state->base.rotation;
Ville Syrjäläd2196772016-01-28 18:33:11 +02003384 u32 stride = skl_plane_stride(fb, 0, rotation);
Ville Syrjäläb63a16f2016-01-28 16:53:54 +02003385 u32 surf_addr = plane_state->main.offset;
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +01003386 int scaler_id = plane_state->scaler_id;
Ville Syrjäläb63a16f2016-01-28 16:53:54 +02003387 int src_x = plane_state->main.x;
3388 int src_y = plane_state->main.y;
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003389 int src_w = drm_rect_width(&plane_state->base.src) >> 16;
3390 int src_h = drm_rect_height(&plane_state->base.src) >> 16;
3391 int dst_x = plane_state->base.dst.x1;
3392 int dst_y = plane_state->base.dst.y1;
3393 int dst_w = drm_rect_width(&plane_state->base.dst);
3394 int dst_h = drm_rect_height(&plane_state->base.dst);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003395
3396 plane_ctl = PLANE_CTL_ENABLE |
3397 PLANE_CTL_PIPE_GAMMA_ENABLE |
3398 PLANE_CTL_PIPE_CSC_ENABLE;
3399
Chandra Konduru6156a452015-04-27 13:48:39 -07003400 plane_ctl |= skl_plane_ctl_format(fb->pixel_format);
3401 plane_ctl |= skl_plane_ctl_tiling(fb->modifier[0]);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003402 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
Chandra Konduru6156a452015-04-27 13:48:39 -07003403 plane_ctl |= skl_plane_ctl_rotation(rotation);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003404
Ville Syrjälä6687c902015-09-15 13:16:41 +03003405 /* Sizes are 0 based */
3406 src_w--;
3407 src_h--;
3408 dst_w--;
3409 dst_h--;
3410
3411 intel_crtc->adjusted_x = src_x;
3412 intel_crtc->adjusted_y = src_y;
Paulo Zanoni2db33662015-09-14 15:20:03 -03003413
Lyude62e0fb82016-08-22 12:50:08 -04003414 if (wm->dirty_pipes & drm_crtc_mask(&intel_crtc->base))
3415 skl_write_plane_wm(intel_crtc, wm, 0);
3416
Damien Lespiau70d21f02013-07-03 21:06:04 +01003417 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
Ville Syrjälä6687c902015-09-15 13:16:41 +03003418 I915_WRITE(PLANE_OFFSET(pipe, 0), (src_y << 16) | src_x);
Ville Syrjäläef78ec92015-10-13 22:48:39 +03003419 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
Ville Syrjälä6687c902015-09-15 13:16:41 +03003420 I915_WRITE(PLANE_SIZE(pipe, 0), (src_h << 16) | src_w);
Chandra Konduru6156a452015-04-27 13:48:39 -07003421
3422 if (scaler_id >= 0) {
3423 uint32_t ps_ctrl = 0;
3424
3425 WARN_ON(!dst_w || !dst_h);
3426 ps_ctrl = PS_SCALER_EN | PS_PLANE_SEL(0) |
3427 crtc_state->scaler_state.scalers[scaler_id].mode;
3428 I915_WRITE(SKL_PS_CTRL(pipe, scaler_id), ps_ctrl);
3429 I915_WRITE(SKL_PS_PWR_GATE(pipe, scaler_id), 0);
3430 I915_WRITE(SKL_PS_WIN_POS(pipe, scaler_id), (dst_x << 16) | dst_y);
3431 I915_WRITE(SKL_PS_WIN_SZ(pipe, scaler_id), (dst_w << 16) | dst_h);
3432 I915_WRITE(PLANE_POS(pipe, 0), 0);
3433 } else {
3434 I915_WRITE(PLANE_POS(pipe, 0), (dst_y << 16) | dst_x);
3435 }
3436
Ville Syrjälä6687c902015-09-15 13:16:41 +03003437 I915_WRITE(PLANE_SURF(pipe, 0),
3438 intel_fb_gtt_offset(fb, rotation) + surf_addr);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003439
3440 POSTING_READ(PLANE_SURF(pipe, 0));
3441}
3442
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +01003443static void skylake_disable_primary_plane(struct drm_plane *primary,
3444 struct drm_crtc *crtc)
3445{
3446 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003447 struct drm_i915_private *dev_priv = to_i915(dev);
Lyude62e0fb82016-08-22 12:50:08 -04003448 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3449 int pipe = intel_crtc->pipe;
3450
Lyudeccebc232016-08-29 12:31:27 -04003451 /*
3452 * We only populate skl_results on watermark updates, and if the
3453 * plane's visiblity isn't actually changing neither is its watermarks.
3454 */
3455 if (!crtc->primary->state->visible)
3456 skl_write_plane_wm(intel_crtc, &dev_priv->wm.skl_results, 0);
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +01003457
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +01003458 I915_WRITE(PLANE_CTL(pipe, 0), 0);
3459 I915_WRITE(PLANE_SURF(pipe, 0), 0);
3460 POSTING_READ(PLANE_SURF(pipe, 0));
3461}
3462
Jesse Barnes17638cd2011-06-24 12:19:23 -07003463/* Assume fb object is pinned & idle & fenced and just update base pointers */
3464static int
3465intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
3466 int x, int y, enum mode_set_atomic state)
3467{
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +01003468 /* Support for kgdboc is disabled, this needs a major rework. */
3469 DRM_ERROR("legacy panic handler not supported any more.\n");
Jesse Barnes17638cd2011-06-24 12:19:23 -07003470
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +01003471 return -ENODEV;
Jesse Barnes81255562010-08-02 12:07:50 -07003472}
3473
Daniel Vetter5a21b662016-05-24 17:13:53 +02003474static void intel_complete_page_flips(struct drm_i915_private *dev_priv)
3475{
3476 struct intel_crtc *crtc;
3477
Chris Wilson91c8a322016-07-05 10:40:23 +01003478 for_each_intel_crtc(&dev_priv->drm, crtc)
Daniel Vetter5a21b662016-05-24 17:13:53 +02003479 intel_finish_page_flip_cs(dev_priv, crtc->pipe);
3480}
3481
Ville Syrjälä75147472014-11-24 18:28:11 +02003482static void intel_update_primary_planes(struct drm_device *dev)
3483{
Ville Syrjälä75147472014-11-24 18:28:11 +02003484 struct drm_crtc *crtc;
Ville Syrjälä96a02912013-02-18 19:08:49 +02003485
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01003486 for_each_crtc(dev, crtc) {
Maarten Lankhorst11c22da2015-09-10 16:07:58 +02003487 struct intel_plane *plane = to_intel_plane(crtc->primary);
Maarten Lankhorst73974892016-08-05 23:28:27 +03003488 struct intel_plane_state *plane_state =
3489 to_intel_plane_state(plane->base.state);
Maarten Lankhorst11c22da2015-09-10 16:07:58 +02003490
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003491 if (plane_state->base.visible)
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +01003492 plane->update_plane(&plane->base,
3493 to_intel_crtc_state(crtc->state),
3494 plane_state);
Ville Syrjälä96a02912013-02-18 19:08:49 +02003495 }
3496}
3497
Maarten Lankhorst73974892016-08-05 23:28:27 +03003498static int
3499__intel_display_resume(struct drm_device *dev,
3500 struct drm_atomic_state *state)
3501{
3502 struct drm_crtc_state *crtc_state;
3503 struct drm_crtc *crtc;
3504 int i, ret;
3505
3506 intel_modeset_setup_hw_state(dev);
3507 i915_redisable_vga(dev);
3508
3509 if (!state)
3510 return 0;
3511
3512 for_each_crtc_in_state(state, crtc, crtc_state, i) {
3513 /*
3514 * Force recalculation even if we restore
3515 * current state. With fast modeset this may not result
3516 * in a modeset when the state is compatible.
3517 */
3518 crtc_state->mode_changed = true;
3519 }
3520
3521 /* ignore any reset values/BIOS leftovers in the WM registers */
3522 to_intel_atomic_state(state)->skip_intermediate_wm = true;
3523
3524 ret = drm_atomic_commit(state);
3525
3526 WARN_ON(ret == -EDEADLK);
3527 return ret;
3528}
3529
Ville Syrjälä4ac2ba22016-08-05 23:28:29 +03003530static bool gpu_reset_clobbers_display(struct drm_i915_private *dev_priv)
3531{
Ville Syrjäläae981042016-08-05 23:28:30 +03003532 return intel_has_gpu_reset(dev_priv) &&
3533 INTEL_GEN(dev_priv) < 5 && !IS_G4X(dev_priv);
Ville Syrjälä4ac2ba22016-08-05 23:28:29 +03003534}
3535
Chris Wilsonc0336662016-05-06 15:40:21 +01003536void intel_prepare_reset(struct drm_i915_private *dev_priv)
Ville Syrjälä75147472014-11-24 18:28:11 +02003537{
Maarten Lankhorst73974892016-08-05 23:28:27 +03003538 struct drm_device *dev = &dev_priv->drm;
3539 struct drm_modeset_acquire_ctx *ctx = &dev_priv->reset_ctx;
3540 struct drm_atomic_state *state;
3541 int ret;
3542
Maarten Lankhorst73974892016-08-05 23:28:27 +03003543 /*
3544 * Need mode_config.mutex so that we don't
3545 * trample ongoing ->detect() and whatnot.
3546 */
3547 mutex_lock(&dev->mode_config.mutex);
3548 drm_modeset_acquire_init(ctx, 0);
3549 while (1) {
3550 ret = drm_modeset_lock_all_ctx(dev, ctx);
3551 if (ret != -EDEADLK)
3552 break;
3553
3554 drm_modeset_backoff(ctx);
3555 }
3556
3557 /* reset doesn't touch the display, but flips might get nuked anyway, */
Maarten Lankhorst522a63d2016-08-05 23:28:28 +03003558 if (!i915.force_reset_modeset_test &&
Ville Syrjälä4ac2ba22016-08-05 23:28:29 +03003559 !gpu_reset_clobbers_display(dev_priv))
Ville Syrjälä75147472014-11-24 18:28:11 +02003560 return;
3561
Ville Syrjäläf98ce922014-11-21 21:54:30 +02003562 /*
3563 * Disabling the crtcs gracefully seems nicer. Also the
3564 * g33 docs say we should at least disable all the planes.
3565 */
Maarten Lankhorst73974892016-08-05 23:28:27 +03003566 state = drm_atomic_helper_duplicate_state(dev, ctx);
3567 if (IS_ERR(state)) {
3568 ret = PTR_ERR(state);
3569 state = NULL;
3570 DRM_ERROR("Duplicating state failed with %i\n", ret);
3571 goto err;
3572 }
3573
3574 ret = drm_atomic_helper_disable_all(dev, ctx);
3575 if (ret) {
3576 DRM_ERROR("Suspending crtc's failed with %i\n", ret);
3577 goto err;
3578 }
3579
3580 dev_priv->modeset_restore_state = state;
3581 state->acquire_ctx = ctx;
3582 return;
3583
3584err:
3585 drm_atomic_state_free(state);
Ville Syrjälä75147472014-11-24 18:28:11 +02003586}
3587
Chris Wilsonc0336662016-05-06 15:40:21 +01003588void intel_finish_reset(struct drm_i915_private *dev_priv)
Ville Syrjälä75147472014-11-24 18:28:11 +02003589{
Maarten Lankhorst73974892016-08-05 23:28:27 +03003590 struct drm_device *dev = &dev_priv->drm;
3591 struct drm_modeset_acquire_ctx *ctx = &dev_priv->reset_ctx;
3592 struct drm_atomic_state *state = dev_priv->modeset_restore_state;
3593 int ret;
3594
Daniel Vetter5a21b662016-05-24 17:13:53 +02003595 /*
3596 * Flips in the rings will be nuked by the reset,
3597 * so complete all pending flips so that user space
3598 * will get its events and not get stuck.
3599 */
3600 intel_complete_page_flips(dev_priv);
3601
Maarten Lankhorst73974892016-08-05 23:28:27 +03003602 dev_priv->modeset_restore_state = NULL;
3603
Ville Syrjälä75147472014-11-24 18:28:11 +02003604 /* reset doesn't touch the display */
Ville Syrjälä4ac2ba22016-08-05 23:28:29 +03003605 if (!gpu_reset_clobbers_display(dev_priv)) {
Maarten Lankhorst522a63d2016-08-05 23:28:28 +03003606 if (!state) {
3607 /*
3608 * Flips in the rings have been nuked by the reset,
3609 * so update the base address of all primary
3610 * planes to the the last fb to make sure we're
3611 * showing the correct fb after a reset.
3612 *
3613 * FIXME: Atomic will make this obsolete since we won't schedule
3614 * CS-based flips (which might get lost in gpu resets) any more.
3615 */
3616 intel_update_primary_planes(dev);
3617 } else {
3618 ret = __intel_display_resume(dev, state);
3619 if (ret)
3620 DRM_ERROR("Restoring old state failed with %i\n", ret);
3621 }
Maarten Lankhorst73974892016-08-05 23:28:27 +03003622 } else {
3623 /*
3624 * The display has been reset as well,
3625 * so need a full re-initialization.
3626 */
3627 intel_runtime_pm_disable_interrupts(dev_priv);
3628 intel_runtime_pm_enable_interrupts(dev_priv);
3629
3630 intel_modeset_init_hw(dev);
3631
3632 spin_lock_irq(&dev_priv->irq_lock);
3633 if (dev_priv->display.hpd_irq_setup)
3634 dev_priv->display.hpd_irq_setup(dev_priv);
3635 spin_unlock_irq(&dev_priv->irq_lock);
3636
3637 ret = __intel_display_resume(dev, state);
3638 if (ret)
3639 DRM_ERROR("Restoring old state failed with %i\n", ret);
3640
3641 intel_hpd_init(dev_priv);
Ville Syrjälä75147472014-11-24 18:28:11 +02003642 }
3643
Maarten Lankhorst73974892016-08-05 23:28:27 +03003644 drm_modeset_drop_locks(ctx);
3645 drm_modeset_acquire_fini(ctx);
3646 mutex_unlock(&dev->mode_config.mutex);
Ville Syrjälä75147472014-11-24 18:28:11 +02003647}
3648
Chris Wilson8af29b02016-09-09 14:11:47 +01003649static bool abort_flip_on_reset(struct intel_crtc *crtc)
3650{
3651 struct i915_gpu_error *error = &to_i915(crtc->base.dev)->gpu_error;
3652
3653 if (i915_reset_in_progress(error))
3654 return true;
3655
3656 if (crtc->reset_count != i915_reset_count(error))
3657 return true;
3658
3659 return false;
3660}
3661
Chris Wilson7d5e3792014-03-04 13:15:08 +00003662static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
3663{
Daniel Vetter5a21b662016-05-24 17:13:53 +02003664 struct drm_device *dev = crtc->dev;
3665 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter5a21b662016-05-24 17:13:53 +02003666 bool pending;
3667
Chris Wilson8af29b02016-09-09 14:11:47 +01003668 if (abort_flip_on_reset(intel_crtc))
Daniel Vetter5a21b662016-05-24 17:13:53 +02003669 return false;
3670
3671 spin_lock_irq(&dev->event_lock);
3672 pending = to_intel_crtc(crtc)->flip_work != NULL;
3673 spin_unlock_irq(&dev->event_lock);
3674
3675 return pending;
Chris Wilson7d5e3792014-03-04 13:15:08 +00003676}
3677
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02003678static void intel_update_pipe_config(struct intel_crtc *crtc,
3679 struct intel_crtc_state *old_crtc_state)
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003680{
3681 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003682 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02003683 struct intel_crtc_state *pipe_config =
3684 to_intel_crtc_state(crtc->base.state);
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003685
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02003686 /* drm_atomic_helper_update_legacy_modeset_state might not be called. */
3687 crtc->base.mode = crtc->base.state->mode;
3688
3689 DRM_DEBUG_KMS("Updating pipe size %ix%i -> %ix%i\n",
3690 old_crtc_state->pipe_src_w, old_crtc_state->pipe_src_h,
3691 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003692
3693 /*
3694 * Update pipe size and adjust fitter if needed: the reason for this is
3695 * that in compute_mode_changes we check the native mode (not the pfit
3696 * mode) to see if we can flip rather than do a full mode set. In the
3697 * fastboot case, we'll flip, but if we don't update the pipesrc and
3698 * pfit state, we'll end up with a big fb scanned out into the wrong
3699 * sized surface.
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003700 */
3701
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003702 I915_WRITE(PIPESRC(crtc->pipe),
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02003703 ((pipe_config->pipe_src_w - 1) << 16) |
3704 (pipe_config->pipe_src_h - 1));
3705
3706 /* on skylake this is done by detaching scalers */
3707 if (INTEL_INFO(dev)->gen >= 9) {
3708 skl_detach_scalers(crtc);
3709
3710 if (pipe_config->pch_pfit.enabled)
3711 skylake_pfit_enable(crtc);
3712 } else if (HAS_PCH_SPLIT(dev)) {
3713 if (pipe_config->pch_pfit.enabled)
3714 ironlake_pfit_enable(crtc);
3715 else if (old_crtc_state->pch_pfit.enabled)
3716 ironlake_pfit_disable(crtc, true);
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003717 }
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003718}
3719
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003720static void intel_fdi_normal_train(struct drm_crtc *crtc)
3721{
3722 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003723 struct drm_i915_private *dev_priv = to_i915(dev);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003724 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3725 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003726 i915_reg_t reg;
3727 u32 temp;
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003728
3729 /* enable normal train */
3730 reg = FDI_TX_CTL(pipe);
3731 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07003732 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07003733 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3734 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07003735 } else {
3736 temp &= ~FDI_LINK_TRAIN_NONE;
3737 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07003738 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003739 I915_WRITE(reg, temp);
3740
3741 reg = FDI_RX_CTL(pipe);
3742 temp = I915_READ(reg);
3743 if (HAS_PCH_CPT(dev)) {
3744 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3745 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3746 } else {
3747 temp &= ~FDI_LINK_TRAIN_NONE;
3748 temp |= FDI_LINK_TRAIN_NONE;
3749 }
3750 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3751
3752 /* wait one idle pattern time */
3753 POSTING_READ(reg);
3754 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07003755
3756 /* IVB wants error correction enabled */
3757 if (IS_IVYBRIDGE(dev))
3758 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3759 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003760}
3761
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003762/* The FDI link training functions for ILK/Ibexpeak. */
3763static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3764{
3765 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003766 struct drm_i915_private *dev_priv = to_i915(dev);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003767 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3768 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003769 i915_reg_t reg;
3770 u32 temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003771
Ville Syrjälä1c8562f2014-04-25 22:12:07 +03003772 /* FDI needs bits from pipe first */
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003773 assert_pipe_enabled(dev_priv, pipe);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003774
Adam Jacksone1a44742010-06-25 15:32:14 -04003775 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3776 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003777 reg = FDI_RX_IMR(pipe);
3778 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003779 temp &= ~FDI_RX_SYMBOL_LOCK;
3780 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003781 I915_WRITE(reg, temp);
3782 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003783 udelay(150);
3784
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003785 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003786 reg = FDI_TX_CTL(pipe);
3787 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003788 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003789 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003790 temp &= ~FDI_LINK_TRAIN_NONE;
3791 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003792 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003793
Chris Wilson5eddb702010-09-11 13:48:45 +01003794 reg = FDI_RX_CTL(pipe);
3795 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003796 temp &= ~FDI_LINK_TRAIN_NONE;
3797 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003798 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3799
3800 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003801 udelay(150);
3802
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003803 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01003804 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3805 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3806 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003807
Chris Wilson5eddb702010-09-11 13:48:45 +01003808 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003809 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003810 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003811 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3812
3813 if ((temp & FDI_RX_BIT_LOCK)) {
3814 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01003815 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003816 break;
3817 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003818 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003819 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003820 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003821
3822 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003823 reg = FDI_TX_CTL(pipe);
3824 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003825 temp &= ~FDI_LINK_TRAIN_NONE;
3826 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003827 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003828
Chris Wilson5eddb702010-09-11 13:48:45 +01003829 reg = FDI_RX_CTL(pipe);
3830 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003831 temp &= ~FDI_LINK_TRAIN_NONE;
3832 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003833 I915_WRITE(reg, temp);
3834
3835 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003836 udelay(150);
3837
Chris Wilson5eddb702010-09-11 13:48:45 +01003838 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003839 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003840 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003841 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3842
3843 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003844 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003845 DRM_DEBUG_KMS("FDI train 2 done.\n");
3846 break;
3847 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003848 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003849 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003850 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003851
3852 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07003853
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003854}
3855
Akshay Joshi0206e352011-08-16 15:34:10 -04003856static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003857 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3858 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3859 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3860 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3861};
3862
3863/* The FDI link training functions for SNB/Cougarpoint. */
3864static void gen6_fdi_link_train(struct drm_crtc *crtc)
3865{
3866 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003867 struct drm_i915_private *dev_priv = to_i915(dev);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003868 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3869 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003870 i915_reg_t reg;
3871 u32 temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003872
Adam Jacksone1a44742010-06-25 15:32:14 -04003873 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3874 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003875 reg = FDI_RX_IMR(pipe);
3876 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003877 temp &= ~FDI_RX_SYMBOL_LOCK;
3878 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003879 I915_WRITE(reg, temp);
3880
3881 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003882 udelay(150);
3883
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003884 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003885 reg = FDI_TX_CTL(pipe);
3886 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003887 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003888 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003889 temp &= ~FDI_LINK_TRAIN_NONE;
3890 temp |= FDI_LINK_TRAIN_PATTERN_1;
3891 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3892 /* SNB-B */
3893 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01003894 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003895
Daniel Vetterd74cf322012-10-26 10:58:13 +02003896 I915_WRITE(FDI_RX_MISC(pipe),
3897 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3898
Chris Wilson5eddb702010-09-11 13:48:45 +01003899 reg = FDI_RX_CTL(pipe);
3900 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003901 if (HAS_PCH_CPT(dev)) {
3902 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3903 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3904 } else {
3905 temp &= ~FDI_LINK_TRAIN_NONE;
3906 temp |= FDI_LINK_TRAIN_PATTERN_1;
3907 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003908 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3909
3910 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003911 udelay(150);
3912
Akshay Joshi0206e352011-08-16 15:34:10 -04003913 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003914 reg = FDI_TX_CTL(pipe);
3915 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003916 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3917 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003918 I915_WRITE(reg, temp);
3919
3920 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003921 udelay(500);
3922
Sean Paulfa37d392012-03-02 12:53:39 -05003923 for (retry = 0; retry < 5; retry++) {
3924 reg = FDI_RX_IIR(pipe);
3925 temp = I915_READ(reg);
3926 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3927 if (temp & FDI_RX_BIT_LOCK) {
3928 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3929 DRM_DEBUG_KMS("FDI train 1 done.\n");
3930 break;
3931 }
3932 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003933 }
Sean Paulfa37d392012-03-02 12:53:39 -05003934 if (retry < 5)
3935 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003936 }
3937 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003938 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003939
3940 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003941 reg = FDI_TX_CTL(pipe);
3942 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003943 temp &= ~FDI_LINK_TRAIN_NONE;
3944 temp |= FDI_LINK_TRAIN_PATTERN_2;
3945 if (IS_GEN6(dev)) {
3946 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3947 /* SNB-B */
3948 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3949 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003950 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003951
Chris Wilson5eddb702010-09-11 13:48:45 +01003952 reg = FDI_RX_CTL(pipe);
3953 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003954 if (HAS_PCH_CPT(dev)) {
3955 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3956 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3957 } else {
3958 temp &= ~FDI_LINK_TRAIN_NONE;
3959 temp |= FDI_LINK_TRAIN_PATTERN_2;
3960 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003961 I915_WRITE(reg, temp);
3962
3963 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003964 udelay(150);
3965
Akshay Joshi0206e352011-08-16 15:34:10 -04003966 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003967 reg = FDI_TX_CTL(pipe);
3968 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003969 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3970 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003971 I915_WRITE(reg, temp);
3972
3973 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003974 udelay(500);
3975
Sean Paulfa37d392012-03-02 12:53:39 -05003976 for (retry = 0; retry < 5; retry++) {
3977 reg = FDI_RX_IIR(pipe);
3978 temp = I915_READ(reg);
3979 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3980 if (temp & FDI_RX_SYMBOL_LOCK) {
3981 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3982 DRM_DEBUG_KMS("FDI train 2 done.\n");
3983 break;
3984 }
3985 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003986 }
Sean Paulfa37d392012-03-02 12:53:39 -05003987 if (retry < 5)
3988 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003989 }
3990 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003991 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003992
3993 DRM_DEBUG_KMS("FDI train done.\n");
3994}
3995
Jesse Barnes357555c2011-04-28 15:09:55 -07003996/* Manual link training for Ivy Bridge A0 parts */
3997static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3998{
3999 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004000 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes357555c2011-04-28 15:09:55 -07004001 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4002 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004003 i915_reg_t reg;
4004 u32 temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07004005
4006 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
4007 for train result */
4008 reg = FDI_RX_IMR(pipe);
4009 temp = I915_READ(reg);
4010 temp &= ~FDI_RX_SYMBOL_LOCK;
4011 temp &= ~FDI_RX_BIT_LOCK;
4012 I915_WRITE(reg, temp);
4013
4014 POSTING_READ(reg);
4015 udelay(150);
4016
Daniel Vetter01a415f2012-10-27 15:58:40 +02004017 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
4018 I915_READ(FDI_RX_IIR(pipe)));
4019
Jesse Barnes139ccd32013-08-19 11:04:55 -07004020 /* Try each vswing and preemphasis setting twice before moving on */
4021 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
4022 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07004023 reg = FDI_TX_CTL(pipe);
4024 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07004025 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
4026 temp &= ~FDI_TX_ENABLE;
4027 I915_WRITE(reg, temp);
4028
4029 reg = FDI_RX_CTL(pipe);
4030 temp = I915_READ(reg);
4031 temp &= ~FDI_LINK_TRAIN_AUTO;
4032 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
4033 temp &= ~FDI_RX_ENABLE;
4034 I915_WRITE(reg, temp);
4035
4036 /* enable CPU FDI TX and PCH FDI RX */
4037 reg = FDI_TX_CTL(pipe);
4038 temp = I915_READ(reg);
4039 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004040 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Jesse Barnes139ccd32013-08-19 11:04:55 -07004041 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07004042 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07004043 temp |= snb_b_fdi_train_param[j/2];
4044 temp |= FDI_COMPOSITE_SYNC;
4045 I915_WRITE(reg, temp | FDI_TX_ENABLE);
4046
4047 I915_WRITE(FDI_RX_MISC(pipe),
4048 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
4049
4050 reg = FDI_RX_CTL(pipe);
4051 temp = I915_READ(reg);
4052 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
4053 temp |= FDI_COMPOSITE_SYNC;
4054 I915_WRITE(reg, temp | FDI_RX_ENABLE);
4055
4056 POSTING_READ(reg);
4057 udelay(1); /* should be 0.5us */
4058
4059 for (i = 0; i < 4; i++) {
4060 reg = FDI_RX_IIR(pipe);
4061 temp = I915_READ(reg);
4062 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
4063
4064 if (temp & FDI_RX_BIT_LOCK ||
4065 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
4066 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
4067 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
4068 i);
4069 break;
4070 }
4071 udelay(1); /* should be 0.5us */
4072 }
4073 if (i == 4) {
4074 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
4075 continue;
4076 }
4077
4078 /* Train 2 */
4079 reg = FDI_TX_CTL(pipe);
4080 temp = I915_READ(reg);
4081 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
4082 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
4083 I915_WRITE(reg, temp);
4084
4085 reg = FDI_RX_CTL(pipe);
4086 temp = I915_READ(reg);
4087 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
4088 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07004089 I915_WRITE(reg, temp);
4090
4091 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07004092 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07004093
Jesse Barnes139ccd32013-08-19 11:04:55 -07004094 for (i = 0; i < 4; i++) {
4095 reg = FDI_RX_IIR(pipe);
4096 temp = I915_READ(reg);
4097 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07004098
Jesse Barnes139ccd32013-08-19 11:04:55 -07004099 if (temp & FDI_RX_SYMBOL_LOCK ||
4100 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
4101 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
4102 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
4103 i);
4104 goto train_done;
4105 }
4106 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07004107 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07004108 if (i == 4)
4109 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07004110 }
Jesse Barnes357555c2011-04-28 15:09:55 -07004111
Jesse Barnes139ccd32013-08-19 11:04:55 -07004112train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07004113 DRM_DEBUG_KMS("FDI train done.\n");
4114}
4115
Daniel Vetter88cefb62012-08-12 19:27:14 +02004116static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07004117{
Daniel Vetter88cefb62012-08-12 19:27:14 +02004118 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004119 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes0e23b992010-09-10 11:10:00 -07004120 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004121 i915_reg_t reg;
4122 u32 temp;
Jesse Barnesc64e3112010-09-10 11:27:03 -07004123
Jesse Barnes0e23b992010-09-10 11:10:00 -07004124 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01004125 reg = FDI_RX_CTL(pipe);
4126 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02004127 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004128 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01004129 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01004130 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
4131
4132 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07004133 udelay(200);
4134
4135 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01004136 temp = I915_READ(reg);
4137 I915_WRITE(reg, temp | FDI_PCDCLK);
4138
4139 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07004140 udelay(200);
4141
Paulo Zanoni20749732012-11-23 15:30:38 -02004142 /* Enable CPU FDI TX PLL, always on for Ironlake */
4143 reg = FDI_TX_CTL(pipe);
4144 temp = I915_READ(reg);
4145 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
4146 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01004147
Paulo Zanoni20749732012-11-23 15:30:38 -02004148 POSTING_READ(reg);
4149 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07004150 }
4151}
4152
Daniel Vetter88cefb62012-08-12 19:27:14 +02004153static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
4154{
4155 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004156 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter88cefb62012-08-12 19:27:14 +02004157 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004158 i915_reg_t reg;
4159 u32 temp;
Daniel Vetter88cefb62012-08-12 19:27:14 +02004160
4161 /* Switch from PCDclk to Rawclk */
4162 reg = FDI_RX_CTL(pipe);
4163 temp = I915_READ(reg);
4164 I915_WRITE(reg, temp & ~FDI_PCDCLK);
4165
4166 /* Disable CPU FDI TX PLL */
4167 reg = FDI_TX_CTL(pipe);
4168 temp = I915_READ(reg);
4169 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
4170
4171 POSTING_READ(reg);
4172 udelay(100);
4173
4174 reg = FDI_RX_CTL(pipe);
4175 temp = I915_READ(reg);
4176 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
4177
4178 /* Wait for the clocks to turn off. */
4179 POSTING_READ(reg);
4180 udelay(100);
4181}
4182
Jesse Barnes0fc932b2011-01-04 15:09:37 -08004183static void ironlake_fdi_disable(struct drm_crtc *crtc)
4184{
4185 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004186 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08004187 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4188 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004189 i915_reg_t reg;
4190 u32 temp;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08004191
4192 /* disable CPU FDI tx and PCH FDI rx */
4193 reg = FDI_TX_CTL(pipe);
4194 temp = I915_READ(reg);
4195 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
4196 POSTING_READ(reg);
4197
4198 reg = FDI_RX_CTL(pipe);
4199 temp = I915_READ(reg);
4200 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01004201 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08004202 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
4203
4204 POSTING_READ(reg);
4205 udelay(100);
4206
4207 /* Ironlake workaround, disable clock pointer after downing FDI */
Robin Schroereba905b2014-05-18 02:24:50 +02004208 if (HAS_PCH_IBX(dev))
Jesse Barnes6f06ce12011-01-04 15:09:38 -08004209 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08004210
4211 /* still set train pattern 1 */
4212 reg = FDI_TX_CTL(pipe);
4213 temp = I915_READ(reg);
4214 temp &= ~FDI_LINK_TRAIN_NONE;
4215 temp |= FDI_LINK_TRAIN_PATTERN_1;
4216 I915_WRITE(reg, temp);
4217
4218 reg = FDI_RX_CTL(pipe);
4219 temp = I915_READ(reg);
4220 if (HAS_PCH_CPT(dev)) {
4221 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
4222 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
4223 } else {
4224 temp &= ~FDI_LINK_TRAIN_NONE;
4225 temp |= FDI_LINK_TRAIN_PATTERN_1;
4226 }
4227 /* BPC in FDI rx is consistent with that in PIPECONF */
4228 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01004229 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08004230 I915_WRITE(reg, temp);
4231
4232 POSTING_READ(reg);
4233 udelay(100);
4234}
4235
Chris Wilson5dce5b932014-01-20 10:17:36 +00004236bool intel_has_pending_fb_unpin(struct drm_device *dev)
4237{
4238 struct intel_crtc *crtc;
4239
4240 /* Note that we don't need to be called with mode_config.lock here
4241 * as our list of CRTC objects is static for the lifetime of the
4242 * device and so cannot disappear as we iterate. Similarly, we can
4243 * happily treat the predicates as racy, atomic checks as userspace
4244 * cannot claim and pin a new fb without at least acquring the
4245 * struct_mutex and so serialising with us.
4246 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004247 for_each_intel_crtc(dev, crtc) {
Chris Wilson5dce5b932014-01-20 10:17:36 +00004248 if (atomic_read(&crtc->unpin_work_count) == 0)
4249 continue;
4250
Daniel Vetter5a21b662016-05-24 17:13:53 +02004251 if (crtc->flip_work)
Chris Wilson5dce5b932014-01-20 10:17:36 +00004252 intel_wait_for_vblank(dev, crtc->pipe);
4253
4254 return true;
4255 }
4256
4257 return false;
4258}
4259
Daniel Vetter5a21b662016-05-24 17:13:53 +02004260static void page_flip_completed(struct intel_crtc *intel_crtc)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01004261{
4262 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
Daniel Vetter5a21b662016-05-24 17:13:53 +02004263 struct intel_flip_work *work = intel_crtc->flip_work;
4264
4265 intel_crtc->flip_work = NULL;
Chris Wilsond6bbafa2014-09-05 07:13:24 +01004266
4267 if (work->event)
Gustavo Padovan560ce1d2016-04-14 10:48:15 -07004268 drm_crtc_send_vblank_event(&intel_crtc->base, work->event);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01004269
4270 drm_crtc_vblank_put(&intel_crtc->base);
4271
Daniel Vetter5a21b662016-05-24 17:13:53 +02004272 wake_up_all(&dev_priv->pending_flip_queue);
Maarten Lankhorst143f73b32016-05-17 15:07:54 +02004273 queue_work(dev_priv->wq, &work->unpin_work);
Daniel Vetter5a21b662016-05-24 17:13:53 +02004274
4275 trace_i915_flip_complete(intel_crtc->plane,
4276 work->pending_flip_obj);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01004277}
4278
Maarten Lankhorst5008e872015-08-18 13:40:05 +02004279static int intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01004280{
Chris Wilson0f911282012-04-17 10:05:38 +01004281 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004282 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorst5008e872015-08-18 13:40:05 +02004283 long ret;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01004284
Daniel Vetter2c10d572012-12-20 21:24:07 +01004285 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
Maarten Lankhorst5008e872015-08-18 13:40:05 +02004286
4287 ret = wait_event_interruptible_timeout(
4288 dev_priv->pending_flip_queue,
4289 !intel_crtc_has_pending_flip(crtc),
4290 60*HZ);
4291
4292 if (ret < 0)
4293 return ret;
4294
Daniel Vetter5a21b662016-05-24 17:13:53 +02004295 if (ret == 0) {
4296 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4297 struct intel_flip_work *work;
4298
4299 spin_lock_irq(&dev->event_lock);
4300 work = intel_crtc->flip_work;
4301 if (work && !is_mmio_work(work)) {
4302 WARN_ONCE(1, "Removing stuck page flip\n");
4303 page_flip_completed(intel_crtc);
4304 }
4305 spin_unlock_irq(&dev->event_lock);
4306 }
Chris Wilson5bb61642012-09-27 21:25:58 +01004307
Maarten Lankhorst5008e872015-08-18 13:40:05 +02004308 return 0;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01004309}
4310
Maarten Lankhorstb7076542016-08-23 16:18:08 +02004311void lpt_disable_iclkip(struct drm_i915_private *dev_priv)
Ville Syrjälä060f02d2015-12-04 22:21:34 +02004312{
4313 u32 temp;
4314
4315 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
4316
4317 mutex_lock(&dev_priv->sb_lock);
4318
4319 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
4320 temp |= SBI_SSCCTL_DISABLE;
4321 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
4322
4323 mutex_unlock(&dev_priv->sb_lock);
4324}
4325
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004326/* Program iCLKIP clock to the desired frequency */
4327static void lpt_program_iclkip(struct drm_crtc *crtc)
4328{
Ville Syrjälä64b46a02016-02-17 21:41:11 +02004329 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004330 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004331 u32 divsel, phaseinc, auxdiv, phasedir = 0;
4332 u32 temp;
4333
Ville Syrjälä060f02d2015-12-04 22:21:34 +02004334 lpt_disable_iclkip(dev_priv);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004335
Ville Syrjälä64b46a02016-02-17 21:41:11 +02004336 /* The iCLK virtual clock root frequency is in MHz,
4337 * but the adjusted_mode->crtc_clock in in KHz. To get the
4338 * divisors, it is necessary to divide one by another, so we
4339 * convert the virtual clock precision to KHz here for higher
4340 * precision.
4341 */
4342 for (auxdiv = 0; auxdiv < 2; auxdiv++) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004343 u32 iclk_virtual_root_freq = 172800 * 1000;
4344 u32 iclk_pi_range = 64;
Ville Syrjälä64b46a02016-02-17 21:41:11 +02004345 u32 desired_divisor;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004346
Ville Syrjälä64b46a02016-02-17 21:41:11 +02004347 desired_divisor = DIV_ROUND_CLOSEST(iclk_virtual_root_freq,
4348 clock << auxdiv);
4349 divsel = (desired_divisor / iclk_pi_range) - 2;
4350 phaseinc = desired_divisor % iclk_pi_range;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004351
Ville Syrjälä64b46a02016-02-17 21:41:11 +02004352 /*
4353 * Near 20MHz is a corner case which is
4354 * out of range for the 7-bit divisor
4355 */
4356 if (divsel <= 0x7f)
4357 break;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004358 }
4359
4360 /* This should not happen with any sane values */
4361 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
4362 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
4363 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
4364 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
4365
4366 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 +03004367 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004368 auxdiv,
4369 divsel,
4370 phasedir,
4371 phaseinc);
4372
Ville Syrjälä060f02d2015-12-04 22:21:34 +02004373 mutex_lock(&dev_priv->sb_lock);
4374
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004375 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004376 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004377 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
4378 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
4379 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
4380 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
4381 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
4382 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004383 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004384
4385 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004386 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004387 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
4388 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004389 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004390
4391 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004392 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004393 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004394 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004395
Ville Syrjälä060f02d2015-12-04 22:21:34 +02004396 mutex_unlock(&dev_priv->sb_lock);
4397
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004398 /* Wait for initialization time */
4399 udelay(24);
4400
4401 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
4402}
4403
Ville Syrjälä8802e5b2016-02-17 21:41:12 +02004404int lpt_get_iclkip(struct drm_i915_private *dev_priv)
4405{
4406 u32 divsel, phaseinc, auxdiv;
4407 u32 iclk_virtual_root_freq = 172800 * 1000;
4408 u32 iclk_pi_range = 64;
4409 u32 desired_divisor;
4410 u32 temp;
4411
4412 if ((I915_READ(PIXCLK_GATE) & PIXCLK_GATE_UNGATE) == 0)
4413 return 0;
4414
4415 mutex_lock(&dev_priv->sb_lock);
4416
4417 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
4418 if (temp & SBI_SSCCTL_DISABLE) {
4419 mutex_unlock(&dev_priv->sb_lock);
4420 return 0;
4421 }
4422
4423 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
4424 divsel = (temp & SBI_SSCDIVINTPHASE_DIVSEL_MASK) >>
4425 SBI_SSCDIVINTPHASE_DIVSEL_SHIFT;
4426 phaseinc = (temp & SBI_SSCDIVINTPHASE_INCVAL_MASK) >>
4427 SBI_SSCDIVINTPHASE_INCVAL_SHIFT;
4428
4429 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
4430 auxdiv = (temp & SBI_SSCAUXDIV_FINALDIV2SEL_MASK) >>
4431 SBI_SSCAUXDIV_FINALDIV2SEL_SHIFT;
4432
4433 mutex_unlock(&dev_priv->sb_lock);
4434
4435 desired_divisor = (divsel + 2) * iclk_pi_range + phaseinc;
4436
4437 return DIV_ROUND_CLOSEST(iclk_virtual_root_freq,
4438 desired_divisor << auxdiv);
4439}
4440
Daniel Vetter275f01b22013-05-03 11:49:47 +02004441static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
4442 enum pipe pch_transcoder)
4443{
4444 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004445 struct drm_i915_private *dev_priv = to_i915(dev);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004446 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Daniel Vetter275f01b22013-05-03 11:49:47 +02004447
4448 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
4449 I915_READ(HTOTAL(cpu_transcoder)));
4450 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
4451 I915_READ(HBLANK(cpu_transcoder)));
4452 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
4453 I915_READ(HSYNC(cpu_transcoder)));
4454
4455 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
4456 I915_READ(VTOTAL(cpu_transcoder)));
4457 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
4458 I915_READ(VBLANK(cpu_transcoder)));
4459 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
4460 I915_READ(VSYNC(cpu_transcoder)));
4461 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
4462 I915_READ(VSYNCSHIFT(cpu_transcoder)));
4463}
4464
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004465static void cpt_set_fdi_bc_bifurcation(struct drm_device *dev, bool enable)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004466{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004467 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004468 uint32_t temp;
4469
4470 temp = I915_READ(SOUTH_CHICKEN1);
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004471 if (!!(temp & FDI_BC_BIFURCATION_SELECT) == enable)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004472 return;
4473
4474 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
4475 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
4476
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004477 temp &= ~FDI_BC_BIFURCATION_SELECT;
4478 if (enable)
4479 temp |= FDI_BC_BIFURCATION_SELECT;
4480
4481 DRM_DEBUG_KMS("%sabling fdi C rx\n", enable ? "en" : "dis");
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004482 I915_WRITE(SOUTH_CHICKEN1, temp);
4483 POSTING_READ(SOUTH_CHICKEN1);
4484}
4485
4486static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
4487{
4488 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004489
4490 switch (intel_crtc->pipe) {
4491 case PIPE_A:
4492 break;
4493 case PIPE_B:
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004494 if (intel_crtc->config->fdi_lanes > 2)
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004495 cpt_set_fdi_bc_bifurcation(dev, false);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004496 else
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004497 cpt_set_fdi_bc_bifurcation(dev, true);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004498
4499 break;
4500 case PIPE_C:
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004501 cpt_set_fdi_bc_bifurcation(dev, true);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004502
4503 break;
4504 default:
4505 BUG();
4506 }
4507}
4508
Ville Syrjäläc48b5302015-11-04 23:19:56 +02004509/* Return which DP Port should be selected for Transcoder DP control */
4510static enum port
4511intel_trans_dp_port_sel(struct drm_crtc *crtc)
4512{
4513 struct drm_device *dev = crtc->dev;
4514 struct intel_encoder *encoder;
4515
4516 for_each_encoder_on_crtc(dev, crtc, encoder) {
Ville Syrjäläcca05022016-06-22 21:57:06 +03004517 if (encoder->type == INTEL_OUTPUT_DP ||
Ville Syrjäläc48b5302015-11-04 23:19:56 +02004518 encoder->type == INTEL_OUTPUT_EDP)
4519 return enc_to_dig_port(&encoder->base)->port;
4520 }
4521
4522 return -1;
4523}
4524
Jesse Barnesf67a5592011-01-05 10:31:48 -08004525/*
4526 * Enable PCH resources required for PCH ports:
4527 * - PCH PLLs
4528 * - FDI training & RX/TX
4529 * - update transcoder timings
4530 * - DP transcoding bits
4531 * - transcoder
4532 */
4533static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08004534{
4535 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004536 struct drm_i915_private *dev_priv = to_i915(dev);
Zhenyu Wang2c072452009-06-05 15:38:42 +08004537 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4538 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004539 u32 temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004540
Daniel Vetterab9412b2013-05-03 11:49:46 +02004541 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01004542
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004543 if (IS_IVYBRIDGE(dev))
4544 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
4545
Daniel Vettercd986ab2012-10-26 10:58:12 +02004546 /* Write the TU size bits before fdi link training, so that error
4547 * detection works. */
4548 I915_WRITE(FDI_RX_TUSIZE1(pipe),
4549 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
4550
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004551 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07004552 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004553
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004554 /* We need to program the right clock selection before writing the pixel
4555 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02004556 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004557 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07004558
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004559 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02004560 temp |= TRANS_DPLL_ENABLE(pipe);
4561 sel = TRANS_DPLLB_SEL(pipe);
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +02004562 if (intel_crtc->config->shared_dpll ==
4563 intel_get_shared_dpll_by_id(dev_priv, DPLL_ID_PCH_PLL_B))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004564 temp |= sel;
4565 else
4566 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004567 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004568 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004569
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004570 /* XXX: pch pll's can be enabled any time before we enable the PCH
4571 * transcoder, and we actually should do this to not upset any PCH
4572 * transcoder that already use the clock when we share it.
4573 *
4574 * Note that enable_shared_dpll tries to do the right thing, but
4575 * get_shared_dpll unconditionally resets the pll - we need that to have
4576 * the right LVDS enable sequence. */
Daniel Vetter85b38942014-04-24 23:55:14 +02004577 intel_enable_shared_dpll(intel_crtc);
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004578
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08004579 /* set transcoder timing, panel must allow it */
4580 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02004581 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004582
Paulo Zanoni303b81e2012-10-31 18:12:23 -02004583 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08004584
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004585 /* For PCH DP, enable TRANS_DP_CTL */
Ville Syrjälä37a56502016-06-22 21:57:04 +03004586 if (HAS_PCH_CPT(dev) && intel_crtc_has_dp_encoder(intel_crtc->config)) {
Ville Syrjälä9c4edae2015-10-29 21:25:51 +02004587 const struct drm_display_mode *adjusted_mode =
4588 &intel_crtc->config->base.adjusted_mode;
Daniel Vetterdfd07d72012-12-17 11:21:38 +01004589 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004590 i915_reg_t reg = TRANS_DP_CTL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +01004591 temp = I915_READ(reg);
4592 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08004593 TRANS_DP_SYNC_MASK |
4594 TRANS_DP_BPC_MASK);
Ville Syrjäläe3ef4472015-05-05 17:17:31 +03004595 temp |= TRANS_DP_OUTPUT_ENABLE;
Jesse Barnes9325c9f2011-06-24 12:19:21 -07004596 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004597
Ville Syrjälä9c4edae2015-10-29 21:25:51 +02004598 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01004599 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Ville Syrjälä9c4edae2015-10-29 21:25:51 +02004600 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01004601 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004602
4603 switch (intel_trans_dp_port_sel(crtc)) {
Ville Syrjäläc48b5302015-11-04 23:19:56 +02004604 case PORT_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01004605 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004606 break;
Ville Syrjäläc48b5302015-11-04 23:19:56 +02004607 case PORT_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01004608 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004609 break;
Ville Syrjäläc48b5302015-11-04 23:19:56 +02004610 case PORT_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01004611 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004612 break;
4613 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02004614 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004615 }
4616
Chris Wilson5eddb702010-09-11 13:48:45 +01004617 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004618 }
4619
Paulo Zanonib8a4f402012-10-31 18:12:42 -02004620 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004621}
4622
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004623static void lpt_pch_enable(struct drm_crtc *crtc)
4624{
4625 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004626 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004627 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004628 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004629
Daniel Vetterab9412b2013-05-03 11:49:46 +02004630 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004631
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02004632 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004633
Paulo Zanoni0540e482012-10-31 18:12:40 -02004634 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02004635 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004636
Paulo Zanoni937bb612012-10-31 18:12:47 -02004637 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004638}
4639
Daniel Vettera1520312013-05-03 11:49:50 +02004640static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07004641{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004642 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004643 i915_reg_t dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07004644 u32 temp;
4645
4646 temp = I915_READ(dslreg);
4647 udelay(500);
4648 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07004649 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03004650 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07004651 }
4652}
4653
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004654static int
4655skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach,
4656 unsigned scaler_user, int *scaler_id, unsigned int rotation,
4657 int src_w, int src_h, int dst_w, int dst_h)
Chandra Kondurua1b22782015-04-07 15:28:45 -07004658{
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004659 struct intel_crtc_scaler_state *scaler_state =
4660 &crtc_state->scaler_state;
4661 struct intel_crtc *intel_crtc =
4662 to_intel_crtc(crtc_state->base.crtc);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004663 int need_scaling;
Chandra Konduru6156a452015-04-27 13:48:39 -07004664
4665 need_scaling = intel_rotation_90_or_270(rotation) ?
4666 (src_h != dst_w || src_w != dst_h):
4667 (src_w != dst_w || src_h != dst_h);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004668
4669 /*
4670 * if plane is being disabled or scaler is no more required or force detach
4671 * - free scaler binded to this plane/crtc
4672 * - in order to do this, update crtc->scaler_usage
4673 *
4674 * Here scaler state in crtc_state is set free so that
4675 * scaler can be assigned to other user. Actual register
4676 * update to free the scaler is done in plane/panel-fit programming.
4677 * For this purpose crtc/plane_state->scaler_id isn't reset here.
4678 */
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004679 if (force_detach || !need_scaling) {
Chandra Kondurua1b22782015-04-07 15:28:45 -07004680 if (*scaler_id >= 0) {
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004681 scaler_state->scaler_users &= ~(1 << scaler_user);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004682 scaler_state->scalers[*scaler_id].in_use = 0;
4683
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004684 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4685 "Staged freeing scaler id %d scaler_users = 0x%x\n",
4686 intel_crtc->pipe, scaler_user, *scaler_id,
Chandra Kondurua1b22782015-04-07 15:28:45 -07004687 scaler_state->scaler_users);
4688 *scaler_id = -1;
4689 }
4690 return 0;
4691 }
4692
4693 /* range checks */
4694 if (src_w < SKL_MIN_SRC_W || src_h < SKL_MIN_SRC_H ||
4695 dst_w < SKL_MIN_DST_W || dst_h < SKL_MIN_DST_H ||
4696
4697 src_w > SKL_MAX_SRC_W || src_h > SKL_MAX_SRC_H ||
4698 dst_w > SKL_MAX_DST_W || dst_h > SKL_MAX_DST_H) {
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004699 DRM_DEBUG_KMS("scaler_user index %u.%u: src %ux%u dst %ux%u "
Chandra Kondurua1b22782015-04-07 15:28:45 -07004700 "size is out of scaler range\n",
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004701 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004702 return -EINVAL;
4703 }
4704
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004705 /* mark this plane as a scaler user in crtc_state */
4706 scaler_state->scaler_users |= (1 << scaler_user);
4707 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4708 "staged scaling request for %ux%u->%ux%u scaler_users = 0x%x\n",
4709 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h,
4710 scaler_state->scaler_users);
4711
4712 return 0;
4713}
4714
4715/**
4716 * skl_update_scaler_crtc - Stages update to scaler state for a given crtc.
4717 *
4718 * @state: crtc's scaler state
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004719 *
4720 * Return
4721 * 0 - scaler_usage updated successfully
4722 * error - requested scaling cannot be supported or other error condition
4723 */
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02004724int skl_update_scaler_crtc(struct intel_crtc_state *state)
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004725{
4726 struct intel_crtc *intel_crtc = to_intel_crtc(state->base.crtc);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03004727 const struct drm_display_mode *adjusted_mode = &state->base.adjusted_mode;
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004728
Ville Syrjälä78108b72016-05-27 20:59:19 +03004729 DRM_DEBUG_KMS("Updating scaler for [CRTC:%d:%s] scaler_user index %u.%u\n",
4730 intel_crtc->base.base.id, intel_crtc->base.name,
4731 intel_crtc->pipe, SKL_CRTC_INDEX);
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004732
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02004733 return skl_update_scaler(state, !state->base.active, SKL_CRTC_INDEX,
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +03004734 &state->scaler_state.scaler_id, DRM_ROTATE_0,
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004735 state->pipe_src_w, state->pipe_src_h,
Ville Syrjäläaad941d2015-09-25 16:38:56 +03004736 adjusted_mode->crtc_hdisplay, adjusted_mode->crtc_vdisplay);
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004737}
4738
4739/**
4740 * skl_update_scaler_plane - Stages update to scaler state for a given plane.
4741 *
4742 * @state: crtc's scaler state
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004743 * @plane_state: atomic plane state to update
4744 *
4745 * Return
4746 * 0 - scaler_usage updated successfully
4747 * error - requested scaling cannot be supported or other error condition
4748 */
Maarten Lankhorstda20eab2015-06-15 12:33:44 +02004749static int skl_update_scaler_plane(struct intel_crtc_state *crtc_state,
4750 struct intel_plane_state *plane_state)
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004751{
4752
4753 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
Maarten Lankhorstda20eab2015-06-15 12:33:44 +02004754 struct intel_plane *intel_plane =
4755 to_intel_plane(plane_state->base.plane);
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004756 struct drm_framebuffer *fb = plane_state->base.fb;
4757 int ret;
4758
Ville Syrjälä936e71e2016-07-26 19:06:59 +03004759 bool force_detach = !fb || !plane_state->base.visible;
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004760
Ville Syrjälä72660ce2016-05-27 20:59:20 +03004761 DRM_DEBUG_KMS("Updating scaler for [PLANE:%d:%s] scaler_user index %u.%u\n",
4762 intel_plane->base.base.id, intel_plane->base.name,
4763 intel_crtc->pipe, drm_plane_index(&intel_plane->base));
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004764
4765 ret = skl_update_scaler(crtc_state, force_detach,
4766 drm_plane_index(&intel_plane->base),
4767 &plane_state->scaler_id,
4768 plane_state->base.rotation,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03004769 drm_rect_width(&plane_state->base.src) >> 16,
4770 drm_rect_height(&plane_state->base.src) >> 16,
4771 drm_rect_width(&plane_state->base.dst),
4772 drm_rect_height(&plane_state->base.dst));
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004773
4774 if (ret || plane_state->scaler_id < 0)
4775 return ret;
4776
Chandra Kondurua1b22782015-04-07 15:28:45 -07004777 /* check colorkey */
Maarten Lankhorst818ed962015-06-15 12:33:54 +02004778 if (plane_state->ckey.flags != I915_SET_COLORKEY_NONE) {
Ville Syrjälä72660ce2016-05-27 20:59:20 +03004779 DRM_DEBUG_KMS("[PLANE:%d:%s] scaling with color key not allowed",
4780 intel_plane->base.base.id,
4781 intel_plane->base.name);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004782 return -EINVAL;
4783 }
4784
4785 /* Check src format */
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004786 switch (fb->pixel_format) {
4787 case DRM_FORMAT_RGB565:
4788 case DRM_FORMAT_XBGR8888:
4789 case DRM_FORMAT_XRGB8888:
4790 case DRM_FORMAT_ABGR8888:
4791 case DRM_FORMAT_ARGB8888:
4792 case DRM_FORMAT_XRGB2101010:
4793 case DRM_FORMAT_XBGR2101010:
4794 case DRM_FORMAT_YUYV:
4795 case DRM_FORMAT_YVYU:
4796 case DRM_FORMAT_UYVY:
4797 case DRM_FORMAT_VYUY:
4798 break;
4799 default:
Ville Syrjälä72660ce2016-05-27 20:59:20 +03004800 DRM_DEBUG_KMS("[PLANE:%d:%s] FB:%d unsupported scaling format 0x%x\n",
4801 intel_plane->base.base.id, intel_plane->base.name,
4802 fb->base.id, fb->pixel_format);
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004803 return -EINVAL;
Chandra Kondurua1b22782015-04-07 15:28:45 -07004804 }
4805
Chandra Kondurua1b22782015-04-07 15:28:45 -07004806 return 0;
4807}
4808
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02004809static void skylake_scaler_disable(struct intel_crtc *crtc)
4810{
4811 int i;
4812
4813 for (i = 0; i < crtc->num_scalers; i++)
4814 skl_detach_scaler(crtc, i);
4815}
4816
4817static void skylake_pfit_enable(struct intel_crtc *crtc)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004818{
4819 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004820 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004821 int pipe = crtc->pipe;
Chandra Kondurua1b22782015-04-07 15:28:45 -07004822 struct intel_crtc_scaler_state *scaler_state =
4823 &crtc->config->scaler_state;
4824
4825 DRM_DEBUG_KMS("for crtc_state = %p\n", crtc->config);
4826
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004827 if (crtc->config->pch_pfit.enabled) {
Chandra Kondurua1b22782015-04-07 15:28:45 -07004828 int id;
4829
4830 if (WARN_ON(crtc->config->scaler_state.scaler_id < 0)) {
4831 DRM_ERROR("Requesting pfit without getting a scaler first\n");
4832 return;
4833 }
4834
4835 id = scaler_state->scaler_id;
4836 I915_WRITE(SKL_PS_CTRL(pipe, id), PS_SCALER_EN |
4837 PS_FILTER_MEDIUM | scaler_state->scalers[id].mode);
4838 I915_WRITE(SKL_PS_WIN_POS(pipe, id), crtc->config->pch_pfit.pos);
4839 I915_WRITE(SKL_PS_WIN_SZ(pipe, id), crtc->config->pch_pfit.size);
4840
4841 DRM_DEBUG_KMS("for crtc_state = %p scaler_id = %d\n", crtc->config, id);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004842 }
4843}
4844
Jesse Barnesb074cec2013-04-25 12:55:02 -07004845static void ironlake_pfit_enable(struct intel_crtc *crtc)
4846{
4847 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004848 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnesb074cec2013-04-25 12:55:02 -07004849 int pipe = crtc->pipe;
4850
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004851 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07004852 /* Force use of hard-coded filter coefficients
4853 * as some pre-programmed values are broken,
4854 * e.g. x201.
4855 */
4856 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
4857 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4858 PF_PIPE_SEL_IVB(pipe));
4859 else
4860 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004861 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4862 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08004863 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004864}
4865
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004866void hsw_enable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004867{
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004868 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004869 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanonid77e4532013-09-24 13:52:55 -03004870
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004871 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004872 return;
4873
Maarten Lankhorst307e4492016-03-23 14:33:28 +01004874 /*
4875 * We can only enable IPS after we enable a plane and wait for a vblank
4876 * This function is called from post_plane_update, which is run after
4877 * a vblank wait.
4878 */
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004879
Paulo Zanonid77e4532013-09-24 13:52:55 -03004880 assert_plane_enabled(dev_priv, crtc->plane);
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004881 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004882 mutex_lock(&dev_priv->rps.hw_lock);
4883 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4884 mutex_unlock(&dev_priv->rps.hw_lock);
4885 /* Quoting Art Runyan: "its not safe to expect any particular
4886 * value in IPS_CTL bit 31 after enabling IPS through the
Jesse Barnese59150d2014-01-07 13:30:45 -08004887 * mailbox." Moreover, the mailbox may return a bogus state,
4888 * so we need to just enable it and continue on.
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004889 */
4890 } else {
4891 I915_WRITE(IPS_CTL, IPS_ENABLE);
4892 /* The bit only becomes 1 in the next vblank, so this wait here
4893 * is essentially intel_wait_for_vblank. If we don't have this
4894 * and don't wait for vblanks until the end of crtc_enable, then
4895 * the HW state readout code will complain that the expected
4896 * IPS_CTL value is not the one we read. */
Chris Wilson2ec9ba32016-06-30 15:33:01 +01004897 if (intel_wait_for_register(dev_priv,
4898 IPS_CTL, IPS_ENABLE, IPS_ENABLE,
4899 50))
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004900 DRM_ERROR("Timed out waiting for IPS enable\n");
4901 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004902}
4903
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004904void hsw_disable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004905{
4906 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004907 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanonid77e4532013-09-24 13:52:55 -03004908
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004909 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004910 return;
4911
4912 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004913 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004914 mutex_lock(&dev_priv->rps.hw_lock);
4915 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4916 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004917 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
Chris Wilsonb85c1ec2016-06-30 15:33:02 +01004918 if (intel_wait_for_register(dev_priv,
4919 IPS_CTL, IPS_ENABLE, 0,
4920 42))
Ben Widawsky23d0b132014-04-10 14:32:41 -07004921 DRM_ERROR("Timed out waiting for IPS disable\n");
Jesse Barnese59150d2014-01-07 13:30:45 -08004922 } else {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004923 I915_WRITE(IPS_CTL, 0);
Jesse Barnese59150d2014-01-07 13:30:45 -08004924 POSTING_READ(IPS_CTL);
4925 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004926
4927 /* We need to wait for a vblank before we can disable the plane. */
4928 intel_wait_for_vblank(dev, crtc->pipe);
4929}
4930
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004931static void intel_crtc_dpms_overlay_disable(struct intel_crtc *intel_crtc)
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004932{
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004933 if (intel_crtc->overlay) {
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004934 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004935 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004936
4937 mutex_lock(&dev->struct_mutex);
4938 dev_priv->mm.interruptible = false;
4939 (void) intel_overlay_switch_off(intel_crtc->overlay);
4940 dev_priv->mm.interruptible = true;
4941 mutex_unlock(&dev->struct_mutex);
4942 }
4943
4944 /* Let userspace switch the overlay on again. In most cases userspace
4945 * has to recompute where to put it anyway.
4946 */
4947}
4948
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004949/**
4950 * intel_post_enable_primary - Perform operations after enabling primary plane
4951 * @crtc: the CRTC whose primary plane was just enabled
4952 *
4953 * Performs potentially sleeping operations that must be done after the primary
4954 * plane is enabled, such as updating FBC and IPS. Note that this may be
4955 * called due to an explicit primary plane update, or due to an implicit
4956 * re-enable that is caused when a sprite plane is updated to no longer
4957 * completely hide the primary plane.
4958 */
4959static void
4960intel_post_enable_primary(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004961{
4962 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004963 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004964 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4965 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004966
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004967 /*
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004968 * FIXME IPS should be fine as long as one plane is
4969 * enabled, but in practice it seems to have problems
4970 * when going from primary only to sprite only and vice
4971 * versa.
4972 */
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004973 hsw_enable_ips(intel_crtc);
4974
Daniel Vetterf99d7062014-06-19 16:01:59 +02004975 /*
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004976 * Gen2 reports pipe underruns whenever all planes are disabled.
4977 * So don't enable underrun reporting before at least some planes
4978 * are enabled.
4979 * FIXME: Need to fix the logic to work when we turn off all planes
4980 * but leave the pipe running.
Daniel Vetterf99d7062014-06-19 16:01:59 +02004981 */
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004982 if (IS_GEN2(dev))
4983 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4984
Ville Syrjäläaca7b682015-10-30 19:22:21 +02004985 /* Underruns don't always raise interrupts, so check manually. */
4986 intel_check_cpu_fifo_underruns(dev_priv);
4987 intel_check_pch_fifo_underruns(dev_priv);
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004988}
4989
Ville Syrjälä2622a082016-03-09 19:07:26 +02004990/* FIXME move all this to pre_plane_update() with proper state tracking */
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004991static void
4992intel_pre_disable_primary(struct drm_crtc *crtc)
4993{
4994 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004995 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004996 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4997 int pipe = intel_crtc->pipe;
4998
4999 /*
5000 * Gen2 reports pipe underruns whenever all planes are disabled.
5001 * So diasble underrun reporting before all the planes get disabled.
5002 * FIXME: Need to fix the logic to work when we turn off all planes
5003 * but leave the pipe running.
5004 */
5005 if (IS_GEN2(dev))
5006 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
5007
5008 /*
Ville Syrjälä2622a082016-03-09 19:07:26 +02005009 * FIXME IPS should be fine as long as one plane is
5010 * enabled, but in practice it seems to have problems
5011 * when going from primary only to sprite only and vice
5012 * versa.
5013 */
5014 hsw_disable_ips(intel_crtc);
5015}
5016
5017/* FIXME get rid of this and use pre_plane_update */
5018static void
5019intel_pre_disable_primary_noatomic(struct drm_crtc *crtc)
5020{
5021 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01005022 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä2622a082016-03-09 19:07:26 +02005023 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5024 int pipe = intel_crtc->pipe;
5025
5026 intel_pre_disable_primary(crtc);
5027
5028 /*
Maarten Lankhorst87d43002015-04-21 17:12:54 +03005029 * Vblank time updates from the shadow to live plane control register
5030 * are blocked if the memory self-refresh mode is active at that
5031 * moment. So to make sure the plane gets truly disabled, disable
5032 * first the self-refresh mode. The self-refresh enable bit in turn
5033 * will be checked/applied by the HW only at the next frame start
5034 * event which is after the vblank start event, so we need to have a
5035 * wait-for-vblank between disabling the plane and the pipe.
5036 */
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03005037 if (HAS_GMCH_DISPLAY(dev)) {
Maarten Lankhorst87d43002015-04-21 17:12:54 +03005038 intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03005039 dev_priv->wm.vlv.cxsr = false;
5040 intel_wait_for_vblank(dev, pipe);
5041 }
Maarten Lankhorst87d43002015-04-21 17:12:54 +03005042}
5043
Daniel Vetter5a21b662016-05-24 17:13:53 +02005044static void intel_post_plane_update(struct intel_crtc_state *old_crtc_state)
5045{
5046 struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc);
5047 struct drm_atomic_state *old_state = old_crtc_state->base.state;
5048 struct intel_crtc_state *pipe_config =
5049 to_intel_crtc_state(crtc->base.state);
Daniel Vetter5a21b662016-05-24 17:13:53 +02005050 struct drm_plane *primary = crtc->base.primary;
5051 struct drm_plane_state *old_pri_state =
5052 drm_atomic_get_existing_plane_state(old_state, primary);
5053
Chris Wilson5748b6a2016-08-04 16:32:38 +01005054 intel_frontbuffer_flip(to_i915(crtc->base.dev), pipe_config->fb_bits);
Daniel Vetter5a21b662016-05-24 17:13:53 +02005055
5056 crtc->wm.cxsr_allowed = true;
5057
5058 if (pipe_config->update_wm_post && pipe_config->base.active)
5059 intel_update_watermarks(&crtc->base);
5060
5061 if (old_pri_state) {
5062 struct intel_plane_state *primary_state =
5063 to_intel_plane_state(primary->state);
5064 struct intel_plane_state *old_primary_state =
5065 to_intel_plane_state(old_pri_state);
5066
5067 intel_fbc_post_update(crtc);
5068
Ville Syrjälä936e71e2016-07-26 19:06:59 +03005069 if (primary_state->base.visible &&
Daniel Vetter5a21b662016-05-24 17:13:53 +02005070 (needs_modeset(&pipe_config->base) ||
Ville Syrjälä936e71e2016-07-26 19:06:59 +03005071 !old_primary_state->base.visible))
Daniel Vetter5a21b662016-05-24 17:13:53 +02005072 intel_post_enable_primary(&crtc->base);
5073 }
5074}
5075
Maarten Lankhorst5c74cd72016-02-03 16:53:24 +01005076static void intel_pre_plane_update(struct intel_crtc_state *old_crtc_state)
Maarten Lankhorstac21b222015-06-15 12:33:49 +02005077{
Maarten Lankhorst5c74cd72016-02-03 16:53:24 +01005078 struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc);
Maarten Lankhorstac21b222015-06-15 12:33:49 +02005079 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01005080 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorstab1d3a02015-11-19 16:07:14 +01005081 struct intel_crtc_state *pipe_config =
5082 to_intel_crtc_state(crtc->base.state);
Maarten Lankhorst5c74cd72016-02-03 16:53:24 +01005083 struct drm_atomic_state *old_state = old_crtc_state->base.state;
5084 struct drm_plane *primary = crtc->base.primary;
5085 struct drm_plane_state *old_pri_state =
5086 drm_atomic_get_existing_plane_state(old_state, primary);
5087 bool modeset = needs_modeset(&pipe_config->base);
Maarten Lankhorstac21b222015-06-15 12:33:49 +02005088
Maarten Lankhorst5c74cd72016-02-03 16:53:24 +01005089 if (old_pri_state) {
5090 struct intel_plane_state *primary_state =
5091 to_intel_plane_state(primary->state);
5092 struct intel_plane_state *old_primary_state =
5093 to_intel_plane_state(old_pri_state);
5094
Maarten Lankhorstfaf68d92016-06-14 14:24:20 +02005095 intel_fbc_pre_update(crtc, pipe_config, primary_state);
Maarten Lankhorst31ae71f2016-03-09 10:35:45 +01005096
Ville Syrjälä936e71e2016-07-26 19:06:59 +03005097 if (old_primary_state->base.visible &&
5098 (modeset || !primary_state->base.visible))
Maarten Lankhorst5c74cd72016-02-03 16:53:24 +01005099 intel_pre_disable_primary(&crtc->base);
5100 }
Ville Syrjälä852eb002015-06-24 22:00:07 +03005101
David Weinehalla4015f92016-05-19 15:50:36 +03005102 if (pipe_config->disable_cxsr && HAS_GMCH_DISPLAY(dev)) {
Ville Syrjälä852eb002015-06-24 22:00:07 +03005103 crtc->wm.cxsr_allowed = false;
Maarten Lankhorst2dfd1782016-02-03 16:53:25 +01005104
Ville Syrjälä2622a082016-03-09 19:07:26 +02005105 /*
5106 * Vblank time updates from the shadow to live plane control register
5107 * are blocked if the memory self-refresh mode is active at that
5108 * moment. So to make sure the plane gets truly disabled, disable
5109 * first the self-refresh mode. The self-refresh enable bit in turn
5110 * will be checked/applied by the HW only at the next frame start
5111 * event which is after the vblank start event, so we need to have a
5112 * wait-for-vblank between disabling the plane and the pipe.
5113 */
5114 if (old_crtc_state->base.active) {
Maarten Lankhorst2dfd1782016-02-03 16:53:25 +01005115 intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä2622a082016-03-09 19:07:26 +02005116 dev_priv->wm.vlv.cxsr = false;
5117 intel_wait_for_vblank(dev, crtc->pipe);
5118 }
Ville Syrjälä852eb002015-06-24 22:00:07 +03005119 }
Maarten Lankhorst92826fc2015-12-03 13:49:13 +01005120
Matt Ropered4a6a72016-02-23 17:20:13 -08005121 /*
5122 * IVB workaround: must disable low power watermarks for at least
5123 * one frame before enabling scaling. LP watermarks can be re-enabled
5124 * when scaling is disabled.
5125 *
5126 * WaCxSRDisabledForSpriteScaling:ivb
5127 */
5128 if (pipe_config->disable_lp_wm) {
5129 ilk_disable_lp_wm(dev);
5130 intel_wait_for_vblank(dev, crtc->pipe);
5131 }
5132
5133 /*
5134 * If we're doing a modeset, we're done. No need to do any pre-vblank
5135 * watermark programming here.
5136 */
5137 if (needs_modeset(&pipe_config->base))
5138 return;
5139
5140 /*
5141 * For platforms that support atomic watermarks, program the
5142 * 'intermediate' watermarks immediately. On pre-gen9 platforms, these
5143 * will be the intermediate values that are safe for both pre- and
5144 * post- vblank; when vblank happens, the 'active' values will be set
5145 * to the final 'target' values and we'll do this again to get the
5146 * optimal watermarks. For gen9+ platforms, the values we program here
5147 * will be the final target values which will get automatically latched
5148 * at vblank time; no further programming will be necessary.
5149 *
5150 * If a platform hasn't been transitioned to atomic watermarks yet,
5151 * we'll continue to update watermarks the old way, if flags tell
5152 * us to.
5153 */
5154 if (dev_priv->display.initial_watermarks != NULL)
5155 dev_priv->display.initial_watermarks(pipe_config);
Ville Syrjäläcaed3612016-03-09 19:07:25 +02005156 else if (pipe_config->update_wm_pre)
Maarten Lankhorst92826fc2015-12-03 13:49:13 +01005157 intel_update_watermarks(&crtc->base);
Maarten Lankhorstac21b222015-06-15 12:33:49 +02005158}
5159
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +02005160static void intel_crtc_disable_planes(struct drm_crtc *crtc, unsigned plane_mask)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02005161{
5162 struct drm_device *dev = crtc->dev;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02005163 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +02005164 struct drm_plane *p;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02005165 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02005166
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03005167 intel_crtc_dpms_overlay_disable(intel_crtc);
Maarten Lankhorst27321ae2015-04-21 17:12:52 +03005168
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +02005169 drm_for_each_plane_mask(p, dev, plane_mask)
5170 to_intel_plane(p)->disable_plane(p, crtc);
Ville Syrjäläf98551a2014-05-22 17:48:06 +03005171
Daniel Vetterf99d7062014-06-19 16:01:59 +02005172 /*
5173 * FIXME: Once we grow proper nuclear flip support out of this we need
5174 * to compute the mask of flip planes precisely. For the time being
5175 * consider this a flip to a NULL plane.
5176 */
Chris Wilson5748b6a2016-08-04 16:32:38 +01005177 intel_frontbuffer_flip(to_i915(dev), INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02005178}
5179
Maarten Lankhorstfb1c98b2016-08-09 17:04:03 +02005180static void intel_encoders_pre_pll_enable(struct drm_crtc *crtc,
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02005181 struct intel_crtc_state *crtc_state,
Maarten Lankhorstfb1c98b2016-08-09 17:04:03 +02005182 struct drm_atomic_state *old_state)
5183{
5184 struct drm_connector_state *old_conn_state;
5185 struct drm_connector *conn;
5186 int i;
5187
5188 for_each_connector_in_state(old_state, conn, old_conn_state, i) {
5189 struct drm_connector_state *conn_state = conn->state;
5190 struct intel_encoder *encoder =
5191 to_intel_encoder(conn_state->best_encoder);
5192
5193 if (conn_state->crtc != crtc)
5194 continue;
5195
5196 if (encoder->pre_pll_enable)
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02005197 encoder->pre_pll_enable(encoder, crtc_state, conn_state);
Maarten Lankhorstfb1c98b2016-08-09 17:04:03 +02005198 }
5199}
5200
5201static void intel_encoders_pre_enable(struct drm_crtc *crtc,
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02005202 struct intel_crtc_state *crtc_state,
Maarten Lankhorstfb1c98b2016-08-09 17:04:03 +02005203 struct drm_atomic_state *old_state)
5204{
5205 struct drm_connector_state *old_conn_state;
5206 struct drm_connector *conn;
5207 int i;
5208
5209 for_each_connector_in_state(old_state, conn, old_conn_state, i) {
5210 struct drm_connector_state *conn_state = conn->state;
5211 struct intel_encoder *encoder =
5212 to_intel_encoder(conn_state->best_encoder);
5213
5214 if (conn_state->crtc != crtc)
5215 continue;
5216
5217 if (encoder->pre_enable)
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02005218 encoder->pre_enable(encoder, crtc_state, conn_state);
Maarten Lankhorstfb1c98b2016-08-09 17:04:03 +02005219 }
5220}
5221
5222static void intel_encoders_enable(struct drm_crtc *crtc,
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02005223 struct intel_crtc_state *crtc_state,
Maarten Lankhorstfb1c98b2016-08-09 17:04:03 +02005224 struct drm_atomic_state *old_state)
5225{
5226 struct drm_connector_state *old_conn_state;
5227 struct drm_connector *conn;
5228 int i;
5229
5230 for_each_connector_in_state(old_state, conn, old_conn_state, i) {
5231 struct drm_connector_state *conn_state = conn->state;
5232 struct intel_encoder *encoder =
5233 to_intel_encoder(conn_state->best_encoder);
5234
5235 if (conn_state->crtc != crtc)
5236 continue;
5237
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02005238 encoder->enable(encoder, crtc_state, conn_state);
Maarten Lankhorstfb1c98b2016-08-09 17:04:03 +02005239 intel_opregion_notify_encoder(encoder, true);
5240 }
5241}
5242
5243static void intel_encoders_disable(struct drm_crtc *crtc,
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02005244 struct intel_crtc_state *old_crtc_state,
Maarten Lankhorstfb1c98b2016-08-09 17:04:03 +02005245 struct drm_atomic_state *old_state)
5246{
5247 struct drm_connector_state *old_conn_state;
5248 struct drm_connector *conn;
5249 int i;
5250
5251 for_each_connector_in_state(old_state, conn, old_conn_state, i) {
5252 struct intel_encoder *encoder =
5253 to_intel_encoder(old_conn_state->best_encoder);
5254
5255 if (old_conn_state->crtc != crtc)
5256 continue;
5257
5258 intel_opregion_notify_encoder(encoder, false);
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02005259 encoder->disable(encoder, old_crtc_state, old_conn_state);
Maarten Lankhorstfb1c98b2016-08-09 17:04:03 +02005260 }
5261}
5262
5263static void intel_encoders_post_disable(struct drm_crtc *crtc,
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02005264 struct intel_crtc_state *old_crtc_state,
Maarten Lankhorstfb1c98b2016-08-09 17:04:03 +02005265 struct drm_atomic_state *old_state)
5266{
5267 struct drm_connector_state *old_conn_state;
5268 struct drm_connector *conn;
5269 int i;
5270
5271 for_each_connector_in_state(old_state, conn, old_conn_state, i) {
5272 struct intel_encoder *encoder =
5273 to_intel_encoder(old_conn_state->best_encoder);
5274
5275 if (old_conn_state->crtc != crtc)
5276 continue;
5277
5278 if (encoder->post_disable)
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02005279 encoder->post_disable(encoder, old_crtc_state, old_conn_state);
Maarten Lankhorstfb1c98b2016-08-09 17:04:03 +02005280 }
5281}
5282
5283static void intel_encoders_post_pll_disable(struct drm_crtc *crtc,
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02005284 struct intel_crtc_state *old_crtc_state,
Maarten Lankhorstfb1c98b2016-08-09 17:04:03 +02005285 struct drm_atomic_state *old_state)
5286{
5287 struct drm_connector_state *old_conn_state;
5288 struct drm_connector *conn;
5289 int i;
5290
5291 for_each_connector_in_state(old_state, conn, old_conn_state, i) {
5292 struct intel_encoder *encoder =
5293 to_intel_encoder(old_conn_state->best_encoder);
5294
5295 if (old_conn_state->crtc != crtc)
5296 continue;
5297
5298 if (encoder->post_pll_disable)
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02005299 encoder->post_pll_disable(encoder, old_crtc_state, old_conn_state);
Maarten Lankhorstfb1c98b2016-08-09 17:04:03 +02005300 }
5301}
5302
Maarten Lankhorst4a806552016-08-09 17:04:01 +02005303static void ironlake_crtc_enable(struct intel_crtc_state *pipe_config,
5304 struct drm_atomic_state *old_state)
Jesse Barnesf67a5592011-01-05 10:31:48 -08005305{
Maarten Lankhorst4a806552016-08-09 17:04:01 +02005306 struct drm_crtc *crtc = pipe_config->base.crtc;
Jesse Barnesf67a5592011-01-05 10:31:48 -08005307 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01005308 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnesf67a5592011-01-05 10:31:48 -08005309 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5310 int pipe = intel_crtc->pipe;
Jesse Barnesf67a5592011-01-05 10:31:48 -08005311
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02005312 if (WARN_ON(intel_crtc->active))
Jesse Barnesf67a5592011-01-05 10:31:48 -08005313 return;
5314
Ville Syrjäläb2c05932016-04-01 21:53:17 +03005315 /*
5316 * Sometimes spurious CPU pipe underruns happen during FDI
5317 * training, at least with VGA+HDMI cloning. Suppress them.
5318 *
5319 * On ILK we get an occasional spurious CPU pipe underruns
5320 * between eDP port A enable and vdd enable. Also PCH port
5321 * enable seems to result in the occasional CPU pipe underrun.
5322 *
5323 * Spurious PCH underruns also occur during PCH enabling.
5324 */
5325 if (intel_crtc->config->has_pch_encoder || IS_GEN5(dev_priv))
5326 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005327 if (intel_crtc->config->has_pch_encoder)
Ville Syrjälä81b088c2015-10-30 19:21:31 +02005328 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
5329
5330 if (intel_crtc->config->has_pch_encoder)
Daniel Vetterb14b1052014-04-24 23:55:13 +02005331 intel_prepare_shared_dpll(intel_crtc);
5332
Ville Syrjälä37a56502016-06-22 21:57:04 +03005333 if (intel_crtc_has_dp_encoder(intel_crtc->config))
Ramalingam Cfe3cd482015-02-13 15:32:59 +05305334 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter29407aa2014-04-24 23:55:08 +02005335
5336 intel_set_pipe_timings(intel_crtc);
Jani Nikulabc58be62016-03-18 17:05:39 +02005337 intel_set_pipe_src_size(intel_crtc);
Daniel Vetter29407aa2014-04-24 23:55:08 +02005338
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005339 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter29407aa2014-04-24 23:55:08 +02005340 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005341 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter29407aa2014-04-24 23:55:08 +02005342 }
5343
5344 ironlake_set_pipeconf(crtc);
5345
Jesse Barnesf67a5592011-01-05 10:31:48 -08005346 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03005347
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02005348 intel_encoders_pre_enable(crtc, pipe_config, old_state);
Jesse Barnesf67a5592011-01-05 10:31:48 -08005349
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005350 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02005351 /* Note: FDI PLL enabling _must_ be done before we enable the
5352 * cpu pipes, hence this is separate from all the other fdi/pch
5353 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02005354 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02005355 } else {
5356 assert_fdi_tx_disabled(dev_priv, pipe);
5357 assert_fdi_rx_disabled(dev_priv, pipe);
5358 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08005359
Jesse Barnesb074cec2013-04-25 12:55:02 -07005360 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08005361
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02005362 /*
5363 * On ILK+ LUT must be loaded before the pipe is running but with
5364 * clocks enabled
5365 */
Maarten Lankhorstb95c5322016-03-30 17:16:34 +02005366 intel_color_load_luts(&pipe_config->base);
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02005367
Imre Deak1d5bf5d2016-02-29 22:10:33 +02005368 if (dev_priv->display.initial_watermarks != NULL)
5369 dev_priv->display.initial_watermarks(intel_crtc->config);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02005370 intel_enable_pipe(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08005371
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005372 if (intel_crtc->config->has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08005373 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005374
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005375 assert_vblank_disabled(crtc);
5376 drm_crtc_vblank_on(crtc);
5377
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02005378 intel_encoders_enable(crtc, pipe_config, old_state);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02005379
5380 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02005381 cpt_verify_modeset(dev, intel_crtc->pipe);
Ville Syrjälä37ca8d42015-10-30 19:20:27 +02005382
5383 /* Must wait for vblank to avoid spurious PCH FIFO underruns */
5384 if (intel_crtc->config->has_pch_encoder)
5385 intel_wait_for_vblank(dev, pipe);
Ville Syrjäläb2c05932016-04-01 21:53:17 +03005386 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä37ca8d42015-10-30 19:20:27 +02005387 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005388}
5389
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005390/* IPS only exists on ULT machines and is tied to pipe A. */
5391static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
5392{
Damien Lespiauf5adf942013-06-24 18:29:34 +01005393 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005394}
5395
Maarten Lankhorst4a806552016-08-09 17:04:01 +02005396static void haswell_crtc_enable(struct intel_crtc_state *pipe_config,
5397 struct drm_atomic_state *old_state)
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005398{
Maarten Lankhorst4a806552016-08-09 17:04:01 +02005399 struct drm_crtc *crtc = pipe_config->base.crtc;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005400 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01005401 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005402 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorst99d736a2015-06-01 12:50:09 +02005403 int pipe = intel_crtc->pipe, hsw_workaround_pipe;
Jani Nikula4d1de972016-03-18 17:05:42 +02005404 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005405
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02005406 if (WARN_ON(intel_crtc->active))
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005407 return;
5408
Ville Syrjälä81b088c2015-10-30 19:21:31 +02005409 if (intel_crtc->config->has_pch_encoder)
5410 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5411 false);
5412
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02005413 intel_encoders_pre_pll_enable(crtc, pipe_config, old_state);
Imre Deak95a7a2a2016-06-13 16:44:35 +03005414
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +02005415 if (intel_crtc->config->shared_dpll)
Daniel Vetterdf8ad702014-06-25 22:02:03 +03005416 intel_enable_shared_dpll(intel_crtc);
5417
Ville Syrjälä37a56502016-06-22 21:57:04 +03005418 if (intel_crtc_has_dp_encoder(intel_crtc->config))
Ramalingam Cfe3cd482015-02-13 15:32:59 +05305419 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter229fca92014-04-24 23:55:09 +02005420
Ville Syrjäläd7edc4e2016-06-22 21:57:07 +03005421 if (!transcoder_is_dsi(cpu_transcoder))
Jani Nikula4d1de972016-03-18 17:05:42 +02005422 intel_set_pipe_timings(intel_crtc);
5423
Jani Nikulabc58be62016-03-18 17:05:39 +02005424 intel_set_pipe_src_size(intel_crtc);
Daniel Vetter229fca92014-04-24 23:55:09 +02005425
Jani Nikula4d1de972016-03-18 17:05:42 +02005426 if (cpu_transcoder != TRANSCODER_EDP &&
5427 !transcoder_is_dsi(cpu_transcoder)) {
5428 I915_WRITE(PIPE_MULT(cpu_transcoder),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005429 intel_crtc->config->pixel_multiplier - 1);
Clint Taylorebb69c92014-09-30 10:30:22 -07005430 }
5431
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005432 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter229fca92014-04-24 23:55:09 +02005433 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005434 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter229fca92014-04-24 23:55:09 +02005435 }
5436
Ville Syrjäläd7edc4e2016-06-22 21:57:07 +03005437 if (!transcoder_is_dsi(cpu_transcoder))
Jani Nikula4d1de972016-03-18 17:05:42 +02005438 haswell_set_pipeconf(crtc);
5439
Jani Nikula391bf042016-03-18 17:05:40 +02005440 haswell_set_pipemisc(crtc);
Daniel Vetter229fca92014-04-24 23:55:09 +02005441
Maarten Lankhorstb95c5322016-03-30 17:16:34 +02005442 intel_color_set_csc(&pipe_config->base);
Daniel Vetter229fca92014-04-24 23:55:09 +02005443
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005444 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03005445
Daniel Vetter6b698512015-11-28 11:05:39 +01005446 if (intel_crtc->config->has_pch_encoder)
5447 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
5448 else
5449 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
5450
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02005451 intel_encoders_pre_enable(crtc, pipe_config, old_state);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005452
Ville Syrjäläd2d65402015-10-29 21:25:53 +02005453 if (intel_crtc->config->has_pch_encoder)
Imre Deak4fe94672014-06-25 22:01:49 +03005454 dev_priv->display.fdi_link_train(crtc);
Imre Deak4fe94672014-06-25 22:01:49 +03005455
Ville Syrjäläd7edc4e2016-06-22 21:57:07 +03005456 if (!transcoder_is_dsi(cpu_transcoder))
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305457 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005458
Rodrigo Vivi1c132b42015-09-02 15:19:26 -07005459 if (INTEL_INFO(dev)->gen >= 9)
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02005460 skylake_pfit_enable(intel_crtc);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005461 else
Rodrigo Vivi1c132b42015-09-02 15:19:26 -07005462 ironlake_pfit_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005463
5464 /*
5465 * On ILK+ LUT must be loaded before the pipe is running but with
5466 * clocks enabled
5467 */
Maarten Lankhorstb95c5322016-03-30 17:16:34 +02005468 intel_color_load_luts(&pipe_config->base);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005469
Paulo Zanoni1f544382012-10-24 11:32:00 -02005470 intel_ddi_set_pipe_settings(crtc);
Ville Syrjäläd7edc4e2016-06-22 21:57:07 +03005471 if (!transcoder_is_dsi(cpu_transcoder))
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305472 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005473
Imre Deak1d5bf5d2016-02-29 22:10:33 +02005474 if (dev_priv->display.initial_watermarks != NULL)
5475 dev_priv->display.initial_watermarks(pipe_config);
5476 else
5477 intel_update_watermarks(crtc);
Jani Nikula4d1de972016-03-18 17:05:42 +02005478
5479 /* XXX: Do the pipe assertions at the right place for BXT DSI. */
Ville Syrjäläd7edc4e2016-06-22 21:57:07 +03005480 if (!transcoder_is_dsi(cpu_transcoder))
Jani Nikula4d1de972016-03-18 17:05:42 +02005481 intel_enable_pipe(intel_crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005482
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005483 if (intel_crtc->config->has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02005484 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005485
Jani Nikulaa65347b2015-11-27 12:21:46 +02005486 if (intel_crtc->config->dp_encoder_is_mst)
Dave Airlie0e32b392014-05-02 14:02:48 +10005487 intel_ddi_set_vc_payload_alloc(crtc, true);
5488
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005489 assert_vblank_disabled(crtc);
5490 drm_crtc_vblank_on(crtc);
5491
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02005492 intel_encoders_enable(crtc, pipe_config, old_state);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005493
Daniel Vetter6b698512015-11-28 11:05:39 +01005494 if (intel_crtc->config->has_pch_encoder) {
5495 intel_wait_for_vblank(dev, pipe);
5496 intel_wait_for_vblank(dev, pipe);
5497 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjäläd2d65402015-10-29 21:25:53 +02005498 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5499 true);
Daniel Vetter6b698512015-11-28 11:05:39 +01005500 }
Ville Syrjäläd2d65402015-10-29 21:25:53 +02005501
Paulo Zanonie4916942013-09-20 16:21:19 -03005502 /* If we change the relative order between pipe/planes enabling, we need
5503 * to change the workaround. */
Maarten Lankhorst99d736a2015-06-01 12:50:09 +02005504 hsw_workaround_pipe = pipe_config->hsw_workaround_pipe;
5505 if (IS_HASWELL(dev) && hsw_workaround_pipe != INVALID_PIPE) {
5506 intel_wait_for_vblank(dev, hsw_workaround_pipe);
5507 intel_wait_for_vblank(dev, hsw_workaround_pipe);
5508 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005509}
5510
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02005511static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force)
Daniel Vetter3f8dce32013-05-08 10:36:30 +02005512{
5513 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01005514 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter3f8dce32013-05-08 10:36:30 +02005515 int pipe = crtc->pipe;
5516
5517 /* To avoid upsetting the power well on haswell only disable the pfit if
5518 * it's in use. The hw state code will make sure we get this right. */
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02005519 if (force || crtc->config->pch_pfit.enabled) {
Daniel Vetter3f8dce32013-05-08 10:36:30 +02005520 I915_WRITE(PF_CTL(pipe), 0);
5521 I915_WRITE(PF_WIN_POS(pipe), 0);
5522 I915_WRITE(PF_WIN_SZ(pipe), 0);
5523 }
5524}
5525
Maarten Lankhorst4a806552016-08-09 17:04:01 +02005526static void ironlake_crtc_disable(struct intel_crtc_state *old_crtc_state,
5527 struct drm_atomic_state *old_state)
Jesse Barnes6be4a602010-09-10 10:26:01 -07005528{
Maarten Lankhorst4a806552016-08-09 17:04:01 +02005529 struct drm_crtc *crtc = old_crtc_state->base.crtc;
Jesse Barnes6be4a602010-09-10 10:26:01 -07005530 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01005531 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005532 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5533 int pipe = intel_crtc->pipe;
Jesse Barnes6be4a602010-09-10 10:26:01 -07005534
Ville Syrjäläb2c05932016-04-01 21:53:17 +03005535 /*
5536 * Sometimes spurious CPU pipe underruns happen when the
5537 * pipe is already disabled, but FDI RX/TX is still enabled.
5538 * Happens at least with VGA+HDMI cloning. Suppress them.
5539 */
5540 if (intel_crtc->config->has_pch_encoder) {
5541 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
Ville Syrjälä37ca8d42015-10-30 19:20:27 +02005542 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
Ville Syrjäläb2c05932016-04-01 21:53:17 +03005543 }
Ville Syrjälä37ca8d42015-10-30 19:20:27 +02005544
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02005545 intel_encoders_disable(crtc, old_crtc_state, old_state);
Daniel Vetterea9d7582012-07-10 10:42:52 +02005546
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005547 drm_crtc_vblank_off(crtc);
5548 assert_vblank_disabled(crtc);
5549
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03005550 intel_disable_pipe(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005551
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02005552 ironlake_pfit_disable(intel_crtc, false);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005553
Ville Syrjäläb2c05932016-04-01 21:53:17 +03005554 if (intel_crtc->config->has_pch_encoder)
Ville Syrjälä5a74f702015-05-05 17:17:38 +03005555 ironlake_fdi_disable(crtc);
5556
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02005557 intel_encoders_post_disable(crtc, old_crtc_state, old_state);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005558
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005559 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterd925c592013-06-05 13:34:04 +02005560 ironlake_disable_pch_transcoder(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005561
Daniel Vetterd925c592013-06-05 13:34:04 +02005562 if (HAS_PCH_CPT(dev)) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02005563 i915_reg_t reg;
5564 u32 temp;
5565
Daniel Vetterd925c592013-06-05 13:34:04 +02005566 /* disable TRANS_DP_CTL */
5567 reg = TRANS_DP_CTL(pipe);
5568 temp = I915_READ(reg);
5569 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
5570 TRANS_DP_PORT_SEL_MASK);
5571 temp |= TRANS_DP_PORT_SEL_NONE;
5572 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005573
Daniel Vetterd925c592013-06-05 13:34:04 +02005574 /* disable DPLL_SEL */
5575 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02005576 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
Daniel Vetterd925c592013-06-05 13:34:04 +02005577 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005578 }
Daniel Vetterd925c592013-06-05 13:34:04 +02005579
Daniel Vetterd925c592013-06-05 13:34:04 +02005580 ironlake_fdi_pll_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005581 }
Ville Syrjälä81b088c2015-10-30 19:21:31 +02005582
Ville Syrjäläb2c05932016-04-01 21:53:17 +03005583 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä81b088c2015-10-30 19:21:31 +02005584 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005585}
5586
Maarten Lankhorst4a806552016-08-09 17:04:01 +02005587static void haswell_crtc_disable(struct intel_crtc_state *old_crtc_state,
5588 struct drm_atomic_state *old_state)
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005589{
Maarten Lankhorst4a806552016-08-09 17:04:01 +02005590 struct drm_crtc *crtc = old_crtc_state->base.crtc;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005591 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01005592 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005593 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005594 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005595
Ville Syrjäläd2d65402015-10-29 21:25:53 +02005596 if (intel_crtc->config->has_pch_encoder)
5597 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5598 false);
5599
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02005600 intel_encoders_disable(crtc, old_crtc_state, old_state);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005601
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005602 drm_crtc_vblank_off(crtc);
5603 assert_vblank_disabled(crtc);
5604
Jani Nikula4d1de972016-03-18 17:05:42 +02005605 /* XXX: Do the pipe assertions at the right place for BXT DSI. */
Ville Syrjäläd7edc4e2016-06-22 21:57:07 +03005606 if (!transcoder_is_dsi(cpu_transcoder))
Jani Nikula4d1de972016-03-18 17:05:42 +02005607 intel_disable_pipe(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005608
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005609 if (intel_crtc->config->dp_encoder_is_mst)
Ville Syrjäläa4bf2142014-08-18 21:27:34 +03005610 intel_ddi_set_vc_payload_alloc(crtc, false);
5611
Ville Syrjäläd7edc4e2016-06-22 21:57:07 +03005612 if (!transcoder_is_dsi(cpu_transcoder))
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305613 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005614
Rodrigo Vivi1c132b42015-09-02 15:19:26 -07005615 if (INTEL_INFO(dev)->gen >= 9)
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02005616 skylake_scaler_disable(intel_crtc);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005617 else
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02005618 ironlake_pfit_disable(intel_crtc, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005619
Ville Syrjäläd7edc4e2016-06-22 21:57:07 +03005620 if (!transcoder_is_dsi(cpu_transcoder))
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305621 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005622
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02005623 intel_encoders_post_disable(crtc, old_crtc_state, old_state);
Ville Syrjälä81b088c2015-10-30 19:21:31 +02005624
Maarten Lankhorstb7076542016-08-23 16:18:08 +02005625 if (old_crtc_state->has_pch_encoder)
Ville Syrjälä81b088c2015-10-30 19:21:31 +02005626 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5627 true);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005628}
5629
Jesse Barnes2dd24552013-04-25 12:55:01 -07005630static void i9xx_pfit_enable(struct intel_crtc *crtc)
5631{
5632 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01005633 struct drm_i915_private *dev_priv = to_i915(dev);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005634 struct intel_crtc_state *pipe_config = crtc->config;
Jesse Barnes2dd24552013-04-25 12:55:01 -07005635
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02005636 if (!pipe_config->gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07005637 return;
5638
Daniel Vetterc0b03412013-05-28 12:05:54 +02005639 /*
5640 * The panel fitter should only be adjusted whilst the pipe is disabled,
5641 * according to register description and PRM.
5642 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07005643 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
5644 assert_pipe_disabled(dev_priv, crtc->pipe);
5645
Jesse Barnesb074cec2013-04-25 12:55:02 -07005646 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
5647 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02005648
5649 /* Border color in case we don't scale up to the full screen. Black by
5650 * default, change to something else for debugging. */
5651 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07005652}
5653
Dave Airlied05410f2014-06-05 13:22:59 +10005654static enum intel_display_power_domain port_to_power_domain(enum port port)
5655{
5656 switch (port) {
5657 case PORT_A:
Patrik Jakobsson6331a702015-11-09 16:48:21 +01005658 return POWER_DOMAIN_PORT_DDI_A_LANES;
Dave Airlied05410f2014-06-05 13:22:59 +10005659 case PORT_B:
Patrik Jakobsson6331a702015-11-09 16:48:21 +01005660 return POWER_DOMAIN_PORT_DDI_B_LANES;
Dave Airlied05410f2014-06-05 13:22:59 +10005661 case PORT_C:
Patrik Jakobsson6331a702015-11-09 16:48:21 +01005662 return POWER_DOMAIN_PORT_DDI_C_LANES;
Dave Airlied05410f2014-06-05 13:22:59 +10005663 case PORT_D:
Patrik Jakobsson6331a702015-11-09 16:48:21 +01005664 return POWER_DOMAIN_PORT_DDI_D_LANES;
Xiong Zhangd8e19f92015-08-13 18:00:12 +08005665 case PORT_E:
Patrik Jakobsson6331a702015-11-09 16:48:21 +01005666 return POWER_DOMAIN_PORT_DDI_E_LANES;
Dave Airlied05410f2014-06-05 13:22:59 +10005667 default:
Imre Deakb9fec162015-11-18 15:57:25 +02005668 MISSING_CASE(port);
Dave Airlied05410f2014-06-05 13:22:59 +10005669 return POWER_DOMAIN_PORT_OTHER;
5670 }
5671}
5672
Ville Syrjälä25f78f52015-11-16 15:01:04 +01005673static enum intel_display_power_domain port_to_aux_power_domain(enum port port)
5674{
5675 switch (port) {
5676 case PORT_A:
5677 return POWER_DOMAIN_AUX_A;
5678 case PORT_B:
5679 return POWER_DOMAIN_AUX_B;
5680 case PORT_C:
5681 return POWER_DOMAIN_AUX_C;
5682 case PORT_D:
5683 return POWER_DOMAIN_AUX_D;
5684 case PORT_E:
5685 /* FIXME: Check VBT for actual wiring of PORT E */
5686 return POWER_DOMAIN_AUX_D;
5687 default:
Imre Deakb9fec162015-11-18 15:57:25 +02005688 MISSING_CASE(port);
Ville Syrjälä25f78f52015-11-16 15:01:04 +01005689 return POWER_DOMAIN_AUX_A;
5690 }
5691}
5692
Imre Deak319be8a2014-03-04 19:22:57 +02005693enum intel_display_power_domain
5694intel_display_port_power_domain(struct intel_encoder *intel_encoder)
Imre Deak77d22dc2014-03-05 16:20:52 +02005695{
Imre Deak319be8a2014-03-04 19:22:57 +02005696 struct drm_device *dev = intel_encoder->base.dev;
5697 struct intel_digital_port *intel_dig_port;
5698
5699 switch (intel_encoder->type) {
5700 case INTEL_OUTPUT_UNKNOWN:
5701 /* Only DDI platforms should ever use this output type */
5702 WARN_ON_ONCE(!HAS_DDI(dev));
Ville Syrjäläcca05022016-06-22 21:57:06 +03005703 case INTEL_OUTPUT_DP:
Imre Deak319be8a2014-03-04 19:22:57 +02005704 case INTEL_OUTPUT_HDMI:
5705 case INTEL_OUTPUT_EDP:
5706 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
Dave Airlied05410f2014-06-05 13:22:59 +10005707 return port_to_power_domain(intel_dig_port->port);
Dave Airlie0e32b392014-05-02 14:02:48 +10005708 case INTEL_OUTPUT_DP_MST:
5709 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5710 return port_to_power_domain(intel_dig_port->port);
Imre Deak319be8a2014-03-04 19:22:57 +02005711 case INTEL_OUTPUT_ANALOG:
5712 return POWER_DOMAIN_PORT_CRT;
5713 case INTEL_OUTPUT_DSI:
5714 return POWER_DOMAIN_PORT_DSI;
5715 default:
5716 return POWER_DOMAIN_PORT_OTHER;
5717 }
5718}
5719
Ville Syrjälä25f78f52015-11-16 15:01:04 +01005720enum intel_display_power_domain
5721intel_display_port_aux_power_domain(struct intel_encoder *intel_encoder)
5722{
5723 struct drm_device *dev = intel_encoder->base.dev;
5724 struct intel_digital_port *intel_dig_port;
5725
5726 switch (intel_encoder->type) {
5727 case INTEL_OUTPUT_UNKNOWN:
Imre Deak651174a2015-11-18 15:57:24 +02005728 case INTEL_OUTPUT_HDMI:
5729 /*
5730 * Only DDI platforms should ever use these output types.
5731 * We can get here after the HDMI detect code has already set
5732 * the type of the shared encoder. Since we can't be sure
5733 * what's the status of the given connectors, play safe and
5734 * run the DP detection too.
5735 */
Ville Syrjälä25f78f52015-11-16 15:01:04 +01005736 WARN_ON_ONCE(!HAS_DDI(dev));
Ville Syrjäläcca05022016-06-22 21:57:06 +03005737 case INTEL_OUTPUT_DP:
Ville Syrjälä25f78f52015-11-16 15:01:04 +01005738 case INTEL_OUTPUT_EDP:
5739 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
5740 return port_to_aux_power_domain(intel_dig_port->port);
5741 case INTEL_OUTPUT_DP_MST:
5742 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5743 return port_to_aux_power_domain(intel_dig_port->port);
5744 default:
Imre Deakb9fec162015-11-18 15:57:25 +02005745 MISSING_CASE(intel_encoder->type);
Ville Syrjälä25f78f52015-11-16 15:01:04 +01005746 return POWER_DOMAIN_AUX_A;
5747 }
5748}
5749
Maarten Lankhorst74bff5f2016-02-10 13:49:36 +01005750static unsigned long get_crtc_power_domains(struct drm_crtc *crtc,
5751 struct intel_crtc_state *crtc_state)
Imre Deak319be8a2014-03-04 19:22:57 +02005752{
5753 struct drm_device *dev = crtc->dev;
Maarten Lankhorst74bff5f2016-02-10 13:49:36 +01005754 struct drm_encoder *encoder;
Imre Deak319be8a2014-03-04 19:22:57 +02005755 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5756 enum pipe pipe = intel_crtc->pipe;
Imre Deak77d22dc2014-03-05 16:20:52 +02005757 unsigned long mask;
Maarten Lankhorst74bff5f2016-02-10 13:49:36 +01005758 enum transcoder transcoder = crtc_state->cpu_transcoder;
Imre Deak77d22dc2014-03-05 16:20:52 +02005759
Maarten Lankhorst74bff5f2016-02-10 13:49:36 +01005760 if (!crtc_state->base.active)
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005761 return 0;
5762
Imre Deak77d22dc2014-03-05 16:20:52 +02005763 mask = BIT(POWER_DOMAIN_PIPE(pipe));
5764 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
Maarten Lankhorst74bff5f2016-02-10 13:49:36 +01005765 if (crtc_state->pch_pfit.enabled ||
5766 crtc_state->pch_pfit.force_thru)
Imre Deak77d22dc2014-03-05 16:20:52 +02005767 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
5768
Maarten Lankhorst74bff5f2016-02-10 13:49:36 +01005769 drm_for_each_encoder_mask(encoder, dev, crtc_state->base.encoder_mask) {
5770 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
5771
Imre Deak319be8a2014-03-04 19:22:57 +02005772 mask |= BIT(intel_display_port_power_domain(intel_encoder));
Maarten Lankhorst74bff5f2016-02-10 13:49:36 +01005773 }
Imre Deak319be8a2014-03-04 19:22:57 +02005774
Maarten Lankhorst15e7ec22016-03-14 09:27:54 +01005775 if (crtc_state->shared_dpll)
5776 mask |= BIT(POWER_DOMAIN_PLLS);
5777
Imre Deak77d22dc2014-03-05 16:20:52 +02005778 return mask;
5779}
5780
Maarten Lankhorst74bff5f2016-02-10 13:49:36 +01005781static unsigned long
5782modeset_get_crtc_power_domains(struct drm_crtc *crtc,
5783 struct intel_crtc_state *crtc_state)
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005784{
Chris Wilsonfac5e232016-07-04 11:34:36 +01005785 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005786 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5787 enum intel_display_power_domain domain;
Daniel Vetter5a21b662016-05-24 17:13:53 +02005788 unsigned long domains, new_domains, old_domains;
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005789
5790 old_domains = intel_crtc->enabled_power_domains;
Maarten Lankhorst74bff5f2016-02-10 13:49:36 +01005791 intel_crtc->enabled_power_domains = new_domains =
5792 get_crtc_power_domains(crtc, crtc_state);
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005793
Daniel Vetter5a21b662016-05-24 17:13:53 +02005794 domains = new_domains & ~old_domains;
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005795
5796 for_each_power_domain(domain, domains)
5797 intel_display_power_get(dev_priv, domain);
5798
Daniel Vetter5a21b662016-05-24 17:13:53 +02005799 return old_domains & ~new_domains;
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005800}
5801
5802static void modeset_put_power_domains(struct drm_i915_private *dev_priv,
5803 unsigned long domains)
5804{
5805 enum intel_display_power_domain domain;
5806
5807 for_each_power_domain(domain, domains)
5808 intel_display_power_put(dev_priv, domain);
5809}
5810
Mika Kaholaadafdc62015-08-18 14:36:59 +03005811static int intel_compute_max_dotclk(struct drm_i915_private *dev_priv)
5812{
5813 int max_cdclk_freq = dev_priv->max_cdclk_freq;
5814
5815 if (INTEL_INFO(dev_priv)->gen >= 9 ||
5816 IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
5817 return max_cdclk_freq;
5818 else if (IS_CHERRYVIEW(dev_priv))
5819 return max_cdclk_freq*95/100;
5820 else if (INTEL_INFO(dev_priv)->gen < 4)
5821 return 2*max_cdclk_freq*90/100;
5822 else
5823 return max_cdclk_freq*90/100;
5824}
5825
Ville Syrjäläb2045352016-05-13 23:41:27 +03005826static int skl_calc_cdclk(int max_pixclk, int vco);
5827
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005828static void intel_update_max_cdclk(struct drm_device *dev)
5829{
Chris Wilsonfac5e232016-07-04 11:34:36 +01005830 struct drm_i915_private *dev_priv = to_i915(dev);
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005831
Rodrigo Vivief11bdb2015-10-28 04:16:45 -07005832 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005833 u32 limit = I915_READ(SKL_DFSM) & SKL_DFSM_CDCLK_LIMIT_MASK;
Ville Syrjäläb2045352016-05-13 23:41:27 +03005834 int max_cdclk, vco;
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005835
Ville Syrjäläb2045352016-05-13 23:41:27 +03005836 vco = dev_priv->skl_preferred_vco_freq;
Ville Syrjälä63911d72016-05-13 23:41:32 +03005837 WARN_ON(vco != 8100000 && vco != 8640000);
Ville Syrjäläb2045352016-05-13 23:41:27 +03005838
5839 /*
5840 * Use the lower (vco 8640) cdclk values as a
5841 * first guess. skl_calc_cdclk() will correct it
5842 * if the preferred vco is 8100 instead.
5843 */
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005844 if (limit == SKL_DFSM_CDCLK_LIMIT_675)
Ville Syrjälä487ed2e2016-05-13 23:41:31 +03005845 max_cdclk = 617143;
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005846 else if (limit == SKL_DFSM_CDCLK_LIMIT_540)
Ville Syrjäläb2045352016-05-13 23:41:27 +03005847 max_cdclk = 540000;
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005848 else if (limit == SKL_DFSM_CDCLK_LIMIT_450)
Ville Syrjäläb2045352016-05-13 23:41:27 +03005849 max_cdclk = 432000;
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005850 else
Ville Syrjälä487ed2e2016-05-13 23:41:31 +03005851 max_cdclk = 308571;
Ville Syrjäläb2045352016-05-13 23:41:27 +03005852
5853 dev_priv->max_cdclk_freq = skl_calc_cdclk(max_cdclk, vco);
Matt Roper281c1142016-04-05 14:37:19 -07005854 } else if (IS_BROXTON(dev)) {
5855 dev_priv->max_cdclk_freq = 624000;
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005856 } else if (IS_BROADWELL(dev)) {
5857 /*
5858 * FIXME with extra cooling we can allow
5859 * 540 MHz for ULX and 675 Mhz for ULT.
5860 * How can we know if extra cooling is
5861 * available? PCI ID, VTB, something else?
5862 */
5863 if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
5864 dev_priv->max_cdclk_freq = 450000;
5865 else if (IS_BDW_ULX(dev))
5866 dev_priv->max_cdclk_freq = 450000;
5867 else if (IS_BDW_ULT(dev))
5868 dev_priv->max_cdclk_freq = 540000;
5869 else
5870 dev_priv->max_cdclk_freq = 675000;
Mika Kahola0904dea2015-06-12 10:11:32 +03005871 } else if (IS_CHERRYVIEW(dev)) {
5872 dev_priv->max_cdclk_freq = 320000;
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005873 } else if (IS_VALLEYVIEW(dev)) {
5874 dev_priv->max_cdclk_freq = 400000;
5875 } else {
5876 /* otherwise assume cdclk is fixed */
5877 dev_priv->max_cdclk_freq = dev_priv->cdclk_freq;
5878 }
5879
Mika Kaholaadafdc62015-08-18 14:36:59 +03005880 dev_priv->max_dotclk_freq = intel_compute_max_dotclk(dev_priv);
5881
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005882 DRM_DEBUG_DRIVER("Max CD clock rate: %d kHz\n",
5883 dev_priv->max_cdclk_freq);
Mika Kaholaadafdc62015-08-18 14:36:59 +03005884
5885 DRM_DEBUG_DRIVER("Max dotclock rate: %d kHz\n",
5886 dev_priv->max_dotclk_freq);
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005887}
5888
5889static void intel_update_cdclk(struct drm_device *dev)
5890{
Chris Wilsonfac5e232016-07-04 11:34:36 +01005891 struct drm_i915_private *dev_priv = to_i915(dev);
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005892
5893 dev_priv->cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
Ville Syrjälä2f2a1212016-05-13 23:41:25 +03005894
Ville Syrjälä83d7c812016-05-13 23:41:35 +03005895 if (INTEL_GEN(dev_priv) >= 9)
Ville Syrjälä709e05c2016-05-13 23:41:33 +03005896 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz, VCO: %d kHz, ref: %d kHz\n",
5897 dev_priv->cdclk_freq, dev_priv->cdclk_pll.vco,
5898 dev_priv->cdclk_pll.ref);
Ville Syrjälä2f2a1212016-05-13 23:41:25 +03005899 else
5900 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
5901 dev_priv->cdclk_freq);
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005902
5903 /*
Ville Syrjäläb5d99ff2016-04-26 19:46:34 +03005904 * 9:0 CMBUS [sic] CDCLK frequency (cdfreq):
5905 * Programmng [sic] note: bit[9:2] should be programmed to the number
5906 * of cdclk that generates 4MHz reference clock freq which is used to
5907 * generate GMBus clock. This will vary with the cdclk freq.
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005908 */
Ville Syrjäläb5d99ff2016-04-26 19:46:34 +03005909 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005910 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->cdclk_freq, 1000));
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005911}
5912
Ville Syrjälä92891e42016-05-11 22:44:45 +03005913/* convert from kHz to .1 fixpoint MHz with -1MHz offset */
5914static int skl_cdclk_decimal(int cdclk)
5915{
5916 return DIV_ROUND_CLOSEST(cdclk - 1000, 500);
5917}
5918
Ville Syrjälä5f199df2016-05-13 23:41:38 +03005919static int bxt_de_pll_vco(struct drm_i915_private *dev_priv, int cdclk)
5920{
5921 int ratio;
5922
5923 if (cdclk == dev_priv->cdclk_pll.ref)
5924 return 0;
5925
5926 switch (cdclk) {
5927 default:
5928 MISSING_CASE(cdclk);
5929 case 144000:
5930 case 288000:
5931 case 384000:
5932 case 576000:
5933 ratio = 60;
5934 break;
5935 case 624000:
5936 ratio = 65;
5937 break;
5938 }
5939
5940 return dev_priv->cdclk_pll.ref * ratio;
5941}
5942
Ville Syrjälä2b730012016-05-13 23:41:34 +03005943static void bxt_de_pll_disable(struct drm_i915_private *dev_priv)
5944{
5945 I915_WRITE(BXT_DE_PLL_ENABLE, 0);
5946
5947 /* Timeout 200us */
Chris Wilson95cac282016-06-30 15:33:03 +01005948 if (intel_wait_for_register(dev_priv,
5949 BXT_DE_PLL_ENABLE, BXT_DE_PLL_LOCK, 0,
5950 1))
Ville Syrjälä2b730012016-05-13 23:41:34 +03005951 DRM_ERROR("timeout waiting for DE PLL unlock\n");
Ville Syrjälä83d7c812016-05-13 23:41:35 +03005952
5953 dev_priv->cdclk_pll.vco = 0;
Ville Syrjälä2b730012016-05-13 23:41:34 +03005954}
5955
Ville Syrjälä5f199df2016-05-13 23:41:38 +03005956static void bxt_de_pll_enable(struct drm_i915_private *dev_priv, int vco)
Ville Syrjälä2b730012016-05-13 23:41:34 +03005957{
Ville Syrjälä5f199df2016-05-13 23:41:38 +03005958 int ratio = DIV_ROUND_CLOSEST(vco, dev_priv->cdclk_pll.ref);
Ville Syrjälä2b730012016-05-13 23:41:34 +03005959 u32 val;
5960
5961 val = I915_READ(BXT_DE_PLL_CTL);
5962 val &= ~BXT_DE_PLL_RATIO_MASK;
Ville Syrjälä5f199df2016-05-13 23:41:38 +03005963 val |= BXT_DE_PLL_RATIO(ratio);
Ville Syrjälä2b730012016-05-13 23:41:34 +03005964 I915_WRITE(BXT_DE_PLL_CTL, val);
5965
5966 I915_WRITE(BXT_DE_PLL_ENABLE, BXT_DE_PLL_PLL_ENABLE);
5967
5968 /* Timeout 200us */
Chris Wilsone084e1b2016-06-30 15:33:04 +01005969 if (intel_wait_for_register(dev_priv,
5970 BXT_DE_PLL_ENABLE,
5971 BXT_DE_PLL_LOCK,
5972 BXT_DE_PLL_LOCK,
5973 1))
Ville Syrjälä2b730012016-05-13 23:41:34 +03005974 DRM_ERROR("timeout waiting for DE PLL lock\n");
Ville Syrjälä83d7c812016-05-13 23:41:35 +03005975
Ville Syrjälä5f199df2016-05-13 23:41:38 +03005976 dev_priv->cdclk_pll.vco = vco;
Ville Syrjälä2b730012016-05-13 23:41:34 +03005977}
5978
Imre Deak324513c2016-06-13 16:44:36 +03005979static void bxt_set_cdclk(struct drm_i915_private *dev_priv, int cdclk)
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305980{
Ville Syrjälä5f199df2016-05-13 23:41:38 +03005981 u32 val, divider;
5982 int vco, ret;
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305983
Ville Syrjälä5f199df2016-05-13 23:41:38 +03005984 vco = bxt_de_pll_vco(dev_priv, cdclk);
5985
5986 DRM_DEBUG_DRIVER("Changing CDCLK to %d kHz (VCO %d kHz)\n", cdclk, vco);
5987
5988 /* cdclk = vco / 2 / div{1,1.5,2,4} */
5989 switch (DIV_ROUND_CLOSEST(vco, cdclk)) {
5990 case 8:
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305991 divider = BXT_CDCLK_CD2X_DIV_SEL_4;
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305992 break;
Ville Syrjälä5f199df2016-05-13 23:41:38 +03005993 case 4:
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305994 divider = BXT_CDCLK_CD2X_DIV_SEL_2;
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305995 break;
Ville Syrjälä5f199df2016-05-13 23:41:38 +03005996 case 3:
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305997 divider = BXT_CDCLK_CD2X_DIV_SEL_1_5;
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305998 break;
Ville Syrjälä5f199df2016-05-13 23:41:38 +03005999 case 2:
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306000 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306001 break;
6002 default:
Ville Syrjälä5f199df2016-05-13 23:41:38 +03006003 WARN_ON(cdclk != dev_priv->cdclk_pll.ref);
6004 WARN_ON(vco != 0);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306005
Ville Syrjälä5f199df2016-05-13 23:41:38 +03006006 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
6007 break;
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306008 }
6009
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306010 /* Inform power controller of upcoming frequency change */
Ville Syrjälä5f199df2016-05-13 23:41:38 +03006011 mutex_lock(&dev_priv->rps.hw_lock);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306012 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
6013 0x80000000);
6014 mutex_unlock(&dev_priv->rps.hw_lock);
6015
6016 if (ret) {
6017 DRM_ERROR("PCode CDCLK freq change notify failed (err %d, freq %d)\n",
Ville Syrjälä9ef56152016-05-11 22:44:49 +03006018 ret, cdclk);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306019 return;
6020 }
6021
Ville Syrjälä5f199df2016-05-13 23:41:38 +03006022 if (dev_priv->cdclk_pll.vco != 0 &&
6023 dev_priv->cdclk_pll.vco != vco)
Ville Syrjälä2b730012016-05-13 23:41:34 +03006024 bxt_de_pll_disable(dev_priv);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306025
Ville Syrjälä5f199df2016-05-13 23:41:38 +03006026 if (dev_priv->cdclk_pll.vco != vco)
6027 bxt_de_pll_enable(dev_priv, vco);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306028
Ville Syrjälä5f199df2016-05-13 23:41:38 +03006029 val = divider | skl_cdclk_decimal(cdclk);
6030 /*
6031 * FIXME if only the cd2x divider needs changing, it could be done
6032 * without shutting off the pipe (if only one pipe is active).
6033 */
6034 val |= BXT_CDCLK_CD2X_PIPE_NONE;
6035 /*
6036 * Disable SSA Precharge when CD clock frequency < 500 MHz,
6037 * enable otherwise.
6038 */
6039 if (cdclk >= 500000)
6040 val |= BXT_CDCLK_SSA_PRECHARGE_ENABLE;
6041 I915_WRITE(CDCLK_CTL, val);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306042
6043 mutex_lock(&dev_priv->rps.hw_lock);
6044 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
Ville Syrjälä9ef56152016-05-11 22:44:49 +03006045 DIV_ROUND_UP(cdclk, 25000));
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306046 mutex_unlock(&dev_priv->rps.hw_lock);
6047
6048 if (ret) {
6049 DRM_ERROR("PCode CDCLK freq set failed, (err %d, freq %d)\n",
Ville Syrjälä9ef56152016-05-11 22:44:49 +03006050 ret, cdclk);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306051 return;
6052 }
6053
Chris Wilson91c8a322016-07-05 10:40:23 +01006054 intel_update_cdclk(&dev_priv->drm);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306055}
6056
Imre Deakd66a2192016-05-24 15:38:33 +03006057static void bxt_sanitize_cdclk(struct drm_i915_private *dev_priv)
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306058{
Imre Deakd66a2192016-05-24 15:38:33 +03006059 u32 cdctl, expected;
6060
Chris Wilson91c8a322016-07-05 10:40:23 +01006061 intel_update_cdclk(&dev_priv->drm);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306062
Imre Deakd66a2192016-05-24 15:38:33 +03006063 if (dev_priv->cdclk_pll.vco == 0 ||
6064 dev_priv->cdclk_freq == dev_priv->cdclk_pll.ref)
6065 goto sanitize;
6066
6067 /* DPLL okay; verify the cdclock
6068 *
6069 * Some BIOS versions leave an incorrect decimal frequency value and
6070 * set reserved MBZ bits in CDCLK_CTL at least during exiting from S4,
6071 * so sanitize this register.
6072 */
6073 cdctl = I915_READ(CDCLK_CTL);
6074 /*
6075 * Let's ignore the pipe field, since BIOS could have configured the
6076 * dividers both synching to an active pipe, or asynchronously
6077 * (PIPE_NONE).
6078 */
6079 cdctl &= ~BXT_CDCLK_CD2X_PIPE_NONE;
6080
6081 expected = (cdctl & BXT_CDCLK_CD2X_DIV_SEL_MASK) |
6082 skl_cdclk_decimal(dev_priv->cdclk_freq);
6083 /*
6084 * Disable SSA Precharge when CD clock frequency < 500 MHz,
6085 * enable otherwise.
6086 */
6087 if (dev_priv->cdclk_freq >= 500000)
6088 expected |= BXT_CDCLK_SSA_PRECHARGE_ENABLE;
6089
6090 if (cdctl == expected)
6091 /* All well; nothing to sanitize */
6092 return;
6093
6094sanitize:
6095 DRM_DEBUG_KMS("Sanitizing cdclk programmed by pre-os\n");
6096
6097 /* force cdclk programming */
6098 dev_priv->cdclk_freq = 0;
6099
6100 /* force full PLL disable + enable */
6101 dev_priv->cdclk_pll.vco = -1;
6102}
6103
Imre Deak324513c2016-06-13 16:44:36 +03006104void bxt_init_cdclk(struct drm_i915_private *dev_priv)
Imre Deakd66a2192016-05-24 15:38:33 +03006105{
6106 bxt_sanitize_cdclk(dev_priv);
6107
6108 if (dev_priv->cdclk_freq != 0 && dev_priv->cdclk_pll.vco != 0)
Ville Syrjälä089c6fd2016-05-13 23:41:36 +03006109 return;
Imre Deakc2e001e2016-04-01 16:02:43 +03006110
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306111 /*
6112 * FIXME:
6113 * - The initial CDCLK needs to be read from VBT.
6114 * Need to make this change after VBT has changes for BXT.
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306115 */
Imre Deak324513c2016-06-13 16:44:36 +03006116 bxt_set_cdclk(dev_priv, bxt_calc_cdclk(0));
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306117}
6118
Imre Deak324513c2016-06-13 16:44:36 +03006119void bxt_uninit_cdclk(struct drm_i915_private *dev_priv)
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306120{
Imre Deak324513c2016-06-13 16:44:36 +03006121 bxt_set_cdclk(dev_priv, dev_priv->cdclk_pll.ref);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306122}
6123
Ville Syrjäläa8ca4932016-05-13 23:41:23 +03006124static int skl_calc_cdclk(int max_pixclk, int vco)
6125{
Ville Syrjälä63911d72016-05-13 23:41:32 +03006126 if (vco == 8640000) {
Ville Syrjäläa8ca4932016-05-13 23:41:23 +03006127 if (max_pixclk > 540000)
Ville Syrjälä487ed2e2016-05-13 23:41:31 +03006128 return 617143;
Ville Syrjäläa8ca4932016-05-13 23:41:23 +03006129 else if (max_pixclk > 432000)
6130 return 540000;
Ville Syrjälä487ed2e2016-05-13 23:41:31 +03006131 else if (max_pixclk > 308571)
Ville Syrjäläa8ca4932016-05-13 23:41:23 +03006132 return 432000;
6133 else
Ville Syrjälä487ed2e2016-05-13 23:41:31 +03006134 return 308571;
Ville Syrjäläa8ca4932016-05-13 23:41:23 +03006135 } else {
Ville Syrjäläa8ca4932016-05-13 23:41:23 +03006136 if (max_pixclk > 540000)
6137 return 675000;
6138 else if (max_pixclk > 450000)
6139 return 540000;
6140 else if (max_pixclk > 337500)
6141 return 450000;
6142 else
6143 return 337500;
6144 }
6145}
6146
Ville Syrjäläea617912016-05-13 23:41:24 +03006147static void
6148skl_dpll0_update(struct drm_i915_private *dev_priv)
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006149{
Ville Syrjäläea617912016-05-13 23:41:24 +03006150 u32 val;
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006151
Ville Syrjälä709e05c2016-05-13 23:41:33 +03006152 dev_priv->cdclk_pll.ref = 24000;
Imre Deak1c3f7702016-05-24 15:38:32 +03006153 dev_priv->cdclk_pll.vco = 0;
Ville Syrjälä709e05c2016-05-13 23:41:33 +03006154
Ville Syrjäläea617912016-05-13 23:41:24 +03006155 val = I915_READ(LCPLL1_CTL);
Imre Deak1c3f7702016-05-24 15:38:32 +03006156 if ((val & LCPLL_PLL_ENABLE) == 0)
Ville Syrjäläea617912016-05-13 23:41:24 +03006157 return;
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006158
Imre Deak1c3f7702016-05-24 15:38:32 +03006159 if (WARN_ON((val & LCPLL_PLL_LOCK) == 0))
6160 return;
Ville Syrjälä9f7eb312016-05-13 23:41:29 +03006161
Ville Syrjäläea617912016-05-13 23:41:24 +03006162 val = I915_READ(DPLL_CTRL1);
6163
Imre Deak1c3f7702016-05-24 15:38:32 +03006164 if (WARN_ON((val & (DPLL_CTRL1_HDMI_MODE(SKL_DPLL0) |
6165 DPLL_CTRL1_SSC(SKL_DPLL0) |
6166 DPLL_CTRL1_OVERRIDE(SKL_DPLL0))) !=
6167 DPLL_CTRL1_OVERRIDE(SKL_DPLL0)))
6168 return;
Ville Syrjälä9f7eb312016-05-13 23:41:29 +03006169
Ville Syrjäläea617912016-05-13 23:41:24 +03006170 switch (val & DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0)) {
6171 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810, SKL_DPLL0):
6172 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1350, SKL_DPLL0):
6173 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1620, SKL_DPLL0):
6174 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_2700, SKL_DPLL0):
Ville Syrjälä63911d72016-05-13 23:41:32 +03006175 dev_priv->cdclk_pll.vco = 8100000;
Ville Syrjäläea617912016-05-13 23:41:24 +03006176 break;
6177 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080, SKL_DPLL0):
6178 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_2160, SKL_DPLL0):
Ville Syrjälä63911d72016-05-13 23:41:32 +03006179 dev_priv->cdclk_pll.vco = 8640000;
Ville Syrjäläea617912016-05-13 23:41:24 +03006180 break;
6181 default:
6182 MISSING_CASE(val & DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0));
Ville Syrjäläea617912016-05-13 23:41:24 +03006183 break;
6184 }
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006185}
6186
Ville Syrjäläb2045352016-05-13 23:41:27 +03006187void skl_set_preferred_cdclk_vco(struct drm_i915_private *dev_priv, int vco)
6188{
6189 bool changed = dev_priv->skl_preferred_vco_freq != vco;
6190
6191 dev_priv->skl_preferred_vco_freq = vco;
6192
6193 if (changed)
Chris Wilson91c8a322016-07-05 10:40:23 +01006194 intel_update_max_cdclk(&dev_priv->drm);
Ville Syrjäläb2045352016-05-13 23:41:27 +03006195}
6196
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006197static void
Ville Syrjälä3861fc62016-05-11 22:44:50 +03006198skl_dpll0_enable(struct drm_i915_private *dev_priv, int vco)
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006199{
Ville Syrjäläa8ca4932016-05-13 23:41:23 +03006200 int min_cdclk = skl_calc_cdclk(0, vco);
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006201 u32 val;
6202
Ville Syrjälä63911d72016-05-13 23:41:32 +03006203 WARN_ON(vco != 8100000 && vco != 8640000);
Ville Syrjäläb2045352016-05-13 23:41:27 +03006204
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006205 /* select the minimum CDCLK before enabling DPLL 0 */
Ville Syrjälä9ef56152016-05-11 22:44:49 +03006206 val = CDCLK_FREQ_337_308 | skl_cdclk_decimal(min_cdclk);
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006207 I915_WRITE(CDCLK_CTL, val);
6208 POSTING_READ(CDCLK_CTL);
6209
6210 /*
6211 * We always enable DPLL0 with the lowest link rate possible, but still
6212 * taking into account the VCO required to operate the eDP panel at the
6213 * desired frequency. The usual DP link rates operate with a VCO of
6214 * 8100 while the eDP 1.4 alternate link rates need a VCO of 8640.
6215 * The modeset code is responsible for the selection of the exact link
6216 * rate later on, with the constraint of choosing a frequency that
Ville Syrjäläa8ca4932016-05-13 23:41:23 +03006217 * works with vco.
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006218 */
6219 val = I915_READ(DPLL_CTRL1);
6220
6221 val &= ~(DPLL_CTRL1_HDMI_MODE(SKL_DPLL0) | DPLL_CTRL1_SSC(SKL_DPLL0) |
6222 DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0));
6223 val |= DPLL_CTRL1_OVERRIDE(SKL_DPLL0);
Ville Syrjälä63911d72016-05-13 23:41:32 +03006224 if (vco == 8640000)
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006225 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080,
6226 SKL_DPLL0);
6227 else
6228 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810,
6229 SKL_DPLL0);
6230
6231 I915_WRITE(DPLL_CTRL1, val);
6232 POSTING_READ(DPLL_CTRL1);
6233
6234 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) | LCPLL_PLL_ENABLE);
6235
Chris Wilsone24ca052016-06-30 15:33:05 +01006236 if (intel_wait_for_register(dev_priv,
6237 LCPLL1_CTL, LCPLL_PLL_LOCK, LCPLL_PLL_LOCK,
6238 5))
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006239 DRM_ERROR("DPLL0 not locked\n");
Ville Syrjälä1cd593e2016-05-13 23:41:26 +03006240
Ville Syrjälä63911d72016-05-13 23:41:32 +03006241 dev_priv->cdclk_pll.vco = vco;
Ville Syrjäläb2045352016-05-13 23:41:27 +03006242
6243 /* We'll want to keep using the current vco from now on. */
6244 skl_set_preferred_cdclk_vco(dev_priv, vco);
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006245}
6246
Ville Syrjälä430e05d2016-05-11 22:44:47 +03006247static void
6248skl_dpll0_disable(struct drm_i915_private *dev_priv)
6249{
6250 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) & ~LCPLL_PLL_ENABLE);
Chris Wilson8ad32a052016-06-30 15:33:06 +01006251 if (intel_wait_for_register(dev_priv,
6252 LCPLL1_CTL, LCPLL_PLL_LOCK, 0,
6253 1))
Ville Syrjälä430e05d2016-05-11 22:44:47 +03006254 DRM_ERROR("Couldn't disable DPLL0\n");
Ville Syrjälä1cd593e2016-05-13 23:41:26 +03006255
Ville Syrjälä63911d72016-05-13 23:41:32 +03006256 dev_priv->cdclk_pll.vco = 0;
Ville Syrjälä430e05d2016-05-11 22:44:47 +03006257}
6258
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006259static bool skl_cdclk_pcu_ready(struct drm_i915_private *dev_priv)
6260{
6261 int ret;
6262 u32 val;
6263
6264 /* inform PCU we want to change CDCLK */
6265 val = SKL_CDCLK_PREPARE_FOR_CHANGE;
6266 mutex_lock(&dev_priv->rps.hw_lock);
6267 ret = sandybridge_pcode_read(dev_priv, SKL_PCODE_CDCLK_CONTROL, &val);
6268 mutex_unlock(&dev_priv->rps.hw_lock);
6269
6270 return ret == 0 && (val & SKL_CDCLK_READY_FOR_CHANGE);
6271}
6272
6273static bool skl_cdclk_wait_for_pcu_ready(struct drm_i915_private *dev_priv)
6274{
Ville Syrjälä848496e2016-07-13 16:32:03 +03006275 return _wait_for(skl_cdclk_pcu_ready(dev_priv), 3000, 10) == 0;
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006276}
6277
Ville Syrjälä1cd593e2016-05-13 23:41:26 +03006278static void skl_set_cdclk(struct drm_i915_private *dev_priv, int cdclk, int vco)
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006279{
Chris Wilson91c8a322016-07-05 10:40:23 +01006280 struct drm_device *dev = &dev_priv->drm;
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006281 u32 freq_select, pcu_ack;
6282
Ville Syrjälä1cd593e2016-05-13 23:41:26 +03006283 WARN_ON((cdclk == 24000) != (vco == 0));
6284
Ville Syrjälä63911d72016-05-13 23:41:32 +03006285 DRM_DEBUG_DRIVER("Changing CDCLK to %d kHz (VCO %d kHz)\n", cdclk, vco);
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006286
6287 if (!skl_cdclk_wait_for_pcu_ready(dev_priv)) {
6288 DRM_ERROR("failed to inform PCU about cdclk change\n");
6289 return;
6290 }
6291
6292 /* set CDCLK_CTL */
Ville Syrjälä9ef56152016-05-11 22:44:49 +03006293 switch (cdclk) {
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006294 case 450000:
6295 case 432000:
6296 freq_select = CDCLK_FREQ_450_432;
6297 pcu_ack = 1;
6298 break;
6299 case 540000:
6300 freq_select = CDCLK_FREQ_540;
6301 pcu_ack = 2;
6302 break;
Ville Syrjälä487ed2e2016-05-13 23:41:31 +03006303 case 308571:
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006304 case 337500:
6305 default:
6306 freq_select = CDCLK_FREQ_337_308;
6307 pcu_ack = 0;
6308 break;
Ville Syrjälä487ed2e2016-05-13 23:41:31 +03006309 case 617143:
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006310 case 675000:
6311 freq_select = CDCLK_FREQ_675_617;
6312 pcu_ack = 3;
6313 break;
6314 }
6315
Ville Syrjälä63911d72016-05-13 23:41:32 +03006316 if (dev_priv->cdclk_pll.vco != 0 &&
6317 dev_priv->cdclk_pll.vco != vco)
Ville Syrjälä1cd593e2016-05-13 23:41:26 +03006318 skl_dpll0_disable(dev_priv);
6319
Ville Syrjälä63911d72016-05-13 23:41:32 +03006320 if (dev_priv->cdclk_pll.vco != vco)
Ville Syrjälä1cd593e2016-05-13 23:41:26 +03006321 skl_dpll0_enable(dev_priv, vco);
6322
Ville Syrjälä9ef56152016-05-11 22:44:49 +03006323 I915_WRITE(CDCLK_CTL, freq_select | skl_cdclk_decimal(cdclk));
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006324 POSTING_READ(CDCLK_CTL);
6325
6326 /* inform PCU of the change */
6327 mutex_lock(&dev_priv->rps.hw_lock);
6328 sandybridge_pcode_write(dev_priv, SKL_PCODE_CDCLK_CONTROL, pcu_ack);
6329 mutex_unlock(&dev_priv->rps.hw_lock);
Damien Lespiau560a7ae2015-06-04 18:21:33 +01006330
6331 intel_update_cdclk(dev);
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006332}
6333
Ville Syrjälä9f7eb312016-05-13 23:41:29 +03006334static void skl_sanitize_cdclk(struct drm_i915_private *dev_priv);
6335
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006336void skl_uninit_cdclk(struct drm_i915_private *dev_priv)
6337{
Ville Syrjälä709e05c2016-05-13 23:41:33 +03006338 skl_set_cdclk(dev_priv, dev_priv->cdclk_pll.ref, 0);
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006339}
6340
6341void skl_init_cdclk(struct drm_i915_private *dev_priv)
6342{
Ville Syrjälä9f7eb312016-05-13 23:41:29 +03006343 int cdclk, vco;
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006344
Ville Syrjälä9f7eb312016-05-13 23:41:29 +03006345 skl_sanitize_cdclk(dev_priv);
6346
Ville Syrjälä63911d72016-05-13 23:41:32 +03006347 if (dev_priv->cdclk_freq != 0 && dev_priv->cdclk_pll.vco != 0) {
Ville Syrjälä9f7eb312016-05-13 23:41:29 +03006348 /*
6349 * Use the current vco as our initial
6350 * guess as to what the preferred vco is.
6351 */
6352 if (dev_priv->skl_preferred_vco_freq == 0)
6353 skl_set_preferred_cdclk_vco(dev_priv,
Ville Syrjälä63911d72016-05-13 23:41:32 +03006354 dev_priv->cdclk_pll.vco);
Ville Syrjälä70c2c182016-05-13 23:41:30 +03006355 return;
Ville Syrjälä1cd593e2016-05-13 23:41:26 +03006356 }
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006357
Ville Syrjälä70c2c182016-05-13 23:41:30 +03006358 vco = dev_priv->skl_preferred_vco_freq;
6359 if (vco == 0)
Ville Syrjälä63911d72016-05-13 23:41:32 +03006360 vco = 8100000;
Ville Syrjälä70c2c182016-05-13 23:41:30 +03006361 cdclk = skl_calc_cdclk(0, vco);
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006362
Ville Syrjälä70c2c182016-05-13 23:41:30 +03006363 skl_set_cdclk(dev_priv, cdclk, vco);
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01006364}
6365
Ville Syrjälä9f7eb312016-05-13 23:41:29 +03006366static void skl_sanitize_cdclk(struct drm_i915_private *dev_priv)
Shobhit Kumarc73666f2015-10-20 18:13:12 +05306367{
Ville Syrjälä09492492016-05-13 23:41:28 +03006368 uint32_t cdctl, expected;
Shobhit Kumarc73666f2015-10-20 18:13:12 +05306369
Shobhit Kumarf1b391a2015-11-05 18:05:32 +05306370 /*
6371 * check if the pre-os intialized the display
6372 * There is SWF18 scratchpad register defined which is set by the
6373 * pre-os which can be used by the OS drivers to check the status
6374 */
6375 if ((I915_READ(SWF_ILK(0x18)) & 0x00FFFFFF) == 0)
6376 goto sanitize;
6377
Chris Wilson91c8a322016-07-05 10:40:23 +01006378 intel_update_cdclk(&dev_priv->drm);
Imre Deak1c3f7702016-05-24 15:38:32 +03006379 /* Is PLL enabled and locked ? */
6380 if (dev_priv->cdclk_pll.vco == 0 ||
6381 dev_priv->cdclk_freq == dev_priv->cdclk_pll.ref)
6382 goto sanitize;
Ville Syrjälä9f7eb312016-05-13 23:41:29 +03006383
Shobhit Kumarc73666f2015-10-20 18:13:12 +05306384 /* DPLL okay; verify the cdclock
6385 *
6386 * Noticed in some instances that the freq selection is correct but
6387 * decimal part is programmed wrong from BIOS where pre-os does not
6388 * enable display. Verify the same as well.
6389 */
Ville Syrjälä09492492016-05-13 23:41:28 +03006390 cdctl = I915_READ(CDCLK_CTL);
6391 expected = (cdctl & CDCLK_FREQ_SEL_MASK) |
6392 skl_cdclk_decimal(dev_priv->cdclk_freq);
6393 if (cdctl == expected)
Shobhit Kumarc73666f2015-10-20 18:13:12 +05306394 /* All well; nothing to sanitize */
Ville Syrjälä9f7eb312016-05-13 23:41:29 +03006395 return;
6396
Shobhit Kumarc73666f2015-10-20 18:13:12 +05306397sanitize:
Ville Syrjälä9f7eb312016-05-13 23:41:29 +03006398 DRM_DEBUG_KMS("Sanitizing cdclk programmed by pre-os\n");
Clint Taylorc89e39f2016-05-13 23:41:21 +03006399
Ville Syrjälä9f7eb312016-05-13 23:41:29 +03006400 /* force cdclk programming */
6401 dev_priv->cdclk_freq = 0;
6402 /* force full PLL disable + enable */
Ville Syrjälä63911d72016-05-13 23:41:32 +03006403 dev_priv->cdclk_pll.vco = -1;
Shobhit Kumarc73666f2015-10-20 18:13:12 +05306404}
6405
Jesse Barnes30a970c2013-11-04 13:48:12 -08006406/* Adjust CDclk dividers to allow high res or save power if possible */
6407static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
6408{
Chris Wilsonfac5e232016-07-04 11:34:36 +01006409 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08006410 u32 val, cmd;
6411
Vandana Kannan164dfd22014-11-24 13:37:41 +05306412 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
6413 != dev_priv->cdclk_freq);
Imre Deakd60c4472014-03-27 17:45:10 +02006414
Ville Syrjälädfcab172014-06-13 13:37:47 +03006415 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
Jesse Barnes30a970c2013-11-04 13:48:12 -08006416 cmd = 2;
Ville Syrjälädfcab172014-06-13 13:37:47 +03006417 else if (cdclk == 266667)
Jesse Barnes30a970c2013-11-04 13:48:12 -08006418 cmd = 1;
6419 else
6420 cmd = 0;
6421
6422 mutex_lock(&dev_priv->rps.hw_lock);
6423 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
6424 val &= ~DSPFREQGUAR_MASK;
6425 val |= (cmd << DSPFREQGUAR_SHIFT);
6426 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
6427 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
6428 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
6429 50)) {
6430 DRM_ERROR("timed out waiting for CDclk change\n");
6431 }
6432 mutex_unlock(&dev_priv->rps.hw_lock);
6433
Ville Syrjälä54433e92015-05-26 20:42:31 +03006434 mutex_lock(&dev_priv->sb_lock);
6435
Ville Syrjälädfcab172014-06-13 13:37:47 +03006436 if (cdclk == 400000) {
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03006437 u32 divider;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006438
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03006439 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006440
Jesse Barnes30a970c2013-11-04 13:48:12 -08006441 /* adjust cdclk divider */
6442 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
Vandana Kannan87d5d252015-09-24 23:29:17 +03006443 val &= ~CCK_FREQUENCY_VALUES;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006444 val |= divider;
6445 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
Ville Syrjäläa877e802014-06-13 13:37:52 +03006446
6447 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
Vandana Kannan87d5d252015-09-24 23:29:17 +03006448 CCK_FREQUENCY_STATUS) == (divider << CCK_FREQUENCY_STATUS_SHIFT),
Ville Syrjäläa877e802014-06-13 13:37:52 +03006449 50))
6450 DRM_ERROR("timed out waiting for CDclk change\n");
Jesse Barnes30a970c2013-11-04 13:48:12 -08006451 }
6452
Jesse Barnes30a970c2013-11-04 13:48:12 -08006453 /* adjust self-refresh exit latency value */
6454 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
6455 val &= ~0x7f;
6456
6457 /*
6458 * For high bandwidth configs, we set a higher latency in the bunit
6459 * so that the core display fetch happens in time to avoid underruns.
6460 */
Ville Syrjälädfcab172014-06-13 13:37:47 +03006461 if (cdclk == 400000)
Jesse Barnes30a970c2013-11-04 13:48:12 -08006462 val |= 4500 / 250; /* 4.5 usec */
6463 else
6464 val |= 3000 / 250; /* 3.0 usec */
6465 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
Ville Syrjälä54433e92015-05-26 20:42:31 +03006466
Ville Syrjäläa5805162015-05-26 20:42:30 +03006467 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08006468
Ville Syrjäläb6283052015-06-03 15:45:07 +03006469 intel_update_cdclk(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08006470}
6471
Ville Syrjälä383c5a62014-06-28 02:03:57 +03006472static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
6473{
Chris Wilsonfac5e232016-07-04 11:34:36 +01006474 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03006475 u32 val, cmd;
6476
Vandana Kannan164dfd22014-11-24 13:37:41 +05306477 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
6478 != dev_priv->cdclk_freq);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03006479
6480 switch (cdclk) {
Ville Syrjälä383c5a62014-06-28 02:03:57 +03006481 case 333333:
6482 case 320000:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03006483 case 266667:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03006484 case 200000:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03006485 break;
6486 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01006487 MISSING_CASE(cdclk);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03006488 return;
6489 }
6490
Ville Syrjälä9d0d3fd2015-03-02 20:07:17 +02006491 /*
6492 * Specs are full of misinformation, but testing on actual
6493 * hardware has shown that we just need to write the desired
6494 * CCK divider into the Punit register.
6495 */
6496 cmd = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
6497
Ville Syrjälä383c5a62014-06-28 02:03:57 +03006498 mutex_lock(&dev_priv->rps.hw_lock);
6499 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
6500 val &= ~DSPFREQGUAR_MASK_CHV;
6501 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
6502 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
6503 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
6504 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
6505 50)) {
6506 DRM_ERROR("timed out waiting for CDclk change\n");
6507 }
6508 mutex_unlock(&dev_priv->rps.hw_lock);
6509
Ville Syrjäläb6283052015-06-03 15:45:07 +03006510 intel_update_cdclk(dev);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03006511}
6512
Jesse Barnes30a970c2013-11-04 13:48:12 -08006513static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
6514 int max_pixclk)
6515{
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03006516 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
Ville Syrjälä6cca3192015-03-02 20:07:16 +02006517 int limit = IS_CHERRYVIEW(dev_priv) ? 95 : 90;
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03006518
Jesse Barnes30a970c2013-11-04 13:48:12 -08006519 /*
6520 * Really only a few cases to deal with, as only 4 CDclks are supported:
6521 * 200MHz
6522 * 267MHz
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03006523 * 320/333MHz (depends on HPLL freq)
Ville Syrjälä6cca3192015-03-02 20:07:16 +02006524 * 400MHz (VLV only)
6525 * So we check to see whether we're above 90% (VLV) or 95% (CHV)
6526 * of the lower bin and adjust if needed.
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03006527 *
6528 * We seem to get an unstable or solid color picture at 200MHz.
6529 * Not sure what's wrong. For now use 200MHz only when all pipes
6530 * are off.
Jesse Barnes30a970c2013-11-04 13:48:12 -08006531 */
Ville Syrjälä6cca3192015-03-02 20:07:16 +02006532 if (!IS_CHERRYVIEW(dev_priv) &&
6533 max_pixclk > freq_320*limit/100)
Ville Syrjälädfcab172014-06-13 13:37:47 +03006534 return 400000;
Ville Syrjälä6cca3192015-03-02 20:07:16 +02006535 else if (max_pixclk > 266667*limit/100)
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03006536 return freq_320;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03006537 else if (max_pixclk > 0)
Ville Syrjälädfcab172014-06-13 13:37:47 +03006538 return 266667;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03006539 else
6540 return 200000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006541}
6542
Imre Deak324513c2016-06-13 16:44:36 +03006543static int bxt_calc_cdclk(int max_pixclk)
Jesse Barnes30a970c2013-11-04 13:48:12 -08006544{
Ville Syrjälä760e1472016-05-11 22:44:46 +03006545 if (max_pixclk > 576000)
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306546 return 624000;
Ville Syrjälä760e1472016-05-11 22:44:46 +03006547 else if (max_pixclk > 384000)
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306548 return 576000;
Ville Syrjälä760e1472016-05-11 22:44:46 +03006549 else if (max_pixclk > 288000)
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306550 return 384000;
Ville Syrjälä760e1472016-05-11 22:44:46 +03006551 else if (max_pixclk > 144000)
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306552 return 288000;
6553 else
6554 return 144000;
6555}
6556
Maarten Lankhorste8788cb2016-02-16 10:25:11 +01006557/* Compute the max pixel clock for new configuration. */
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03006558static int intel_mode_max_pixclk(struct drm_device *dev,
6559 struct drm_atomic_state *state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08006560{
Maarten Lankhorst565602d2015-12-10 12:33:57 +01006561 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Chris Wilsonfac5e232016-07-04 11:34:36 +01006562 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorst565602d2015-12-10 12:33:57 +01006563 struct drm_crtc *crtc;
6564 struct drm_crtc_state *crtc_state;
6565 unsigned max_pixclk = 0, i;
6566 enum pipe pipe;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006567
Maarten Lankhorst565602d2015-12-10 12:33:57 +01006568 memcpy(intel_state->min_pixclk, dev_priv->min_pixclk,
6569 sizeof(intel_state->min_pixclk));
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03006570
Maarten Lankhorst565602d2015-12-10 12:33:57 +01006571 for_each_crtc_in_state(state, crtc, crtc_state, i) {
6572 int pixclk = 0;
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03006573
Maarten Lankhorst565602d2015-12-10 12:33:57 +01006574 if (crtc_state->enable)
6575 pixclk = crtc_state->adjusted_mode.crtc_clock;
6576
6577 intel_state->min_pixclk[i] = pixclk;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006578 }
6579
Maarten Lankhorst565602d2015-12-10 12:33:57 +01006580 for_each_pipe(dev_priv, pipe)
6581 max_pixclk = max(intel_state->min_pixclk[pipe], max_pixclk);
6582
Jesse Barnes30a970c2013-11-04 13:48:12 -08006583 return max_pixclk;
6584}
6585
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006586static int valleyview_modeset_calc_cdclk(struct drm_atomic_state *state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08006587{
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006588 struct drm_device *dev = state->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01006589 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006590 int max_pixclk = intel_mode_max_pixclk(dev, state);
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01006591 struct intel_atomic_state *intel_state =
6592 to_intel_atomic_state(state);
Jesse Barnes30a970c2013-11-04 13:48:12 -08006593
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01006594 intel_state->cdclk = intel_state->dev_cdclk =
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006595 valleyview_calc_cdclk(dev_priv, max_pixclk);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306596
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01006597 if (!intel_state->active_crtcs)
6598 intel_state->dev_cdclk = valleyview_calc_cdclk(dev_priv, 0);
6599
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006600 return 0;
6601}
Jesse Barnes30a970c2013-11-04 13:48:12 -08006602
Imre Deak324513c2016-06-13 16:44:36 +03006603static int bxt_modeset_calc_cdclk(struct drm_atomic_state *state)
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006604{
Ville Syrjälä4e5ca602016-05-11 22:44:44 +03006605 int max_pixclk = ilk_max_pixel_rate(state);
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01006606 struct intel_atomic_state *intel_state =
6607 to_intel_atomic_state(state);
Maarten Lankhorst85a96e72015-06-01 12:49:53 +02006608
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01006609 intel_state->cdclk = intel_state->dev_cdclk =
Imre Deak324513c2016-06-13 16:44:36 +03006610 bxt_calc_cdclk(max_pixclk);
Maarten Lankhorst85a96e72015-06-01 12:49:53 +02006611
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01006612 if (!intel_state->active_crtcs)
Imre Deak324513c2016-06-13 16:44:36 +03006613 intel_state->dev_cdclk = bxt_calc_cdclk(0);
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01006614
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006615 return 0;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006616}
6617
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02006618static void vlv_program_pfi_credits(struct drm_i915_private *dev_priv)
6619{
6620 unsigned int credits, default_credits;
6621
6622 if (IS_CHERRYVIEW(dev_priv))
6623 default_credits = PFI_CREDIT(12);
6624 else
6625 default_credits = PFI_CREDIT(8);
6626
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03006627 if (dev_priv->cdclk_freq >= dev_priv->czclk_freq) {
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02006628 /* CHV suggested value is 31 or 63 */
6629 if (IS_CHERRYVIEW(dev_priv))
Ville Syrjäläfcc00082015-05-26 20:22:40 +03006630 credits = PFI_CREDIT_63;
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02006631 else
6632 credits = PFI_CREDIT(15);
6633 } else {
6634 credits = default_credits;
6635 }
6636
6637 /*
6638 * WA - write default credits before re-programming
6639 * FIXME: should we also set the resend bit here?
6640 */
6641 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
6642 default_credits);
6643
6644 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
6645 credits | PFI_CREDIT_RESEND);
6646
6647 /*
6648 * FIXME is this guaranteed to clear
6649 * immediately or should we poll for it?
6650 */
6651 WARN_ON(I915_READ(GCI_CONTROL) & PFI_CREDIT_RESEND);
6652}
6653
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006654static void valleyview_modeset_commit_cdclk(struct drm_atomic_state *old_state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08006655{
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03006656 struct drm_device *dev = old_state->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01006657 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01006658 struct intel_atomic_state *old_intel_state =
6659 to_intel_atomic_state(old_state);
6660 unsigned req_cdclk = old_intel_state->dev_cdclk;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006661
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006662 /*
6663 * FIXME: We can end up here with all power domains off, yet
6664 * with a CDCLK frequency other than the minimum. To account
6665 * for this take the PIPE-A power domain, which covers the HW
6666 * blocks needed for the following programming. This can be
6667 * removed once it's guaranteed that we get here either with
6668 * the minimum CDCLK set, or the required power domains
6669 * enabled.
6670 */
6671 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03006672
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006673 if (IS_CHERRYVIEW(dev))
6674 cherryview_set_cdclk(dev, req_cdclk);
6675 else
6676 valleyview_set_cdclk(dev, req_cdclk);
Jesse Barnes30a970c2013-11-04 13:48:12 -08006677
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006678 vlv_program_pfi_credits(dev_priv);
Imre Deak738c05c2014-11-19 16:25:37 +02006679
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006680 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
Jesse Barnes30a970c2013-11-04 13:48:12 -08006681}
6682
Maarten Lankhorst4a806552016-08-09 17:04:01 +02006683static void valleyview_crtc_enable(struct intel_crtc_state *pipe_config,
6684 struct drm_atomic_state *old_state)
Jesse Barnes89b667f2013-04-18 14:51:36 -07006685{
Maarten Lankhorst4a806552016-08-09 17:04:01 +02006686 struct drm_crtc *crtc = pipe_config->base.crtc;
Jesse Barnes89b667f2013-04-18 14:51:36 -07006687 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02006688 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006689 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006690 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07006691
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02006692 if (WARN_ON(intel_crtc->active))
Jesse Barnes89b667f2013-04-18 14:51:36 -07006693 return;
6694
Ville Syrjälä37a56502016-06-22 21:57:04 +03006695 if (intel_crtc_has_dp_encoder(intel_crtc->config))
Ramalingam Cfe3cd482015-02-13 15:32:59 +05306696 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter5b18e572014-04-24 23:55:06 +02006697
6698 intel_set_pipe_timings(intel_crtc);
Jani Nikulabc58be62016-03-18 17:05:39 +02006699 intel_set_pipe_src_size(intel_crtc);
Daniel Vetter5b18e572014-04-24 23:55:06 +02006700
Ville Syrjäläc14b0482014-10-16 20:52:34 +03006701 if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) {
Chris Wilsonfac5e232016-07-04 11:34:36 +01006702 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläc14b0482014-10-16 20:52:34 +03006703
6704 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
6705 I915_WRITE(CHV_CANVAS(pipe), 0);
6706 }
6707
Daniel Vetter5b18e572014-04-24 23:55:06 +02006708 i9xx_set_pipeconf(intel_crtc);
6709
Jesse Barnes89b667f2013-04-18 14:51:36 -07006710 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07006711
Daniel Vettera72e4c92014-09-30 10:56:47 +02006712 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006713
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02006714 intel_encoders_pre_pll_enable(crtc, pipe_config, old_state);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006715
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +03006716 if (IS_CHERRYVIEW(dev)) {
6717 chv_prepare_pll(intel_crtc, intel_crtc->config);
6718 chv_enable_pll(intel_crtc, intel_crtc->config);
6719 } else {
6720 vlv_prepare_pll(intel_crtc, intel_crtc->config);
6721 vlv_enable_pll(intel_crtc, intel_crtc->config);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006722 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07006723
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02006724 intel_encoders_pre_enable(crtc, pipe_config, old_state);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006725
Jesse Barnes2dd24552013-04-25 12:55:01 -07006726 i9xx_pfit_enable(intel_crtc);
6727
Maarten Lankhorstb95c5322016-03-30 17:16:34 +02006728 intel_color_load_luts(&pipe_config->base);
Ville Syrjälä63cbb072013-06-04 13:48:59 +03006729
Ville Syrjäläcaed3612016-03-09 19:07:25 +02006730 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02006731 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02006732
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03006733 assert_vblank_disabled(crtc);
6734 drm_crtc_vblank_on(crtc);
6735
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02006736 intel_encoders_enable(crtc, pipe_config, old_state);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006737}
6738
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02006739static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
6740{
6741 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01006742 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02006743
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006744 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
6745 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02006746}
6747
Maarten Lankhorst4a806552016-08-09 17:04:01 +02006748static void i9xx_crtc_enable(struct intel_crtc_state *pipe_config,
6749 struct drm_atomic_state *old_state)
Zhenyu Wang2c072452009-06-05 15:38:42 +08006750{
Maarten Lankhorst4a806552016-08-09 17:04:01 +02006751 struct drm_crtc *crtc = pipe_config->base.crtc;
Zhenyu Wang2c072452009-06-05 15:38:42 +08006752 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02006753 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08006754 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +03006755 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08006756
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02006757 if (WARN_ON(intel_crtc->active))
Chris Wilsonf7abfe82010-09-13 14:19:16 +01006758 return;
6759
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02006760 i9xx_set_pll_dividers(intel_crtc);
6761
Ville Syrjälä37a56502016-06-22 21:57:04 +03006762 if (intel_crtc_has_dp_encoder(intel_crtc->config))
Ramalingam Cfe3cd482015-02-13 15:32:59 +05306763 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter5b18e572014-04-24 23:55:06 +02006764
6765 intel_set_pipe_timings(intel_crtc);
Jani Nikulabc58be62016-03-18 17:05:39 +02006766 intel_set_pipe_src_size(intel_crtc);
Daniel Vetter5b18e572014-04-24 23:55:06 +02006767
Daniel Vetter5b18e572014-04-24 23:55:06 +02006768 i9xx_set_pipeconf(intel_crtc);
6769
Chris Wilsonf7abfe82010-09-13 14:19:16 +01006770 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01006771
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006772 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02006773 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006774
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02006775 intel_encoders_pre_enable(crtc, pipe_config, old_state);
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02006776
Daniel Vetterf6736a12013-06-05 13:34:30 +02006777 i9xx_enable_pll(intel_crtc);
6778
Jesse Barnes2dd24552013-04-25 12:55:01 -07006779 i9xx_pfit_enable(intel_crtc);
6780
Maarten Lankhorstb95c5322016-03-30 17:16:34 +02006781 intel_color_load_luts(&pipe_config->base);
Ville Syrjälä63cbb072013-06-04 13:48:59 +03006782
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03006783 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02006784 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02006785
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03006786 assert_vblank_disabled(crtc);
6787 drm_crtc_vblank_on(crtc);
6788
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02006789 intel_encoders_enable(crtc, pipe_config, old_state);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006790}
6791
Daniel Vetter87476d62013-04-11 16:29:06 +02006792static void i9xx_pfit_disable(struct intel_crtc *crtc)
6793{
6794 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01006795 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter328d8e82013-05-08 10:36:31 +02006796
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006797 if (!crtc->config->gmch_pfit.control)
Daniel Vetter328d8e82013-05-08 10:36:31 +02006798 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02006799
6800 assert_pipe_disabled(dev_priv, crtc->pipe);
6801
Daniel Vetter328d8e82013-05-08 10:36:31 +02006802 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
6803 I915_READ(PFIT_CONTROL));
6804 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02006805}
6806
Maarten Lankhorst4a806552016-08-09 17:04:01 +02006807static void i9xx_crtc_disable(struct intel_crtc_state *old_crtc_state,
6808 struct drm_atomic_state *old_state)
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006809{
Maarten Lankhorst4a806552016-08-09 17:04:01 +02006810 struct drm_crtc *crtc = old_crtc_state->base.crtc;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006811 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01006812 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006813 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6814 int pipe = intel_crtc->pipe;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02006815
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006816 /*
6817 * On gen2 planes are double buffered but the pipe isn't, so we must
6818 * wait for planes to fully turn off before disabling the pipe.
6819 */
Ander Conselvan de Oliveira90e83e52016-03-22 10:11:24 +02006820 if (IS_GEN2(dev))
6821 intel_wait_for_vblank(dev, pipe);
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006822
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02006823 intel_encoders_disable(crtc, old_crtc_state, old_state);
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03006824
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01006825 drm_crtc_vblank_off(crtc);
6826 assert_vblank_disabled(crtc);
6827
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03006828 intel_disable_pipe(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02006829
Daniel Vetter87476d62013-04-11 16:29:06 +02006830 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02006831
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02006832 intel_encoders_post_disable(crtc, old_crtc_state, old_state);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006833
Ville Syrjäläd7edc4e2016-06-22 21:57:07 +03006834 if (!intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_DSI)) {
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03006835 if (IS_CHERRYVIEW(dev))
6836 chv_disable_pll(dev_priv, pipe);
6837 else if (IS_VALLEYVIEW(dev))
6838 vlv_disable_pll(dev_priv, pipe);
6839 else
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03006840 i9xx_disable_pll(intel_crtc);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03006841 }
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006842
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02006843 intel_encoders_post_pll_disable(crtc, old_crtc_state, old_state);
Ville Syrjäläd6db9952015-07-08 23:45:49 +03006844
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006845 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02006846 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006847}
6848
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006849static void intel_crtc_disable_noatomic(struct drm_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006850{
Maarten Lankhorst842e0302016-03-02 15:48:01 +01006851 struct intel_encoder *encoder;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006852 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006853 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006854 enum intel_display_power_domain domain;
6855 unsigned long domains;
Maarten Lankhorst4a806552016-08-09 17:04:01 +02006856 struct drm_atomic_state *state;
6857 struct intel_crtc_state *crtc_state;
6858 int ret;
Daniel Vetter976f8a22012-07-08 22:34:21 +02006859
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006860 if (!intel_crtc->active)
6861 return;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006862
Ville Syrjälä936e71e2016-07-26 19:06:59 +03006863 if (to_intel_plane_state(crtc->primary->state)->base.visible) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02006864 WARN_ON(intel_crtc->flip_work);
Maarten Lankhorstfc32b1f2015-10-19 17:09:23 +02006865
Ville Syrjälä2622a082016-03-09 19:07:26 +02006866 intel_pre_disable_primary_noatomic(crtc);
Maarten Lankhorst54a419612015-11-23 10:25:28 +01006867
6868 intel_crtc_disable_planes(crtc, 1 << drm_plane_index(crtc->primary));
Ville Syrjälä936e71e2016-07-26 19:06:59 +03006869 to_intel_plane_state(crtc->primary->state)->base.visible = false;
Maarten Lankhorsta5392052015-06-15 12:33:52 +02006870 }
6871
Maarten Lankhorst4a806552016-08-09 17:04:01 +02006872 state = drm_atomic_state_alloc(crtc->dev);
6873 state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
6874
6875 /* Everything's already locked, -EDEADLK can't happen. */
6876 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
6877 ret = drm_atomic_add_affected_connectors(state, crtc);
6878
6879 WARN_ON(IS_ERR(crtc_state) || ret);
6880
6881 dev_priv->display.crtc_disable(crtc_state, state);
6882
6883 drm_atomic_state_free(state);
Maarten Lankhorst842e0302016-03-02 15:48:01 +01006884
Ville Syrjälä78108b72016-05-27 20:59:19 +03006885 DRM_DEBUG_KMS("[CRTC:%d:%s] hw state adjusted, was enabled, now disabled\n",
6886 crtc->base.id, crtc->name);
Maarten Lankhorst842e0302016-03-02 15:48:01 +01006887
6888 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->state, NULL) < 0);
6889 crtc->state->active = false;
Matt Roper37d90782015-09-24 15:53:06 -07006890 intel_crtc->active = false;
Maarten Lankhorst842e0302016-03-02 15:48:01 +01006891 crtc->enabled = false;
6892 crtc->state->connector_mask = 0;
6893 crtc->state->encoder_mask = 0;
6894
6895 for_each_encoder_on_crtc(crtc->dev, crtc, encoder)
6896 encoder->base.crtc = NULL;
6897
Paulo Zanoni58f9c0b2016-01-19 11:35:51 -02006898 intel_fbc_disable(intel_crtc);
Matt Roper37d90782015-09-24 15:53:06 -07006899 intel_update_watermarks(crtc);
Maarten Lankhorst1f7457b2015-07-13 11:55:05 +02006900 intel_disable_shared_dpll(intel_crtc);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006901
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006902 domains = intel_crtc->enabled_power_domains;
6903 for_each_power_domain(domain, domains)
6904 intel_display_power_put(dev_priv, domain);
6905 intel_crtc->enabled_power_domains = 0;
Maarten Lankhorst565602d2015-12-10 12:33:57 +01006906
6907 dev_priv->active_crtcs &= ~(1 << intel_crtc->pipe);
6908 dev_priv->min_pixclk[intel_crtc->pipe] = 0;
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006909}
6910
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006911/*
6912 * turn all crtc's off, but do not adjust state
6913 * This has to be paired with a call to intel_modeset_setup_hw_state.
6914 */
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006915int intel_display_suspend(struct drm_device *dev)
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006916{
Maarten Lankhorste2c8b872016-02-16 10:06:14 +01006917 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006918 struct drm_atomic_state *state;
Maarten Lankhorste2c8b872016-02-16 10:06:14 +01006919 int ret;
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006920
Maarten Lankhorste2c8b872016-02-16 10:06:14 +01006921 state = drm_atomic_helper_suspend(dev);
6922 ret = PTR_ERR_OR_ZERO(state);
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006923 if (ret)
6924 DRM_ERROR("Suspending crtc's failed with %i\n", ret);
Maarten Lankhorste2c8b872016-02-16 10:06:14 +01006925 else
6926 dev_priv->modeset_restore_state = state;
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006927 return ret;
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006928}
6929
Chris Wilsonea5b2132010-08-04 13:50:23 +01006930void intel_encoder_destroy(struct drm_encoder *encoder)
6931{
Chris Wilson4ef69c72010-09-09 15:14:28 +01006932 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01006933
Chris Wilsonea5b2132010-08-04 13:50:23 +01006934 drm_encoder_cleanup(encoder);
6935 kfree(intel_encoder);
6936}
6937
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006938/* Cross check the actual hw state with our own modeset state tracking (and it's
6939 * internal consistency). */
Daniel Vetter5a21b662016-05-24 17:13:53 +02006940static void intel_connector_verify_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006941{
Daniel Vetter5a21b662016-05-24 17:13:53 +02006942 struct drm_crtc *crtc = connector->base.state->crtc;
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006943
6944 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
6945 connector->base.base.id,
6946 connector->base.name);
6947
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006948 if (connector->get_hw_state(connector)) {
Maarten Lankhorste85376c2015-08-27 13:13:31 +02006949 struct intel_encoder *encoder = connector->encoder;
Daniel Vetter5a21b662016-05-24 17:13:53 +02006950 struct drm_connector_state *conn_state = connector->base.state;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006951
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006952 I915_STATE_WARN(!crtc,
6953 "connector enabled without attached crtc\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006954
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006955 if (!crtc)
6956 return;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006957
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006958 I915_STATE_WARN(!crtc->state->active,
6959 "connector is active, but attached crtc isn't\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006960
Maarten Lankhorste85376c2015-08-27 13:13:31 +02006961 if (!encoder || encoder->type == INTEL_OUTPUT_DP_MST)
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006962 return;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006963
Maarten Lankhorste85376c2015-08-27 13:13:31 +02006964 I915_STATE_WARN(conn_state->best_encoder != &encoder->base,
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006965 "atomic encoder doesn't match attached encoder\n");
Dave Airlie36cd7442014-05-02 13:44:18 +10006966
Maarten Lankhorste85376c2015-08-27 13:13:31 +02006967 I915_STATE_WARN(conn_state->crtc != encoder->base.crtc,
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006968 "attached encoder crtc differs from connector crtc\n");
6969 } else {
Maarten Lankhorst4d688a22015-08-05 12:37:06 +02006970 I915_STATE_WARN(crtc && crtc->state->active,
6971 "attached crtc is active, but connector isn't\n");
Daniel Vetter5a21b662016-05-24 17:13:53 +02006972 I915_STATE_WARN(!crtc && connector->base.state->best_encoder,
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006973 "best encoder set without crtc!\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006974 }
6975}
6976
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03006977int intel_connector_init(struct intel_connector *connector)
6978{
Maarten Lankhorst5350a032016-01-04 12:53:15 +01006979 drm_atomic_helper_connector_reset(&connector->base);
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03006980
Maarten Lankhorst5350a032016-01-04 12:53:15 +01006981 if (!connector->base.state)
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03006982 return -ENOMEM;
6983
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03006984 return 0;
6985}
6986
6987struct intel_connector *intel_connector_alloc(void)
6988{
6989 struct intel_connector *connector;
6990
6991 connector = kzalloc(sizeof *connector, GFP_KERNEL);
6992 if (!connector)
6993 return NULL;
6994
6995 if (intel_connector_init(connector) < 0) {
6996 kfree(connector);
6997 return NULL;
6998 }
6999
7000 return connector;
7001}
7002
Daniel Vetterf0947c32012-07-02 13:10:34 +02007003/* Simple connector->get_hw_state implementation for encoders that support only
7004 * one connector and no cloning and hence the encoder state determines the state
7005 * of the connector. */
7006bool intel_connector_get_hw_state(struct intel_connector *connector)
7007{
Daniel Vetter24929352012-07-02 20:28:59 +02007008 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02007009 struct intel_encoder *encoder = connector->encoder;
7010
7011 return encoder->get_hw_state(encoder, &pipe);
7012}
7013
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03007014static int pipe_required_fdi_lanes(struct intel_crtc_state *crtc_state)
Ville Syrjäläd272ddf2015-03-11 18:52:31 +02007015{
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03007016 if (crtc_state->base.enable && crtc_state->has_pch_encoder)
7017 return crtc_state->fdi_lanes;
Ville Syrjäläd272ddf2015-03-11 18:52:31 +02007018
7019 return 0;
7020}
7021
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03007022static int ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007023 struct intel_crtc_state *pipe_config)
Daniel Vetter1857e1d2013-04-29 19:34:16 +02007024{
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03007025 struct drm_atomic_state *state = pipe_config->base.state;
7026 struct intel_crtc *other_crtc;
7027 struct intel_crtc_state *other_crtc_state;
7028
Daniel Vetter1857e1d2013-04-29 19:34:16 +02007029 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
7030 pipe_name(pipe), pipe_config->fdi_lanes);
7031 if (pipe_config->fdi_lanes > 4) {
7032 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
7033 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03007034 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02007035 }
7036
Paulo Zanonibafb6552013-11-02 21:07:44 -07007037 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02007038 if (pipe_config->fdi_lanes > 2) {
7039 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
7040 pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03007041 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02007042 } else {
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03007043 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02007044 }
7045 }
7046
7047 if (INTEL_INFO(dev)->num_pipes == 2)
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03007048 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02007049
7050 /* Ivybridge 3 pipe is really complicated */
7051 switch (pipe) {
7052 case PIPE_A:
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03007053 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02007054 case PIPE_B:
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03007055 if (pipe_config->fdi_lanes <= 2)
7056 return 0;
7057
7058 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_C));
7059 other_crtc_state =
7060 intel_atomic_get_crtc_state(state, other_crtc);
7061 if (IS_ERR(other_crtc_state))
7062 return PTR_ERR(other_crtc_state);
7063
7064 if (pipe_required_fdi_lanes(other_crtc_state) > 0) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02007065 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
7066 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03007067 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02007068 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03007069 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02007070 case PIPE_C:
Ville Syrjälä251cc672015-03-11 18:52:30 +02007071 if (pipe_config->fdi_lanes > 2) {
7072 DRM_DEBUG_KMS("only 2 lanes on pipe %c: required %i lanes\n",
7073 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03007074 return -EINVAL;
Ville Syrjälä251cc672015-03-11 18:52:30 +02007075 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03007076
7077 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_B));
7078 other_crtc_state =
7079 intel_atomic_get_crtc_state(state, other_crtc);
7080 if (IS_ERR(other_crtc_state))
7081 return PTR_ERR(other_crtc_state);
7082
7083 if (pipe_required_fdi_lanes(other_crtc_state) > 2) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02007084 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03007085 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02007086 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03007087 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02007088 default:
7089 BUG();
7090 }
7091}
7092
Daniel Vettere29c22c2013-02-21 00:00:16 +01007093#define RETRY 1
7094static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007095 struct intel_crtc_state *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02007096{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02007097 struct drm_device *dev = intel_crtc->base.dev;
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03007098 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03007099 int lane, link_bw, fdi_dotclock, ret;
7100 bool needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02007101
Daniel Vettere29c22c2013-02-21 00:00:16 +01007102retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02007103 /* FDI is a binary signal running at ~2.7GHz, encoding
7104 * each output octet as 10 bits. The actual frequency
7105 * is stored as a divider into a 100MHz clock, and the
7106 * mode pixel clock is stored in units of 1KHz.
7107 * Hence the bw of each lane in terms of the mode signal
7108 * is:
7109 */
Ville Syrjälä21a727b2016-02-17 21:41:10 +02007110 link_bw = intel_fdi_link_freq(to_i915(dev), pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02007111
Damien Lespiau241bfc32013-09-25 16:45:37 +01007112 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02007113
Daniel Vetter2bd89a02013-06-01 17:16:19 +02007114 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02007115 pipe_config->pipe_bpp);
7116
7117 pipe_config->fdi_lanes = lane;
7118
Daniel Vetter2bd89a02013-06-01 17:16:19 +02007119 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02007120 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02007121
Ville Syrjäläe3b247d2016-02-17 21:41:09 +02007122 ret = ironlake_check_fdi_lanes(dev, intel_crtc->pipe, pipe_config);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03007123 if (ret == -EINVAL && pipe_config->pipe_bpp > 6*3) {
Daniel Vettere29c22c2013-02-21 00:00:16 +01007124 pipe_config->pipe_bpp -= 2*3;
7125 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
7126 pipe_config->pipe_bpp);
7127 needs_recompute = true;
7128 pipe_config->bw_constrained = true;
7129
7130 goto retry;
7131 }
7132
7133 if (needs_recompute)
7134 return RETRY;
7135
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03007136 return ret;
Daniel Vetter877d48d2013-04-19 11:24:43 +02007137}
7138
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03007139static bool pipe_config_supports_ips(struct drm_i915_private *dev_priv,
7140 struct intel_crtc_state *pipe_config)
7141{
7142 if (pipe_config->pipe_bpp > 24)
7143 return false;
7144
7145 /* HSW can handle pixel rate up to cdclk? */
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007146 if (IS_HASWELL(dev_priv))
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03007147 return true;
7148
7149 /*
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03007150 * We compare against max which means we must take
7151 * the increased cdclk requirement into account when
7152 * calculating the new cdclk.
7153 *
7154 * Should measure whether using a lower cdclk w/o IPS
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03007155 */
7156 return ilk_pipe_pixel_rate(pipe_config) <=
7157 dev_priv->max_cdclk_freq * 95 / 100;
7158}
7159
Paulo Zanoni42db64e2013-05-31 16:33:22 -03007160static void hsw_compute_ips_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007161 struct intel_crtc_state *pipe_config)
Paulo Zanoni42db64e2013-05-31 16:33:22 -03007162{
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03007163 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01007164 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03007165
Jani Nikulad330a952014-01-21 11:24:25 +02007166 pipe_config->ips_enabled = i915.enable_ips &&
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03007167 hsw_crtc_supports_ips(crtc) &&
7168 pipe_config_supports_ips(dev_priv, pipe_config);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03007169}
7170
Ville Syrjälä39acb4a2015-10-30 23:39:38 +02007171static bool intel_crtc_supports_double_wide(const struct intel_crtc *crtc)
7172{
7173 const struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
7174
7175 /* GDG double wide on either pipe, otherwise pipe A only */
7176 return INTEL_INFO(dev_priv)->gen < 4 &&
7177 (crtc->pipe == PIPE_A || IS_I915G(dev_priv));
7178}
7179
Daniel Vettera43f6e02013-06-07 23:10:32 +02007180static int intel_crtc_compute_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007181 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08007182{
Daniel Vettera43f6e02013-06-07 23:10:32 +02007183 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01007184 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03007185 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Ville Syrjäläf3261152016-05-24 21:34:18 +03007186 int clock_limit = dev_priv->max_dotclk_freq;
Chris Wilson89749352010-09-12 18:25:19 +01007187
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03007188 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjäläf3261152016-05-24 21:34:18 +03007189 clock_limit = dev_priv->max_cdclk_freq * 9 / 10;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03007190
7191 /*
Ville Syrjälä39acb4a2015-10-30 23:39:38 +02007192 * Enable double wide mode when the dot clock
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03007193 * is > 90% of the (display) core speed.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03007194 */
Ville Syrjälä39acb4a2015-10-30 23:39:38 +02007195 if (intel_crtc_supports_double_wide(crtc) &&
7196 adjusted_mode->crtc_clock > clock_limit) {
Ville Syrjäläf3261152016-05-24 21:34:18 +03007197 clock_limit = dev_priv->max_dotclk_freq;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03007198 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03007199 }
Ville Syrjäläf3261152016-05-24 21:34:18 +03007200 }
Ville Syrjäläad3a4472013-09-04 18:30:04 +03007201
Ville Syrjäläf3261152016-05-24 21:34:18 +03007202 if (adjusted_mode->crtc_clock > clock_limit) {
7203 DRM_DEBUG_KMS("requested pixel clock (%d kHz) too high (max: %d kHz, double wide: %s)\n",
7204 adjusted_mode->crtc_clock, clock_limit,
7205 yesno(pipe_config->double_wide));
7206 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08007207 }
Chris Wilson89749352010-09-12 18:25:19 +01007208
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03007209 /*
7210 * Pipe horizontal size must be even in:
7211 * - DVO ganged mode
7212 * - LVDS dual channel mode
7213 * - Double wide pipe
7214 */
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03007215 if ((intel_crtc_has_type(pipe_config, INTEL_OUTPUT_LVDS) &&
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03007216 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
7217 pipe_config->pipe_src_w &= ~1;
7218
Damien Lespiau8693a822013-05-03 18:48:11 +01007219 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
7220 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03007221 */
7222 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
Ville Syrjäläaad941d2015-09-25 16:38:56 +03007223 adjusted_mode->crtc_hsync_start == adjusted_mode->crtc_hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01007224 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03007225
Damien Lespiauf5adf942013-06-24 18:29:34 +01007226 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02007227 hsw_compute_ips_config(crtc, pipe_config);
7228
Daniel Vetter877d48d2013-04-19 11:24:43 +02007229 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02007230 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02007231
Maarten Lankhorstcf5a15b2015-06-15 12:33:41 +02007232 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007233}
7234
Ville Syrjälä1652d192015-03-31 14:12:01 +03007235static int skylake_get_display_clock_speed(struct drm_device *dev)
7236{
7237 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläea617912016-05-13 23:41:24 +03007238 uint32_t cdctl;
Ville Syrjälä1652d192015-03-31 14:12:01 +03007239
Ville Syrjäläea617912016-05-13 23:41:24 +03007240 skl_dpll0_update(dev_priv);
7241
Ville Syrjälä63911d72016-05-13 23:41:32 +03007242 if (dev_priv->cdclk_pll.vco == 0)
Ville Syrjälä709e05c2016-05-13 23:41:33 +03007243 return dev_priv->cdclk_pll.ref;
Ville Syrjälä1652d192015-03-31 14:12:01 +03007244
Ville Syrjäläea617912016-05-13 23:41:24 +03007245 cdctl = I915_READ(CDCLK_CTL);
Ville Syrjälä1652d192015-03-31 14:12:01 +03007246
Ville Syrjälä63911d72016-05-13 23:41:32 +03007247 if (dev_priv->cdclk_pll.vco == 8640000) {
Ville Syrjälä1652d192015-03-31 14:12:01 +03007248 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
7249 case CDCLK_FREQ_450_432:
7250 return 432000;
7251 case CDCLK_FREQ_337_308:
Ville Syrjälä487ed2e2016-05-13 23:41:31 +03007252 return 308571;
Ville Syrjäläea617912016-05-13 23:41:24 +03007253 case CDCLK_FREQ_540:
7254 return 540000;
Ville Syrjälä1652d192015-03-31 14:12:01 +03007255 case CDCLK_FREQ_675_617:
Ville Syrjälä487ed2e2016-05-13 23:41:31 +03007256 return 617143;
Ville Syrjälä1652d192015-03-31 14:12:01 +03007257 default:
Ville Syrjäläea617912016-05-13 23:41:24 +03007258 MISSING_CASE(cdctl & CDCLK_FREQ_SEL_MASK);
Ville Syrjälä1652d192015-03-31 14:12:01 +03007259 }
7260 } else {
Ville Syrjälä1652d192015-03-31 14:12:01 +03007261 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
7262 case CDCLK_FREQ_450_432:
7263 return 450000;
7264 case CDCLK_FREQ_337_308:
7265 return 337500;
Ville Syrjäläea617912016-05-13 23:41:24 +03007266 case CDCLK_FREQ_540:
7267 return 540000;
Ville Syrjälä1652d192015-03-31 14:12:01 +03007268 case CDCLK_FREQ_675_617:
7269 return 675000;
7270 default:
Ville Syrjäläea617912016-05-13 23:41:24 +03007271 MISSING_CASE(cdctl & CDCLK_FREQ_SEL_MASK);
Ville Syrjälä1652d192015-03-31 14:12:01 +03007272 }
7273 }
7274
Ville Syrjälä709e05c2016-05-13 23:41:33 +03007275 return dev_priv->cdclk_pll.ref;
Ville Syrjälä1652d192015-03-31 14:12:01 +03007276}
7277
Ville Syrjälä83d7c812016-05-13 23:41:35 +03007278static void bxt_de_pll_update(struct drm_i915_private *dev_priv)
7279{
7280 u32 val;
7281
7282 dev_priv->cdclk_pll.ref = 19200;
Imre Deak1c3f7702016-05-24 15:38:32 +03007283 dev_priv->cdclk_pll.vco = 0;
Ville Syrjälä83d7c812016-05-13 23:41:35 +03007284
7285 val = I915_READ(BXT_DE_PLL_ENABLE);
Imre Deak1c3f7702016-05-24 15:38:32 +03007286 if ((val & BXT_DE_PLL_PLL_ENABLE) == 0)
Ville Syrjälä83d7c812016-05-13 23:41:35 +03007287 return;
Ville Syrjälä83d7c812016-05-13 23:41:35 +03007288
Imre Deak1c3f7702016-05-24 15:38:32 +03007289 if (WARN_ON((val & BXT_DE_PLL_LOCK) == 0))
7290 return;
Ville Syrjälä83d7c812016-05-13 23:41:35 +03007291
7292 val = I915_READ(BXT_DE_PLL_CTL);
7293 dev_priv->cdclk_pll.vco = (val & BXT_DE_PLL_RATIO_MASK) *
7294 dev_priv->cdclk_pll.ref;
7295}
7296
Bob Paauweacd3f3d2015-06-23 14:14:26 -07007297static int broxton_get_display_clock_speed(struct drm_device *dev)
7298{
7299 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläf5986242016-05-13 23:41:37 +03007300 u32 divider;
7301 int div, vco;
Bob Paauweacd3f3d2015-06-23 14:14:26 -07007302
Ville Syrjälä83d7c812016-05-13 23:41:35 +03007303 bxt_de_pll_update(dev_priv);
7304
Ville Syrjäläf5986242016-05-13 23:41:37 +03007305 vco = dev_priv->cdclk_pll.vco;
7306 if (vco == 0)
7307 return dev_priv->cdclk_pll.ref;
Bob Paauweacd3f3d2015-06-23 14:14:26 -07007308
Ville Syrjäläf5986242016-05-13 23:41:37 +03007309 divider = I915_READ(CDCLK_CTL) & BXT_CDCLK_CD2X_DIV_SEL_MASK;
Bob Paauweacd3f3d2015-06-23 14:14:26 -07007310
Ville Syrjäläf5986242016-05-13 23:41:37 +03007311 switch (divider) {
Bob Paauweacd3f3d2015-06-23 14:14:26 -07007312 case BXT_CDCLK_CD2X_DIV_SEL_1:
Ville Syrjäläf5986242016-05-13 23:41:37 +03007313 div = 2;
7314 break;
Bob Paauweacd3f3d2015-06-23 14:14:26 -07007315 case BXT_CDCLK_CD2X_DIV_SEL_1_5:
Ville Syrjäläf5986242016-05-13 23:41:37 +03007316 div = 3;
7317 break;
Bob Paauweacd3f3d2015-06-23 14:14:26 -07007318 case BXT_CDCLK_CD2X_DIV_SEL_2:
Ville Syrjäläf5986242016-05-13 23:41:37 +03007319 div = 4;
7320 break;
Bob Paauweacd3f3d2015-06-23 14:14:26 -07007321 case BXT_CDCLK_CD2X_DIV_SEL_4:
Ville Syrjäläf5986242016-05-13 23:41:37 +03007322 div = 8;
7323 break;
7324 default:
7325 MISSING_CASE(divider);
7326 return dev_priv->cdclk_pll.ref;
Bob Paauweacd3f3d2015-06-23 14:14:26 -07007327 }
7328
Ville Syrjäläf5986242016-05-13 23:41:37 +03007329 return DIV_ROUND_CLOSEST(vco, div);
Bob Paauweacd3f3d2015-06-23 14:14:26 -07007330}
7331
Ville Syrjälä1652d192015-03-31 14:12:01 +03007332static int broadwell_get_display_clock_speed(struct drm_device *dev)
7333{
Chris Wilsonfac5e232016-07-04 11:34:36 +01007334 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä1652d192015-03-31 14:12:01 +03007335 uint32_t lcpll = I915_READ(LCPLL_CTL);
7336 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
7337
7338 if (lcpll & LCPLL_CD_SOURCE_FCLK)
7339 return 800000;
7340 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
7341 return 450000;
7342 else if (freq == LCPLL_CLK_FREQ_450)
7343 return 450000;
7344 else if (freq == LCPLL_CLK_FREQ_54O_BDW)
7345 return 540000;
7346 else if (freq == LCPLL_CLK_FREQ_337_5_BDW)
7347 return 337500;
7348 else
7349 return 675000;
7350}
7351
7352static int haswell_get_display_clock_speed(struct drm_device *dev)
7353{
Chris Wilsonfac5e232016-07-04 11:34:36 +01007354 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä1652d192015-03-31 14:12:01 +03007355 uint32_t lcpll = I915_READ(LCPLL_CTL);
7356 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
7357
7358 if (lcpll & LCPLL_CD_SOURCE_FCLK)
7359 return 800000;
7360 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
7361 return 450000;
7362 else if (freq == LCPLL_CLK_FREQ_450)
7363 return 450000;
7364 else if (IS_HSW_ULT(dev))
7365 return 337500;
7366 else
7367 return 540000;
Jesse Barnes79e53942008-11-07 14:24:08 -08007368}
7369
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07007370static int valleyview_get_display_clock_speed(struct drm_device *dev)
7371{
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007372 return vlv_get_cck_clock_hpll(to_i915(dev), "cdclk",
7373 CCK_DISPLAY_CLOCK_CONTROL);
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07007374}
7375
Ville Syrjäläb37a6432015-03-31 14:11:54 +03007376static int ilk_get_display_clock_speed(struct drm_device *dev)
7377{
7378 return 450000;
7379}
7380
Jesse Barnese70236a2009-09-21 10:42:27 -07007381static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08007382{
Jesse Barnese70236a2009-09-21 10:42:27 -07007383 return 400000;
7384}
Jesse Barnes79e53942008-11-07 14:24:08 -08007385
Jesse Barnese70236a2009-09-21 10:42:27 -07007386static int i915_get_display_clock_speed(struct drm_device *dev)
7387{
Ville Syrjäläe907f172015-03-31 14:09:47 +03007388 return 333333;
Jesse Barnese70236a2009-09-21 10:42:27 -07007389}
Jesse Barnes79e53942008-11-07 14:24:08 -08007390
Jesse Barnese70236a2009-09-21 10:42:27 -07007391static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
7392{
7393 return 200000;
7394}
Jesse Barnes79e53942008-11-07 14:24:08 -08007395
Daniel Vetter257a7ff2013-07-26 08:35:42 +02007396static int pnv_get_display_clock_speed(struct drm_device *dev)
7397{
David Weinehall52a05c32016-08-22 13:32:44 +03007398 struct pci_dev *pdev = dev->pdev;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02007399 u16 gcfgc = 0;
7400
David Weinehall52a05c32016-08-22 13:32:44 +03007401 pci_read_config_word(pdev, GCFGC, &gcfgc);
Daniel Vetter257a7ff2013-07-26 08:35:42 +02007402
7403 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
7404 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03007405 return 266667;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02007406 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03007407 return 333333;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02007408 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03007409 return 444444;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02007410 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
7411 return 200000;
7412 default:
7413 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
7414 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03007415 return 133333;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02007416 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03007417 return 166667;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02007418 }
7419}
7420
Jesse Barnese70236a2009-09-21 10:42:27 -07007421static int i915gm_get_display_clock_speed(struct drm_device *dev)
7422{
David Weinehall52a05c32016-08-22 13:32:44 +03007423 struct pci_dev *pdev = dev->pdev;
Jesse Barnese70236a2009-09-21 10:42:27 -07007424 u16 gcfgc = 0;
7425
David Weinehall52a05c32016-08-22 13:32:44 +03007426 pci_read_config_word(pdev, GCFGC, &gcfgc);
Jesse Barnese70236a2009-09-21 10:42:27 -07007427
7428 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Ville Syrjäläe907f172015-03-31 14:09:47 +03007429 return 133333;
Jesse Barnese70236a2009-09-21 10:42:27 -07007430 else {
7431 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
7432 case GC_DISPLAY_CLOCK_333_MHZ:
Ville Syrjäläe907f172015-03-31 14:09:47 +03007433 return 333333;
Jesse Barnese70236a2009-09-21 10:42:27 -07007434 default:
7435 case GC_DISPLAY_CLOCK_190_200_MHZ:
7436 return 190000;
7437 }
7438 }
7439}
Jesse Barnes79e53942008-11-07 14:24:08 -08007440
Jesse Barnese70236a2009-09-21 10:42:27 -07007441static int i865_get_display_clock_speed(struct drm_device *dev)
7442{
Ville Syrjäläe907f172015-03-31 14:09:47 +03007443 return 266667;
Jesse Barnese70236a2009-09-21 10:42:27 -07007444}
7445
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03007446static int i85x_get_display_clock_speed(struct drm_device *dev)
Jesse Barnese70236a2009-09-21 10:42:27 -07007447{
David Weinehall52a05c32016-08-22 13:32:44 +03007448 struct pci_dev *pdev = dev->pdev;
Jesse Barnese70236a2009-09-21 10:42:27 -07007449 u16 hpllcc = 0;
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03007450
Ville Syrjälä65cd2b32015-05-22 11:22:32 +03007451 /*
7452 * 852GM/852GMV only supports 133 MHz and the HPLLCC
7453 * encoding is different :(
7454 * FIXME is this the right way to detect 852GM/852GMV?
7455 */
David Weinehall52a05c32016-08-22 13:32:44 +03007456 if (pdev->revision == 0x1)
Ville Syrjälä65cd2b32015-05-22 11:22:32 +03007457 return 133333;
7458
David Weinehall52a05c32016-08-22 13:32:44 +03007459 pci_bus_read_config_word(pdev->bus,
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03007460 PCI_DEVFN(0, 3), HPLLCC, &hpllcc);
7461
Jesse Barnese70236a2009-09-21 10:42:27 -07007462 /* Assume that the hardware is in the high speed state. This
7463 * should be the default.
7464 */
7465 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
7466 case GC_CLOCK_133_200:
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03007467 case GC_CLOCK_133_200_2:
Jesse Barnese70236a2009-09-21 10:42:27 -07007468 case GC_CLOCK_100_200:
7469 return 200000;
7470 case GC_CLOCK_166_250:
7471 return 250000;
7472 case GC_CLOCK_100_133:
Ville Syrjäläe907f172015-03-31 14:09:47 +03007473 return 133333;
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03007474 case GC_CLOCK_133_266:
7475 case GC_CLOCK_133_266_2:
7476 case GC_CLOCK_166_266:
7477 return 266667;
Jesse Barnese70236a2009-09-21 10:42:27 -07007478 }
7479
7480 /* Shouldn't happen */
7481 return 0;
7482}
7483
7484static int i830_get_display_clock_speed(struct drm_device *dev)
7485{
Ville Syrjäläe907f172015-03-31 14:09:47 +03007486 return 133333;
Jesse Barnes79e53942008-11-07 14:24:08 -08007487}
7488
Ville Syrjälä34edce22015-05-22 11:22:33 +03007489static unsigned int intel_hpll_vco(struct drm_device *dev)
7490{
Chris Wilsonfac5e232016-07-04 11:34:36 +01007491 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä34edce22015-05-22 11:22:33 +03007492 static const unsigned int blb_vco[8] = {
7493 [0] = 3200000,
7494 [1] = 4000000,
7495 [2] = 5333333,
7496 [3] = 4800000,
7497 [4] = 6400000,
7498 };
7499 static const unsigned int pnv_vco[8] = {
7500 [0] = 3200000,
7501 [1] = 4000000,
7502 [2] = 5333333,
7503 [3] = 4800000,
7504 [4] = 2666667,
7505 };
7506 static const unsigned int cl_vco[8] = {
7507 [0] = 3200000,
7508 [1] = 4000000,
7509 [2] = 5333333,
7510 [3] = 6400000,
7511 [4] = 3333333,
7512 [5] = 3566667,
7513 [6] = 4266667,
7514 };
7515 static const unsigned int elk_vco[8] = {
7516 [0] = 3200000,
7517 [1] = 4000000,
7518 [2] = 5333333,
7519 [3] = 4800000,
7520 };
7521 static const unsigned int ctg_vco[8] = {
7522 [0] = 3200000,
7523 [1] = 4000000,
7524 [2] = 5333333,
7525 [3] = 6400000,
7526 [4] = 2666667,
7527 [5] = 4266667,
7528 };
7529 const unsigned int *vco_table;
7530 unsigned int vco;
7531 uint8_t tmp = 0;
7532
7533 /* FIXME other chipsets? */
7534 if (IS_GM45(dev))
7535 vco_table = ctg_vco;
7536 else if (IS_G4X(dev))
7537 vco_table = elk_vco;
7538 else if (IS_CRESTLINE(dev))
7539 vco_table = cl_vco;
7540 else if (IS_PINEVIEW(dev))
7541 vco_table = pnv_vco;
7542 else if (IS_G33(dev))
7543 vco_table = blb_vco;
7544 else
7545 return 0;
7546
7547 tmp = I915_READ(IS_MOBILE(dev) ? HPLLVCO_MOBILE : HPLLVCO);
7548
7549 vco = vco_table[tmp & 0x7];
7550 if (vco == 0)
7551 DRM_ERROR("Bad HPLL VCO (HPLLVCO=0x%02x)\n", tmp);
7552 else
7553 DRM_DEBUG_KMS("HPLL VCO %u kHz\n", vco);
7554
7555 return vco;
7556}
7557
7558static int gm45_get_display_clock_speed(struct drm_device *dev)
7559{
David Weinehall52a05c32016-08-22 13:32:44 +03007560 struct pci_dev *pdev = dev->pdev;
Ville Syrjälä34edce22015-05-22 11:22:33 +03007561 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7562 uint16_t tmp = 0;
7563
David Weinehall52a05c32016-08-22 13:32:44 +03007564 pci_read_config_word(pdev, GCFGC, &tmp);
Ville Syrjälä34edce22015-05-22 11:22:33 +03007565
7566 cdclk_sel = (tmp >> 12) & 0x1;
7567
7568 switch (vco) {
7569 case 2666667:
7570 case 4000000:
7571 case 5333333:
7572 return cdclk_sel ? 333333 : 222222;
7573 case 3200000:
7574 return cdclk_sel ? 320000 : 228571;
7575 default:
7576 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u, CFGC=0x%04x\n", vco, tmp);
7577 return 222222;
7578 }
7579}
7580
7581static int i965gm_get_display_clock_speed(struct drm_device *dev)
7582{
David Weinehall52a05c32016-08-22 13:32:44 +03007583 struct pci_dev *pdev = dev->pdev;
Ville Syrjälä34edce22015-05-22 11:22:33 +03007584 static const uint8_t div_3200[] = { 16, 10, 8 };
7585 static const uint8_t div_4000[] = { 20, 12, 10 };
7586 static const uint8_t div_5333[] = { 24, 16, 14 };
7587 const uint8_t *div_table;
7588 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7589 uint16_t tmp = 0;
7590
David Weinehall52a05c32016-08-22 13:32:44 +03007591 pci_read_config_word(pdev, GCFGC, &tmp);
Ville Syrjälä34edce22015-05-22 11:22:33 +03007592
7593 cdclk_sel = ((tmp >> 8) & 0x1f) - 1;
7594
7595 if (cdclk_sel >= ARRAY_SIZE(div_3200))
7596 goto fail;
7597
7598 switch (vco) {
7599 case 3200000:
7600 div_table = div_3200;
7601 break;
7602 case 4000000:
7603 div_table = div_4000;
7604 break;
7605 case 5333333:
7606 div_table = div_5333;
7607 break;
7608 default:
7609 goto fail;
7610 }
7611
7612 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
7613
Damien Lespiaucaf4e252015-06-04 16:56:18 +01007614fail:
Ville Syrjälä34edce22015-05-22 11:22:33 +03007615 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%04x\n", vco, tmp);
7616 return 200000;
7617}
7618
7619static int g33_get_display_clock_speed(struct drm_device *dev)
7620{
David Weinehall52a05c32016-08-22 13:32:44 +03007621 struct pci_dev *pdev = dev->pdev;
Ville Syrjälä34edce22015-05-22 11:22:33 +03007622 static const uint8_t div_3200[] = { 12, 10, 8, 7, 5, 16 };
7623 static const uint8_t div_4000[] = { 14, 12, 10, 8, 6, 20 };
7624 static const uint8_t div_4800[] = { 20, 14, 12, 10, 8, 24 };
7625 static const uint8_t div_5333[] = { 20, 16, 12, 12, 8, 28 };
7626 const uint8_t *div_table;
7627 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7628 uint16_t tmp = 0;
7629
David Weinehall52a05c32016-08-22 13:32:44 +03007630 pci_read_config_word(pdev, GCFGC, &tmp);
Ville Syrjälä34edce22015-05-22 11:22:33 +03007631
7632 cdclk_sel = (tmp >> 4) & 0x7;
7633
7634 if (cdclk_sel >= ARRAY_SIZE(div_3200))
7635 goto fail;
7636
7637 switch (vco) {
7638 case 3200000:
7639 div_table = div_3200;
7640 break;
7641 case 4000000:
7642 div_table = div_4000;
7643 break;
7644 case 4800000:
7645 div_table = div_4800;
7646 break;
7647 case 5333333:
7648 div_table = div_5333;
7649 break;
7650 default:
7651 goto fail;
7652 }
7653
7654 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
7655
Damien Lespiaucaf4e252015-06-04 16:56:18 +01007656fail:
Ville Syrjälä34edce22015-05-22 11:22:33 +03007657 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%08x\n", vco, tmp);
7658 return 190476;
7659}
7660
Zhenyu Wang2c072452009-06-05 15:38:42 +08007661static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007662intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08007663{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007664 while (*num > DATA_LINK_M_N_MASK ||
7665 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08007666 *num >>= 1;
7667 *den >>= 1;
7668 }
7669}
7670
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007671static void compute_m_n(unsigned int m, unsigned int n,
7672 uint32_t *ret_m, uint32_t *ret_n)
7673{
7674 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
7675 *ret_m = div_u64((uint64_t) m * *ret_n, n);
7676 intel_reduce_m_n_ratio(ret_m, ret_n);
7677}
7678
Daniel Vettere69d0bc2012-11-29 15:59:36 +01007679void
7680intel_link_compute_m_n(int bits_per_pixel, int nlanes,
7681 int pixel_clock, int link_clock,
7682 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08007683{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01007684 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007685
7686 compute_m_n(bits_per_pixel * pixel_clock,
7687 link_clock * nlanes * 8,
7688 &m_n->gmch_m, &m_n->gmch_n);
7689
7690 compute_m_n(pixel_clock, link_clock,
7691 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08007692}
7693
Chris Wilsona7615032011-01-12 17:04:08 +00007694static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
7695{
Jani Nikulad330a952014-01-21 11:24:25 +02007696 if (i915.panel_use_ssc >= 0)
7697 return i915.panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03007698 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07007699 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00007700}
7701
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007702static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007703{
Daniel Vetter7df00d72013-05-21 21:54:55 +02007704 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007705}
Daniel Vetterf47709a2013-03-28 10:42:02 +01007706
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007707static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
7708{
7709 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007710}
7711
Daniel Vetterf47709a2013-03-28 10:42:02 +01007712static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007713 struct intel_crtc_state *crtc_state,
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +03007714 struct dpll *reduced_clock)
Jesse Barnesa7516a02011-12-15 12:30:37 -08007715{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007716 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007717 u32 fp, fp2 = 0;
7718
7719 if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007720 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007721 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007722 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007723 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007724 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007725 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007726 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007727 }
7728
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007729 crtc_state->dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007730
Daniel Vetterf47709a2013-03-28 10:42:02 +01007731 crtc->lowfreq_avail = false;
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03007732 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Rodrigo Viviab585de2015-03-24 12:40:09 -07007733 reduced_clock) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007734 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01007735 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007736 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007737 crtc_state->dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007738 }
7739}
7740
Chon Ming Lee5e69f972013-09-05 20:41:49 +08007741static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
7742 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07007743{
7744 u32 reg_val;
7745
7746 /*
7747 * PLLB opamp always calibrates to max value of 0x3f, force enable it
7748 * and set it to a reasonable value instead.
7749 */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007750 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007751 reg_val &= 0xffffff00;
7752 reg_val |= 0x00000030;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007753 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007754
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007755 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007756 reg_val &= 0x8cffffff;
7757 reg_val = 0x8c000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007758 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007759
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007760 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007761 reg_val &= 0xffffff00;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007762 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007763
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007764 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007765 reg_val &= 0x00ffffff;
7766 reg_val |= 0xb0000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007767 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007768}
7769
Daniel Vetterb5518422013-05-03 11:49:48 +02007770static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
7771 struct intel_link_m_n *m_n)
7772{
7773 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01007774 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetterb5518422013-05-03 11:49:48 +02007775 int pipe = crtc->pipe;
7776
Daniel Vettere3b95f12013-05-03 11:49:49 +02007777 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7778 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
7779 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
7780 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02007781}
7782
7783static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -07007784 struct intel_link_m_n *m_n,
7785 struct intel_link_m_n *m2_n2)
Daniel Vetterb5518422013-05-03 11:49:48 +02007786{
7787 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01007788 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetterb5518422013-05-03 11:49:48 +02007789 int pipe = crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007790 enum transcoder transcoder = crtc->config->cpu_transcoder;
Daniel Vetterb5518422013-05-03 11:49:48 +02007791
7792 if (INTEL_INFO(dev)->gen >= 5) {
7793 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
7794 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
7795 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
7796 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
Vandana Kannanf769cd22014-08-05 07:51:22 -07007797 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
7798 * for gen < 8) and if DRRS is supported (to make sure the
7799 * registers are not unnecessarily accessed).
7800 */
Durgadoss R44395bf2015-02-13 15:33:02 +05307801 if (m2_n2 && (IS_CHERRYVIEW(dev) || INTEL_INFO(dev)->gen < 8) &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007802 crtc->config->has_drrs) {
Vandana Kannanf769cd22014-08-05 07:51:22 -07007803 I915_WRITE(PIPE_DATA_M2(transcoder),
7804 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
7805 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
7806 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
7807 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
7808 }
Daniel Vetterb5518422013-05-03 11:49:48 +02007809 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02007810 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7811 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
7812 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
7813 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02007814 }
7815}
7816
Ramalingam Cfe3cd482015-02-13 15:32:59 +05307817void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n)
Daniel Vetter03afc4a2013-04-02 23:42:31 +02007818{
Ramalingam Cfe3cd482015-02-13 15:32:59 +05307819 struct intel_link_m_n *dp_m_n, *dp_m2_n2 = NULL;
7820
7821 if (m_n == M1_N1) {
7822 dp_m_n = &crtc->config->dp_m_n;
7823 dp_m2_n2 = &crtc->config->dp_m2_n2;
7824 } else if (m_n == M2_N2) {
7825
7826 /*
7827 * M2_N2 registers are not supported. Hence m2_n2 divider value
7828 * needs to be programmed into M1_N1.
7829 */
7830 dp_m_n = &crtc->config->dp_m2_n2;
7831 } else {
7832 DRM_ERROR("Unsupported divider value\n");
7833 return;
7834 }
7835
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007836 if (crtc->config->has_pch_encoder)
7837 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02007838 else
Ramalingam Cfe3cd482015-02-13 15:32:59 +05307839 intel_cpu_transcoder_set_m_n(crtc, dp_m_n, dp_m2_n2);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02007840}
7841
Daniel Vetter251ac862015-06-18 10:30:24 +02007842static void vlv_compute_dpll(struct intel_crtc *crtc,
7843 struct intel_crtc_state *pipe_config)
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007844{
Ville Syrjälä03ed5cbf2016-03-15 16:39:55 +02007845 pipe_config->dpll_hw_state.dpll = DPLL_INTEGRATED_REF_CLK_VLV |
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +03007846 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
Ville Syrjälä03ed5cbf2016-03-15 16:39:55 +02007847 if (crtc->pipe != PIPE_A)
7848 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007849
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +03007850 /* DPLL not used with DSI, but still need the rest set up */
Ville Syrjäläd7edc4e2016-06-22 21:57:07 +03007851 if (!intel_crtc_has_type(pipe_config, INTEL_OUTPUT_DSI))
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +03007852 pipe_config->dpll_hw_state.dpll |= DPLL_VCO_ENABLE |
7853 DPLL_EXT_BUFFER_ENABLE_VLV;
7854
Ville Syrjälä03ed5cbf2016-03-15 16:39:55 +02007855 pipe_config->dpll_hw_state.dpll_md =
7856 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
7857}
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007858
Ville Syrjälä03ed5cbf2016-03-15 16:39:55 +02007859static void chv_compute_dpll(struct intel_crtc *crtc,
7860 struct intel_crtc_state *pipe_config)
7861{
7862 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLK_CHV |
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +03007863 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
Ville Syrjälä03ed5cbf2016-03-15 16:39:55 +02007864 if (crtc->pipe != PIPE_A)
7865 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
7866
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +03007867 /* DPLL not used with DSI, but still need the rest set up */
Ville Syrjäläd7edc4e2016-06-22 21:57:07 +03007868 if (!intel_crtc_has_type(pipe_config, INTEL_OUTPUT_DSI))
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +03007869 pipe_config->dpll_hw_state.dpll |= DPLL_VCO_ENABLE;
7870
Ville Syrjälä03ed5cbf2016-03-15 16:39:55 +02007871 pipe_config->dpll_hw_state.dpll_md =
7872 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007873}
7874
Ville Syrjäläd288f652014-10-28 13:20:22 +02007875static void vlv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007876 const struct intel_crtc_state *pipe_config)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007877{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007878 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01007879 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +03007880 enum pipe pipe = crtc->pipe;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007881 u32 mdiv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007882 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007883 u32 coreclk, reg_val;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007884
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +03007885 /* Enable Refclk */
7886 I915_WRITE(DPLL(pipe),
7887 pipe_config->dpll_hw_state.dpll &
7888 ~(DPLL_VCO_ENABLE | DPLL_EXT_BUFFER_ENABLE_VLV));
7889
7890 /* No need to actually set up the DPLL with DSI */
7891 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
7892 return;
7893
Ville Syrjäläa5805162015-05-26 20:42:30 +03007894 mutex_lock(&dev_priv->sb_lock);
Daniel Vetter09153002012-12-12 14:06:44 +01007895
Ville Syrjäläd288f652014-10-28 13:20:22 +02007896 bestn = pipe_config->dpll.n;
7897 bestm1 = pipe_config->dpll.m1;
7898 bestm2 = pipe_config->dpll.m2;
7899 bestp1 = pipe_config->dpll.p1;
7900 bestp2 = pipe_config->dpll.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007901
Jesse Barnes89b667f2013-04-18 14:51:36 -07007902 /* See eDP HDMI DPIO driver vbios notes doc */
7903
7904 /* PLL B needs special handling */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007905 if (pipe == PIPE_B)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08007906 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007907
7908 /* Set up Tx target for periodic Rcomp update */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007909 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007910
7911 /* Disable target IRef on PLL */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007912 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007913 reg_val &= 0x00ffffff;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007914 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007915
7916 /* Disable fast lock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007917 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007918
7919 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007920 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
7921 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
7922 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007923 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07007924
7925 /*
7926 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
7927 * but we don't support that).
7928 * Note: don't use the DAC post divider as it seems unstable.
7929 */
7930 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007931 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007932
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007933 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007934 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007935
Jesse Barnes89b667f2013-04-18 14:51:36 -07007936 /* Set HBR and RBR LPF coefficients */
Ville Syrjäläd288f652014-10-28 13:20:22 +02007937 if (pipe_config->port_clock == 162000 ||
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03007938 intel_crtc_has_type(crtc->config, INTEL_OUTPUT_ANALOG) ||
7939 intel_crtc_has_type(crtc->config, INTEL_OUTPUT_HDMI))
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007940 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Ville Syrjälä885b01202013-07-05 19:21:38 +03007941 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007942 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007943 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007944 0x00d0000f);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007945
Ville Syrjälä37a56502016-06-22 21:57:04 +03007946 if (intel_crtc_has_dp_encoder(pipe_config)) {
Jesse Barnes89b667f2013-04-18 14:51:36 -07007947 /* Use SSC source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007948 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007949 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007950 0x0df40000);
7951 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007952 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007953 0x0df70000);
7954 } else { /* HDMI or VGA */
7955 /* Use bend source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007956 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007957 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007958 0x0df70000);
7959 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007960 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007961 0x0df40000);
7962 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007963
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007964 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007965 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
Ville Syrjälä2210ce72016-06-22 21:57:05 +03007966 if (intel_crtc_has_dp_encoder(crtc->config))
Jesse Barnes89b667f2013-04-18 14:51:36 -07007967 coreclk |= 0x01000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007968 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007969
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007970 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
Ville Syrjäläa5805162015-05-26 20:42:30 +03007971 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007972}
7973
Ville Syrjäläd288f652014-10-28 13:20:22 +02007974static void chv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007975 const struct intel_crtc_state *pipe_config)
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007976{
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007977 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01007978 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +03007979 enum pipe pipe = crtc->pipe;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007980 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307981 u32 loopfilter, tribuf_calcntr;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007982 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307983 u32 dpio_val;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307984 int vco;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007985
Ville Syrjäläcd2d34d2016-04-12 22:14:34 +03007986 /* Enable Refclk and SSC */
7987 I915_WRITE(DPLL(pipe),
7988 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
7989
7990 /* No need to actually set up the DPLL with DSI */
7991 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
7992 return;
7993
Ville Syrjäläd288f652014-10-28 13:20:22 +02007994 bestn = pipe_config->dpll.n;
7995 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
7996 bestm1 = pipe_config->dpll.m1;
7997 bestm2 = pipe_config->dpll.m2 >> 22;
7998 bestp1 = pipe_config->dpll.p1;
7999 bestp2 = pipe_config->dpll.p2;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05308000 vco = pipe_config->dpll.vco;
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05308001 dpio_val = 0;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05308002 loopfilter = 0;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03008003
Ville Syrjäläa5805162015-05-26 20:42:30 +03008004 mutex_lock(&dev_priv->sb_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03008005
Chon Ming Lee9d556c92014-05-02 14:27:47 +03008006 /* p1 and p2 divider */
8007 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
8008 5 << DPIO_CHV_S1_DIV_SHIFT |
8009 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
8010 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
8011 1 << DPIO_CHV_K_DIV_SHIFT);
8012
8013 /* Feedback post-divider - m2 */
8014 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
8015
8016 /* Feedback refclk divider - n and m1 */
8017 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
8018 DPIO_CHV_M1_DIV_BY_2 |
8019 1 << DPIO_CHV_N_DIV_SHIFT);
8020
8021 /* M2 fraction division */
Ville Syrjälä25a25df2015-07-08 23:45:47 +03008022 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03008023
8024 /* M2 fraction division enable */
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05308025 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
8026 dpio_val &= ~(DPIO_CHV_FEEDFWD_GAIN_MASK | DPIO_CHV_FRAC_DIV_EN);
8027 dpio_val |= (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT);
8028 if (bestm2_frac)
8029 dpio_val |= DPIO_CHV_FRAC_DIV_EN;
8030 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port), dpio_val);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03008031
Vijay Purushothamande3a0fd2015-03-05 19:32:06 +05308032 /* Program digital lock detect threshold */
8033 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW9(port));
8034 dpio_val &= ~(DPIO_CHV_INT_LOCK_THRESHOLD_MASK |
8035 DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE);
8036 dpio_val |= (0x5 << DPIO_CHV_INT_LOCK_THRESHOLD_SHIFT);
8037 if (!bestm2_frac)
8038 dpio_val |= DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE;
8039 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW9(port), dpio_val);
8040
Chon Ming Lee9d556c92014-05-02 14:27:47 +03008041 /* Loop filter */
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05308042 if (vco == 5400000) {
8043 loopfilter |= (0x3 << DPIO_CHV_PROP_COEFF_SHIFT);
8044 loopfilter |= (0x8 << DPIO_CHV_INT_COEFF_SHIFT);
8045 loopfilter |= (0x1 << DPIO_CHV_GAIN_CTRL_SHIFT);
8046 tribuf_calcntr = 0x9;
8047 } else if (vco <= 6200000) {
8048 loopfilter |= (0x5 << DPIO_CHV_PROP_COEFF_SHIFT);
8049 loopfilter |= (0xB << DPIO_CHV_INT_COEFF_SHIFT);
8050 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
8051 tribuf_calcntr = 0x9;
8052 } else if (vco <= 6480000) {
8053 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
8054 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
8055 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
8056 tribuf_calcntr = 0x8;
8057 } else {
8058 /* Not supported. Apply the same limits as in the max case */
8059 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
8060 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
8061 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
8062 tribuf_calcntr = 0;
8063 }
Chon Ming Lee9d556c92014-05-02 14:27:47 +03008064 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
8065
Ville Syrjälä968040b2015-03-11 22:52:08 +02008066 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW8(port));
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05308067 dpio_val &= ~DPIO_CHV_TDC_TARGET_CNT_MASK;
8068 dpio_val |= (tribuf_calcntr << DPIO_CHV_TDC_TARGET_CNT_SHIFT);
8069 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW8(port), dpio_val);
8070
Chon Ming Lee9d556c92014-05-02 14:27:47 +03008071 /* AFC Recal */
8072 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
8073 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
8074 DPIO_AFC_RECAL);
8075
Ville Syrjäläa5805162015-05-26 20:42:30 +03008076 mutex_unlock(&dev_priv->sb_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03008077}
8078
Ville Syrjäläd288f652014-10-28 13:20:22 +02008079/**
8080 * vlv_force_pll_on - forcibly enable just the PLL
8081 * @dev_priv: i915 private structure
8082 * @pipe: pipe PLL to enable
8083 * @dpll: PLL configuration
8084 *
8085 * Enable the PLL for @pipe using the supplied @dpll config. To be used
8086 * in cases where we need the PLL enabled even when @pipe is not going to
8087 * be enabled.
8088 */
Tvrtko Ursulin3f36b932016-01-19 15:25:17 +00008089int vlv_force_pll_on(struct drm_device *dev, enum pipe pipe,
8090 const struct dpll *dpll)
Ville Syrjäläd288f652014-10-28 13:20:22 +02008091{
8092 struct intel_crtc *crtc =
8093 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
Tvrtko Ursulin3f36b932016-01-19 15:25:17 +00008094 struct intel_crtc_state *pipe_config;
8095
8096 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
8097 if (!pipe_config)
8098 return -ENOMEM;
8099
8100 pipe_config->base.crtc = &crtc->base;
8101 pipe_config->pixel_multiplier = 1;
8102 pipe_config->dpll = *dpll;
Ville Syrjäläd288f652014-10-28 13:20:22 +02008103
8104 if (IS_CHERRYVIEW(dev)) {
Tvrtko Ursulin3f36b932016-01-19 15:25:17 +00008105 chv_compute_dpll(crtc, pipe_config);
8106 chv_prepare_pll(crtc, pipe_config);
8107 chv_enable_pll(crtc, pipe_config);
Ville Syrjäläd288f652014-10-28 13:20:22 +02008108 } else {
Tvrtko Ursulin3f36b932016-01-19 15:25:17 +00008109 vlv_compute_dpll(crtc, pipe_config);
8110 vlv_prepare_pll(crtc, pipe_config);
8111 vlv_enable_pll(crtc, pipe_config);
Ville Syrjäläd288f652014-10-28 13:20:22 +02008112 }
Tvrtko Ursulin3f36b932016-01-19 15:25:17 +00008113
8114 kfree(pipe_config);
8115
8116 return 0;
Ville Syrjäläd288f652014-10-28 13:20:22 +02008117}
8118
8119/**
8120 * vlv_force_pll_off - forcibly disable just the PLL
8121 * @dev_priv: i915 private structure
8122 * @pipe: pipe PLL to disable
8123 *
8124 * Disable the PLL for @pipe. To be used in cases where we need
8125 * the PLL enabled even when @pipe is not going to be enabled.
8126 */
8127void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe)
8128{
8129 if (IS_CHERRYVIEW(dev))
8130 chv_disable_pll(to_i915(dev), pipe);
8131 else
8132 vlv_disable_pll(to_i915(dev), pipe);
8133}
8134
Daniel Vetter251ac862015-06-18 10:30:24 +02008135static void i9xx_compute_dpll(struct intel_crtc *crtc,
8136 struct intel_crtc_state *crtc_state,
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +03008137 struct dpll *reduced_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02008138{
Daniel Vetterf47709a2013-03-28 10:42:02 +01008139 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01008140 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02008141 u32 dpll;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008142 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02008143
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008144 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05308145
Daniel Vettereb1cbe42012-03-28 23:12:16 +02008146 dpll = DPLL_VGA_MODE_DIS;
8147
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03008148 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02008149 dpll |= DPLLB_MODE_LVDS;
8150 else
8151 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01008152
Daniel Vetteref1b4602013-06-01 17:17:04 +02008153 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008154 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetter198a037f2013-04-19 11:14:37 +02008155 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02008156 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02008157
Ville Syrjälä3d6e9ee2016-06-22 21:57:03 +03008158 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_SDVO) ||
8159 intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI))
Daniel Vetter4a33e482013-07-06 12:52:05 +02008160 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02008161
Ville Syrjälä37a56502016-06-22 21:57:04 +03008162 if (intel_crtc_has_dp_encoder(crtc_state))
Daniel Vetter4a33e482013-07-06 12:52:05 +02008163 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02008164
8165 /* compute bitmask from p1 value */
8166 if (IS_PINEVIEW(dev))
8167 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
8168 else {
8169 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
8170 if (IS_G4X(dev) && reduced_clock)
8171 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
8172 }
8173 switch (clock->p2) {
8174 case 5:
8175 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
8176 break;
8177 case 7:
8178 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
8179 break;
8180 case 10:
8181 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
8182 break;
8183 case 14:
8184 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
8185 break;
8186 }
8187 if (INTEL_INFO(dev)->gen >= 4)
8188 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
8189
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008190 if (crtc_state->sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02008191 dpll |= PLL_REF_INPUT_TVCLKINBC;
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03008192 else if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Ander Conselvan de Oliveiraceb41002016-03-21 18:00:02 +02008193 intel_panel_use_ssc(dev_priv))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02008194 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
8195 else
8196 dpll |= PLL_REF_INPUT_DREFCLK;
8197
8198 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008199 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008200
Daniel Vettereb1cbe42012-03-28 23:12:16 +02008201 if (INTEL_INFO(dev)->gen >= 4) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008202 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02008203 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008204 crtc_state->dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02008205 }
8206}
8207
Daniel Vetter251ac862015-06-18 10:30:24 +02008208static void i8xx_compute_dpll(struct intel_crtc *crtc,
8209 struct intel_crtc_state *crtc_state,
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +03008210 struct dpll *reduced_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02008211{
Daniel Vetterf47709a2013-03-28 10:42:02 +01008212 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01008213 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02008214 u32 dpll;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008215 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02008216
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008217 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05308218
Daniel Vettereb1cbe42012-03-28 23:12:16 +02008219 dpll = DPLL_VGA_MODE_DIS;
8220
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03008221 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02008222 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
8223 } else {
8224 if (clock->p1 == 2)
8225 dpll |= PLL_P1_DIVIDE_BY_TWO;
8226 else
8227 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
8228 if (clock->p2 == 4)
8229 dpll |= PLL_P2_DIVIDE_BY_4;
8230 }
8231
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03008232 if (!IS_I830(dev) && intel_crtc_has_type(crtc_state, INTEL_OUTPUT_DVO))
Daniel Vetter4a33e482013-07-06 12:52:05 +02008233 dpll |= DPLL_DVO_2X_MODE;
8234
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03008235 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Ander Conselvan de Oliveiraceb41002016-03-21 18:00:02 +02008236 intel_panel_use_ssc(dev_priv))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02008237 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
8238 else
8239 dpll |= PLL_REF_INPUT_DREFCLK;
8240
8241 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008242 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02008243}
8244
Daniel Vetter8a654f32013-06-01 17:16:22 +02008245static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03008246{
8247 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01008248 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03008249 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008250 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03008251 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02008252 uint32_t crtc_vtotal, crtc_vblank_end;
8253 int vsyncshift = 0;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02008254
8255 /* We need to be careful not to changed the adjusted mode, for otherwise
8256 * the hw state checker will get angry at the mismatch. */
8257 crtc_vtotal = adjusted_mode->crtc_vtotal;
8258 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03008259
Ville Syrjälä609aeac2014-03-28 23:29:30 +02008260 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Paulo Zanonib0e77b92012-10-01 18:10:53 -03008261 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02008262 crtc_vtotal -= 1;
8263 crtc_vblank_end -= 1;
Ville Syrjälä609aeac2014-03-28 23:29:30 +02008264
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03008265 if (intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_SDVO))
Ville Syrjälä609aeac2014-03-28 23:29:30 +02008266 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
8267 else
8268 vsyncshift = adjusted_mode->crtc_hsync_start -
8269 adjusted_mode->crtc_htotal / 2;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02008270 if (vsyncshift < 0)
8271 vsyncshift += adjusted_mode->crtc_htotal;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03008272 }
8273
8274 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02008275 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03008276
Paulo Zanonife2b8f92012-10-23 18:30:02 -02008277 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03008278 (adjusted_mode->crtc_hdisplay - 1) |
8279 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02008280 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03008281 (adjusted_mode->crtc_hblank_start - 1) |
8282 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02008283 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03008284 (adjusted_mode->crtc_hsync_start - 1) |
8285 ((adjusted_mode->crtc_hsync_end - 1) << 16));
8286
Paulo Zanonife2b8f92012-10-23 18:30:02 -02008287 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03008288 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02008289 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02008290 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03008291 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02008292 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02008293 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03008294 (adjusted_mode->crtc_vsync_start - 1) |
8295 ((adjusted_mode->crtc_vsync_end - 1) << 16));
8296
Paulo Zanonib5e508d2012-10-24 11:34:43 -02008297 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
8298 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
8299 * documented on the DDI_FUNC_CTL register description, EDP Input Select
8300 * bits. */
8301 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
8302 (pipe == PIPE_B || pipe == PIPE_C))
8303 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
8304
Jani Nikulabc58be62016-03-18 17:05:39 +02008305}
8306
8307static void intel_set_pipe_src_size(struct intel_crtc *intel_crtc)
8308{
8309 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01008310 struct drm_i915_private *dev_priv = to_i915(dev);
Jani Nikulabc58be62016-03-18 17:05:39 +02008311 enum pipe pipe = intel_crtc->pipe;
8312
Paulo Zanonib0e77b92012-10-01 18:10:53 -03008313 /* pipesrc controls the size that is scaled from, which should
8314 * always be the user's requested size.
8315 */
8316 I915_WRITE(PIPESRC(pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008317 ((intel_crtc->config->pipe_src_w - 1) << 16) |
8318 (intel_crtc->config->pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03008319}
8320
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008321static void intel_get_pipe_timings(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008322 struct intel_crtc_state *pipe_config)
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008323{
8324 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01008325 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008326 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
8327 uint32_t tmp;
8328
8329 tmp = I915_READ(HTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02008330 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
8331 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008332 tmp = I915_READ(HBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02008333 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
8334 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008335 tmp = I915_READ(HSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02008336 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
8337 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008338
8339 tmp = I915_READ(VTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02008340 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
8341 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008342 tmp = I915_READ(VBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02008343 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
8344 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008345 tmp = I915_READ(VSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02008346 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
8347 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008348
8349 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02008350 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
8351 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
8352 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008353 }
Jani Nikulabc58be62016-03-18 17:05:39 +02008354}
8355
8356static void intel_get_pipe_src_size(struct intel_crtc *crtc,
8357 struct intel_crtc_state *pipe_config)
8358{
8359 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01008360 struct drm_i915_private *dev_priv = to_i915(dev);
Jani Nikulabc58be62016-03-18 17:05:39 +02008361 u32 tmp;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008362
8363 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03008364 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
8365 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
8366
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02008367 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
8368 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008369}
8370
Daniel Vetterf6a83282014-02-11 15:28:57 -08008371void intel_mode_from_pipe_config(struct drm_display_mode *mode,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008372 struct intel_crtc_state *pipe_config)
Jesse Barnesbabea612013-06-26 18:57:38 +03008373{
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02008374 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
8375 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
8376 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
8377 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03008378
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02008379 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
8380 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
8381 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
8382 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03008383
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02008384 mode->flags = pipe_config->base.adjusted_mode.flags;
Maarten Lankhorstcd13f5a2015-07-14 14:12:02 +02008385 mode->type = DRM_MODE_TYPE_DRIVER;
Jesse Barnesbabea612013-06-26 18:57:38 +03008386
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02008387 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
8388 mode->flags |= pipe_config->base.adjusted_mode.flags;
Maarten Lankhorstcd13f5a2015-07-14 14:12:02 +02008389
8390 mode->hsync = drm_mode_hsync(mode);
8391 mode->vrefresh = drm_mode_vrefresh(mode);
8392 drm_mode_set_name(mode);
Jesse Barnesbabea612013-06-26 18:57:38 +03008393}
8394
Daniel Vetter84b046f2013-02-19 18:48:54 +01008395static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
8396{
8397 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01008398 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter84b046f2013-02-19 18:48:54 +01008399 uint32_t pipeconf;
8400
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02008401 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01008402
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03008403 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
8404 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
8405 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
Daniel Vetter67c72a12013-09-24 11:46:14 +02008406
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008407 if (intel_crtc->config->double_wide)
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03008408 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01008409
Daniel Vetterff9ce462013-04-24 14:57:17 +02008410 /* only g4x and later have fancy bpc/dither controls */
Wayne Boyer666a4532015-12-09 12:29:35 -08008411 if (IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02008412 /* Bspec claims that we can't use dithering for 30bpp pipes. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008413 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
Daniel Vetterff9ce462013-04-24 14:57:17 +02008414 pipeconf |= PIPECONF_DITHER_EN |
8415 PIPECONF_DITHER_TYPE_SP;
8416
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008417 switch (intel_crtc->config->pipe_bpp) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02008418 case 18:
8419 pipeconf |= PIPECONF_6BPC;
8420 break;
8421 case 24:
8422 pipeconf |= PIPECONF_8BPC;
8423 break;
8424 case 30:
8425 pipeconf |= PIPECONF_10BPC;
8426 break;
8427 default:
8428 /* Case prevented by intel_choose_pipe_bpp_dither. */
8429 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01008430 }
8431 }
8432
8433 if (HAS_PIPE_CXSR(dev)) {
8434 if (intel_crtc->lowfreq_avail) {
8435 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
8436 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
8437 } else {
8438 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01008439 }
8440 }
8441
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008442 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02008443 if (INTEL_INFO(dev)->gen < 4 ||
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03008444 intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_SDVO))
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02008445 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
8446 else
8447 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
8448 } else
Daniel Vetter84b046f2013-02-19 18:48:54 +01008449 pipeconf |= PIPECONF_PROGRESSIVE;
8450
Wayne Boyer666a4532015-12-09 12:29:35 -08008451 if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) &&
8452 intel_crtc->config->limited_color_range)
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02008453 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03008454
Daniel Vetter84b046f2013-02-19 18:48:54 +01008455 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
8456 POSTING_READ(PIPECONF(intel_crtc->pipe));
8457}
8458
Ander Conselvan de Oliveira81c97f52016-03-22 15:35:23 +02008459static int i8xx_crtc_compute_clock(struct intel_crtc *crtc,
8460 struct intel_crtc_state *crtc_state)
8461{
8462 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01008463 struct drm_i915_private *dev_priv = to_i915(dev);
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +03008464 const struct intel_limit *limit;
Ander Conselvan de Oliveira81c97f52016-03-22 15:35:23 +02008465 int refclk = 48000;
8466
8467 memset(&crtc_state->dpll_hw_state, 0,
8468 sizeof(crtc_state->dpll_hw_state));
8469
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03008470 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Ander Conselvan de Oliveira81c97f52016-03-22 15:35:23 +02008471 if (intel_panel_use_ssc(dev_priv)) {
8472 refclk = dev_priv->vbt.lvds_ssc_freq;
8473 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
8474 }
8475
8476 limit = &intel_limits_i8xx_lvds;
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03008477 } else if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_DVO)) {
Ander Conselvan de Oliveira81c97f52016-03-22 15:35:23 +02008478 limit = &intel_limits_i8xx_dvo;
8479 } else {
8480 limit = &intel_limits_i8xx_dac;
8481 }
8482
8483 if (!crtc_state->clock_set &&
8484 !i9xx_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8485 refclk, NULL, &crtc_state->dpll)) {
8486 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8487 return -EINVAL;
8488 }
8489
8490 i8xx_compute_dpll(crtc, crtc_state, NULL);
8491
8492 return 0;
8493}
8494
Ander Conselvan de Oliveira19ec6692016-03-21 18:00:15 +02008495static int g4x_crtc_compute_clock(struct intel_crtc *crtc,
8496 struct intel_crtc_state *crtc_state)
8497{
8498 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01008499 struct drm_i915_private *dev_priv = to_i915(dev);
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +03008500 const struct intel_limit *limit;
Ander Conselvan de Oliveira19ec6692016-03-21 18:00:15 +02008501 int refclk = 96000;
8502
8503 memset(&crtc_state->dpll_hw_state, 0,
8504 sizeof(crtc_state->dpll_hw_state));
8505
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03008506 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Ander Conselvan de Oliveira19ec6692016-03-21 18:00:15 +02008507 if (intel_panel_use_ssc(dev_priv)) {
8508 refclk = dev_priv->vbt.lvds_ssc_freq;
8509 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
8510 }
8511
8512 if (intel_is_dual_link_lvds(dev))
8513 limit = &intel_limits_g4x_dual_channel_lvds;
8514 else
8515 limit = &intel_limits_g4x_single_channel_lvds;
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03008516 } else if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI) ||
8517 intel_crtc_has_type(crtc_state, INTEL_OUTPUT_ANALOG)) {
Ander Conselvan de Oliveira19ec6692016-03-21 18:00:15 +02008518 limit = &intel_limits_g4x_hdmi;
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03008519 } else if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_SDVO)) {
Ander Conselvan de Oliveira19ec6692016-03-21 18:00:15 +02008520 limit = &intel_limits_g4x_sdvo;
8521 } else {
8522 /* The option is for other outputs */
8523 limit = &intel_limits_i9xx_sdvo;
8524 }
8525
8526 if (!crtc_state->clock_set &&
8527 !g4x_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8528 refclk, NULL, &crtc_state->dpll)) {
8529 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8530 return -EINVAL;
8531 }
8532
8533 i9xx_compute_dpll(crtc, crtc_state, NULL);
8534
8535 return 0;
8536}
8537
Ander Conselvan de Oliveira70e8aa22016-03-21 18:00:16 +02008538static int pnv_crtc_compute_clock(struct intel_crtc *crtc,
8539 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08008540{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008541 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01008542 struct drm_i915_private *dev_priv = to_i915(dev);
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +03008543 const struct intel_limit *limit;
Ander Conselvan de Oliveira81c97f52016-03-22 15:35:23 +02008544 int refclk = 96000;
Jesse Barnes79e53942008-11-07 14:24:08 -08008545
Ander Conselvan de Oliveiradd3cd742015-05-15 13:34:29 +03008546 memset(&crtc_state->dpll_hw_state, 0,
8547 sizeof(crtc_state->dpll_hw_state));
8548
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03008549 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Ander Conselvan de Oliveira70e8aa22016-03-21 18:00:16 +02008550 if (intel_panel_use_ssc(dev_priv)) {
8551 refclk = dev_priv->vbt.lvds_ssc_freq;
8552 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
8553 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008554
Ander Conselvan de Oliveira70e8aa22016-03-21 18:00:16 +02008555 limit = &intel_limits_pineview_lvds;
8556 } else {
8557 limit = &intel_limits_pineview_sdvo;
Ander Conselvan de Oliveira81c97f52016-03-22 15:35:23 +02008558 }
Jani Nikulaf2335332013-09-13 11:03:09 +03008559
Ander Conselvan de Oliveira70e8aa22016-03-21 18:00:16 +02008560 if (!crtc_state->clock_set &&
8561 !pnv_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8562 refclk, NULL, &crtc_state->dpll)) {
8563 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8564 return -EINVAL;
8565 }
8566
8567 i9xx_compute_dpll(crtc, crtc_state, NULL);
8568
8569 return 0;
8570}
8571
8572static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
8573 struct intel_crtc_state *crtc_state)
8574{
8575 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01008576 struct drm_i915_private *dev_priv = to_i915(dev);
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +03008577 const struct intel_limit *limit;
Ander Conselvan de Oliveira70e8aa22016-03-21 18:00:16 +02008578 int refclk = 96000;
8579
8580 memset(&crtc_state->dpll_hw_state, 0,
8581 sizeof(crtc_state->dpll_hw_state));
8582
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03008583 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Ander Conselvan de Oliveira70e8aa22016-03-21 18:00:16 +02008584 if (intel_panel_use_ssc(dev_priv)) {
8585 refclk = dev_priv->vbt.lvds_ssc_freq;
8586 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03008587 }
Ander Conselvan de Oliveira70e8aa22016-03-21 18:00:16 +02008588
8589 limit = &intel_limits_i9xx_lvds;
8590 } else {
8591 limit = &intel_limits_i9xx_sdvo;
8592 }
8593
8594 if (!crtc_state->clock_set &&
8595 !i9xx_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8596 refclk, NULL, &crtc_state->dpll)) {
8597 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8598 return -EINVAL;
Daniel Vetterf47709a2013-03-28 10:42:02 +01008599 }
Eric Anholtf564048e2011-03-30 13:01:02 -07008600
Ander Conselvan de Oliveira81c97f52016-03-22 15:35:23 +02008601 i9xx_compute_dpll(crtc, crtc_state, NULL);
Eric Anholtf564048e2011-03-30 13:01:02 -07008602
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02008603 return 0;
Eric Anholtf564048e2011-03-30 13:01:02 -07008604}
8605
Ander Conselvan de Oliveira65b3d6a2016-03-21 18:00:13 +02008606static int chv_crtc_compute_clock(struct intel_crtc *crtc,
8607 struct intel_crtc_state *crtc_state)
8608{
8609 int refclk = 100000;
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +03008610 const struct intel_limit *limit = &intel_limits_chv;
Ander Conselvan de Oliveira65b3d6a2016-03-21 18:00:13 +02008611
8612 memset(&crtc_state->dpll_hw_state, 0,
8613 sizeof(crtc_state->dpll_hw_state));
8614
Ander Conselvan de Oliveira65b3d6a2016-03-21 18:00:13 +02008615 if (!crtc_state->clock_set &&
8616 !chv_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8617 refclk, NULL, &crtc_state->dpll)) {
8618 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8619 return -EINVAL;
8620 }
8621
8622 chv_compute_dpll(crtc, crtc_state);
8623
8624 return 0;
8625}
8626
8627static int vlv_crtc_compute_clock(struct intel_crtc *crtc,
8628 struct intel_crtc_state *crtc_state)
8629{
8630 int refclk = 100000;
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +03008631 const struct intel_limit *limit = &intel_limits_vlv;
Ander Conselvan de Oliveira65b3d6a2016-03-21 18:00:13 +02008632
8633 memset(&crtc_state->dpll_hw_state, 0,
8634 sizeof(crtc_state->dpll_hw_state));
8635
Ander Conselvan de Oliveira65b3d6a2016-03-21 18:00:13 +02008636 if (!crtc_state->clock_set &&
8637 !vlv_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8638 refclk, NULL, &crtc_state->dpll)) {
8639 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8640 return -EINVAL;
8641 }
8642
8643 vlv_compute_dpll(crtc, crtc_state);
8644
8645 return 0;
8646}
8647
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008648static void i9xx_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008649 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008650{
8651 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01008652 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008653 uint32_t tmp;
8654
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02008655 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
8656 return;
8657
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008658 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02008659 if (!(tmp & PFIT_ENABLE))
8660 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008661
Daniel Vetter06922822013-07-11 13:35:40 +02008662 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008663 if (INTEL_INFO(dev)->gen < 4) {
8664 if (crtc->pipe != PIPE_B)
8665 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008666 } else {
8667 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
8668 return;
8669 }
8670
Daniel Vetter06922822013-07-11 13:35:40 +02008671 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008672 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008673}
8674
Jesse Barnesacbec812013-09-20 11:29:32 -07008675static void vlv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008676 struct intel_crtc_state *pipe_config)
Jesse Barnesacbec812013-09-20 11:29:32 -07008677{
8678 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01008679 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnesacbec812013-09-20 11:29:32 -07008680 int pipe = pipe_config->cpu_transcoder;
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +03008681 struct dpll clock;
Jesse Barnesacbec812013-09-20 11:29:32 -07008682 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07008683 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07008684
Ville Syrjäläb5219732016-03-15 16:40:01 +02008685 /* In case of DSI, DPLL will not be used */
8686 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
Shobhit Kumarf573de52014-07-30 20:32:37 +05308687 return;
8688
Ville Syrjäläa5805162015-05-26 20:42:30 +03008689 mutex_lock(&dev_priv->sb_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08008690 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
Ville Syrjäläa5805162015-05-26 20:42:30 +03008691 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnesacbec812013-09-20 11:29:32 -07008692
8693 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
8694 clock.m2 = mdiv & DPIO_M2DIV_MASK;
8695 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
8696 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
8697 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
8698
Imre Deakdccbea32015-06-22 23:35:51 +03008699 pipe_config->port_clock = vlv_calc_dpll_params(refclk, &clock);
Jesse Barnesacbec812013-09-20 11:29:32 -07008700}
8701
Damien Lespiau5724dbd2015-01-20 12:51:52 +00008702static void
8703i9xx_get_initial_plane_config(struct intel_crtc *crtc,
8704 struct intel_initial_plane_config *plane_config)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008705{
8706 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01008707 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008708 u32 val, base, offset;
8709 int pipe = crtc->pipe, plane = crtc->plane;
8710 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00008711 unsigned int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008712 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00008713 struct intel_framebuffer *intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008714
Damien Lespiau42a7b082015-02-05 19:35:13 +00008715 val = I915_READ(DSPCNTR(plane));
8716 if (!(val & DISPLAY_PLANE_ENABLE))
8717 return;
8718
Damien Lespiaud9806c92015-01-21 14:07:19 +00008719 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00008720 if (!intel_fb) {
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008721 DRM_DEBUG_KMS("failed to alloc fb\n");
8722 return;
8723 }
8724
Damien Lespiau1b842c82015-01-21 13:50:54 +00008725 fb = &intel_fb->base;
8726
Daniel Vetter18c52472015-02-10 17:16:09 +00008727 if (INTEL_INFO(dev)->gen >= 4) {
8728 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00008729 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00008730 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
8731 }
8732 }
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008733
8734 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00008735 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008736 fb->pixel_format = fourcc;
8737 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008738
8739 if (INTEL_INFO(dev)->gen >= 4) {
Damien Lespiau49af4492015-01-20 12:51:44 +00008740 if (plane_config->tiling)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008741 offset = I915_READ(DSPTILEOFF(plane));
8742 else
8743 offset = I915_READ(DSPLINOFF(plane));
8744 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
8745 } else {
8746 base = I915_READ(DSPADDR(plane));
8747 }
8748 plane_config->base = base;
8749
8750 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008751 fb->width = ((val >> 16) & 0xfff) + 1;
8752 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008753
8754 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008755 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008756
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008757 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00008758 fb->pixel_format,
8759 fb->modifier[0]);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008760
Daniel Vetterf37b5c22015-02-10 23:12:27 +01008761 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008762
Damien Lespiau2844a922015-01-20 12:51:48 +00008763 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
8764 pipe_name(pipe), plane, fb->width, fb->height,
8765 fb->bits_per_pixel, base, fb->pitches[0],
8766 plane_config->size);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008767
Damien Lespiau2d140302015-02-05 17:22:18 +00008768 plane_config->fb = intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008769}
8770
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008771static void chv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008772 struct intel_crtc_state *pipe_config)
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008773{
8774 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01008775 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008776 int pipe = pipe_config->cpu_transcoder;
8777 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +03008778 struct dpll clock;
Imre Deak0d7b6b12015-07-02 14:29:58 +03008779 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2, pll_dw3;
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008780 int refclk = 100000;
8781
Ville Syrjäläb5219732016-03-15 16:40:01 +02008782 /* In case of DSI, DPLL will not be used */
8783 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
8784 return;
8785
Ville Syrjäläa5805162015-05-26 20:42:30 +03008786 mutex_lock(&dev_priv->sb_lock);
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008787 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
8788 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
8789 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
8790 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
Imre Deak0d7b6b12015-07-02 14:29:58 +03008791 pll_dw3 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
Ville Syrjäläa5805162015-05-26 20:42:30 +03008792 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008793
8794 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
Imre Deak0d7b6b12015-07-02 14:29:58 +03008795 clock.m2 = (pll_dw0 & 0xff) << 22;
8796 if (pll_dw3 & DPIO_CHV_FRAC_DIV_EN)
8797 clock.m2 |= pll_dw2 & 0x3fffff;
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008798 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
8799 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
8800 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
8801
Imre Deakdccbea32015-06-22 23:35:51 +03008802 pipe_config->port_clock = chv_calc_dpll_params(refclk, &clock);
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008803}
8804
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008805static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008806 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008807{
8808 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01008809 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak17290502016-02-12 18:55:11 +02008810 enum intel_display_power_domain power_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008811 uint32_t tmp;
Imre Deak17290502016-02-12 18:55:11 +02008812 bool ret;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008813
Imre Deak17290502016-02-12 18:55:11 +02008814 power_domain = POWER_DOMAIN_PIPE(crtc->pipe);
8815 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Imre Deakb5482bd2014-03-05 16:20:55 +02008816 return false;
8817
Daniel Vettere143a212013-07-04 12:01:15 +02008818 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +02008819 pipe_config->shared_dpll = NULL;
Daniel Vettereccb1402013-05-22 00:50:22 +02008820
Imre Deak17290502016-02-12 18:55:11 +02008821 ret = false;
8822
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008823 tmp = I915_READ(PIPECONF(crtc->pipe));
8824 if (!(tmp & PIPECONF_ENABLE))
Imre Deak17290502016-02-12 18:55:11 +02008825 goto out;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008826
Wayne Boyer666a4532015-12-09 12:29:35 -08008827 if (IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Ville Syrjälä42571ae2013-09-06 23:29:00 +03008828 switch (tmp & PIPECONF_BPC_MASK) {
8829 case PIPECONF_6BPC:
8830 pipe_config->pipe_bpp = 18;
8831 break;
8832 case PIPECONF_8BPC:
8833 pipe_config->pipe_bpp = 24;
8834 break;
8835 case PIPECONF_10BPC:
8836 pipe_config->pipe_bpp = 30;
8837 break;
8838 default:
8839 break;
8840 }
8841 }
8842
Wayne Boyer666a4532015-12-09 12:29:35 -08008843 if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) &&
8844 (tmp & PIPECONF_COLOR_RANGE_SELECT))
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02008845 pipe_config->limited_color_range = true;
8846
Ville Syrjälä282740f2013-09-04 18:30:03 +03008847 if (INTEL_INFO(dev)->gen < 4)
8848 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
8849
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008850 intel_get_pipe_timings(crtc, pipe_config);
Jani Nikulabc58be62016-03-18 17:05:39 +02008851 intel_get_pipe_src_size(crtc, pipe_config);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008852
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008853 i9xx_get_pfit_config(crtc, pipe_config);
8854
Daniel Vetter6c49f242013-06-06 12:45:25 +02008855 if (INTEL_INFO(dev)->gen >= 4) {
Ville Syrjäläc2317752016-03-15 16:39:56 +02008856 /* No way to read it out on pipes B and C */
8857 if (IS_CHERRYVIEW(dev) && crtc->pipe != PIPE_A)
8858 tmp = dev_priv->chv_dpll_md[crtc->pipe];
8859 else
8860 tmp = I915_READ(DPLL_MD(crtc->pipe));
Daniel Vetter6c49f242013-06-06 12:45:25 +02008861 pipe_config->pixel_multiplier =
8862 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
8863 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008864 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02008865 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
8866 tmp = I915_READ(DPLL(crtc->pipe));
8867 pipe_config->pixel_multiplier =
8868 ((tmp & SDVO_MULTIPLIER_MASK)
8869 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
8870 } else {
8871 /* Note that on i915G/GM the pixel multiplier is in the sdvo
8872 * port and will be fixed up in the encoder->get_config
8873 * function. */
8874 pipe_config->pixel_multiplier = 1;
8875 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008876 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
Wayne Boyer666a4532015-12-09 12:29:35 -08008877 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03008878 /*
8879 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
8880 * on 830. Filter it out here so that we don't
8881 * report errors due to that.
8882 */
8883 if (IS_I830(dev))
8884 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
8885
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008886 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
8887 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03008888 } else {
8889 /* Mask out read-only status bits. */
8890 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
8891 DPLL_PORTC_READY_MASK |
8892 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008893 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02008894
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008895 if (IS_CHERRYVIEW(dev))
8896 chv_crtc_clock_get(crtc, pipe_config);
8897 else if (IS_VALLEYVIEW(dev))
Jesse Barnesacbec812013-09-20 11:29:32 -07008898 vlv_crtc_clock_get(crtc, pipe_config);
8899 else
8900 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03008901
Ville Syrjälä0f646142015-08-26 19:39:18 +03008902 /*
8903 * Normally the dotclock is filled in by the encoder .get_config()
8904 * but in case the pipe is enabled w/o any ports we need a sane
8905 * default.
8906 */
8907 pipe_config->base.adjusted_mode.crtc_clock =
8908 pipe_config->port_clock / pipe_config->pixel_multiplier;
8909
Imre Deak17290502016-02-12 18:55:11 +02008910 ret = true;
8911
8912out:
8913 intel_display_power_put(dev_priv, power_domain);
8914
8915 return ret;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008916}
8917
Paulo Zanonidde86e22012-12-01 12:04:25 -02008918static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07008919{
Chris Wilsonfac5e232016-07-04 11:34:36 +01008920 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008921 struct intel_encoder *encoder;
Lyude1c1a24d2016-06-14 11:04:09 -04008922 int i;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008923 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008924 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07008925 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07008926 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07008927 bool has_ck505 = false;
8928 bool can_ssc = false;
Lyude1c1a24d2016-06-14 11:04:09 -04008929 bool using_ssc_source = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008930
8931 /* We need to take the global config into account */
Damien Lespiaub2784e12014-08-05 11:29:37 +01008932 for_each_intel_encoder(dev, encoder) {
Keith Packard199e5d72011-09-22 12:01:57 -07008933 switch (encoder->type) {
8934 case INTEL_OUTPUT_LVDS:
8935 has_panel = true;
8936 has_lvds = true;
8937 break;
8938 case INTEL_OUTPUT_EDP:
8939 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03008940 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07008941 has_cpu_edp = true;
8942 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008943 default:
8944 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008945 }
8946 }
8947
Keith Packard99eb6a02011-09-26 14:29:12 -07008948 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03008949 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07008950 can_ssc = has_ck505;
8951 } else {
8952 has_ck505 = false;
8953 can_ssc = true;
8954 }
8955
Lyude1c1a24d2016-06-14 11:04:09 -04008956 /* Check if any DPLLs are using the SSC source */
8957 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
8958 u32 temp = I915_READ(PCH_DPLL(i));
8959
8960 if (!(temp & DPLL_VCO_ENABLE))
8961 continue;
8962
8963 if ((temp & PLL_REF_INPUT_MASK) ==
8964 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
8965 using_ssc_source = true;
8966 break;
8967 }
8968 }
8969
8970 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d using_ssc_source %d\n",
8971 has_panel, has_lvds, has_ck505, using_ssc_source);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008972
8973 /* Ironlake: try to setup display ref clock before DPLL
8974 * enabling. This is only under driver's control after
8975 * PCH B stepping, previous chipset stepping should be
8976 * ignoring this setting.
8977 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008978 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008979
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008980 /* As we must carefully and slowly disable/enable each source in turn,
8981 * compute the final state we want first and check if we need to
8982 * make any changes at all.
8983 */
8984 final = val;
8985 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07008986 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008987 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07008988 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008989 final |= DREF_NONSPREAD_SOURCE_ENABLE;
8990
Daniel Vetter8c07eb62016-06-09 18:39:07 +02008991 final &= ~DREF_SSC_SOURCE_MASK;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008992 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Daniel Vetter8c07eb62016-06-09 18:39:07 +02008993 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008994
Keith Packard199e5d72011-09-22 12:01:57 -07008995 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008996 final |= DREF_SSC_SOURCE_ENABLE;
8997
8998 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8999 final |= DREF_SSC1_ENABLE;
9000
9001 if (has_cpu_edp) {
9002 if (intel_panel_use_ssc(dev_priv) && can_ssc)
9003 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
9004 else
9005 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
9006 } else
9007 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Lyude1c1a24d2016-06-14 11:04:09 -04009008 } else if (using_ssc_source) {
9009 final |= DREF_SSC_SOURCE_ENABLE;
9010 final |= DREF_SSC1_ENABLE;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07009011 }
9012
9013 if (final == val)
9014 return;
9015
9016 /* Always enable nonspread source */
9017 val &= ~DREF_NONSPREAD_SOURCE_MASK;
9018
9019 if (has_ck505)
9020 val |= DREF_NONSPREAD_CK505_ENABLE;
9021 else
9022 val |= DREF_NONSPREAD_SOURCE_ENABLE;
9023
9024 if (has_panel) {
9025 val &= ~DREF_SSC_SOURCE_MASK;
9026 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07009027
Keith Packard199e5d72011-09-22 12:01:57 -07009028 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07009029 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07009030 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07009031 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02009032 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07009033 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07009034
9035 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07009036 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07009037 POSTING_READ(PCH_DREF_CONTROL);
9038 udelay(200);
9039
Chris Wilson74cfd7a2013-03-26 16:33:04 -07009040 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07009041
9042 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07009043 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07009044 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07009045 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07009046 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Robin Schroereba905b2014-05-18 02:24:50 +02009047 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07009048 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07009049 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07009050 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07009051
Chris Wilson74cfd7a2013-03-26 16:33:04 -07009052 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07009053 POSTING_READ(PCH_DREF_CONTROL);
9054 udelay(200);
9055 } else {
Lyude1c1a24d2016-06-14 11:04:09 -04009056 DRM_DEBUG_KMS("Disabling CPU source output\n");
Keith Packard199e5d72011-09-22 12:01:57 -07009057
Chris Wilson74cfd7a2013-03-26 16:33:04 -07009058 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07009059
9060 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07009061 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07009062
Chris Wilson74cfd7a2013-03-26 16:33:04 -07009063 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07009064 POSTING_READ(PCH_DREF_CONTROL);
9065 udelay(200);
9066
Lyude1c1a24d2016-06-14 11:04:09 -04009067 if (!using_ssc_source) {
9068 DRM_DEBUG_KMS("Disabling SSC source\n");
Keith Packard199e5d72011-09-22 12:01:57 -07009069
Lyude1c1a24d2016-06-14 11:04:09 -04009070 /* Turn off the SSC source */
9071 val &= ~DREF_SSC_SOURCE_MASK;
9072 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07009073
Lyude1c1a24d2016-06-14 11:04:09 -04009074 /* Turn off SSC1 */
9075 val &= ~DREF_SSC1_ENABLE;
9076
9077 I915_WRITE(PCH_DREF_CONTROL, val);
9078 POSTING_READ(PCH_DREF_CONTROL);
9079 udelay(200);
9080 }
Jesse Barnes13d83a62011-08-03 12:59:20 -07009081 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07009082
9083 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07009084}
9085
Paulo Zanonif31f2d52013-07-18 18:51:11 -03009086static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02009087{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03009088 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02009089
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03009090 tmp = I915_READ(SOUTH_CHICKEN2);
9091 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
9092 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02009093
Imre Deakcf3598c2016-06-28 13:37:31 +03009094 if (wait_for_us(I915_READ(SOUTH_CHICKEN2) &
9095 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03009096 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02009097
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03009098 tmp = I915_READ(SOUTH_CHICKEN2);
9099 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
9100 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02009101
Imre Deakcf3598c2016-06-28 13:37:31 +03009102 if (wait_for_us((I915_READ(SOUTH_CHICKEN2) &
9103 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03009104 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03009105}
9106
9107/* WaMPhyProgramming:hsw */
9108static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
9109{
9110 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02009111
9112 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
9113 tmp &= ~(0xFF << 24);
9114 tmp |= (0x12 << 24);
9115 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
9116
Paulo Zanonidde86e22012-12-01 12:04:25 -02009117 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
9118 tmp |= (1 << 11);
9119 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
9120
9121 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
9122 tmp |= (1 << 11);
9123 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
9124
Paulo Zanonidde86e22012-12-01 12:04:25 -02009125 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
9126 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
9127 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
9128
9129 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
9130 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
9131 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
9132
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03009133 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
9134 tmp &= ~(7 << 13);
9135 tmp |= (5 << 13);
9136 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02009137
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03009138 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
9139 tmp &= ~(7 << 13);
9140 tmp |= (5 << 13);
9141 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02009142
9143 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
9144 tmp &= ~0xFF;
9145 tmp |= 0x1C;
9146 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
9147
9148 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
9149 tmp &= ~0xFF;
9150 tmp |= 0x1C;
9151 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
9152
9153 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
9154 tmp &= ~(0xFF << 16);
9155 tmp |= (0x1C << 16);
9156 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
9157
9158 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
9159 tmp &= ~(0xFF << 16);
9160 tmp |= (0x1C << 16);
9161 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
9162
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03009163 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
9164 tmp |= (1 << 27);
9165 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02009166
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03009167 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
9168 tmp |= (1 << 27);
9169 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02009170
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03009171 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
9172 tmp &= ~(0xF << 28);
9173 tmp |= (4 << 28);
9174 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02009175
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03009176 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
9177 tmp &= ~(0xF << 28);
9178 tmp |= (4 << 28);
9179 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03009180}
9181
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03009182/* Implements 3 different sequences from BSpec chapter "Display iCLK
9183 * Programming" based on the parameters passed:
9184 * - Sequence to enable CLKOUT_DP
9185 * - Sequence to enable CLKOUT_DP without spread
9186 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
9187 */
9188static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
9189 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03009190{
Chris Wilsonfac5e232016-07-04 11:34:36 +01009191 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03009192 uint32_t reg, tmp;
9193
9194 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
9195 with_spread = true;
Ville Syrjäläc2699522015-08-27 23:55:59 +03009196 if (WARN(HAS_PCH_LPT_LP(dev) && with_fdi, "LP PCH doesn't have FDI\n"))
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03009197 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03009198
Ville Syrjäläa5805162015-05-26 20:42:30 +03009199 mutex_lock(&dev_priv->sb_lock);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03009200
9201 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
9202 tmp &= ~SBI_SSCCTL_DISABLE;
9203 tmp |= SBI_SSCCTL_PATHALT;
9204 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
9205
9206 udelay(24);
9207
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03009208 if (with_spread) {
9209 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
9210 tmp &= ~SBI_SSCCTL_PATHALT;
9211 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03009212
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03009213 if (with_fdi) {
9214 lpt_reset_fdi_mphy(dev_priv);
9215 lpt_program_fdi_mphy(dev_priv);
9216 }
9217 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02009218
Ville Syrjäläc2699522015-08-27 23:55:59 +03009219 reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03009220 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
9221 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
9222 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01009223
Ville Syrjäläa5805162015-05-26 20:42:30 +03009224 mutex_unlock(&dev_priv->sb_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02009225}
9226
Paulo Zanoni47701c32013-07-23 11:19:25 -03009227/* Sequence to disable CLKOUT_DP */
9228static void lpt_disable_clkout_dp(struct drm_device *dev)
9229{
Chris Wilsonfac5e232016-07-04 11:34:36 +01009230 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoni47701c32013-07-23 11:19:25 -03009231 uint32_t reg, tmp;
9232
Ville Syrjäläa5805162015-05-26 20:42:30 +03009233 mutex_lock(&dev_priv->sb_lock);
Paulo Zanoni47701c32013-07-23 11:19:25 -03009234
Ville Syrjäläc2699522015-08-27 23:55:59 +03009235 reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0;
Paulo Zanoni47701c32013-07-23 11:19:25 -03009236 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
9237 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
9238 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
9239
9240 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
9241 if (!(tmp & SBI_SSCCTL_DISABLE)) {
9242 if (!(tmp & SBI_SSCCTL_PATHALT)) {
9243 tmp |= SBI_SSCCTL_PATHALT;
9244 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
9245 udelay(32);
9246 }
9247 tmp |= SBI_SSCCTL_DISABLE;
9248 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
9249 }
9250
Ville Syrjäläa5805162015-05-26 20:42:30 +03009251 mutex_unlock(&dev_priv->sb_lock);
Paulo Zanoni47701c32013-07-23 11:19:25 -03009252}
9253
Ville Syrjäläf7be2c22015-12-04 22:19:39 +02009254#define BEND_IDX(steps) ((50 + (steps)) / 5)
9255
9256static const uint16_t sscdivintphase[] = {
9257 [BEND_IDX( 50)] = 0x3B23,
9258 [BEND_IDX( 45)] = 0x3B23,
9259 [BEND_IDX( 40)] = 0x3C23,
9260 [BEND_IDX( 35)] = 0x3C23,
9261 [BEND_IDX( 30)] = 0x3D23,
9262 [BEND_IDX( 25)] = 0x3D23,
9263 [BEND_IDX( 20)] = 0x3E23,
9264 [BEND_IDX( 15)] = 0x3E23,
9265 [BEND_IDX( 10)] = 0x3F23,
9266 [BEND_IDX( 5)] = 0x3F23,
9267 [BEND_IDX( 0)] = 0x0025,
9268 [BEND_IDX( -5)] = 0x0025,
9269 [BEND_IDX(-10)] = 0x0125,
9270 [BEND_IDX(-15)] = 0x0125,
9271 [BEND_IDX(-20)] = 0x0225,
9272 [BEND_IDX(-25)] = 0x0225,
9273 [BEND_IDX(-30)] = 0x0325,
9274 [BEND_IDX(-35)] = 0x0325,
9275 [BEND_IDX(-40)] = 0x0425,
9276 [BEND_IDX(-45)] = 0x0425,
9277 [BEND_IDX(-50)] = 0x0525,
9278};
9279
9280/*
9281 * Bend CLKOUT_DP
9282 * steps -50 to 50 inclusive, in steps of 5
9283 * < 0 slow down the clock, > 0 speed up the clock, 0 == no bend (135MHz)
9284 * change in clock period = -(steps / 10) * 5.787 ps
9285 */
9286static void lpt_bend_clkout_dp(struct drm_i915_private *dev_priv, int steps)
9287{
9288 uint32_t tmp;
9289 int idx = BEND_IDX(steps);
9290
9291 if (WARN_ON(steps % 5 != 0))
9292 return;
9293
9294 if (WARN_ON(idx >= ARRAY_SIZE(sscdivintphase)))
9295 return;
9296
9297 mutex_lock(&dev_priv->sb_lock);
9298
9299 if (steps % 10 != 0)
9300 tmp = 0xAAAAAAAB;
9301 else
9302 tmp = 0x00000000;
9303 intel_sbi_write(dev_priv, SBI_SSCDITHPHASE, tmp, SBI_ICLK);
9304
9305 tmp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE, SBI_ICLK);
9306 tmp &= 0xffff0000;
9307 tmp |= sscdivintphase[idx];
9308 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE, tmp, SBI_ICLK);
9309
9310 mutex_unlock(&dev_priv->sb_lock);
9311}
9312
9313#undef BEND_IDX
9314
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03009315static void lpt_init_pch_refclk(struct drm_device *dev)
9316{
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03009317 struct intel_encoder *encoder;
9318 bool has_vga = false;
9319
Damien Lespiaub2784e12014-08-05 11:29:37 +01009320 for_each_intel_encoder(dev, encoder) {
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03009321 switch (encoder->type) {
9322 case INTEL_OUTPUT_ANALOG:
9323 has_vga = true;
9324 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02009325 default:
9326 break;
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03009327 }
9328 }
9329
Ville Syrjäläf7be2c22015-12-04 22:19:39 +02009330 if (has_vga) {
9331 lpt_bend_clkout_dp(to_i915(dev), 0);
Paulo Zanoni47701c32013-07-23 11:19:25 -03009332 lpt_enable_clkout_dp(dev, true, true);
Ville Syrjäläf7be2c22015-12-04 22:19:39 +02009333 } else {
Paulo Zanoni47701c32013-07-23 11:19:25 -03009334 lpt_disable_clkout_dp(dev);
Ville Syrjäläf7be2c22015-12-04 22:19:39 +02009335 }
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03009336}
9337
Paulo Zanonidde86e22012-12-01 12:04:25 -02009338/*
9339 * Initialize reference clocks when the driver loads
9340 */
9341void intel_init_pch_refclk(struct drm_device *dev)
9342{
9343 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
9344 ironlake_init_pch_refclk(dev);
9345 else if (HAS_PCH_LPT(dev))
9346 lpt_init_pch_refclk(dev);
9347}
9348
Daniel Vetter6ff93602013-04-19 11:24:36 +02009349static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03009350{
Chris Wilsonfac5e232016-07-04 11:34:36 +01009351 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Paulo Zanonic8203562012-09-12 10:06:29 -03009352 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9353 int pipe = intel_crtc->pipe;
9354 uint32_t val;
9355
Daniel Vetter78114072013-06-13 00:54:57 +02009356 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03009357
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009358 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03009359 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01009360 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03009361 break;
9362 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01009363 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03009364 break;
9365 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01009366 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03009367 break;
9368 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01009369 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03009370 break;
9371 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03009372 /* Case prevented by intel_choose_pipe_bpp_dither. */
9373 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03009374 }
9375
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009376 if (intel_crtc->config->dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03009377 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
9378
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009379 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03009380 val |= PIPECONF_INTERLACED_ILK;
9381 else
9382 val |= PIPECONF_PROGRESSIVE;
9383
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009384 if (intel_crtc->config->limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02009385 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02009386
Paulo Zanonic8203562012-09-12 10:06:29 -03009387 I915_WRITE(PIPECONF(pipe), val);
9388 POSTING_READ(PIPECONF(pipe));
9389}
9390
Daniel Vetter6ff93602013-04-19 11:24:36 +02009391static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03009392{
Chris Wilsonfac5e232016-07-04 11:34:36 +01009393 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03009394 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009395 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Jani Nikula391bf042016-03-18 17:05:40 +02009396 u32 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03009397
Jani Nikula391bf042016-03-18 17:05:40 +02009398 if (IS_HASWELL(dev_priv) && intel_crtc->config->dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03009399 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
9400
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009401 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03009402 val |= PIPECONF_INTERLACED_ILK;
9403 else
9404 val |= PIPECONF_PROGRESSIVE;
9405
Paulo Zanoni702e7a52012-10-23 18:29:59 -02009406 I915_WRITE(PIPECONF(cpu_transcoder), val);
9407 POSTING_READ(PIPECONF(cpu_transcoder));
Jani Nikula391bf042016-03-18 17:05:40 +02009408}
9409
Jani Nikula391bf042016-03-18 17:05:40 +02009410static void haswell_set_pipemisc(struct drm_crtc *crtc)
9411{
Chris Wilsonfac5e232016-07-04 11:34:36 +01009412 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Jani Nikula391bf042016-03-18 17:05:40 +02009413 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9414
9415 if (IS_BROADWELL(dev_priv) || INTEL_INFO(dev_priv)->gen >= 9) {
9416 u32 val = 0;
Paulo Zanoni756f85c2013-11-02 21:07:38 -07009417
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009418 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07009419 case 18:
9420 val |= PIPEMISC_DITHER_6_BPC;
9421 break;
9422 case 24:
9423 val |= PIPEMISC_DITHER_8_BPC;
9424 break;
9425 case 30:
9426 val |= PIPEMISC_DITHER_10_BPC;
9427 break;
9428 case 36:
9429 val |= PIPEMISC_DITHER_12_BPC;
9430 break;
9431 default:
9432 /* Case prevented by pipe_config_set_bpp. */
9433 BUG();
9434 }
9435
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009436 if (intel_crtc->config->dither)
Paulo Zanoni756f85c2013-11-02 21:07:38 -07009437 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
9438
Jani Nikula391bf042016-03-18 17:05:40 +02009439 I915_WRITE(PIPEMISC(intel_crtc->pipe), val);
Paulo Zanoni756f85c2013-11-02 21:07:38 -07009440 }
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03009441}
9442
Paulo Zanonid4b19312012-11-29 11:29:32 -02009443int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
9444{
9445 /*
9446 * Account for spread spectrum to avoid
9447 * oversubscribing the link. Max center spread
9448 * is 2.5%; use 5% for safety's sake.
9449 */
9450 u32 bps = target_clock * bpp * 21 / 20;
Ville Syrjälä619d4d02014-02-27 14:23:14 +02009451 return DIV_ROUND_UP(bps, link_bw * 8);
Paulo Zanonid4b19312012-11-29 11:29:32 -02009452}
9453
Daniel Vetter7429e9d2013-04-20 17:19:46 +02009454static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02009455{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02009456 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03009457}
9458
Ander Conselvan de Oliveirab75ca6f2016-03-21 18:00:11 +02009459static void ironlake_compute_dpll(struct intel_crtc *intel_crtc,
9460 struct intel_crtc_state *crtc_state,
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +03009461 struct dpll *reduced_clock)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03009462{
9463 struct drm_crtc *crtc = &intel_crtc->base;
9464 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01009465 struct drm_i915_private *dev_priv = to_i915(dev);
Ander Conselvan de Oliveirab75ca6f2016-03-21 18:00:11 +02009466 u32 dpll, fp, fp2;
Ville Syrjälä3d6e9ee2016-06-22 21:57:03 +03009467 int factor;
Jesse Barnes79e53942008-11-07 14:24:08 -08009468
Chris Wilsonc1858122010-12-03 21:35:48 +00009469 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07009470 factor = 21;
Ville Syrjälä3d6e9ee2016-06-22 21:57:03 +03009471 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Eric Anholt8febb292011-03-30 13:01:07 -07009472 if ((intel_panel_use_ssc(dev_priv) &&
Ville Syrjäläe91e9412013-12-09 18:54:16 +02009473 dev_priv->vbt.lvds_ssc_freq == 100000) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02009474 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07009475 factor = 25;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009476 } else if (crtc_state->sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07009477 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00009478
Ander Conselvan de Oliveirab75ca6f2016-03-21 18:00:11 +02009479 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Chris Wilsonc1858122010-12-03 21:35:48 +00009480
Ander Conselvan de Oliveirab75ca6f2016-03-21 18:00:11 +02009481 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
9482 fp |= FP_CB_TUNE;
9483
9484 if (reduced_clock) {
9485 fp2 = i9xx_dpll_compute_fp(reduced_clock);
9486
9487 if (reduced_clock->m < factor * reduced_clock->n)
9488 fp2 |= FP_CB_TUNE;
9489 } else {
9490 fp2 = fp;
9491 }
Daniel Vetter9a7c7892013-04-04 22:20:34 +02009492
Chris Wilson5eddb702010-09-11 13:48:45 +01009493 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08009494
Ville Syrjälä3d6e9ee2016-06-22 21:57:03 +03009495 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS))
Eric Anholta07d6782011-03-30 13:01:08 -07009496 dpll |= DPLLB_MODE_LVDS;
9497 else
9498 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02009499
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009500 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02009501 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02009502
Ville Syrjälä3d6e9ee2016-06-22 21:57:03 +03009503 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_SDVO) ||
9504 intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI))
Daniel Vetter4a33e482013-07-06 12:52:05 +02009505 dpll |= DPLL_SDVO_HIGH_SPEED;
Ville Syrjälä3d6e9ee2016-06-22 21:57:03 +03009506
Ville Syrjälä37a56502016-06-22 21:57:04 +03009507 if (intel_crtc_has_dp_encoder(crtc_state))
Daniel Vetter4a33e482013-07-06 12:52:05 +02009508 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08009509
Eric Anholta07d6782011-03-30 13:01:08 -07009510 /* compute bitmask from p1 value */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009511 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07009512 /* also FPA1 */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009513 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07009514
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009515 switch (crtc_state->dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07009516 case 5:
9517 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
9518 break;
9519 case 7:
9520 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
9521 break;
9522 case 10:
9523 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
9524 break;
9525 case 14:
9526 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
9527 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08009528 }
9529
Ville Syrjälä3d6e9ee2016-06-22 21:57:03 +03009530 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS) &&
9531 intel_panel_use_ssc(dev_priv))
Kristian Høgsberg43565a02009-02-13 20:56:52 -05009532 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08009533 else
9534 dpll |= PLL_REF_INPUT_DREFCLK;
9535
Ander Conselvan de Oliveirab75ca6f2016-03-21 18:00:11 +02009536 dpll |= DPLL_VCO_ENABLE;
9537
9538 crtc_state->dpll_hw_state.dpll = dpll;
9539 crtc_state->dpll_hw_state.fp0 = fp;
9540 crtc_state->dpll_hw_state.fp1 = fp2;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03009541}
9542
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009543static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
9544 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08009545{
Ander Conselvan de Oliveira997c0302016-03-21 18:00:12 +02009546 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01009547 struct drm_i915_private *dev_priv = to_i915(dev);
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +03009548 struct dpll reduced_clock;
Ander Conselvan de Oliveira7ed9f892016-03-21 18:00:07 +02009549 bool has_reduced_clock = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02009550 struct intel_shared_dpll *pll;
Ander Conselvan de Oliveira1b6f4952016-05-04 12:11:59 +03009551 const struct intel_limit *limit;
Ander Conselvan de Oliveira997c0302016-03-21 18:00:12 +02009552 int refclk = 120000;
Jesse Barnes79e53942008-11-07 14:24:08 -08009553
Ander Conselvan de Oliveiradd3cd742015-05-15 13:34:29 +03009554 memset(&crtc_state->dpll_hw_state, 0,
9555 sizeof(crtc_state->dpll_hw_state));
9556
Ander Conselvan de Oliveiraded220e2016-03-21 18:00:09 +02009557 crtc->lowfreq_avail = false;
9558
9559 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
9560 if (!crtc_state->has_pch_encoder)
9561 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08009562
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03009563 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Ander Conselvan de Oliveira997c0302016-03-21 18:00:12 +02009564 if (intel_panel_use_ssc(dev_priv)) {
9565 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
9566 dev_priv->vbt.lvds_ssc_freq);
9567 refclk = dev_priv->vbt.lvds_ssc_freq;
9568 }
9569
9570 if (intel_is_dual_link_lvds(dev)) {
9571 if (refclk == 100000)
9572 limit = &intel_limits_ironlake_dual_lvds_100m;
9573 else
9574 limit = &intel_limits_ironlake_dual_lvds;
9575 } else {
9576 if (refclk == 100000)
9577 limit = &intel_limits_ironlake_single_lvds_100m;
9578 else
9579 limit = &intel_limits_ironlake_single_lvds;
9580 }
9581 } else {
9582 limit = &intel_limits_ironlake_dac;
9583 }
9584
Ander Conselvan de Oliveira364ee292016-03-21 18:00:10 +02009585 if (!crtc_state->clock_set &&
Ander Conselvan de Oliveira997c0302016-03-21 18:00:12 +02009586 !g4x_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
9587 refclk, NULL, &crtc_state->dpll)) {
Ander Conselvan de Oliveira364ee292016-03-21 18:00:10 +02009588 DRM_ERROR("Couldn't find PLL settings for mode!\n");
9589 return -EINVAL;
Daniel Vetterf47709a2013-03-28 10:42:02 +01009590 }
Jesse Barnes79e53942008-11-07 14:24:08 -08009591
Ander Conselvan de Oliveirab75ca6f2016-03-21 18:00:11 +02009592 ironlake_compute_dpll(crtc, crtc_state,
9593 has_reduced_clock ? &reduced_clock : NULL);
Daniel Vetter66e985c2013-06-05 13:34:20 +02009594
Ander Conselvan de Oliveiraded220e2016-03-21 18:00:09 +02009595 pll = intel_get_shared_dpll(crtc, crtc_state, NULL);
9596 if (pll == NULL) {
9597 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
9598 pipe_name(crtc->pipe));
9599 return -EINVAL;
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +02009600 }
Jesse Barnes79e53942008-11-07 14:24:08 -08009601
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +03009602 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Ander Conselvan de Oliveiraded220e2016-03-21 18:00:09 +02009603 has_reduced_clock)
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03009604 crtc->lowfreq_avail = true;
Daniel Vettere2b78262013-06-07 23:10:03 +02009605
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02009606 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08009607}
9608
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009609static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
9610 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02009611{
9612 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01009613 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009614 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02009615
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009616 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
9617 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
9618 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
9619 & ~TU_SIZE_MASK;
9620 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
9621 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
9622 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9623}
9624
9625static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
9626 enum transcoder transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07009627 struct intel_link_m_n *m_n,
9628 struct intel_link_m_n *m2_n2)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009629{
9630 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01009631 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009632 enum pipe pipe = crtc->pipe;
9633
9634 if (INTEL_INFO(dev)->gen >= 5) {
9635 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
9636 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
9637 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
9638 & ~TU_SIZE_MASK;
9639 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
9640 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
9641 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
Vandana Kannanb95af8b2014-08-05 07:51:23 -07009642 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
9643 * gen < 8) and if DRRS is supported (to make sure the
9644 * registers are not unnecessarily read).
9645 */
9646 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009647 crtc->config->has_drrs) {
Vandana Kannanb95af8b2014-08-05 07:51:23 -07009648 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
9649 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
9650 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
9651 & ~TU_SIZE_MASK;
9652 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
9653 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
9654 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9655 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009656 } else {
9657 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
9658 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
9659 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
9660 & ~TU_SIZE_MASK;
9661 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
9662 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
9663 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9664 }
9665}
9666
9667void intel_dp_get_m_n(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009668 struct intel_crtc_state *pipe_config)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009669{
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02009670 if (pipe_config->has_pch_encoder)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009671 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
9672 else
9673 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07009674 &pipe_config->dp_m_n,
9675 &pipe_config->dp_m2_n2);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009676}
9677
Daniel Vetter72419202013-04-04 13:28:53 +02009678static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009679 struct intel_crtc_state *pipe_config)
Daniel Vetter72419202013-04-04 13:28:53 +02009680{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009681 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07009682 &pipe_config->fdi_m_n, NULL);
Daniel Vetter72419202013-04-04 13:28:53 +02009683}
9684
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009685static void skylake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009686 struct intel_crtc_state *pipe_config)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009687{
9688 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01009689 struct drm_i915_private *dev_priv = to_i915(dev);
Chandra Kondurua1b22782015-04-07 15:28:45 -07009690 struct intel_crtc_scaler_state *scaler_state = &pipe_config->scaler_state;
9691 uint32_t ps_ctrl = 0;
9692 int id = -1;
9693 int i;
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009694
Chandra Kondurua1b22782015-04-07 15:28:45 -07009695 /* find scaler attached to this pipe */
9696 for (i = 0; i < crtc->num_scalers; i++) {
9697 ps_ctrl = I915_READ(SKL_PS_CTRL(crtc->pipe, i));
9698 if (ps_ctrl & PS_SCALER_EN && !(ps_ctrl & PS_PLANE_SEL_MASK)) {
9699 id = i;
9700 pipe_config->pch_pfit.enabled = true;
9701 pipe_config->pch_pfit.pos = I915_READ(SKL_PS_WIN_POS(crtc->pipe, i));
9702 pipe_config->pch_pfit.size = I915_READ(SKL_PS_WIN_SZ(crtc->pipe, i));
9703 break;
9704 }
9705 }
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009706
Chandra Kondurua1b22782015-04-07 15:28:45 -07009707 scaler_state->scaler_id = id;
9708 if (id >= 0) {
9709 scaler_state->scaler_users |= (1 << SKL_CRTC_INDEX);
9710 } else {
9711 scaler_state->scaler_users &= ~(1 << SKL_CRTC_INDEX);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009712 }
9713}
9714
Damien Lespiau5724dbd2015-01-20 12:51:52 +00009715static void
9716skylake_get_initial_plane_config(struct intel_crtc *crtc,
9717 struct intel_initial_plane_config *plane_config)
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009718{
9719 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01009720 struct drm_i915_private *dev_priv = to_i915(dev);
Damien Lespiau40f46282015-02-27 11:15:21 +00009721 u32 val, base, offset, stride_mult, tiling;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009722 int pipe = crtc->pipe;
9723 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00009724 unsigned int aligned_height;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009725 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00009726 struct intel_framebuffer *intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009727
Damien Lespiaud9806c92015-01-21 14:07:19 +00009728 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00009729 if (!intel_fb) {
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009730 DRM_DEBUG_KMS("failed to alloc fb\n");
9731 return;
9732 }
9733
Damien Lespiau1b842c82015-01-21 13:50:54 +00009734 fb = &intel_fb->base;
9735
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009736 val = I915_READ(PLANE_CTL(pipe, 0));
Damien Lespiau42a7b082015-02-05 19:35:13 +00009737 if (!(val & PLANE_CTL_ENABLE))
9738 goto error;
9739
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009740 pixel_format = val & PLANE_CTL_FORMAT_MASK;
9741 fourcc = skl_format_to_fourcc(pixel_format,
9742 val & PLANE_CTL_ORDER_RGBX,
9743 val & PLANE_CTL_ALPHA_MASK);
9744 fb->pixel_format = fourcc;
9745 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
9746
Damien Lespiau40f46282015-02-27 11:15:21 +00009747 tiling = val & PLANE_CTL_TILED_MASK;
9748 switch (tiling) {
9749 case PLANE_CTL_TILED_LINEAR:
9750 fb->modifier[0] = DRM_FORMAT_MOD_NONE;
9751 break;
9752 case PLANE_CTL_TILED_X:
9753 plane_config->tiling = I915_TILING_X;
9754 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9755 break;
9756 case PLANE_CTL_TILED_Y:
9757 fb->modifier[0] = I915_FORMAT_MOD_Y_TILED;
9758 break;
9759 case PLANE_CTL_TILED_YF:
9760 fb->modifier[0] = I915_FORMAT_MOD_Yf_TILED;
9761 break;
9762 default:
9763 MISSING_CASE(tiling);
9764 goto error;
9765 }
9766
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009767 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
9768 plane_config->base = base;
9769
9770 offset = I915_READ(PLANE_OFFSET(pipe, 0));
9771
9772 val = I915_READ(PLANE_SIZE(pipe, 0));
9773 fb->height = ((val >> 16) & 0xfff) + 1;
9774 fb->width = ((val >> 0) & 0x1fff) + 1;
9775
9776 val = I915_READ(PLANE_STRIDE(pipe, 0));
Ville Syrjälä7b49f942016-01-12 21:08:32 +02009777 stride_mult = intel_fb_stride_alignment(dev_priv, fb->modifier[0],
Damien Lespiau40f46282015-02-27 11:15:21 +00009778 fb->pixel_format);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009779 fb->pitches[0] = (val & 0x3ff) * stride_mult;
9780
9781 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00009782 fb->pixel_format,
9783 fb->modifier[0]);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009784
Daniel Vetterf37b5c22015-02-10 23:12:27 +01009785 plane_config->size = fb->pitches[0] * aligned_height;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009786
9787 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9788 pipe_name(pipe), fb->width, fb->height,
9789 fb->bits_per_pixel, base, fb->pitches[0],
9790 plane_config->size);
9791
Damien Lespiau2d140302015-02-05 17:22:18 +00009792 plane_config->fb = intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009793 return;
9794
9795error:
Matthew Auldd1a3a032016-08-23 16:00:44 +01009796 kfree(intel_fb);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009797}
9798
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009799static void ironlake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009800 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009801{
9802 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01009803 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009804 uint32_t tmp;
9805
9806 tmp = I915_READ(PF_CTL(crtc->pipe));
9807
9808 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01009809 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009810 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
9811 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02009812
9813 /* We currently do not free assignements of panel fitters on
9814 * ivb/hsw (since we don't use the higher upscaling modes which
9815 * differentiates them) so just WARN about this case for now. */
9816 if (IS_GEN7(dev)) {
9817 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
9818 PF_PIPE_SEL_IVB(crtc->pipe));
9819 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009820 }
Jesse Barnes79e53942008-11-07 14:24:08 -08009821}
9822
Damien Lespiau5724dbd2015-01-20 12:51:52 +00009823static void
9824ironlake_get_initial_plane_config(struct intel_crtc *crtc,
9825 struct intel_initial_plane_config *plane_config)
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009826{
9827 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01009828 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009829 u32 val, base, offset;
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009830 int pipe = crtc->pipe;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009831 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00009832 unsigned int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009833 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00009834 struct intel_framebuffer *intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009835
Damien Lespiau42a7b082015-02-05 19:35:13 +00009836 val = I915_READ(DSPCNTR(pipe));
9837 if (!(val & DISPLAY_PLANE_ENABLE))
9838 return;
9839
Damien Lespiaud9806c92015-01-21 14:07:19 +00009840 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00009841 if (!intel_fb) {
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009842 DRM_DEBUG_KMS("failed to alloc fb\n");
9843 return;
9844 }
9845
Damien Lespiau1b842c82015-01-21 13:50:54 +00009846 fb = &intel_fb->base;
9847
Daniel Vetter18c52472015-02-10 17:16:09 +00009848 if (INTEL_INFO(dev)->gen >= 4) {
9849 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00009850 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00009851 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9852 }
9853 }
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009854
9855 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00009856 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009857 fb->pixel_format = fourcc;
9858 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009859
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009860 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009861 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009862 offset = I915_READ(DSPOFFSET(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009863 } else {
Damien Lespiau49af4492015-01-20 12:51:44 +00009864 if (plane_config->tiling)
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009865 offset = I915_READ(DSPTILEOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009866 else
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009867 offset = I915_READ(DSPLINOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009868 }
9869 plane_config->base = base;
9870
9871 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009872 fb->width = ((val >> 16) & 0xfff) + 1;
9873 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009874
9875 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009876 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009877
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009878 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00009879 fb->pixel_format,
9880 fb->modifier[0]);
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009881
Daniel Vetterf37b5c22015-02-10 23:12:27 +01009882 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009883
Damien Lespiau2844a922015-01-20 12:51:48 +00009884 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9885 pipe_name(pipe), fb->width, fb->height,
9886 fb->bits_per_pixel, base, fb->pitches[0],
9887 plane_config->size);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009888
Damien Lespiau2d140302015-02-05 17:22:18 +00009889 plane_config->fb = intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009890}
9891
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009892static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009893 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009894{
9895 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01009896 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak17290502016-02-12 18:55:11 +02009897 enum intel_display_power_domain power_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009898 uint32_t tmp;
Imre Deak17290502016-02-12 18:55:11 +02009899 bool ret;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009900
Imre Deak17290502016-02-12 18:55:11 +02009901 power_domain = POWER_DOMAIN_PIPE(crtc->pipe);
9902 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Paulo Zanoni930e8c92014-07-04 13:38:34 -03009903 return false;
9904
Daniel Vettere143a212013-07-04 12:01:15 +02009905 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +02009906 pipe_config->shared_dpll = NULL;
Daniel Vettereccb1402013-05-22 00:50:22 +02009907
Imre Deak17290502016-02-12 18:55:11 +02009908 ret = false;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009909 tmp = I915_READ(PIPECONF(crtc->pipe));
9910 if (!(tmp & PIPECONF_ENABLE))
Imre Deak17290502016-02-12 18:55:11 +02009911 goto out;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009912
Ville Syrjälä42571ae2013-09-06 23:29:00 +03009913 switch (tmp & PIPECONF_BPC_MASK) {
9914 case PIPECONF_6BPC:
9915 pipe_config->pipe_bpp = 18;
9916 break;
9917 case PIPECONF_8BPC:
9918 pipe_config->pipe_bpp = 24;
9919 break;
9920 case PIPECONF_10BPC:
9921 pipe_config->pipe_bpp = 30;
9922 break;
9923 case PIPECONF_12BPC:
9924 pipe_config->pipe_bpp = 36;
9925 break;
9926 default:
9927 break;
9928 }
9929
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02009930 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
9931 pipe_config->limited_color_range = true;
9932
Daniel Vetterab9412b2013-05-03 11:49:46 +02009933 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02009934 struct intel_shared_dpll *pll;
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +02009935 enum intel_dpll_id pll_id;
Daniel Vetter66e985c2013-06-05 13:34:20 +02009936
Daniel Vetter88adfff2013-03-28 10:42:01 +01009937 pipe_config->has_pch_encoder = true;
9938
Daniel Vetter627eb5a2013-04-29 19:33:42 +02009939 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
9940 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
9941 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02009942
9943 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02009944
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009945 if (HAS_PCH_IBX(dev_priv)) {
Imre Deakd9a7bc62016-05-12 16:18:50 +03009946 /*
9947 * The pipe->pch transcoder and pch transcoder->pll
9948 * mapping is fixed.
9949 */
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +02009950 pll_id = (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009951 } else {
9952 tmp = I915_READ(PCH_DPLL_SEL);
9953 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +02009954 pll_id = DPLL_ID_PCH_PLL_B;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009955 else
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +02009956 pll_id= DPLL_ID_PCH_PLL_A;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009957 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02009958
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +02009959 pipe_config->shared_dpll =
9960 intel_get_shared_dpll_by_id(dev_priv, pll_id);
9961 pll = pipe_config->shared_dpll;
Daniel Vetter66e985c2013-06-05 13:34:20 +02009962
Ander Conselvan de Oliveira2edd6442016-03-08 17:46:21 +02009963 WARN_ON(!pll->funcs.get_hw_state(dev_priv, pll,
9964 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02009965
9966 tmp = pipe_config->dpll_hw_state.dpll;
9967 pipe_config->pixel_multiplier =
9968 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
9969 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03009970
9971 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02009972 } else {
9973 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02009974 }
9975
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009976 intel_get_pipe_timings(crtc, pipe_config);
Jani Nikulabc58be62016-03-18 17:05:39 +02009977 intel_get_pipe_src_size(crtc, pipe_config);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009978
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009979 ironlake_get_pfit_config(crtc, pipe_config);
9980
Imre Deak17290502016-02-12 18:55:11 +02009981 ret = true;
9982
9983out:
9984 intel_display_power_put(dev_priv, power_domain);
9985
9986 return ret;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009987}
9988
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009989static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
9990{
Chris Wilson91c8a322016-07-05 10:40:23 +01009991 struct drm_device *dev = &dev_priv->drm;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009992 struct intel_crtc *crtc;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009993
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009994 for_each_intel_crtc(dev, crtc)
Rob Clarke2c719b2014-12-15 13:56:32 -05009995 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009996 pipe_name(crtc->pipe));
9997
Rob Clarke2c719b2014-12-15 13:56:32 -05009998 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
9999 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
Ville Syrjälä01403de2015-09-18 20:03:33 +030010000 I915_STATE_WARN(I915_READ(WRPLL_CTL(0)) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
10001 I915_STATE_WARN(I915_READ(WRPLL_CTL(1)) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
Imre Deak44cb7342016-08-10 14:07:29 +030010002 I915_STATE_WARN(I915_READ(PP_STATUS(0)) & PP_ON, "Panel power on\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050010003 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -030010004 "CPU PWM1 enabled\n");
Paulo Zanonic5107b82014-07-04 11:50:30 -030010005 if (IS_HASWELL(dev))
Rob Clarke2c719b2014-12-15 13:56:32 -050010006 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
Paulo Zanonic5107b82014-07-04 11:50:30 -030010007 "CPU PWM2 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050010008 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -030010009 "PCH PWM1 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050010010 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -030010011 "Utility pin enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050010012 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -030010013
Paulo Zanoni9926ada2014-04-01 19:39:47 -030010014 /*
10015 * In theory we can still leave IRQs enabled, as long as only the HPD
10016 * interrupts remain enabled. We used to check for that, but since it's
10017 * gen-specific and since we only disable LCPLL after we fully disable
10018 * the interrupts, the check below should be enough.
10019 */
Rob Clarke2c719b2014-12-15 13:56:32 -050010020 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -030010021}
10022
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -030010023static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
10024{
Chris Wilson91c8a322016-07-05 10:40:23 +010010025 struct drm_device *dev = &dev_priv->drm;
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -030010026
10027 if (IS_HASWELL(dev))
10028 return I915_READ(D_COMP_HSW);
10029 else
10030 return I915_READ(D_COMP_BDW);
10031}
10032
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -030010033static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
10034{
Chris Wilson91c8a322016-07-05 10:40:23 +010010035 struct drm_device *dev = &dev_priv->drm;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -030010036
10037 if (IS_HASWELL(dev)) {
10038 mutex_lock(&dev_priv->rps.hw_lock);
10039 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
10040 val))
Chris Wilson79cf2192016-08-24 11:16:07 +010010041 DRM_DEBUG_KMS("Failed to write to D_COMP\n");
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -030010042 mutex_unlock(&dev_priv->rps.hw_lock);
10043 } else {
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -030010044 I915_WRITE(D_COMP_BDW, val);
10045 POSTING_READ(D_COMP_BDW);
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -030010046 }
Paulo Zanonibe256dc2013-07-23 11:19:26 -030010047}
10048
10049/*
10050 * This function implements pieces of two sequences from BSpec:
10051 * - Sequence for display software to disable LCPLL
10052 * - Sequence for display software to allow package C8+
10053 * The steps implemented here are just the steps that actually touch the LCPLL
10054 * register. Callers should take care of disabling all the display engine
10055 * functions, doing the mode unset, fixing interrupts, etc.
10056 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -030010057static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
10058 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -030010059{
10060 uint32_t val;
10061
10062 assert_can_disable_lcpll(dev_priv);
10063
10064 val = I915_READ(LCPLL_CTL);
10065
10066 if (switch_to_fclk) {
10067 val |= LCPLL_CD_SOURCE_FCLK;
10068 I915_WRITE(LCPLL_CTL, val);
10069
Imre Deakf53dd632016-06-28 13:37:32 +030010070 if (wait_for_us(I915_READ(LCPLL_CTL) &
10071 LCPLL_CD_SOURCE_FCLK_DONE, 1))
Paulo Zanonibe256dc2013-07-23 11:19:26 -030010072 DRM_ERROR("Switching to FCLK failed\n");
10073
10074 val = I915_READ(LCPLL_CTL);
10075 }
10076
10077 val |= LCPLL_PLL_DISABLE;
10078 I915_WRITE(LCPLL_CTL, val);
10079 POSTING_READ(LCPLL_CTL);
10080
Chris Wilson24d84412016-06-30 15:33:07 +010010081 if (intel_wait_for_register(dev_priv, LCPLL_CTL, LCPLL_PLL_LOCK, 0, 1))
Paulo Zanonibe256dc2013-07-23 11:19:26 -030010082 DRM_ERROR("LCPLL still locked\n");
10083
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -030010084 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -030010085 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -030010086 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -030010087 ndelay(100);
10088
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -030010089 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
10090 1))
Paulo Zanonibe256dc2013-07-23 11:19:26 -030010091 DRM_ERROR("D_COMP RCOMP still in progress\n");
10092
10093 if (allow_power_down) {
10094 val = I915_READ(LCPLL_CTL);
10095 val |= LCPLL_POWER_DOWN_ALLOW;
10096 I915_WRITE(LCPLL_CTL, val);
10097 POSTING_READ(LCPLL_CTL);
10098 }
10099}
10100
10101/*
10102 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
10103 * source.
10104 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -030010105static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -030010106{
10107 uint32_t val;
10108
10109 val = I915_READ(LCPLL_CTL);
10110
10111 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
10112 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
10113 return;
10114
Paulo Zanonia8a8bd52014-03-07 20:08:05 -030010115 /*
10116 * Make sure we're not on PC8 state before disabling PC8, otherwise
10117 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
Paulo Zanonia8a8bd52014-03-07 20:08:05 -030010118 */
Mika Kuoppala59bad942015-01-16 11:34:40 +020010119 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Paulo Zanoni215733f2013-08-19 13:18:07 -030010120
Paulo Zanonibe256dc2013-07-23 11:19:26 -030010121 if (val & LCPLL_POWER_DOWN_ALLOW) {
10122 val &= ~LCPLL_POWER_DOWN_ALLOW;
10123 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +020010124 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -030010125 }
10126
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -030010127 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -030010128 val |= D_COMP_COMP_FORCE;
10129 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -030010130 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -030010131
10132 val = I915_READ(LCPLL_CTL);
10133 val &= ~LCPLL_PLL_DISABLE;
10134 I915_WRITE(LCPLL_CTL, val);
10135
Chris Wilson93220c02016-06-30 15:33:08 +010010136 if (intel_wait_for_register(dev_priv,
10137 LCPLL_CTL, LCPLL_PLL_LOCK, LCPLL_PLL_LOCK,
10138 5))
Paulo Zanonibe256dc2013-07-23 11:19:26 -030010139 DRM_ERROR("LCPLL not locked yet\n");
10140
10141 if (val & LCPLL_CD_SOURCE_FCLK) {
10142 val = I915_READ(LCPLL_CTL);
10143 val &= ~LCPLL_CD_SOURCE_FCLK;
10144 I915_WRITE(LCPLL_CTL, val);
10145
Imre Deakf53dd632016-06-28 13:37:32 +030010146 if (wait_for_us((I915_READ(LCPLL_CTL) &
10147 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
Paulo Zanonibe256dc2013-07-23 11:19:26 -030010148 DRM_ERROR("Switching back to LCPLL failed\n");
10149 }
Paulo Zanoni215733f2013-08-19 13:18:07 -030010150
Mika Kuoppala59bad942015-01-16 11:34:40 +020010151 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Chris Wilson91c8a322016-07-05 10:40:23 +010010152 intel_update_cdclk(&dev_priv->drm);
Paulo Zanonibe256dc2013-07-23 11:19:26 -030010153}
10154
Paulo Zanoni765dab672014-03-07 20:08:18 -030010155/*
10156 * Package states C8 and deeper are really deep PC states that can only be
10157 * reached when all the devices on the system allow it, so even if the graphics
10158 * device allows PC8+, it doesn't mean the system will actually get to these
10159 * states. Our driver only allows PC8+ when going into runtime PM.
10160 *
10161 * The requirements for PC8+ are that all the outputs are disabled, the power
10162 * well is disabled and most interrupts are disabled, and these are also
10163 * requirements for runtime PM. When these conditions are met, we manually do
10164 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
10165 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
10166 * hang the machine.
10167 *
10168 * When we really reach PC8 or deeper states (not just when we allow it) we lose
10169 * the state of some registers, so when we come back from PC8+ we need to
10170 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
10171 * need to take care of the registers kept by RC6. Notice that this happens even
10172 * if we don't put the device in PCI D3 state (which is what currently happens
10173 * because of the runtime PM support).
10174 *
10175 * For more, read "Display Sequences for Package C8" on the hardware
10176 * documentation.
10177 */
Paulo Zanonia14cb6f2014-03-07 20:08:17 -030010178void hsw_enable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -030010179{
Chris Wilson91c8a322016-07-05 10:40:23 +010010180 struct drm_device *dev = &dev_priv->drm;
Paulo Zanonic67a4702013-08-19 13:18:09 -030010181 uint32_t val;
10182
Paulo Zanonic67a4702013-08-19 13:18:09 -030010183 DRM_DEBUG_KMS("Enabling package C8+\n");
10184
Ville Syrjäläc2699522015-08-27 23:55:59 +030010185 if (HAS_PCH_LPT_LP(dev)) {
Paulo Zanonic67a4702013-08-19 13:18:09 -030010186 val = I915_READ(SOUTH_DSPCLK_GATE_D);
10187 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
10188 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
10189 }
10190
10191 lpt_disable_clkout_dp(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -030010192 hsw_disable_lcpll(dev_priv, true, true);
10193}
10194
Paulo Zanonia14cb6f2014-03-07 20:08:17 -030010195void hsw_disable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -030010196{
Chris Wilson91c8a322016-07-05 10:40:23 +010010197 struct drm_device *dev = &dev_priv->drm;
Paulo Zanonic67a4702013-08-19 13:18:09 -030010198 uint32_t val;
10199
Paulo Zanonic67a4702013-08-19 13:18:09 -030010200 DRM_DEBUG_KMS("Disabling package C8+\n");
10201
10202 hsw_restore_lcpll(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -030010203 lpt_init_pch_refclk(dev);
10204
Ville Syrjäläc2699522015-08-27 23:55:59 +030010205 if (HAS_PCH_LPT_LP(dev)) {
Paulo Zanonic67a4702013-08-19 13:18:09 -030010206 val = I915_READ(SOUTH_DSPCLK_GATE_D);
10207 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
10208 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
10209 }
Paulo Zanonic67a4702013-08-19 13:18:09 -030010210}
10211
Imre Deak324513c2016-06-13 16:44:36 +030010212static void bxt_modeset_commit_cdclk(struct drm_atomic_state *old_state)
Vandana Kannanf8437dd12014-11-24 13:37:39 +053010213{
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +030010214 struct drm_device *dev = old_state->dev;
Maarten Lankhorst1a617b72015-12-03 14:31:06 +010010215 struct intel_atomic_state *old_intel_state =
10216 to_intel_atomic_state(old_state);
10217 unsigned int req_cdclk = old_intel_state->dev_cdclk;
Vandana Kannanf8437dd12014-11-24 13:37:39 +053010218
Imre Deak324513c2016-06-13 16:44:36 +030010219 bxt_set_cdclk(to_i915(dev), req_cdclk);
Vandana Kannanf8437dd12014-11-24 13:37:39 +053010220}
10221
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030010222/* compute the max rate for new configuration */
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020010223static int ilk_max_pixel_rate(struct drm_atomic_state *state)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030010224{
Maarten Lankhorst565602d2015-12-10 12:33:57 +010010225 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Chris Wilsonfac5e232016-07-04 11:34:36 +010010226 struct drm_i915_private *dev_priv = to_i915(state->dev);
Maarten Lankhorst565602d2015-12-10 12:33:57 +010010227 struct drm_crtc *crtc;
10228 struct drm_crtc_state *cstate;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020010229 struct intel_crtc_state *crtc_state;
Maarten Lankhorst565602d2015-12-10 12:33:57 +010010230 unsigned max_pixel_rate = 0, i;
10231 enum pipe pipe;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030010232
Maarten Lankhorst565602d2015-12-10 12:33:57 +010010233 memcpy(intel_state->min_pixclk, dev_priv->min_pixclk,
10234 sizeof(intel_state->min_pixclk));
10235
10236 for_each_crtc_in_state(state, crtc, cstate, i) {
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020010237 int pixel_rate;
10238
Maarten Lankhorst565602d2015-12-10 12:33:57 +010010239 crtc_state = to_intel_crtc_state(cstate);
10240 if (!crtc_state->base.enable) {
10241 intel_state->min_pixclk[i] = 0;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030010242 continue;
Maarten Lankhorst565602d2015-12-10 12:33:57 +010010243 }
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030010244
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020010245 pixel_rate = ilk_pipe_pixel_rate(crtc_state);
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030010246
10247 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
Maarten Lankhorst565602d2015-12-10 12:33:57 +010010248 if (IS_BROADWELL(dev_priv) && crtc_state->ips_enabled)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030010249 pixel_rate = DIV_ROUND_UP(pixel_rate * 100, 95);
10250
Maarten Lankhorst565602d2015-12-10 12:33:57 +010010251 intel_state->min_pixclk[i] = pixel_rate;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030010252 }
10253
Maarten Lankhorst565602d2015-12-10 12:33:57 +010010254 for_each_pipe(dev_priv, pipe)
10255 max_pixel_rate = max(intel_state->min_pixclk[pipe], max_pixel_rate);
10256
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030010257 return max_pixel_rate;
10258}
10259
10260static void broadwell_set_cdclk(struct drm_device *dev, int cdclk)
10261{
Chris Wilsonfac5e232016-07-04 11:34:36 +010010262 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030010263 uint32_t val, data;
10264 int ret;
10265
10266 if (WARN((I915_READ(LCPLL_CTL) &
10267 (LCPLL_PLL_DISABLE | LCPLL_PLL_LOCK |
10268 LCPLL_CD_CLOCK_DISABLE | LCPLL_ROOT_CD_CLOCK_DISABLE |
10269 LCPLL_CD2X_CLOCK_DISABLE | LCPLL_POWER_DOWN_ALLOW |
10270 LCPLL_CD_SOURCE_FCLK)) != LCPLL_PLL_LOCK,
10271 "trying to change cdclk frequency with cdclk not enabled\n"))
10272 return;
10273
10274 mutex_lock(&dev_priv->rps.hw_lock);
10275 ret = sandybridge_pcode_write(dev_priv,
10276 BDW_PCODE_DISPLAY_FREQ_CHANGE_REQ, 0x0);
10277 mutex_unlock(&dev_priv->rps.hw_lock);
10278 if (ret) {
10279 DRM_ERROR("failed to inform pcode about cdclk change\n");
10280 return;
10281 }
10282
10283 val = I915_READ(LCPLL_CTL);
10284 val |= LCPLL_CD_SOURCE_FCLK;
10285 I915_WRITE(LCPLL_CTL, val);
10286
Tvrtko Ursulin5ba00172016-03-03 14:36:45 +000010287 if (wait_for_us(I915_READ(LCPLL_CTL) &
10288 LCPLL_CD_SOURCE_FCLK_DONE, 1))
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030010289 DRM_ERROR("Switching to FCLK failed\n");
10290
10291 val = I915_READ(LCPLL_CTL);
10292 val &= ~LCPLL_CLK_FREQ_MASK;
10293
10294 switch (cdclk) {
10295 case 450000:
10296 val |= LCPLL_CLK_FREQ_450;
10297 data = 0;
10298 break;
10299 case 540000:
10300 val |= LCPLL_CLK_FREQ_54O_BDW;
10301 data = 1;
10302 break;
10303 case 337500:
10304 val |= LCPLL_CLK_FREQ_337_5_BDW;
10305 data = 2;
10306 break;
10307 case 675000:
10308 val |= LCPLL_CLK_FREQ_675_BDW;
10309 data = 3;
10310 break;
10311 default:
10312 WARN(1, "invalid cdclk frequency\n");
10313 return;
10314 }
10315
10316 I915_WRITE(LCPLL_CTL, val);
10317
10318 val = I915_READ(LCPLL_CTL);
10319 val &= ~LCPLL_CD_SOURCE_FCLK;
10320 I915_WRITE(LCPLL_CTL, val);
10321
Tvrtko Ursulin5ba00172016-03-03 14:36:45 +000010322 if (wait_for_us((I915_READ(LCPLL_CTL) &
10323 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030010324 DRM_ERROR("Switching back to LCPLL failed\n");
10325
10326 mutex_lock(&dev_priv->rps.hw_lock);
10327 sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ, data);
10328 mutex_unlock(&dev_priv->rps.hw_lock);
10329
Ville Syrjälä7f1052a2016-04-26 19:46:32 +030010330 I915_WRITE(CDCLK_FREQ, DIV_ROUND_CLOSEST(cdclk, 1000) - 1);
10331
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030010332 intel_update_cdclk(dev);
10333
10334 WARN(cdclk != dev_priv->cdclk_freq,
10335 "cdclk requested %d kHz but got %d kHz\n",
10336 cdclk, dev_priv->cdclk_freq);
10337}
10338
Ville Syrjälä587c7912016-05-11 22:44:41 +030010339static int broadwell_calc_cdclk(int max_pixclk)
10340{
10341 if (max_pixclk > 540000)
10342 return 675000;
10343 else if (max_pixclk > 450000)
10344 return 540000;
10345 else if (max_pixclk > 337500)
10346 return 450000;
10347 else
10348 return 337500;
10349}
10350
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020010351static int broadwell_modeset_calc_cdclk(struct drm_atomic_state *state)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030010352{
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020010353 struct drm_i915_private *dev_priv = to_i915(state->dev);
Maarten Lankhorst1a617b72015-12-03 14:31:06 +010010354 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020010355 int max_pixclk = ilk_max_pixel_rate(state);
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030010356 int cdclk;
10357
10358 /*
10359 * FIXME should also account for plane ratio
10360 * once 64bpp pixel formats are supported.
10361 */
Ville Syrjälä587c7912016-05-11 22:44:41 +030010362 cdclk = broadwell_calc_cdclk(max_pixclk);
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030010363
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030010364 if (cdclk > dev_priv->max_cdclk_freq) {
Maarten Lankhorst63ba5342015-11-24 11:29:03 +010010365 DRM_DEBUG_KMS("requested cdclk (%d kHz) exceeds max (%d kHz)\n",
10366 cdclk, dev_priv->max_cdclk_freq);
10367 return -EINVAL;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030010368 }
10369
Maarten Lankhorst1a617b72015-12-03 14:31:06 +010010370 intel_state->cdclk = intel_state->dev_cdclk = cdclk;
10371 if (!intel_state->active_crtcs)
Ville Syrjälä587c7912016-05-11 22:44:41 +030010372 intel_state->dev_cdclk = broadwell_calc_cdclk(0);
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030010373
10374 return 0;
10375}
10376
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020010377static void broadwell_modeset_commit_cdclk(struct drm_atomic_state *old_state)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030010378{
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020010379 struct drm_device *dev = old_state->dev;
Maarten Lankhorst1a617b72015-12-03 14:31:06 +010010380 struct intel_atomic_state *old_intel_state =
10381 to_intel_atomic_state(old_state);
10382 unsigned req_cdclk = old_intel_state->dev_cdclk;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030010383
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020010384 broadwell_set_cdclk(dev, req_cdclk);
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030010385}
10386
Clint Taylorc89e39f2016-05-13 23:41:21 +030010387static int skl_modeset_calc_cdclk(struct drm_atomic_state *state)
10388{
10389 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
10390 struct drm_i915_private *dev_priv = to_i915(state->dev);
10391 const int max_pixclk = ilk_max_pixel_rate(state);
Ville Syrjäläa8ca4932016-05-13 23:41:23 +030010392 int vco = intel_state->cdclk_pll_vco;
Clint Taylorc89e39f2016-05-13 23:41:21 +030010393 int cdclk;
10394
10395 /*
10396 * FIXME should also account for plane ratio
10397 * once 64bpp pixel formats are supported.
10398 */
Ville Syrjäläa8ca4932016-05-13 23:41:23 +030010399 cdclk = skl_calc_cdclk(max_pixclk, vco);
Clint Taylorc89e39f2016-05-13 23:41:21 +030010400
10401 /*
10402 * FIXME move the cdclk caclulation to
10403 * compute_config() so we can fail gracegully.
10404 */
10405 if (cdclk > dev_priv->max_cdclk_freq) {
10406 DRM_ERROR("requested cdclk (%d kHz) exceeds max (%d kHz)\n",
10407 cdclk, dev_priv->max_cdclk_freq);
10408 cdclk = dev_priv->max_cdclk_freq;
10409 }
10410
10411 intel_state->cdclk = intel_state->dev_cdclk = cdclk;
10412 if (!intel_state->active_crtcs)
Ville Syrjäläa8ca4932016-05-13 23:41:23 +030010413 intel_state->dev_cdclk = skl_calc_cdclk(0, vco);
Clint Taylorc89e39f2016-05-13 23:41:21 +030010414
10415 return 0;
10416}
10417
10418static void skl_modeset_commit_cdclk(struct drm_atomic_state *old_state)
10419{
Ville Syrjälä1cd593e2016-05-13 23:41:26 +030010420 struct drm_i915_private *dev_priv = to_i915(old_state->dev);
10421 struct intel_atomic_state *intel_state = to_intel_atomic_state(old_state);
10422 unsigned int req_cdclk = intel_state->dev_cdclk;
10423 unsigned int req_vco = intel_state->cdclk_pll_vco;
Clint Taylorc89e39f2016-05-13 23:41:21 +030010424
Ville Syrjälä1cd593e2016-05-13 23:41:26 +030010425 skl_set_cdclk(dev_priv, req_cdclk, req_vco);
Clint Taylorc89e39f2016-05-13 23:41:21 +030010426}
10427
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +020010428static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
10429 struct intel_crtc_state *crtc_state)
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030010430{
Ville Syrjäläd7edc4e2016-06-22 21:57:07 +030010431 if (!intel_crtc_has_type(crtc_state, INTEL_OUTPUT_DSI)) {
Mika Kaholaaf3997b2016-02-05 13:29:28 +020010432 if (!intel_ddi_pll_select(crtc, crtc_state))
10433 return -EINVAL;
10434 }
Daniel Vetter716c2e52014-06-25 22:02:02 +030010435
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +030010436 crtc->lowfreq_avail = false;
Daniel Vetter644cef32014-04-24 23:55:07 +020010437
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +020010438 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080010439}
10440
Satheeshakrishna M3760b592014-08-22 09:49:11 +053010441static void bxt_get_ddi_pll(struct drm_i915_private *dev_priv,
10442 enum port port,
10443 struct intel_crtc_state *pipe_config)
10444{
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020010445 enum intel_dpll_id id;
10446
Satheeshakrishna M3760b592014-08-22 09:49:11 +053010447 switch (port) {
10448 case PORT_A:
Imre Deak08250c42016-03-14 19:55:34 +020010449 id = DPLL_ID_SKL_DPLL0;
Satheeshakrishna M3760b592014-08-22 09:49:11 +053010450 break;
10451 case PORT_B:
Imre Deak08250c42016-03-14 19:55:34 +020010452 id = DPLL_ID_SKL_DPLL1;
Satheeshakrishna M3760b592014-08-22 09:49:11 +053010453 break;
10454 case PORT_C:
Imre Deak08250c42016-03-14 19:55:34 +020010455 id = DPLL_ID_SKL_DPLL2;
Satheeshakrishna M3760b592014-08-22 09:49:11 +053010456 break;
10457 default:
10458 DRM_ERROR("Incorrect port type\n");
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020010459 return;
Satheeshakrishna M3760b592014-08-22 09:49:11 +053010460 }
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020010461
10462 pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id);
Satheeshakrishna M3760b592014-08-22 09:49:11 +053010463}
10464
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +000010465static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
10466 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010467 struct intel_crtc_state *pipe_config)
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +000010468{
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020010469 enum intel_dpll_id id;
Ander Conselvan de Oliveiraa3c988e2016-03-08 17:46:27 +020010470 u32 temp;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +000010471
10472 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
Ander Conselvan de Oliveirac8560522016-09-01 15:08:07 -070010473 id = temp >> (port * 3 + 1);
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +000010474
Ander Conselvan de Oliveirac8560522016-09-01 15:08:07 -070010475 if (WARN_ON(id < SKL_DPLL0 || id > SKL_DPLL3))
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020010476 return;
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020010477
10478 pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id);
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +000010479}
10480
Damien Lespiau7d2c8172014-07-29 18:06:18 +010010481static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
10482 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010483 struct intel_crtc_state *pipe_config)
Damien Lespiau7d2c8172014-07-29 18:06:18 +010010484{
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020010485 enum intel_dpll_id id;
Ander Conselvan de Oliveirac8560522016-09-01 15:08:07 -070010486 uint32_t ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020010487
Ander Conselvan de Oliveirac8560522016-09-01 15:08:07 -070010488 switch (ddi_pll_sel) {
Damien Lespiau7d2c8172014-07-29 18:06:18 +010010489 case PORT_CLK_SEL_WRPLL1:
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020010490 id = DPLL_ID_WRPLL1;
Damien Lespiau7d2c8172014-07-29 18:06:18 +010010491 break;
10492 case PORT_CLK_SEL_WRPLL2:
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020010493 id = DPLL_ID_WRPLL2;
Damien Lespiau7d2c8172014-07-29 18:06:18 +010010494 break;
Maarten Lankhorst00490c22015-11-16 14:42:12 +010010495 case PORT_CLK_SEL_SPLL:
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020010496 id = DPLL_ID_SPLL;
Ville Syrjälä79bd23d2015-12-01 23:32:07 +020010497 break;
Ander Conselvan de Oliveira9d16da62016-03-08 17:46:26 +020010498 case PORT_CLK_SEL_LCPLL_810:
10499 id = DPLL_ID_LCPLL_810;
10500 break;
10501 case PORT_CLK_SEL_LCPLL_1350:
10502 id = DPLL_ID_LCPLL_1350;
10503 break;
10504 case PORT_CLK_SEL_LCPLL_2700:
10505 id = DPLL_ID_LCPLL_2700;
10506 break;
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020010507 default:
Ander Conselvan de Oliveirac8560522016-09-01 15:08:07 -070010508 MISSING_CASE(ddi_pll_sel);
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020010509 /* fall through */
10510 case PORT_CLK_SEL_NONE:
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020010511 return;
Damien Lespiau7d2c8172014-07-29 18:06:18 +010010512 }
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020010513
10514 pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id);
Damien Lespiau7d2c8172014-07-29 18:06:18 +010010515}
10516
Jani Nikulacf304292016-03-18 17:05:41 +020010517static bool hsw_get_transcoder_state(struct intel_crtc *crtc,
10518 struct intel_crtc_state *pipe_config,
10519 unsigned long *power_domain_mask)
10520{
10521 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +010010522 struct drm_i915_private *dev_priv = to_i915(dev);
Jani Nikulacf304292016-03-18 17:05:41 +020010523 enum intel_display_power_domain power_domain;
10524 u32 tmp;
10525
Imre Deakd9a7bc62016-05-12 16:18:50 +030010526 /*
10527 * The pipe->transcoder mapping is fixed with the exception of the eDP
10528 * transcoder handled below.
10529 */
Jani Nikulacf304292016-03-18 17:05:41 +020010530 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
10531
10532 /*
10533 * XXX: Do intel_display_power_get_if_enabled before reading this (for
10534 * consistency and less surprising code; it's in always on power).
10535 */
10536 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
10537 if (tmp & TRANS_DDI_FUNC_ENABLE) {
10538 enum pipe trans_edp_pipe;
10539 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
10540 default:
10541 WARN(1, "unknown pipe linked to edp transcoder\n");
10542 case TRANS_DDI_EDP_INPUT_A_ONOFF:
10543 case TRANS_DDI_EDP_INPUT_A_ON:
10544 trans_edp_pipe = PIPE_A;
10545 break;
10546 case TRANS_DDI_EDP_INPUT_B_ONOFF:
10547 trans_edp_pipe = PIPE_B;
10548 break;
10549 case TRANS_DDI_EDP_INPUT_C_ONOFF:
10550 trans_edp_pipe = PIPE_C;
10551 break;
10552 }
10553
10554 if (trans_edp_pipe == crtc->pipe)
10555 pipe_config->cpu_transcoder = TRANSCODER_EDP;
10556 }
10557
10558 power_domain = POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder);
10559 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
10560 return false;
10561 *power_domain_mask |= BIT(power_domain);
10562
10563 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
10564
10565 return tmp & PIPECONF_ENABLE;
10566}
10567
Jani Nikula4d1de972016-03-18 17:05:42 +020010568static bool bxt_get_dsi_transcoder_state(struct intel_crtc *crtc,
10569 struct intel_crtc_state *pipe_config,
10570 unsigned long *power_domain_mask)
10571{
10572 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +010010573 struct drm_i915_private *dev_priv = to_i915(dev);
Jani Nikula4d1de972016-03-18 17:05:42 +020010574 enum intel_display_power_domain power_domain;
10575 enum port port;
10576 enum transcoder cpu_transcoder;
10577 u32 tmp;
10578
Jani Nikula4d1de972016-03-18 17:05:42 +020010579 for_each_port_masked(port, BIT(PORT_A) | BIT(PORT_C)) {
10580 if (port == PORT_A)
10581 cpu_transcoder = TRANSCODER_DSI_A;
10582 else
10583 cpu_transcoder = TRANSCODER_DSI_C;
10584
10585 power_domain = POWER_DOMAIN_TRANSCODER(cpu_transcoder);
10586 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
10587 continue;
10588 *power_domain_mask |= BIT(power_domain);
10589
Imre Deakdb18b6a2016-03-24 12:41:40 +020010590 /*
10591 * The PLL needs to be enabled with a valid divider
10592 * configuration, otherwise accessing DSI registers will hang
10593 * the machine. See BSpec North Display Engine
10594 * registers/MIPI[BXT]. We can break out here early, since we
10595 * need the same DSI PLL to be enabled for both DSI ports.
10596 */
10597 if (!intel_dsi_pll_is_enabled(dev_priv))
10598 break;
10599
Jani Nikula4d1de972016-03-18 17:05:42 +020010600 /* XXX: this works for video mode only */
10601 tmp = I915_READ(BXT_MIPI_PORT_CTRL(port));
10602 if (!(tmp & DPI_ENABLE))
10603 continue;
10604
10605 tmp = I915_READ(MIPI_CTRL(port));
10606 if ((tmp & BXT_PIPE_SELECT_MASK) != BXT_PIPE_SELECT(crtc->pipe))
10607 continue;
10608
10609 pipe_config->cpu_transcoder = cpu_transcoder;
Jani Nikula4d1de972016-03-18 17:05:42 +020010610 break;
10611 }
10612
Ville Syrjäläd7edc4e2016-06-22 21:57:07 +030010613 return transcoder_is_dsi(pipe_config->cpu_transcoder);
Jani Nikula4d1de972016-03-18 17:05:42 +020010614}
10615
Daniel Vetter26804af2014-06-25 22:01:55 +030010616static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010617 struct intel_crtc_state *pipe_config)
Daniel Vetter26804af2014-06-25 22:01:55 +030010618{
10619 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +010010620 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetterd452c5b2014-07-04 11:27:39 -030010621 struct intel_shared_dpll *pll;
Daniel Vetter26804af2014-06-25 22:01:55 +030010622 enum port port;
10623 uint32_t tmp;
10624
10625 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
10626
10627 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
10628
Rodrigo Vivief11bdb2015-10-28 04:16:45 -070010629 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev))
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +000010630 skylake_get_ddi_pll(dev_priv, port, pipe_config);
Satheeshakrishna M3760b592014-08-22 09:49:11 +053010631 else if (IS_BROXTON(dev))
10632 bxt_get_ddi_pll(dev_priv, port, pipe_config);
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +000010633 else
10634 haswell_get_ddi_pll(dev_priv, port, pipe_config);
Daniel Vetter9cd86932014-06-25 22:01:57 +030010635
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020010636 pll = pipe_config->shared_dpll;
10637 if (pll) {
Ander Conselvan de Oliveira2edd6442016-03-08 17:46:21 +020010638 WARN_ON(!pll->funcs.get_hw_state(dev_priv, pll,
10639 &pipe_config->dpll_hw_state));
Daniel Vetterd452c5b2014-07-04 11:27:39 -030010640 }
10641
Daniel Vetter26804af2014-06-25 22:01:55 +030010642 /*
10643 * Haswell has only FDI/PCH transcoder A. It is which is connected to
10644 * DDI E. So just check whether this pipe is wired to DDI E and whether
10645 * the PCH transcoder is on.
10646 */
Damien Lespiauca370452013-12-03 13:56:24 +000010647 if (INTEL_INFO(dev)->gen < 9 &&
10648 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
Daniel Vetter26804af2014-06-25 22:01:55 +030010649 pipe_config->has_pch_encoder = true;
10650
10651 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
10652 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
10653 FDI_DP_PORT_WIDTH_SHIFT) + 1;
10654
10655 ironlake_get_fdi_m_n_config(crtc, pipe_config);
10656 }
10657}
10658
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010659static bool haswell_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010660 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010661{
10662 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +010010663 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak17290502016-02-12 18:55:11 +020010664 enum intel_display_power_domain power_domain;
10665 unsigned long power_domain_mask;
Jani Nikulacf304292016-03-18 17:05:41 +020010666 bool active;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010667
Imre Deak17290502016-02-12 18:55:11 +020010668 power_domain = POWER_DOMAIN_PIPE(crtc->pipe);
10669 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Imre Deakb5482bd2014-03-05 16:20:55 +020010670 return false;
Imre Deak17290502016-02-12 18:55:11 +020010671 power_domain_mask = BIT(power_domain);
10672
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020010673 pipe_config->shared_dpll = NULL;
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010674
Jani Nikulacf304292016-03-18 17:05:41 +020010675 active = hsw_get_transcoder_state(crtc, pipe_config, &power_domain_mask);
Daniel Vettereccb1402013-05-22 00:50:22 +020010676
Ville Syrjäläd7edc4e2016-06-22 21:57:07 +030010677 if (IS_BROXTON(dev_priv) &&
10678 bxt_get_dsi_transcoder_state(crtc, pipe_config, &power_domain_mask)) {
10679 WARN_ON(active);
10680 active = true;
Jani Nikula4d1de972016-03-18 17:05:42 +020010681 }
10682
Jani Nikulacf304292016-03-18 17:05:41 +020010683 if (!active)
Imre Deak17290502016-02-12 18:55:11 +020010684 goto out;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010685
Ville Syrjäläd7edc4e2016-06-22 21:57:07 +030010686 if (!transcoder_is_dsi(pipe_config->cpu_transcoder)) {
Jani Nikula4d1de972016-03-18 17:05:42 +020010687 haswell_get_ddi_port_state(crtc, pipe_config);
10688 intel_get_pipe_timings(crtc, pipe_config);
10689 }
Daniel Vetter627eb5a2013-04-29 19:33:42 +020010690
Jani Nikulabc58be62016-03-18 17:05:39 +020010691 intel_get_pipe_src_size(crtc, pipe_config);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010692
Lionel Landwerlin05dc6982016-03-16 10:57:15 +000010693 pipe_config->gamma_mode =
10694 I915_READ(GAMMA_MODE(crtc->pipe)) & GAMMA_MODE_MODE_MASK;
10695
Chandra Kondurua1b22782015-04-07 15:28:45 -070010696 if (INTEL_INFO(dev)->gen >= 9) {
10697 skl_init_scalers(dev, crtc, pipe_config);
10698 }
10699
Chandra Konduruaf99ced2015-05-11 14:35:47 -070010700 if (INTEL_INFO(dev)->gen >= 9) {
10701 pipe_config->scaler_state.scaler_id = -1;
10702 pipe_config->scaler_state.scaler_users &= ~(1 << SKL_CRTC_INDEX);
10703 }
10704
Imre Deak17290502016-02-12 18:55:11 +020010705 power_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
10706 if (intel_display_power_get_if_enabled(dev_priv, power_domain)) {
10707 power_domain_mask |= BIT(power_domain);
Rodrigo Vivi1c132b42015-09-02 15:19:26 -070010708 if (INTEL_INFO(dev)->gen >= 9)
Jesse Barnesbd2e2442014-11-13 17:51:47 +000010709 skylake_get_pfit_config(crtc, pipe_config);
Jesse Barnesff6d9f52015-01-21 17:19:54 -080010710 else
Rodrigo Vivi1c132b42015-09-02 15:19:26 -070010711 ironlake_get_pfit_config(crtc, pipe_config);
Jesse Barnesbd2e2442014-11-13 17:51:47 +000010712 }
Daniel Vetter88adfff2013-03-28 10:42:01 +010010713
Jesse Barnese59150d2014-01-07 13:30:45 -080010714 if (IS_HASWELL(dev))
10715 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
10716 (I915_READ(IPS_CTL) & IPS_ENABLE);
Paulo Zanoni42db64e2013-05-31 16:33:22 -030010717
Jani Nikula4d1de972016-03-18 17:05:42 +020010718 if (pipe_config->cpu_transcoder != TRANSCODER_EDP &&
10719 !transcoder_is_dsi(pipe_config->cpu_transcoder)) {
Clint Taylorebb69c92014-09-30 10:30:22 -070010720 pipe_config->pixel_multiplier =
10721 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
10722 } else {
10723 pipe_config->pixel_multiplier = 1;
10724 }
Daniel Vetter6c49f242013-06-06 12:45:25 +020010725
Imre Deak17290502016-02-12 18:55:11 +020010726out:
10727 for_each_power_domain(power_domain, power_domain_mask)
10728 intel_display_power_put(dev_priv, power_domain);
10729
Jani Nikulacf304292016-03-18 17:05:41 +020010730 return active;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010731}
10732
Maarten Lankhorst55a08b3f2016-01-07 11:54:10 +010010733static void i845_update_cursor(struct drm_crtc *crtc, u32 base,
10734 const struct intel_plane_state *plane_state)
Chris Wilson560b85b2010-08-07 11:01:38 +010010735{
10736 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +010010737 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson560b85b2010-08-07 11:01:38 +010010738 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälädc41c152014-08-13 11:57:05 +030010739 uint32_t cntl = 0, size = 0;
Chris Wilson560b85b2010-08-07 11:01:38 +010010740
Ville Syrjälä936e71e2016-07-26 19:06:59 +030010741 if (plane_state && plane_state->base.visible) {
Maarten Lankhorst55a08b3f2016-01-07 11:54:10 +010010742 unsigned int width = plane_state->base.crtc_w;
10743 unsigned int height = plane_state->base.crtc_h;
Ville Syrjälädc41c152014-08-13 11:57:05 +030010744 unsigned int stride = roundup_pow_of_two(width) * 4;
10745
10746 switch (stride) {
10747 default:
10748 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
10749 width, stride);
10750 stride = 256;
10751 /* fallthrough */
10752 case 256:
10753 case 512:
10754 case 1024:
10755 case 2048:
10756 break;
Chris Wilson4b0e3332014-05-30 16:35:26 +030010757 }
10758
Ville Syrjälädc41c152014-08-13 11:57:05 +030010759 cntl |= CURSOR_ENABLE |
10760 CURSOR_GAMMA_ENABLE |
10761 CURSOR_FORMAT_ARGB |
10762 CURSOR_STRIDE(stride);
10763
10764 size = (height << 12) | width;
Chris Wilson4b0e3332014-05-30 16:35:26 +030010765 }
Chris Wilson560b85b2010-08-07 11:01:38 +010010766
Ville Syrjälädc41c152014-08-13 11:57:05 +030010767 if (intel_crtc->cursor_cntl != 0 &&
10768 (intel_crtc->cursor_base != base ||
10769 intel_crtc->cursor_size != size ||
10770 intel_crtc->cursor_cntl != cntl)) {
10771 /* On these chipsets we can only modify the base/size/stride
10772 * whilst the cursor is disabled.
10773 */
Ville Syrjälä0b87c242015-09-22 19:47:51 +030010774 I915_WRITE(CURCNTR(PIPE_A), 0);
10775 POSTING_READ(CURCNTR(PIPE_A));
Ville Syrjälädc41c152014-08-13 11:57:05 +030010776 intel_crtc->cursor_cntl = 0;
10777 }
10778
Ville Syrjälä99d1f382014-09-12 20:53:32 +030010779 if (intel_crtc->cursor_base != base) {
Ville Syrjälä0b87c242015-09-22 19:47:51 +030010780 I915_WRITE(CURBASE(PIPE_A), base);
Ville Syrjälä99d1f382014-09-12 20:53:32 +030010781 intel_crtc->cursor_base = base;
10782 }
Ville Syrjälädc41c152014-08-13 11:57:05 +030010783
10784 if (intel_crtc->cursor_size != size) {
10785 I915_WRITE(CURSIZE, size);
10786 intel_crtc->cursor_size = size;
10787 }
10788
Chris Wilson4b0e3332014-05-30 16:35:26 +030010789 if (intel_crtc->cursor_cntl != cntl) {
Ville Syrjälä0b87c242015-09-22 19:47:51 +030010790 I915_WRITE(CURCNTR(PIPE_A), cntl);
10791 POSTING_READ(CURCNTR(PIPE_A));
Chris Wilson4b0e3332014-05-30 16:35:26 +030010792 intel_crtc->cursor_cntl = cntl;
10793 }
Chris Wilson560b85b2010-08-07 11:01:38 +010010794}
10795
Maarten Lankhorst55a08b3f2016-01-07 11:54:10 +010010796static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base,
10797 const struct intel_plane_state *plane_state)
Chris Wilson560b85b2010-08-07 11:01:38 +010010798{
10799 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +010010800 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson560b85b2010-08-07 11:01:38 +010010801 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Lyude62e0fb82016-08-22 12:50:08 -040010802 const struct skl_wm_values *wm = &dev_priv->wm.skl_results;
Chris Wilson560b85b2010-08-07 11:01:38 +010010803 int pipe = intel_crtc->pipe;
Ville Syrjälä663f3122015-12-14 13:16:48 +020010804 uint32_t cntl = 0;
Chris Wilson560b85b2010-08-07 11:01:38 +010010805
Lyude62e0fb82016-08-22 12:50:08 -040010806 if (INTEL_GEN(dev_priv) >= 9 && wm->dirty_pipes & drm_crtc_mask(crtc))
10807 skl_write_cursor_wm(intel_crtc, wm);
10808
Ville Syrjälä936e71e2016-07-26 19:06:59 +030010809 if (plane_state && plane_state->base.visible) {
Chris Wilson4b0e3332014-05-30 16:35:26 +030010810 cntl = MCURSOR_GAMMA_ENABLE;
Maarten Lankhorst55a08b3f2016-01-07 11:54:10 +010010811 switch (plane_state->base.crtc_w) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +053010812 case 64:
10813 cntl |= CURSOR_MODE_64_ARGB_AX;
10814 break;
10815 case 128:
10816 cntl |= CURSOR_MODE_128_ARGB_AX;
10817 break;
10818 case 256:
10819 cntl |= CURSOR_MODE_256_ARGB_AX;
10820 break;
10821 default:
Maarten Lankhorst55a08b3f2016-01-07 11:54:10 +010010822 MISSING_CASE(plane_state->base.crtc_w);
Sagar Kamble4726e0b2014-03-10 17:06:23 +053010823 return;
Chris Wilson560b85b2010-08-07 11:01:38 +010010824 }
Chris Wilson4b0e3332014-05-30 16:35:26 +030010825 cntl |= pipe << 28; /* Connect to correct pipe */
Ville Syrjälä47bf17a2014-09-12 20:53:33 +030010826
Bob Paauwefc6f93b2015-08-31 14:03:30 -070010827 if (HAS_DDI(dev))
Ville Syrjälä47bf17a2014-09-12 20:53:33 +030010828 cntl |= CURSOR_PIPE_CSC_ENABLE;
Chris Wilson4b0e3332014-05-30 16:35:26 +030010829
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +030010830 if (plane_state->base.rotation == DRM_ROTATE_180)
Maarten Lankhorst55a08b3f2016-01-07 11:54:10 +010010831 cntl |= CURSOR_ROTATE_180;
10832 }
Ville Syrjälä4398ad42014-10-23 07:41:34 -070010833
Chris Wilson4b0e3332014-05-30 16:35:26 +030010834 if (intel_crtc->cursor_cntl != cntl) {
10835 I915_WRITE(CURCNTR(pipe), cntl);
10836 POSTING_READ(CURCNTR(pipe));
10837 intel_crtc->cursor_cntl = cntl;
10838 }
10839
Jesse Barnes65a21cd2011-10-12 11:10:21 -070010840 /* and commit changes on next vblank */
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030010841 I915_WRITE(CURBASE(pipe), base);
10842 POSTING_READ(CURBASE(pipe));
Ville Syrjälä99d1f382014-09-12 20:53:32 +030010843
10844 intel_crtc->cursor_base = base;
Jesse Barnes65a21cd2011-10-12 11:10:21 -070010845}
10846
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010847/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +010010848static void intel_crtc_update_cursor(struct drm_crtc *crtc,
Maarten Lankhorst55a08b3f2016-01-07 11:54:10 +010010849 const struct intel_plane_state *plane_state)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010850{
10851 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +010010852 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010853 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10854 int pipe = intel_crtc->pipe;
Maarten Lankhorst55a08b3f2016-01-07 11:54:10 +010010855 u32 base = intel_crtc->cursor_addr;
10856 u32 pos = 0;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010857
Maarten Lankhorst55a08b3f2016-01-07 11:54:10 +010010858 if (plane_state) {
10859 int x = plane_state->base.crtc_x;
10860 int y = plane_state->base.crtc_y;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010861
Maarten Lankhorst55a08b3f2016-01-07 11:54:10 +010010862 if (x < 0) {
10863 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
10864 x = -x;
10865 }
10866 pos |= x << CURSOR_X_SHIFT;
10867
10868 if (y < 0) {
10869 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
10870 y = -y;
10871 }
10872 pos |= y << CURSOR_Y_SHIFT;
10873
10874 /* ILK+ do this automagically */
10875 if (HAS_GMCH_DISPLAY(dev) &&
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +030010876 plane_state->base.rotation == DRM_ROTATE_180) {
Maarten Lankhorst55a08b3f2016-01-07 11:54:10 +010010877 base += (plane_state->base.crtc_h *
10878 plane_state->base.crtc_w - 1) * 4;
10879 }
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010880 }
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010881
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030010882 I915_WRITE(CURPOS(pipe), pos);
10883
Ville Syrjälä8ac54662014-08-12 19:39:54 +030010884 if (IS_845G(dev) || IS_I865G(dev))
Maarten Lankhorst55a08b3f2016-01-07 11:54:10 +010010885 i845_update_cursor(crtc, base, plane_state);
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030010886 else
Maarten Lankhorst55a08b3f2016-01-07 11:54:10 +010010887 i9xx_update_cursor(crtc, base, plane_state);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010888}
10889
Ville Syrjälädc41c152014-08-13 11:57:05 +030010890static bool cursor_size_ok(struct drm_device *dev,
10891 uint32_t width, uint32_t height)
10892{
10893 if (width == 0 || height == 0)
10894 return false;
10895
10896 /*
10897 * 845g/865g are special in that they are only limited by
10898 * the width of their cursors, the height is arbitrary up to
10899 * the precision of the register. Everything else requires
10900 * square cursors, limited to a few power-of-two sizes.
10901 */
10902 if (IS_845G(dev) || IS_I865G(dev)) {
10903 if ((width & 63) != 0)
10904 return false;
10905
10906 if (width > (IS_845G(dev) ? 64 : 512))
10907 return false;
10908
10909 if (height > 1023)
10910 return false;
10911 } else {
10912 switch (width | height) {
10913 case 256:
10914 case 128:
10915 if (IS_GEN2(dev))
10916 return false;
10917 case 64:
10918 break;
10919 default:
10920 return false;
10921 }
10922 }
10923
10924 return true;
10925}
10926
Jesse Barnes79e53942008-11-07 14:24:08 -080010927/* VESA 640x480x72Hz mode to set on the pipe */
10928static struct drm_display_mode load_detect_mode = {
10929 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
10930 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
10931};
10932
Daniel Vettera8bb6812014-02-10 18:00:39 +010010933struct drm_framebuffer *
10934__intel_framebuffer_create(struct drm_device *dev,
10935 struct drm_mode_fb_cmd2 *mode_cmd,
10936 struct drm_i915_gem_object *obj)
Chris Wilsond2dff872011-04-19 08:36:26 +010010937{
10938 struct intel_framebuffer *intel_fb;
10939 int ret;
10940
10941 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Lukas Wunnerdcb13942015-07-04 11:50:58 +020010942 if (!intel_fb)
Chris Wilsond2dff872011-04-19 08:36:26 +010010943 return ERR_PTR(-ENOMEM);
Chris Wilsond2dff872011-04-19 08:36:26 +010010944
10945 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Daniel Vetterdd4916c2013-10-09 21:23:51 +020010946 if (ret)
10947 goto err;
Chris Wilsond2dff872011-04-19 08:36:26 +010010948
10949 return &intel_fb->base;
Daniel Vetterdd4916c2013-10-09 21:23:51 +020010950
Lukas Wunnerdcb13942015-07-04 11:50:58 +020010951err:
10952 kfree(intel_fb);
Daniel Vetterdd4916c2013-10-09 21:23:51 +020010953 return ERR_PTR(ret);
Chris Wilsond2dff872011-04-19 08:36:26 +010010954}
10955
Daniel Vetterb5ea6422014-03-02 21:18:00 +010010956static struct drm_framebuffer *
Daniel Vettera8bb6812014-02-10 18:00:39 +010010957intel_framebuffer_create(struct drm_device *dev,
10958 struct drm_mode_fb_cmd2 *mode_cmd,
10959 struct drm_i915_gem_object *obj)
10960{
10961 struct drm_framebuffer *fb;
10962 int ret;
10963
10964 ret = i915_mutex_lock_interruptible(dev);
10965 if (ret)
10966 return ERR_PTR(ret);
10967 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
10968 mutex_unlock(&dev->struct_mutex);
10969
10970 return fb;
10971}
10972
Chris Wilsond2dff872011-04-19 08:36:26 +010010973static u32
10974intel_framebuffer_pitch_for_width(int width, int bpp)
10975{
10976 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
10977 return ALIGN(pitch, 64);
10978}
10979
10980static u32
10981intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
10982{
10983 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
Fabian Frederick1267a262014-07-01 20:39:41 +020010984 return PAGE_ALIGN(pitch * mode->vdisplay);
Chris Wilsond2dff872011-04-19 08:36:26 +010010985}
10986
10987static struct drm_framebuffer *
10988intel_framebuffer_create_for_mode(struct drm_device *dev,
10989 struct drm_display_mode *mode,
10990 int depth, int bpp)
10991{
Lukas Wunnerdcb13942015-07-04 11:50:58 +020010992 struct drm_framebuffer *fb;
Chris Wilsond2dff872011-04-19 08:36:26 +010010993 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +000010994 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +010010995
Dave Gordond37cd8a2016-04-22 19:14:32 +010010996 obj = i915_gem_object_create(dev,
Chris Wilsond2dff872011-04-19 08:36:26 +010010997 intel_framebuffer_size_for_mode(mode, bpp));
Chris Wilsonfe3db792016-04-25 13:32:13 +010010998 if (IS_ERR(obj))
10999 return ERR_CAST(obj);
Chris Wilsond2dff872011-04-19 08:36:26 +010011000
11001 mode_cmd.width = mode->hdisplay;
11002 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -080011003 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
11004 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +000011005 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +010011006
Lukas Wunnerdcb13942015-07-04 11:50:58 +020011007 fb = intel_framebuffer_create(dev, &mode_cmd, obj);
11008 if (IS_ERR(fb))
Chris Wilson34911fd2016-07-20 13:31:54 +010011009 i915_gem_object_put_unlocked(obj);
Lukas Wunnerdcb13942015-07-04 11:50:58 +020011010
11011 return fb;
Chris Wilsond2dff872011-04-19 08:36:26 +010011012}
11013
11014static struct drm_framebuffer *
11015mode_fits_in_fbdev(struct drm_device *dev,
11016 struct drm_display_mode *mode)
11017{
Daniel Vetter06957262015-08-10 13:34:08 +020011018#ifdef CONFIG_DRM_FBDEV_EMULATION
Chris Wilsonfac5e232016-07-04 11:34:36 +010011019 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsond2dff872011-04-19 08:36:26 +010011020 struct drm_i915_gem_object *obj;
11021 struct drm_framebuffer *fb;
11022
Daniel Vetter4c0e5522014-02-14 16:35:54 +010011023 if (!dev_priv->fbdev)
11024 return NULL;
11025
11026 if (!dev_priv->fbdev->fb)
Chris Wilsond2dff872011-04-19 08:36:26 +010011027 return NULL;
11028
Jesse Barnes8bcd4552014-02-07 12:10:38 -080011029 obj = dev_priv->fbdev->fb->obj;
Daniel Vetter4c0e5522014-02-14 16:35:54 +010011030 BUG_ON(!obj);
Chris Wilsond2dff872011-04-19 08:36:26 +010011031
Jesse Barnes8bcd4552014-02-07 12:10:38 -080011032 fb = &dev_priv->fbdev->fb->base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +020011033 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
11034 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +010011035 return NULL;
11036
Ville Syrjälä01f2c772011-12-20 00:06:49 +020011037 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +010011038 return NULL;
11039
Maarten Lankhorstedde3612016-02-17 09:18:35 +010011040 drm_framebuffer_reference(fb);
Chris Wilsond2dff872011-04-19 08:36:26 +010011041 return fb;
Daniel Vetter4520f532013-10-09 09:18:51 +020011042#else
11043 return NULL;
11044#endif
Chris Wilsond2dff872011-04-19 08:36:26 +010011045}
11046
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030011047static int intel_modeset_setup_plane_state(struct drm_atomic_state *state,
11048 struct drm_crtc *crtc,
11049 struct drm_display_mode *mode,
11050 struct drm_framebuffer *fb,
11051 int x, int y)
11052{
11053 struct drm_plane_state *plane_state;
11054 int hdisplay, vdisplay;
11055 int ret;
11056
11057 plane_state = drm_atomic_get_plane_state(state, crtc->primary);
11058 if (IS_ERR(plane_state))
11059 return PTR_ERR(plane_state);
11060
11061 if (mode)
11062 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
11063 else
11064 hdisplay = vdisplay = 0;
11065
11066 ret = drm_atomic_set_crtc_for_plane(plane_state, fb ? crtc : NULL);
11067 if (ret)
11068 return ret;
11069 drm_atomic_set_fb_for_plane(plane_state, fb);
11070 plane_state->crtc_x = 0;
11071 plane_state->crtc_y = 0;
11072 plane_state->crtc_w = hdisplay;
11073 plane_state->crtc_h = vdisplay;
11074 plane_state->src_x = x << 16;
11075 plane_state->src_y = y << 16;
11076 plane_state->src_w = hdisplay << 16;
11077 plane_state->src_h = vdisplay << 16;
11078
11079 return 0;
11080}
11081
Daniel Vetterd2434ab2012-08-12 21:20:10 +020011082bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +010011083 struct drm_display_mode *mode,
Rob Clark51fd3712013-11-19 12:10:12 -050011084 struct intel_load_detect_pipe *old,
11085 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -080011086{
11087 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +020011088 struct intel_encoder *intel_encoder =
11089 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -080011090 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +010011091 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -080011092 struct drm_crtc *crtc = NULL;
11093 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +020011094 struct drm_framebuffer *fb;
Rob Clark51fd3712013-11-19 12:10:12 -050011095 struct drm_mode_config *config = &dev->mode_config;
Maarten Lankhorstedde3612016-02-17 09:18:35 +010011096 struct drm_atomic_state *state = NULL, *restore_state = NULL;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020011097 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030011098 struct intel_crtc_state *crtc_state;
Rob Clark51fd3712013-11-19 12:10:12 -050011099 int ret, i = -1;
Jesse Barnes79e53942008-11-07 14:24:08 -080011100
Chris Wilsond2dff872011-04-19 08:36:26 +010011101 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +030011102 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +030011103 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +010011104
Maarten Lankhorstedde3612016-02-17 09:18:35 +010011105 old->restore_state = NULL;
11106
Rob Clark51fd3712013-11-19 12:10:12 -050011107retry:
11108 ret = drm_modeset_lock(&config->connection_mutex, ctx);
11109 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020011110 goto fail;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020011111
Jesse Barnes79e53942008-11-07 14:24:08 -080011112 /*
11113 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +010011114 *
Jesse Barnes79e53942008-11-07 14:24:08 -080011115 * - if the connector already has an assigned crtc, use it (but make
11116 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +010011117 *
Jesse Barnes79e53942008-11-07 14:24:08 -080011118 * - try to find the first unused crtc that can drive this connector,
11119 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -080011120 */
11121
11122 /* See if we already have a CRTC for this connector */
Maarten Lankhorstedde3612016-02-17 09:18:35 +010011123 if (connector->state->crtc) {
11124 crtc = connector->state->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +010011125
Rob Clark51fd3712013-11-19 12:10:12 -050011126 ret = drm_modeset_lock(&crtc->mutex, ctx);
11127 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020011128 goto fail;
Chris Wilson8261b192011-04-19 23:18:09 +010011129
11130 /* Make sure the crtc and connector are running */
Maarten Lankhorstedde3612016-02-17 09:18:35 +010011131 goto found;
Jesse Barnes79e53942008-11-07 14:24:08 -080011132 }
11133
11134 /* Find an unused one (if possible) */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010011135 for_each_crtc(dev, possible_crtc) {
Jesse Barnes79e53942008-11-07 14:24:08 -080011136 i++;
11137 if (!(encoder->possible_crtcs & (1 << i)))
11138 continue;
Maarten Lankhorstedde3612016-02-17 09:18:35 +010011139
11140 ret = drm_modeset_lock(&possible_crtc->mutex, ctx);
11141 if (ret)
11142 goto fail;
11143
11144 if (possible_crtc->state->enable) {
11145 drm_modeset_unlock(&possible_crtc->mutex);
Ville Syrjäläa4592492014-08-11 13:15:36 +030011146 continue;
Maarten Lankhorstedde3612016-02-17 09:18:35 +010011147 }
Ville Syrjäläa4592492014-08-11 13:15:36 +030011148
11149 crtc = possible_crtc;
11150 break;
Jesse Barnes79e53942008-11-07 14:24:08 -080011151 }
11152
11153 /*
11154 * If we didn't find an unused CRTC, don't use any.
11155 */
11156 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +010011157 DRM_DEBUG_KMS("no pipe available for load-detect\n");
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020011158 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080011159 }
11160
Maarten Lankhorstedde3612016-02-17 09:18:35 +010011161found:
11162 intel_crtc = to_intel_crtc(crtc);
11163
Daniel Vetter4d02e2d2014-11-11 10:12:00 +010011164 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
11165 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020011166 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080011167
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020011168 state = drm_atomic_state_alloc(dev);
Maarten Lankhorstedde3612016-02-17 09:18:35 +010011169 restore_state = drm_atomic_state_alloc(dev);
11170 if (!state || !restore_state) {
11171 ret = -ENOMEM;
11172 goto fail;
11173 }
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020011174
11175 state->acquire_ctx = ctx;
Maarten Lankhorstedde3612016-02-17 09:18:35 +010011176 restore_state->acquire_ctx = ctx;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020011177
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020011178 connector_state = drm_atomic_get_connector_state(state, connector);
11179 if (IS_ERR(connector_state)) {
11180 ret = PTR_ERR(connector_state);
11181 goto fail;
11182 }
11183
Maarten Lankhorstedde3612016-02-17 09:18:35 +010011184 ret = drm_atomic_set_crtc_for_connector(connector_state, crtc);
11185 if (ret)
11186 goto fail;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020011187
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030011188 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
11189 if (IS_ERR(crtc_state)) {
11190 ret = PTR_ERR(crtc_state);
11191 goto fail;
11192 }
11193
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020011194 crtc_state->base.active = crtc_state->base.enable = true;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030011195
Chris Wilson64927112011-04-20 07:25:26 +010011196 if (!mode)
11197 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -080011198
Chris Wilsond2dff872011-04-19 08:36:26 +010011199 /* We need a framebuffer large enough to accommodate all accesses
11200 * that the plane may generate whilst we perform load detection.
11201 * We can not rely on the fbcon either being present (we get called
11202 * during its initialisation to detect all boot displays, or it may
11203 * not even exist) or that it is large enough to satisfy the
11204 * requested mode.
11205 */
Daniel Vetter94352cf2012-07-05 22:51:56 +020011206 fb = mode_fits_in_fbdev(dev, mode);
11207 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +010011208 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +020011209 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
Chris Wilsond2dff872011-04-19 08:36:26 +010011210 } else
11211 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +020011212 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +010011213 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +020011214 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080011215 }
Chris Wilsond2dff872011-04-19 08:36:26 +010011216
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030011217 ret = intel_modeset_setup_plane_state(state, crtc, mode, fb, 0, 0);
11218 if (ret)
11219 goto fail;
11220
Maarten Lankhorstedde3612016-02-17 09:18:35 +010011221 drm_framebuffer_unreference(fb);
11222
11223 ret = drm_atomic_set_mode_for_crtc(&crtc_state->base, mode);
11224 if (ret)
11225 goto fail;
11226
11227 ret = PTR_ERR_OR_ZERO(drm_atomic_get_connector_state(restore_state, connector));
11228 if (!ret)
11229 ret = PTR_ERR_OR_ZERO(drm_atomic_get_crtc_state(restore_state, crtc));
11230 if (!ret)
11231 ret = PTR_ERR_OR_ZERO(drm_atomic_get_plane_state(restore_state, crtc->primary));
11232 if (ret) {
11233 DRM_DEBUG_KMS("Failed to create a copy of old state to restore: %i\n", ret);
11234 goto fail;
11235 }
Ander Conselvan de Oliveira8c7b5cc2015-04-21 17:13:19 +030011236
Maarten Lankhorst3ba86072016-02-29 09:18:57 +010011237 ret = drm_atomic_commit(state);
11238 if (ret) {
Chris Wilson64927112011-04-20 07:25:26 +010011239 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +020011240 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080011241 }
Maarten Lankhorstedde3612016-02-17 09:18:35 +010011242
11243 old->restore_state = restore_state;
Chris Wilson71731882011-04-19 23:10:58 +010011244
Jesse Barnes79e53942008-11-07 14:24:08 -080011245 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -070011246 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +010011247 return true;
Ville Syrjälä412b61d2014-01-17 15:59:39 +020011248
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020011249fail:
Ander Conselvan de Oliveirae5d958e2015-04-21 17:12:57 +030011250 drm_atomic_state_free(state);
Maarten Lankhorstedde3612016-02-17 09:18:35 +010011251 drm_atomic_state_free(restore_state);
11252 restore_state = state = NULL;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020011253
Rob Clark51fd3712013-11-19 12:10:12 -050011254 if (ret == -EDEADLK) {
11255 drm_modeset_backoff(ctx);
11256 goto retry;
11257 }
11258
Ville Syrjälä412b61d2014-01-17 15:59:39 +020011259 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -080011260}
11261
Daniel Vetterd2434ab2012-08-12 21:20:10 +020011262void intel_release_load_detect_pipe(struct drm_connector *connector,
Ander Conselvan de Oliveira49172fe2015-03-20 16:18:02 +020011263 struct intel_load_detect_pipe *old,
11264 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -080011265{
Daniel Vetterd2434ab2012-08-12 21:20:10 +020011266 struct intel_encoder *intel_encoder =
11267 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +010011268 struct drm_encoder *encoder = &intel_encoder->base;
Maarten Lankhorstedde3612016-02-17 09:18:35 +010011269 struct drm_atomic_state *state = old->restore_state;
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030011270 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080011271
Chris Wilsond2dff872011-04-19 08:36:26 +010011272 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +030011273 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +030011274 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +010011275
Maarten Lankhorstedde3612016-02-17 09:18:35 +010011276 if (!state)
Chris Wilson0622a532011-04-21 09:32:11 +010011277 return;
Maarten Lankhorstedde3612016-02-17 09:18:35 +010011278
11279 ret = drm_atomic_commit(state);
11280 if (ret) {
11281 DRM_DEBUG_KMS("Couldn't release load detect pipe: %i\n", ret);
11282 drm_atomic_state_free(state);
Jesse Barnes79e53942008-11-07 14:24:08 -080011283 }
Jesse Barnes79e53942008-11-07 14:24:08 -080011284}
11285
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030011286static int i9xx_pll_refclk(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011287 const struct intel_crtc_state *pipe_config)
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030011288{
Chris Wilsonfac5e232016-07-04 11:34:36 +010011289 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030011290 u32 dpll = pipe_config->dpll_hw_state.dpll;
11291
11292 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
Ville Syrjäläe91e9412013-12-09 18:54:16 +020011293 return dev_priv->vbt.lvds_ssc_freq;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030011294 else if (HAS_PCH_SPLIT(dev))
11295 return 120000;
11296 else if (!IS_GEN2(dev))
11297 return 96000;
11298 else
11299 return 48000;
11300}
11301
Jesse Barnes79e53942008-11-07 14:24:08 -080011302/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +030011303static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011304 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -080011305{
Jesse Barnesf1f644d2013-06-27 00:39:25 +030011306 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +010011307 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnesf1f644d2013-06-27 00:39:25 +030011308 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +030011309 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -080011310 u32 fp;
Ander Conselvan de Oliveira9e2c8472016-05-04 12:11:57 +030011311 struct dpll clock;
Imre Deakdccbea32015-06-22 23:35:51 +030011312 int port_clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030011313 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -080011314
11315 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +030011316 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -080011317 else
Ville Syrjälä293623f2013-09-13 16:18:46 +030011318 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -080011319
11320 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -050011321 if (IS_PINEVIEW(dev)) {
11322 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
11323 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +080011324 } else {
11325 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
11326 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
11327 }
11328
Chris Wilsona6c45cf2010-09-17 00:32:17 +010011329 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -050011330 if (IS_PINEVIEW(dev))
11331 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
11332 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +080011333 else
11334 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -080011335 DPLL_FPA01_P1_POST_DIV_SHIFT);
11336
11337 switch (dpll & DPLL_MODE_MASK) {
11338 case DPLLB_MODE_DAC_SERIAL:
11339 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
11340 5 : 10;
11341 break;
11342 case DPLLB_MODE_LVDS:
11343 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
11344 7 : 14;
11345 break;
11346 default:
Zhao Yakui28c97732009-10-09 11:39:41 +080011347 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -080011348 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +030011349 return;
Jesse Barnes79e53942008-11-07 14:24:08 -080011350 }
11351
Daniel Vetterac58c3f2013-06-01 17:16:17 +020011352 if (IS_PINEVIEW(dev))
Imre Deakdccbea32015-06-22 23:35:51 +030011353 port_clock = pnv_calc_dpll_params(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +020011354 else
Imre Deakdccbea32015-06-22 23:35:51 +030011355 port_clock = i9xx_calc_dpll_params(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -080011356 } else {
Ville Syrjälä0fb58222014-01-10 14:06:46 +020011357 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +020011358 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
Jesse Barnes79e53942008-11-07 14:24:08 -080011359
11360 if (is_lvds) {
11361 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
11362 DPLL_FPA01_P1_POST_DIV_SHIFT);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +020011363
11364 if (lvds & LVDS_CLKB_POWER_UP)
11365 clock.p2 = 7;
11366 else
11367 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -080011368 } else {
11369 if (dpll & PLL_P1_DIVIDE_BY_TWO)
11370 clock.p1 = 2;
11371 else {
11372 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
11373 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
11374 }
11375 if (dpll & PLL_P2_DIVIDE_BY_4)
11376 clock.p2 = 4;
11377 else
11378 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -080011379 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030011380
Imre Deakdccbea32015-06-22 23:35:51 +030011381 port_clock = i9xx_calc_dpll_params(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -080011382 }
11383
Ville Syrjälä18442d02013-09-13 16:00:08 +030011384 /*
11385 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +010011386 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +030011387 * encoder's get_config() function.
11388 */
Imre Deakdccbea32015-06-22 23:35:51 +030011389 pipe_config->port_clock = port_clock;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030011390}
11391
Ville Syrjälä6878da02013-09-13 15:59:11 +030011392int intel_dotclock_calculate(int link_freq,
11393 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030011394{
Jesse Barnesf1f644d2013-06-27 00:39:25 +030011395 /*
11396 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +030011397 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +030011398 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +030011399 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +030011400 *
11401 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +030011402 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -080011403 */
11404
Ville Syrjälä6878da02013-09-13 15:59:11 +030011405 if (!m_n->link_n)
11406 return 0;
11407
11408 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
11409}
11410
Ville Syrjälä18442d02013-09-13 16:00:08 +030011411static void ironlake_pch_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011412 struct intel_crtc_state *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +030011413{
Ville Syrjäläe3b247d2016-02-17 21:41:09 +020011414 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä18442d02013-09-13 16:00:08 +030011415
11416 /* read out port_clock from the DPLL */
11417 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +030011418
Jesse Barnesf1f644d2013-06-27 00:39:25 +030011419 /*
Ville Syrjäläe3b247d2016-02-17 21:41:09 +020011420 * In case there is an active pipe without active ports,
11421 * we may need some idea for the dotclock anyway.
11422 * Calculate one based on the FDI configuration.
Jesse Barnesf1f644d2013-06-27 00:39:25 +030011423 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011424 pipe_config->base.adjusted_mode.crtc_clock =
Ville Syrjälä21a727b2016-02-17 21:41:10 +020011425 intel_dotclock_calculate(intel_fdi_link_freq(dev_priv, pipe_config),
Ville Syrjälä18442d02013-09-13 16:00:08 +030011426 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -080011427}
11428
11429/** Returns the currently programmed mode of the given pipe. */
11430struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
11431 struct drm_crtc *crtc)
11432{
Chris Wilsonfac5e232016-07-04 11:34:36 +010011433 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080011434 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011435 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080011436 struct drm_display_mode *mode;
Tvrtko Ursulin3f36b932016-01-19 15:25:17 +000011437 struct intel_crtc_state *pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -020011438 int htot = I915_READ(HTOTAL(cpu_transcoder));
11439 int hsync = I915_READ(HSYNC(cpu_transcoder));
11440 int vtot = I915_READ(VTOTAL(cpu_transcoder));
11441 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +030011442 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -080011443
11444 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
11445 if (!mode)
11446 return NULL;
11447
Tvrtko Ursulin3f36b932016-01-19 15:25:17 +000011448 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
11449 if (!pipe_config) {
11450 kfree(mode);
11451 return NULL;
11452 }
11453
Jesse Barnesf1f644d2013-06-27 00:39:25 +030011454 /*
11455 * Construct a pipe_config sufficient for getting the clock info
11456 * back out of crtc_clock_get.
11457 *
11458 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
11459 * to use a real value here instead.
11460 */
Tvrtko Ursulin3f36b932016-01-19 15:25:17 +000011461 pipe_config->cpu_transcoder = (enum transcoder) pipe;
11462 pipe_config->pixel_multiplier = 1;
11463 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(pipe));
11464 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(pipe));
11465 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(pipe));
11466 i9xx_crtc_clock_get(intel_crtc, pipe_config);
Jesse Barnesf1f644d2013-06-27 00:39:25 +030011467
Tvrtko Ursulin3f36b932016-01-19 15:25:17 +000011468 mode->clock = pipe_config->port_clock / pipe_config->pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -080011469 mode->hdisplay = (htot & 0xffff) + 1;
11470 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
11471 mode->hsync_start = (hsync & 0xffff) + 1;
11472 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
11473 mode->vdisplay = (vtot & 0xffff) + 1;
11474 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
11475 mode->vsync_start = (vsync & 0xffff) + 1;
11476 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
11477
11478 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -080011479
Tvrtko Ursulin3f36b932016-01-19 15:25:17 +000011480 kfree(pipe_config);
11481
Jesse Barnes79e53942008-11-07 14:24:08 -080011482 return mode;
11483}
11484
11485static void intel_crtc_destroy(struct drm_crtc *crtc)
11486{
11487 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +020011488 struct drm_device *dev = crtc->dev;
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +020011489 struct intel_flip_work *work;
Daniel Vetter67e77c52010-08-20 22:26:30 +020011490
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011491 spin_lock_irq(&dev->event_lock);
Daniel Vetter5a21b662016-05-24 17:13:53 +020011492 work = intel_crtc->flip_work;
11493 intel_crtc->flip_work = NULL;
11494 spin_unlock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +020011495
Daniel Vetter5a21b662016-05-24 17:13:53 +020011496 if (work) {
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +020011497 cancel_work_sync(&work->mmio_work);
11498 cancel_work_sync(&work->unpin_work);
Daniel Vetter5a21b662016-05-24 17:13:53 +020011499 kfree(work);
Daniel Vetter67e77c52010-08-20 22:26:30 +020011500 }
Jesse Barnes79e53942008-11-07 14:24:08 -080011501
11502 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +020011503
Jesse Barnes79e53942008-11-07 14:24:08 -080011504 kfree(intel_crtc);
11505}
11506
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011507static void intel_unpin_work_fn(struct work_struct *__work)
11508{
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +020011509 struct intel_flip_work *work =
11510 container_of(__work, struct intel_flip_work, unpin_work);
Daniel Vetter5a21b662016-05-24 17:13:53 +020011511 struct intel_crtc *crtc = to_intel_crtc(work->crtc);
11512 struct drm_device *dev = crtc->base.dev;
11513 struct drm_plane *primary = crtc->base.primary;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011514
Daniel Vetter5a21b662016-05-24 17:13:53 +020011515 if (is_mmio_work(work))
11516 flush_work(&work->mmio_work);
11517
11518 mutex_lock(&dev->struct_mutex);
11519 intel_unpin_fb_obj(work->old_fb, primary->state->rotation);
Chris Wilsonf8c417c2016-07-20 13:31:53 +010011520 i915_gem_object_put(work->pending_flip_obj);
Daniel Vetter5a21b662016-05-24 17:13:53 +020011521 mutex_unlock(&dev->struct_mutex);
11522
Chris Wilsone8a261e2016-07-20 13:31:49 +010011523 i915_gem_request_put(work->flip_queued_req);
11524
Chris Wilson5748b6a2016-08-04 16:32:38 +010011525 intel_frontbuffer_flip_complete(to_i915(dev),
11526 to_intel_plane(primary)->frontbuffer_bit);
Daniel Vetter5a21b662016-05-24 17:13:53 +020011527 intel_fbc_post_update(crtc);
11528 drm_framebuffer_unreference(work->old_fb);
11529
11530 BUG_ON(atomic_read(&crtc->unpin_work_count) == 0);
11531 atomic_dec(&crtc->unpin_work_count);
11532
11533 kfree(work);
11534}
11535
11536/* Is 'a' after or equal to 'b'? */
11537static bool g4x_flip_count_after_eq(u32 a, u32 b)
11538{
11539 return !((a - b) & 0x80000000);
11540}
11541
11542static bool __pageflip_finished_cs(struct intel_crtc *crtc,
11543 struct intel_flip_work *work)
11544{
11545 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +010011546 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter5a21b662016-05-24 17:13:53 +020011547
Chris Wilson8af29b02016-09-09 14:11:47 +010011548 if (abort_flip_on_reset(crtc))
Daniel Vetter5a21b662016-05-24 17:13:53 +020011549 return true;
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +020011550
Maarten Lankhorst143f73b32016-05-17 15:07:54 +020011551 /*
Daniel Vetter5a21b662016-05-24 17:13:53 +020011552 * The relevant registers doen't exist on pre-ctg.
11553 * As the flip done interrupt doesn't trigger for mmio
11554 * flips on gmch platforms, a flip count check isn't
11555 * really needed there. But since ctg has the registers,
11556 * include it in the check anyway.
Maarten Lankhorst143f73b32016-05-17 15:07:54 +020011557 */
Daniel Vetter5a21b662016-05-24 17:13:53 +020011558 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
11559 return true;
Maarten Lankhorst143f73b32016-05-17 15:07:54 +020011560
Daniel Vetter5a21b662016-05-24 17:13:53 +020011561 /*
11562 * BDW signals flip done immediately if the plane
11563 * is disabled, even if the plane enable is already
11564 * armed to occur at the next vblank :(
11565 */
Maarten Lankhorsta6747b72016-05-17 15:08:01 +020011566
Daniel Vetter5a21b662016-05-24 17:13:53 +020011567 /*
11568 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
11569 * used the same base address. In that case the mmio flip might
11570 * have completed, but the CS hasn't even executed the flip yet.
11571 *
11572 * A flip count check isn't enough as the CS might have updated
11573 * the base address just after start of vblank, but before we
11574 * managed to process the interrupt. This means we'd complete the
11575 * CS flip too soon.
11576 *
11577 * Combining both checks should get us a good enough result. It may
11578 * still happen that the CS flip has been executed, but has not
11579 * yet actually completed. But in case the base address is the same
11580 * anyway, we don't really care.
11581 */
11582 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
11583 crtc->flip_work->gtt_offset &&
11584 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_G4X(crtc->pipe)),
11585 crtc->flip_work->flip_count);
11586}
Maarten Lankhorst143f73b32016-05-17 15:07:54 +020011587
Daniel Vetter5a21b662016-05-24 17:13:53 +020011588static bool
11589__pageflip_finished_mmio(struct intel_crtc *crtc,
11590 struct intel_flip_work *work)
11591{
11592 /*
11593 * MMIO work completes when vblank is different from
11594 * flip_queued_vblank.
11595 *
11596 * Reset counter value doesn't matter, this is handled by
11597 * i915_wait_request finishing early, so no need to handle
11598 * reset here.
11599 */
11600 return intel_crtc_get_vblank_counter(crtc) != work->flip_queued_vblank;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011601}
11602
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +020011603
11604static bool pageflip_finished(struct intel_crtc *crtc,
11605 struct intel_flip_work *work)
11606{
11607 if (!atomic_read(&work->pending))
11608 return false;
11609
11610 smp_rmb();
11611
Daniel Vetter5a21b662016-05-24 17:13:53 +020011612 if (is_mmio_work(work))
11613 return __pageflip_finished_mmio(crtc, work);
11614 else
11615 return __pageflip_finished_cs(crtc, work);
11616}
11617
11618void intel_finish_page_flip_cs(struct drm_i915_private *dev_priv, int pipe)
11619{
Chris Wilson91c8a322016-07-05 10:40:23 +010011620 struct drm_device *dev = &dev_priv->drm;
Daniel Vetter5a21b662016-05-24 17:13:53 +020011621 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
11622 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11623 struct intel_flip_work *work;
11624 unsigned long flags;
11625
11626 /* Ignore early vblank irqs */
11627 if (!crtc)
11628 return;
11629
Daniel Vetterf3260382014-09-15 14:55:23 +020011630 /*
Daniel Vetter5a21b662016-05-24 17:13:53 +020011631 * This is called both by irq handlers and the reset code (to complete
11632 * lost pageflips) so needs the full irqsave spinlocks.
Chris Wilsone7d841c2012-12-03 11:36:30 +000011633 */
Daniel Vetter5a21b662016-05-24 17:13:53 +020011634 spin_lock_irqsave(&dev->event_lock, flags);
11635 work = intel_crtc->flip_work;
11636
11637 if (work != NULL &&
11638 !is_mmio_work(work) &&
11639 pageflip_finished(intel_crtc, work))
11640 page_flip_completed(intel_crtc);
11641
11642 spin_unlock_irqrestore(&dev->event_lock, flags);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011643}
11644
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +020011645void intel_finish_page_flip_mmio(struct drm_i915_private *dev_priv, int pipe)
Chris Wilsone7d841c2012-12-03 11:36:30 +000011646{
Chris Wilson91c8a322016-07-05 10:40:23 +010011647 struct drm_device *dev = &dev_priv->drm;
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +020011648 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
11649 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11650 struct intel_flip_work *work;
11651 unsigned long flags;
11652
11653 /* Ignore early vblank irqs */
11654 if (!crtc)
11655 return;
11656
11657 /*
11658 * This is called both by irq handlers and the reset code (to complete
11659 * lost pageflips) so needs the full irqsave spinlocks.
11660 */
11661 spin_lock_irqsave(&dev->event_lock, flags);
Daniel Vetter5a21b662016-05-24 17:13:53 +020011662 work = intel_crtc->flip_work;
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +020011663
Daniel Vetter5a21b662016-05-24 17:13:53 +020011664 if (work != NULL &&
11665 is_mmio_work(work) &&
11666 pageflip_finished(intel_crtc, work))
11667 page_flip_completed(intel_crtc);
Maarten Lankhorst68858432016-05-17 15:07:52 +020011668
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +020011669 spin_unlock_irqrestore(&dev->event_lock, flags);
11670}
11671
Daniel Vetter5a21b662016-05-24 17:13:53 +020011672static inline void intel_mark_page_flip_active(struct intel_crtc *crtc,
11673 struct intel_flip_work *work)
11674{
11675 work->flip_queued_vblank = intel_crtc_get_vblank_counter(crtc);
11676
11677 /* Ensure that the work item is consistent when activating it ... */
11678 smp_mb__before_atomic();
11679 atomic_set(&work->pending, 1);
11680}
11681
11682static int intel_gen2_queue_flip(struct drm_device *dev,
11683 struct drm_crtc *crtc,
11684 struct drm_framebuffer *fb,
11685 struct drm_i915_gem_object *obj,
11686 struct drm_i915_gem_request *req,
11687 uint32_t flags)
11688{
Chris Wilson7e37f882016-08-02 22:50:21 +010011689 struct intel_ring *ring = req->ring;
Daniel Vetter5a21b662016-05-24 17:13:53 +020011690 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11691 u32 flip_mask;
11692 int ret;
11693
11694 ret = intel_ring_begin(req, 6);
11695 if (ret)
11696 return ret;
11697
11698 /* Can't queue multiple flips, so wait for the previous
11699 * one to finish before executing the next.
11700 */
11701 if (intel_crtc->plane)
11702 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
11703 else
11704 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Chris Wilsonb5321f32016-08-02 22:50:18 +010011705 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
11706 intel_ring_emit(ring, MI_NOOP);
11707 intel_ring_emit(ring, MI_DISPLAY_FLIP |
Daniel Vetter5a21b662016-05-24 17:13:53 +020011708 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
Chris Wilsonb5321f32016-08-02 22:50:18 +010011709 intel_ring_emit(ring, fb->pitches[0]);
11710 intel_ring_emit(ring, intel_crtc->flip_work->gtt_offset);
11711 intel_ring_emit(ring, 0); /* aux display base address, unused */
Daniel Vetter5a21b662016-05-24 17:13:53 +020011712
11713 return 0;
11714}
11715
11716static int intel_gen3_queue_flip(struct drm_device *dev,
11717 struct drm_crtc *crtc,
11718 struct drm_framebuffer *fb,
11719 struct drm_i915_gem_object *obj,
11720 struct drm_i915_gem_request *req,
11721 uint32_t flags)
11722{
Chris Wilson7e37f882016-08-02 22:50:21 +010011723 struct intel_ring *ring = req->ring;
Daniel Vetter5a21b662016-05-24 17:13:53 +020011724 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11725 u32 flip_mask;
11726 int ret;
11727
11728 ret = intel_ring_begin(req, 6);
11729 if (ret)
11730 return ret;
11731
11732 if (intel_crtc->plane)
11733 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
11734 else
11735 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Chris Wilsonb5321f32016-08-02 22:50:18 +010011736 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
11737 intel_ring_emit(ring, MI_NOOP);
11738 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
Daniel Vetter5a21b662016-05-24 17:13:53 +020011739 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
Chris Wilsonb5321f32016-08-02 22:50:18 +010011740 intel_ring_emit(ring, fb->pitches[0]);
11741 intel_ring_emit(ring, intel_crtc->flip_work->gtt_offset);
11742 intel_ring_emit(ring, MI_NOOP);
Daniel Vetter5a21b662016-05-24 17:13:53 +020011743
11744 return 0;
11745}
11746
11747static int intel_gen4_queue_flip(struct drm_device *dev,
11748 struct drm_crtc *crtc,
11749 struct drm_framebuffer *fb,
11750 struct drm_i915_gem_object *obj,
11751 struct drm_i915_gem_request *req,
11752 uint32_t flags)
11753{
Chris Wilson7e37f882016-08-02 22:50:21 +010011754 struct intel_ring *ring = req->ring;
Chris Wilsonfac5e232016-07-04 11:34:36 +010011755 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter5a21b662016-05-24 17:13:53 +020011756 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11757 uint32_t pf, pipesrc;
11758 int ret;
11759
11760 ret = intel_ring_begin(req, 4);
11761 if (ret)
11762 return ret;
11763
11764 /* i965+ uses the linear or tiled offsets from the
11765 * Display Registers (which do not change across a page-flip)
11766 * so we need only reprogram the base address.
11767 */
Chris Wilsonb5321f32016-08-02 22:50:18 +010011768 intel_ring_emit(ring, MI_DISPLAY_FLIP |
Daniel Vetter5a21b662016-05-24 17:13:53 +020011769 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
Chris Wilsonb5321f32016-08-02 22:50:18 +010011770 intel_ring_emit(ring, fb->pitches[0]);
11771 intel_ring_emit(ring, intel_crtc->flip_work->gtt_offset |
Ville Syrjälä72618eb2016-02-04 20:38:20 +020011772 intel_fb_modifier_to_tiling(fb->modifier[0]));
Daniel Vetter5a21b662016-05-24 17:13:53 +020011773
11774 /* XXX Enabling the panel-fitter across page-flip is so far
11775 * untested on non-native modes, so ignore it for now.
11776 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
11777 */
11778 pf = 0;
11779 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Chris Wilsonb5321f32016-08-02 22:50:18 +010011780 intel_ring_emit(ring, pf | pipesrc);
Daniel Vetter5a21b662016-05-24 17:13:53 +020011781
11782 return 0;
11783}
11784
11785static int intel_gen6_queue_flip(struct drm_device *dev,
11786 struct drm_crtc *crtc,
11787 struct drm_framebuffer *fb,
11788 struct drm_i915_gem_object *obj,
11789 struct drm_i915_gem_request *req,
11790 uint32_t flags)
11791{
Chris Wilson7e37f882016-08-02 22:50:21 +010011792 struct intel_ring *ring = req->ring;
Chris Wilsonfac5e232016-07-04 11:34:36 +010011793 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter5a21b662016-05-24 17:13:53 +020011794 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11795 uint32_t pf, pipesrc;
11796 int ret;
11797
11798 ret = intel_ring_begin(req, 4);
11799 if (ret)
11800 return ret;
11801
Chris Wilsonb5321f32016-08-02 22:50:18 +010011802 intel_ring_emit(ring, MI_DISPLAY_FLIP |
Daniel Vetter5a21b662016-05-24 17:13:53 +020011803 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
Ville Syrjälä72618eb2016-02-04 20:38:20 +020011804 intel_ring_emit(ring, fb->pitches[0] |
11805 intel_fb_modifier_to_tiling(fb->modifier[0]));
Chris Wilsonb5321f32016-08-02 22:50:18 +010011806 intel_ring_emit(ring, intel_crtc->flip_work->gtt_offset);
Daniel Vetter5a21b662016-05-24 17:13:53 +020011807
11808 /* Contrary to the suggestions in the documentation,
11809 * "Enable Panel Fitter" does not seem to be required when page
11810 * flipping with a non-native mode, and worse causes a normal
11811 * modeset to fail.
11812 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
11813 */
11814 pf = 0;
11815 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Chris Wilsonb5321f32016-08-02 22:50:18 +010011816 intel_ring_emit(ring, pf | pipesrc);
Daniel Vetter5a21b662016-05-24 17:13:53 +020011817
11818 return 0;
11819}
11820
11821static int intel_gen7_queue_flip(struct drm_device *dev,
11822 struct drm_crtc *crtc,
11823 struct drm_framebuffer *fb,
11824 struct drm_i915_gem_object *obj,
11825 struct drm_i915_gem_request *req,
11826 uint32_t flags)
11827{
Chris Wilson7e37f882016-08-02 22:50:21 +010011828 struct intel_ring *ring = req->ring;
Daniel Vetter5a21b662016-05-24 17:13:53 +020011829 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11830 uint32_t plane_bit = 0;
11831 int len, ret;
11832
11833 switch (intel_crtc->plane) {
11834 case PLANE_A:
11835 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
11836 break;
11837 case PLANE_B:
11838 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
11839 break;
11840 case PLANE_C:
11841 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
11842 break;
11843 default:
11844 WARN_ONCE(1, "unknown plane in flip command\n");
11845 return -ENODEV;
11846 }
11847
11848 len = 4;
Chris Wilsonb5321f32016-08-02 22:50:18 +010011849 if (req->engine->id == RCS) {
Daniel Vetter5a21b662016-05-24 17:13:53 +020011850 len += 6;
11851 /*
11852 * On Gen 8, SRM is now taking an extra dword to accommodate
11853 * 48bits addresses, and we need a NOOP for the batch size to
11854 * stay even.
11855 */
11856 if (IS_GEN8(dev))
11857 len += 2;
11858 }
11859
11860 /*
11861 * BSpec MI_DISPLAY_FLIP for IVB:
11862 * "The full packet must be contained within the same cache line."
11863 *
11864 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
11865 * cacheline, if we ever start emitting more commands before
11866 * the MI_DISPLAY_FLIP we may need to first emit everything else,
11867 * then do the cacheline alignment, and finally emit the
11868 * MI_DISPLAY_FLIP.
11869 */
11870 ret = intel_ring_cacheline_align(req);
11871 if (ret)
11872 return ret;
11873
11874 ret = intel_ring_begin(req, len);
11875 if (ret)
11876 return ret;
11877
11878 /* Unmask the flip-done completion message. Note that the bspec says that
11879 * we should do this for both the BCS and RCS, and that we must not unmask
11880 * more than one flip event at any time (or ensure that one flip message
11881 * can be sent by waiting for flip-done prior to queueing new flips).
11882 * Experimentation says that BCS works despite DERRMR masking all
11883 * flip-done completion events and that unmasking all planes at once
11884 * for the RCS also doesn't appear to drop events. Setting the DERRMR
11885 * to zero does lead to lockups within MI_DISPLAY_FLIP.
11886 */
Chris Wilsonb5321f32016-08-02 22:50:18 +010011887 if (req->engine->id == RCS) {
11888 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
11889 intel_ring_emit_reg(ring, DERRMR);
11890 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
Daniel Vetter5a21b662016-05-24 17:13:53 +020011891 DERRMR_PIPEB_PRI_FLIP_DONE |
11892 DERRMR_PIPEC_PRI_FLIP_DONE));
11893 if (IS_GEN8(dev))
Chris Wilsonb5321f32016-08-02 22:50:18 +010011894 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8 |
Daniel Vetter5a21b662016-05-24 17:13:53 +020011895 MI_SRM_LRM_GLOBAL_GTT);
11896 else
Chris Wilsonb5321f32016-08-02 22:50:18 +010011897 intel_ring_emit(ring, MI_STORE_REGISTER_MEM |
Daniel Vetter5a21b662016-05-24 17:13:53 +020011898 MI_SRM_LRM_GLOBAL_GTT);
Chris Wilsonb5321f32016-08-02 22:50:18 +010011899 intel_ring_emit_reg(ring, DERRMR);
Chris Wilsonbde13eb2016-08-15 10:49:07 +010011900 intel_ring_emit(ring,
11901 i915_ggtt_offset(req->engine->scratch) + 256);
Daniel Vetter5a21b662016-05-24 17:13:53 +020011902 if (IS_GEN8(dev)) {
Chris Wilsonb5321f32016-08-02 22:50:18 +010011903 intel_ring_emit(ring, 0);
11904 intel_ring_emit(ring, MI_NOOP);
Daniel Vetter5a21b662016-05-24 17:13:53 +020011905 }
11906 }
11907
Chris Wilsonb5321f32016-08-02 22:50:18 +010011908 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä72618eb2016-02-04 20:38:20 +020011909 intel_ring_emit(ring, fb->pitches[0] |
11910 intel_fb_modifier_to_tiling(fb->modifier[0]));
Chris Wilsonb5321f32016-08-02 22:50:18 +010011911 intel_ring_emit(ring, intel_crtc->flip_work->gtt_offset);
11912 intel_ring_emit(ring, (MI_NOOP));
Daniel Vetter5a21b662016-05-24 17:13:53 +020011913
11914 return 0;
11915}
11916
11917static bool use_mmio_flip(struct intel_engine_cs *engine,
11918 struct drm_i915_gem_object *obj)
11919{
Chris Wilsonc37efb92016-06-17 08:28:47 +010011920 struct reservation_object *resv;
11921
Daniel Vetter5a21b662016-05-24 17:13:53 +020011922 /*
11923 * This is not being used for older platforms, because
11924 * non-availability of flip done interrupt forces us to use
11925 * CS flips. Older platforms derive flip done using some clever
11926 * tricks involving the flip_pending status bits and vblank irqs.
11927 * So using MMIO flips there would disrupt this mechanism.
11928 */
11929
11930 if (engine == NULL)
11931 return true;
11932
11933 if (INTEL_GEN(engine->i915) < 5)
11934 return false;
11935
11936 if (i915.use_mmio_flip < 0)
11937 return false;
11938 else if (i915.use_mmio_flip > 0)
11939 return true;
11940 else if (i915.enable_execlists)
11941 return true;
Chris Wilsonc37efb92016-06-17 08:28:47 +010011942
11943 resv = i915_gem_object_get_dmabuf_resv(obj);
11944 if (resv && !reservation_object_test_signaled_rcu(resv, false))
Daniel Vetter5a21b662016-05-24 17:13:53 +020011945 return true;
Chris Wilsonc37efb92016-06-17 08:28:47 +010011946
Chris Wilsond72d9082016-08-04 07:52:31 +010011947 return engine != i915_gem_active_get_engine(&obj->last_write,
11948 &obj->base.dev->struct_mutex);
Daniel Vetter5a21b662016-05-24 17:13:53 +020011949}
11950
11951static void skl_do_mmio_flip(struct intel_crtc *intel_crtc,
11952 unsigned int rotation,
11953 struct intel_flip_work *work)
11954{
11955 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +010011956 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter5a21b662016-05-24 17:13:53 +020011957 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
11958 const enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläd2196772016-01-28 18:33:11 +020011959 u32 ctl, stride = skl_plane_stride(fb, 0, rotation);
Daniel Vetter5a21b662016-05-24 17:13:53 +020011960
11961 ctl = I915_READ(PLANE_CTL(pipe, 0));
11962 ctl &= ~PLANE_CTL_TILED_MASK;
11963 switch (fb->modifier[0]) {
11964 case DRM_FORMAT_MOD_NONE:
11965 break;
11966 case I915_FORMAT_MOD_X_TILED:
11967 ctl |= PLANE_CTL_TILED_X;
11968 break;
11969 case I915_FORMAT_MOD_Y_TILED:
11970 ctl |= PLANE_CTL_TILED_Y;
11971 break;
11972 case I915_FORMAT_MOD_Yf_TILED:
11973 ctl |= PLANE_CTL_TILED_YF;
11974 break;
11975 default:
11976 MISSING_CASE(fb->modifier[0]);
11977 }
11978
11979 /*
Daniel Vetter5a21b662016-05-24 17:13:53 +020011980 * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on
11981 * PLANE_SURF updates, the update is then guaranteed to be atomic.
11982 */
11983 I915_WRITE(PLANE_CTL(pipe, 0), ctl);
11984 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
11985
11986 I915_WRITE(PLANE_SURF(pipe, 0), work->gtt_offset);
11987 POSTING_READ(PLANE_SURF(pipe, 0));
11988}
11989
11990static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc,
11991 struct intel_flip_work *work)
11992{
11993 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +010011994 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä72618eb2016-02-04 20:38:20 +020011995 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
Daniel Vetter5a21b662016-05-24 17:13:53 +020011996 i915_reg_t reg = DSPCNTR(intel_crtc->plane);
11997 u32 dspcntr;
11998
11999 dspcntr = I915_READ(reg);
12000
Ville Syrjälä72618eb2016-02-04 20:38:20 +020012001 if (fb->modifier[0] == I915_FORMAT_MOD_X_TILED)
Daniel Vetter5a21b662016-05-24 17:13:53 +020012002 dspcntr |= DISPPLANE_TILED;
12003 else
12004 dspcntr &= ~DISPPLANE_TILED;
12005
12006 I915_WRITE(reg, dspcntr);
12007
12008 I915_WRITE(DSPSURF(intel_crtc->plane), work->gtt_offset);
12009 POSTING_READ(DSPSURF(intel_crtc->plane));
12010}
12011
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +020012012static void intel_mmio_flip_work_func(struct work_struct *w)
Damien Lespiauff944562014-11-20 14:58:16 +000012013{
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +020012014 struct intel_flip_work *work =
12015 container_of(w, struct intel_flip_work, mmio_work);
Daniel Vetter5a21b662016-05-24 17:13:53 +020012016 struct intel_crtc *crtc = to_intel_crtc(work->crtc);
12017 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
12018 struct intel_framebuffer *intel_fb =
12019 to_intel_framebuffer(crtc->base.primary->fb);
12020 struct drm_i915_gem_object *obj = intel_fb->obj;
Chris Wilsonc37efb92016-06-17 08:28:47 +010012021 struct reservation_object *resv;
Daniel Vetter5a21b662016-05-24 17:13:53 +020012022
12023 if (work->flip_queued_req)
Chris Wilson776f3232016-08-04 07:52:40 +010012024 WARN_ON(i915_wait_request(work->flip_queued_req,
Chris Wilsonea746f32016-09-09 14:11:49 +010012025 0, NULL, NO_WAITBOOST));
Daniel Vetter5a21b662016-05-24 17:13:53 +020012026
12027 /* For framebuffer backed by dmabuf, wait for fence */
Chris Wilsonc37efb92016-06-17 08:28:47 +010012028 resv = i915_gem_object_get_dmabuf_resv(obj);
12029 if (resv)
12030 WARN_ON(reservation_object_wait_timeout_rcu(resv, false, false,
Daniel Vetter5a21b662016-05-24 17:13:53 +020012031 MAX_SCHEDULE_TIMEOUT) < 0);
12032
12033 intel_pipe_update_start(crtc);
12034
12035 if (INTEL_GEN(dev_priv) >= 9)
12036 skl_do_mmio_flip(crtc, work->rotation, work);
12037 else
12038 /* use_mmio_flip() retricts MMIO flips to ilk+ */
12039 ilk_do_mmio_flip(crtc, work);
12040
12041 intel_pipe_update_end(crtc, work);
12042}
12043
12044static int intel_default_queue_flip(struct drm_device *dev,
12045 struct drm_crtc *crtc,
12046 struct drm_framebuffer *fb,
12047 struct drm_i915_gem_object *obj,
12048 struct drm_i915_gem_request *req,
12049 uint32_t flags)
12050{
12051 return -ENODEV;
12052}
12053
12054static bool __pageflip_stall_check_cs(struct drm_i915_private *dev_priv,
12055 struct intel_crtc *intel_crtc,
12056 struct intel_flip_work *work)
12057{
12058 u32 addr, vblank;
12059
12060 if (!atomic_read(&work->pending))
12061 return false;
12062
12063 smp_rmb();
12064
12065 vblank = intel_crtc_get_vblank_counter(intel_crtc);
12066 if (work->flip_ready_vblank == 0) {
12067 if (work->flip_queued_req &&
Chris Wilsonf69a02c2016-07-01 17:23:16 +010012068 !i915_gem_request_completed(work->flip_queued_req))
Daniel Vetter5a21b662016-05-24 17:13:53 +020012069 return false;
12070
12071 work->flip_ready_vblank = vblank;
12072 }
12073
12074 if (vblank - work->flip_ready_vblank < 3)
12075 return false;
12076
12077 /* Potential stall - if we see that the flip has happened,
12078 * assume a missed interrupt. */
12079 if (INTEL_GEN(dev_priv) >= 4)
12080 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane)));
12081 else
12082 addr = I915_READ(DSPADDR(intel_crtc->plane));
12083
12084 /* There is a potential issue here with a false positive after a flip
12085 * to the same address. We could address this by checking for a
12086 * non-incrementing frame counter.
12087 */
12088 return addr == work->gtt_offset;
12089}
12090
12091void intel_check_page_flip(struct drm_i915_private *dev_priv, int pipe)
12092{
Chris Wilson91c8a322016-07-05 10:40:23 +010012093 struct drm_device *dev = &dev_priv->drm;
Daniel Vetter5a21b662016-05-24 17:13:53 +020012094 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Maarten Lankhorst143f73b32016-05-17 15:07:54 +020012095 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter5a21b662016-05-24 17:13:53 +020012096 struct intel_flip_work *work;
12097
12098 WARN_ON(!in_interrupt());
12099
12100 if (crtc == NULL)
12101 return;
12102
12103 spin_lock(&dev->event_lock);
12104 work = intel_crtc->flip_work;
12105
12106 if (work != NULL && !is_mmio_work(work) &&
12107 __pageflip_stall_check_cs(dev_priv, intel_crtc, work)) {
12108 WARN_ONCE(1,
12109 "Kicking stuck page flip: queued at %d, now %d\n",
12110 work->flip_queued_vblank, intel_crtc_get_vblank_counter(intel_crtc));
12111 page_flip_completed(intel_crtc);
12112 work = NULL;
12113 }
12114
12115 if (work != NULL && !is_mmio_work(work) &&
12116 intel_crtc_get_vblank_counter(intel_crtc) - work->flip_queued_vblank > 1)
12117 intel_queue_rps_boost_for_request(work->flip_queued_req);
12118 spin_unlock(&dev->event_lock);
12119}
12120
12121static int intel_crtc_page_flip(struct drm_crtc *crtc,
12122 struct drm_framebuffer *fb,
12123 struct drm_pending_vblank_event *event,
12124 uint32_t page_flip_flags)
12125{
Maarten Lankhorst143f73b32016-05-17 15:07:54 +020012126 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +010012127 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter5a21b662016-05-24 17:13:53 +020012128 struct drm_framebuffer *old_fb = crtc->primary->fb;
12129 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
12130 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12131 struct drm_plane *primary = crtc->primary;
12132 enum pipe pipe = intel_crtc->pipe;
12133 struct intel_flip_work *work;
12134 struct intel_engine_cs *engine;
12135 bool mmio_flip;
Chris Wilson8e637172016-08-02 22:50:26 +010012136 struct drm_i915_gem_request *request;
Chris Wilson058d88c2016-08-15 10:49:06 +010012137 struct i915_vma *vma;
Daniel Vetter5a21b662016-05-24 17:13:53 +020012138 int ret;
Sourab Gupta84c33a62014-06-02 16:47:17 +053012139
Daniel Vetter5a21b662016-05-24 17:13:53 +020012140 /*
12141 * drm_mode_page_flip_ioctl() should already catch this, but double
12142 * check to be safe. In the future we may enable pageflipping from
12143 * a disabled primary plane.
12144 */
12145 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
12146 return -EBUSY;
Maarten Lankhorsta6747b72016-05-17 15:08:01 +020012147
Daniel Vetter5a21b662016-05-24 17:13:53 +020012148 /* Can't change pixel format via MI display flips. */
12149 if (fb->pixel_format != crtc->primary->fb->pixel_format)
12150 return -EINVAL;
Maarten Lankhorst143f73b32016-05-17 15:07:54 +020012151
Daniel Vetter5a21b662016-05-24 17:13:53 +020012152 /*
12153 * TILEOFF/LINOFF registers can't be changed via MI display flips.
12154 * Note that pitch changes could also affect these register.
12155 */
12156 if (INTEL_INFO(dev)->gen > 3 &&
12157 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
12158 fb->pitches[0] != crtc->primary->fb->pitches[0]))
12159 return -EINVAL;
Maarten Lankhorst143f73b32016-05-17 15:07:54 +020012160
Daniel Vetter5a21b662016-05-24 17:13:53 +020012161 if (i915_terminally_wedged(&dev_priv->gpu_error))
12162 goto out_hang;
Maarten Lankhorst143f73b32016-05-17 15:07:54 +020012163
Daniel Vetter5a21b662016-05-24 17:13:53 +020012164 work = kzalloc(sizeof(*work), GFP_KERNEL);
12165 if (work == NULL)
12166 return -ENOMEM;
12167
12168 work->event = event;
12169 work->crtc = crtc;
12170 work->old_fb = old_fb;
12171 INIT_WORK(&work->unpin_work, intel_unpin_work_fn);
Sourab Gupta84c33a62014-06-02 16:47:17 +053012172
Maarten Lankhorstd55dbd02016-05-17 15:08:04 +020012173 ret = drm_crtc_vblank_get(crtc);
Daniel Vetter5a21b662016-05-24 17:13:53 +020012174 if (ret)
12175 goto free_work;
Maarten Lankhorstd55dbd02016-05-17 15:08:04 +020012176
Daniel Vetter5a21b662016-05-24 17:13:53 +020012177 /* We borrow the event spin lock for protecting flip_work */
12178 spin_lock_irq(&dev->event_lock);
12179 if (intel_crtc->flip_work) {
12180 /* Before declaring the flip queue wedged, check if
12181 * the hardware completed the operation behind our backs.
12182 */
12183 if (pageflip_finished(intel_crtc, intel_crtc->flip_work)) {
12184 DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n");
12185 page_flip_completed(intel_crtc);
12186 } else {
12187 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
12188 spin_unlock_irq(&dev->event_lock);
Maarten Lankhorstd55dbd02016-05-17 15:08:04 +020012189
Daniel Vetter5a21b662016-05-24 17:13:53 +020012190 drm_crtc_vblank_put(crtc);
12191 kfree(work);
12192 return -EBUSY;
12193 }
12194 }
12195 intel_crtc->flip_work = work;
12196 spin_unlock_irq(&dev->event_lock);
Alex Goinsfd8e0582015-11-25 18:43:38 -080012197
Daniel Vetter5a21b662016-05-24 17:13:53 +020012198 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
12199 flush_workqueue(dev_priv->wq);
12200
12201 /* Reference the objects for the scheduled work. */
12202 drm_framebuffer_reference(work->old_fb);
Daniel Vetter5a21b662016-05-24 17:13:53 +020012203
12204 crtc->primary->fb = fb;
12205 update_state_fb(crtc->primary);
Maarten Lankhorstfaf68d92016-06-14 14:24:20 +020012206
Chris Wilson25dc5562016-07-20 13:31:52 +010012207 work->pending_flip_obj = i915_gem_object_get(obj);
Daniel Vetter5a21b662016-05-24 17:13:53 +020012208
12209 ret = i915_mutex_lock_interruptible(dev);
12210 if (ret)
12211 goto cleanup;
12212
Chris Wilson8af29b02016-09-09 14:11:47 +010012213 intel_crtc->reset_count = i915_reset_count(&dev_priv->gpu_error);
12214 if (i915_reset_in_progress_or_wedged(&dev_priv->gpu_error)) {
Daniel Vetter5a21b662016-05-24 17:13:53 +020012215 ret = -EIO;
12216 goto cleanup;
12217 }
12218
12219 atomic_inc(&intel_crtc->unpin_work_count);
12220
12221 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
12222 work->flip_count = I915_READ(PIPE_FLIPCOUNT_G4X(pipe)) + 1;
12223
12224 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
12225 engine = &dev_priv->engine[BCS];
Ville Syrjälä72618eb2016-02-04 20:38:20 +020012226 if (fb->modifier[0] != old_fb->modifier[0])
Daniel Vetter5a21b662016-05-24 17:13:53 +020012227 /* vlv: DISPLAY_FLIP fails to change tiling */
12228 engine = NULL;
12229 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
12230 engine = &dev_priv->engine[BCS];
12231 } else if (INTEL_INFO(dev)->gen >= 7) {
Chris Wilsond72d9082016-08-04 07:52:31 +010012232 engine = i915_gem_active_get_engine(&obj->last_write,
12233 &obj->base.dev->struct_mutex);
Daniel Vetter5a21b662016-05-24 17:13:53 +020012234 if (engine == NULL || engine->id != RCS)
12235 engine = &dev_priv->engine[BCS];
12236 } else {
12237 engine = &dev_priv->engine[RCS];
12238 }
12239
12240 mmio_flip = use_mmio_flip(engine, obj);
12241
Chris Wilson058d88c2016-08-15 10:49:06 +010012242 vma = intel_pin_and_fence_fb_obj(fb, primary->state->rotation);
12243 if (IS_ERR(vma)) {
12244 ret = PTR_ERR(vma);
Daniel Vetter5a21b662016-05-24 17:13:53 +020012245 goto cleanup_pending;
Chris Wilson058d88c2016-08-15 10:49:06 +010012246 }
Maarten Lankhorst143f73b32016-05-17 15:07:54 +020012247
Ville Syrjälä6687c902015-09-15 13:16:41 +030012248 work->gtt_offset = intel_fb_gtt_offset(fb, primary->state->rotation);
Daniel Vetter5a21b662016-05-24 17:13:53 +020012249 work->gtt_offset += intel_crtc->dspaddr_offset;
12250 work->rotation = crtc->primary->state->rotation;
12251
Paulo Zanoni1f0613162016-08-17 16:41:44 -030012252 /*
12253 * There's the potential that the next frame will not be compatible with
12254 * FBC, so we want to call pre_update() before the actual page flip.
12255 * The problem is that pre_update() caches some information about the fb
12256 * object, so we want to do this only after the object is pinned. Let's
12257 * be on the safe side and do this immediately before scheduling the
12258 * flip.
12259 */
12260 intel_fbc_pre_update(intel_crtc, intel_crtc->config,
12261 to_intel_plane_state(primary->state));
12262
Daniel Vetter5a21b662016-05-24 17:13:53 +020012263 if (mmio_flip) {
12264 INIT_WORK(&work->mmio_work, intel_mmio_flip_work_func);
12265
Chris Wilsond72d9082016-08-04 07:52:31 +010012266 work->flip_queued_req = i915_gem_active_get(&obj->last_write,
12267 &obj->base.dev->struct_mutex);
Daniel Vetter5a21b662016-05-24 17:13:53 +020012268 schedule_work(&work->mmio_work);
12269 } else {
Chris Wilson8e637172016-08-02 22:50:26 +010012270 request = i915_gem_request_alloc(engine, engine->last_context);
12271 if (IS_ERR(request)) {
12272 ret = PTR_ERR(request);
12273 goto cleanup_unpin;
12274 }
12275
Chris Wilsona2bc4692016-09-09 14:11:56 +010012276 ret = i915_gem_request_await_object(request, obj, false);
Chris Wilson8e637172016-08-02 22:50:26 +010012277 if (ret)
12278 goto cleanup_request;
12279
Daniel Vetter5a21b662016-05-24 17:13:53 +020012280 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, request,
12281 page_flip_flags);
12282 if (ret)
Chris Wilson8e637172016-08-02 22:50:26 +010012283 goto cleanup_request;
Daniel Vetter5a21b662016-05-24 17:13:53 +020012284
12285 intel_mark_page_flip_active(intel_crtc, work);
12286
Chris Wilson8e637172016-08-02 22:50:26 +010012287 work->flip_queued_req = i915_gem_request_get(request);
Daniel Vetter5a21b662016-05-24 17:13:53 +020012288 i915_add_request_no_flush(request);
Maarten Lankhorst143f73b32016-05-17 15:07:54 +020012289 }
12290
Daniel Vetter5a21b662016-05-24 17:13:53 +020012291 i915_gem_track_fb(intel_fb_obj(old_fb), obj,
12292 to_intel_plane(primary)->frontbuffer_bit);
12293 mutex_unlock(&dev->struct_mutex);
12294
Chris Wilson5748b6a2016-08-04 16:32:38 +010012295 intel_frontbuffer_flip_prepare(to_i915(dev),
Daniel Vetter5a21b662016-05-24 17:13:53 +020012296 to_intel_plane(primary)->frontbuffer_bit);
12297
12298 trace_i915_flip_request(intel_crtc->plane, obj);
12299
12300 return 0;
12301
Chris Wilson8e637172016-08-02 22:50:26 +010012302cleanup_request:
12303 i915_add_request_no_flush(request);
Daniel Vetter5a21b662016-05-24 17:13:53 +020012304cleanup_unpin:
12305 intel_unpin_fb_obj(fb, crtc->primary->state->rotation);
12306cleanup_pending:
Daniel Vetter5a21b662016-05-24 17:13:53 +020012307 atomic_dec(&intel_crtc->unpin_work_count);
12308 mutex_unlock(&dev->struct_mutex);
12309cleanup:
12310 crtc->primary->fb = old_fb;
12311 update_state_fb(crtc->primary);
12312
Chris Wilson34911fd2016-07-20 13:31:54 +010012313 i915_gem_object_put_unlocked(obj);
Daniel Vetter5a21b662016-05-24 17:13:53 +020012314 drm_framebuffer_unreference(work->old_fb);
12315
12316 spin_lock_irq(&dev->event_lock);
12317 intel_crtc->flip_work = NULL;
12318 spin_unlock_irq(&dev->event_lock);
12319
12320 drm_crtc_vblank_put(crtc);
12321free_work:
12322 kfree(work);
12323
12324 if (ret == -EIO) {
12325 struct drm_atomic_state *state;
12326 struct drm_plane_state *plane_state;
12327
12328out_hang:
12329 state = drm_atomic_state_alloc(dev);
12330 if (!state)
12331 return -ENOMEM;
12332 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
12333
12334retry:
12335 plane_state = drm_atomic_get_plane_state(state, primary);
12336 ret = PTR_ERR_OR_ZERO(plane_state);
12337 if (!ret) {
12338 drm_atomic_set_fb_for_plane(plane_state, fb);
12339
12340 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
12341 if (!ret)
12342 ret = drm_atomic_commit(state);
12343 }
12344
12345 if (ret == -EDEADLK) {
12346 drm_modeset_backoff(state->acquire_ctx);
12347 drm_atomic_state_clear(state);
12348 goto retry;
12349 }
12350
12351 if (ret)
12352 drm_atomic_state_free(state);
12353
12354 if (ret == 0 && event) {
12355 spin_lock_irq(&dev->event_lock);
12356 drm_crtc_send_vblank_event(crtc, event);
12357 spin_unlock_irq(&dev->event_lock);
12358 }
12359 }
12360 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070012361}
12362
Daniel Vetter5a21b662016-05-24 17:13:53 +020012363
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020012364/**
12365 * intel_wm_need_update - Check whether watermarks need updating
12366 * @plane: drm plane
12367 * @state: new plane state
12368 *
12369 * Check current plane state versus the new one to determine whether
12370 * watermarks need to be recalculated.
12371 *
12372 * Returns true or false.
12373 */
12374static bool intel_wm_need_update(struct drm_plane *plane,
12375 struct drm_plane_state *state)
12376{
Matt Roperd21fbe82015-09-24 15:53:12 -070012377 struct intel_plane_state *new = to_intel_plane_state(state);
12378 struct intel_plane_state *cur = to_intel_plane_state(plane->state);
12379
12380 /* Update watermarks on tiling or size changes. */
Ville Syrjälä936e71e2016-07-26 19:06:59 +030012381 if (new->base.visible != cur->base.visible)
Maarten Lankhorst92826fc2015-12-03 13:49:13 +010012382 return true;
12383
12384 if (!cur->base.fb || !new->base.fb)
12385 return false;
12386
12387 if (cur->base.fb->modifier[0] != new->base.fb->modifier[0] ||
12388 cur->base.rotation != new->base.rotation ||
Ville Syrjälä936e71e2016-07-26 19:06:59 +030012389 drm_rect_width(&new->base.src) != drm_rect_width(&cur->base.src) ||
12390 drm_rect_height(&new->base.src) != drm_rect_height(&cur->base.src) ||
12391 drm_rect_width(&new->base.dst) != drm_rect_width(&cur->base.dst) ||
12392 drm_rect_height(&new->base.dst) != drm_rect_height(&cur->base.dst))
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020012393 return true;
12394
12395 return false;
12396}
12397
Matt Roperd21fbe82015-09-24 15:53:12 -070012398static bool needs_scaling(struct intel_plane_state *state)
12399{
Ville Syrjälä936e71e2016-07-26 19:06:59 +030012400 int src_w = drm_rect_width(&state->base.src) >> 16;
12401 int src_h = drm_rect_height(&state->base.src) >> 16;
12402 int dst_w = drm_rect_width(&state->base.dst);
12403 int dst_h = drm_rect_height(&state->base.dst);
Matt Roperd21fbe82015-09-24 15:53:12 -070012404
12405 return (src_w != dst_w || src_h != dst_h);
12406}
12407
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020012408int intel_plane_atomic_calc_changes(struct drm_crtc_state *crtc_state,
12409 struct drm_plane_state *plane_state)
12410{
Maarten Lankhorstab1d3a02015-11-19 16:07:14 +010012411 struct intel_crtc_state *pipe_config = to_intel_crtc_state(crtc_state);
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020012412 struct drm_crtc *crtc = crtc_state->crtc;
12413 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12414 struct drm_plane *plane = plane_state->plane;
12415 struct drm_device *dev = crtc->dev;
Matt Ropered4a6a72016-02-23 17:20:13 -080012416 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020012417 struct intel_plane_state *old_plane_state =
12418 to_intel_plane_state(plane->state);
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020012419 bool mode_changed = needs_modeset(crtc_state);
12420 bool was_crtc_enabled = crtc->state->active;
12421 bool is_crtc_enabled = crtc_state->active;
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020012422 bool turn_off, turn_on, visible, was_visible;
12423 struct drm_framebuffer *fb = plane_state->fb;
Ville Syrjälä78108b72016-05-27 20:59:19 +030012424 int ret;
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020012425
Chris Wilson84114992016-07-02 15:36:06 +010012426 if (INTEL_GEN(dev) >= 9 && plane->type != DRM_PLANE_TYPE_CURSOR) {
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020012427 ret = skl_update_scaler_plane(
12428 to_intel_crtc_state(crtc_state),
12429 to_intel_plane_state(plane_state));
12430 if (ret)
12431 return ret;
12432 }
12433
Ville Syrjälä936e71e2016-07-26 19:06:59 +030012434 was_visible = old_plane_state->base.visible;
12435 visible = to_intel_plane_state(plane_state)->base.visible;
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020012436
12437 if (!was_crtc_enabled && WARN_ON(was_visible))
12438 was_visible = false;
12439
Maarten Lankhorst35c08f42015-12-03 14:31:07 +010012440 /*
12441 * Visibility is calculated as if the crtc was on, but
12442 * after scaler setup everything depends on it being off
12443 * when the crtc isn't active.
Ville Syrjäläf818ffe2016-04-29 17:31:18 +030012444 *
12445 * FIXME this is wrong for watermarks. Watermarks should also
12446 * be computed as if the pipe would be active. Perhaps move
12447 * per-plane wm computation to the .check_plane() hook, and
12448 * only combine the results from all planes in the current place?
Maarten Lankhorst35c08f42015-12-03 14:31:07 +010012449 */
12450 if (!is_crtc_enabled)
Ville Syrjälä936e71e2016-07-26 19:06:59 +030012451 to_intel_plane_state(plane_state)->base.visible = visible = false;
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020012452
12453 if (!was_visible && !visible)
12454 return 0;
12455
Maarten Lankhorste8861672016-02-24 11:24:26 +010012456 if (fb != old_plane_state->base.fb)
12457 pipe_config->fb_changed = true;
12458
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020012459 turn_off = was_visible && (!visible || mode_changed);
12460 turn_on = visible && (!was_visible || mode_changed);
12461
Ville Syrjälä72660ce2016-05-27 20:59:20 +030012462 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] has [PLANE:%d:%s] with fb %i\n",
Ville Syrjälä78108b72016-05-27 20:59:19 +030012463 intel_crtc->base.base.id,
12464 intel_crtc->base.name,
Ville Syrjälä72660ce2016-05-27 20:59:20 +030012465 plane->base.id, plane->name,
12466 fb ? fb->base.id : -1);
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020012467
Ville Syrjälä72660ce2016-05-27 20:59:20 +030012468 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] visible %i -> %i, off %i, on %i, ms %i\n",
12469 plane->base.id, plane->name,
12470 was_visible, visible,
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020012471 turn_off, turn_on, mode_changed);
12472
Ville Syrjäläcaed3612016-03-09 19:07:25 +020012473 if (turn_on) {
12474 pipe_config->update_wm_pre = true;
12475
12476 /* must disable cxsr around plane enable/disable */
12477 if (plane->type != DRM_PLANE_TYPE_CURSOR)
12478 pipe_config->disable_cxsr = true;
12479 } else if (turn_off) {
12480 pipe_config->update_wm_post = true;
Maarten Lankhorst92826fc2015-12-03 13:49:13 +010012481
Ville Syrjälä852eb002015-06-24 22:00:07 +030012482 /* must disable cxsr around plane enable/disable */
Maarten Lankhorste8861672016-02-24 11:24:26 +010012483 if (plane->type != DRM_PLANE_TYPE_CURSOR)
Maarten Lankhorstab1d3a02015-11-19 16:07:14 +010012484 pipe_config->disable_cxsr = true;
Ville Syrjälä852eb002015-06-24 22:00:07 +030012485 } else if (intel_wm_need_update(plane, plane_state)) {
Ville Syrjäläcaed3612016-03-09 19:07:25 +020012486 /* FIXME bollocks */
12487 pipe_config->update_wm_pre = true;
12488 pipe_config->update_wm_post = true;
Ville Syrjälä852eb002015-06-24 22:00:07 +030012489 }
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020012490
Matt Ropered4a6a72016-02-23 17:20:13 -080012491 /* Pre-gen9 platforms need two-step watermark updates */
Ville Syrjäläcaed3612016-03-09 19:07:25 +020012492 if ((pipe_config->update_wm_pre || pipe_config->update_wm_post) &&
12493 INTEL_INFO(dev)->gen < 9 && dev_priv->display.optimize_watermarks)
Matt Ropered4a6a72016-02-23 17:20:13 -080012494 to_intel_crtc_state(crtc_state)->wm.need_postvbl_update = true;
12495
Rodrigo Vivi8be6ca82015-08-24 16:38:23 -070012496 if (visible || was_visible)
Maarten Lankhorstcd202f62016-03-09 10:35:44 +010012497 pipe_config->fb_bits |= to_intel_plane(plane)->frontbuffer_bit;
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030012498
Maarten Lankhorst31ae71f2016-03-09 10:35:45 +010012499 /*
12500 * WaCxSRDisabledForSpriteScaling:ivb
12501 *
12502 * cstate->update_wm was already set above, so this flag will
12503 * take effect when we commit and program watermarks.
12504 */
12505 if (plane->type == DRM_PLANE_TYPE_OVERLAY && IS_IVYBRIDGE(dev) &&
12506 needs_scaling(to_intel_plane_state(plane_state)) &&
12507 !needs_scaling(old_plane_state))
12508 pipe_config->disable_lp_wm = true;
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020012509
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020012510 return 0;
12511}
12512
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020012513static bool encoders_cloneable(const struct intel_encoder *a,
12514 const struct intel_encoder *b)
12515{
12516 /* masks could be asymmetric, so check both ways */
12517 return a == b || (a->cloneable & (1 << b->type) &&
12518 b->cloneable & (1 << a->type));
12519}
12520
12521static bool check_single_encoder_cloning(struct drm_atomic_state *state,
12522 struct intel_crtc *crtc,
12523 struct intel_encoder *encoder)
12524{
12525 struct intel_encoder *source_encoder;
12526 struct drm_connector *connector;
12527 struct drm_connector_state *connector_state;
12528 int i;
12529
12530 for_each_connector_in_state(state, connector, connector_state, i) {
12531 if (connector_state->crtc != &crtc->base)
12532 continue;
12533
12534 source_encoder =
12535 to_intel_encoder(connector_state->best_encoder);
12536 if (!encoders_cloneable(encoder, source_encoder))
12537 return false;
12538 }
12539
12540 return true;
12541}
12542
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020012543static int intel_crtc_atomic_check(struct drm_crtc *crtc,
12544 struct drm_crtc_state *crtc_state)
12545{
Maarten Lankhorstcf5a15b2015-06-15 12:33:41 +020012546 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +010012547 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020012548 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstcf5a15b2015-06-15 12:33:41 +020012549 struct intel_crtc_state *pipe_config =
12550 to_intel_crtc_state(crtc_state);
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020012551 struct drm_atomic_state *state = crtc_state->state;
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012552 int ret;
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020012553 bool mode_changed = needs_modeset(crtc_state);
12554
Ville Syrjälä852eb002015-06-24 22:00:07 +030012555 if (mode_changed && !crtc_state->active)
Ville Syrjäläcaed3612016-03-09 19:07:25 +020012556 pipe_config->update_wm_post = true;
Maarten Lankhorsteddfcbc2015-06-15 12:33:53 +020012557
Maarten Lankhorstad421372015-06-15 12:33:42 +020012558 if (mode_changed && crtc_state->enable &&
12559 dev_priv->display.crtc_compute_clock &&
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020012560 !WARN_ON(pipe_config->shared_dpll)) {
Maarten Lankhorstad421372015-06-15 12:33:42 +020012561 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
12562 pipe_config);
12563 if (ret)
12564 return ret;
12565 }
12566
Lionel Landwerlin82cf4352016-03-16 10:57:16 +000012567 if (crtc_state->color_mgmt_changed) {
12568 ret = intel_color_check(crtc, crtc_state);
12569 if (ret)
12570 return ret;
Lionel Landwerline7852a42016-05-25 14:30:41 +010012571
12572 /*
12573 * Changing color management on Intel hardware is
12574 * handled as part of planes update.
12575 */
12576 crtc_state->planes_changed = true;
Lionel Landwerlin82cf4352016-03-16 10:57:16 +000012577 }
12578
Maarten Lankhorste435d6e2015-07-13 16:30:15 +020012579 ret = 0;
Matt Roper86c8bbb2015-09-24 15:53:16 -070012580 if (dev_priv->display.compute_pipe_wm) {
Maarten Lankhorste3bddde2016-03-01 11:07:22 +010012581 ret = dev_priv->display.compute_pipe_wm(pipe_config);
Matt Ropered4a6a72016-02-23 17:20:13 -080012582 if (ret) {
12583 DRM_DEBUG_KMS("Target pipe watermarks are invalid\n");
Matt Roper86c8bbb2015-09-24 15:53:16 -070012584 return ret;
Matt Ropered4a6a72016-02-23 17:20:13 -080012585 }
12586 }
12587
12588 if (dev_priv->display.compute_intermediate_wm &&
12589 !to_intel_atomic_state(state)->skip_intermediate_wm) {
12590 if (WARN_ON(!dev_priv->display.compute_pipe_wm))
12591 return 0;
12592
12593 /*
12594 * Calculate 'intermediate' watermarks that satisfy both the
12595 * old state and the new state. We can program these
12596 * immediately.
12597 */
12598 ret = dev_priv->display.compute_intermediate_wm(crtc->dev,
12599 intel_crtc,
12600 pipe_config);
12601 if (ret) {
12602 DRM_DEBUG_KMS("No valid intermediate pipe watermarks are possible\n");
12603 return ret;
12604 }
Ville Syrjäläe3d54572016-05-13 10:10:42 -070012605 } else if (dev_priv->display.compute_intermediate_wm) {
12606 if (HAS_PCH_SPLIT(dev_priv) && INTEL_GEN(dev_priv) < 9)
12607 pipe_config->wm.ilk.intermediate = pipe_config->wm.ilk.optimal;
Matt Roper86c8bbb2015-09-24 15:53:16 -070012608 }
12609
Maarten Lankhorste435d6e2015-07-13 16:30:15 +020012610 if (INTEL_INFO(dev)->gen >= 9) {
12611 if (mode_changed)
12612 ret = skl_update_scaler_crtc(pipe_config);
12613
12614 if (!ret)
12615 ret = intel_atomic_setup_scalers(dev, intel_crtc,
12616 pipe_config);
12617 }
12618
12619 return ret;
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020012620}
12621
Jani Nikula65b38e02015-04-13 11:26:56 +030012622static const struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010012623 .mode_set_base_atomic = intel_pipe_set_base_atomic,
Daniel Vetter5a21b662016-05-24 17:13:53 +020012624 .atomic_begin = intel_begin_crtc_commit,
12625 .atomic_flush = intel_finish_crtc_commit,
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020012626 .atomic_check = intel_crtc_atomic_check,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010012627};
12628
Ander Conselvan de Oliveirad29b2f92015-03-20 16:18:05 +020012629static void intel_modeset_update_connector_atomic_state(struct drm_device *dev)
12630{
12631 struct intel_connector *connector;
12632
12633 for_each_intel_connector(dev, connector) {
Daniel Vetter8863dc72016-05-06 15:39:03 +020012634 if (connector->base.state->crtc)
12635 drm_connector_unreference(&connector->base);
12636
Ander Conselvan de Oliveirad29b2f92015-03-20 16:18:05 +020012637 if (connector->base.encoder) {
12638 connector->base.state->best_encoder =
12639 connector->base.encoder;
12640 connector->base.state->crtc =
12641 connector->base.encoder->crtc;
Daniel Vetter8863dc72016-05-06 15:39:03 +020012642
12643 drm_connector_reference(&connector->base);
Ander Conselvan de Oliveirad29b2f92015-03-20 16:18:05 +020012644 } else {
12645 connector->base.state->best_encoder = NULL;
12646 connector->base.state->crtc = NULL;
12647 }
12648 }
12649}
12650
Daniel Vetter050f7ae2013-06-02 13:26:23 +020012651static void
Robin Schroereba905b2014-05-18 02:24:50 +020012652connected_sink_compute_bpp(struct intel_connector *connector,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012653 struct intel_crtc_state *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012654{
Daniel Vetter050f7ae2013-06-02 13:26:23 +020012655 int bpp = pipe_config->pipe_bpp;
12656
12657 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
12658 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030012659 connector->base.name);
Daniel Vetter050f7ae2013-06-02 13:26:23 +020012660
12661 /* Don't use an invalid EDID bpc value */
12662 if (connector->base.display_info.bpc &&
12663 connector->base.display_info.bpc * 3 < bpp) {
12664 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
12665 bpp, connector->base.display_info.bpc*3);
12666 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
12667 }
12668
Mario Kleiner196f9542016-07-06 12:05:45 +020012669 /* Clamp bpp to 8 on screens without EDID 1.4 */
12670 if (connector->base.display_info.bpc == 0 && bpp > 24) {
12671 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
12672 bpp);
12673 pipe_config->pipe_bpp = 24;
Daniel Vetter050f7ae2013-06-02 13:26:23 +020012674 }
12675}
12676
12677static int
12678compute_baseline_pipe_bpp(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012679 struct intel_crtc_state *pipe_config)
Daniel Vetter050f7ae2013-06-02 13:26:23 +020012680{
12681 struct drm_device *dev = crtc->base.dev;
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020012682 struct drm_atomic_state *state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012683 struct drm_connector *connector;
12684 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020012685 int bpp, i;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012686
Wayne Boyer666a4532015-12-09 12:29:35 -080012687 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)))
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012688 bpp = 10*3;
Daniel Vetterd328c9d2015-04-10 16:22:37 +020012689 else if (INTEL_INFO(dev)->gen >= 5)
12690 bpp = 12*3;
12691 else
12692 bpp = 8*3;
12693
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012694
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012695 pipe_config->pipe_bpp = bpp;
12696
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020012697 state = pipe_config->base.state;
12698
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012699 /* Clamp display bpp to EDID value */
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012700 for_each_connector_in_state(state, connector, connector_state, i) {
12701 if (connector_state->crtc != &crtc->base)
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020012702 continue;
12703
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012704 connected_sink_compute_bpp(to_intel_connector(connector),
12705 pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012706 }
12707
12708 return bpp;
12709}
12710
Daniel Vetter644db712013-09-19 14:53:58 +020012711static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
12712{
12713 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
12714 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +010012715 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +020012716 mode->crtc_hdisplay, mode->crtc_hsync_start,
12717 mode->crtc_hsync_end, mode->crtc_htotal,
12718 mode->crtc_vdisplay, mode->crtc_vsync_start,
12719 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
12720}
12721
Daniel Vetterc0b03412013-05-28 12:05:54 +020012722static void intel_dump_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012723 struct intel_crtc_state *pipe_config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020012724 const char *context)
12725{
Chandra Konduru6a60cd82015-04-07 15:28:40 -070012726 struct drm_device *dev = crtc->base.dev;
12727 struct drm_plane *plane;
12728 struct intel_plane *intel_plane;
12729 struct intel_plane_state *state;
12730 struct drm_framebuffer *fb;
12731
Ville Syrjälä78108b72016-05-27 20:59:19 +030012732 DRM_DEBUG_KMS("[CRTC:%d:%s]%s config %p for pipe %c\n",
12733 crtc->base.base.id, crtc->base.name,
Chandra Konduru6a60cd82015-04-07 15:28:40 -070012734 context, pipe_config, pipe_name(crtc->pipe));
Daniel Vetterc0b03412013-05-28 12:05:54 +020012735
Jani Nikulada205632016-03-15 21:51:10 +020012736 DRM_DEBUG_KMS("cpu_transcoder: %s\n", transcoder_name(pipe_config->cpu_transcoder));
Daniel Vetterc0b03412013-05-28 12:05:54 +020012737 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
12738 pipe_config->pipe_bpp, pipe_config->dither);
12739 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
12740 pipe_config->has_pch_encoder,
12741 pipe_config->fdi_lanes,
12742 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
12743 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
12744 pipe_config->fdi_m_n.tu);
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030012745 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ä37a56502016-06-22 21:57:04 +030012746 intel_crtc_has_dp_encoder(pipe_config),
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030012747 pipe_config->lane_count,
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030012748 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
12749 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
12750 pipe_config->dp_m_n.tu);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012751
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030012752 DRM_DEBUG_KMS("dp: %i, lanes: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n",
Ville Syrjälä37a56502016-06-22 21:57:04 +030012753 intel_crtc_has_dp_encoder(pipe_config),
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030012754 pipe_config->lane_count,
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012755 pipe_config->dp_m2_n2.gmch_m,
12756 pipe_config->dp_m2_n2.gmch_n,
12757 pipe_config->dp_m2_n2.link_m,
12758 pipe_config->dp_m2_n2.link_n,
12759 pipe_config->dp_m2_n2.tu);
12760
Daniel Vetter55072d12014-11-20 16:10:28 +010012761 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
12762 pipe_config->has_audio,
12763 pipe_config->has_infoframe);
12764
Daniel Vetterc0b03412013-05-28 12:05:54 +020012765 DRM_DEBUG_KMS("requested mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012766 drm_mode_debug_printmodeline(&pipe_config->base.mode);
Daniel Vetterc0b03412013-05-28 12:05:54 +020012767 DRM_DEBUG_KMS("adjusted mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012768 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
12769 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +030012770 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030012771 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
12772 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Tvrtko Ursulin0ec463d2015-05-13 16:51:08 +010012773 DRM_DEBUG_KMS("num_scalers: %d, scaler_users: 0x%x, scaler_id: %d\n",
12774 crtc->num_scalers,
12775 pipe_config->scaler_state.scaler_users,
12776 pipe_config->scaler_state.scaler_id);
Daniel Vetterc0b03412013-05-28 12:05:54 +020012777 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
12778 pipe_config->gmch_pfit.control,
12779 pipe_config->gmch_pfit.pgm_ratios,
12780 pipe_config->gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +010012781 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
Daniel Vetterc0b03412013-05-28 12:05:54 +020012782 pipe_config->pch_pfit.pos,
Chris Wilsonfd4daa92013-08-27 17:04:17 +010012783 pipe_config->pch_pfit.size,
12784 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
Paulo Zanoni42db64e2013-05-31 16:33:22 -030012785 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Ville Syrjäläcf532bb2013-09-04 18:30:02 +030012786 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
Chandra Konduru6a60cd82015-04-07 15:28:40 -070012787
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012788 if (IS_BROXTON(dev)) {
Ander Conselvan de Oliveirac8560522016-09-01 15:08:07 -070012789 DRM_DEBUG_KMS("dpll_hw_state: ebb0: 0x%x, ebb4: 0x%x,"
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012790 "pll0: 0x%x, pll1: 0x%x, pll2: 0x%x, pll3: 0x%x, "
Imre Deakc8453332015-06-18 17:25:55 +030012791 "pll6: 0x%x, pll8: 0x%x, pll9: 0x%x, pll10: 0x%x, pcsdw12: 0x%x\n",
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012792 pipe_config->dpll_hw_state.ebb0,
Imre Deak05712c12015-06-18 17:25:54 +030012793 pipe_config->dpll_hw_state.ebb4,
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012794 pipe_config->dpll_hw_state.pll0,
12795 pipe_config->dpll_hw_state.pll1,
12796 pipe_config->dpll_hw_state.pll2,
12797 pipe_config->dpll_hw_state.pll3,
12798 pipe_config->dpll_hw_state.pll6,
12799 pipe_config->dpll_hw_state.pll8,
Imre Deak05712c12015-06-18 17:25:54 +030012800 pipe_config->dpll_hw_state.pll9,
Imre Deakc8453332015-06-18 17:25:55 +030012801 pipe_config->dpll_hw_state.pll10,
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012802 pipe_config->dpll_hw_state.pcsdw12);
Rodrigo Vivief11bdb2015-10-28 04:16:45 -070012803 } else if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
Ander Conselvan de Oliveirac8560522016-09-01 15:08:07 -070012804 DRM_DEBUG_KMS("dpll_hw_state: "
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012805 "ctrl1: 0x%x, cfgcr1: 0x%x, cfgcr2: 0x%x\n",
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012806 pipe_config->dpll_hw_state.ctrl1,
12807 pipe_config->dpll_hw_state.cfgcr1,
12808 pipe_config->dpll_hw_state.cfgcr2);
12809 } else if (HAS_DDI(dev)) {
Ander Conselvan de Oliveirac8560522016-09-01 15:08:07 -070012810 DRM_DEBUG_KMS("dpll_hw_state: wrpll: 0x%x spll: 0x%x\n",
Maarten Lankhorst00490c22015-11-16 14:42:12 +010012811 pipe_config->dpll_hw_state.wrpll,
12812 pipe_config->dpll_hw_state.spll);
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012813 } else {
12814 DRM_DEBUG_KMS("dpll_hw_state: dpll: 0x%x, dpll_md: 0x%x, "
12815 "fp0: 0x%x, fp1: 0x%x\n",
12816 pipe_config->dpll_hw_state.dpll,
12817 pipe_config->dpll_hw_state.dpll_md,
12818 pipe_config->dpll_hw_state.fp0,
12819 pipe_config->dpll_hw_state.fp1);
12820 }
12821
Chandra Konduru6a60cd82015-04-07 15:28:40 -070012822 DRM_DEBUG_KMS("planes on this crtc\n");
12823 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
12824 intel_plane = to_intel_plane(plane);
12825 if (intel_plane->pipe != crtc->pipe)
12826 continue;
12827
12828 state = to_intel_plane_state(plane->state);
12829 fb = state->base.fb;
12830 if (!fb) {
Ville Syrjälä1d577e02016-05-27 20:59:25 +030012831 DRM_DEBUG_KMS("[PLANE:%d:%s] disabled, scaler_id = %d\n",
12832 plane->base.id, plane->name, state->scaler_id);
Chandra Konduru6a60cd82015-04-07 15:28:40 -070012833 continue;
12834 }
12835
Ville Syrjälä1d577e02016-05-27 20:59:25 +030012836 DRM_DEBUG_KMS("[PLANE:%d:%s] enabled",
12837 plane->base.id, plane->name);
12838 DRM_DEBUG_KMS("\tFB:%d, fb = %ux%u format = %s",
12839 fb->base.id, fb->width, fb->height,
12840 drm_get_format_name(fb->pixel_format));
12841 DRM_DEBUG_KMS("\tscaler:%d src %dx%d+%d+%d dst %dx%d+%d+%d\n",
12842 state->scaler_id,
Ville Syrjälä936e71e2016-07-26 19:06:59 +030012843 state->base.src.x1 >> 16,
12844 state->base.src.y1 >> 16,
12845 drm_rect_width(&state->base.src) >> 16,
12846 drm_rect_height(&state->base.src) >> 16,
12847 state->base.dst.x1, state->base.dst.y1,
12848 drm_rect_width(&state->base.dst),
12849 drm_rect_height(&state->base.dst));
Chandra Konduru6a60cd82015-04-07 15:28:40 -070012850 }
Daniel Vetterc0b03412013-05-28 12:05:54 +020012851}
12852
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030012853static bool check_digital_port_conflicts(struct drm_atomic_state *state)
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012854{
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030012855 struct drm_device *dev = state->dev;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012856 struct drm_connector *connector;
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012857 unsigned int used_ports = 0;
Ville Syrjälä477321e2016-07-28 17:50:40 +030012858 unsigned int used_mst_ports = 0;
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012859
12860 /*
12861 * Walk the connector list instead of the encoder
12862 * list to detect the problem on ddi platforms
12863 * where there's just one encoder per digital port.
12864 */
Ville Syrjälä0bff4852015-12-10 18:22:31 +020012865 drm_for_each_connector(connector, dev) {
12866 struct drm_connector_state *connector_state;
12867 struct intel_encoder *encoder;
12868
12869 connector_state = drm_atomic_get_existing_connector_state(state, connector);
12870 if (!connector_state)
12871 connector_state = connector->state;
12872
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030012873 if (!connector_state->best_encoder)
12874 continue;
12875
12876 encoder = to_intel_encoder(connector_state->best_encoder);
12877
12878 WARN_ON(!connector_state->crtc);
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012879
12880 switch (encoder->type) {
12881 unsigned int port_mask;
12882 case INTEL_OUTPUT_UNKNOWN:
12883 if (WARN_ON(!HAS_DDI(dev)))
12884 break;
Ville Syrjäläcca05022016-06-22 21:57:06 +030012885 case INTEL_OUTPUT_DP:
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012886 case INTEL_OUTPUT_HDMI:
12887 case INTEL_OUTPUT_EDP:
12888 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
12889
12890 /* the same port mustn't appear more than once */
12891 if (used_ports & port_mask)
12892 return false;
12893
12894 used_ports |= port_mask;
Ville Syrjälä477321e2016-07-28 17:50:40 +030012895 break;
12896 case INTEL_OUTPUT_DP_MST:
12897 used_mst_ports |=
12898 1 << enc_to_mst(&encoder->base)->primary->port;
12899 break;
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012900 default:
12901 break;
12902 }
12903 }
12904
Ville Syrjälä477321e2016-07-28 17:50:40 +030012905 /* can't mix MST and SST/HDMI on the same port */
12906 if (used_ports & used_mst_ports)
12907 return false;
12908
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012909 return true;
12910}
12911
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012912static void
12913clear_intel_crtc_state(struct intel_crtc_state *crtc_state)
12914{
12915 struct drm_crtc_state tmp_state;
Chandra Konduru663a3642015-04-07 15:28:41 -070012916 struct intel_crtc_scaler_state scaler_state;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012917 struct intel_dpll_hw_state dpll_hw_state;
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020012918 struct intel_shared_dpll *shared_dpll;
Maarten Lankhorstc4e2d042015-08-05 12:36:59 +020012919 bool force_thru;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012920
Ander Conselvan de Oliveira7546a382015-05-20 09:03:27 +030012921 /* FIXME: before the switch to atomic started, a new pipe_config was
12922 * kzalloc'd. Code that depends on any field being zero should be
12923 * fixed, so that the crtc_state can be safely duplicated. For now,
12924 * only fields that are know to not cause problems are preserved. */
12925
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012926 tmp_state = crtc_state->base;
Chandra Konduru663a3642015-04-07 15:28:41 -070012927 scaler_state = crtc_state->scaler_state;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012928 shared_dpll = crtc_state->shared_dpll;
12929 dpll_hw_state = crtc_state->dpll_hw_state;
Maarten Lankhorstc4e2d042015-08-05 12:36:59 +020012930 force_thru = crtc_state->pch_pfit.force_thru;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012931
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012932 memset(crtc_state, 0, sizeof *crtc_state);
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012933
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012934 crtc_state->base = tmp_state;
Chandra Konduru663a3642015-04-07 15:28:41 -070012935 crtc_state->scaler_state = scaler_state;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012936 crtc_state->shared_dpll = shared_dpll;
12937 crtc_state->dpll_hw_state = dpll_hw_state;
Maarten Lankhorstc4e2d042015-08-05 12:36:59 +020012938 crtc_state->pch_pfit.force_thru = force_thru;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012939}
12940
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030012941static int
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010012942intel_modeset_pipe_config(struct drm_crtc *crtc,
Maarten Lankhorstb3592832015-06-15 12:33:38 +020012943 struct intel_crtc_state *pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +020012944{
Maarten Lankhorstb3592832015-06-15 12:33:38 +020012945 struct drm_atomic_state *state = pipe_config->base.state;
Daniel Vetter7758a112012-07-08 19:40:39 +020012946 struct intel_encoder *encoder;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012947 struct drm_connector *connector;
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020012948 struct drm_connector_state *connector_state;
Daniel Vetterd328c9d2015-04-10 16:22:37 +020012949 int base_bpp, ret = -EINVAL;
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020012950 int i;
Daniel Vettere29c22c2013-02-21 00:00:16 +010012951 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +020012952
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012953 clear_intel_crtc_state(pipe_config);
Daniel Vetter7758a112012-07-08 19:40:39 +020012954
Daniel Vettere143a212013-07-04 12:01:15 +020012955 pipe_config->cpu_transcoder =
12956 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010012957
Imre Deak2960bc92013-07-30 13:36:32 +030012958 /*
12959 * Sanitize sync polarity flags based on requested ones. If neither
12960 * positive or negative polarity is requested, treat this as meaning
12961 * negative polarity.
12962 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012963 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030012964 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012965 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030012966
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012967 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030012968 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012969 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030012970
Daniel Vetterd328c9d2015-04-10 16:22:37 +020012971 base_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
12972 pipe_config);
12973 if (base_bpp < 0)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012974 goto fail;
12975
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030012976 /*
12977 * Determine the real pipe dimensions. Note that stereo modes can
12978 * increase the actual pipe size due to the frame doubling and
12979 * insertion of additional space for blanks between the frame. This
12980 * is stored in the crtc timings. We use the requested mode to do this
12981 * computation to clearly distinguish it from the adjusted mode, which
12982 * can be changed by the connectors in the below retry loop.
12983 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012984 drm_crtc_get_hv_timing(&pipe_config->base.mode,
Gustavo Padovanecb7e162014-12-01 15:40:09 -080012985 &pipe_config->pipe_src_w,
12986 &pipe_config->pipe_src_h);
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030012987
Ville Syrjälä253c84c2016-06-22 21:57:01 +030012988 for_each_connector_in_state(state, connector, connector_state, i) {
12989 if (connector_state->crtc != crtc)
12990 continue;
12991
12992 encoder = to_intel_encoder(connector_state->best_encoder);
12993
Ville Syrjäläe25148d2016-06-22 21:57:09 +030012994 if (!check_single_encoder_cloning(state, to_intel_crtc(crtc), encoder)) {
12995 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
12996 goto fail;
12997 }
12998
Ville Syrjälä253c84c2016-06-22 21:57:01 +030012999 /*
13000 * Determine output_types before calling the .compute_config()
13001 * hooks so that the hooks can use this information safely.
13002 */
13003 pipe_config->output_types |= 1 << encoder->type;
13004 }
13005
Daniel Vettere29c22c2013-02-21 00:00:16 +010013006encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +020013007 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +020013008 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +020013009 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +020013010
Daniel Vetter135c81b2013-07-21 21:37:09 +020013011 /* Fill in default crtc timings, allow encoders to overwrite them. */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020013012 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
13013 CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +020013014
Daniel Vetter7758a112012-07-08 19:40:39 +020013015 /* Pass our mode to the connectors and the CRTC to give them a chance to
13016 * adjust it according to limitations or connector properties, and also
13017 * a chance to reject the mode entirely.
13018 */
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030013019 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020013020 if (connector_state->crtc != crtc)
13021 continue;
13022
13023 encoder = to_intel_encoder(connector_state->best_encoder);
13024
Maarten Lankhorst0a478c22016-08-09 17:04:05 +020013025 if (!(encoder->compute_config(encoder, pipe_config, connector_state))) {
Daniel Vetterefea6e82013-07-21 21:36:59 +020013026 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +020013027 goto fail;
13028 }
13029 }
13030
Daniel Vetterff9a6752013-06-01 17:16:21 +020013031 /* Set default port clock if not overwritten by the encoder. Needs to be
13032 * done afterwards in case the encoder adjusts the mode. */
13033 if (!pipe_config->port_clock)
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020013034 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
Damien Lespiau241bfc32013-09-25 16:45:37 +010013035 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +020013036
Daniel Vettera43f6e02013-06-07 23:10:32 +020013037 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010013038 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +020013039 DRM_DEBUG_KMS("CRTC fixup failed\n");
13040 goto fail;
13041 }
Daniel Vettere29c22c2013-02-21 00:00:16 +010013042
13043 if (ret == RETRY) {
13044 if (WARN(!retry, "loop in pipe configuration computation\n")) {
13045 ret = -EINVAL;
13046 goto fail;
13047 }
13048
13049 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
13050 retry = false;
13051 goto encoder_retry;
13052 }
13053
Daniel Vettere8fa4272015-08-12 11:43:34 +020013054 /* Dithering seems to not pass-through bits correctly when it should, so
13055 * only enable it on 6bpc panels. */
13056 pipe_config->dither = pipe_config->pipe_bpp == 6*3;
Daniel Vetter62f0ace2015-08-26 18:57:26 +020013057 DRM_DEBUG_KMS("hw max bpp: %i, pipe bpp: %i, dithering: %i\n",
Daniel Vetterd328c9d2015-04-10 16:22:37 +020013058 base_bpp, pipe_config->pipe_bpp, pipe_config->dither);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010013059
Daniel Vetter7758a112012-07-08 19:40:39 +020013060fail:
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030013061 return ret;
Daniel Vetter7758a112012-07-08 19:40:39 +020013062}
13063
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013064static void
Maarten Lankhorst4740b0f2015-08-05 12:37:10 +020013065intel_modeset_update_crtc_state(struct drm_atomic_state *state)
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013066{
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013067 struct drm_crtc *crtc;
13068 struct drm_crtc_state *crtc_state;
Maarten Lankhorst8a75d152015-07-13 16:30:14 +020013069 int i;
Daniel Vetterea9d7582012-07-10 10:42:52 +020013070
Ville Syrjälä76688512014-01-10 11:28:06 +020013071 /* Double check state. */
Maarten Lankhorst8a75d152015-07-13 16:30:14 +020013072 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorst3cb480b2015-06-01 12:49:49 +020013073 to_intel_crtc(crtc)->config = to_intel_crtc_state(crtc->state);
Maarten Lankhorstfc467a222015-06-01 12:50:07 +020013074
13075 /* Update hwmode for vblank functions */
13076 if (crtc->state->active)
13077 crtc->hwmode = crtc->state->adjusted_mode;
13078 else
13079 crtc->hwmode.crtc_clock = 0;
Maarten Lankhorst61067a52015-09-23 16:29:36 +020013080
13081 /*
13082 * Update legacy state to satisfy fbc code. This can
13083 * be removed when fbc uses the atomic state.
13084 */
13085 if (drm_atomic_get_existing_plane_state(state, crtc->primary)) {
13086 struct drm_plane_state *plane_state = crtc->primary->state;
13087
13088 crtc->primary->fb = plane_state->fb;
13089 crtc->x = plane_state->src_x >> 16;
13090 crtc->y = plane_state->src_y >> 16;
13091 }
Daniel Vetterea9d7582012-07-10 10:42:52 +020013092 }
Daniel Vetterea9d7582012-07-10 10:42:52 +020013093}
13094
Ville Syrjälä3bd26262013-09-06 23:29:02 +030013095static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030013096{
Ville Syrjälä3bd26262013-09-06 23:29:02 +030013097 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030013098
13099 if (clock1 == clock2)
13100 return true;
13101
13102 if (!clock1 || !clock2)
13103 return false;
13104
13105 diff = abs(clock1 - clock2);
13106
13107 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
13108 return true;
13109
13110 return false;
13111}
13112
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013113static bool
13114intel_compare_m_n(unsigned int m, unsigned int n,
13115 unsigned int m2, unsigned int n2,
13116 bool exact)
13117{
13118 if (m == m2 && n == n2)
13119 return true;
13120
13121 if (exact || !m || !n || !m2 || !n2)
13122 return false;
13123
13124 BUILD_BUG_ON(DATA_LINK_M_N_MASK > INT_MAX);
13125
Maarten Lankhorst31d10b52016-01-06 13:54:43 +010013126 if (n > n2) {
13127 while (n > n2) {
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013128 m2 <<= 1;
13129 n2 <<= 1;
13130 }
Maarten Lankhorst31d10b52016-01-06 13:54:43 +010013131 } else if (n < n2) {
13132 while (n < n2) {
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013133 m <<= 1;
13134 n <<= 1;
13135 }
13136 }
13137
Maarten Lankhorst31d10b52016-01-06 13:54:43 +010013138 if (n != n2)
13139 return false;
13140
13141 return intel_fuzzy_clock_check(m, m2);
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013142}
13143
13144static bool
13145intel_compare_link_m_n(const struct intel_link_m_n *m_n,
13146 struct intel_link_m_n *m2_n2,
13147 bool adjust)
13148{
13149 if (m_n->tu == m2_n2->tu &&
13150 intel_compare_m_n(m_n->gmch_m, m_n->gmch_n,
13151 m2_n2->gmch_m, m2_n2->gmch_n, !adjust) &&
13152 intel_compare_m_n(m_n->link_m, m_n->link_n,
13153 m2_n2->link_m, m2_n2->link_n, !adjust)) {
13154 if (adjust)
13155 *m2_n2 = *m_n;
13156
13157 return true;
13158 }
13159
13160 return false;
13161}
13162
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010013163static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020013164intel_pipe_config_compare(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020013165 struct intel_crtc_state *current_config,
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013166 struct intel_crtc_state *pipe_config,
13167 bool adjust)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010013168{
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013169 bool ret = true;
13170
13171#define INTEL_ERR_OR_DBG_KMS(fmt, ...) \
13172 do { \
13173 if (!adjust) \
13174 DRM_ERROR(fmt, ##__VA_ARGS__); \
13175 else \
13176 DRM_DEBUG_KMS(fmt, ##__VA_ARGS__); \
13177 } while (0)
13178
Daniel Vetter66e985c2013-06-05 13:34:20 +020013179#define PIPE_CONF_CHECK_X(name) \
13180 if (current_config->name != pipe_config->name) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013181 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
Daniel Vetter66e985c2013-06-05 13:34:20 +020013182 "(expected 0x%08x, found 0x%08x)\n", \
13183 current_config->name, \
13184 pipe_config->name); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013185 ret = false; \
Daniel Vetter66e985c2013-06-05 13:34:20 +020013186 }
13187
Daniel Vetter08a24032013-04-19 11:25:34 +020013188#define PIPE_CONF_CHECK_I(name) \
13189 if (current_config->name != pipe_config->name) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013190 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
Daniel Vetter08a24032013-04-19 11:25:34 +020013191 "(expected %i, found %i)\n", \
13192 current_config->name, \
13193 pipe_config->name); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013194 ret = false; \
13195 }
13196
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020013197#define PIPE_CONF_CHECK_P(name) \
13198 if (current_config->name != pipe_config->name) { \
13199 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
13200 "(expected %p, found %p)\n", \
13201 current_config->name, \
13202 pipe_config->name); \
13203 ret = false; \
13204 }
13205
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013206#define PIPE_CONF_CHECK_M_N(name) \
13207 if (!intel_compare_link_m_n(&current_config->name, \
13208 &pipe_config->name,\
13209 adjust)) { \
13210 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
13211 "(expected tu %i gmch %i/%i link %i/%i, " \
13212 "found tu %i, gmch %i/%i link %i/%i)\n", \
13213 current_config->name.tu, \
13214 current_config->name.gmch_m, \
13215 current_config->name.gmch_n, \
13216 current_config->name.link_m, \
13217 current_config->name.link_n, \
13218 pipe_config->name.tu, \
13219 pipe_config->name.gmch_m, \
13220 pipe_config->name.gmch_n, \
13221 pipe_config->name.link_m, \
13222 pipe_config->name.link_n); \
13223 ret = false; \
13224 }
13225
Daniel Vetter55c561a2016-03-30 11:34:36 +020013226/* This is required for BDW+ where there is only one set of registers for
13227 * switching between high and low RR.
13228 * This macro can be used whenever a comparison has to be made between one
13229 * hw state and multiple sw state variables.
13230 */
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013231#define PIPE_CONF_CHECK_M_N_ALT(name, alt_name) \
13232 if (!intel_compare_link_m_n(&current_config->name, \
13233 &pipe_config->name, adjust) && \
13234 !intel_compare_link_m_n(&current_config->alt_name, \
13235 &pipe_config->name, adjust)) { \
13236 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
13237 "(expected tu %i gmch %i/%i link %i/%i, " \
13238 "or tu %i gmch %i/%i link %i/%i, " \
13239 "found tu %i, gmch %i/%i link %i/%i)\n", \
13240 current_config->name.tu, \
13241 current_config->name.gmch_m, \
13242 current_config->name.gmch_n, \
13243 current_config->name.link_m, \
13244 current_config->name.link_n, \
13245 current_config->alt_name.tu, \
13246 current_config->alt_name.gmch_m, \
13247 current_config->alt_name.gmch_n, \
13248 current_config->alt_name.link_m, \
13249 current_config->alt_name.link_n, \
13250 pipe_config->name.tu, \
13251 pipe_config->name.gmch_m, \
13252 pipe_config->name.gmch_n, \
13253 pipe_config->name.link_m, \
13254 pipe_config->name.link_n); \
13255 ret = false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +010013256 }
13257
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020013258#define PIPE_CONF_CHECK_FLAGS(name, mask) \
13259 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013260 INTEL_ERR_OR_DBG_KMS("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020013261 "(expected %i, found %i)\n", \
13262 current_config->name & (mask), \
13263 pipe_config->name & (mask)); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013264 ret = false; \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020013265 }
13266
Ville Syrjälä5e550652013-09-06 23:29:07 +030013267#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
13268 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013269 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
Ville Syrjälä5e550652013-09-06 23:29:07 +030013270 "(expected %i, found %i)\n", \
13271 current_config->name, \
13272 pipe_config->name); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013273 ret = false; \
Ville Syrjälä5e550652013-09-06 23:29:07 +030013274 }
13275
Daniel Vetterbb760062013-06-06 14:55:52 +020013276#define PIPE_CONF_QUIRK(quirk) \
13277 ((current_config->quirks | pipe_config->quirks) & (quirk))
13278
Daniel Vettereccb1402013-05-22 00:50:22 +020013279 PIPE_CONF_CHECK_I(cpu_transcoder);
13280
Daniel Vetter08a24032013-04-19 11:25:34 +020013281 PIPE_CONF_CHECK_I(has_pch_encoder);
13282 PIPE_CONF_CHECK_I(fdi_lanes);
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013283 PIPE_CONF_CHECK_M_N(fdi_m_n);
Daniel Vetter08a24032013-04-19 11:25:34 +020013284
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030013285 PIPE_CONF_CHECK_I(lane_count);
Imre Deak95a7a2a2016-06-13 16:44:35 +030013286 PIPE_CONF_CHECK_X(lane_lat_optim_mask);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070013287
13288 if (INTEL_INFO(dev)->gen < 8) {
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013289 PIPE_CONF_CHECK_M_N(dp_m_n);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070013290
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013291 if (current_config->has_drrs)
13292 PIPE_CONF_CHECK_M_N(dp_m2_n2);
13293 } else
13294 PIPE_CONF_CHECK_M_N_ALT(dp_m_n, dp_m2_n2);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030013295
Ville Syrjälä253c84c2016-06-22 21:57:01 +030013296 PIPE_CONF_CHECK_X(output_types);
Jani Nikulaa65347b2015-11-27 12:21:46 +020013297
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020013298 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
13299 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
13300 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
13301 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
13302 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
13303 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020013304
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020013305 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
13306 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
13307 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
13308 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
13309 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
13310 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020013311
Daniel Vetterc93f54c2013-06-27 19:47:19 +020013312 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6897b4b52014-04-24 23:54:47 +020013313 PIPE_CONF_CHECK_I(has_hdmi_sink);
Daniel Vetterb5a9fa02014-04-24 23:54:49 +020013314 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
Wayne Boyer666a4532015-12-09 12:29:35 -080013315 IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
Daniel Vetterb5a9fa02014-04-24 23:54:49 +020013316 PIPE_CONF_CHECK_I(limited_color_range);
Jesse Barnese43823e2014-11-05 14:26:08 -080013317 PIPE_CONF_CHECK_I(has_infoframe);
Daniel Vetter6c49f242013-06-06 12:45:25 +020013318
Daniel Vetter9ed109a2014-04-24 23:54:52 +020013319 PIPE_CONF_CHECK_I(has_audio);
13320
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020013321 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020013322 DRM_MODE_FLAG_INTERLACE);
13323
Daniel Vetterbb760062013-06-06 14:55:52 +020013324 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020013325 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020013326 DRM_MODE_FLAG_PHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020013327 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020013328 DRM_MODE_FLAG_NHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020013329 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020013330 DRM_MODE_FLAG_PVSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020013331 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020013332 DRM_MODE_FLAG_NVSYNC);
13333 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -070013334
Ville Syrjälä333b8ca2015-09-03 21:50:16 +030013335 PIPE_CONF_CHECK_X(gmch_pfit.control);
Daniel Vettere2ff2d42015-07-15 14:15:50 +020013336 /* pfit ratios are autocomputed by the hw on gen4+ */
13337 if (INTEL_INFO(dev)->gen < 4)
Ville Syrjälä7f7d8dd2016-03-15 16:40:07 +020013338 PIPE_CONF_CHECK_X(gmch_pfit.pgm_ratios);
Ville Syrjälä333b8ca2015-09-03 21:50:16 +030013339 PIPE_CONF_CHECK_X(gmch_pfit.lvds_border_bits);
Daniel Vetter99535992014-04-13 12:00:33 +020013340
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013341 if (!adjust) {
13342 PIPE_CONF_CHECK_I(pipe_src_w);
13343 PIPE_CONF_CHECK_I(pipe_src_h);
13344
13345 PIPE_CONF_CHECK_I(pch_pfit.enabled);
13346 if (current_config->pch_pfit.enabled) {
13347 PIPE_CONF_CHECK_X(pch_pfit.pos);
13348 PIPE_CONF_CHECK_X(pch_pfit.size);
13349 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020013350
Maarten Lankhorst7aefe2b2015-09-14 11:30:10 +020013351 PIPE_CONF_CHECK_I(scaler_state.scaler_id);
13352 }
Chandra Kondurua1b22782015-04-07 15:28:45 -070013353
Jesse Barnese59150d2014-01-07 13:30:45 -080013354 /* BDW+ don't expose a synchronous way to read the state */
13355 if (IS_HASWELL(dev))
13356 PIPE_CONF_CHECK_I(ips_enabled);
Paulo Zanoni42db64e2013-05-31 16:33:22 -030013357
Ville Syrjälä282740f2013-09-04 18:30:03 +030013358 PIPE_CONF_CHECK_I(double_wide);
13359
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020013360 PIPE_CONF_CHECK_P(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +020013361 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +020013362 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +020013363 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
13364 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterd452c5b2014-07-04 11:27:39 -030013365 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
Maarten Lankhorst00490c22015-11-16 14:42:12 +010013366 PIPE_CONF_CHECK_X(dpll_hw_state.spll);
Damien Lespiau3f4cd192014-11-13 14:55:21 +000013367 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
13368 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
13369 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
Daniel Vetterc0d43d62013-06-07 23:11:08 +020013370
Ville Syrjälä47eacba2016-04-12 22:14:35 +030013371 PIPE_CONF_CHECK_X(dsi_pll.ctrl);
13372 PIPE_CONF_CHECK_X(dsi_pll.div);
13373
Ville Syrjälä42571ae2013-09-06 23:29:00 +030013374 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
13375 PIPE_CONF_CHECK_I(pipe_bpp);
13376
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020013377 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
Jesse Barnesa9a7e982014-01-20 14:18:04 -080013378 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
Ville Syrjälä5e550652013-09-06 23:29:07 +030013379
Daniel Vetter66e985c2013-06-05 13:34:20 +020013380#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +020013381#undef PIPE_CONF_CHECK_I
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020013382#undef PIPE_CONF_CHECK_P
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020013383#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +030013384#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +020013385#undef PIPE_CONF_QUIRK
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013386#undef INTEL_ERR_OR_DBG_KMS
Daniel Vetter627eb5a2013-04-29 19:33:42 +020013387
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013388 return ret;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010013389}
13390
Ville Syrjäläe3b247d2016-02-17 21:41:09 +020013391static void intel_pipe_config_sanity_check(struct drm_i915_private *dev_priv,
13392 const struct intel_crtc_state *pipe_config)
13393{
13394 if (pipe_config->has_pch_encoder) {
Ville Syrjälä21a727b2016-02-17 21:41:10 +020013395 int fdi_dotclock = intel_dotclock_calculate(intel_fdi_link_freq(dev_priv, pipe_config),
Ville Syrjäläe3b247d2016-02-17 21:41:09 +020013396 &pipe_config->fdi_m_n);
13397 int dotclock = pipe_config->base.adjusted_mode.crtc_clock;
13398
13399 /*
13400 * FDI already provided one idea for the dotclock.
13401 * Yell if the encoder disagrees.
13402 */
13403 WARN(!intel_fuzzy_clock_check(fdi_dotclock, dotclock),
13404 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
13405 fdi_dotclock, dotclock);
13406 }
13407}
13408
Maarten Lankhorstc0ead702016-03-30 10:00:05 +020013409static void verify_wm_state(struct drm_crtc *crtc,
13410 struct drm_crtc_state *new_state)
Damien Lespiau08db6652014-11-04 17:06:52 +000013411{
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013412 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +010013413 struct drm_i915_private *dev_priv = to_i915(dev);
Damien Lespiau08db6652014-11-04 17:06:52 +000013414 struct skl_ddb_allocation hw_ddb, *sw_ddb;
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013415 struct skl_ddb_entry *hw_entry, *sw_entry;
13416 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13417 const enum pipe pipe = intel_crtc->pipe;
Damien Lespiau08db6652014-11-04 17:06:52 +000013418 int plane;
13419
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013420 if (INTEL_INFO(dev)->gen < 9 || !new_state->active)
Damien Lespiau08db6652014-11-04 17:06:52 +000013421 return;
13422
13423 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
13424 sw_ddb = &dev_priv->wm.skl_hw.ddb;
13425
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013426 /* planes */
13427 for_each_plane(dev_priv, pipe, plane) {
13428 hw_entry = &hw_ddb.plane[pipe][plane];
13429 sw_entry = &sw_ddb->plane[pipe][plane];
Damien Lespiau08db6652014-11-04 17:06:52 +000013430
13431 if (skl_ddb_entry_equal(hw_entry, sw_entry))
13432 continue;
13433
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013434 DRM_ERROR("mismatch in DDB state pipe %c plane %d "
13435 "(expected (%u,%u), found (%u,%u))\n",
13436 pipe_name(pipe), plane + 1,
13437 sw_entry->start, sw_entry->end,
13438 hw_entry->start, hw_entry->end);
13439 }
13440
Lyude27082492016-08-24 07:48:10 +020013441 /*
13442 * cursor
13443 * If the cursor plane isn't active, we may not have updated it's ddb
13444 * allocation. In that case since the ddb allocation will be updated
13445 * once the plane becomes visible, we can skip this check
13446 */
13447 if (intel_crtc->cursor_addr) {
13448 hw_entry = &hw_ddb.plane[pipe][PLANE_CURSOR];
13449 sw_entry = &sw_ddb->plane[pipe][PLANE_CURSOR];
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013450
Lyude27082492016-08-24 07:48:10 +020013451 if (!skl_ddb_entry_equal(hw_entry, sw_entry)) {
13452 DRM_ERROR("mismatch in DDB state pipe %c cursor "
13453 "(expected (%u,%u), found (%u,%u))\n",
13454 pipe_name(pipe),
13455 sw_entry->start, sw_entry->end,
13456 hw_entry->start, hw_entry->end);
13457 }
Damien Lespiau08db6652014-11-04 17:06:52 +000013458 }
13459}
13460
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020013461static void
Maarten Lankhorstc0ead702016-03-30 10:00:05 +020013462verify_connector_state(struct drm_device *dev, struct drm_crtc *crtc)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013463{
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020013464 struct drm_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013465
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013466 drm_for_each_connector(connector, dev) {
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020013467 struct drm_encoder *encoder = connector->encoder;
13468 struct drm_connector_state *state = connector->state;
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020013469
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013470 if (state->crtc != crtc)
13471 continue;
13472
Daniel Vetter5a21b662016-05-24 17:13:53 +020013473 intel_connector_verify_state(to_intel_connector(connector));
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013474
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020013475 I915_STATE_WARN(state->best_encoder != encoder,
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020013476 "connector's atomic encoder doesn't match legacy encoder\n");
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013477 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020013478}
13479
13480static void
Maarten Lankhorstc0ead702016-03-30 10:00:05 +020013481verify_encoder_state(struct drm_device *dev)
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020013482{
13483 struct intel_encoder *encoder;
13484 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013485
Damien Lespiaub2784e12014-08-05 11:29:37 +010013486 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013487 bool enabled = false;
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020013488 enum pipe pipe;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013489
13490 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
13491 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030013492 encoder->base.name);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013493
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020013494 for_each_intel_connector(dev, connector) {
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020013495 if (connector->base.state->best_encoder != &encoder->base)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013496 continue;
13497 enabled = true;
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020013498
13499 I915_STATE_WARN(connector->base.state->crtc !=
13500 encoder->base.crtc,
13501 "connector's crtc doesn't match encoder crtc\n");
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013502 }
Dave Airlie0e32b392014-05-02 14:02:48 +100013503
Rob Clarke2c719b2014-12-15 13:56:32 -050013504 I915_STATE_WARN(!!encoder->base.crtc != enabled,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013505 "encoder's enabled state mismatch "
13506 "(expected %i, found %i)\n",
13507 !!encoder->base.crtc, enabled);
Maarten Lankhorst7c60d192015-08-05 12:37:04 +020013508
13509 if (!encoder->base.crtc) {
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020013510 bool active;
13511
13512 active = encoder->get_hw_state(encoder, &pipe);
Maarten Lankhorst7c60d192015-08-05 12:37:04 +020013513 I915_STATE_WARN(active,
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020013514 "encoder detached but still enabled on pipe %c.\n",
13515 pipe_name(pipe));
Maarten Lankhorst7c60d192015-08-05 12:37:04 +020013516 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013517 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020013518}
13519
13520static void
Maarten Lankhorstc0ead702016-03-30 10:00:05 +020013521verify_crtc_state(struct drm_crtc *crtc,
13522 struct drm_crtc_state *old_crtc_state,
13523 struct drm_crtc_state *new_crtc_state)
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020013524{
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013525 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +010013526 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020013527 struct intel_encoder *encoder;
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013528 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13529 struct intel_crtc_state *pipe_config, *sw_config;
13530 struct drm_atomic_state *old_state;
13531 bool active;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013532
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013533 old_state = old_crtc_state->state;
Daniel Vetterec2dc6a2016-05-09 16:34:09 +020013534 __drm_atomic_helper_crtc_destroy_state(old_crtc_state);
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013535 pipe_config = to_intel_crtc_state(old_crtc_state);
13536 memset(pipe_config, 0, sizeof(*pipe_config));
13537 pipe_config->base.crtc = crtc;
13538 pipe_config->base.state = old_state;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013539
Ville Syrjälä78108b72016-05-27 20:59:19 +030013540 DRM_DEBUG_KMS("[CRTC:%d:%s]\n", crtc->base.id, crtc->name);
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013541
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013542 active = dev_priv->display.get_pipe_config(intel_crtc, pipe_config);
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020013543
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013544 /* hw state is inconsistent with the pipe quirk */
13545 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
13546 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
13547 active = new_crtc_state->active;
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020013548
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013549 I915_STATE_WARN(new_crtc_state->active != active,
13550 "crtc active state doesn't match with hw state "
13551 "(expected %i, found %i)\n", new_crtc_state->active, active);
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020013552
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013553 I915_STATE_WARN(intel_crtc->active != new_crtc_state->active,
13554 "transitional active state does not match atomic hw state "
13555 "(expected %i, found %i)\n", new_crtc_state->active, intel_crtc->active);
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020013556
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013557 for_each_encoder_on_crtc(dev, crtc, encoder) {
13558 enum pipe pipe;
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020013559
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013560 active = encoder->get_hw_state(encoder, &pipe);
13561 I915_STATE_WARN(active != new_crtc_state->active,
13562 "[ENCODER:%i] active %i with crtc active %i\n",
13563 encoder->base.base.id, active, new_crtc_state->active);
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020013564
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013565 I915_STATE_WARN(active && intel_crtc->pipe != pipe,
13566 "Encoder connected to wrong pipe %c\n",
13567 pipe_name(pipe));
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020013568
Ville Syrjälä253c84c2016-06-22 21:57:01 +030013569 if (active) {
13570 pipe_config->output_types |= 1 << encoder->type;
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013571 encoder->get_config(encoder, pipe_config);
Ville Syrjälä253c84c2016-06-22 21:57:01 +030013572 }
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013573 }
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020013574
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013575 if (!new_crtc_state->active)
13576 return;
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020013577
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013578 intel_pipe_config_sanity_check(dev_priv, pipe_config);
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020013579
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013580 sw_config = to_intel_crtc_state(crtc->state);
13581 if (!intel_pipe_config_compare(dev, sw_config,
13582 pipe_config, false)) {
13583 I915_STATE_WARN(1, "pipe state doesn't match!\n");
13584 intel_dump_pipe_config(intel_crtc, pipe_config,
13585 "[hw state]");
13586 intel_dump_pipe_config(intel_crtc, sw_config,
13587 "[sw state]");
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013588 }
13589}
13590
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020013591static void
Maarten Lankhorstc0ead702016-03-30 10:00:05 +020013592verify_single_dpll_state(struct drm_i915_private *dev_priv,
13593 struct intel_shared_dpll *pll,
13594 struct drm_crtc *crtc,
13595 struct drm_crtc_state *new_state)
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013596{
13597 struct intel_dpll_hw_state dpll_hw_state;
13598 unsigned crtc_mask;
13599 bool active;
13600
13601 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
13602
13603 DRM_DEBUG_KMS("%s\n", pll->name);
13604
13605 active = pll->funcs.get_hw_state(dev_priv, pll, &dpll_hw_state);
13606
13607 if (!(pll->flags & INTEL_DPLL_ALWAYS_ON)) {
13608 I915_STATE_WARN(!pll->on && pll->active_mask,
13609 "pll in active use but not on in sw tracking\n");
13610 I915_STATE_WARN(pll->on && !pll->active_mask,
13611 "pll is on but not used by any active crtc\n");
13612 I915_STATE_WARN(pll->on != active,
13613 "pll on state mismatch (expected %i, found %i)\n",
13614 pll->on, active);
13615 }
13616
13617 if (!crtc) {
13618 I915_STATE_WARN(pll->active_mask & ~pll->config.crtc_mask,
13619 "more active pll users than references: %x vs %x\n",
13620 pll->active_mask, pll->config.crtc_mask);
13621
13622 return;
13623 }
13624
13625 crtc_mask = 1 << drm_crtc_index(crtc);
13626
13627 if (new_state->active)
13628 I915_STATE_WARN(!(pll->active_mask & crtc_mask),
13629 "pll active mismatch (expected pipe %c in active mask 0x%02x)\n",
13630 pipe_name(drm_crtc_index(crtc)), pll->active_mask);
13631 else
13632 I915_STATE_WARN(pll->active_mask & crtc_mask,
13633 "pll active mismatch (didn't expect pipe %c in active mask 0x%02x)\n",
13634 pipe_name(drm_crtc_index(crtc)), pll->active_mask);
13635
13636 I915_STATE_WARN(!(pll->config.crtc_mask & crtc_mask),
13637 "pll enabled crtcs mismatch (expected 0x%x in 0x%02x)\n",
13638 crtc_mask, pll->config.crtc_mask);
13639
13640 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state,
13641 &dpll_hw_state,
13642 sizeof(dpll_hw_state)),
13643 "pll hw state mismatch\n");
13644}
13645
13646static void
Maarten Lankhorstc0ead702016-03-30 10:00:05 +020013647verify_shared_dpll_state(struct drm_device *dev, struct drm_crtc *crtc,
13648 struct drm_crtc_state *old_crtc_state,
13649 struct drm_crtc_state *new_crtc_state)
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020013650{
Chris Wilsonfac5e232016-07-04 11:34:36 +010013651 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013652 struct intel_crtc_state *old_state = to_intel_crtc_state(old_crtc_state);
13653 struct intel_crtc_state *new_state = to_intel_crtc_state(new_crtc_state);
13654
13655 if (new_state->shared_dpll)
Maarten Lankhorstc0ead702016-03-30 10:00:05 +020013656 verify_single_dpll_state(dev_priv, new_state->shared_dpll, crtc, new_crtc_state);
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013657
13658 if (old_state->shared_dpll &&
13659 old_state->shared_dpll != new_state->shared_dpll) {
13660 unsigned crtc_mask = 1 << drm_crtc_index(crtc);
13661 struct intel_shared_dpll *pll = old_state->shared_dpll;
13662
13663 I915_STATE_WARN(pll->active_mask & crtc_mask,
13664 "pll active mismatch (didn't expect pipe %c in active mask)\n",
13665 pipe_name(drm_crtc_index(crtc)));
13666 I915_STATE_WARN(pll->config.crtc_mask & crtc_mask,
13667 "pll enabled crtcs mismatch (found %x in enabled mask)\n",
13668 pipe_name(drm_crtc_index(crtc)));
13669 }
13670}
13671
13672static void
Maarten Lankhorstc0ead702016-03-30 10:00:05 +020013673intel_modeset_verify_crtc(struct drm_crtc *crtc,
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013674 struct drm_crtc_state *old_state,
13675 struct drm_crtc_state *new_state)
13676{
Daniel Vetter5a21b662016-05-24 17:13:53 +020013677 if (!needs_modeset(new_state) &&
13678 !to_intel_crtc_state(new_state)->update_pipe)
13679 return;
13680
Maarten Lankhorstc0ead702016-03-30 10:00:05 +020013681 verify_wm_state(crtc, new_state);
Daniel Vetter5a21b662016-05-24 17:13:53 +020013682 verify_connector_state(crtc->dev, crtc);
Maarten Lankhorstc0ead702016-03-30 10:00:05 +020013683 verify_crtc_state(crtc, old_state, new_state);
13684 verify_shared_dpll_state(crtc->dev, crtc, old_state, new_state);
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013685}
13686
13687static void
Maarten Lankhorstc0ead702016-03-30 10:00:05 +020013688verify_disabled_dpll_state(struct drm_device *dev)
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013689{
Chris Wilsonfac5e232016-07-04 11:34:36 +010013690 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020013691 int i;
Daniel Vetter53589012013-06-05 13:34:16 +020013692
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013693 for (i = 0; i < dev_priv->num_shared_dpll; i++)
Maarten Lankhorstc0ead702016-03-30 10:00:05 +020013694 verify_single_dpll_state(dev_priv, &dev_priv->shared_dplls[i], NULL, NULL);
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013695}
Daniel Vetter53589012013-06-05 13:34:16 +020013696
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013697static void
Maarten Lankhorstc0ead702016-03-30 10:00:05 +020013698intel_modeset_verify_disabled(struct drm_device *dev)
Maarten Lankhorste7c84542016-03-23 14:58:06 +010013699{
Maarten Lankhorstc0ead702016-03-30 10:00:05 +020013700 verify_encoder_state(dev);
13701 verify_connector_state(dev, NULL);
13702 verify_disabled_dpll_state(dev);
Daniel Vetter25c5b262012-07-08 22:08:04 +020013703}
13704
Ville Syrjälä80715b22014-05-15 20:23:23 +030013705static void update_scanline_offset(struct intel_crtc *crtc)
13706{
13707 struct drm_device *dev = crtc->base.dev;
13708
13709 /*
13710 * The scanline counter increments at the leading edge of hsync.
13711 *
13712 * On most platforms it starts counting from vtotal-1 on the
13713 * first active line. That means the scanline counter value is
13714 * always one less than what we would expect. Ie. just after
13715 * start of vblank, which also occurs at start of hsync (on the
13716 * last active line), the scanline counter will read vblank_start-1.
13717 *
13718 * On gen2 the scanline counter starts counting from 1 instead
13719 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
13720 * to keep the value positive), instead of adding one.
13721 *
13722 * On HSW+ the behaviour of the scanline counter depends on the output
13723 * type. For DP ports it behaves like most other platforms, but on HDMI
13724 * there's an extra 1 line difference. So we need to add two instead of
13725 * one to the value.
13726 */
13727 if (IS_GEN2(dev)) {
Ville Syrjälä124abe02015-09-08 13:40:45 +030013728 const struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
Ville Syrjälä80715b22014-05-15 20:23:23 +030013729 int vtotal;
13730
Ville Syrjälä124abe02015-09-08 13:40:45 +030013731 vtotal = adjusted_mode->crtc_vtotal;
13732 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
Ville Syrjälä80715b22014-05-15 20:23:23 +030013733 vtotal /= 2;
13734
13735 crtc->scanline_offset = vtotal - 1;
13736 } else if (HAS_DDI(dev) &&
Ville Syrjälä2d84d2b2016-06-22 21:57:02 +030013737 intel_crtc_has_type(crtc->config, INTEL_OUTPUT_HDMI)) {
Ville Syrjälä80715b22014-05-15 20:23:23 +030013738 crtc->scanline_offset = 2;
13739 } else
13740 crtc->scanline_offset = 1;
13741}
13742
Maarten Lankhorstad421372015-06-15 12:33:42 +020013743static void intel_modeset_clear_plls(struct drm_atomic_state *state)
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020013744{
Ander Conselvan de Oliveira225da592015-04-02 14:47:57 +030013745 struct drm_device *dev = state->dev;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020013746 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorstad421372015-06-15 12:33:42 +020013747 struct intel_shared_dpll_config *shared_dpll = NULL;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013748 struct drm_crtc *crtc;
13749 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013750 int i;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020013751
13752 if (!dev_priv->display.crtc_compute_clock)
Maarten Lankhorstad421372015-06-15 12:33:42 +020013753 return;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020013754
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013755 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorstfb1a38a2016-02-09 13:02:17 +010013756 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020013757 struct intel_shared_dpll *old_dpll =
13758 to_intel_crtc_state(crtc->state)->shared_dpll;
Maarten Lankhorstad421372015-06-15 12:33:42 +020013759
Maarten Lankhorstfb1a38a2016-02-09 13:02:17 +010013760 if (!needs_modeset(crtc_state))
Ander Conselvan de Oliveira225da592015-04-02 14:47:57 +030013761 continue;
13762
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020013763 to_intel_crtc_state(crtc_state)->shared_dpll = NULL;
Maarten Lankhorstfb1a38a2016-02-09 13:02:17 +010013764
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020013765 if (!old_dpll)
Maarten Lankhorstfb1a38a2016-02-09 13:02:17 +010013766 continue;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013767
Maarten Lankhorstad421372015-06-15 12:33:42 +020013768 if (!shared_dpll)
13769 shared_dpll = intel_atomic_get_shared_dpll_state(state);
13770
Ander Conselvan de Oliveira8106ddb2016-03-08 17:46:18 +020013771 intel_shared_dpll_config_put(shared_dpll, old_dpll, intel_crtc);
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020013772 }
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020013773}
13774
Maarten Lankhorst99d736a2015-06-01 12:50:09 +020013775/*
13776 * This implements the workaround described in the "notes" section of the mode
13777 * set sequence documentation. When going from no pipes or single pipe to
13778 * multiple pipes, and planes are enabled after the pipe, we need to wait at
13779 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
13780 */
13781static int haswell_mode_set_planes_workaround(struct drm_atomic_state *state)
13782{
13783 struct drm_crtc_state *crtc_state;
13784 struct intel_crtc *intel_crtc;
13785 struct drm_crtc *crtc;
13786 struct intel_crtc_state *first_crtc_state = NULL;
13787 struct intel_crtc_state *other_crtc_state = NULL;
13788 enum pipe first_pipe = INVALID_PIPE, enabled_pipe = INVALID_PIPE;
13789 int i;
13790
13791 /* look at all crtc's that are going to be enabled in during modeset */
13792 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13793 intel_crtc = to_intel_crtc(crtc);
13794
13795 if (!crtc_state->active || !needs_modeset(crtc_state))
13796 continue;
13797
13798 if (first_crtc_state) {
13799 other_crtc_state = to_intel_crtc_state(crtc_state);
13800 break;
13801 } else {
13802 first_crtc_state = to_intel_crtc_state(crtc_state);
13803 first_pipe = intel_crtc->pipe;
13804 }
13805 }
13806
13807 /* No workaround needed? */
13808 if (!first_crtc_state)
13809 return 0;
13810
13811 /* w/a possibly needed, check how many crtc's are already enabled. */
13812 for_each_intel_crtc(state->dev, intel_crtc) {
13813 struct intel_crtc_state *pipe_config;
13814
13815 pipe_config = intel_atomic_get_crtc_state(state, intel_crtc);
13816 if (IS_ERR(pipe_config))
13817 return PTR_ERR(pipe_config);
13818
13819 pipe_config->hsw_workaround_pipe = INVALID_PIPE;
13820
13821 if (!pipe_config->base.active ||
13822 needs_modeset(&pipe_config->base))
13823 continue;
13824
13825 /* 2 or more enabled crtcs means no need for w/a */
13826 if (enabled_pipe != INVALID_PIPE)
13827 return 0;
13828
13829 enabled_pipe = intel_crtc->pipe;
13830 }
13831
13832 if (enabled_pipe != INVALID_PIPE)
13833 first_crtc_state->hsw_workaround_pipe = enabled_pipe;
13834 else if (other_crtc_state)
13835 other_crtc_state->hsw_workaround_pipe = first_pipe;
13836
13837 return 0;
13838}
13839
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013840static int intel_modeset_all_pipes(struct drm_atomic_state *state)
13841{
13842 struct drm_crtc *crtc;
13843 struct drm_crtc_state *crtc_state;
13844 int ret = 0;
13845
13846 /* add all active pipes to the state */
13847 for_each_crtc(state->dev, crtc) {
13848 crtc_state = drm_atomic_get_crtc_state(state, crtc);
13849 if (IS_ERR(crtc_state))
13850 return PTR_ERR(crtc_state);
13851
13852 if (!crtc_state->active || needs_modeset(crtc_state))
13853 continue;
13854
13855 crtc_state->mode_changed = true;
13856
13857 ret = drm_atomic_add_affected_connectors(state, crtc);
13858 if (ret)
13859 break;
13860
13861 ret = drm_atomic_add_affected_planes(state, crtc);
13862 if (ret)
13863 break;
13864 }
13865
13866 return ret;
13867}
13868
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013869static int intel_modeset_checks(struct drm_atomic_state *state)
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013870{
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013871 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Chris Wilsonfac5e232016-07-04 11:34:36 +010013872 struct drm_i915_private *dev_priv = to_i915(state->dev);
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013873 struct drm_crtc *crtc;
13874 struct drm_crtc_state *crtc_state;
13875 int ret = 0, i;
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013876
Maarten Lankhorstb3592832015-06-15 12:33:38 +020013877 if (!check_digital_port_conflicts(state)) {
13878 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
13879 return -EINVAL;
13880 }
13881
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013882 intel_state->modeset = true;
13883 intel_state->active_crtcs = dev_priv->active_crtcs;
13884
13885 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13886 if (crtc_state->active)
13887 intel_state->active_crtcs |= 1 << i;
13888 else
13889 intel_state->active_crtcs &= ~(1 << i);
Matt Roper8b4a7d02016-05-12 07:06:00 -070013890
13891 if (crtc_state->active != crtc->state->active)
13892 intel_state->active_pipe_changes |= drm_crtc_mask(crtc);
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013893 }
13894
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013895 /*
13896 * See if the config requires any additional preparation, e.g.
13897 * to adjust global state with pipes off. We need to do this
13898 * here so we can get the modeset_pipe updated config for the new
13899 * mode set on this crtc. For other crtcs we need to use the
13900 * adjusted_mode bits in the crtc directly.
13901 */
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013902 if (dev_priv->display.modeset_calc_cdclk) {
Clint Taylorc89e39f2016-05-13 23:41:21 +030013903 if (!intel_state->cdclk_pll_vco)
Ville Syrjälä63911d72016-05-13 23:41:32 +030013904 intel_state->cdclk_pll_vco = dev_priv->cdclk_pll.vco;
Ville Syrjäläb2045352016-05-13 23:41:27 +030013905 if (!intel_state->cdclk_pll_vco)
13906 intel_state->cdclk_pll_vco = dev_priv->skl_preferred_vco_freq;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013907
Clint Taylorc89e39f2016-05-13 23:41:21 +030013908 ret = dev_priv->display.modeset_calc_cdclk(state);
13909 if (ret < 0)
13910 return ret;
13911
13912 if (intel_state->dev_cdclk != dev_priv->cdclk_freq ||
Ville Syrjälä63911d72016-05-13 23:41:32 +030013913 intel_state->cdclk_pll_vco != dev_priv->cdclk_pll.vco)
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013914 ret = intel_modeset_all_pipes(state);
13915
13916 if (ret < 0)
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013917 return ret;
Maarten Lankhorste8788cb2016-02-16 10:25:11 +010013918
13919 DRM_DEBUG_KMS("New cdclk calculated to be atomic %u, actual %u\n",
13920 intel_state->cdclk, intel_state->dev_cdclk);
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013921 } else
Maarten Lankhorst1a617b72015-12-03 14:31:06 +010013922 to_intel_atomic_state(state)->cdclk = dev_priv->atomic_cdclk_freq;
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013923
Maarten Lankhorstad421372015-06-15 12:33:42 +020013924 intel_modeset_clear_plls(state);
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013925
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013926 if (IS_HASWELL(dev_priv))
Maarten Lankhorstad421372015-06-15 12:33:42 +020013927 return haswell_mode_set_planes_workaround(state);
Maarten Lankhorst99d736a2015-06-01 12:50:09 +020013928
Maarten Lankhorstad421372015-06-15 12:33:42 +020013929 return 0;
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013930}
13931
Matt Roperaa363132015-09-24 15:53:18 -070013932/*
13933 * Handle calculation of various watermark data at the end of the atomic check
13934 * phase. The code here should be run after the per-crtc and per-plane 'check'
13935 * handlers to ensure that all derived state has been updated.
13936 */
Matt Roper55994c22016-05-12 07:06:08 -070013937static int calc_watermark_data(struct drm_atomic_state *state)
Matt Roperaa363132015-09-24 15:53:18 -070013938{
13939 struct drm_device *dev = state->dev;
Matt Roper98d39492016-05-12 07:06:03 -070013940 struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper98d39492016-05-12 07:06:03 -070013941
13942 /* Is there platform-specific watermark information to calculate? */
13943 if (dev_priv->display.compute_global_watermarks)
Matt Roper55994c22016-05-12 07:06:08 -070013944 return dev_priv->display.compute_global_watermarks(state);
13945
13946 return 0;
Matt Roperaa363132015-09-24 15:53:18 -070013947}
13948
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013949/**
13950 * intel_atomic_check - validate state object
13951 * @dev: drm device
13952 * @state: state to validate
13953 */
13954static int intel_atomic_check(struct drm_device *dev,
13955 struct drm_atomic_state *state)
Daniel Vettera6778b32012-07-02 09:56:42 +020013956{
Paulo Zanonidd8b3bd2016-01-19 11:35:49 -020013957 struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roperaa363132015-09-24 15:53:18 -070013958 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013959 struct drm_crtc *crtc;
13960 struct drm_crtc_state *crtc_state;
13961 int ret, i;
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013962 bool any_ms = false;
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013963
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013964 ret = drm_atomic_helper_check_modeset(dev, state);
Daniel Vettera6778b32012-07-02 09:56:42 +020013965 if (ret)
13966 return ret;
13967
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013968 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013969 struct intel_crtc_state *pipe_config =
13970 to_intel_crtc_state(crtc_state);
Daniel Vetter1ed51de2015-07-15 14:15:51 +020013971
13972 /* Catch I915_MODE_FLAG_INHERITED */
13973 if (crtc_state->mode.private_flags != crtc->state->mode.private_flags)
13974 crtc_state->mode_changed = true;
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013975
Daniel Vetter26495482015-07-15 14:15:52 +020013976 if (!needs_modeset(crtc_state))
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013977 continue;
13978
Daniel Vetteraf4a8792016-05-09 09:31:25 +020013979 if (!crtc_state->enable) {
13980 any_ms = true;
13981 continue;
13982 }
13983
Daniel Vetter26495482015-07-15 14:15:52 +020013984 /* FIXME: For only active_changed we shouldn't need to do any
13985 * state recomputation at all. */
13986
Daniel Vetter1ed51de2015-07-15 14:15:51 +020013987 ret = drm_atomic_add_affected_connectors(state, crtc);
13988 if (ret)
13989 return ret;
Maarten Lankhorstb3592832015-06-15 12:33:38 +020013990
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013991 ret = intel_modeset_pipe_config(crtc, pipe_config);
Maarten Lankhorst25aa1c32016-05-03 10:30:38 +020013992 if (ret) {
13993 intel_dump_pipe_config(to_intel_crtc(crtc),
13994 pipe_config, "[failed]");
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013995 return ret;
Maarten Lankhorst25aa1c32016-05-03 10:30:38 +020013996 }
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013997
Jani Nikula73831232015-11-19 10:26:30 +020013998 if (i915.fastboot &&
Paulo Zanonidd8b3bd2016-01-19 11:35:49 -020013999 intel_pipe_config_compare(dev,
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020014000 to_intel_crtc_state(crtc->state),
Daniel Vetter1ed51de2015-07-15 14:15:51 +020014001 pipe_config, true)) {
Daniel Vetter26495482015-07-15 14:15:52 +020014002 crtc_state->mode_changed = false;
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020014003 to_intel_crtc_state(crtc_state)->update_pipe = true;
Daniel Vetter26495482015-07-15 14:15:52 +020014004 }
14005
Daniel Vetteraf4a8792016-05-09 09:31:25 +020014006 if (needs_modeset(crtc_state))
Daniel Vetter26495482015-07-15 14:15:52 +020014007 any_ms = true;
Maarten Lankhorst61333b62015-06-15 12:33:50 +020014008
Daniel Vetteraf4a8792016-05-09 09:31:25 +020014009 ret = drm_atomic_add_affected_planes(state, crtc);
14010 if (ret)
14011 return ret;
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020014012
Daniel Vetter26495482015-07-15 14:15:52 +020014013 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
14014 needs_modeset(crtc_state) ?
14015 "[modeset]" : "[fastset]");
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020014016 }
14017
Maarten Lankhorst61333b62015-06-15 12:33:50 +020014018 if (any_ms) {
14019 ret = intel_modeset_checks(state);
14020
14021 if (ret)
14022 return ret;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020014023 } else
Paulo Zanonidd8b3bd2016-01-19 11:35:49 -020014024 intel_state->cdclk = dev_priv->cdclk_freq;
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020014025
Paulo Zanonidd8b3bd2016-01-19 11:35:49 -020014026 ret = drm_atomic_helper_check_planes(dev, state);
Matt Roperaa363132015-09-24 15:53:18 -070014027 if (ret)
14028 return ret;
14029
Paulo Zanonif51be2e2016-01-19 11:35:50 -020014030 intel_fbc_choose_crtc(dev_priv, state);
Matt Roper55994c22016-05-12 07:06:08 -070014031 return calc_watermark_data(state);
Daniel Vettera6778b32012-07-02 09:56:42 +020014032}
14033
Maarten Lankhorst5008e872015-08-18 13:40:05 +020014034static int intel_atomic_prepare_commit(struct drm_device *dev,
14035 struct drm_atomic_state *state,
Maarten Lankhorst81072bf2016-04-26 16:11:45 +020014036 bool nonblock)
Maarten Lankhorst5008e872015-08-18 13:40:05 +020014037{
Chris Wilsonfac5e232016-07-04 11:34:36 +010014038 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorst7580d772015-08-18 13:40:06 +020014039 struct drm_plane_state *plane_state;
Maarten Lankhorst5008e872015-08-18 13:40:05 +020014040 struct drm_crtc_state *crtc_state;
Maarten Lankhorst7580d772015-08-18 13:40:06 +020014041 struct drm_plane *plane;
Maarten Lankhorst5008e872015-08-18 13:40:05 +020014042 struct drm_crtc *crtc;
14043 int i, ret;
14044
Daniel Vetter5a21b662016-05-24 17:13:53 +020014045 for_each_crtc_in_state(state, crtc, crtc_state, i) {
14046 if (state->legacy_cursor_update)
14047 continue;
14048
14049 ret = intel_crtc_wait_for_pending_flips(crtc);
14050 if (ret)
14051 return ret;
14052
14053 if (atomic_read(&to_intel_crtc(crtc)->unpin_work_count) >= 2)
14054 flush_workqueue(dev_priv->wq);
Maarten Lankhorstd55dbd02016-05-17 15:08:04 +020014055 }
14056
Maarten Lankhorstf9356752015-08-18 13:40:05 +020014057 ret = mutex_lock_interruptible(&dev->struct_mutex);
14058 if (ret)
14059 return ret;
14060
Maarten Lankhorst5008e872015-08-18 13:40:05 +020014061 ret = drm_atomic_helper_prepare_planes(dev, state);
Chris Wilsonf7e58382016-04-13 17:35:07 +010014062 mutex_unlock(&dev->struct_mutex);
Maarten Lankhorst7580d772015-08-18 13:40:06 +020014063
Dave Airlie21daaee2016-05-05 09:56:30 +100014064 if (!ret && !nonblock) {
Maarten Lankhorst7580d772015-08-18 13:40:06 +020014065 for_each_plane_in_state(state, plane, plane_state, i) {
14066 struct intel_plane_state *intel_plane_state =
14067 to_intel_plane_state(plane_state);
14068
14069 if (!intel_plane_state->wait_req)
14070 continue;
14071
Chris Wilson776f3232016-08-04 07:52:40 +010014072 ret = i915_wait_request(intel_plane_state->wait_req,
Chris Wilsonea746f32016-09-09 14:11:49 +010014073 I915_WAIT_INTERRUPTIBLE,
14074 NULL, NULL);
Chris Wilsonf7e58382016-04-13 17:35:07 +010014075 if (ret) {
Chris Wilsonf4457ae2016-04-13 17:35:08 +010014076 /* Any hang should be swallowed by the wait */
14077 WARN_ON(ret == -EIO);
Chris Wilsonf7e58382016-04-13 17:35:07 +010014078 mutex_lock(&dev->struct_mutex);
14079 drm_atomic_helper_cleanup_planes(dev, state);
14080 mutex_unlock(&dev->struct_mutex);
Maarten Lankhorst7580d772015-08-18 13:40:06 +020014081 break;
Chris Wilsonf7e58382016-04-13 17:35:07 +010014082 }
Maarten Lankhorst7580d772015-08-18 13:40:06 +020014083 }
Maarten Lankhorst7580d772015-08-18 13:40:06 +020014084 }
Maarten Lankhorst5008e872015-08-18 13:40:05 +020014085
14086 return ret;
14087}
14088
Maarten Lankhorsta2991412016-05-17 15:07:48 +020014089u32 intel_crtc_get_vblank_counter(struct intel_crtc *crtc)
14090{
14091 struct drm_device *dev = crtc->base.dev;
14092
14093 if (!dev->max_vblank_count)
14094 return drm_accurate_vblank_count(&crtc->base);
14095
14096 return dev->driver->get_vblank_counter(dev, crtc->pipe);
14097}
14098
Daniel Vetter5a21b662016-05-24 17:13:53 +020014099static void intel_atomic_wait_for_vblanks(struct drm_device *dev,
14100 struct drm_i915_private *dev_priv,
14101 unsigned crtc_mask)
Maarten Lankhorste8861672016-02-24 11:24:26 +010014102{
Daniel Vetter5a21b662016-05-24 17:13:53 +020014103 unsigned last_vblank_count[I915_MAX_PIPES];
14104 enum pipe pipe;
14105 int ret;
Maarten Lankhorste8861672016-02-24 11:24:26 +010014106
Daniel Vetter5a21b662016-05-24 17:13:53 +020014107 if (!crtc_mask)
14108 return;
Maarten Lankhorste8861672016-02-24 11:24:26 +010014109
Daniel Vetter5a21b662016-05-24 17:13:53 +020014110 for_each_pipe(dev_priv, pipe) {
14111 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Maarten Lankhorste8861672016-02-24 11:24:26 +010014112
Daniel Vetter5a21b662016-05-24 17:13:53 +020014113 if (!((1 << pipe) & crtc_mask))
Maarten Lankhorste8861672016-02-24 11:24:26 +010014114 continue;
14115
Maarten Lankhorstd55dbd02016-05-17 15:08:04 +020014116 ret = drm_crtc_vblank_get(crtc);
Daniel Vetter5a21b662016-05-24 17:13:53 +020014117 if (WARN_ON(ret != 0)) {
14118 crtc_mask &= ~(1 << pipe);
14119 continue;
14120 }
Maarten Lankhorstd55dbd02016-05-17 15:08:04 +020014121
Daniel Vetter5a21b662016-05-24 17:13:53 +020014122 last_vblank_count[pipe] = drm_crtc_vblank_count(crtc);
14123 }
14124
14125 for_each_pipe(dev_priv, pipe) {
14126 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
14127 long lret;
14128
14129 if (!((1 << pipe) & crtc_mask))
14130 continue;
14131
14132 lret = wait_event_timeout(dev->vblank[pipe].queue,
14133 last_vblank_count[pipe] !=
14134 drm_crtc_vblank_count(crtc),
14135 msecs_to_jiffies(50));
14136
14137 WARN(!lret, "pipe %c vblank wait timed out\n", pipe_name(pipe));
14138
14139 drm_crtc_vblank_put(crtc);
Maarten Lankhorstd55dbd02016-05-17 15:08:04 +020014140 }
14141}
14142
Daniel Vetter5a21b662016-05-24 17:13:53 +020014143static bool needs_vblank_wait(struct intel_crtc_state *crtc_state)
Maarten Lankhorsta6747b72016-05-17 15:08:01 +020014144{
Daniel Vetter5a21b662016-05-24 17:13:53 +020014145 /* fb updated, need to unpin old fb */
14146 if (crtc_state->fb_changed)
14147 return true;
Maarten Lankhorsta6747b72016-05-17 15:08:01 +020014148
Daniel Vetter5a21b662016-05-24 17:13:53 +020014149 /* wm changes, need vblank before final wm's */
14150 if (crtc_state->update_wm_post)
14151 return true;
Maarten Lankhorsta6747b72016-05-17 15:08:01 +020014152
Daniel Vetter5a21b662016-05-24 17:13:53 +020014153 /*
14154 * cxsr is re-enabled after vblank.
14155 * This is already handled by crtc_state->update_wm_post,
14156 * but added for clarity.
14157 */
14158 if (crtc_state->disable_cxsr)
14159 return true;
Maarten Lankhorsta6747b72016-05-17 15:08:01 +020014160
Daniel Vetter5a21b662016-05-24 17:13:53 +020014161 return false;
Maarten Lankhorste8861672016-02-24 11:24:26 +010014162}
14163
Lyude896e5bb2016-08-24 07:48:09 +020014164static void intel_update_crtc(struct drm_crtc *crtc,
14165 struct drm_atomic_state *state,
14166 struct drm_crtc_state *old_crtc_state,
14167 unsigned int *crtc_vblank_mask)
14168{
14169 struct drm_device *dev = crtc->dev;
14170 struct drm_i915_private *dev_priv = to_i915(dev);
14171 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
14172 struct intel_crtc_state *pipe_config = to_intel_crtc_state(crtc->state);
14173 bool modeset = needs_modeset(crtc->state);
14174
14175 if (modeset) {
14176 update_scanline_offset(intel_crtc);
14177 dev_priv->display.crtc_enable(pipe_config, state);
14178 } else {
14179 intel_pre_plane_update(to_intel_crtc_state(old_crtc_state));
14180 }
14181
14182 if (drm_atomic_get_existing_plane_state(state, crtc->primary)) {
14183 intel_fbc_enable(
14184 intel_crtc, pipe_config,
14185 to_intel_plane_state(crtc->primary->state));
14186 }
14187
14188 drm_atomic_helper_commit_planes_on_crtc(old_crtc_state);
14189
14190 if (needs_vblank_wait(pipe_config))
14191 *crtc_vblank_mask |= drm_crtc_mask(crtc);
14192}
14193
14194static void intel_update_crtcs(struct drm_atomic_state *state,
14195 unsigned int *crtc_vblank_mask)
14196{
14197 struct drm_crtc *crtc;
14198 struct drm_crtc_state *old_crtc_state;
14199 int i;
14200
14201 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
14202 if (!crtc->state->active)
14203 continue;
14204
14205 intel_update_crtc(crtc, state, old_crtc_state,
14206 crtc_vblank_mask);
14207 }
14208}
14209
Lyude27082492016-08-24 07:48:10 +020014210static void skl_update_crtcs(struct drm_atomic_state *state,
14211 unsigned int *crtc_vblank_mask)
14212{
14213 struct drm_device *dev = state->dev;
14214 struct drm_i915_private *dev_priv = to_i915(dev);
14215 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
14216 struct drm_crtc *crtc;
14217 struct drm_crtc_state *old_crtc_state;
14218 struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
14219 struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
14220 unsigned int updated = 0;
14221 bool progress;
14222 enum pipe pipe;
14223
14224 /*
14225 * Whenever the number of active pipes changes, we need to make sure we
14226 * update the pipes in the right order so that their ddb allocations
14227 * never overlap with eachother inbetween CRTC updates. Otherwise we'll
14228 * cause pipe underruns and other bad stuff.
14229 */
14230 do {
14231 int i;
14232 progress = false;
14233
14234 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
14235 bool vbl_wait = false;
14236 unsigned int cmask = drm_crtc_mask(crtc);
14237 pipe = to_intel_crtc(crtc)->pipe;
14238
14239 if (updated & cmask || !crtc->state->active)
14240 continue;
14241 if (skl_ddb_allocation_overlaps(state, cur_ddb, new_ddb,
14242 pipe))
14243 continue;
14244
14245 updated |= cmask;
14246
14247 /*
14248 * If this is an already active pipe, it's DDB changed,
14249 * and this isn't the last pipe that needs updating
14250 * then we need to wait for a vblank to pass for the
14251 * new ddb allocation to take effect.
14252 */
14253 if (!skl_ddb_allocation_equals(cur_ddb, new_ddb, pipe) &&
14254 !crtc->state->active_changed &&
14255 intel_state->wm_results.dirty_pipes != updated)
14256 vbl_wait = true;
14257
14258 intel_update_crtc(crtc, state, old_crtc_state,
14259 crtc_vblank_mask);
14260
14261 if (vbl_wait)
14262 intel_wait_for_vblank(dev, pipe);
14263
14264 progress = true;
14265 }
14266 } while (progress);
14267}
14268
Daniel Vetter94f05022016-06-14 18:01:00 +020014269static void intel_atomic_commit_tail(struct drm_atomic_state *state)
Daniel Vettera6778b32012-07-02 09:56:42 +020014270{
Daniel Vetter94f05022016-06-14 18:01:00 +020014271 struct drm_device *dev = state->dev;
Maarten Lankhorst565602d2015-12-10 12:33:57 +010014272 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Chris Wilsonfac5e232016-07-04 11:34:36 +010014273 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä29ceb0e2016-03-09 19:07:27 +020014274 struct drm_crtc_state *old_crtc_state;
Maarten Lankhorst7580d772015-08-18 13:40:06 +020014275 struct drm_crtc *crtc;
Daniel Vetter5a21b662016-05-24 17:13:53 +020014276 struct intel_crtc_state *intel_cstate;
Daniel Vetter94f05022016-06-14 18:01:00 +020014277 struct drm_plane *plane;
14278 struct drm_plane_state *plane_state;
Daniel Vetter5a21b662016-05-24 17:13:53 +020014279 bool hw_check = intel_state->modeset;
14280 unsigned long put_domains[I915_MAX_PIPES] = {};
14281 unsigned crtc_vblank_mask = 0;
Daniel Vetter94f05022016-06-14 18:01:00 +020014282 int i, ret;
Daniel Vettera6778b32012-07-02 09:56:42 +020014283
Daniel Vetter94f05022016-06-14 18:01:00 +020014284 for_each_plane_in_state(state, plane, plane_state, i) {
14285 struct intel_plane_state *intel_plane_state =
14286 to_intel_plane_state(plane_state);
Daniel Vetterea0000f2016-06-13 16:13:46 +020014287
Daniel Vetter94f05022016-06-14 18:01:00 +020014288 if (!intel_plane_state->wait_req)
14289 continue;
14290
Chris Wilson776f3232016-08-04 07:52:40 +010014291 ret = i915_wait_request(intel_plane_state->wait_req,
Chris Wilsonea746f32016-09-09 14:11:49 +010014292 0, NULL, NULL);
Daniel Vetter94f05022016-06-14 18:01:00 +020014293 /* EIO should be eaten, and we can't get interrupted in the
14294 * worker, and blocking commits have waited already. */
14295 WARN_ON(ret);
Maarten Lankhorst7580d772015-08-18 13:40:06 +020014296 }
Ander Conselvan de Oliveirad4afb8c2015-04-21 17:13:22 +030014297
Daniel Vetterea0000f2016-06-13 16:13:46 +020014298 drm_atomic_helper_wait_for_dependencies(state);
14299
Maarten Lankhorst565602d2015-12-10 12:33:57 +010014300 if (intel_state->modeset) {
14301 memcpy(dev_priv->min_pixclk, intel_state->min_pixclk,
14302 sizeof(intel_state->min_pixclk));
14303 dev_priv->active_crtcs = intel_state->active_crtcs;
Maarten Lankhorst1a617b72015-12-03 14:31:06 +010014304 dev_priv->atomic_cdclk_freq = intel_state->cdclk;
Daniel Vetter5a21b662016-05-24 17:13:53 +020014305
14306 intel_display_power_get(dev_priv, POWER_DOMAIN_MODESET);
Maarten Lankhorst565602d2015-12-10 12:33:57 +010014307 }
14308
Ville Syrjälä29ceb0e2016-03-09 19:07:27 +020014309 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
Maarten Lankhorsta5392052015-06-15 12:33:52 +020014310 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
14311
Daniel Vetter5a21b662016-05-24 17:13:53 +020014312 if (needs_modeset(crtc->state) ||
14313 to_intel_crtc_state(crtc->state)->update_pipe) {
14314 hw_check = true;
14315
14316 put_domains[to_intel_crtc(crtc)->pipe] =
14317 modeset_get_crtc_power_domains(crtc,
14318 to_intel_crtc_state(crtc->state));
14319 }
14320
Maarten Lankhorst61333b62015-06-15 12:33:50 +020014321 if (!needs_modeset(crtc->state))
14322 continue;
14323
Ville Syrjälä29ceb0e2016-03-09 19:07:27 +020014324 intel_pre_plane_update(to_intel_crtc_state(old_crtc_state));
Daniel Vetter460da9162013-03-27 00:44:51 +010014325
Ville Syrjälä29ceb0e2016-03-09 19:07:27 +020014326 if (old_crtc_state->active) {
14327 intel_crtc_disable_planes(crtc, old_crtc_state->plane_mask);
Maarten Lankhorst4a806552016-08-09 17:04:01 +020014328 dev_priv->display.crtc_disable(to_intel_crtc_state(old_crtc_state), state);
Maarten Lankhorsteddfcbc2015-06-15 12:33:53 +020014329 intel_crtc->active = false;
Paulo Zanoni58f9c0b2016-01-19 11:35:51 -020014330 intel_fbc_disable(intel_crtc);
Maarten Lankhorsteddfcbc2015-06-15 12:33:53 +020014331 intel_disable_shared_dpll(intel_crtc);
Ville Syrjälä9bbc8258a2015-11-20 22:09:20 +020014332
14333 /*
14334 * Underruns don't always raise
14335 * interrupts, so check manually.
14336 */
14337 intel_check_cpu_fifo_underruns(dev_priv);
14338 intel_check_pch_fifo_underruns(dev_priv);
Maarten Lankhorstb9001112015-11-19 16:07:16 +010014339
14340 if (!crtc->state->active)
14341 intel_update_watermarks(crtc);
Maarten Lankhorsta5392052015-06-15 12:33:52 +020014342 }
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010014343 }
Daniel Vetter7758a112012-07-08 19:40:39 +020014344
Daniel Vetterea9d7582012-07-10 10:42:52 +020014345 /* Only after disabling all output pipelines that will be changed can we
14346 * update the the output configuration. */
Maarten Lankhorst4740b0f2015-08-05 12:37:10 +020014347 intel_modeset_update_crtc_state(state);
Daniel Vetterea9d7582012-07-10 10:42:52 +020014348
Maarten Lankhorst565602d2015-12-10 12:33:57 +010014349 if (intel_state->modeset) {
Maarten Lankhorst4740b0f2015-08-05 12:37:10 +020014350 drm_atomic_helper_update_legacy_modeset_state(state->dev, state);
Maarten Lankhorst33c8df892016-02-10 13:49:37 +010014351
14352 if (dev_priv->display.modeset_commit_cdclk &&
Clint Taylorc89e39f2016-05-13 23:41:21 +030014353 (intel_state->dev_cdclk != dev_priv->cdclk_freq ||
Ville Syrjälä63911d72016-05-13 23:41:32 +030014354 intel_state->cdclk_pll_vco != dev_priv->cdclk_pll.vco))
Maarten Lankhorst33c8df892016-02-10 13:49:37 +010014355 dev_priv->display.modeset_commit_cdclk(state);
Maarten Lankhorstf6d19732016-03-23 14:58:07 +010014356
Lyude656d1b82016-08-17 15:55:54 -040014357 /*
14358 * SKL workaround: bspec recommends we disable the SAGV when we
14359 * have more then one pipe enabled
14360 */
14361 if (IS_SKYLAKE(dev_priv) && !skl_can_enable_sagv(state))
14362 skl_disable_sagv(dev_priv);
14363
Maarten Lankhorstc0ead702016-03-30 10:00:05 +020014364 intel_modeset_verify_disabled(dev);
Maarten Lankhorst4740b0f2015-08-05 12:37:10 +020014365 }
Daniel Vetter47fab732012-10-26 10:58:18 +020014366
Lyude896e5bb2016-08-24 07:48:09 +020014367 /* Complete the events for pipes that have now been disabled */
Ville Syrjälä29ceb0e2016-03-09 19:07:27 +020014368 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
Maarten Lankhorstf6ac4b22015-07-13 16:30:31 +020014369 bool modeset = needs_modeset(crtc->state);
Maarten Lankhorsta5392052015-06-15 12:33:52 +020014370
Daniel Vetter1f7528c2016-06-13 16:13:45 +020014371 /* Complete events for now disable pipes here. */
14372 if (modeset && !crtc->state->active && crtc->state->event) {
14373 spin_lock_irq(&dev->event_lock);
14374 drm_crtc_send_vblank_event(crtc, crtc->state->event);
14375 spin_unlock_irq(&dev->event_lock);
14376
14377 crtc->state->event = NULL;
14378 }
Matt Ropered4a6a72016-02-23 17:20:13 -080014379 }
14380
Lyude896e5bb2016-08-24 07:48:09 +020014381 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
14382 dev_priv->display.update_crtcs(state, &crtc_vblank_mask);
14383
Daniel Vetter94f05022016-06-14 18:01:00 +020014384 /* FIXME: We should call drm_atomic_helper_commit_hw_done() here
14385 * already, but still need the state for the delayed optimization. To
14386 * fix this:
14387 * - wrap the optimization/post_plane_update stuff into a per-crtc work.
14388 * - schedule that vblank worker _before_ calling hw_done
14389 * - at the start of commit_tail, cancel it _synchrously
14390 * - switch over to the vblank wait helper in the core after that since
14391 * we don't need out special handling any more.
14392 */
Daniel Vetter5a21b662016-05-24 17:13:53 +020014393 if (!state->legacy_cursor_update)
14394 intel_atomic_wait_for_vblanks(dev, dev_priv, crtc_vblank_mask);
14395
14396 /*
14397 * Now that the vblank has passed, we can go ahead and program the
14398 * optimal watermarks on platforms that need two-step watermark
14399 * programming.
14400 *
14401 * TODO: Move this (and other cleanup) to an async worker eventually.
14402 */
14403 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
14404 intel_cstate = to_intel_crtc_state(crtc->state);
14405
14406 if (dev_priv->display.optimize_watermarks)
14407 dev_priv->display.optimize_watermarks(intel_cstate);
14408 }
14409
14410 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
14411 intel_post_plane_update(to_intel_crtc_state(old_crtc_state));
14412
14413 if (put_domains[i])
14414 modeset_put_power_domains(dev_priv, put_domains[i]);
14415
14416 intel_modeset_verify_crtc(crtc, old_crtc_state, crtc->state);
14417 }
14418
Lyude656d1b82016-08-17 15:55:54 -040014419 if (IS_SKYLAKE(dev_priv) && intel_state->modeset &&
14420 skl_can_enable_sagv(state))
14421 skl_enable_sagv(dev_priv);
14422
Daniel Vetter94f05022016-06-14 18:01:00 +020014423 drm_atomic_helper_commit_hw_done(state);
14424
Daniel Vetter5a21b662016-05-24 17:13:53 +020014425 if (intel_state->modeset)
14426 intel_display_power_put(dev_priv, POWER_DOMAIN_MODESET);
14427
14428 mutex_lock(&dev->struct_mutex);
14429 drm_atomic_helper_cleanup_planes(dev, state);
14430 mutex_unlock(&dev->struct_mutex);
14431
Daniel Vetterea0000f2016-06-13 16:13:46 +020014432 drm_atomic_helper_commit_cleanup_done(state);
14433
Maarten Lankhorstee165b12015-08-05 12:37:00 +020014434 drm_atomic_state_free(state);
Jesse Barnes7f27126e2014-11-05 14:26:06 -080014435
Mika Kuoppala75714942015-12-16 09:26:48 +020014436 /* As one of the primary mmio accessors, KMS has a high likelihood
14437 * of triggering bugs in unclaimed access. After we finish
14438 * modesetting, see if an error has been flagged, and if so
14439 * enable debugging for the next modeset - and hope we catch
14440 * the culprit.
14441 *
14442 * XXX note that we assume display power is on at this point.
14443 * This might hold true now but we need to add pm helper to check
14444 * unclaimed only when the hardware is on, as atomic commits
14445 * can happen also when the device is completely off.
14446 */
14447 intel_uncore_arm_unclaimed_mmio_detection(dev_priv);
Daniel Vetter94f05022016-06-14 18:01:00 +020014448}
14449
14450static void intel_atomic_commit_work(struct work_struct *work)
14451{
14452 struct drm_atomic_state *state = container_of(work,
14453 struct drm_atomic_state,
14454 commit_work);
14455 intel_atomic_commit_tail(state);
14456}
14457
Daniel Vetter6c9c1b32016-06-13 16:13:48 +020014458static void intel_atomic_track_fbs(struct drm_atomic_state *state)
14459{
14460 struct drm_plane_state *old_plane_state;
14461 struct drm_plane *plane;
Daniel Vetter6c9c1b32016-06-13 16:13:48 +020014462 int i;
14463
Chris Wilsonfaf5bf02016-08-04 16:32:37 +010014464 for_each_plane_in_state(state, plane, old_plane_state, i)
14465 i915_gem_track_fb(intel_fb_obj(old_plane_state->fb),
14466 intel_fb_obj(plane->state->fb),
14467 to_intel_plane(plane)->frontbuffer_bit);
Daniel Vetter6c9c1b32016-06-13 16:13:48 +020014468}
14469
Daniel Vetter94f05022016-06-14 18:01:00 +020014470/**
14471 * intel_atomic_commit - commit validated state object
14472 * @dev: DRM device
14473 * @state: the top-level driver state object
14474 * @nonblock: nonblocking commit
14475 *
14476 * This function commits a top-level state object that has been validated
14477 * with drm_atomic_helper_check().
14478 *
14479 * FIXME: Atomic modeset support for i915 is not yet complete. At the moment
14480 * nonblocking commits are only safe for pure plane updates. Everything else
14481 * should work though.
14482 *
14483 * RETURNS
14484 * Zero for success or -errno.
14485 */
14486static int intel_atomic_commit(struct drm_device *dev,
14487 struct drm_atomic_state *state,
14488 bool nonblock)
14489{
14490 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Chris Wilsonfac5e232016-07-04 11:34:36 +010014491 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter94f05022016-06-14 18:01:00 +020014492 int ret = 0;
14493
14494 if (intel_state->modeset && nonblock) {
14495 DRM_DEBUG_KMS("nonblocking commit for modeset not yet implemented.\n");
14496 return -EINVAL;
14497 }
14498
14499 ret = drm_atomic_helper_setup_commit(state, nonblock);
14500 if (ret)
14501 return ret;
14502
14503 INIT_WORK(&state->commit_work, intel_atomic_commit_work);
14504
14505 ret = intel_atomic_prepare_commit(dev, state, nonblock);
14506 if (ret) {
14507 DRM_DEBUG_ATOMIC("Preparing state failed with %i\n", ret);
14508 return ret;
14509 }
14510
14511 drm_atomic_helper_swap_state(state, true);
14512 dev_priv->wm.distrust_bios_wm = false;
14513 dev_priv->wm.skl_results = intel_state->wm_results;
14514 intel_shared_dpll_commit(state);
Daniel Vetter6c9c1b32016-06-13 16:13:48 +020014515 intel_atomic_track_fbs(state);
Daniel Vetter94f05022016-06-14 18:01:00 +020014516
14517 if (nonblock)
14518 queue_work(system_unbound_wq, &state->commit_work);
14519 else
14520 intel_atomic_commit_tail(state);
Mika Kuoppala75714942015-12-16 09:26:48 +020014521
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020014522 return 0;
Daniel Vetterf30da182013-04-11 20:22:50 +020014523}
14524
Chris Wilsonc0c36b942012-12-19 16:08:43 +000014525void intel_crtc_restore_mode(struct drm_crtc *crtc)
14526{
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020014527 struct drm_device *dev = crtc->dev;
14528 struct drm_atomic_state *state;
Maarten Lankhorste694eb02015-07-14 16:19:12 +020014529 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030014530 int ret;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020014531
14532 state = drm_atomic_state_alloc(dev);
14533 if (!state) {
Ville Syrjälä78108b72016-05-27 20:59:19 +030014534 DRM_DEBUG_KMS("[CRTC:%d:%s] crtc restore failed, out of memory",
14535 crtc->base.id, crtc->name);
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020014536 return;
14537 }
14538
Maarten Lankhorste694eb02015-07-14 16:19:12 +020014539 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020014540
Maarten Lankhorste694eb02015-07-14 16:19:12 +020014541retry:
14542 crtc_state = drm_atomic_get_crtc_state(state, crtc);
14543 ret = PTR_ERR_OR_ZERO(crtc_state);
14544 if (!ret) {
14545 if (!crtc_state->active)
14546 goto out;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020014547
Maarten Lankhorste694eb02015-07-14 16:19:12 +020014548 crtc_state->mode_changed = true;
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020014549 ret = drm_atomic_commit(state);
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020014550 }
14551
Maarten Lankhorste694eb02015-07-14 16:19:12 +020014552 if (ret == -EDEADLK) {
14553 drm_atomic_state_clear(state);
14554 drm_modeset_backoff(state->acquire_ctx);
14555 goto retry;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030014556 }
14557
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030014558 if (ret)
Maarten Lankhorste694eb02015-07-14 16:19:12 +020014559out:
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030014560 drm_atomic_state_free(state);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000014561}
14562
Bob Paauwea8784872016-07-15 14:59:02 +010014563/*
14564 * FIXME: Remove this once i915 is fully DRIVER_ATOMIC by calling
14565 * drm_atomic_helper_legacy_gamma_set() directly.
14566 */
14567static int intel_atomic_legacy_gamma_set(struct drm_crtc *crtc,
14568 u16 *red, u16 *green, u16 *blue,
14569 uint32_t size)
14570{
14571 struct drm_device *dev = crtc->dev;
14572 struct drm_mode_config *config = &dev->mode_config;
14573 struct drm_crtc_state *state;
14574 int ret;
14575
14576 ret = drm_atomic_helper_legacy_gamma_set(crtc, red, green, blue, size);
14577 if (ret)
14578 return ret;
14579
14580 /*
14581 * Make sure we update the legacy properties so this works when
14582 * atomic is not enabled.
14583 */
14584
14585 state = crtc->state;
14586
14587 drm_object_property_set_value(&crtc->base,
14588 config->degamma_lut_property,
14589 (state->degamma_lut) ?
14590 state->degamma_lut->base.id : 0);
14591
14592 drm_object_property_set_value(&crtc->base,
14593 config->ctm_property,
14594 (state->ctm) ?
14595 state->ctm->base.id : 0);
14596
14597 drm_object_property_set_value(&crtc->base,
14598 config->gamma_lut_property,
14599 (state->gamma_lut) ?
14600 state->gamma_lut->base.id : 0);
14601
14602 return 0;
14603}
14604
Chris Wilsonf6e5b162011-04-12 18:06:51 +010014605static const struct drm_crtc_funcs intel_crtc_funcs = {
Bob Paauwea8784872016-07-15 14:59:02 +010014606 .gamma_set = intel_atomic_legacy_gamma_set,
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020014607 .set_config = drm_atomic_helper_set_config,
Lionel Landwerlin82cf4352016-03-16 10:57:16 +000014608 .set_property = drm_atomic_helper_crtc_set_property,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010014609 .destroy = intel_crtc_destroy,
Chris Wilson527b6ab2016-06-24 13:44:03 +010014610 .page_flip = intel_crtc_page_flip,
Matt Roper13568372015-01-21 16:35:47 -080014611 .atomic_duplicate_state = intel_crtc_duplicate_state,
14612 .atomic_destroy_state = intel_crtc_destroy_state,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010014613};
14614
Matt Roper6beb8c232014-12-01 15:40:14 -080014615/**
14616 * intel_prepare_plane_fb - Prepare fb for usage on plane
14617 * @plane: drm plane to prepare for
14618 * @fb: framebuffer to prepare for presentation
14619 *
14620 * Prepares a framebuffer for usage on a display plane. Generally this
14621 * involves pinning the underlying object and updating the frontbuffer tracking
14622 * bits. Some older platforms need special physical address handling for
14623 * cursor planes.
14624 *
Maarten Lankhorstf9356752015-08-18 13:40:05 +020014625 * Must be called with struct_mutex held.
14626 *
Matt Roper6beb8c232014-12-01 15:40:14 -080014627 * Returns 0 on success, negative error code on failure.
14628 */
14629int
14630intel_prepare_plane_fb(struct drm_plane *plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +000014631 const struct drm_plane_state *new_state)
Matt Roper465c1202014-05-29 08:06:54 -070014632{
14633 struct drm_device *dev = plane->dev;
Maarten Lankhorst844f9112015-09-02 10:42:40 +020014634 struct drm_framebuffer *fb = new_state->fb;
Matt Roper6beb8c232014-12-01 15:40:14 -080014635 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Maarten Lankhorst1ee49392015-09-23 13:27:08 +020014636 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->state->fb);
Chris Wilsonc37efb92016-06-17 08:28:47 +010014637 struct reservation_object *resv;
Matt Roper6beb8c232014-12-01 15:40:14 -080014638 int ret = 0;
Matt Roper465c1202014-05-29 08:06:54 -070014639
Maarten Lankhorst1ee49392015-09-23 13:27:08 +020014640 if (!obj && !old_obj)
Matt Roper465c1202014-05-29 08:06:54 -070014641 return 0;
14642
Maarten Lankhorst5008e872015-08-18 13:40:05 +020014643 if (old_obj) {
14644 struct drm_crtc_state *crtc_state =
14645 drm_atomic_get_existing_crtc_state(new_state->state, plane->state->crtc);
14646
14647 /* Big Hammer, we also need to ensure that any pending
14648 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
14649 * current scanout is retired before unpinning the old
14650 * framebuffer. Note that we rely on userspace rendering
14651 * into the buffer attached to the pipe they are waiting
14652 * on. If not, userspace generates a GPU hang with IPEHR
14653 * point to the MI_WAIT_FOR_EVENT.
14654 *
14655 * This should only fail upon a hung GPU, in which case we
14656 * can safely continue.
14657 */
14658 if (needs_modeset(crtc_state))
14659 ret = i915_gem_object_wait_rendering(old_obj, true);
Chris Wilsonf4457ae2016-04-13 17:35:08 +010014660 if (ret) {
14661 /* GPU hangs should have been swallowed by the wait */
14662 WARN_ON(ret == -EIO);
Maarten Lankhorstf9356752015-08-18 13:40:05 +020014663 return ret;
Chris Wilsonf4457ae2016-04-13 17:35:08 +010014664 }
Maarten Lankhorst5008e872015-08-18 13:40:05 +020014665 }
14666
Chris Wilsonc37efb92016-06-17 08:28:47 +010014667 if (!obj)
14668 return 0;
14669
Daniel Vetter5a21b662016-05-24 17:13:53 +020014670 /* For framebuffer backed by dmabuf, wait for fence */
Chris Wilsonc37efb92016-06-17 08:28:47 +010014671 resv = i915_gem_object_get_dmabuf_resv(obj);
14672 if (resv) {
Daniel Vetter5a21b662016-05-24 17:13:53 +020014673 long lret;
14674
Chris Wilsonc37efb92016-06-17 08:28:47 +010014675 lret = reservation_object_wait_timeout_rcu(resv, false, true,
Daniel Vetter5a21b662016-05-24 17:13:53 +020014676 MAX_SCHEDULE_TIMEOUT);
14677 if (lret == -ERESTARTSYS)
14678 return lret;
14679
14680 WARN(lret < 0, "waiting returns %li\n", lret);
14681 }
14682
Chris Wilsonc37efb92016-06-17 08:28:47 +010014683 if (plane->type == DRM_PLANE_TYPE_CURSOR &&
Matt Roper6beb8c232014-12-01 15:40:14 -080014684 INTEL_INFO(dev)->cursor_needs_physical) {
14685 int align = IS_I830(dev) ? 16 * 1024 : 256;
14686 ret = i915_gem_object_attach_phys(obj, align);
14687 if (ret)
14688 DRM_DEBUG_KMS("failed to attach phys object\n");
14689 } else {
Chris Wilson058d88c2016-08-15 10:49:06 +010014690 struct i915_vma *vma;
14691
14692 vma = intel_pin_and_fence_fb_obj(fb, new_state->rotation);
14693 if (IS_ERR(vma))
14694 ret = PTR_ERR(vma);
Matt Roper6beb8c232014-12-01 15:40:14 -080014695 }
14696
Chris Wilsonc37efb92016-06-17 08:28:47 +010014697 if (ret == 0) {
Chris Wilson27c01aa2016-08-04 07:52:30 +010014698 to_intel_plane_state(new_state)->wait_req =
Chris Wilsond72d9082016-08-04 07:52:31 +010014699 i915_gem_active_get(&obj->last_write,
14700 &obj->base.dev->struct_mutex);
Maarten Lankhorst7580d772015-08-18 13:40:06 +020014701 }
Matt Roper6beb8c232014-12-01 15:40:14 -080014702
Matt Roper6beb8c232014-12-01 15:40:14 -080014703 return ret;
14704}
14705
Matt Roper38f3ce32014-12-02 07:45:25 -080014706/**
14707 * intel_cleanup_plane_fb - Cleans up an fb after plane use
14708 * @plane: drm plane to clean up for
14709 * @fb: old framebuffer that was on plane
14710 *
14711 * Cleans up a framebuffer that has just been removed from a plane.
Maarten Lankhorstf9356752015-08-18 13:40:05 +020014712 *
14713 * Must be called with struct_mutex held.
Matt Roper38f3ce32014-12-02 07:45:25 -080014714 */
14715void
14716intel_cleanup_plane_fb(struct drm_plane *plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +000014717 const struct drm_plane_state *old_state)
Matt Roper38f3ce32014-12-02 07:45:25 -080014718{
14719 struct drm_device *dev = plane->dev;
Maarten Lankhorst7580d772015-08-18 13:40:06 +020014720 struct intel_plane_state *old_intel_state;
Keith Packard84978252016-07-31 00:54:51 -070014721 struct intel_plane_state *intel_state = to_intel_plane_state(plane->state);
Maarten Lankhorst1ee49392015-09-23 13:27:08 +020014722 struct drm_i915_gem_object *old_obj = intel_fb_obj(old_state->fb);
14723 struct drm_i915_gem_object *obj = intel_fb_obj(plane->state->fb);
Matt Roper38f3ce32014-12-02 07:45:25 -080014724
Maarten Lankhorst7580d772015-08-18 13:40:06 +020014725 old_intel_state = to_intel_plane_state(old_state);
14726
Maarten Lankhorst1ee49392015-09-23 13:27:08 +020014727 if (!obj && !old_obj)
Matt Roper38f3ce32014-12-02 07:45:25 -080014728 return;
14729
Maarten Lankhorst1ee49392015-09-23 13:27:08 +020014730 if (old_obj && (plane->type != DRM_PLANE_TYPE_CURSOR ||
14731 !INTEL_INFO(dev)->cursor_needs_physical))
Ville Syrjälä3465c582016-02-15 22:54:43 +020014732 intel_unpin_fb_obj(old_state->fb, old_state->rotation);
Maarten Lankhorst1ee49392015-09-23 13:27:08 +020014733
Keith Packard84978252016-07-31 00:54:51 -070014734 i915_gem_request_assign(&intel_state->wait_req, NULL);
Maarten Lankhorst7580d772015-08-18 13:40:06 +020014735 i915_gem_request_assign(&old_intel_state->wait_req, NULL);
Matt Roper465c1202014-05-29 08:06:54 -070014736}
14737
Chandra Konduru6156a452015-04-27 13:48:39 -070014738int
14739skl_max_scale(struct intel_crtc *intel_crtc, struct intel_crtc_state *crtc_state)
14740{
14741 int max_scale;
Chandra Konduru6156a452015-04-27 13:48:39 -070014742 int crtc_clock, cdclk;
14743
Maarten Lankhorstbf8a0af2015-11-24 11:29:02 +010014744 if (!intel_crtc || !crtc_state->base.enable)
Chandra Konduru6156a452015-04-27 13:48:39 -070014745 return DRM_PLANE_HELPER_NO_SCALING;
14746
Chandra Konduru6156a452015-04-27 13:48:39 -070014747 crtc_clock = crtc_state->base.adjusted_mode.crtc_clock;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020014748 cdclk = to_intel_atomic_state(crtc_state->base.state)->cdclk;
Chandra Konduru6156a452015-04-27 13:48:39 -070014749
Tvrtko Ursulin54bf1ce2015-10-20 17:17:07 +010014750 if (WARN_ON_ONCE(!crtc_clock || cdclk < crtc_clock))
Chandra Konduru6156a452015-04-27 13:48:39 -070014751 return DRM_PLANE_HELPER_NO_SCALING;
14752
14753 /*
14754 * skl max scale is lower of:
14755 * close to 3 but not 3, -1 is for that purpose
14756 * or
14757 * cdclk/crtc_clock
14758 */
14759 max_scale = min((1 << 16) * 3 - 1, (1 << 8) * ((cdclk << 8) / crtc_clock));
14760
14761 return max_scale;
14762}
14763
Matt Roper465c1202014-05-29 08:06:54 -070014764static int
Gustavo Padovan3c692a42014-09-05 17:04:49 -030014765intel_check_primary_plane(struct drm_plane *plane,
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020014766 struct intel_crtc_state *crtc_state,
Gustavo Padovan3c692a42014-09-05 17:04:49 -030014767 struct intel_plane_state *state)
Matt Roper465c1202014-05-29 08:06:54 -070014768{
Ville Syrjäläb63a16f2016-01-28 16:53:54 +020014769 struct drm_i915_private *dev_priv = to_i915(plane->dev);
Matt Roper2b875c22014-12-01 15:40:13 -080014770 struct drm_crtc *crtc = state->base.crtc;
Chandra Konduru6156a452015-04-27 13:48:39 -070014771 int min_scale = DRM_PLANE_HELPER_NO_SCALING;
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020014772 int max_scale = DRM_PLANE_HELPER_NO_SCALING;
14773 bool can_position = false;
Ville Syrjäläb63a16f2016-01-28 16:53:54 +020014774 int ret;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030014775
Ville Syrjäläb63a16f2016-01-28 16:53:54 +020014776 if (INTEL_GEN(dev_priv) >= 9) {
Ville Syrjälä693bdc22016-01-15 20:46:53 +020014777 /* use scaler when colorkey is not required */
14778 if (state->ckey.flags == I915_SET_COLORKEY_NONE) {
14779 min_scale = 1;
14780 max_scale = skl_max_scale(to_intel_crtc(crtc), crtc_state);
14781 }
Sonika Jindald8106362015-04-10 14:37:28 +053014782 can_position = true;
Chandra Konduru6156a452015-04-27 13:48:39 -070014783 }
Sonika Jindald8106362015-04-10 14:37:28 +053014784
Daniel Vettercc926382016-08-15 10:41:47 +020014785 ret = drm_plane_helper_check_state(&state->base,
14786 &state->clip,
14787 min_scale, max_scale,
14788 can_position, true);
Ville Syrjäläb63a16f2016-01-28 16:53:54 +020014789 if (ret)
14790 return ret;
14791
Daniel Vettercc926382016-08-15 10:41:47 +020014792 if (!state->base.fb)
Ville Syrjäläb63a16f2016-01-28 16:53:54 +020014793 return 0;
14794
14795 if (INTEL_GEN(dev_priv) >= 9) {
14796 ret = skl_check_plane_surface(state);
14797 if (ret)
14798 return ret;
14799 }
14800
14801 return 0;
Matt Roper465c1202014-05-29 08:06:54 -070014802}
14803
Daniel Vetter5a21b662016-05-24 17:13:53 +020014804static void intel_begin_crtc_commit(struct drm_crtc *crtc,
14805 struct drm_crtc_state *old_crtc_state)
14806{
14807 struct drm_device *dev = crtc->dev;
Lyude62e0fb82016-08-22 12:50:08 -040014808 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter5a21b662016-05-24 17:13:53 +020014809 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
14810 struct intel_crtc_state *old_intel_state =
14811 to_intel_crtc_state(old_crtc_state);
14812 bool modeset = needs_modeset(crtc->state);
Lyude62e0fb82016-08-22 12:50:08 -040014813 enum pipe pipe = intel_crtc->pipe;
Daniel Vetter5a21b662016-05-24 17:13:53 +020014814
14815 /* Perform vblank evasion around commit operation */
14816 intel_pipe_update_start(intel_crtc);
14817
14818 if (modeset)
14819 return;
14820
14821 if (crtc->state->color_mgmt_changed || to_intel_crtc_state(crtc->state)->update_pipe) {
14822 intel_color_set_csc(crtc->state);
14823 intel_color_load_luts(crtc->state);
14824 }
14825
14826 if (to_intel_crtc_state(crtc->state)->update_pipe)
14827 intel_update_pipe_config(intel_crtc, old_intel_state);
Lyude62e0fb82016-08-22 12:50:08 -040014828 else if (INTEL_GEN(dev_priv) >= 9) {
Daniel Vetter5a21b662016-05-24 17:13:53 +020014829 skl_detach_scalers(intel_crtc);
Lyude62e0fb82016-08-22 12:50:08 -040014830
14831 I915_WRITE(PIPE_WM_LINETIME(pipe),
14832 dev_priv->wm.skl_hw.wm_linetime[pipe]);
14833 }
Daniel Vetter5a21b662016-05-24 17:13:53 +020014834}
14835
14836static void intel_finish_crtc_commit(struct drm_crtc *crtc,
14837 struct drm_crtc_state *old_crtc_state)
14838{
14839 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
14840
14841 intel_pipe_update_end(intel_crtc, NULL);
14842}
14843
Matt Ropercf4c7c12014-12-04 10:27:42 -080014844/**
Matt Roper4a3b8762014-12-23 10:41:51 -080014845 * intel_plane_destroy - destroy a plane
14846 * @plane: plane to destroy
Matt Ropercf4c7c12014-12-04 10:27:42 -080014847 *
Matt Roper4a3b8762014-12-23 10:41:51 -080014848 * Common destruction function for all types of planes (primary, cursor,
14849 * sprite).
Matt Ropercf4c7c12014-12-04 10:27:42 -080014850 */
Matt Roper4a3b8762014-12-23 10:41:51 -080014851void intel_plane_destroy(struct drm_plane *plane)
Matt Roper465c1202014-05-29 08:06:54 -070014852{
Ville Syrjälä69ae5612016-05-27 20:59:22 +030014853 if (!plane)
14854 return;
14855
Matt Roper465c1202014-05-29 08:06:54 -070014856 drm_plane_cleanup(plane);
Ville Syrjälä69ae5612016-05-27 20:59:22 +030014857 kfree(to_intel_plane(plane));
Matt Roper465c1202014-05-29 08:06:54 -070014858}
14859
Matt Roper65a3fea2015-01-21 16:35:42 -080014860const struct drm_plane_funcs intel_plane_funcs = {
Matt Roper70a101f2015-04-08 18:56:53 -070014861 .update_plane = drm_atomic_helper_update_plane,
14862 .disable_plane = drm_atomic_helper_disable_plane,
Matt Roper3d7d6512014-06-10 08:28:13 -070014863 .destroy = intel_plane_destroy,
Matt Roperc196e1d2015-01-21 16:35:48 -080014864 .set_property = drm_atomic_helper_plane_set_property,
Matt Ropera98b3432015-01-21 16:35:43 -080014865 .atomic_get_property = intel_plane_atomic_get_property,
14866 .atomic_set_property = intel_plane_atomic_set_property,
Matt Roperea2c67b2014-12-23 10:41:52 -080014867 .atomic_duplicate_state = intel_plane_duplicate_state,
14868 .atomic_destroy_state = intel_plane_destroy_state,
14869
Matt Roper465c1202014-05-29 08:06:54 -070014870};
14871
14872static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
14873 int pipe)
14874{
Ville Syrjäläfca0ce22016-03-21 14:43:22 +000014875 struct intel_plane *primary = NULL;
14876 struct intel_plane_state *state = NULL;
Matt Roper465c1202014-05-29 08:06:54 -070014877 const uint32_t *intel_primary_formats;
Thierry Reding45e37432015-08-12 16:54:28 +020014878 unsigned int num_formats;
Ville Syrjäläfca0ce22016-03-21 14:43:22 +000014879 int ret;
Matt Roper465c1202014-05-29 08:06:54 -070014880
14881 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
Ville Syrjäläfca0ce22016-03-21 14:43:22 +000014882 if (!primary)
14883 goto fail;
Matt Roper465c1202014-05-29 08:06:54 -070014884
Matt Roper8e7d6882015-01-21 16:35:41 -080014885 state = intel_create_plane_state(&primary->base);
Ville Syrjäläfca0ce22016-03-21 14:43:22 +000014886 if (!state)
14887 goto fail;
Matt Roper8e7d6882015-01-21 16:35:41 -080014888 primary->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080014889
Matt Roper465c1202014-05-29 08:06:54 -070014890 primary->can_scale = false;
14891 primary->max_downscale = 1;
Chandra Konduru6156a452015-04-27 13:48:39 -070014892 if (INTEL_INFO(dev)->gen >= 9) {
14893 primary->can_scale = true;
Chandra Konduruaf99ced2015-05-11 14:35:47 -070014894 state->scaler_id = -1;
Chandra Konduru6156a452015-04-27 13:48:39 -070014895 }
Matt Roper465c1202014-05-29 08:06:54 -070014896 primary->pipe = pipe;
14897 primary->plane = pipe;
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030014898 primary->frontbuffer_bit = INTEL_FRONTBUFFER_PRIMARY(pipe);
Matt Roperc59cb172014-12-01 15:40:16 -080014899 primary->check_plane = intel_check_primary_plane;
Matt Roper465c1202014-05-29 08:06:54 -070014900 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
14901 primary->plane = !pipe;
14902
Damien Lespiau6c0fd452015-05-19 12:29:16 +010014903 if (INTEL_INFO(dev)->gen >= 9) {
14904 intel_primary_formats = skl_primary_formats;
14905 num_formats = ARRAY_SIZE(skl_primary_formats);
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +010014906
14907 primary->update_plane = skylake_update_primary_plane;
14908 primary->disable_plane = skylake_disable_primary_plane;
14909 } else if (HAS_PCH_SPLIT(dev)) {
14910 intel_primary_formats = i965_primary_formats;
14911 num_formats = ARRAY_SIZE(i965_primary_formats);
14912
14913 primary->update_plane = ironlake_update_primary_plane;
14914 primary->disable_plane = i9xx_disable_primary_plane;
Damien Lespiau6c0fd452015-05-19 12:29:16 +010014915 } else if (INTEL_INFO(dev)->gen >= 4) {
Damien Lespiau568db4f2015-05-12 16:13:18 +010014916 intel_primary_formats = i965_primary_formats;
14917 num_formats = ARRAY_SIZE(i965_primary_formats);
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +010014918
14919 primary->update_plane = i9xx_update_primary_plane;
14920 primary->disable_plane = i9xx_disable_primary_plane;
Damien Lespiau6c0fd452015-05-19 12:29:16 +010014921 } else {
14922 intel_primary_formats = i8xx_primary_formats;
14923 num_formats = ARRAY_SIZE(i8xx_primary_formats);
Maarten Lankhorsta8d201a2016-01-07 11:54:11 +010014924
14925 primary->update_plane = i9xx_update_primary_plane;
14926 primary->disable_plane = i9xx_disable_primary_plane;
Matt Roper465c1202014-05-29 08:06:54 -070014927 }
14928
Ville Syrjälä38573dc2016-05-27 20:59:23 +030014929 if (INTEL_INFO(dev)->gen >= 9)
14930 ret = drm_universal_plane_init(dev, &primary->base, 0,
14931 &intel_plane_funcs,
14932 intel_primary_formats, num_formats,
14933 DRM_PLANE_TYPE_PRIMARY,
14934 "plane 1%c", pipe_name(pipe));
14935 else if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
14936 ret = drm_universal_plane_init(dev, &primary->base, 0,
14937 &intel_plane_funcs,
14938 intel_primary_formats, num_formats,
14939 DRM_PLANE_TYPE_PRIMARY,
14940 "primary %c", pipe_name(pipe));
14941 else
14942 ret = drm_universal_plane_init(dev, &primary->base, 0,
14943 &intel_plane_funcs,
14944 intel_primary_formats, num_formats,
14945 DRM_PLANE_TYPE_PRIMARY,
14946 "plane %c", plane_name(primary->plane));
Ville Syrjäläfca0ce22016-03-21 14:43:22 +000014947 if (ret)
14948 goto fail;
Sonika Jindal48404c12014-08-22 14:06:04 +053014949
Sonika Jindal3b7a5112015-04-10 14:37:29 +053014950 if (INTEL_INFO(dev)->gen >= 4)
14951 intel_create_rotation_property(dev, primary);
Sonika Jindal48404c12014-08-22 14:06:04 +053014952
Matt Roperea2c67b2014-12-23 10:41:52 -080014953 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
14954
Matt Roper465c1202014-05-29 08:06:54 -070014955 return &primary->base;
Ville Syrjäläfca0ce22016-03-21 14:43:22 +000014956
14957fail:
14958 kfree(state);
14959 kfree(primary);
14960
14961 return NULL;
Matt Roper465c1202014-05-29 08:06:54 -070014962}
14963
Sonika Jindal3b7a5112015-04-10 14:37:29 +053014964void intel_create_rotation_property(struct drm_device *dev, struct intel_plane *plane)
14965{
14966 if (!dev->mode_config.rotation_property) {
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +030014967 unsigned long flags = DRM_ROTATE_0 |
14968 DRM_ROTATE_180;
Sonika Jindal3b7a5112015-04-10 14:37:29 +053014969
14970 if (INTEL_INFO(dev)->gen >= 9)
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +030014971 flags |= DRM_ROTATE_90 | DRM_ROTATE_270;
Sonika Jindal3b7a5112015-04-10 14:37:29 +053014972
14973 dev->mode_config.rotation_property =
14974 drm_mode_create_rotation_property(dev, flags);
14975 }
14976 if (dev->mode_config.rotation_property)
14977 drm_object_attach_property(&plane->base.base,
14978 dev->mode_config.rotation_property,
14979 plane->base.state->rotation);
14980}
14981
Matt Roper3d7d6512014-06-10 08:28:13 -070014982static int
Gustavo Padovan852e7872014-09-05 17:22:31 -030014983intel_check_cursor_plane(struct drm_plane *plane,
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020014984 struct intel_crtc_state *crtc_state,
Gustavo Padovan852e7872014-09-05 17:22:31 -030014985 struct intel_plane_state *state)
Matt Roper3d7d6512014-06-10 08:28:13 -070014986{
Matt Roper2b875c22014-12-01 15:40:13 -080014987 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014988 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Ville Syrjäläb29ec922015-12-18 19:24:39 +020014989 enum pipe pipe = to_intel_plane(plane)->pipe;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014990 unsigned stride;
14991 int ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030014992
Ville Syrjäläf8856a42016-07-26 19:07:00 +030014993 ret = drm_plane_helper_check_state(&state->base,
14994 &state->clip,
14995 DRM_PLANE_HELPER_NO_SCALING,
14996 DRM_PLANE_HELPER_NO_SCALING,
14997 true, true);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014998 if (ret)
14999 return ret;
15000
Gustavo Padovan757f9a32014-09-24 14:20:24 -030015001 /* if we want to turn off the cursor ignore width and height */
15002 if (!obj)
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020015003 return 0;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030015004
Gustavo Padovan757f9a32014-09-24 14:20:24 -030015005 /* Check for which cursor types we support */
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020015006 if (!cursor_size_ok(plane->dev, state->base.crtc_w, state->base.crtc_h)) {
Matt Roperea2c67b2014-12-23 10:41:52 -080015007 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
15008 state->base.crtc_w, state->base.crtc_h);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030015009 return -EINVAL;
15010 }
15011
Matt Roperea2c67b2014-12-23 10:41:52 -080015012 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
15013 if (obj->base.size < stride * state->base.crtc_h) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030015014 DRM_DEBUG_KMS("buffer is too small\n");
15015 return -ENOMEM;
15016 }
15017
Ville Syrjälä3a656b52015-03-09 21:08:37 +020015018 if (fb->modifier[0] != DRM_FORMAT_MOD_NONE) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030015019 DRM_DEBUG_KMS("cursor cannot be tiled\n");
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020015020 return -EINVAL;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030015021 }
Gustavo Padovan757f9a32014-09-24 14:20:24 -030015022
Ville Syrjäläb29ec922015-12-18 19:24:39 +020015023 /*
15024 * There's something wrong with the cursor on CHV pipe C.
15025 * If it straddles the left edge of the screen then
15026 * moving it away from the edge or disabling it often
15027 * results in a pipe underrun, and often that can lead to
15028 * dead pipe (constant underrun reported, and it scans
15029 * out just a solid color). To recover from that, the
15030 * display power well must be turned off and on again.
15031 * Refuse the put the cursor into that compromised position.
15032 */
15033 if (IS_CHERRYVIEW(plane->dev) && pipe == PIPE_C &&
Ville Syrjälä936e71e2016-07-26 19:06:59 +030015034 state->base.visible && state->base.crtc_x < 0) {
Ville Syrjäläb29ec922015-12-18 19:24:39 +020015035 DRM_DEBUG_KMS("CHV cursor C not allowed to straddle the left screen edge\n");
15036 return -EINVAL;
15037 }
15038
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020015039 return 0;
Gustavo Padovan852e7872014-09-05 17:22:31 -030015040}
15041
Matt Roperf4a2cf22014-12-01 15:40:12 -080015042static void
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030015043intel_disable_cursor_plane(struct drm_plane *plane,
Maarten Lankhorst7fabf5e2015-06-15 12:33:47 +020015044 struct drm_crtc *crtc)
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030015045{
Maarten Lankhorstf2858022016-01-07 11:54:09 +010015046 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
15047
15048 intel_crtc->cursor_addr = 0;
Maarten Lankhorst55a08b3f2016-01-07 11:54:10 +010015049 intel_crtc_update_cursor(crtc, NULL);
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030015050}
15051
15052static void
Maarten Lankhorst55a08b3f2016-01-07 11:54:10 +010015053intel_update_cursor_plane(struct drm_plane *plane,
15054 const struct intel_crtc_state *crtc_state,
15055 const struct intel_plane_state *state)
Gustavo Padovan852e7872014-09-05 17:22:31 -030015056{
Maarten Lankhorst55a08b3f2016-01-07 11:54:10 +010015057 struct drm_crtc *crtc = crtc_state->base.crtc;
15058 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roperea2c67b2014-12-23 10:41:52 -080015059 struct drm_device *dev = plane->dev;
Matt Roper2b875c22014-12-01 15:40:13 -080015060 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
Gustavo Padovana912f122014-12-01 15:40:10 -080015061 uint32_t addr;
Matt Roper3d7d6512014-06-10 08:28:13 -070015062
Matt Roperf4a2cf22014-12-01 15:40:12 -080015063 if (!obj)
Gustavo Padovana912f122014-12-01 15:40:10 -080015064 addr = 0;
Matt Roperf4a2cf22014-12-01 15:40:12 -080015065 else if (!INTEL_INFO(dev)->cursor_needs_physical)
Chris Wilson058d88c2016-08-15 10:49:06 +010015066 addr = i915_gem_object_ggtt_offset(obj, NULL);
Matt Roperf4a2cf22014-12-01 15:40:12 -080015067 else
Gustavo Padovana912f122014-12-01 15:40:10 -080015068 addr = obj->phys_handle->busaddr;
Gustavo Padovana912f122014-12-01 15:40:10 -080015069
Gustavo Padovana912f122014-12-01 15:40:10 -080015070 intel_crtc->cursor_addr = addr;
Maarten Lankhorst55a08b3f2016-01-07 11:54:10 +010015071 intel_crtc_update_cursor(crtc, state);
Matt Roper3d7d6512014-06-10 08:28:13 -070015072}
Gustavo Padovan852e7872014-09-05 17:22:31 -030015073
Matt Roper3d7d6512014-06-10 08:28:13 -070015074static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
15075 int pipe)
15076{
Ville Syrjäläfca0ce22016-03-21 14:43:22 +000015077 struct intel_plane *cursor = NULL;
15078 struct intel_plane_state *state = NULL;
15079 int ret;
Matt Roper3d7d6512014-06-10 08:28:13 -070015080
15081 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
Ville Syrjäläfca0ce22016-03-21 14:43:22 +000015082 if (!cursor)
15083 goto fail;
Matt Roper3d7d6512014-06-10 08:28:13 -070015084
Matt Roper8e7d6882015-01-21 16:35:41 -080015085 state = intel_create_plane_state(&cursor->base);
Ville Syrjäläfca0ce22016-03-21 14:43:22 +000015086 if (!state)
15087 goto fail;
Matt Roper8e7d6882015-01-21 16:35:41 -080015088 cursor->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080015089
Matt Roper3d7d6512014-06-10 08:28:13 -070015090 cursor->can_scale = false;
15091 cursor->max_downscale = 1;
15092 cursor->pipe = pipe;
15093 cursor->plane = pipe;
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030015094 cursor->frontbuffer_bit = INTEL_FRONTBUFFER_CURSOR(pipe);
Matt Roperc59cb172014-12-01 15:40:16 -080015095 cursor->check_plane = intel_check_cursor_plane;
Maarten Lankhorst55a08b3f2016-01-07 11:54:10 +010015096 cursor->update_plane = intel_update_cursor_plane;
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030015097 cursor->disable_plane = intel_disable_cursor_plane;
Matt Roper3d7d6512014-06-10 08:28:13 -070015098
Ville Syrjäläfca0ce22016-03-21 14:43:22 +000015099 ret = drm_universal_plane_init(dev, &cursor->base, 0,
15100 &intel_plane_funcs,
15101 intel_cursor_formats,
15102 ARRAY_SIZE(intel_cursor_formats),
Ville Syrjälä38573dc2016-05-27 20:59:23 +030015103 DRM_PLANE_TYPE_CURSOR,
15104 "cursor %c", pipe_name(pipe));
Ville Syrjäläfca0ce22016-03-21 14:43:22 +000015105 if (ret)
15106 goto fail;
Ville Syrjälä4398ad42014-10-23 07:41:34 -070015107
15108 if (INTEL_INFO(dev)->gen >= 4) {
15109 if (!dev->mode_config.rotation_property)
15110 dev->mode_config.rotation_property =
15111 drm_mode_create_rotation_property(dev,
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +030015112 DRM_ROTATE_0 |
15113 DRM_ROTATE_180);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070015114 if (dev->mode_config.rotation_property)
15115 drm_object_attach_property(&cursor->base.base,
15116 dev->mode_config.rotation_property,
Matt Roper8e7d6882015-01-21 16:35:41 -080015117 state->base.rotation);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070015118 }
15119
Chandra Konduruaf99ced2015-05-11 14:35:47 -070015120 if (INTEL_INFO(dev)->gen >=9)
15121 state->scaler_id = -1;
15122
Matt Roperea2c67b2014-12-23 10:41:52 -080015123 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
15124
Matt Roper3d7d6512014-06-10 08:28:13 -070015125 return &cursor->base;
Ville Syrjäläfca0ce22016-03-21 14:43:22 +000015126
15127fail:
15128 kfree(state);
15129 kfree(cursor);
15130
15131 return NULL;
Matt Roper3d7d6512014-06-10 08:28:13 -070015132}
15133
Chandra Konduru549e2bf2015-04-07 15:28:38 -070015134static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
15135 struct intel_crtc_state *crtc_state)
15136{
15137 int i;
15138 struct intel_scaler *intel_scaler;
15139 struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state;
15140
15141 for (i = 0; i < intel_crtc->num_scalers; i++) {
15142 intel_scaler = &scaler_state->scalers[i];
15143 intel_scaler->in_use = 0;
Chandra Konduru549e2bf2015-04-07 15:28:38 -070015144 intel_scaler->mode = PS_SCALER_MODE_DYN;
15145 }
15146
15147 scaler_state->scaler_id = -1;
15148}
15149
Hannes Ederb358d0a2008-12-18 21:18:47 +010015150static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -080015151{
Chris Wilsonfac5e232016-07-04 11:34:36 +010015152 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080015153 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020015154 struct intel_crtc_state *crtc_state = NULL;
Matt Roper3d7d6512014-06-10 08:28:13 -070015155 struct drm_plane *primary = NULL;
15156 struct drm_plane *cursor = NULL;
Lionel Landwerlin8563b1e2016-03-16 10:57:14 +000015157 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080015158
Daniel Vetter955382f2013-09-19 14:05:45 +020015159 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -080015160 if (intel_crtc == NULL)
15161 return;
15162
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020015163 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
15164 if (!crtc_state)
15165 goto fail;
Ander Conselvan de Oliveira550acef2015-04-21 17:13:24 +030015166 intel_crtc->config = crtc_state;
15167 intel_crtc->base.state = &crtc_state->base;
Matt Roper07878242015-02-25 11:43:26 -080015168 crtc_state->base.crtc = &intel_crtc->base;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020015169
Chandra Konduru549e2bf2015-04-07 15:28:38 -070015170 /* initialize shared scalers */
15171 if (INTEL_INFO(dev)->gen >= 9) {
15172 if (pipe == PIPE_C)
15173 intel_crtc->num_scalers = 1;
15174 else
15175 intel_crtc->num_scalers = SKL_NUM_SCALERS;
15176
15177 skl_init_scalers(dev, intel_crtc, crtc_state);
15178 }
15179
Matt Roper465c1202014-05-29 08:06:54 -070015180 primary = intel_primary_plane_create(dev, pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070015181 if (!primary)
15182 goto fail;
15183
15184 cursor = intel_cursor_plane_create(dev, pipe);
15185 if (!cursor)
15186 goto fail;
15187
Matt Roper465c1202014-05-29 08:06:54 -070015188 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
Ville Syrjälä4d5d72b72016-05-27 20:59:21 +030015189 cursor, &intel_crtc_funcs,
15190 "pipe %c", pipe_name(pipe));
Matt Roper3d7d6512014-06-10 08:28:13 -070015191 if (ret)
15192 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080015193
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020015194 /*
15195 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
Daniel Vetter8c0f92e2014-06-16 02:08:26 +020015196 * is hooked to pipe B. Hence we want plane A feeding pipe B.
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020015197 */
Jesse Barnes80824002009-09-10 15:28:06 -070015198 intel_crtc->pipe = pipe;
15199 intel_crtc->plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +010015200 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
Zhao Yakui28c97732009-10-09 11:39:41 +080015201 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +010015202 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -070015203 }
15204
Chris Wilson4b0e3332014-05-30 16:35:26 +030015205 intel_crtc->cursor_base = ~0;
15206 intel_crtc->cursor_cntl = ~0;
Ville Syrjälädc41c152014-08-13 11:57:05 +030015207 intel_crtc->cursor_size = ~0;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030015208
Ville Syrjälä852eb002015-06-24 22:00:07 +030015209 intel_crtc->wm.cxsr_allowed = true;
15210
Jesse Barnes22fd0fa2009-12-02 13:42:53 -080015211 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
15212 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
15213 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
15214 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
15215
Jesse Barnes79e53942008-11-07 14:24:08 -080015216 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Daniel Vetter87b6b102014-05-15 15:33:46 +020015217
Lionel Landwerlin8563b1e2016-03-16 10:57:14 +000015218 intel_color_init(&intel_crtc->base);
15219
Daniel Vetter87b6b102014-05-15 15:33:46 +020015220 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070015221 return;
15222
15223fail:
Ville Syrjälä69ae5612016-05-27 20:59:22 +030015224 intel_plane_destroy(primary);
15225 intel_plane_destroy(cursor);
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020015226 kfree(crtc_state);
Matt Roper3d7d6512014-06-10 08:28:13 -070015227 kfree(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -080015228}
15229
Jesse Barnes752aa882013-10-31 18:55:49 +020015230enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
15231{
15232 struct drm_encoder *encoder = connector->base.encoder;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020015233 struct drm_device *dev = connector->base.dev;
Jesse Barnes752aa882013-10-31 18:55:49 +020015234
Rob Clark51fd3712013-11-19 12:10:12 -050015235 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Jesse Barnes752aa882013-10-31 18:55:49 +020015236
Ville Syrjäläd3babd32014-11-07 11:16:01 +020015237 if (!encoder || WARN_ON(!encoder->crtc))
Jesse Barnes752aa882013-10-31 18:55:49 +020015238 return INVALID_PIPE;
15239
15240 return to_intel_crtc(encoder->crtc)->pipe;
15241}
15242
Carl Worth08d7b3d2009-04-29 14:43:54 -070015243int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +000015244 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -070015245{
Carl Worth08d7b3d2009-04-29 14:43:54 -070015246 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Rob Clark7707e652014-07-17 23:30:04 -040015247 struct drm_crtc *drmmode_crtc;
Daniel Vetterc05422d2009-08-11 16:05:30 +020015248 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -070015249
Rob Clark7707e652014-07-17 23:30:04 -040015250 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
Chris Wilson71240ed2016-06-24 14:00:24 +010015251 if (!drmmode_crtc)
Ville Syrjälä3f2c2052013-10-17 13:35:03 +030015252 return -ENOENT;
Carl Worth08d7b3d2009-04-29 14:43:54 -070015253
Rob Clark7707e652014-07-17 23:30:04 -040015254 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetterc05422d2009-08-11 16:05:30 +020015255 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -070015256
Daniel Vetterc05422d2009-08-11 16:05:30 +020015257 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -070015258}
15259
Daniel Vetter66a92782012-07-12 20:08:18 +020015260static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080015261{
Daniel Vetter66a92782012-07-12 20:08:18 +020015262 struct drm_device *dev = encoder->base.dev;
15263 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080015264 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080015265 int entry = 0;
15266
Damien Lespiaub2784e12014-08-05 11:29:37 +010015267 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020015268 if (encoders_cloneable(encoder, source_encoder))
Daniel Vetter66a92782012-07-12 20:08:18 +020015269 index_mask |= (1 << entry);
15270
Jesse Barnes79e53942008-11-07 14:24:08 -080015271 entry++;
15272 }
Chris Wilson4ef69c72010-09-09 15:14:28 +010015273
Jesse Barnes79e53942008-11-07 14:24:08 -080015274 return index_mask;
15275}
15276
Chris Wilson4d302442010-12-14 19:21:29 +000015277static bool has_edp_a(struct drm_device *dev)
15278{
Chris Wilsonfac5e232016-07-04 11:34:36 +010015279 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson4d302442010-12-14 19:21:29 +000015280
15281 if (!IS_MOBILE(dev))
15282 return false;
15283
15284 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
15285 return false;
15286
Damien Lespiaue3589902014-02-07 19:12:50 +000015287 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
Chris Wilson4d302442010-12-14 19:21:29 +000015288 return false;
15289
15290 return true;
15291}
15292
Jesse Barnes84b4e042014-06-25 08:24:29 -070015293static bool intel_crt_present(struct drm_device *dev)
15294{
Chris Wilsonfac5e232016-07-04 11:34:36 +010015295 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes84b4e042014-06-25 08:24:29 -070015296
Damien Lespiau884497e2013-12-03 13:56:23 +000015297 if (INTEL_INFO(dev)->gen >= 9)
15298 return false;
15299
Damien Lespiaucf404ce2014-10-01 20:04:15 +010015300 if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
Jesse Barnes84b4e042014-06-25 08:24:29 -070015301 return false;
15302
15303 if (IS_CHERRYVIEW(dev))
15304 return false;
15305
Ville Syrjälä65e472e2015-12-01 23:28:55 +020015306 if (HAS_PCH_LPT_H(dev) && I915_READ(SFUSE_STRAP) & SFUSE_STRAP_CRT_DISABLED)
15307 return false;
15308
Ville Syrjälä70ac54d2015-12-01 23:29:56 +020015309 /* DDI E can't be used if DDI A requires 4 lanes */
15310 if (HAS_DDI(dev) && I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_A_4_LANES)
15311 return false;
15312
Ville Syrjäläe4abb732015-12-01 23:31:33 +020015313 if (!dev_priv->vbt.int_crt_support)
Jesse Barnes84b4e042014-06-25 08:24:29 -070015314 return false;
15315
15316 return true;
15317}
15318
Imre Deak8090ba82016-08-10 14:07:33 +030015319void intel_pps_unlock_regs_wa(struct drm_i915_private *dev_priv)
15320{
15321 int pps_num;
15322 int pps_idx;
15323
15324 if (HAS_DDI(dev_priv))
15325 return;
15326 /*
15327 * This w/a is needed at least on CPT/PPT, but to be sure apply it
15328 * everywhere where registers can be write protected.
15329 */
15330 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
15331 pps_num = 2;
15332 else
15333 pps_num = 1;
15334
15335 for (pps_idx = 0; pps_idx < pps_num; pps_idx++) {
15336 u32 val = I915_READ(PP_CONTROL(pps_idx));
15337
15338 val = (val & ~PANEL_UNLOCK_MASK) | PANEL_UNLOCK_REGS;
15339 I915_WRITE(PP_CONTROL(pps_idx), val);
15340 }
15341}
15342
Imre Deak44cb7342016-08-10 14:07:29 +030015343static void intel_pps_init(struct drm_i915_private *dev_priv)
15344{
15345 if (HAS_PCH_SPLIT(dev_priv) || IS_BROXTON(dev_priv))
15346 dev_priv->pps_mmio_base = PCH_PPS_BASE;
15347 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
15348 dev_priv->pps_mmio_base = VLV_PPS_BASE;
15349 else
15350 dev_priv->pps_mmio_base = PPS_BASE;
Imre Deak8090ba82016-08-10 14:07:33 +030015351
15352 intel_pps_unlock_regs_wa(dev_priv);
Imre Deak44cb7342016-08-10 14:07:29 +030015353}
15354
Jesse Barnes79e53942008-11-07 14:24:08 -080015355static void intel_setup_outputs(struct drm_device *dev)
15356{
Chris Wilsonfac5e232016-07-04 11:34:36 +010015357 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson4ef69c72010-09-09 15:14:28 +010015358 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -040015359 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -080015360
Imre Deak44cb7342016-08-10 14:07:29 +030015361 intel_pps_init(dev_priv);
15362
Imre Deak97a824e12016-06-21 11:51:47 +030015363 /*
15364 * intel_edp_init_connector() depends on this completing first, to
15365 * prevent the registeration of both eDP and LVDS and the incorrect
15366 * sharing of the PPS.
15367 */
Daniel Vetterc9093352013-06-06 22:22:47 +020015368 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080015369
Jesse Barnes84b4e042014-06-25 08:24:29 -070015370 if (intel_crt_present(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -020015371 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040015372
Vandana Kannanc776eb22014-08-19 12:05:01 +053015373 if (IS_BROXTON(dev)) {
15374 /*
15375 * FIXME: Broxton doesn't support port detection via the
15376 * DDI_BUF_CTL_A or SFUSE_STRAP registers, find another way to
15377 * detect the ports.
15378 */
15379 intel_ddi_init(dev, PORT_A);
15380 intel_ddi_init(dev, PORT_B);
15381 intel_ddi_init(dev, PORT_C);
Shashank Sharmac6c794a2016-03-22 12:01:50 +020015382
15383 intel_dsi_init(dev);
Vandana Kannanc776eb22014-08-19 12:05:01 +053015384 } else if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030015385 int found;
15386
Jesse Barnesde31fac2015-03-06 15:53:32 -080015387 /*
15388 * Haswell uses DDI functions to detect digital outputs.
15389 * On SKL pre-D0 the strap isn't connected, so we assume
15390 * it's there.
15391 */
Ville Syrjälä77179402015-09-18 20:03:35 +030015392 found = I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_INIT_DISPLAY_DETECTED;
Jesse Barnesde31fac2015-03-06 15:53:32 -080015393 /* WaIgnoreDDIAStrap: skl */
Rodrigo Vivief11bdb2015-10-28 04:16:45 -070015394 if (found || IS_SKYLAKE(dev) || IS_KABYLAKE(dev))
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030015395 intel_ddi_init(dev, PORT_A);
15396
15397 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
15398 * register */
15399 found = I915_READ(SFUSE_STRAP);
15400
15401 if (found & SFUSE_STRAP_DDIB_DETECTED)
15402 intel_ddi_init(dev, PORT_B);
15403 if (found & SFUSE_STRAP_DDIC_DETECTED)
15404 intel_ddi_init(dev, PORT_C);
15405 if (found & SFUSE_STRAP_DDID_DETECTED)
15406 intel_ddi_init(dev, PORT_D);
Rodrigo Vivi2800e4c2015-08-07 17:35:21 -070015407 /*
15408 * On SKL we don't have a way to detect DDI-E so we rely on VBT.
15409 */
Rodrigo Vivief11bdb2015-10-28 04:16:45 -070015410 if ((IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) &&
Rodrigo Vivi2800e4c2015-08-07 17:35:21 -070015411 (dev_priv->vbt.ddi_port_info[PORT_E].supports_dp ||
15412 dev_priv->vbt.ddi_port_info[PORT_E].supports_dvi ||
15413 dev_priv->vbt.ddi_port_info[PORT_E].supports_hdmi))
15414 intel_ddi_init(dev, PORT_E);
15415
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030015416 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -040015417 int found;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020015418 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
Daniel Vetter270b3042012-10-27 15:52:05 +020015419
15420 if (has_edp_a(dev))
15421 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040015422
Paulo Zanonidc0fa712013-02-19 16:21:46 -030015423 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +080015424 /* PCH SDVOB multiplex with HDMIB */
Ville Syrjälä2a5c0832015-11-06 21:29:59 +020015425 found = intel_sdvo_init(dev, PCH_SDVOB, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080015426 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -030015427 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080015428 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030015429 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080015430 }
15431
Paulo Zanonidc0fa712013-02-19 16:21:46 -030015432 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030015433 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080015434
Paulo Zanonidc0fa712013-02-19 16:21:46 -030015435 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030015436 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080015437
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080015438 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030015439 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080015440
Daniel Vetter270b3042012-10-27 15:52:05 +020015441 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030015442 intel_dp_init(dev, PCH_DP_D, PORT_D);
Wayne Boyer666a4532015-12-09 12:29:35 -080015443 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Ville Syrjälä22f350422016-06-03 12:17:43 +030015444 bool has_edp, has_port;
Chris Wilson457c52d2016-06-01 08:27:50 +010015445
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030015446 /*
15447 * The DP_DETECTED bit is the latched state of the DDC
15448 * SDA pin at boot. However since eDP doesn't require DDC
15449 * (no way to plug in a DP->HDMI dongle) the DDC pins for
15450 * eDP ports may have been muxed to an alternate function.
15451 * Thus we can't rely on the DP_DETECTED bit alone to detect
15452 * eDP ports. Consult the VBT as well as DP_DETECTED to
15453 * detect eDP ports.
Ville Syrjälä22f350422016-06-03 12:17:43 +030015454 *
15455 * Sadly the straps seem to be missing sometimes even for HDMI
15456 * ports (eg. on Voyo V3 - CHT x7-Z8700), so check both strap
15457 * and VBT for the presence of the port. Additionally we can't
15458 * trust the port type the VBT declares as we've seen at least
15459 * HDMI ports that the VBT claim are DP or eDP.
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030015460 */
Chris Wilson457c52d2016-06-01 08:27:50 +010015461 has_edp = intel_dp_is_edp(dev, PORT_B);
Ville Syrjälä22f350422016-06-03 12:17:43 +030015462 has_port = intel_bios_is_port_present(dev_priv, PORT_B);
15463 if (I915_READ(VLV_DP_B) & DP_DETECTED || has_port)
Chris Wilson457c52d2016-06-01 08:27:50 +010015464 has_edp &= intel_dp_init(dev, VLV_DP_B, PORT_B);
Ville Syrjälä22f350422016-06-03 12:17:43 +030015465 if ((I915_READ(VLV_HDMIB) & SDVO_DETECTED || has_port) && !has_edp)
Ville Syrjäläe66eb812015-09-18 20:03:34 +030015466 intel_hdmi_init(dev, VLV_HDMIB, PORT_B);
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030015467
Chris Wilson457c52d2016-06-01 08:27:50 +010015468 has_edp = intel_dp_is_edp(dev, PORT_C);
Ville Syrjälä22f350422016-06-03 12:17:43 +030015469 has_port = intel_bios_is_port_present(dev_priv, PORT_C);
15470 if (I915_READ(VLV_DP_C) & DP_DETECTED || has_port)
Chris Wilson457c52d2016-06-01 08:27:50 +010015471 has_edp &= intel_dp_init(dev, VLV_DP_C, PORT_C);
Ville Syrjälä22f350422016-06-03 12:17:43 +030015472 if ((I915_READ(VLV_HDMIC) & SDVO_DETECTED || has_port) && !has_edp)
Ville Syrjäläe66eb812015-09-18 20:03:34 +030015473 intel_hdmi_init(dev, VLV_HDMIC, PORT_C);
Gajanan Bhat19c03922012-09-27 19:13:07 +053015474
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030015475 if (IS_CHERRYVIEW(dev)) {
Ville Syrjälä22f350422016-06-03 12:17:43 +030015476 /*
15477 * eDP not supported on port D,
15478 * so no need to worry about it
15479 */
15480 has_port = intel_bios_is_port_present(dev_priv, PORT_D);
15481 if (I915_READ(CHV_DP_D) & DP_DETECTED || has_port)
Ville Syrjäläe66eb812015-09-18 20:03:34 +030015482 intel_dp_init(dev, CHV_DP_D, PORT_D);
Ville Syrjälä22f350422016-06-03 12:17:43 +030015483 if (I915_READ(CHV_HDMID) & SDVO_DETECTED || has_port)
15484 intel_hdmi_init(dev, CHV_HDMID, PORT_D);
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030015485 }
15486
Jani Nikula3cfca972013-08-27 15:12:26 +030015487 intel_dsi_init(dev);
Daniel Vetter09da55d2015-07-07 11:44:32 +020015488 } else if (!IS_GEN2(dev) && !IS_PINEVIEW(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +080015489 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -080015490
Paulo Zanonie2debe92013-02-18 19:00:27 -030015491 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080015492 DRM_DEBUG_KMS("probing SDVOB\n");
Ville Syrjälä2a5c0832015-11-06 21:29:59 +020015493 found = intel_sdvo_init(dev, GEN3_SDVOB, PORT_B);
Daniel Vetter3fec3d22015-07-07 09:10:07 +020015494 if (!found && IS_G4X(dev)) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080015495 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030015496 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080015497 }
Ma Ling27185ae2009-08-24 13:50:23 +080015498
Daniel Vetter3fec3d22015-07-07 09:10:07 +020015499 if (!found && IS_G4X(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030015500 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -080015501 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -040015502
15503 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -040015504
Paulo Zanonie2debe92013-02-18 19:00:27 -030015505 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080015506 DRM_DEBUG_KMS("probing SDVOC\n");
Ville Syrjälä2a5c0832015-11-06 21:29:59 +020015507 found = intel_sdvo_init(dev, GEN3_SDVOC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080015508 }
Ma Ling27185ae2009-08-24 13:50:23 +080015509
Paulo Zanonie2debe92013-02-18 19:00:27 -030015510 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +080015511
Daniel Vetter3fec3d22015-07-07 09:10:07 +020015512 if (IS_G4X(dev)) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080015513 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030015514 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080015515 }
Daniel Vetter3fec3d22015-07-07 09:10:07 +020015516 if (IS_G4X(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030015517 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -080015518 }
Ma Ling27185ae2009-08-24 13:50:23 +080015519
Daniel Vetter3fec3d22015-07-07 09:10:07 +020015520 if (IS_G4X(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +030015521 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030015522 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -070015523 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080015524 intel_dvo_init(dev);
15525
Zhenyu Wang103a1962009-11-27 11:44:36 +080015526 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080015527 intel_tv_init(dev);
15528
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -080015529 intel_psr_init(dev);
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -070015530
Damien Lespiaub2784e12014-08-05 11:29:37 +010015531 for_each_intel_encoder(dev, encoder) {
Chris Wilson4ef69c72010-09-09 15:14:28 +010015532 encoder->base.possible_crtcs = encoder->crtc_mask;
15533 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +020015534 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -080015535 }
Chris Wilson47356eb2011-01-11 17:06:04 +000015536
Paulo Zanonidde86e22012-12-01 12:04:25 -020015537 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +020015538
15539 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080015540}
15541
15542static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
15543{
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030015544 struct drm_device *dev = fb->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -080015545 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -080015546
Daniel Vetteref2d6332014-02-10 18:00:38 +010015547 drm_framebuffer_cleanup(fb);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030015548 mutex_lock(&dev->struct_mutex);
Daniel Vetteref2d6332014-02-10 18:00:38 +010015549 WARN_ON(!intel_fb->obj->framebuffer_references--);
Chris Wilsonf8c417c2016-07-20 13:31:53 +010015550 i915_gem_object_put(intel_fb->obj);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030015551 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080015552 kfree(intel_fb);
15553}
15554
15555static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +000015556 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -080015557 unsigned int *handle)
15558{
15559 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +000015560 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080015561
Chris Wilsoncc917ab2015-10-13 14:22:26 +010015562 if (obj->userptr.mm) {
15563 DRM_DEBUG("attempting to use a userptr for a framebuffer, denied\n");
15564 return -EINVAL;
15565 }
15566
Chris Wilson05394f32010-11-08 19:18:58 +000015567 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -080015568}
15569
Rodrigo Vivi86c98582015-07-08 16:22:45 -070015570static int intel_user_framebuffer_dirty(struct drm_framebuffer *fb,
15571 struct drm_file *file,
15572 unsigned flags, unsigned color,
15573 struct drm_clip_rect *clips,
15574 unsigned num_clips)
15575{
15576 struct drm_device *dev = fb->dev;
15577 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
15578 struct drm_i915_gem_object *obj = intel_fb->obj;
15579
15580 mutex_lock(&dev->struct_mutex);
Paulo Zanoni74b4ea12015-07-14 16:29:14 -030015581 intel_fb_obj_flush(obj, false, ORIGIN_DIRTYFB);
Rodrigo Vivi86c98582015-07-08 16:22:45 -070015582 mutex_unlock(&dev->struct_mutex);
15583
15584 return 0;
15585}
15586
Jesse Barnes79e53942008-11-07 14:24:08 -080015587static const struct drm_framebuffer_funcs intel_fb_funcs = {
15588 .destroy = intel_user_framebuffer_destroy,
15589 .create_handle = intel_user_framebuffer_create_handle,
Rodrigo Vivi86c98582015-07-08 16:22:45 -070015590 .dirty = intel_user_framebuffer_dirty,
Jesse Barnes79e53942008-11-07 14:24:08 -080015591};
15592
Damien Lespiaub3218032015-02-27 11:15:18 +000015593static
15594u32 intel_fb_pitch_limit(struct drm_device *dev, uint64_t fb_modifier,
15595 uint32_t pixel_format)
15596{
15597 u32 gen = INTEL_INFO(dev)->gen;
15598
15599 if (gen >= 9) {
Ville Syrjäläac484962016-01-20 21:05:26 +020015600 int cpp = drm_format_plane_cpp(pixel_format, 0);
15601
Damien Lespiaub3218032015-02-27 11:15:18 +000015602 /* "The stride in bytes must not exceed the of the size of 8K
15603 * pixels and 32K bytes."
15604 */
Ville Syrjäläac484962016-01-20 21:05:26 +020015605 return min(8192 * cpp, 32768);
Wayne Boyer666a4532015-12-09 12:29:35 -080015606 } else if (gen >= 5 && !IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
Damien Lespiaub3218032015-02-27 11:15:18 +000015607 return 32*1024;
15608 } else if (gen >= 4) {
15609 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
15610 return 16*1024;
15611 else
15612 return 32*1024;
15613 } else if (gen >= 3) {
15614 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
15615 return 8*1024;
15616 else
15617 return 16*1024;
15618 } else {
15619 /* XXX DSPC is limited to 4k tiled */
15620 return 8*1024;
15621 }
15622}
15623
Daniel Vetterb5ea6422014-03-02 21:18:00 +010015624static int intel_framebuffer_init(struct drm_device *dev,
15625 struct intel_framebuffer *intel_fb,
15626 struct drm_mode_fb_cmd2 *mode_cmd,
15627 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -080015628{
Ville Syrjälä7b49f942016-01-12 21:08:32 +020015629 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläc2ff7372016-02-11 19:16:37 +020015630 unsigned int tiling = i915_gem_object_get_tiling(obj);
Jesse Barnes79e53942008-11-07 14:24:08 -080015631 int ret;
Damien Lespiaub3218032015-02-27 11:15:18 +000015632 u32 pitch_limit, stride_alignment;
Jesse Barnes79e53942008-11-07 14:24:08 -080015633
Daniel Vetterdd4916c2013-10-09 21:23:51 +020015634 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
15635
Daniel Vetter2a80ead2015-02-10 17:16:06 +000015636 if (mode_cmd->flags & DRM_MODE_FB_MODIFIERS) {
Ville Syrjäläc2ff7372016-02-11 19:16:37 +020015637 /*
15638 * If there's a fence, enforce that
15639 * the fb modifier and tiling mode match.
15640 */
15641 if (tiling != I915_TILING_NONE &&
15642 tiling != intel_fb_modifier_to_tiling(mode_cmd->modifier[0])) {
Daniel Vetter2a80ead2015-02-10 17:16:06 +000015643 DRM_DEBUG("tiling_mode doesn't match fb modifier\n");
15644 return -EINVAL;
15645 }
15646 } else {
Ville Syrjäläc2ff7372016-02-11 19:16:37 +020015647 if (tiling == I915_TILING_X) {
Daniel Vetter2a80ead2015-02-10 17:16:06 +000015648 mode_cmd->modifier[0] = I915_FORMAT_MOD_X_TILED;
Ville Syrjäläc2ff7372016-02-11 19:16:37 +020015649 } else if (tiling == I915_TILING_Y) {
Daniel Vetter2a80ead2015-02-10 17:16:06 +000015650 DRM_DEBUG("No Y tiling for legacy addfb\n");
15651 return -EINVAL;
15652 }
15653 }
15654
Tvrtko Ursulin9a8f0a12015-02-27 11:15:24 +000015655 /* Passed in modifier sanity checking. */
15656 switch (mode_cmd->modifier[0]) {
15657 case I915_FORMAT_MOD_Y_TILED:
15658 case I915_FORMAT_MOD_Yf_TILED:
15659 if (INTEL_INFO(dev)->gen < 9) {
15660 DRM_DEBUG("Unsupported tiling 0x%llx!\n",
15661 mode_cmd->modifier[0]);
15662 return -EINVAL;
15663 }
15664 case DRM_FORMAT_MOD_NONE:
15665 case I915_FORMAT_MOD_X_TILED:
15666 break;
15667 default:
Jesse Barnesc0f40422015-03-23 12:43:50 -070015668 DRM_DEBUG("Unsupported fb modifier 0x%llx!\n",
15669 mode_cmd->modifier[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +010015670 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000015671 }
Chris Wilson57cd6502010-08-08 12:34:44 +010015672
Ville Syrjäläc2ff7372016-02-11 19:16:37 +020015673 /*
15674 * gen2/3 display engine uses the fence if present,
15675 * so the tiling mode must match the fb modifier exactly.
15676 */
15677 if (INTEL_INFO(dev_priv)->gen < 4 &&
15678 tiling != intel_fb_modifier_to_tiling(mode_cmd->modifier[0])) {
15679 DRM_DEBUG("tiling_mode must match fb modifier exactly on gen2/3\n");
15680 return -EINVAL;
15681 }
15682
Ville Syrjälä7b49f942016-01-12 21:08:32 +020015683 stride_alignment = intel_fb_stride_alignment(dev_priv,
15684 mode_cmd->modifier[0],
Damien Lespiaub3218032015-02-27 11:15:18 +000015685 mode_cmd->pixel_format);
15686 if (mode_cmd->pitches[0] & (stride_alignment - 1)) {
15687 DRM_DEBUG("pitch (%d) must be at least %u byte aligned\n",
15688 mode_cmd->pitches[0], stride_alignment);
Chris Wilson57cd6502010-08-08 12:34:44 +010015689 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000015690 }
Chris Wilson57cd6502010-08-08 12:34:44 +010015691
Damien Lespiaub3218032015-02-27 11:15:18 +000015692 pitch_limit = intel_fb_pitch_limit(dev, mode_cmd->modifier[0],
15693 mode_cmd->pixel_format);
Chris Wilsona35cdaa2013-06-25 17:26:45 +010015694 if (mode_cmd->pitches[0] > pitch_limit) {
Damien Lespiaub3218032015-02-27 11:15:18 +000015695 DRM_DEBUG("%s pitch (%u) must be at less than %d\n",
15696 mode_cmd->modifier[0] != DRM_FORMAT_MOD_NONE ?
Daniel Vetter2a80ead2015-02-10 17:16:06 +000015697 "tiled" : "linear",
Chris Wilsona35cdaa2013-06-25 17:26:45 +010015698 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020015699 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000015700 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020015701
Ville Syrjäläc2ff7372016-02-11 19:16:37 +020015702 /*
15703 * If there's a fence, enforce that
15704 * the fb pitch and fence stride match.
15705 */
15706 if (tiling != I915_TILING_NONE &&
Chris Wilson3e510a82016-08-05 10:14:23 +010015707 mode_cmd->pitches[0] != i915_gem_object_get_stride(obj)) {
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000015708 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
Chris Wilson3e510a82016-08-05 10:14:23 +010015709 mode_cmd->pitches[0],
15710 i915_gem_object_get_stride(obj));
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020015711 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000015712 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020015713
Ville Syrjälä57779d02012-10-31 17:50:14 +020015714 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080015715 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020015716 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020015717 case DRM_FORMAT_RGB565:
15718 case DRM_FORMAT_XRGB8888:
15719 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020015720 break;
15721 case DRM_FORMAT_XRGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000015722 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000015723 DRM_DEBUG("unsupported pixel format: %s\n",
15724 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020015725 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000015726 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020015727 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +020015728 case DRM_FORMAT_ABGR8888:
Wayne Boyer666a4532015-12-09 12:29:35 -080015729 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) &&
15730 INTEL_INFO(dev)->gen < 9) {
Damien Lespiau6c0fd452015-05-19 12:29:16 +010015731 DRM_DEBUG("unsupported pixel format: %s\n",
15732 drm_get_format_name(mode_cmd->pixel_format));
15733 return -EINVAL;
15734 }
15735 break;
15736 case DRM_FORMAT_XBGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020015737 case DRM_FORMAT_XRGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020015738 case DRM_FORMAT_XBGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000015739 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000015740 DRM_DEBUG("unsupported pixel format: %s\n",
15741 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020015742 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000015743 }
Jesse Barnesb5626742011-06-24 12:19:27 -070015744 break;
Damien Lespiau75312082015-05-15 19:06:01 +010015745 case DRM_FORMAT_ABGR2101010:
Wayne Boyer666a4532015-12-09 12:29:35 -080015746 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
Damien Lespiau75312082015-05-15 19:06:01 +010015747 DRM_DEBUG("unsupported pixel format: %s\n",
15748 drm_get_format_name(mode_cmd->pixel_format));
15749 return -EINVAL;
15750 }
15751 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020015752 case DRM_FORMAT_YUYV:
15753 case DRM_FORMAT_UYVY:
15754 case DRM_FORMAT_YVYU:
15755 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000015756 if (INTEL_INFO(dev)->gen < 5) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000015757 DRM_DEBUG("unsupported pixel format: %s\n",
15758 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020015759 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000015760 }
Chris Wilson57cd6502010-08-08 12:34:44 +010015761 break;
15762 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000015763 DRM_DEBUG("unsupported pixel format: %s\n",
15764 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010015765 return -EINVAL;
15766 }
15767
Ville Syrjälä90f9a332012-10-31 17:50:19 +020015768 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
15769 if (mode_cmd->offsets[0] != 0)
15770 return -EINVAL;
15771
Daniel Vetterc7d73f62012-12-13 23:38:38 +010015772 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
15773 intel_fb->obj = obj;
15774
Ville Syrjälä6687c902015-09-15 13:16:41 +030015775 ret = intel_fill_fb_info(dev_priv, &intel_fb->base);
15776 if (ret)
15777 return ret;
Ville Syrjälä2d7a2152016-02-15 22:54:47 +020015778
Jesse Barnes79e53942008-11-07 14:24:08 -080015779 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
15780 if (ret) {
15781 DRM_ERROR("framebuffer init failed %d\n", ret);
15782 return ret;
15783 }
15784
Ville Syrjälä0b05e1e2016-01-14 15:22:09 +020015785 intel_fb->obj->framebuffer_references++;
15786
Jesse Barnes79e53942008-11-07 14:24:08 -080015787 return 0;
15788}
15789
Jesse Barnes79e53942008-11-07 14:24:08 -080015790static struct drm_framebuffer *
15791intel_user_framebuffer_create(struct drm_device *dev,
15792 struct drm_file *filp,
Ville Syrjälä1eb834512015-11-11 19:11:29 +020015793 const struct drm_mode_fb_cmd2 *user_mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080015794{
Lukas Wunnerdcb13942015-07-04 11:50:58 +020015795 struct drm_framebuffer *fb;
Chris Wilson05394f32010-11-08 19:18:58 +000015796 struct drm_i915_gem_object *obj;
Ville Syrjälä76dc3762015-11-11 19:11:28 +020015797 struct drm_mode_fb_cmd2 mode_cmd = *user_mode_cmd;
Jesse Barnes79e53942008-11-07 14:24:08 -080015798
Chris Wilson03ac0642016-07-20 13:31:51 +010015799 obj = i915_gem_object_lookup(filp, mode_cmd.handles[0]);
15800 if (!obj)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010015801 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080015802
Daniel Vetter92907cb2015-11-23 09:04:05 +010015803 fb = intel_framebuffer_create(dev, &mode_cmd, obj);
Lukas Wunnerdcb13942015-07-04 11:50:58 +020015804 if (IS_ERR(fb))
Chris Wilson34911fd2016-07-20 13:31:54 +010015805 i915_gem_object_put_unlocked(obj);
Lukas Wunnerdcb13942015-07-04 11:50:58 +020015806
15807 return fb;
Jesse Barnes79e53942008-11-07 14:24:08 -080015808}
15809
Daniel Vetter06957262015-08-10 13:34:08 +020015810#ifndef CONFIG_DRM_FBDEV_EMULATION
Daniel Vetter0632fef2013-10-08 17:44:49 +020015811static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
Daniel Vetter4520f532013-10-09 09:18:51 +020015812{
15813}
15814#endif
15815
Jesse Barnes79e53942008-11-07 14:24:08 -080015816static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080015817 .fb_create = intel_user_framebuffer_create,
Daniel Vetter0632fef2013-10-08 17:44:49 +020015818 .output_poll_changed = intel_fbdev_output_poll_changed,
Matt Roper5ee67f12015-01-21 16:35:44 -080015819 .atomic_check = intel_atomic_check,
15820 .atomic_commit = intel_atomic_commit,
Maarten Lankhorstde419ab2015-06-04 10:21:28 +020015821 .atomic_state_alloc = intel_atomic_state_alloc,
15822 .atomic_state_clear = intel_atomic_state_clear,
Jesse Barnes79e53942008-11-07 14:24:08 -080015823};
15824
Imre Deak88212942016-03-16 13:38:53 +020015825/**
15826 * intel_init_display_hooks - initialize the display modesetting hooks
15827 * @dev_priv: device private
15828 */
15829void intel_init_display_hooks(struct drm_i915_private *dev_priv)
Jesse Barnese70236a2009-09-21 10:42:27 -070015830{
Imre Deak88212942016-03-16 13:38:53 +020015831 if (INTEL_INFO(dev_priv)->gen >= 9) {
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000015832 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000015833 dev_priv->display.get_initial_plane_config =
15834 skylake_get_initial_plane_config;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000015835 dev_priv->display.crtc_compute_clock =
15836 haswell_crtc_compute_clock;
15837 dev_priv->display.crtc_enable = haswell_crtc_enable;
15838 dev_priv->display.crtc_disable = haswell_crtc_disable;
Imre Deak88212942016-03-16 13:38:53 +020015839 } else if (HAS_DDI(dev_priv)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010015840 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000015841 dev_priv->display.get_initial_plane_config =
15842 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira797d0252014-10-29 11:32:34 +020015843 dev_priv->display.crtc_compute_clock =
15844 haswell_crtc_compute_clock;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020015845 dev_priv->display.crtc_enable = haswell_crtc_enable;
15846 dev_priv->display.crtc_disable = haswell_crtc_disable;
Imre Deak88212942016-03-16 13:38:53 +020015847 } else if (HAS_PCH_SPLIT(dev_priv)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010015848 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000015849 dev_priv->display.get_initial_plane_config =
15850 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +020015851 dev_priv->display.crtc_compute_clock =
15852 ironlake_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020015853 dev_priv->display.crtc_enable = ironlake_crtc_enable;
15854 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Ander Conselvan de Oliveira65b3d6a2016-03-21 18:00:13 +020015855 } else if (IS_CHERRYVIEW(dev_priv)) {
Jesse Barnes89b667f2013-04-18 14:51:36 -070015856 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000015857 dev_priv->display.get_initial_plane_config =
15858 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveira65b3d6a2016-03-21 18:00:13 +020015859 dev_priv->display.crtc_compute_clock = chv_crtc_compute_clock;
15860 dev_priv->display.crtc_enable = valleyview_crtc_enable;
15861 dev_priv->display.crtc_disable = i9xx_crtc_disable;
15862 } else if (IS_VALLEYVIEW(dev_priv)) {
15863 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
15864 dev_priv->display.get_initial_plane_config =
15865 i9xx_get_initial_plane_config;
15866 dev_priv->display.crtc_compute_clock = vlv_crtc_compute_clock;
Jesse Barnes89b667f2013-04-18 14:51:36 -070015867 dev_priv->display.crtc_enable = valleyview_crtc_enable;
15868 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Ander Conselvan de Oliveira19ec6692016-03-21 18:00:15 +020015869 } else if (IS_G4X(dev_priv)) {
15870 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
15871 dev_priv->display.get_initial_plane_config =
15872 i9xx_get_initial_plane_config;
15873 dev_priv->display.crtc_compute_clock = g4x_crtc_compute_clock;
15874 dev_priv->display.crtc_enable = i9xx_crtc_enable;
15875 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Ander Conselvan de Oliveira70e8aa22016-03-21 18:00:16 +020015876 } else if (IS_PINEVIEW(dev_priv)) {
15877 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
15878 dev_priv->display.get_initial_plane_config =
15879 i9xx_get_initial_plane_config;
15880 dev_priv->display.crtc_compute_clock = pnv_crtc_compute_clock;
15881 dev_priv->display.crtc_enable = i9xx_crtc_enable;
15882 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Ander Conselvan de Oliveira81c97f52016-03-22 15:35:23 +020015883 } else if (!IS_GEN2(dev_priv)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010015884 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000015885 dev_priv->display.get_initial_plane_config =
15886 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020015887 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020015888 dev_priv->display.crtc_enable = i9xx_crtc_enable;
15889 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Ander Conselvan de Oliveira81c97f52016-03-22 15:35:23 +020015890 } else {
15891 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
15892 dev_priv->display.get_initial_plane_config =
15893 i9xx_get_initial_plane_config;
15894 dev_priv->display.crtc_compute_clock = i8xx_crtc_compute_clock;
15895 dev_priv->display.crtc_enable = i9xx_crtc_enable;
15896 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Eric Anholtf564048e2011-03-30 13:01:02 -070015897 }
Jesse Barnese70236a2009-09-21 10:42:27 -070015898
Jesse Barnese70236a2009-09-21 10:42:27 -070015899 /* Returns the core display clock speed */
Imre Deak88212942016-03-16 13:38:53 +020015900 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
Ville Syrjälä1652d192015-03-31 14:12:01 +030015901 dev_priv->display.get_display_clock_speed =
15902 skylake_get_display_clock_speed;
Imre Deak88212942016-03-16 13:38:53 +020015903 else if (IS_BROXTON(dev_priv))
Bob Paauweacd3f3d2015-06-23 14:14:26 -070015904 dev_priv->display.get_display_clock_speed =
15905 broxton_get_display_clock_speed;
Imre Deak88212942016-03-16 13:38:53 +020015906 else if (IS_BROADWELL(dev_priv))
Ville Syrjälä1652d192015-03-31 14:12:01 +030015907 dev_priv->display.get_display_clock_speed =
15908 broadwell_get_display_clock_speed;
Imre Deak88212942016-03-16 13:38:53 +020015909 else if (IS_HASWELL(dev_priv))
Ville Syrjälä1652d192015-03-31 14:12:01 +030015910 dev_priv->display.get_display_clock_speed =
15911 haswell_get_display_clock_speed;
Imre Deak88212942016-03-16 13:38:53 +020015912 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070015913 dev_priv->display.get_display_clock_speed =
15914 valleyview_get_display_clock_speed;
Imre Deak88212942016-03-16 13:38:53 +020015915 else if (IS_GEN5(dev_priv))
Ville Syrjäläb37a6432015-03-31 14:11:54 +030015916 dev_priv->display.get_display_clock_speed =
15917 ilk_get_display_clock_speed;
Imre Deak88212942016-03-16 13:38:53 +020015918 else if (IS_I945G(dev_priv) || IS_BROADWATER(dev_priv) ||
15919 IS_GEN6(dev_priv) || IS_IVYBRIDGE(dev_priv))
Jesse Barnese70236a2009-09-21 10:42:27 -070015920 dev_priv->display.get_display_clock_speed =
15921 i945_get_display_clock_speed;
Imre Deak88212942016-03-16 13:38:53 +020015922 else if (IS_GM45(dev_priv))
Ville Syrjälä34edce22015-05-22 11:22:33 +030015923 dev_priv->display.get_display_clock_speed =
15924 gm45_get_display_clock_speed;
Imre Deak88212942016-03-16 13:38:53 +020015925 else if (IS_CRESTLINE(dev_priv))
Ville Syrjälä34edce22015-05-22 11:22:33 +030015926 dev_priv->display.get_display_clock_speed =
15927 i965gm_get_display_clock_speed;
Imre Deak88212942016-03-16 13:38:53 +020015928 else if (IS_PINEVIEW(dev_priv))
Ville Syrjälä34edce22015-05-22 11:22:33 +030015929 dev_priv->display.get_display_clock_speed =
15930 pnv_get_display_clock_speed;
Imre Deak88212942016-03-16 13:38:53 +020015931 else if (IS_G33(dev_priv) || IS_G4X(dev_priv))
Ville Syrjälä34edce22015-05-22 11:22:33 +030015932 dev_priv->display.get_display_clock_speed =
15933 g33_get_display_clock_speed;
Imre Deak88212942016-03-16 13:38:53 +020015934 else if (IS_I915G(dev_priv))
Jesse Barnese70236a2009-09-21 10:42:27 -070015935 dev_priv->display.get_display_clock_speed =
15936 i915_get_display_clock_speed;
Imre Deak88212942016-03-16 13:38:53 +020015937 else if (IS_I945GM(dev_priv) || IS_845G(dev_priv))
Jesse Barnese70236a2009-09-21 10:42:27 -070015938 dev_priv->display.get_display_clock_speed =
15939 i9xx_misc_get_display_clock_speed;
Imre Deak88212942016-03-16 13:38:53 +020015940 else if (IS_I915GM(dev_priv))
Jesse Barnese70236a2009-09-21 10:42:27 -070015941 dev_priv->display.get_display_clock_speed =
15942 i915gm_get_display_clock_speed;
Imre Deak88212942016-03-16 13:38:53 +020015943 else if (IS_I865G(dev_priv))
Jesse Barnese70236a2009-09-21 10:42:27 -070015944 dev_priv->display.get_display_clock_speed =
15945 i865_get_display_clock_speed;
Imre Deak88212942016-03-16 13:38:53 +020015946 else if (IS_I85X(dev_priv))
Jesse Barnese70236a2009-09-21 10:42:27 -070015947 dev_priv->display.get_display_clock_speed =
Ville Syrjälä1b1d2712015-05-22 11:22:31 +030015948 i85x_get_display_clock_speed;
Ville Syrjälä623e01e2015-05-22 11:22:34 +030015949 else { /* 830 */
Imre Deak88212942016-03-16 13:38:53 +020015950 WARN(!IS_I830(dev_priv), "Unknown platform. Assuming 133 MHz CDCLK\n");
Jesse Barnese70236a2009-09-21 10:42:27 -070015951 dev_priv->display.get_display_clock_speed =
15952 i830_get_display_clock_speed;
Ville Syrjälä623e01e2015-05-22 11:22:34 +030015953 }
Jesse Barnese70236a2009-09-21 10:42:27 -070015954
Imre Deak88212942016-03-16 13:38:53 +020015955 if (IS_GEN5(dev_priv)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053015956 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Imre Deak88212942016-03-16 13:38:53 +020015957 } else if (IS_GEN6(dev_priv)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053015958 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Imre Deak88212942016-03-16 13:38:53 +020015959 } else if (IS_IVYBRIDGE(dev_priv)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053015960 /* FIXME: detect B0+ stepping and use auto training */
15961 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Imre Deak88212942016-03-16 13:38:53 +020015962 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053015963 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Ville Syrjälä445e7802016-05-11 22:44:42 +030015964 }
15965
15966 if (IS_BROADWELL(dev_priv)) {
15967 dev_priv->display.modeset_commit_cdclk =
15968 broadwell_modeset_commit_cdclk;
15969 dev_priv->display.modeset_calc_cdclk =
15970 broadwell_modeset_calc_cdclk;
Imre Deak88212942016-03-16 13:38:53 +020015971 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020015972 dev_priv->display.modeset_commit_cdclk =
15973 valleyview_modeset_commit_cdclk;
15974 dev_priv->display.modeset_calc_cdclk =
15975 valleyview_modeset_calc_cdclk;
Imre Deak88212942016-03-16 13:38:53 +020015976 } else if (IS_BROXTON(dev_priv)) {
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020015977 dev_priv->display.modeset_commit_cdclk =
Imre Deak324513c2016-06-13 16:44:36 +030015978 bxt_modeset_commit_cdclk;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020015979 dev_priv->display.modeset_calc_cdclk =
Imre Deak324513c2016-06-13 16:44:36 +030015980 bxt_modeset_calc_cdclk;
Clint Taylorc89e39f2016-05-13 23:41:21 +030015981 } else if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
15982 dev_priv->display.modeset_commit_cdclk =
15983 skl_modeset_commit_cdclk;
15984 dev_priv->display.modeset_calc_cdclk =
15985 skl_modeset_calc_cdclk;
Jesse Barnese70236a2009-09-21 10:42:27 -070015986 }
Daniel Vetter5a21b662016-05-24 17:13:53 +020015987
Lyude27082492016-08-24 07:48:10 +020015988 if (dev_priv->info.gen >= 9)
15989 dev_priv->display.update_crtcs = skl_update_crtcs;
15990 else
15991 dev_priv->display.update_crtcs = intel_update_crtcs;
15992
Daniel Vetter5a21b662016-05-24 17:13:53 +020015993 switch (INTEL_INFO(dev_priv)->gen) {
15994 case 2:
15995 dev_priv->display.queue_flip = intel_gen2_queue_flip;
15996 break;
15997
15998 case 3:
15999 dev_priv->display.queue_flip = intel_gen3_queue_flip;
16000 break;
16001
16002 case 4:
16003 case 5:
16004 dev_priv->display.queue_flip = intel_gen4_queue_flip;
16005 break;
16006
16007 case 6:
16008 dev_priv->display.queue_flip = intel_gen6_queue_flip;
16009 break;
16010 case 7:
16011 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
16012 dev_priv->display.queue_flip = intel_gen7_queue_flip;
16013 break;
16014 case 9:
16015 /* Drop through - unsupported since execlist only. */
16016 default:
16017 /* Default just returns -ENODEV to indicate unsupported */
16018 dev_priv->display.queue_flip = intel_default_queue_flip;
16019 }
Jesse Barnese70236a2009-09-21 10:42:27 -070016020}
16021
Jesse Barnesb690e962010-07-19 13:53:12 -070016022/*
16023 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
16024 * resume, or other times. This quirk makes sure that's the case for
16025 * affected systems.
16026 */
Akshay Joshi0206e352011-08-16 15:34:10 -040016027static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070016028{
Chris Wilsonfac5e232016-07-04 11:34:36 +010016029 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnesb690e962010-07-19 13:53:12 -070016030
16031 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020016032 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070016033}
16034
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030016035static void quirk_pipeb_force(struct drm_device *dev)
16036{
Chris Wilsonfac5e232016-07-04 11:34:36 +010016037 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030016038
16039 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
16040 DRM_INFO("applying pipe b force quirk\n");
16041}
16042
Keith Packard435793d2011-07-12 14:56:22 -070016043/*
16044 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
16045 */
16046static void quirk_ssc_force_disable(struct drm_device *dev)
16047{
Chris Wilsonfac5e232016-07-04 11:34:36 +010016048 struct drm_i915_private *dev_priv = to_i915(dev);
Keith Packard435793d2011-07-12 14:56:22 -070016049 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020016050 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070016051}
16052
Carsten Emde4dca20e2012-03-15 15:56:26 +010016053/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010016054 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
16055 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010016056 */
16057static void quirk_invert_brightness(struct drm_device *dev)
16058{
Chris Wilsonfac5e232016-07-04 11:34:36 +010016059 struct drm_i915_private *dev_priv = to_i915(dev);
Carsten Emde4dca20e2012-03-15 15:56:26 +010016060 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020016061 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070016062}
16063
Scot Doyle9c72cc62014-07-03 23:27:50 +000016064/* Some VBT's incorrectly indicate no backlight is present */
16065static void quirk_backlight_present(struct drm_device *dev)
16066{
Chris Wilsonfac5e232016-07-04 11:34:36 +010016067 struct drm_i915_private *dev_priv = to_i915(dev);
Scot Doyle9c72cc62014-07-03 23:27:50 +000016068 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
16069 DRM_INFO("applying backlight present quirk\n");
16070}
16071
Jesse Barnesb690e962010-07-19 13:53:12 -070016072struct intel_quirk {
16073 int device;
16074 int subsystem_vendor;
16075 int subsystem_device;
16076 void (*hook)(struct drm_device *dev);
16077};
16078
Egbert Eich5f85f172012-10-14 15:46:38 +020016079/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
16080struct intel_dmi_quirk {
16081 void (*hook)(struct drm_device *dev);
16082 const struct dmi_system_id (*dmi_id_list)[];
16083};
16084
16085static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
16086{
16087 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
16088 return 1;
16089}
16090
16091static const struct intel_dmi_quirk intel_dmi_quirks[] = {
16092 {
16093 .dmi_id_list = &(const struct dmi_system_id[]) {
16094 {
16095 .callback = intel_dmi_reverse_brightness,
16096 .ident = "NCR Corporation",
16097 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
16098 DMI_MATCH(DMI_PRODUCT_NAME, ""),
16099 },
16100 },
16101 { } /* terminating entry */
16102 },
16103 .hook = quirk_invert_brightness,
16104 },
16105};
16106
Ben Widawskyc43b5632012-04-16 14:07:40 -070016107static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070016108 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
16109 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
16110
Jesse Barnesb690e962010-07-19 13:53:12 -070016111 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
16112 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
16113
Ville Syrjälä5f080c02014-08-15 01:22:06 +030016114 /* 830 needs to leave pipe A & dpll A up */
16115 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
16116
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030016117 /* 830 needs to leave pipe B & dpll B up */
16118 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
16119
Keith Packard435793d2011-07-12 14:56:22 -070016120 /* Lenovo U160 cannot use SSC on LVDS */
16121 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020016122
16123 /* Sony Vaio Y cannot use SSC on LVDS */
16124 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010016125
Alexander van Heukelumbe505f62013-12-28 21:00:39 +010016126 /* Acer Aspire 5734Z must invert backlight brightness */
16127 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
16128
16129 /* Acer/eMachines G725 */
16130 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
16131
16132 /* Acer/eMachines e725 */
16133 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
16134
16135 /* Acer/Packard Bell NCL20 */
16136 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
16137
16138 /* Acer Aspire 4736Z */
16139 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jani Nikula0f540c32014-01-13 17:30:34 +020016140
16141 /* Acer Aspire 5336 */
16142 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
Scot Doyle2e93a1a2014-07-03 23:27:51 +000016143
16144 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
16145 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
Scot Doyled4967d82014-07-03 23:27:52 +000016146
Scot Doyledfb3d47b2014-08-21 16:08:02 +000016147 /* Acer C720 Chromebook (Core i3 4005U) */
16148 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
16149
jens steinb2a96012014-10-28 20:25:53 +010016150 /* Apple Macbook 2,1 (Core 2 T7400) */
16151 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
16152
Jani Nikula1b9448b02015-11-05 11:49:59 +020016153 /* Apple Macbook 4,1 */
16154 { 0x2a02, 0x106b, 0x00a1, quirk_backlight_present },
16155
Scot Doyled4967d82014-07-03 23:27:52 +000016156 /* Toshiba CB35 Chromebook (Celeron 2955U) */
16157 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
Scot Doyle724cb062014-07-11 22:16:30 +000016158
16159 /* HP Chromebook 14 (Celeron 2955U) */
16160 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
Jani Nikulacf6f0af2015-02-19 10:53:39 +020016161
16162 /* Dell Chromebook 11 */
16163 { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present },
Jani Nikula9be64ee2015-10-30 14:50:24 +020016164
16165 /* Dell Chromebook 11 (2015 version) */
16166 { 0x0a16, 0x1028, 0x0a35, quirk_backlight_present },
Jesse Barnesb690e962010-07-19 13:53:12 -070016167};
16168
16169static void intel_init_quirks(struct drm_device *dev)
16170{
16171 struct pci_dev *d = dev->pdev;
16172 int i;
16173
16174 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
16175 struct intel_quirk *q = &intel_quirks[i];
16176
16177 if (d->device == q->device &&
16178 (d->subsystem_vendor == q->subsystem_vendor ||
16179 q->subsystem_vendor == PCI_ANY_ID) &&
16180 (d->subsystem_device == q->subsystem_device ||
16181 q->subsystem_device == PCI_ANY_ID))
16182 q->hook(dev);
16183 }
Egbert Eich5f85f172012-10-14 15:46:38 +020016184 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
16185 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
16186 intel_dmi_quirks[i].hook(dev);
16187 }
Jesse Barnesb690e962010-07-19 13:53:12 -070016188}
16189
Jesse Barnes9cce37f2010-08-13 15:11:26 -070016190/* Disable the VGA plane that we never use */
16191static void i915_disable_vga(struct drm_device *dev)
16192{
Chris Wilsonfac5e232016-07-04 11:34:36 +010016193 struct drm_i915_private *dev_priv = to_i915(dev);
David Weinehall52a05c32016-08-22 13:32:44 +030016194 struct pci_dev *pdev = dev_priv->drm.pdev;
Jesse Barnes9cce37f2010-08-13 15:11:26 -070016195 u8 sr1;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +020016196 i915_reg_t vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070016197
Ville Syrjälä2b37c612014-01-22 21:32:38 +020016198 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
David Weinehall52a05c32016-08-22 13:32:44 +030016199 vga_get_uninterruptible(pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070016200 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070016201 sr1 = inb(VGA_SR_DATA);
16202 outb(sr1 | 1<<5, VGA_SR_DATA);
David Weinehall52a05c32016-08-22 13:32:44 +030016203 vga_put(pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070016204 udelay(300);
16205
Ville Syrjälä01f5a622014-12-16 18:38:37 +020016206 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070016207 POSTING_READ(vga_reg);
16208}
16209
Daniel Vetterf8175862012-04-10 15:50:11 +020016210void intel_modeset_init_hw(struct drm_device *dev)
16211{
Chris Wilsonfac5e232016-07-04 11:34:36 +010016212 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorst1a617b72015-12-03 14:31:06 +010016213
Ville Syrjäläb6283052015-06-03 15:45:07 +030016214 intel_update_cdclk(dev);
Maarten Lankhorst1a617b72015-12-03 14:31:06 +010016215
16216 dev_priv->atomic_cdclk_freq = dev_priv->cdclk_freq;
16217
Daniel Vetterf8175862012-04-10 15:50:11 +020016218 intel_init_clock_gating(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020016219}
16220
Matt Roperd93c0372015-12-03 11:37:41 -080016221/*
16222 * Calculate what we think the watermarks should be for the state we've read
16223 * out of the hardware and then immediately program those watermarks so that
16224 * we ensure the hardware settings match our internal state.
16225 *
16226 * We can calculate what we think WM's should be by creating a duplicate of the
16227 * current state (which was constructed during hardware readout) and running it
16228 * through the atomic check code to calculate new watermark values in the
16229 * state object.
16230 */
16231static void sanitize_watermarks(struct drm_device *dev)
16232{
16233 struct drm_i915_private *dev_priv = to_i915(dev);
16234 struct drm_atomic_state *state;
16235 struct drm_crtc *crtc;
16236 struct drm_crtc_state *cstate;
16237 struct drm_modeset_acquire_ctx ctx;
16238 int ret;
16239 int i;
16240
16241 /* Only supported on platforms that use atomic watermark design */
Matt Ropered4a6a72016-02-23 17:20:13 -080016242 if (!dev_priv->display.optimize_watermarks)
Matt Roperd93c0372015-12-03 11:37:41 -080016243 return;
16244
16245 /*
16246 * We need to hold connection_mutex before calling duplicate_state so
16247 * that the connector loop is protected.
16248 */
16249 drm_modeset_acquire_init(&ctx, 0);
16250retry:
Matt Roper0cd12622016-01-12 07:13:37 -080016251 ret = drm_modeset_lock_all_ctx(dev, &ctx);
Matt Roperd93c0372015-12-03 11:37:41 -080016252 if (ret == -EDEADLK) {
16253 drm_modeset_backoff(&ctx);
16254 goto retry;
16255 } else if (WARN_ON(ret)) {
Matt Roper0cd12622016-01-12 07:13:37 -080016256 goto fail;
Matt Roperd93c0372015-12-03 11:37:41 -080016257 }
16258
16259 state = drm_atomic_helper_duplicate_state(dev, &ctx);
16260 if (WARN_ON(IS_ERR(state)))
Matt Roper0cd12622016-01-12 07:13:37 -080016261 goto fail;
Matt Roperd93c0372015-12-03 11:37:41 -080016262
Matt Ropered4a6a72016-02-23 17:20:13 -080016263 /*
16264 * Hardware readout is the only time we don't want to calculate
16265 * intermediate watermarks (since we don't trust the current
16266 * watermarks).
16267 */
16268 to_intel_atomic_state(state)->skip_intermediate_wm = true;
16269
Matt Roperd93c0372015-12-03 11:37:41 -080016270 ret = intel_atomic_check(dev, state);
16271 if (ret) {
16272 /*
16273 * If we fail here, it means that the hardware appears to be
16274 * programmed in a way that shouldn't be possible, given our
16275 * understanding of watermark requirements. This might mean a
16276 * mistake in the hardware readout code or a mistake in the
16277 * watermark calculations for a given platform. Raise a WARN
16278 * so that this is noticeable.
16279 *
16280 * If this actually happens, we'll have to just leave the
16281 * BIOS-programmed watermarks untouched and hope for the best.
16282 */
16283 WARN(true, "Could not determine valid watermarks for inherited state\n");
Matt Roper0cd12622016-01-12 07:13:37 -080016284 goto fail;
Matt Roperd93c0372015-12-03 11:37:41 -080016285 }
16286
16287 /* Write calculated watermark values back */
Matt Roperd93c0372015-12-03 11:37:41 -080016288 for_each_crtc_in_state(state, crtc, cstate, i) {
16289 struct intel_crtc_state *cs = to_intel_crtc_state(cstate);
16290
Matt Ropered4a6a72016-02-23 17:20:13 -080016291 cs->wm.need_postvbl_update = true;
16292 dev_priv->display.optimize_watermarks(cs);
Matt Roperd93c0372015-12-03 11:37:41 -080016293 }
16294
16295 drm_atomic_state_free(state);
Matt Roper0cd12622016-01-12 07:13:37 -080016296fail:
Matt Roperd93c0372015-12-03 11:37:41 -080016297 drm_modeset_drop_locks(&ctx);
16298 drm_modeset_acquire_fini(&ctx);
16299}
16300
Jesse Barnes79e53942008-11-07 14:24:08 -080016301void intel_modeset_init(struct drm_device *dev)
16302{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +030016303 struct drm_i915_private *dev_priv = to_i915(dev);
16304 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Damien Lespiau1fe47782014-03-03 17:31:47 +000016305 int sprite, ret;
Damien Lespiau8cc87b72014-03-03 17:31:44 +000016306 enum pipe pipe;
Jesse Barnes46f297f2014-03-07 08:57:48 -080016307 struct intel_crtc *crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -080016308
16309 drm_mode_config_init(dev);
16310
16311 dev->mode_config.min_width = 0;
16312 dev->mode_config.min_height = 0;
16313
Dave Airlie019d96c2011-09-29 16:20:42 +010016314 dev->mode_config.preferred_depth = 24;
16315 dev->mode_config.prefer_shadow = 1;
16316
Tvrtko Ursulin25bab382015-02-10 17:16:16 +000016317 dev->mode_config.allow_fb_modifiers = true;
16318
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020016319 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080016320
Jesse Barnesb690e962010-07-19 13:53:12 -070016321 intel_init_quirks(dev);
16322
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030016323 intel_init_pm(dev);
16324
Ben Widawskye3c74752013-04-05 13:12:39 -070016325 if (INTEL_INFO(dev)->num_pipes == 0)
16326 return;
16327
Lukas Wunner69f92f62015-07-15 13:57:35 +020016328 /*
16329 * There may be no VBT; and if the BIOS enabled SSC we can
16330 * just keep using it to avoid unnecessary flicker. Whereas if the
16331 * BIOS isn't using it, don't assume it will work even if the VBT
16332 * indicates as much.
16333 */
16334 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
16335 bool bios_lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
16336 DREF_SSC1_ENABLE);
16337
16338 if (dev_priv->vbt.lvds_use_ssc != bios_lvds_use_ssc) {
16339 DRM_DEBUG_KMS("SSC %sabled by BIOS, overriding VBT which says %sabled\n",
16340 bios_lvds_use_ssc ? "en" : "dis",
16341 dev_priv->vbt.lvds_use_ssc ? "en" : "dis");
16342 dev_priv->vbt.lvds_use_ssc = bios_lvds_use_ssc;
16343 }
16344 }
16345
Chris Wilsona6c45cf2010-09-17 00:32:17 +010016346 if (IS_GEN2(dev)) {
16347 dev->mode_config.max_width = 2048;
16348 dev->mode_config.max_height = 2048;
16349 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070016350 dev->mode_config.max_width = 4096;
16351 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080016352 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010016353 dev->mode_config.max_width = 8192;
16354 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080016355 }
Damien Lespiau068be562014-03-28 14:17:49 +000016356
Ville Syrjälädc41c152014-08-13 11:57:05 +030016357 if (IS_845G(dev) || IS_I865G(dev)) {
16358 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
16359 dev->mode_config.cursor_height = 1023;
16360 } else if (IS_GEN2(dev)) {
Damien Lespiau068be562014-03-28 14:17:49 +000016361 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
16362 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
16363 } else {
16364 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
16365 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
16366 }
16367
Joonas Lahtinen72e96d62016-03-30 16:57:10 +030016368 dev->mode_config.fb_base = ggtt->mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080016369
Zhao Yakui28c97732009-10-09 11:39:41 +080016370 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070016371 INTEL_INFO(dev)->num_pipes,
16372 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080016373
Damien Lespiau055e3932014-08-18 13:49:10 +010016374 for_each_pipe(dev_priv, pipe) {
Damien Lespiau8cc87b72014-03-03 17:31:44 +000016375 intel_crtc_init(dev, pipe);
Damien Lespiau3bdcfc02015-02-28 14:54:09 +000016376 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau1fe47782014-03-03 17:31:47 +000016377 ret = intel_plane_init(dev, pipe, sprite);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070016378 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030016379 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +000016380 pipe_name(pipe), sprite_name(pipe, sprite), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070016381 }
Jesse Barnes79e53942008-11-07 14:24:08 -080016382 }
16383
Ville Syrjäläbfa7df02015-09-24 23:29:18 +030016384 intel_update_czclk(dev_priv);
16385 intel_update_cdclk(dev);
16386
Daniel Vettere72f9fb2013-06-05 13:34:06 +020016387 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010016388
Ville Syrjäläb2045352016-05-13 23:41:27 +030016389 if (dev_priv->max_cdclk_freq == 0)
16390 intel_update_max_cdclk(dev);
16391
Jesse Barnes9cce37f2010-08-13 15:11:26 -070016392 /* Just disable it once at startup */
16393 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080016394 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000016395
Daniel Vetter6e9f7982014-05-29 23:54:47 +020016396 drm_modeset_lock_all(dev);
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020016397 intel_modeset_setup_hw_state(dev);
Daniel Vetter6e9f7982014-05-29 23:54:47 +020016398 drm_modeset_unlock_all(dev);
Jesse Barnes46f297f2014-03-07 08:57:48 -080016399
Damien Lespiaud3fcc802014-05-13 23:32:22 +010016400 for_each_intel_crtc(dev, crtc) {
Maarten Lankhorsteeebeac2015-07-14 12:33:29 +020016401 struct intel_initial_plane_config plane_config = {};
16402
Jesse Barnes46f297f2014-03-07 08:57:48 -080016403 if (!crtc->active)
16404 continue;
16405
Jesse Barnes46f297f2014-03-07 08:57:48 -080016406 /*
Jesse Barnes46f297f2014-03-07 08:57:48 -080016407 * Note that reserving the BIOS fb up front prevents us
16408 * from stuffing other stolen allocations like the ring
16409 * on top. This prevents some ugliness at boot time, and
16410 * can even allow for smooth boot transitions if the BIOS
16411 * fb is large enough for the active pipe configuration.
16412 */
Maarten Lankhorsteeebeac2015-07-14 12:33:29 +020016413 dev_priv->display.get_initial_plane_config(crtc,
16414 &plane_config);
16415
16416 /*
16417 * If the fb is shared between multiple heads, we'll
16418 * just get the first one.
16419 */
16420 intel_find_initial_plane_obj(crtc, &plane_config);
Jesse Barnes46f297f2014-03-07 08:57:48 -080016421 }
Matt Roperd93c0372015-12-03 11:37:41 -080016422
16423 /*
16424 * Make sure hardware watermarks really match the state we read out.
16425 * Note that we need to do this after reconstructing the BIOS fb's
16426 * since the watermark calculation done here will use pstate->fb.
16427 */
16428 sanitize_watermarks(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +010016429}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080016430
Daniel Vetter7fad7982012-07-04 17:51:47 +020016431static void intel_enable_pipe_a(struct drm_device *dev)
16432{
16433 struct intel_connector *connector;
16434 struct drm_connector *crt = NULL;
16435 struct intel_load_detect_pipe load_detect_temp;
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030016436 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
Daniel Vetter7fad7982012-07-04 17:51:47 +020016437
16438 /* We can't just switch on the pipe A, we need to set things up with a
16439 * proper mode and output configuration. As a gross hack, enable pipe A
16440 * by enabling the load detect pipe once. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020016441 for_each_intel_connector(dev, connector) {
Daniel Vetter7fad7982012-07-04 17:51:47 +020016442 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
16443 crt = &connector->base;
16444 break;
16445 }
16446 }
16447
16448 if (!crt)
16449 return;
16450
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030016451 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
Ander Conselvan de Oliveira49172fe2015-03-20 16:18:02 +020016452 intel_release_load_detect_pipe(crt, &load_detect_temp, ctx);
Daniel Vetter7fad7982012-07-04 17:51:47 +020016453}
16454
Daniel Vetterfa555832012-10-10 23:14:00 +020016455static bool
16456intel_check_plane_mapping(struct intel_crtc *crtc)
16457{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070016458 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +010016459 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä649636e2015-09-22 19:50:01 +030016460 u32 val;
Daniel Vetterfa555832012-10-10 23:14:00 +020016461
Ben Widawsky7eb552a2013-03-13 14:05:41 -070016462 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020016463 return true;
16464
Ville Syrjälä649636e2015-09-22 19:50:01 +030016465 val = I915_READ(DSPCNTR(!crtc->plane));
Daniel Vetterfa555832012-10-10 23:14:00 +020016466
16467 if ((val & DISPLAY_PLANE_ENABLE) &&
16468 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
16469 return false;
16470
16471 return true;
16472}
16473
Ville Syrjälä02e93c32015-08-26 19:39:19 +030016474static bool intel_crtc_has_encoders(struct intel_crtc *crtc)
16475{
16476 struct drm_device *dev = crtc->base.dev;
16477 struct intel_encoder *encoder;
16478
16479 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
16480 return true;
16481
16482 return false;
16483}
16484
Maarten Lankhorst496b0fc2016-08-23 16:18:07 +020016485static struct intel_connector *intel_encoder_find_connector(struct intel_encoder *encoder)
16486{
16487 struct drm_device *dev = encoder->base.dev;
16488 struct intel_connector *connector;
16489
16490 for_each_connector_on_encoder(dev, &encoder->base, connector)
16491 return connector;
16492
16493 return NULL;
16494}
16495
Ville Syrjäläa168f5b2016-08-05 20:00:17 +030016496static bool has_pch_trancoder(struct drm_i915_private *dev_priv,
16497 enum transcoder pch_transcoder)
16498{
16499 return HAS_PCH_IBX(dev_priv) || HAS_PCH_CPT(dev_priv) ||
16500 (HAS_PCH_LPT_H(dev_priv) && pch_transcoder == TRANSCODER_A);
16501}
16502
Daniel Vetter24929352012-07-02 20:28:59 +020016503static void intel_sanitize_crtc(struct intel_crtc *crtc)
16504{
16505 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +010016506 struct drm_i915_private *dev_priv = to_i915(dev);
Jani Nikula4d1de972016-03-18 17:05:42 +020016507 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Daniel Vetter24929352012-07-02 20:28:59 +020016508
Daniel Vetter24929352012-07-02 20:28:59 +020016509 /* Clear any frame start delays used for debugging left by the BIOS */
Jani Nikula4d1de972016-03-18 17:05:42 +020016510 if (!transcoder_is_dsi(cpu_transcoder)) {
16511 i915_reg_t reg = PIPECONF(cpu_transcoder);
16512
16513 I915_WRITE(reg,
16514 I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
16515 }
Daniel Vetter24929352012-07-02 20:28:59 +020016516
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030016517 /* restore vblank interrupts to correct state */
Daniel Vetter96256042015-02-13 21:03:42 +010016518 drm_crtc_vblank_reset(&crtc->base);
Ville Syrjäläd297e102014-08-06 14:50:01 +030016519 if (crtc->active) {
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030016520 struct intel_plane *plane;
16521
Daniel Vetter96256042015-02-13 21:03:42 +010016522 drm_crtc_vblank_on(&crtc->base);
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030016523
16524 /* Disable everything but the primary plane */
16525 for_each_intel_plane_on_crtc(dev, crtc, plane) {
16526 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
16527 continue;
16528
16529 plane->disable_plane(&plane->base, &crtc->base);
16530 }
Daniel Vetter96256042015-02-13 21:03:42 +010016531 }
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030016532
Daniel Vetter24929352012-07-02 20:28:59 +020016533 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020016534 * disable the crtc (and hence change the state) if it is wrong. Note
16535 * that gen4+ has a fixed plane -> pipe mapping. */
16536 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020016537 bool plane;
16538
Ville Syrjälä78108b72016-05-27 20:59:19 +030016539 DRM_DEBUG_KMS("[CRTC:%d:%s] wrong plane connection detected!\n",
16540 crtc->base.base.id, crtc->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020016541
16542 /* Pipe has the wrong plane attached and the plane is active.
16543 * Temporarily change the plane mapping and disable everything
16544 * ... */
16545 plane = crtc->plane;
Ville Syrjälä936e71e2016-07-26 19:06:59 +030016546 to_intel_plane_state(crtc->base.primary->state)->base.visible = true;
Daniel Vetter24929352012-07-02 20:28:59 +020016547 crtc->plane = !plane;
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +020016548 intel_crtc_disable_noatomic(&crtc->base);
Daniel Vetter24929352012-07-02 20:28:59 +020016549 crtc->plane = plane;
Daniel Vetter24929352012-07-02 20:28:59 +020016550 }
Daniel Vetter24929352012-07-02 20:28:59 +020016551
Daniel Vetter7fad7982012-07-04 17:51:47 +020016552 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
16553 crtc->pipe == PIPE_A && !crtc->active) {
16554 /* BIOS forgot to enable pipe A, this mostly happens after
16555 * resume. Force-enable the pipe to fix this, the update_dpms
16556 * call below we restore the pipe to the right state, but leave
16557 * the required bits on. */
16558 intel_enable_pipe_a(dev);
16559 }
16560
Daniel Vetter24929352012-07-02 20:28:59 +020016561 /* Adjust the state of the output pipe according to whether we
16562 * have active connectors/encoders. */
Maarten Lankhorst842e0302016-03-02 15:48:01 +010016563 if (crtc->active && !intel_crtc_has_encoders(crtc))
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +020016564 intel_crtc_disable_noatomic(&crtc->base);
Daniel Vetter24929352012-07-02 20:28:59 +020016565
Ville Syrjäläa3ed6aa2014-09-03 14:09:52 +030016566 if (crtc->active || HAS_GMCH_DISPLAY(dev)) {
Daniel Vetter4cc31482014-03-24 00:01:41 +010016567 /*
16568 * We start out with underrun reporting disabled to avoid races.
16569 * For correct bookkeeping mark this on active crtcs.
16570 *
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020016571 * Also on gmch platforms we dont have any hardware bits to
16572 * disable the underrun reporting. Which means we need to start
16573 * out with underrun reporting disabled also on inactive pipes,
16574 * since otherwise we'll complain about the garbage we read when
16575 * e.g. coming up after runtime pm.
16576 *
Daniel Vetter4cc31482014-03-24 00:01:41 +010016577 * No protection against concurrent access is required - at
16578 * worst a fifo underrun happens which also sets this to false.
16579 */
16580 crtc->cpu_fifo_underrun_disabled = true;
Ville Syrjäläa168f5b2016-08-05 20:00:17 +030016581 /*
16582 * We track the PCH trancoder underrun reporting state
16583 * within the crtc. With crtc for pipe A housing the underrun
16584 * reporting state for PCH transcoder A, crtc for pipe B housing
16585 * it for PCH transcoder B, etc. LPT-H has only PCH transcoder A,
16586 * and marking underrun reporting as disabled for the non-existing
16587 * PCH transcoders B and C would prevent enabling the south
16588 * error interrupt (see cpt_can_enable_serr_int()).
16589 */
16590 if (has_pch_trancoder(dev_priv, (enum transcoder)crtc->pipe))
16591 crtc->pch_fifo_underrun_disabled = true;
Daniel Vetter4cc31482014-03-24 00:01:41 +010016592 }
Daniel Vetter24929352012-07-02 20:28:59 +020016593}
16594
16595static void intel_sanitize_encoder(struct intel_encoder *encoder)
16596{
16597 struct intel_connector *connector;
Daniel Vetter24929352012-07-02 20:28:59 +020016598
16599 /* We need to check both for a crtc link (meaning that the
16600 * encoder is active and trying to read from a pipe) and the
16601 * pipe itself being active. */
16602 bool has_active_crtc = encoder->base.crtc &&
16603 to_intel_crtc(encoder->base.crtc)->active;
16604
Maarten Lankhorst496b0fc2016-08-23 16:18:07 +020016605 connector = intel_encoder_find_connector(encoder);
16606 if (connector && !has_active_crtc) {
Daniel Vetter24929352012-07-02 20:28:59 +020016607 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
16608 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030016609 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020016610
16611 /* Connector is active, but has no active pipe. This is
16612 * fallout from our resume register restoring. Disable
16613 * the encoder manually again. */
16614 if (encoder->base.crtc) {
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +020016615 struct drm_crtc_state *crtc_state = encoder->base.crtc->state;
16616
Daniel Vetter24929352012-07-02 20:28:59 +020016617 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
16618 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030016619 encoder->base.name);
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +020016620 encoder->disable(encoder, to_intel_crtc_state(crtc_state), connector->base.state);
Ville Syrjäläa62d1492014-06-28 02:04:01 +030016621 if (encoder->post_disable)
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +020016622 encoder->post_disable(encoder, to_intel_crtc_state(crtc_state), connector->base.state);
Daniel Vetter24929352012-07-02 20:28:59 +020016623 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020016624 encoder->base.crtc = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020016625
16626 /* Inconsistent output/port/pipe state happens presumably due to
16627 * a bug in one of the get_hw_state functions. Or someplace else
16628 * in our code, like the register restore mess on resume. Clamp
16629 * things to off as a safer default. */
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +020016630
16631 connector->base.dpms = DRM_MODE_DPMS_OFF;
16632 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020016633 }
16634 /* Enabled encoders without active connectors will be fixed in
16635 * the crtc fixup. */
16636}
16637
Imre Deak04098752014-02-18 00:02:16 +020016638void i915_redisable_vga_power_on(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010016639{
Chris Wilsonfac5e232016-07-04 11:34:36 +010016640 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +020016641 i915_reg_t vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010016642
Imre Deak04098752014-02-18 00:02:16 +020016643 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
16644 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
16645 i915_disable_vga(dev);
16646 }
16647}
16648
16649void i915_redisable_vga(struct drm_device *dev)
16650{
Chris Wilsonfac5e232016-07-04 11:34:36 +010016651 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak04098752014-02-18 00:02:16 +020016652
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030016653 /* This function can be called both from intel_modeset_setup_hw_state or
16654 * at a very early point in our resume sequence, where the power well
16655 * structures are not yet restored. Since this function is at a very
16656 * paranoid "someone might have enabled VGA while we were not looking"
16657 * level, just check if the power well is enabled instead of trying to
16658 * follow the "don't touch the power well if we don't need it" policy
16659 * the rest of the driver uses. */
Imre Deak6392f842016-02-12 18:55:13 +020016660 if (!intel_display_power_get_if_enabled(dev_priv, POWER_DOMAIN_VGA))
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030016661 return;
16662
Imre Deak04098752014-02-18 00:02:16 +020016663 i915_redisable_vga_power_on(dev);
Imre Deak6392f842016-02-12 18:55:13 +020016664
16665 intel_display_power_put(dev_priv, POWER_DOMAIN_VGA);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010016666}
16667
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030016668static bool primary_get_hw_state(struct intel_plane *plane)
Ville Syrjälä98ec7732014-04-30 17:43:01 +030016669{
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030016670 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjälä98ec7732014-04-30 17:43:01 +030016671
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030016672 return I915_READ(DSPCNTR(plane->plane)) & DISPLAY_PLANE_ENABLE;
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +020016673}
Ville Syrjälä98ec7732014-04-30 17:43:01 +030016674
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030016675/* FIXME read out full plane state for all planes */
16676static void readout_plane_state(struct intel_crtc *crtc)
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +020016677{
Maarten Lankhorstb26d3ea2015-09-23 16:11:41 +020016678 struct drm_plane *primary = crtc->base.primary;
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030016679 struct intel_plane_state *plane_state =
Maarten Lankhorstb26d3ea2015-09-23 16:11:41 +020016680 to_intel_plane_state(primary->state);
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +020016681
Ville Syrjälä936e71e2016-07-26 19:06:59 +030016682 plane_state->base.visible = crtc->active &&
Maarten Lankhorstb26d3ea2015-09-23 16:11:41 +020016683 primary_get_hw_state(to_intel_plane(primary));
16684
Ville Syrjälä936e71e2016-07-26 19:06:59 +030016685 if (plane_state->base.visible)
Maarten Lankhorstb26d3ea2015-09-23 16:11:41 +020016686 crtc->base.state->plane_mask |= 1 << drm_plane_index(primary);
Ville Syrjälä98ec7732014-04-30 17:43:01 +030016687}
16688
Daniel Vetter30e984d2013-06-05 13:34:17 +020016689static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020016690{
Chris Wilsonfac5e232016-07-04 11:34:36 +010016691 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020016692 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020016693 struct intel_crtc *crtc;
16694 struct intel_encoder *encoder;
16695 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020016696 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020016697
Maarten Lankhorst565602d2015-12-10 12:33:57 +010016698 dev_priv->active_crtcs = 0;
16699
Damien Lespiaud3fcc802014-05-13 23:32:22 +010016700 for_each_intel_crtc(dev, crtc) {
Maarten Lankhorst565602d2015-12-10 12:33:57 +010016701 struct intel_crtc_state *crtc_state = crtc->config;
16702 int pixclk = 0;
Daniel Vetter3b117c82013-04-17 20:15:07 +020016703
Daniel Vetterec2dc6a2016-05-09 16:34:09 +020016704 __drm_atomic_helper_crtc_destroy_state(&crtc_state->base);
Maarten Lankhorst565602d2015-12-10 12:33:57 +010016705 memset(crtc_state, 0, sizeof(*crtc_state));
16706 crtc_state->base.crtc = &crtc->base;
Daniel Vetter24929352012-07-02 20:28:59 +020016707
Maarten Lankhorst565602d2015-12-10 12:33:57 +010016708 crtc_state->base.active = crtc_state->base.enable =
16709 dev_priv->display.get_pipe_config(crtc, crtc_state);
16710
16711 crtc->base.enabled = crtc_state->base.enable;
16712 crtc->active = crtc_state->base.active;
16713
16714 if (crtc_state->base.active) {
16715 dev_priv->active_crtcs |= 1 << crtc->pipe;
16716
Clint Taylorc89e39f2016-05-13 23:41:21 +030016717 if (INTEL_GEN(dev_priv) >= 9 || IS_BROADWELL(dev_priv))
Maarten Lankhorst565602d2015-12-10 12:33:57 +010016718 pixclk = ilk_pipe_pixel_rate(crtc_state);
Ville Syrjälä9558d152016-05-13 23:41:20 +030016719 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Maarten Lankhorst565602d2015-12-10 12:33:57 +010016720 pixclk = crtc_state->base.adjusted_mode.crtc_clock;
16721 else
16722 WARN_ON(dev_priv->display.modeset_calc_cdclk);
Ville Syrjälä9558d152016-05-13 23:41:20 +030016723
16724 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
16725 if (IS_BROADWELL(dev_priv) && crtc_state->ips_enabled)
16726 pixclk = DIV_ROUND_UP(pixclk * 100, 95);
Maarten Lankhorst565602d2015-12-10 12:33:57 +010016727 }
16728
16729 dev_priv->min_pixclk[crtc->pipe] = pixclk;
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030016730
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030016731 readout_plane_state(crtc);
Daniel Vetter24929352012-07-02 20:28:59 +020016732
Ville Syrjälä78108b72016-05-27 20:59:19 +030016733 DRM_DEBUG_KMS("[CRTC:%d:%s] hw state readout: %s\n",
16734 crtc->base.base.id, crtc->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020016735 crtc->active ? "enabled" : "disabled");
16736 }
16737
Daniel Vetter53589012013-06-05 13:34:16 +020016738 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
16739 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
16740
Ander Conselvan de Oliveira2edd6442016-03-08 17:46:21 +020016741 pll->on = pll->funcs.get_hw_state(dev_priv, pll,
16742 &pll->config.hw_state);
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020016743 pll->config.crtc_mask = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010016744 for_each_intel_crtc(dev, crtc) {
Maarten Lankhorst2dd66ebd2016-03-14 09:27:52 +010016745 if (crtc->active && crtc->config->shared_dpll == pll)
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020016746 pll->config.crtc_mask |= 1 << crtc->pipe;
Daniel Vetter53589012013-06-05 13:34:16 +020016747 }
Maarten Lankhorst2dd66ebd2016-03-14 09:27:52 +010016748 pll->active_mask = pll->config.crtc_mask;
Daniel Vetter53589012013-06-05 13:34:16 +020016749
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020016750 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020016751 pll->name, pll->config.crtc_mask, pll->on);
Daniel Vetter53589012013-06-05 13:34:16 +020016752 }
16753
Damien Lespiaub2784e12014-08-05 11:29:37 +010016754 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020016755 pipe = 0;
16756
16757 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -070016758 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
16759 encoder->base.crtc = &crtc->base;
Ville Syrjälä253c84c2016-06-22 21:57:01 +030016760 crtc->config->output_types |= 1 << encoder->type;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020016761 encoder->get_config(encoder, crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020016762 } else {
16763 encoder->base.crtc = NULL;
16764 }
16765
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010016766 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
Daniel Vetter24929352012-07-02 20:28:59 +020016767 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030016768 encoder->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020016769 encoder->base.crtc ? "enabled" : "disabled",
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010016770 pipe_name(pipe));
Daniel Vetter24929352012-07-02 20:28:59 +020016771 }
16772
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020016773 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020016774 if (connector->get_hw_state(connector)) {
16775 connector->base.dpms = DRM_MODE_DPMS_ON;
Maarten Lankhorst2aa974c2016-01-06 14:53:25 +010016776
16777 encoder = connector->encoder;
16778 connector->base.encoder = &encoder->base;
16779
16780 if (encoder->base.crtc &&
16781 encoder->base.crtc->state->active) {
16782 /*
16783 * This has to be done during hardware readout
16784 * because anything calling .crtc_disable may
16785 * rely on the connector_mask being accurate.
16786 */
16787 encoder->base.crtc->state->connector_mask |=
16788 1 << drm_connector_index(&connector->base);
Maarten Lankhorste87a52b2016-01-28 15:04:58 +010016789 encoder->base.crtc->state->encoder_mask |=
16790 1 << drm_encoder_index(&encoder->base);
Maarten Lankhorst2aa974c2016-01-06 14:53:25 +010016791 }
16792
Daniel Vetter24929352012-07-02 20:28:59 +020016793 } else {
16794 connector->base.dpms = DRM_MODE_DPMS_OFF;
16795 connector->base.encoder = NULL;
16796 }
16797 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
16798 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030016799 connector->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020016800 connector->base.encoder ? "enabled" : "disabled");
16801 }
Ville Syrjälä7f4c6282015-09-10 18:59:07 +030016802
16803 for_each_intel_crtc(dev, crtc) {
16804 crtc->base.hwmode = crtc->config->base.adjusted_mode;
16805
16806 memset(&crtc->base.mode, 0, sizeof(crtc->base.mode));
16807 if (crtc->base.state->active) {
16808 intel_mode_from_pipe_config(&crtc->base.mode, crtc->config);
16809 intel_mode_from_pipe_config(&crtc->base.state->adjusted_mode, crtc->config);
16810 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->base.state, &crtc->base.mode));
16811
16812 /*
16813 * The initial mode needs to be set in order to keep
16814 * the atomic core happy. It wants a valid mode if the
16815 * crtc's enabled, so we do the above call.
16816 *
16817 * At this point some state updated by the connectors
16818 * in their ->detect() callback has not run yet, so
16819 * no recalculation can be done yet.
16820 *
16821 * Even if we could do a recalculation and modeset
16822 * right now it would cause a double modeset if
16823 * fbdev or userspace chooses a different initial mode.
16824 *
16825 * If that happens, someone indicated they wanted a
16826 * mode change, which means it's safe to do a full
16827 * recalculation.
16828 */
16829 crtc->base.state->mode.private_flags = I915_MODE_FLAG_INHERITED;
Ville Syrjälä9eca68322015-09-10 18:59:10 +030016830
16831 drm_calc_timestamping_constants(&crtc->base, &crtc->base.hwmode);
16832 update_scanline_offset(crtc);
Ville Syrjälä7f4c6282015-09-10 18:59:07 +030016833 }
Ville Syrjäläe3b247d2016-02-17 21:41:09 +020016834
16835 intel_pipe_config_sanity_check(dev_priv, crtc->config);
Ville Syrjälä7f4c6282015-09-10 18:59:07 +030016836 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020016837}
16838
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020016839/* Scan out the current hw modeset state,
16840 * and sanitizes it to the current state
16841 */
16842static void
16843intel_modeset_setup_hw_state(struct drm_device *dev)
Daniel Vetter30e984d2013-06-05 13:34:17 +020016844{
Chris Wilsonfac5e232016-07-04 11:34:36 +010016845 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter30e984d2013-06-05 13:34:17 +020016846 enum pipe pipe;
Daniel Vetter30e984d2013-06-05 13:34:17 +020016847 struct intel_crtc *crtc;
16848 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020016849 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020016850
16851 intel_modeset_readout_hw_state(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020016852
16853 /* HW state is read out, now we need to sanitize this mess. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010016854 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020016855 intel_sanitize_encoder(encoder);
16856 }
16857
Damien Lespiau055e3932014-08-18 13:49:10 +010016858 for_each_pipe(dev_priv, pipe) {
Daniel Vetter24929352012-07-02 20:28:59 +020016859 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
16860 intel_sanitize_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020016861 intel_dump_pipe_config(crtc, crtc->config,
16862 "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020016863 }
Daniel Vetter9a935852012-07-05 22:34:27 +020016864
Ander Conselvan de Oliveirad29b2f92015-03-20 16:18:05 +020016865 intel_modeset_update_connector_atomic_state(dev);
16866
Daniel Vetter35c95372013-07-17 06:55:04 +020016867 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
16868 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
16869
Maarten Lankhorst2dd66ebd2016-03-14 09:27:52 +010016870 if (!pll->on || pll->active_mask)
Daniel Vetter35c95372013-07-17 06:55:04 +020016871 continue;
16872
16873 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
16874
Ander Conselvan de Oliveira2edd6442016-03-08 17:46:21 +020016875 pll->funcs.disable(dev_priv, pll);
Daniel Vetter35c95372013-07-17 06:55:04 +020016876 pll->on = false;
16877 }
16878
Wayne Boyer666a4532015-12-09 12:29:35 -080016879 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
Ville Syrjälä6eb1a682015-06-24 22:00:03 +030016880 vlv_wm_get_hw_state(dev);
16881 else if (IS_GEN9(dev))
Pradeep Bhat30789992014-11-04 17:06:45 +000016882 skl_wm_get_hw_state(dev);
16883 else if (HAS_PCH_SPLIT(dev))
Ville Syrjälä243e6a42013-10-14 14:55:24 +030016884 ilk_wm_get_hw_state(dev);
Maarten Lankhorst292b9902015-07-13 16:30:27 +020016885
16886 for_each_intel_crtc(dev, crtc) {
16887 unsigned long put_domains;
16888
Maarten Lankhorst74bff5f2016-02-10 13:49:36 +010016889 put_domains = modeset_get_crtc_power_domains(&crtc->base, crtc->config);
Maarten Lankhorst292b9902015-07-13 16:30:27 +020016890 if (WARN_ON(put_domains))
16891 modeset_put_power_domains(dev_priv, put_domains);
16892 }
16893 intel_display_set_init_power(dev_priv, false);
Paulo Zanoni010cf732016-01-19 11:35:48 -020016894
16895 intel_fbc_init_pipe_state(dev_priv);
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020016896}
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030016897
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020016898void intel_display_resume(struct drm_device *dev)
16899{
Maarten Lankhorste2c8b872016-02-16 10:06:14 +010016900 struct drm_i915_private *dev_priv = to_i915(dev);
16901 struct drm_atomic_state *state = dev_priv->modeset_restore_state;
16902 struct drm_modeset_acquire_ctx ctx;
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020016903 int ret;
Daniel Vetterf30da182013-04-11 20:22:50 +020016904
Maarten Lankhorste2c8b872016-02-16 10:06:14 +010016905 dev_priv->modeset_restore_state = NULL;
Maarten Lankhorst73974892016-08-05 23:28:27 +030016906 if (state)
16907 state->acquire_ctx = &ctx;
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020016908
Maarten Lankhorstea49c9a2016-02-16 15:27:42 +010016909 /*
16910 * This is a cludge because with real atomic modeset mode_config.mutex
16911 * won't be taken. Unfortunately some probed state like
16912 * audio_codec_enable is still protected by mode_config.mutex, so lock
16913 * it here for now.
16914 */
16915 mutex_lock(&dev->mode_config.mutex);
Maarten Lankhorste2c8b872016-02-16 10:06:14 +010016916 drm_modeset_acquire_init(&ctx, 0);
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020016917
Maarten Lankhorst73974892016-08-05 23:28:27 +030016918 while (1) {
16919 ret = drm_modeset_lock_all_ctx(dev, &ctx);
16920 if (ret != -EDEADLK)
16921 break;
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020016922
Maarten Lankhorste2c8b872016-02-16 10:06:14 +010016923 drm_modeset_backoff(&ctx);
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020016924 }
16925
Maarten Lankhorst73974892016-08-05 23:28:27 +030016926 if (!ret)
16927 ret = __intel_display_resume(dev, state);
16928
Maarten Lankhorste2c8b872016-02-16 10:06:14 +010016929 drm_modeset_drop_locks(&ctx);
16930 drm_modeset_acquire_fini(&ctx);
Maarten Lankhorstea49c9a2016-02-16 15:27:42 +010016931 mutex_unlock(&dev->mode_config.mutex);
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020016932
Maarten Lankhorste2c8b872016-02-16 10:06:14 +010016933 if (ret) {
16934 DRM_ERROR("Restoring old state failed with %i\n", ret);
16935 drm_atomic_state_free(state);
16936 }
Chris Wilson2c7111d2011-03-29 10:40:27 +010016937}
16938
16939void intel_modeset_gem_init(struct drm_device *dev)
16940{
Chris Wilsondc979972016-05-10 14:10:04 +010016941 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -080016942 struct drm_crtc *c;
Matt Roper2ff8fde2014-07-08 07:50:07 -070016943 struct drm_i915_gem_object *obj;
Jesse Barnes484b41d2014-03-07 08:57:55 -080016944
Chris Wilsondc979972016-05-10 14:10:04 +010016945 intel_init_gt_powersave(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +030016946
Chris Wilson1833b132012-05-09 11:56:28 +010016947 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020016948
Chris Wilson1ee8da62016-05-12 12:43:23 +010016949 intel_setup_overlay(dev_priv);
Jesse Barnes484b41d2014-03-07 08:57:55 -080016950
16951 /*
16952 * Make sure any fbs we allocated at startup are properly
16953 * pinned & fenced. When we do the allocation it's too early
16954 * for this.
16955 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010016956 for_each_crtc(dev, c) {
Chris Wilson058d88c2016-08-15 10:49:06 +010016957 struct i915_vma *vma;
16958
Matt Roper2ff8fde2014-07-08 07:50:07 -070016959 obj = intel_fb_obj(c->primary->fb);
16960 if (obj == NULL)
Jesse Barnes484b41d2014-03-07 08:57:55 -080016961 continue;
16962
Tvrtko Ursuline0d61492015-04-13 16:03:03 +010016963 mutex_lock(&dev->struct_mutex);
Chris Wilson058d88c2016-08-15 10:49:06 +010016964 vma = intel_pin_and_fence_fb_obj(c->primary->fb,
Ville Syrjälä3465c582016-02-15 22:54:43 +020016965 c->primary->state->rotation);
Tvrtko Ursuline0d61492015-04-13 16:03:03 +010016966 mutex_unlock(&dev->struct_mutex);
Chris Wilson058d88c2016-08-15 10:49:06 +010016967 if (IS_ERR(vma)) {
Jesse Barnes484b41d2014-03-07 08:57:55 -080016968 DRM_ERROR("failed to pin boot fb on pipe %d\n",
16969 to_intel_crtc(c)->pipe);
Dave Airlie66e514c2014-04-03 07:51:54 +100016970 drm_framebuffer_unreference(c->primary->fb);
Daniel Vetter5a21b662016-05-24 17:13:53 +020016971 c->primary->fb = NULL;
Maarten Lankhorst36750f22015-06-01 12:49:54 +020016972 c->primary->crtc = c->primary->state->crtc = NULL;
Daniel Vetter5a21b662016-05-24 17:13:53 +020016973 update_state_fb(c->primary);
Maarten Lankhorst36750f22015-06-01 12:49:54 +020016974 c->state->plane_mask &= ~(1 << drm_plane_index(c->primary));
Jesse Barnes484b41d2014-03-07 08:57:55 -080016975 }
16976 }
Chris Wilson1ebaa0b2016-06-24 14:00:15 +010016977}
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020016978
Chris Wilson1ebaa0b2016-06-24 14:00:15 +010016979int intel_connector_register(struct drm_connector *connector)
16980{
16981 struct intel_connector *intel_connector = to_intel_connector(connector);
16982 int ret;
16983
16984 ret = intel_backlight_device_register(intel_connector);
16985 if (ret)
16986 goto err;
16987
16988 return 0;
16989
16990err:
16991 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080016992}
16993
Chris Wilsonc191eca2016-06-17 11:40:33 +010016994void intel_connector_unregister(struct drm_connector *connector)
Imre Deak4932e2c2014-02-11 17:12:48 +020016995{
Chris Wilsone63d87c2016-06-17 11:40:34 +010016996 struct intel_connector *intel_connector = to_intel_connector(connector);
Imre Deak4932e2c2014-02-11 17:12:48 +020016997
Chris Wilsone63d87c2016-06-17 11:40:34 +010016998 intel_backlight_device_unregister(intel_connector);
Imre Deak4932e2c2014-02-11 17:12:48 +020016999 intel_panel_destroy_backlight(connector);
Imre Deak4932e2c2014-02-11 17:12:48 +020017000}
17001
Jesse Barnes79e53942008-11-07 14:24:08 -080017002void intel_modeset_cleanup(struct drm_device *dev)
17003{
Chris Wilsonfac5e232016-07-04 11:34:36 +010017004 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -070017005
Chris Wilsondc979972016-05-10 14:10:04 +010017006 intel_disable_gt_powersave(dev_priv);
Imre Deak2eb52522014-11-19 15:30:05 +020017007
Daniel Vetterfd0c0642013-04-24 11:13:35 +020017008 /*
17009 * Interrupts and polling as the first thing to avoid creating havoc.
Imre Deak2eb52522014-11-19 15:30:05 +020017010 * Too much stuff here (turning of connectors, ...) would
Daniel Vetterfd0c0642013-04-24 11:13:35 +020017011 * experience fancy races otherwise.
17012 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +020017013 intel_irq_uninstall(dev_priv);
Jesse Barneseb21b922014-06-20 11:57:33 -070017014
Daniel Vetterfd0c0642013-04-24 11:13:35 +020017015 /*
17016 * Due to the hpd irq storm handling the hotplug work can re-arm the
17017 * poll handlers. Hence disable polling after hpd handling is shut down.
17018 */
Keith Packardf87ea762010-10-03 19:36:26 -070017019 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020017020
Jesse Barnes723bfd72010-10-07 16:01:13 -070017021 intel_unregister_dsm_handler();
17022
Paulo Zanonic937ab3e52016-01-19 11:35:46 -020017023 intel_fbc_global_disable(dev_priv);
Kristian Høgsberg69341a52009-11-11 12:19:17 -050017024
Chris Wilson1630fe72011-07-08 12:22:42 +010017025 /* flush any delayed tasks or pending work */
17026 flush_scheduled_work();
17027
Jesse Barnes79e53942008-11-07 14:24:08 -080017028 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010017029
Chris Wilson1ee8da62016-05-12 12:43:23 +010017030 intel_cleanup_overlay(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +030017031
Chris Wilsondc979972016-05-10 14:10:04 +010017032 intel_cleanup_gt_powersave(dev_priv);
Daniel Vetterf5949142016-01-13 11:55:28 +010017033
17034 intel_teardown_gmbus(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080017035}
17036
Chris Wilsondf0e9242010-09-09 16:20:55 +010017037void intel_connector_attach_encoder(struct intel_connector *connector,
17038 struct intel_encoder *encoder)
17039{
17040 connector->encoder = encoder;
17041 drm_mode_connector_attach_encoder(&connector->base,
17042 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080017043}
Dave Airlie28d52042009-09-21 14:33:58 +100017044
17045/*
17046 * set vga decode state - true == enable VGA decode
17047 */
17048int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
17049{
Chris Wilsonfac5e232016-07-04 11:34:36 +010017050 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona885b3c2013-12-17 14:34:50 +000017051 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
Dave Airlie28d52042009-09-21 14:33:58 +100017052 u16 gmch_ctrl;
17053
Chris Wilson75fa0412014-02-07 18:37:02 -020017054 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
17055 DRM_ERROR("failed to read control word\n");
17056 return -EIO;
17057 }
17058
Chris Wilsonc0cc8a52014-02-07 18:37:03 -020017059 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
17060 return 0;
17061
Dave Airlie28d52042009-09-21 14:33:58 +100017062 if (state)
17063 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
17064 else
17065 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
Chris Wilson75fa0412014-02-07 18:37:02 -020017066
17067 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
17068 DRM_ERROR("failed to write control word\n");
17069 return -EIO;
17070 }
17071
Dave Airlie28d52042009-09-21 14:33:58 +100017072 return 0;
17073}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017074
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017075struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030017076
17077 u32 power_well_driver;
17078
Chris Wilson63b66e52013-08-08 15:12:06 +020017079 int num_transcoders;
17080
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017081 struct intel_cursor_error_state {
17082 u32 control;
17083 u32 position;
17084 u32 base;
17085 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010017086 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017087
17088 struct intel_pipe_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020017089 bool power_domain_on;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017090 u32 source;
Imre Deakf301b1e12014-04-18 15:55:04 +030017091 u32 stat;
Damien Lespiau52331302012-08-15 19:23:25 +010017092 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017093
17094 struct intel_plane_error_state {
17095 u32 control;
17096 u32 stride;
17097 u32 size;
17098 u32 pos;
17099 u32 addr;
17100 u32 surface;
17101 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010017102 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020017103
17104 struct intel_transcoder_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020017105 bool power_domain_on;
Chris Wilson63b66e52013-08-08 15:12:06 +020017106 enum transcoder cpu_transcoder;
17107
17108 u32 conf;
17109
17110 u32 htotal;
17111 u32 hblank;
17112 u32 hsync;
17113 u32 vtotal;
17114 u32 vblank;
17115 u32 vsync;
17116 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017117};
17118
17119struct intel_display_error_state *
Chris Wilsonc0336662016-05-06 15:40:21 +010017120intel_display_capture_error_state(struct drm_i915_private *dev_priv)
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017121{
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017122 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020017123 int transcoders[] = {
17124 TRANSCODER_A,
17125 TRANSCODER_B,
17126 TRANSCODER_C,
17127 TRANSCODER_EDP,
17128 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017129 int i;
17130
Chris Wilsonc0336662016-05-06 15:40:21 +010017131 if (INTEL_INFO(dev_priv)->num_pipes == 0)
Chris Wilson63b66e52013-08-08 15:12:06 +020017132 return NULL;
17133
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020017134 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017135 if (error == NULL)
17136 return NULL;
17137
Chris Wilsonc0336662016-05-06 15:40:21 +010017138 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030017139 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
17140
Damien Lespiau055e3932014-08-18 13:49:10 +010017141 for_each_pipe(dev_priv, i) {
Imre Deakddf9c532013-11-27 22:02:02 +020017142 error->pipe[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020017143 __intel_display_power_is_enabled(dev_priv,
17144 POWER_DOMAIN_PIPE(i));
Imre Deakddf9c532013-11-27 22:02:02 +020017145 if (!error->pipe[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020017146 continue;
17147
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030017148 error->cursor[i].control = I915_READ(CURCNTR(i));
17149 error->cursor[i].position = I915_READ(CURPOS(i));
17150 error->cursor[i].base = I915_READ(CURBASE(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017151
17152 error->plane[i].control = I915_READ(DSPCNTR(i));
17153 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Chris Wilsonc0336662016-05-06 15:40:21 +010017154 if (INTEL_GEN(dev_priv) <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030017155 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030017156 error->plane[i].pos = I915_READ(DSPPOS(i));
17157 }
Chris Wilsonc0336662016-05-06 15:40:21 +010017158 if (INTEL_GEN(dev_priv) <= 7 && !IS_HASWELL(dev_priv))
Paulo Zanonica291362013-03-06 20:03:14 -030017159 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc0336662016-05-06 15:40:21 +010017160 if (INTEL_GEN(dev_priv) >= 4) {
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017161 error->plane[i].surface = I915_READ(DSPSURF(i));
17162 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
17163 }
17164
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017165 error->pipe[i].source = I915_READ(PIPESRC(i));
Imre Deakf301b1e12014-04-18 15:55:04 +030017166
Chris Wilsonc0336662016-05-06 15:40:21 +010017167 if (HAS_GMCH_DISPLAY(dev_priv))
Imre Deakf301b1e12014-04-18 15:55:04 +030017168 error->pipe[i].stat = I915_READ(PIPESTAT(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020017169 }
17170
Jani Nikula4d1de972016-03-18 17:05:42 +020017171 /* Note: this does not include DSI transcoders. */
Chris Wilsonc0336662016-05-06 15:40:21 +010017172 error->num_transcoders = INTEL_INFO(dev_priv)->num_pipes;
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +030017173 if (HAS_DDI(dev_priv))
Chris Wilson63b66e52013-08-08 15:12:06 +020017174 error->num_transcoders++; /* Account for eDP. */
17175
17176 for (i = 0; i < error->num_transcoders; i++) {
17177 enum transcoder cpu_transcoder = transcoders[i];
17178
Imre Deakddf9c532013-11-27 22:02:02 +020017179 error->transcoder[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020017180 __intel_display_power_is_enabled(dev_priv,
Paulo Zanoni38cc1da2013-12-20 15:09:41 -020017181 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020017182 if (!error->transcoder[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020017183 continue;
17184
Chris Wilson63b66e52013-08-08 15:12:06 +020017185 error->transcoder[i].cpu_transcoder = cpu_transcoder;
17186
17187 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
17188 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
17189 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
17190 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
17191 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
17192 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
17193 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017194 }
17195
17196 return error;
17197}
17198
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030017199#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
17200
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017201void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030017202intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017203 struct drm_device *dev,
17204 struct intel_display_error_state *error)
17205{
Chris Wilsonfac5e232016-07-04 11:34:36 +010017206 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017207 int i;
17208
Chris Wilson63b66e52013-08-08 15:12:06 +020017209 if (!error)
17210 return;
17211
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030017212 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Imre Deak190be112013-11-25 17:15:31 +020017213 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030017214 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030017215 error->power_well_driver);
Damien Lespiau055e3932014-08-18 13:49:10 +010017216 for_each_pipe(dev_priv, i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030017217 err_printf(m, "Pipe [%d]:\n", i);
Imre Deakddf9c532013-11-27 22:02:02 +020017218 err_printf(m, " Power: %s\n",
Jani Nikula87ad3212016-01-14 12:53:34 +020017219 onoff(error->pipe[i].power_domain_on));
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030017220 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Imre Deakf301b1e12014-04-18 15:55:04 +030017221 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017222
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030017223 err_printf(m, "Plane [%d]:\n", i);
17224 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
17225 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030017226 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030017227 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
17228 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030017229 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030017230 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030017231 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017232 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030017233 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
17234 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017235 }
17236
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030017237 err_printf(m, "Cursor [%d]:\n", i);
17238 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
17239 err_printf(m, " POS: %08x\n", error->cursor[i].position);
17240 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017241 }
Chris Wilson63b66e52013-08-08 15:12:06 +020017242
17243 for (i = 0; i < error->num_transcoders; i++) {
Jani Nikulada205632016-03-15 21:51:10 +020017244 err_printf(m, "CPU transcoder: %s\n",
Chris Wilson63b66e52013-08-08 15:12:06 +020017245 transcoder_name(error->transcoder[i].cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020017246 err_printf(m, " Power: %s\n",
Jani Nikula87ad3212016-01-14 12:53:34 +020017247 onoff(error->transcoder[i].power_domain_on));
Chris Wilson63b66e52013-08-08 15:12:06 +020017248 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
17249 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
17250 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
17251 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
17252 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
17253 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
17254 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
17255 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000017256}