blob: 14ccf49b9067b37396decc175dc42db8eb1320ad [file] [log] [blame]
Jesse Barnes79e53942008-11-07 14:24:08 -08001/*
2 * Copyright © 2006-2007 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 */
26
Daniel Vetter618563e2012-04-01 13:38:50 +020027#include <linux/dmi.h>
Jesse Barnesc1c7af62009-09-10 15:28:03 -070028#include <linux/module.h>
29#include <linux/input.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080030#include <linux/i2c.h>
Shaohua Li7662c8b2009-06-26 11:23:55 +080031#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Jesse Barnes9cce37f2010-08-13 15:11:26 -070033#include <linux/vgaarb.h>
Wu Fengguange0dac652011-09-05 14:25:34 +080034#include <drm/drm_edid.h>
David Howells760285e2012-10-02 18:01:07 +010035#include <drm/drmP.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080036#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010037#include <drm/i915_drm.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080038#include "i915_drv.h"
Jesse Barnese5510fa2010-07-01 16:48:37 -070039#include "i915_trace.h"
Xi Ruoyao319c1d42015-03-12 20:16:32 +080040#include <drm/drm_atomic.h>
Matt Roperc196e1d2015-01-21 16:35:48 -080041#include <drm/drm_atomic_helper.h>
David Howells760285e2012-10-02 18:01:07 +010042#include <drm/drm_dp_helper.h>
43#include <drm/drm_crtc_helper.h>
Matt Roper465c1202014-05-29 08:06:54 -070044#include <drm/drm_plane_helper.h>
45#include <drm/drm_rect.h>
Keith Packardc0f372b32011-11-16 22:24:52 -080046#include <linux/dma_remapping.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080047
Matt Roper465c1202014-05-29 08:06:54 -070048/* Primary plane formats for gen <= 3 */
Damien Lespiau568db4f2015-05-12 16:13:18 +010049static const uint32_t i8xx_primary_formats[] = {
Damien Lespiau67fe7dc2015-05-15 19:06:00 +010050 DRM_FORMAT_C8,
51 DRM_FORMAT_RGB565,
Matt Roper465c1202014-05-29 08:06:54 -070052 DRM_FORMAT_XRGB1555,
Damien Lespiau67fe7dc2015-05-15 19:06:00 +010053 DRM_FORMAT_XRGB8888,
Matt Roper465c1202014-05-29 08:06:54 -070054};
55
56/* Primary plane formats for gen >= 4 */
Damien Lespiau568db4f2015-05-12 16:13:18 +010057static const uint32_t i965_primary_formats[] = {
Damien Lespiau67fe7dc2015-05-15 19:06:00 +010058 DRM_FORMAT_C8,
59 DRM_FORMAT_RGB565,
60 DRM_FORMAT_XRGB8888,
Matt Roper465c1202014-05-29 08:06:54 -070061 DRM_FORMAT_XBGR8888,
Damien Lespiau6c0fd452015-05-19 12:29:16 +010062 DRM_FORMAT_XRGB2101010,
63 DRM_FORMAT_XBGR2101010,
64};
65
66static const uint32_t skl_primary_formats[] = {
67 DRM_FORMAT_C8,
68 DRM_FORMAT_RGB565,
69 DRM_FORMAT_XRGB8888,
70 DRM_FORMAT_XBGR8888,
Damien Lespiau67fe7dc2015-05-15 19:06:00 +010071 DRM_FORMAT_ARGB8888,
Matt Roper465c1202014-05-29 08:06:54 -070072 DRM_FORMAT_ABGR8888,
73 DRM_FORMAT_XRGB2101010,
Matt Roper465c1202014-05-29 08:06:54 -070074 DRM_FORMAT_XBGR2101010,
Matt Roper465c1202014-05-29 08:06:54 -070075};
76
Matt Roper3d7d6512014-06-10 08:28:13 -070077/* Cursor formats */
78static const uint32_t intel_cursor_formats[] = {
79 DRM_FORMAT_ARGB8888,
80};
81
Chris Wilson6b383a72010-09-13 13:54:26 +010082static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
Jesse Barnes79e53942008-11-07 14:24:08 -080083
Jesse Barnesf1f644d2013-06-27 00:39:25 +030084static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020085 struct intel_crtc_state *pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +030086static void ironlake_pch_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020087 struct intel_crtc_state *pipe_config);
Jesse Barnesf1f644d2013-06-27 00:39:25 +030088
Ander Conselvan de Oliveira568c6342015-06-01 12:49:57 +020089static int intel_set_mode(struct drm_atomic_state *state);
Jesse Barneseb1bfe82014-02-12 12:26:25 -080090static int intel_framebuffer_init(struct drm_device *dev,
91 struct intel_framebuffer *ifb,
92 struct drm_mode_fb_cmd2 *mode_cmd,
93 struct drm_i915_gem_object *obj);
Daniel Vetter5b18e572014-04-24 23:55:06 +020094static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc);
95static void intel_set_pipe_timings(struct intel_crtc *intel_crtc);
Daniel Vetter29407aa2014-04-24 23:55:08 +020096static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -070097 struct intel_link_m_n *m_n,
98 struct intel_link_m_n *m2_n2);
Daniel Vetter29407aa2014-04-24 23:55:08 +020099static void ironlake_set_pipeconf(struct drm_crtc *crtc);
Daniel Vetter229fca92014-04-24 23:55:09 +0200100static void haswell_set_pipeconf(struct drm_crtc *crtc);
101static void intel_set_pipe_csc(struct drm_crtc *crtc);
Ville Syrjäläd288f652014-10-28 13:20:22 +0200102static void vlv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200103 const struct intel_crtc_state *pipe_config);
Ville Syrjäläd288f652014-10-28 13:20:22 +0200104static void chv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200105 const struct intel_crtc_state *pipe_config);
Matt Roperea2c67b2014-12-23 10:41:52 -0800106static void intel_begin_crtc_commit(struct drm_crtc *crtc);
107static void intel_finish_crtc_commit(struct drm_crtc *crtc);
Chandra Konduru549e2bf2015-04-07 15:28:38 -0700108static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
109 struct intel_crtc_state *crtc_state);
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200110static int i9xx_get_refclk(const struct intel_crtc_state *crtc_state,
111 int num_connectors);
Maarten Lankhorstce22dba2015-04-21 17:12:56 +0300112static void intel_crtc_enable_planes(struct drm_crtc *crtc);
113static void intel_crtc_disable_planes(struct drm_crtc *crtc);
Damien Lespiaue7457a92013-08-08 22:28:59 +0100114
Dave Airlie0e32b392014-05-02 14:02:48 +1000115static struct intel_encoder *intel_find_encoder(struct intel_connector *connector, int pipe)
116{
117 if (!connector->mst_port)
118 return connector->encoder;
119 else
120 return &connector->mst_port->mst_encoders[pipe]->base;
121}
122
Jesse Barnes79e53942008-11-07 14:24:08 -0800123typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -0400124 int min, max;
Jesse Barnes79e53942008-11-07 14:24:08 -0800125} intel_range_t;
126
127typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -0400128 int dot_limit;
129 int p2_slow, p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -0800130} intel_p2_t;
131
Ma Lingd4906092009-03-18 20:13:27 +0800132typedef struct intel_limit intel_limit_t;
133struct intel_limit {
Akshay Joshi0206e352011-08-16 15:34:10 -0400134 intel_range_t dot, vco, n, m, m1, m2, p, p1;
135 intel_p2_t p2;
Ma Lingd4906092009-03-18 20:13:27 +0800136};
Jesse Barnes79e53942008-11-07 14:24:08 -0800137
Daniel Vetterd2acd212012-10-20 20:57:43 +0200138int
139intel_pch_rawclk(struct drm_device *dev)
140{
141 struct drm_i915_private *dev_priv = dev->dev_private;
142
143 WARN_ON(!HAS_PCH_SPLIT(dev));
144
145 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
146}
147
Chris Wilson021357a2010-09-07 20:54:59 +0100148static inline u32 /* units of 100MHz */
149intel_fdi_link_freq(struct drm_device *dev)
150{
Chris Wilson8b99e682010-10-13 09:59:17 +0100151 if (IS_GEN5(dev)) {
152 struct drm_i915_private *dev_priv = dev->dev_private;
153 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
154 } else
155 return 27;
Chris Wilson021357a2010-09-07 20:54:59 +0100156}
157
Daniel Vetter5d536e22013-07-06 12:52:06 +0200158static const intel_limit_t intel_limits_i8xx_dac = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400159 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200160 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200161 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400162 .m = { .min = 96, .max = 140 },
163 .m1 = { .min = 18, .max = 26 },
164 .m2 = { .min = 6, .max = 16 },
165 .p = { .min = 4, .max = 128 },
166 .p1 = { .min = 2, .max = 33 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700167 .p2 = { .dot_limit = 165000,
168 .p2_slow = 4, .p2_fast = 2 },
Keith Packarde4b36692009-06-05 19:22:17 -0700169};
170
Daniel Vetter5d536e22013-07-06 12:52:06 +0200171static const intel_limit_t intel_limits_i8xx_dvo = {
172 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200173 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200174 .n = { .min = 2, .max = 16 },
Daniel Vetter5d536e22013-07-06 12:52:06 +0200175 .m = { .min = 96, .max = 140 },
176 .m1 = { .min = 18, .max = 26 },
177 .m2 = { .min = 6, .max = 16 },
178 .p = { .min = 4, .max = 128 },
179 .p1 = { .min = 2, .max = 33 },
180 .p2 = { .dot_limit = 165000,
181 .p2_slow = 4, .p2_fast = 4 },
182};
183
Keith Packarde4b36692009-06-05 19:22:17 -0700184static const intel_limit_t intel_limits_i8xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400185 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200186 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200187 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400188 .m = { .min = 96, .max = 140 },
189 .m1 = { .min = 18, .max = 26 },
190 .m2 = { .min = 6, .max = 16 },
191 .p = { .min = 4, .max = 128 },
192 .p1 = { .min = 1, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700193 .p2 = { .dot_limit = 165000,
194 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700195};
Eric Anholt273e27c2011-03-30 13:01:10 -0700196
Keith Packarde4b36692009-06-05 19:22:17 -0700197static const intel_limit_t intel_limits_i9xx_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400198 .dot = { .min = 20000, .max = 400000 },
199 .vco = { .min = 1400000, .max = 2800000 },
200 .n = { .min = 1, .max = 6 },
201 .m = { .min = 70, .max = 120 },
Patrik Jakobsson4f7dfb62013-02-13 22:20:22 +0100202 .m1 = { .min = 8, .max = 18 },
203 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400204 .p = { .min = 5, .max = 80 },
205 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700206 .p2 = { .dot_limit = 200000,
207 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700208};
209
210static const intel_limit_t intel_limits_i9xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400211 .dot = { .min = 20000, .max = 400000 },
212 .vco = { .min = 1400000, .max = 2800000 },
213 .n = { .min = 1, .max = 6 },
214 .m = { .min = 70, .max = 120 },
Patrik Jakobsson53a7d2d2013-02-13 22:20:21 +0100215 .m1 = { .min = 8, .max = 18 },
216 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400217 .p = { .min = 7, .max = 98 },
218 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700219 .p2 = { .dot_limit = 112000,
220 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700221};
222
Eric Anholt273e27c2011-03-30 13:01:10 -0700223
Keith Packarde4b36692009-06-05 19:22:17 -0700224static const intel_limit_t intel_limits_g4x_sdvo = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700225 .dot = { .min = 25000, .max = 270000 },
226 .vco = { .min = 1750000, .max = 3500000},
227 .n = { .min = 1, .max = 4 },
228 .m = { .min = 104, .max = 138 },
229 .m1 = { .min = 17, .max = 23 },
230 .m2 = { .min = 5, .max = 11 },
231 .p = { .min = 10, .max = 30 },
232 .p1 = { .min = 1, .max = 3},
233 .p2 = { .dot_limit = 270000,
234 .p2_slow = 10,
235 .p2_fast = 10
Ma Ling044c7c42009-03-18 20:13:23 +0800236 },
Keith Packarde4b36692009-06-05 19:22:17 -0700237};
238
239static const intel_limit_t intel_limits_g4x_hdmi = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700240 .dot = { .min = 22000, .max = 400000 },
241 .vco = { .min = 1750000, .max = 3500000},
242 .n = { .min = 1, .max = 4 },
243 .m = { .min = 104, .max = 138 },
244 .m1 = { .min = 16, .max = 23 },
245 .m2 = { .min = 5, .max = 11 },
246 .p = { .min = 5, .max = 80 },
247 .p1 = { .min = 1, .max = 8},
248 .p2 = { .dot_limit = 165000,
249 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700250};
251
252static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700253 .dot = { .min = 20000, .max = 115000 },
254 .vco = { .min = 1750000, .max = 3500000 },
255 .n = { .min = 1, .max = 3 },
256 .m = { .min = 104, .max = 138 },
257 .m1 = { .min = 17, .max = 23 },
258 .m2 = { .min = 5, .max = 11 },
259 .p = { .min = 28, .max = 112 },
260 .p1 = { .min = 2, .max = 8 },
261 .p2 = { .dot_limit = 0,
262 .p2_slow = 14, .p2_fast = 14
Ma Ling044c7c42009-03-18 20:13:23 +0800263 },
Keith Packarde4b36692009-06-05 19:22:17 -0700264};
265
266static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700267 .dot = { .min = 80000, .max = 224000 },
268 .vco = { .min = 1750000, .max = 3500000 },
269 .n = { .min = 1, .max = 3 },
270 .m = { .min = 104, .max = 138 },
271 .m1 = { .min = 17, .max = 23 },
272 .m2 = { .min = 5, .max = 11 },
273 .p = { .min = 14, .max = 42 },
274 .p1 = { .min = 2, .max = 6 },
275 .p2 = { .dot_limit = 0,
276 .p2_slow = 7, .p2_fast = 7
Ma Ling044c7c42009-03-18 20:13:23 +0800277 },
Keith Packarde4b36692009-06-05 19:22:17 -0700278};
279
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500280static const intel_limit_t intel_limits_pineview_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400281 .dot = { .min = 20000, .max = 400000},
282 .vco = { .min = 1700000, .max = 3500000 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700283 /* Pineview's Ncounter is a ring counter */
Akshay Joshi0206e352011-08-16 15:34:10 -0400284 .n = { .min = 3, .max = 6 },
285 .m = { .min = 2, .max = 256 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700286 /* Pineview only has one combined m divider, which we treat as m2. */
Akshay Joshi0206e352011-08-16 15:34:10 -0400287 .m1 = { .min = 0, .max = 0 },
288 .m2 = { .min = 0, .max = 254 },
289 .p = { .min = 5, .max = 80 },
290 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700291 .p2 = { .dot_limit = 200000,
292 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700293};
294
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500295static const intel_limit_t intel_limits_pineview_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400296 .dot = { .min = 20000, .max = 400000 },
297 .vco = { .min = 1700000, .max = 3500000 },
298 .n = { .min = 3, .max = 6 },
299 .m = { .min = 2, .max = 256 },
300 .m1 = { .min = 0, .max = 0 },
301 .m2 = { .min = 0, .max = 254 },
302 .p = { .min = 7, .max = 112 },
303 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700304 .p2 = { .dot_limit = 112000,
305 .p2_slow = 14, .p2_fast = 14 },
Keith Packarde4b36692009-06-05 19:22:17 -0700306};
307
Eric Anholt273e27c2011-03-30 13:01:10 -0700308/* Ironlake / Sandybridge
309 *
310 * We calculate clock using (register_value + 2) for N/M1/M2, so here
311 * the range value for them is (actual_value - 2).
312 */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800313static const intel_limit_t intel_limits_ironlake_dac = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700314 .dot = { .min = 25000, .max = 350000 },
315 .vco = { .min = 1760000, .max = 3510000 },
316 .n = { .min = 1, .max = 5 },
317 .m = { .min = 79, .max = 127 },
318 .m1 = { .min = 12, .max = 22 },
319 .m2 = { .min = 5, .max = 9 },
320 .p = { .min = 5, .max = 80 },
321 .p1 = { .min = 1, .max = 8 },
322 .p2 = { .dot_limit = 225000,
323 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700324};
325
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800326static const intel_limit_t intel_limits_ironlake_single_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700327 .dot = { .min = 25000, .max = 350000 },
328 .vco = { .min = 1760000, .max = 3510000 },
329 .n = { .min = 1, .max = 3 },
330 .m = { .min = 79, .max = 118 },
331 .m1 = { .min = 12, .max = 22 },
332 .m2 = { .min = 5, .max = 9 },
333 .p = { .min = 28, .max = 112 },
334 .p1 = { .min = 2, .max = 8 },
335 .p2 = { .dot_limit = 225000,
336 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800337};
338
339static const intel_limit_t intel_limits_ironlake_dual_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700340 .dot = { .min = 25000, .max = 350000 },
341 .vco = { .min = 1760000, .max = 3510000 },
342 .n = { .min = 1, .max = 3 },
343 .m = { .min = 79, .max = 127 },
344 .m1 = { .min = 12, .max = 22 },
345 .m2 = { .min = 5, .max = 9 },
346 .p = { .min = 14, .max = 56 },
347 .p1 = { .min = 2, .max = 8 },
348 .p2 = { .dot_limit = 225000,
349 .p2_slow = 7, .p2_fast = 7 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800350};
351
Eric Anholt273e27c2011-03-30 13:01:10 -0700352/* LVDS 100mhz refclk limits. */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800353static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700354 .dot = { .min = 25000, .max = 350000 },
355 .vco = { .min = 1760000, .max = 3510000 },
356 .n = { .min = 1, .max = 2 },
357 .m = { .min = 79, .max = 126 },
358 .m1 = { .min = 12, .max = 22 },
359 .m2 = { .min = 5, .max = 9 },
360 .p = { .min = 28, .max = 112 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400361 .p1 = { .min = 2, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700362 .p2 = { .dot_limit = 225000,
363 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800364};
365
366static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700367 .dot = { .min = 25000, .max = 350000 },
368 .vco = { .min = 1760000, .max = 3510000 },
369 .n = { .min = 1, .max = 3 },
370 .m = { .min = 79, .max = 126 },
371 .m1 = { .min = 12, .max = 22 },
372 .m2 = { .min = 5, .max = 9 },
373 .p = { .min = 14, .max = 42 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400374 .p1 = { .min = 2, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700375 .p2 = { .dot_limit = 225000,
376 .p2_slow = 7, .p2_fast = 7 },
Zhao Yakui45476682009-12-31 16:06:04 +0800377};
378
Ville Syrjälädc730512013-09-24 21:26:30 +0300379static const intel_limit_t intel_limits_vlv = {
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300380 /*
381 * These are the data rate limits (measured in fast clocks)
382 * since those are the strictest limits we have. The fast
383 * clock and actual rate limits are more relaxed, so checking
384 * them would make no difference.
385 */
386 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
Daniel Vetter75e53982013-04-18 21:10:43 +0200387 .vco = { .min = 4000000, .max = 6000000 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700388 .n = { .min = 1, .max = 7 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700389 .m1 = { .min = 2, .max = 3 },
390 .m2 = { .min = 11, .max = 156 },
Ville Syrjäläb99ab662013-09-24 21:26:26 +0300391 .p1 = { .min = 2, .max = 3 },
Ville Syrjälä5fdc9c492013-09-24 21:26:29 +0300392 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700393};
394
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300395static const intel_limit_t intel_limits_chv = {
396 /*
397 * These are the data rate limits (measured in fast clocks)
398 * since those are the strictest limits we have. The fast
399 * clock and actual rate limits are more relaxed, so checking
400 * them would make no difference.
401 */
402 .dot = { .min = 25000 * 5, .max = 540000 * 5},
Ville Syrjälä17fe1022015-02-26 21:01:52 +0200403 .vco = { .min = 4800000, .max = 6480000 },
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300404 .n = { .min = 1, .max = 1 },
405 .m1 = { .min = 2, .max = 2 },
406 .m2 = { .min = 24 << 22, .max = 175 << 22 },
407 .p1 = { .min = 2, .max = 4 },
408 .p2 = { .p2_slow = 1, .p2_fast = 14 },
409};
410
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200411static const intel_limit_t intel_limits_bxt = {
412 /* FIXME: find real dot limits */
413 .dot = { .min = 0, .max = INT_MAX },
414 .vco = { .min = 4800000, .max = 6480000 },
415 .n = { .min = 1, .max = 1 },
416 .m1 = { .min = 2, .max = 2 },
417 /* FIXME: find real m2 limits */
418 .m2 = { .min = 2 << 22, .max = 255 << 22 },
419 .p1 = { .min = 2, .max = 4 },
420 .p2 = { .p2_slow = 1, .p2_fast = 20 },
421};
422
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300423static void vlv_clock(int refclk, intel_clock_t *clock)
424{
425 clock->m = clock->m1 * clock->m2;
426 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200427 if (WARN_ON(clock->n == 0 || clock->p == 0))
428 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300429 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
430 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300431}
432
Ander Conselvan de Oliveiracdba9542015-06-01 12:49:51 +0200433static bool
434needs_modeset(struct drm_crtc_state *state)
435{
436 return state->mode_changed || state->active_changed;
437}
438
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300439/**
440 * Returns whether any output on the specified pipe is of the specified type
441 */
Damien Lespiau40935612014-10-29 11:16:59 +0000442bool intel_pipe_has_type(struct intel_crtc *crtc, enum intel_output_type type)
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300443{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300444 struct drm_device *dev = crtc->base.dev;
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300445 struct intel_encoder *encoder;
446
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300447 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300448 if (encoder->type == type)
449 return true;
450
451 return false;
452}
453
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200454/**
455 * Returns whether any output on the specified pipe will have the specified
456 * type after a staged modeset is complete, i.e., the same as
457 * intel_pipe_has_type() but looking at encoder->new_crtc instead of
458 * encoder->crtc.
459 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200460static bool intel_pipe_will_have_type(const struct intel_crtc_state *crtc_state,
461 int type)
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200462{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200463 struct drm_atomic_state *state = crtc_state->base.state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +0300464 struct drm_connector *connector;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200465 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200466 struct intel_encoder *encoder;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200467 int i, num_connectors = 0;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200468
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +0300469 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200470 if (connector_state->crtc != crtc_state->base.crtc)
471 continue;
472
473 num_connectors++;
474
475 encoder = to_intel_encoder(connector_state->best_encoder);
476 if (encoder->type == type)
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200477 return true;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200478 }
479
480 WARN_ON(num_connectors == 0);
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200481
482 return false;
483}
484
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200485static const intel_limit_t *
486intel_ironlake_limit(struct intel_crtc_state *crtc_state, int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800487{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200488 struct drm_device *dev = crtc_state->base.crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800489 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800490
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200491 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100492 if (intel_is_dual_link_lvds(dev)) {
Chris Wilson1b894b52010-12-14 20:04:54 +0000493 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800494 limit = &intel_limits_ironlake_dual_lvds_100m;
495 else
496 limit = &intel_limits_ironlake_dual_lvds;
497 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000498 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800499 limit = &intel_limits_ironlake_single_lvds_100m;
500 else
501 limit = &intel_limits_ironlake_single_lvds;
502 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200503 } else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800504 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800505
506 return limit;
507}
508
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200509static const intel_limit_t *
510intel_g4x_limit(struct intel_crtc_state *crtc_state)
Ma Ling044c7c42009-03-18 20:13:23 +0800511{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200512 struct drm_device *dev = crtc_state->base.crtc->dev;
Ma Ling044c7c42009-03-18 20:13:23 +0800513 const intel_limit_t *limit;
514
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200515 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100516 if (intel_is_dual_link_lvds(dev))
Keith Packarde4b36692009-06-05 19:22:17 -0700517 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800518 else
Keith Packarde4b36692009-06-05 19:22:17 -0700519 limit = &intel_limits_g4x_single_channel_lvds;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200520 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI) ||
521 intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700522 limit = &intel_limits_g4x_hdmi;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200523 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700524 limit = &intel_limits_g4x_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800525 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700526 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800527
528 return limit;
529}
530
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200531static const intel_limit_t *
532intel_limit(struct intel_crtc_state *crtc_state, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800533{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200534 struct drm_device *dev = crtc_state->base.crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800535 const intel_limit_t *limit;
536
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200537 if (IS_BROXTON(dev))
538 limit = &intel_limits_bxt;
539 else if (HAS_PCH_SPLIT(dev))
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200540 limit = intel_ironlake_limit(crtc_state, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800541 else if (IS_G4X(dev)) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200542 limit = intel_g4x_limit(crtc_state);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500543 } else if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200544 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500545 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800546 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500547 limit = &intel_limits_pineview_sdvo;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300548 } else if (IS_CHERRYVIEW(dev)) {
549 limit = &intel_limits_chv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700550 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälädc730512013-09-24 21:26:30 +0300551 limit = &intel_limits_vlv;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100552 } else if (!IS_GEN2(dev)) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200553 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100554 limit = &intel_limits_i9xx_lvds;
555 else
556 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800557 } else {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200558 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700559 limit = &intel_limits_i8xx_lvds;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200560 else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO))
Keith Packarde4b36692009-06-05 19:22:17 -0700561 limit = &intel_limits_i8xx_dvo;
Daniel Vetter5d536e22013-07-06 12:52:06 +0200562 else
563 limit = &intel_limits_i8xx_dac;
Jesse Barnes79e53942008-11-07 14:24:08 -0800564 }
565 return limit;
566}
567
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500568/* m1 is reserved as 0 in Pineview, n is a ring counter */
569static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800570{
Shaohua Li21778322009-02-23 15:19:16 +0800571 clock->m = clock->m2 + 2;
572 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200573 if (WARN_ON(clock->n == 0 || clock->p == 0))
574 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300575 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
576 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Shaohua Li21778322009-02-23 15:19:16 +0800577}
578
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200579static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
580{
581 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
582}
583
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200584static void i9xx_clock(int refclk, intel_clock_t *clock)
Shaohua Li21778322009-02-23 15:19:16 +0800585{
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200586 clock->m = i9xx_dpll_compute_m(clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800587 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200588 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
589 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300590 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
591 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Jesse Barnes79e53942008-11-07 14:24:08 -0800592}
593
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300594static void chv_clock(int refclk, intel_clock_t *clock)
595{
596 clock->m = clock->m1 * clock->m2;
597 clock->p = clock->p1 * clock->p2;
598 if (WARN_ON(clock->n == 0 || clock->p == 0))
599 return;
600 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
601 clock->n << 22);
602 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
603}
604
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800605#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800606/**
607 * Returns whether the given set of divisors are valid for a given refclk with
608 * the given connectors.
609 */
610
Chris Wilson1b894b52010-12-14 20:04:54 +0000611static bool intel_PLL_is_valid(struct drm_device *dev,
612 const intel_limit_t *limit,
613 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800614{
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300615 if (clock->n < limit->n.min || limit->n.max < clock->n)
616 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800617 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400618 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800619 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400620 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800621 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400622 INTELPllInvalid("m1 out of range\n");
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300623
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200624 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev) && !IS_BROXTON(dev))
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300625 if (clock->m1 <= clock->m2)
626 INTELPllInvalid("m1 <= m2\n");
627
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200628 if (!IS_VALLEYVIEW(dev) && !IS_BROXTON(dev)) {
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300629 if (clock->p < limit->p.min || limit->p.max < clock->p)
630 INTELPllInvalid("p out of range\n");
631 if (clock->m < limit->m.min || limit->m.max < clock->m)
632 INTELPllInvalid("m out of range\n");
633 }
634
Jesse Barnes79e53942008-11-07 14:24:08 -0800635 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400636 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800637 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
638 * connector, etc., rather than just a single range.
639 */
640 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400641 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800642
643 return true;
644}
645
Ma Lingd4906092009-03-18 20:13:27 +0800646static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200647i9xx_find_best_dpll(const intel_limit_t *limit,
648 struct intel_crtc_state *crtc_state,
Sean Paulcec2f352012-01-10 15:09:36 -0800649 int target, int refclk, intel_clock_t *match_clock,
650 intel_clock_t *best_clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800651{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200652 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300653 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800654 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800655 int err = target;
656
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200657 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800658 /*
Daniel Vettera210b022012-11-26 17:22:08 +0100659 * For LVDS just rely on its current settings for dual-channel.
660 * We haven't figured out how to reliably set up different
661 * single/dual channel state, if we even can.
Jesse Barnes79e53942008-11-07 14:24:08 -0800662 */
Daniel Vetter1974cad2012-11-26 17:22:09 +0100663 if (intel_is_dual_link_lvds(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800664 clock.p2 = limit->p2.p2_fast;
665 else
666 clock.p2 = limit->p2.p2_slow;
667 } else {
668 if (target < limit->p2.dot_limit)
669 clock.p2 = limit->p2.p2_slow;
670 else
671 clock.p2 = limit->p2.p2_fast;
672 }
673
Akshay Joshi0206e352011-08-16 15:34:10 -0400674 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800675
Zhao Yakui42158662009-11-20 11:24:18 +0800676 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
677 clock.m1++) {
678 for (clock.m2 = limit->m2.min;
679 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterc0efc382013-06-03 20:56:24 +0200680 if (clock.m2 >= clock.m1)
Zhao Yakui42158662009-11-20 11:24:18 +0800681 break;
682 for (clock.n = limit->n.min;
683 clock.n <= limit->n.max; clock.n++) {
684 for (clock.p1 = limit->p1.min;
685 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800686 int this_err;
687
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200688 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000689 if (!intel_PLL_is_valid(dev, limit,
690 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800691 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800692 if (match_clock &&
693 clock.p != match_clock->p)
694 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800695
696 this_err = abs(clock.dot - target);
697 if (this_err < err) {
698 *best_clock = clock;
699 err = this_err;
700 }
701 }
702 }
703 }
704 }
705
706 return (err != target);
707}
708
Ma Lingd4906092009-03-18 20:13:27 +0800709static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200710pnv_find_best_dpll(const intel_limit_t *limit,
711 struct intel_crtc_state *crtc_state,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200712 int target, int refclk, intel_clock_t *match_clock,
713 intel_clock_t *best_clock)
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200714{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200715 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300716 struct drm_device *dev = crtc->base.dev;
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200717 intel_clock_t clock;
718 int err = target;
719
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200720 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200721 /*
722 * For LVDS just rely on its current settings for dual-channel.
723 * We haven't figured out how to reliably set up different
724 * single/dual channel state, if we even can.
725 */
726 if (intel_is_dual_link_lvds(dev))
727 clock.p2 = limit->p2.p2_fast;
728 else
729 clock.p2 = limit->p2.p2_slow;
730 } else {
731 if (target < limit->p2.dot_limit)
732 clock.p2 = limit->p2.p2_slow;
733 else
734 clock.p2 = limit->p2.p2_fast;
735 }
736
737 memset(best_clock, 0, sizeof(*best_clock));
738
739 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
740 clock.m1++) {
741 for (clock.m2 = limit->m2.min;
742 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200743 for (clock.n = limit->n.min;
744 clock.n <= limit->n.max; clock.n++) {
745 for (clock.p1 = limit->p1.min;
746 clock.p1 <= limit->p1.max; clock.p1++) {
747 int this_err;
748
749 pineview_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800750 if (!intel_PLL_is_valid(dev, limit,
751 &clock))
752 continue;
753 if (match_clock &&
754 clock.p != match_clock->p)
755 continue;
756
757 this_err = abs(clock.dot - target);
758 if (this_err < err) {
759 *best_clock = clock;
760 err = this_err;
761 }
762 }
763 }
764 }
765 }
766
767 return (err != target);
768}
769
Ma Lingd4906092009-03-18 20:13:27 +0800770static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200771g4x_find_best_dpll(const intel_limit_t *limit,
772 struct intel_crtc_state *crtc_state,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200773 int target, int refclk, intel_clock_t *match_clock,
774 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800775{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200776 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300777 struct drm_device *dev = crtc->base.dev;
Ma Lingd4906092009-03-18 20:13:27 +0800778 intel_clock_t clock;
779 int max_n;
780 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400781 /* approximately equals target * 0.00585 */
782 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800783 found = false;
784
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200785 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100786 if (intel_is_dual_link_lvds(dev))
Ma Lingd4906092009-03-18 20:13:27 +0800787 clock.p2 = limit->p2.p2_fast;
788 else
789 clock.p2 = limit->p2.p2_slow;
790 } else {
791 if (target < limit->p2.dot_limit)
792 clock.p2 = limit->p2.p2_slow;
793 else
794 clock.p2 = limit->p2.p2_fast;
795 }
796
797 memset(best_clock, 0, sizeof(*best_clock));
798 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200799 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800800 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200801 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800802 for (clock.m1 = limit->m1.max;
803 clock.m1 >= limit->m1.min; clock.m1--) {
804 for (clock.m2 = limit->m2.max;
805 clock.m2 >= limit->m2.min; clock.m2--) {
806 for (clock.p1 = limit->p1.max;
807 clock.p1 >= limit->p1.min; clock.p1--) {
808 int this_err;
809
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200810 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000811 if (!intel_PLL_is_valid(dev, limit,
812 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800813 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000814
815 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800816 if (this_err < err_most) {
817 *best_clock = clock;
818 err_most = this_err;
819 max_n = clock.n;
820 found = true;
821 }
822 }
823 }
824 }
825 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800826 return found;
827}
Ma Lingd4906092009-03-18 20:13:27 +0800828
Imre Deakd5dd62b2015-03-17 11:40:03 +0200829/*
830 * Check if the calculated PLL configuration is more optimal compared to the
831 * best configuration and error found so far. Return the calculated error.
832 */
833static bool vlv_PLL_is_optimal(struct drm_device *dev, int target_freq,
834 const intel_clock_t *calculated_clock,
835 const intel_clock_t *best_clock,
836 unsigned int best_error_ppm,
837 unsigned int *error_ppm)
838{
Imre Deak9ca3ba02015-03-17 11:40:05 +0200839 /*
840 * For CHV ignore the error and consider only the P value.
841 * Prefer a bigger P value based on HW requirements.
842 */
843 if (IS_CHERRYVIEW(dev)) {
844 *error_ppm = 0;
845
846 return calculated_clock->p > best_clock->p;
847 }
848
Imre Deak24be4e42015-03-17 11:40:04 +0200849 if (WARN_ON_ONCE(!target_freq))
850 return false;
851
Imre Deakd5dd62b2015-03-17 11:40:03 +0200852 *error_ppm = div_u64(1000000ULL *
853 abs(target_freq - calculated_clock->dot),
854 target_freq);
855 /*
856 * Prefer a better P value over a better (smaller) error if the error
857 * is small. Ensure this preference for future configurations too by
858 * setting the error to 0.
859 */
860 if (*error_ppm < 100 && calculated_clock->p > best_clock->p) {
861 *error_ppm = 0;
862
863 return true;
864 }
865
866 return *error_ppm + 10 < best_error_ppm;
867}
868
Zhenyu Wang2c072452009-06-05 15:38:42 +0800869static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200870vlv_find_best_dpll(const intel_limit_t *limit,
871 struct intel_crtc_state *crtc_state,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200872 int target, int refclk, intel_clock_t *match_clock,
873 intel_clock_t *best_clock)
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700874{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200875 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300876 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300877 intel_clock_t clock;
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300878 unsigned int bestppm = 1000000;
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300879 /* min update 19.2 MHz */
880 int max_n = min(limit->n.max, refclk / 19200);
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300881 bool found = false;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700882
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300883 target *= 5; /* fast clock */
884
885 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700886
887 /* based on hardware requirement, prefer smaller n to precision */
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300888 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Ville Syrjälä811bbf02013-09-24 21:26:25 +0300889 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
Ville Syrjälä889059d2013-09-24 21:26:27 +0300890 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
Ville Syrjäläc1a9ae42013-09-24 21:26:23 +0300891 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300892 clock.p = clock.p1 * clock.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700893 /* based on hardware requirement, prefer bigger m1,m2 values */
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300894 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
Imre Deakd5dd62b2015-03-17 11:40:03 +0200895 unsigned int ppm;
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300896
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300897 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
898 refclk * clock.m1);
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300899
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300900 vlv_clock(refclk, &clock);
901
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300902 if (!intel_PLL_is_valid(dev, limit,
903 &clock))
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300904 continue;
905
Imre Deakd5dd62b2015-03-17 11:40:03 +0200906 if (!vlv_PLL_is_optimal(dev, target,
907 &clock,
908 best_clock,
909 bestppm, &ppm))
910 continue;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300911
Imre Deakd5dd62b2015-03-17 11:40:03 +0200912 *best_clock = clock;
913 bestppm = ppm;
914 found = true;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700915 }
916 }
917 }
918 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700919
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300920 return found;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700921}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700922
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300923static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200924chv_find_best_dpll(const intel_limit_t *limit,
925 struct intel_crtc_state *crtc_state,
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300926 int target, int refclk, intel_clock_t *match_clock,
927 intel_clock_t *best_clock)
928{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200929 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300930 struct drm_device *dev = crtc->base.dev;
Imre Deak9ca3ba02015-03-17 11:40:05 +0200931 unsigned int best_error_ppm;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300932 intel_clock_t clock;
933 uint64_t m2;
934 int found = false;
935
936 memset(best_clock, 0, sizeof(*best_clock));
Imre Deak9ca3ba02015-03-17 11:40:05 +0200937 best_error_ppm = 1000000;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300938
939 /*
940 * Based on hardware doc, the n always set to 1, and m1 always
941 * set to 2. If requires to support 200Mhz refclk, we need to
942 * revisit this because n may not 1 anymore.
943 */
944 clock.n = 1, clock.m1 = 2;
945 target *= 5; /* fast clock */
946
947 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
948 for (clock.p2 = limit->p2.p2_fast;
949 clock.p2 >= limit->p2.p2_slow;
950 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
Imre Deak9ca3ba02015-03-17 11:40:05 +0200951 unsigned int error_ppm;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300952
953 clock.p = clock.p1 * clock.p2;
954
955 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
956 clock.n) << 22, refclk * clock.m1);
957
958 if (m2 > INT_MAX/clock.m1)
959 continue;
960
961 clock.m2 = m2;
962
963 chv_clock(refclk, &clock);
964
965 if (!intel_PLL_is_valid(dev, limit, &clock))
966 continue;
967
Imre Deak9ca3ba02015-03-17 11:40:05 +0200968 if (!vlv_PLL_is_optimal(dev, target, &clock, best_clock,
969 best_error_ppm, &error_ppm))
970 continue;
971
972 *best_clock = clock;
973 best_error_ppm = error_ppm;
974 found = true;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300975 }
976 }
977
978 return found;
979}
980
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200981bool bxt_find_best_dpll(struct intel_crtc_state *crtc_state, int target_clock,
982 intel_clock_t *best_clock)
983{
984 int refclk = i9xx_get_refclk(crtc_state, 0);
985
986 return chv_find_best_dpll(intel_limit(crtc_state, refclk), crtc_state,
987 target_clock, refclk, NULL, best_clock);
988}
989
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300990bool intel_crtc_active(struct drm_crtc *crtc)
991{
992 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
993
994 /* Be paranoid as we can arrive here with only partial
995 * state retrieved from the hardware during setup.
996 *
Damien Lespiau241bfc32013-09-25 16:45:37 +0100997 * We can ditch the adjusted_mode.crtc_clock check as soon
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300998 * as Haswell has gained clock readout/fastboot support.
999 *
Dave Airlie66e514c2014-04-03 07:51:54 +10001000 * We can ditch the crtc->primary->fb check as soon as we can
Ville Syrjälä20ddf662013-09-04 18:25:25 +03001001 * properly reconstruct framebuffers.
Matt Roperc3d1f432015-03-09 10:19:23 -07001002 *
1003 * FIXME: The intel_crtc->active here should be switched to
1004 * crtc->state->active once we have proper CRTC states wired up
1005 * for atomic.
Ville Syrjälä20ddf662013-09-04 18:25:25 +03001006 */
Matt Roperc3d1f432015-03-09 10:19:23 -07001007 return intel_crtc->active && crtc->primary->state->fb &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001008 intel_crtc->config->base.adjusted_mode.crtc_clock;
Ville Syrjälä20ddf662013-09-04 18:25:25 +03001009}
1010
Paulo Zanonia5c961d2012-10-24 15:59:34 -02001011enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
1012 enum pipe pipe)
1013{
1014 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
1015 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1016
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001017 return intel_crtc->config->cpu_transcoder;
Paulo Zanonia5c961d2012-10-24 15:59:34 -02001018}
1019
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +03001020static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
1021{
1022 struct drm_i915_private *dev_priv = dev->dev_private;
1023 u32 reg = PIPEDSL(pipe);
1024 u32 line1, line2;
1025 u32 line_mask;
1026
1027 if (IS_GEN2(dev))
1028 line_mask = DSL_LINEMASK_GEN2;
1029 else
1030 line_mask = DSL_LINEMASK_GEN3;
1031
1032 line1 = I915_READ(reg) & line_mask;
1033 mdelay(5);
1034 line2 = I915_READ(reg) & line_mask;
1035
1036 return line1 == line2;
1037}
1038
Keith Packardab7ad7f2010-10-03 00:33:06 -07001039/*
1040 * intel_wait_for_pipe_off - wait for pipe to turn off
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001041 * @crtc: crtc whose pipe to wait for
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001042 *
1043 * After disabling a pipe, we can't wait for vblank in the usual way,
1044 * spinning on the vblank interrupt status bit, since we won't actually
1045 * see an interrupt when the pipe is disabled.
1046 *
Keith Packardab7ad7f2010-10-03 00:33:06 -07001047 * On Gen4 and above:
1048 * wait for the pipe register state bit to turn off
1049 *
1050 * Otherwise:
1051 * wait for the display line value to settle (it usually
1052 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +01001053 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001054 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001055static void intel_wait_for_pipe_off(struct intel_crtc *crtc)
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001056{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001057 struct drm_device *dev = crtc->base.dev;
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001058 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001059 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001060 enum pipe pipe = crtc->pipe;
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001061
Keith Packardab7ad7f2010-10-03 00:33:06 -07001062 if (INTEL_INFO(dev)->gen >= 4) {
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001063 int reg = PIPECONF(cpu_transcoder);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001064
Keith Packardab7ad7f2010-10-03 00:33:06 -07001065 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +01001066 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
1067 100))
Daniel Vetter284637d2012-07-09 09:51:57 +02001068 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -07001069 } else {
Keith Packardab7ad7f2010-10-03 00:33:06 -07001070 /* Wait for the display line to settle */
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +03001071 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
Daniel Vetter284637d2012-07-09 09:51:57 +02001072 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -07001073 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001074}
1075
Damien Lespiaub0ea7d32012-12-13 16:09:00 +00001076/*
1077 * ibx_digital_port_connected - is the specified port connected?
1078 * @dev_priv: i915 private structure
1079 * @port: the port to test
1080 *
1081 * Returns true if @port is connected, false otherwise.
1082 */
1083bool ibx_digital_port_connected(struct drm_i915_private *dev_priv,
1084 struct intel_digital_port *port)
1085{
1086 u32 bit;
1087
Damien Lespiauc36346e2012-12-13 16:09:03 +00001088 if (HAS_PCH_IBX(dev_priv->dev)) {
Robin Schroereba905b2014-05-18 02:24:50 +02001089 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +00001090 case PORT_B:
1091 bit = SDE_PORTB_HOTPLUG;
1092 break;
1093 case PORT_C:
1094 bit = SDE_PORTC_HOTPLUG;
1095 break;
1096 case PORT_D:
1097 bit = SDE_PORTD_HOTPLUG;
1098 break;
1099 default:
1100 return true;
1101 }
1102 } else {
Robin Schroereba905b2014-05-18 02:24:50 +02001103 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +00001104 case PORT_B:
1105 bit = SDE_PORTB_HOTPLUG_CPT;
1106 break;
1107 case PORT_C:
1108 bit = SDE_PORTC_HOTPLUG_CPT;
1109 break;
1110 case PORT_D:
1111 bit = SDE_PORTD_HOTPLUG_CPT;
1112 break;
1113 default:
1114 return true;
1115 }
Damien Lespiaub0ea7d32012-12-13 16:09:00 +00001116 }
1117
1118 return I915_READ(SDEISR) & bit;
1119}
1120
Jesse Barnesb24e7172011-01-04 15:09:30 -08001121static const char *state_string(bool enabled)
1122{
1123 return enabled ? "on" : "off";
1124}
1125
1126/* Only for pre-ILK configs */
Daniel Vetter55607e82013-06-16 21:42:39 +02001127void assert_pll(struct drm_i915_private *dev_priv,
1128 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001129{
1130 int reg;
1131 u32 val;
1132 bool cur_state;
1133
1134 reg = DPLL(pipe);
1135 val = I915_READ(reg);
1136 cur_state = !!(val & DPLL_VCO_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001137 I915_STATE_WARN(cur_state != state,
Jesse Barnesb24e7172011-01-04 15:09:30 -08001138 "PLL state assertion failure (expected %s, current %s)\n",
1139 state_string(state), state_string(cur_state));
1140}
Jesse Barnesb24e7172011-01-04 15:09:30 -08001141
Jani Nikula23538ef2013-08-27 15:12:22 +03001142/* XXX: the dsi pll is shared between MIPI DSI ports */
1143static void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
1144{
1145 u32 val;
1146 bool cur_state;
1147
Ville Syrjäläa5805162015-05-26 20:42:30 +03001148 mutex_lock(&dev_priv->sb_lock);
Jani Nikula23538ef2013-08-27 15:12:22 +03001149 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
Ville Syrjäläa5805162015-05-26 20:42:30 +03001150 mutex_unlock(&dev_priv->sb_lock);
Jani Nikula23538ef2013-08-27 15:12:22 +03001151
1152 cur_state = val & DSI_PLL_VCO_EN;
Rob Clarke2c719b2014-12-15 13:56:32 -05001153 I915_STATE_WARN(cur_state != state,
Jani Nikula23538ef2013-08-27 15:12:22 +03001154 "DSI PLL state assertion failure (expected %s, current %s)\n",
1155 state_string(state), state_string(cur_state));
1156}
1157#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1158#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1159
Daniel Vetter55607e82013-06-16 21:42:39 +02001160struct intel_shared_dpll *
Daniel Vettere2b78262013-06-07 23:10:03 +02001161intel_crtc_to_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes040484a2011-01-03 12:14:26 -08001162{
Daniel Vettere2b78262013-06-07 23:10:03 +02001163 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1164
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001165 if (crtc->config->shared_dpll < 0)
Daniel Vettere2b78262013-06-07 23:10:03 +02001166 return NULL;
1167
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001168 return &dev_priv->shared_dplls[crtc->config->shared_dpll];
Daniel Vettere2b78262013-06-07 23:10:03 +02001169}
1170
Jesse Barnesb24e7172011-01-04 15:09:30 -08001171/* For ILK+ */
Daniel Vetter55607e82013-06-16 21:42:39 +02001172void assert_shared_dpll(struct drm_i915_private *dev_priv,
1173 struct intel_shared_dpll *pll,
1174 bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001175{
Jesse Barnes040484a2011-01-03 12:14:26 -08001176 bool cur_state;
Daniel Vetter53589012013-06-05 13:34:16 +02001177 struct intel_dpll_hw_state hw_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001178
Chris Wilson92b27b02012-05-20 18:10:50 +01001179 if (WARN (!pll,
Daniel Vetter46edb022013-06-05 13:34:12 +02001180 "asserting DPLL %s with no DPLL\n", state_string(state)))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001181 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001182
Daniel Vetter53589012013-06-05 13:34:16 +02001183 cur_state = pll->get_hw_state(dev_priv, pll, &hw_state);
Rob Clarke2c719b2014-12-15 13:56:32 -05001184 I915_STATE_WARN(cur_state != state,
Daniel Vetter53589012013-06-05 13:34:16 +02001185 "%s assertion failure (expected %s, current %s)\n",
1186 pll->name, state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001187}
Jesse Barnes040484a2011-01-03 12:14:26 -08001188
1189static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1190 enum pipe pipe, bool state)
1191{
1192 int reg;
1193 u32 val;
1194 bool cur_state;
Paulo Zanoniad80a812012-10-24 16:06:19 -02001195 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1196 pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001197
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001198 if (HAS_DDI(dev_priv->dev)) {
1199 /* DDI does not have a specific FDI_TX register */
Paulo Zanoniad80a812012-10-24 16:06:19 -02001200 reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001201 val = I915_READ(reg);
Paulo Zanoniad80a812012-10-24 16:06:19 -02001202 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001203 } else {
1204 reg = FDI_TX_CTL(pipe);
1205 val = I915_READ(reg);
1206 cur_state = !!(val & FDI_TX_ENABLE);
1207 }
Rob Clarke2c719b2014-12-15 13:56:32 -05001208 I915_STATE_WARN(cur_state != state,
Jesse Barnes040484a2011-01-03 12:14:26 -08001209 "FDI TX state assertion failure (expected %s, current %s)\n",
1210 state_string(state), state_string(cur_state));
1211}
1212#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1213#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1214
1215static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1216 enum pipe pipe, bool state)
1217{
1218 int reg;
1219 u32 val;
1220 bool cur_state;
1221
Paulo Zanonid63fa0d2012-11-20 13:27:35 -02001222 reg = FDI_RX_CTL(pipe);
1223 val = I915_READ(reg);
1224 cur_state = !!(val & FDI_RX_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001225 I915_STATE_WARN(cur_state != state,
Jesse Barnes040484a2011-01-03 12:14:26 -08001226 "FDI RX state assertion failure (expected %s, current %s)\n",
1227 state_string(state), state_string(cur_state));
1228}
1229#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1230#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1231
1232static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1233 enum pipe pipe)
1234{
1235 int reg;
1236 u32 val;
1237
1238 /* ILK FDI PLL is always enabled */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001239 if (INTEL_INFO(dev_priv->dev)->gen == 5)
Jesse Barnes040484a2011-01-03 12:14:26 -08001240 return;
1241
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001242 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001243 if (HAS_DDI(dev_priv->dev))
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001244 return;
1245
Jesse Barnes040484a2011-01-03 12:14:26 -08001246 reg = FDI_TX_CTL(pipe);
1247 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001248 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 -08001249}
1250
Daniel Vetter55607e82013-06-16 21:42:39 +02001251void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1252 enum pipe pipe, bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001253{
1254 int reg;
1255 u32 val;
Daniel Vetter55607e82013-06-16 21:42:39 +02001256 bool cur_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001257
1258 reg = FDI_RX_CTL(pipe);
1259 val = I915_READ(reg);
Daniel Vetter55607e82013-06-16 21:42:39 +02001260 cur_state = !!(val & FDI_RX_PLL_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001261 I915_STATE_WARN(cur_state != state,
Daniel Vetter55607e82013-06-16 21:42:39 +02001262 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1263 state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001264}
1265
Daniel Vetterb680c372014-09-19 18:27:27 +02001266void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1267 enum pipe pipe)
Jesse Barnesea0760c2011-01-04 15:09:32 -08001268{
Jani Nikulabedd4db2014-08-22 15:04:13 +03001269 struct drm_device *dev = dev_priv->dev;
1270 int pp_reg;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001271 u32 val;
1272 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001273 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001274
Jani Nikulabedd4db2014-08-22 15:04:13 +03001275 if (WARN_ON(HAS_DDI(dev)))
1276 return;
1277
1278 if (HAS_PCH_SPLIT(dev)) {
1279 u32 port_sel;
1280
Jesse Barnesea0760c2011-01-04 15:09:32 -08001281 pp_reg = PCH_PP_CONTROL;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001282 port_sel = I915_READ(PCH_PP_ON_DELAYS) & PANEL_PORT_SELECT_MASK;
1283
1284 if (port_sel == PANEL_PORT_SELECT_LVDS &&
1285 I915_READ(PCH_LVDS) & LVDS_PIPEB_SELECT)
1286 panel_pipe = PIPE_B;
1287 /* XXX: else fix for eDP */
1288 } else if (IS_VALLEYVIEW(dev)) {
1289 /* presumably write lock depends on pipe, not port select */
1290 pp_reg = VLV_PIPE_PP_CONTROL(pipe);
1291 panel_pipe = pipe;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001292 } else {
1293 pp_reg = PP_CONTROL;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001294 if (I915_READ(LVDS) & LVDS_PIPEB_SELECT)
1295 panel_pipe = PIPE_B;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001296 }
1297
1298 val = I915_READ(pp_reg);
1299 if (!(val & PANEL_POWER_ON) ||
Jani Nikulaec49ba22014-08-21 15:06:25 +03001300 ((val & PANEL_UNLOCK_MASK) == PANEL_UNLOCK_REGS))
Jesse Barnesea0760c2011-01-04 15:09:32 -08001301 locked = false;
1302
Rob Clarke2c719b2014-12-15 13:56:32 -05001303 I915_STATE_WARN(panel_pipe == pipe && locked,
Jesse Barnesea0760c2011-01-04 15:09:32 -08001304 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001305 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001306}
1307
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001308static void assert_cursor(struct drm_i915_private *dev_priv,
1309 enum pipe pipe, bool state)
1310{
1311 struct drm_device *dev = dev_priv->dev;
1312 bool cur_state;
1313
Paulo Zanonid9d82082014-02-27 16:30:56 -03001314 if (IS_845G(dev) || IS_I865G(dev))
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001315 cur_state = I915_READ(_CURACNTR) & CURSOR_ENABLE;
Paulo Zanonid9d82082014-02-27 16:30:56 -03001316 else
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03001317 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001318
Rob Clarke2c719b2014-12-15 13:56:32 -05001319 I915_STATE_WARN(cur_state != state,
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001320 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
1321 pipe_name(pipe), state_string(state), state_string(cur_state));
1322}
1323#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1324#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1325
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001326void assert_pipe(struct drm_i915_private *dev_priv,
1327 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001328{
1329 int reg;
1330 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001331 bool cur_state;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001332 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1333 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001334
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001335 /* if we need the pipe quirk it must be always on */
1336 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1337 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Daniel Vetter8e636782012-01-22 01:36:48 +01001338 state = true;
1339
Daniel Vetterf458ebb2014-09-30 10:56:39 +02001340 if (!intel_display_power_is_enabled(dev_priv,
Paulo Zanonib97186f2013-05-03 12:15:36 -03001341 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
Paulo Zanoni69310162013-01-29 16:35:19 -02001342 cur_state = false;
1343 } else {
1344 reg = PIPECONF(cpu_transcoder);
1345 val = I915_READ(reg);
1346 cur_state = !!(val & PIPECONF_ENABLE);
1347 }
1348
Rob Clarke2c719b2014-12-15 13:56:32 -05001349 I915_STATE_WARN(cur_state != state,
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001350 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001351 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001352}
1353
Chris Wilson931872f2012-01-16 23:01:13 +00001354static void assert_plane(struct drm_i915_private *dev_priv,
1355 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001356{
1357 int reg;
1358 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001359 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001360
1361 reg = DSPCNTR(plane);
1362 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001363 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001364 I915_STATE_WARN(cur_state != state,
Chris Wilson931872f2012-01-16 23:01:13 +00001365 "plane %c assertion failure (expected %s, current %s)\n",
1366 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001367}
1368
Chris Wilson931872f2012-01-16 23:01:13 +00001369#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1370#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1371
Jesse Barnesb24e7172011-01-04 15:09:30 -08001372static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1373 enum pipe pipe)
1374{
Ville Syrjälä653e1022013-06-04 13:49:05 +03001375 struct drm_device *dev = dev_priv->dev;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001376 int reg, i;
1377 u32 val;
1378 int cur_pipe;
1379
Ville Syrjälä653e1022013-06-04 13:49:05 +03001380 /* Primary planes are fixed to pipes on gen4+ */
1381 if (INTEL_INFO(dev)->gen >= 4) {
Adam Jackson28c057942011-10-07 14:38:42 -04001382 reg = DSPCNTR(pipe);
1383 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001384 I915_STATE_WARN(val & DISPLAY_PLANE_ENABLE,
Adam Jackson28c057942011-10-07 14:38:42 -04001385 "plane %c assertion failure, should be disabled but not\n",
1386 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001387 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001388 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001389
Jesse Barnesb24e7172011-01-04 15:09:30 -08001390 /* Need to check both planes against the pipe */
Damien Lespiau055e3932014-08-18 13:49:10 +01001391 for_each_pipe(dev_priv, i) {
Jesse Barnesb24e7172011-01-04 15:09:30 -08001392 reg = DSPCNTR(i);
1393 val = I915_READ(reg);
1394 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1395 DISPPLANE_SEL_PIPE_SHIFT;
Rob Clarke2c719b2014-12-15 13:56:32 -05001396 I915_STATE_WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001397 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1398 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001399 }
1400}
1401
Jesse Barnes19332d72013-03-28 09:55:38 -07001402static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1403 enum pipe pipe)
1404{
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001405 struct drm_device *dev = dev_priv->dev;
Damien Lespiau1fe47782014-03-03 17:31:47 +00001406 int reg, sprite;
Jesse Barnes19332d72013-03-28 09:55:38 -07001407 u32 val;
1408
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001409 if (INTEL_INFO(dev)->gen >= 9) {
Damien Lespiau3bdcfc02015-02-28 14:54:09 +00001410 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001411 val = I915_READ(PLANE_CTL(pipe, sprite));
Rob Clarke2c719b2014-12-15 13:56:32 -05001412 I915_STATE_WARN(val & PLANE_CTL_ENABLE,
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001413 "plane %d assertion failure, should be off on pipe %c but is still active\n",
1414 sprite, pipe_name(pipe));
1415 }
1416 } else if (IS_VALLEYVIEW(dev)) {
Damien Lespiau3bdcfc02015-02-28 14:54:09 +00001417 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau1fe47782014-03-03 17:31:47 +00001418 reg = SPCNTR(pipe, sprite);
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001419 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001420 I915_STATE_WARN(val & SP_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001421 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +00001422 sprite_name(pipe, sprite), pipe_name(pipe));
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001423 }
1424 } else if (INTEL_INFO(dev)->gen >= 7) {
1425 reg = SPRCTL(pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07001426 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001427 I915_STATE_WARN(val & SPRITE_ENABLE,
Ville Syrjälä06da8da2013-04-17 17:48:51 +03001428 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001429 plane_name(pipe), pipe_name(pipe));
1430 } else if (INTEL_INFO(dev)->gen >= 5) {
1431 reg = DVSCNTR(pipe);
1432 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001433 I915_STATE_WARN(val & DVS_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001434 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1435 plane_name(pipe), pipe_name(pipe));
Jesse Barnes19332d72013-03-28 09:55:38 -07001436 }
1437}
1438
Ville Syrjälä08c71e52014-08-06 14:49:45 +03001439static void assert_vblank_disabled(struct drm_crtc *crtc)
1440{
Rob Clarke2c719b2014-12-15 13:56:32 -05001441 if (I915_STATE_WARN_ON(drm_crtc_vblank_get(crtc) == 0))
Ville Syrjälä08c71e52014-08-06 14:49:45 +03001442 drm_crtc_vblank_put(crtc);
1443}
1444
Paulo Zanoni89eff4b2014-01-08 11:12:28 -02001445static void ibx_assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
Jesse Barnes92f25842011-01-04 15:09:34 -08001446{
1447 u32 val;
1448 bool enabled;
1449
Rob Clarke2c719b2014-12-15 13:56:32 -05001450 I915_STATE_WARN_ON(!(HAS_PCH_IBX(dev_priv->dev) || HAS_PCH_CPT(dev_priv->dev)));
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001451
Jesse Barnes92f25842011-01-04 15:09:34 -08001452 val = I915_READ(PCH_DREF_CONTROL);
1453 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1454 DREF_SUPERSPREAD_SOURCE_MASK));
Rob Clarke2c719b2014-12-15 13:56:32 -05001455 I915_STATE_WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
Jesse Barnes92f25842011-01-04 15:09:34 -08001456}
1457
Daniel Vetterab9412b2013-05-03 11:49:46 +02001458static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1459 enum pipe pipe)
Jesse Barnes92f25842011-01-04 15:09:34 -08001460{
1461 int reg;
1462 u32 val;
1463 bool enabled;
1464
Daniel Vetterab9412b2013-05-03 11:49:46 +02001465 reg = PCH_TRANSCONF(pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001466 val = I915_READ(reg);
1467 enabled = !!(val & TRANS_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001468 I915_STATE_WARN(enabled,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001469 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1470 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001471}
1472
Keith Packard4e634382011-08-06 10:39:45 -07001473static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1474 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001475{
1476 if ((val & DP_PORT_EN) == 0)
1477 return false;
1478
1479 if (HAS_PCH_CPT(dev_priv->dev)) {
1480 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1481 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1482 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1483 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001484 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1485 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1486 return false;
Keith Packardf0575e92011-07-25 22:12:43 -07001487 } else {
1488 if ((val & DP_PIPE_MASK) != (pipe << 30))
1489 return false;
1490 }
1491 return true;
1492}
1493
Keith Packard1519b992011-08-06 10:35:34 -07001494static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1495 enum pipe pipe, u32 val)
1496{
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001497 if ((val & SDVO_ENABLE) == 0)
Keith Packard1519b992011-08-06 10:35:34 -07001498 return false;
1499
1500 if (HAS_PCH_CPT(dev_priv->dev)) {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001501 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001502 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001503 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1504 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1505 return false;
Keith Packard1519b992011-08-06 10:35:34 -07001506 } else {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001507 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001508 return false;
1509 }
1510 return true;
1511}
1512
1513static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1514 enum pipe pipe, u32 val)
1515{
1516 if ((val & LVDS_PORT_EN) == 0)
1517 return false;
1518
1519 if (HAS_PCH_CPT(dev_priv->dev)) {
1520 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1521 return false;
1522 } else {
1523 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1524 return false;
1525 }
1526 return true;
1527}
1528
1529static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1530 enum pipe pipe, u32 val)
1531{
1532 if ((val & ADPA_DAC_ENABLE) == 0)
1533 return false;
1534 if (HAS_PCH_CPT(dev_priv->dev)) {
1535 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1536 return false;
1537 } else {
1538 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1539 return false;
1540 }
1541 return true;
1542}
1543
Jesse Barnes291906f2011-02-02 12:28:03 -08001544static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001545 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001546{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001547 u32 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001548 I915_STATE_WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001549 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001550 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001551
Rob Clarke2c719b2014-12-15 13:56:32 -05001552 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001553 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001554 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001555}
1556
1557static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1558 enum pipe pipe, int reg)
1559{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001560 u32 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001561 I915_STATE_WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001562 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001563 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001564
Rob Clarke2c719b2014-12-15 13:56:32 -05001565 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001566 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001567 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001568}
1569
1570static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1571 enum pipe pipe)
1572{
1573 int reg;
1574 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001575
Keith Packardf0575e92011-07-25 22:12:43 -07001576 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1577 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1578 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001579
1580 reg = PCH_ADPA;
1581 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001582 I915_STATE_WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001583 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001584 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001585
1586 reg = PCH_LVDS;
1587 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001588 I915_STATE_WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001589 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001590 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001591
Paulo Zanonie2debe92013-02-18 19:00:27 -03001592 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1593 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1594 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
Jesse Barnes291906f2011-02-02 12:28:03 -08001595}
1596
Jesse Barnes40e9cf62013-10-03 11:35:46 -07001597static void intel_init_dpio(struct drm_device *dev)
1598{
1599 struct drm_i915_private *dev_priv = dev->dev_private;
1600
1601 if (!IS_VALLEYVIEW(dev))
1602 return;
1603
Chon Ming Leea09cadd2014-04-09 13:28:14 +03001604 /*
1605 * IOSF_PORT_DPIO is used for VLV x2 PHY (DP/HDMI B and C),
1606 * CHV x1 PHY (DP/HDMI D)
1607 * IOSF_PORT_DPIO_2 is used for CHV x2 PHY (DP/HDMI B and C)
1608 */
1609 if (IS_CHERRYVIEW(dev)) {
1610 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO_2;
1611 DPIO_PHY_IOSF_PORT(DPIO_PHY1) = IOSF_PORT_DPIO;
1612 } else {
1613 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO;
1614 }
Jesse Barnes5382f5f352013-12-16 16:34:24 -08001615}
1616
Ville Syrjäläd288f652014-10-28 13:20:22 +02001617static void vlv_enable_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001618 const struct intel_crtc_state *pipe_config)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001619{
Daniel Vetter426115c2013-07-11 22:13:42 +02001620 struct drm_device *dev = crtc->base.dev;
1621 struct drm_i915_private *dev_priv = dev->dev_private;
1622 int reg = DPLL(crtc->pipe);
Ville Syrjäläd288f652014-10-28 13:20:22 +02001623 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001624
Daniel Vetter426115c2013-07-11 22:13:42 +02001625 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001626
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001627 /* No really, not for ILK+ */
Daniel Vetter87442f72013-06-06 00:52:17 +02001628 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev));
1629
1630 /* PLL is protected by panel, make sure we can write it */
Jani Nikula6a9e7362014-08-22 15:06:35 +03001631 if (IS_MOBILE(dev_priv->dev))
Daniel Vetter426115c2013-07-11 22:13:42 +02001632 assert_panel_unlocked(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001633
Daniel Vetter426115c2013-07-11 22:13:42 +02001634 I915_WRITE(reg, dpll);
1635 POSTING_READ(reg);
1636 udelay(150);
1637
1638 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1639 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1640
Ville Syrjäläd288f652014-10-28 13:20:22 +02001641 I915_WRITE(DPLL_MD(crtc->pipe), pipe_config->dpll_hw_state.dpll_md);
Daniel Vetter426115c2013-07-11 22:13:42 +02001642 POSTING_READ(DPLL_MD(crtc->pipe));
Daniel Vetter87442f72013-06-06 00:52:17 +02001643
1644 /* We do this three times for luck */
Daniel Vetter426115c2013-07-11 22:13:42 +02001645 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001646 POSTING_READ(reg);
1647 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001648 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001649 POSTING_READ(reg);
1650 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001651 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001652 POSTING_READ(reg);
1653 udelay(150); /* wait for warmup */
1654}
1655
Ville Syrjäläd288f652014-10-28 13:20:22 +02001656static void chv_enable_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001657 const struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001658{
1659 struct drm_device *dev = crtc->base.dev;
1660 struct drm_i915_private *dev_priv = dev->dev_private;
1661 int pipe = crtc->pipe;
1662 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001663 u32 tmp;
1664
1665 assert_pipe_disabled(dev_priv, crtc->pipe);
1666
1667 BUG_ON(!IS_CHERRYVIEW(dev_priv->dev));
1668
Ville Syrjäläa5805162015-05-26 20:42:30 +03001669 mutex_lock(&dev_priv->sb_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001670
1671 /* Enable back the 10bit clock to display controller */
1672 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1673 tmp |= DPIO_DCLKP_EN;
1674 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1675
Ville Syrjälä54433e92015-05-26 20:42:31 +03001676 mutex_unlock(&dev_priv->sb_lock);
1677
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001678 /*
1679 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1680 */
1681 udelay(1);
1682
1683 /* Enable PLL */
Ville Syrjäläd288f652014-10-28 13:20:22 +02001684 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001685
1686 /* Check PLL is locked */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001687 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001688 DRM_ERROR("PLL %d failed to lock\n", pipe);
1689
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001690 /* not sure when this should be written */
Ville Syrjäläd288f652014-10-28 13:20:22 +02001691 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001692 POSTING_READ(DPLL_MD(pipe));
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001693}
1694
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001695static int intel_num_dvo_pipes(struct drm_device *dev)
1696{
1697 struct intel_crtc *crtc;
1698 int count = 0;
1699
1700 for_each_intel_crtc(dev, crtc)
Maarten Lankhorst3538b9d2015-06-01 12:50:10 +02001701 count += crtc->base.state->active &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001702 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO);
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001703
1704 return count;
1705}
1706
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001707static void i9xx_enable_pll(struct intel_crtc *crtc)
Daniel Vetter87442f72013-06-06 00:52:17 +02001708{
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001709 struct drm_device *dev = crtc->base.dev;
1710 struct drm_i915_private *dev_priv = dev->dev_private;
1711 int reg = DPLL(crtc->pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001712 u32 dpll = crtc->config->dpll_hw_state.dpll;
Daniel Vetter87442f72013-06-06 00:52:17 +02001713
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001714 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001715
1716 /* No really, not for ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001717 BUG_ON(INTEL_INFO(dev)->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001718
1719 /* PLL is protected by panel, make sure we can write it */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001720 if (IS_MOBILE(dev) && !IS_I830(dev))
1721 assert_panel_unlocked(dev_priv, crtc->pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001722
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001723 /* Enable DVO 2x clock on both PLLs if necessary */
1724 if (IS_I830(dev) && intel_num_dvo_pipes(dev) > 0) {
1725 /*
1726 * It appears to be important that we don't enable this
1727 * for the current pipe before otherwise configuring the
1728 * PLL. No idea how this should be handled if multiple
1729 * DVO outputs are enabled simultaneosly.
1730 */
1731 dpll |= DPLL_DVO_2X_MODE;
1732 I915_WRITE(DPLL(!crtc->pipe),
1733 I915_READ(DPLL(!crtc->pipe)) | DPLL_DVO_2X_MODE);
1734 }
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001735
1736 /* Wait for the clocks to stabilize. */
1737 POSTING_READ(reg);
1738 udelay(150);
1739
1740 if (INTEL_INFO(dev)->gen >= 4) {
1741 I915_WRITE(DPLL_MD(crtc->pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001742 crtc->config->dpll_hw_state.dpll_md);
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001743 } else {
1744 /* The pixel multiplier can only be updated once the
1745 * DPLL is enabled and the clocks are stable.
1746 *
1747 * So write it again.
1748 */
1749 I915_WRITE(reg, dpll);
1750 }
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001751
1752 /* We do this three times for luck */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001753 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001754 POSTING_READ(reg);
1755 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001756 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001757 POSTING_READ(reg);
1758 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001759 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001760 POSTING_READ(reg);
1761 udelay(150); /* wait for warmup */
1762}
1763
1764/**
Daniel Vetter50b44a42013-06-05 13:34:33 +02001765 * i9xx_disable_pll - disable a PLL
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001766 * @dev_priv: i915 private structure
1767 * @pipe: pipe PLL to disable
1768 *
1769 * Disable the PLL for @pipe, making sure the pipe is off first.
1770 *
1771 * Note! This is for pre-ILK only.
1772 */
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001773static void i9xx_disable_pll(struct intel_crtc *crtc)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001774{
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001775 struct drm_device *dev = crtc->base.dev;
1776 struct drm_i915_private *dev_priv = dev->dev_private;
1777 enum pipe pipe = crtc->pipe;
1778
1779 /* Disable DVO 2x clock on both PLLs if necessary */
1780 if (IS_I830(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001781 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO) &&
Maarten Lankhorst3538b9d2015-06-01 12:50:10 +02001782 !intel_num_dvo_pipes(dev)) {
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001783 I915_WRITE(DPLL(PIPE_B),
1784 I915_READ(DPLL(PIPE_B)) & ~DPLL_DVO_2X_MODE);
1785 I915_WRITE(DPLL(PIPE_A),
1786 I915_READ(DPLL(PIPE_A)) & ~DPLL_DVO_2X_MODE);
1787 }
1788
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001789 /* Don't disable pipe or pipe PLLs if needed */
1790 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1791 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001792 return;
1793
1794 /* Make sure the pipe isn't still relying on us */
1795 assert_pipe_disabled(dev_priv, pipe);
1796
Daniel Vetter50b44a42013-06-05 13:34:33 +02001797 I915_WRITE(DPLL(pipe), 0);
1798 POSTING_READ(DPLL(pipe));
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001799}
1800
Jesse Barnesf6071162013-10-01 10:41:38 -07001801static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1802{
1803 u32 val = 0;
1804
1805 /* Make sure the pipe isn't still relying on us */
1806 assert_pipe_disabled(dev_priv, pipe);
1807
Imre Deake5cbfbf2014-01-09 17:08:16 +02001808 /*
1809 * Leave integrated clock source and reference clock enabled for pipe B.
1810 * The latter is needed for VGA hotplug / manual detection.
1811 */
Jesse Barnesf6071162013-10-01 10:41:38 -07001812 if (pipe == PIPE_B)
Imre Deake5cbfbf2014-01-09 17:08:16 +02001813 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REFA_CLK_ENABLE_VLV;
Jesse Barnesf6071162013-10-01 10:41:38 -07001814 I915_WRITE(DPLL(pipe), val);
1815 POSTING_READ(DPLL(pipe));
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001816
1817}
1818
1819static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1820{
Ville Syrjäläd7520482014-04-09 13:28:59 +03001821 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001822 u32 val;
1823
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001824 /* Make sure the pipe isn't still relying on us */
1825 assert_pipe_disabled(dev_priv, pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001826
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001827 /* Set PLL en = 0 */
Ville Syrjäläd17ec4c2014-06-28 02:03:59 +03001828 val = DPLL_SSC_REF_CLOCK_CHV | DPLL_REFA_CLK_ENABLE_VLV;
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001829 if (pipe != PIPE_A)
1830 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1831 I915_WRITE(DPLL(pipe), val);
1832 POSTING_READ(DPLL(pipe));
Ville Syrjäläd7520482014-04-09 13:28:59 +03001833
Ville Syrjäläa5805162015-05-26 20:42:30 +03001834 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläd7520482014-04-09 13:28:59 +03001835
1836 /* Disable 10bit clock to display controller */
1837 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1838 val &= ~DPIO_DCLKP_EN;
1839 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1840
Ville Syrjälä61407f62014-05-27 16:32:55 +03001841 /* disable left/right clock distribution */
1842 if (pipe != PIPE_B) {
1843 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1844 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1845 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1846 } else {
1847 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1848 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1849 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1850 }
1851
Ville Syrjäläa5805162015-05-26 20:42:30 +03001852 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnesf6071162013-10-01 10:41:38 -07001853}
1854
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001855void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001856 struct intel_digital_port *dport,
1857 unsigned int expected_mask)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001858{
1859 u32 port_mask;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001860 int dpll_reg;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001861
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001862 switch (dport->port) {
1863 case PORT_B:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001864 port_mask = DPLL_PORTB_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001865 dpll_reg = DPLL(0);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001866 break;
1867 case PORT_C:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001868 port_mask = DPLL_PORTC_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001869 dpll_reg = DPLL(0);
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001870 expected_mask <<= 4;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001871 break;
1872 case PORT_D:
1873 port_mask = DPLL_PORTD_READY_MASK;
1874 dpll_reg = DPIO_PHY_STATUS;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001875 break;
1876 default:
1877 BUG();
1878 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07001879
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001880 if (wait_for((I915_READ(dpll_reg) & port_mask) == expected_mask, 1000))
1881 WARN(1, "timed out waiting for port %c ready: got 0x%x, expected 0x%x\n",
1882 port_name(dport->port), I915_READ(dpll_reg) & port_mask, expected_mask);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001883}
1884
Daniel Vetterb14b1052014-04-24 23:55:13 +02001885static void intel_prepare_shared_dpll(struct intel_crtc *crtc)
1886{
1887 struct drm_device *dev = crtc->base.dev;
1888 struct drm_i915_private *dev_priv = dev->dev_private;
1889 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
1890
Chris Wilsonbe19f0f2014-05-28 16:16:42 +01001891 if (WARN_ON(pll == NULL))
1892 return;
1893
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001894 WARN_ON(!pll->config.crtc_mask);
Daniel Vetterb14b1052014-04-24 23:55:13 +02001895 if (pll->active == 0) {
1896 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
1897 WARN_ON(pll->on);
1898 assert_shared_dpll_disabled(dev_priv, pll);
1899
1900 pll->mode_set(dev_priv, pll);
1901 }
1902}
1903
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001904/**
Daniel Vetter85b38942014-04-24 23:55:14 +02001905 * intel_enable_shared_dpll - enable PCH PLL
Jesse Barnes92f25842011-01-04 15:09:34 -08001906 * @dev_priv: i915 private structure
1907 * @pipe: pipe PLL to enable
1908 *
1909 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1910 * drives the transcoder clock.
1911 */
Daniel Vetter85b38942014-04-24 23:55:14 +02001912static void intel_enable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001913{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001914 struct drm_device *dev = crtc->base.dev;
1915 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001916 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes92f25842011-01-04 15:09:34 -08001917
Daniel Vetter87a875b2013-06-05 13:34:19 +02001918 if (WARN_ON(pll == NULL))
Chris Wilson48da64a2012-05-13 20:16:12 +01001919 return;
1920
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001921 if (WARN_ON(pll->config.crtc_mask == 0))
Chris Wilson48da64a2012-05-13 20:16:12 +01001922 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001923
Damien Lespiau74dd6922014-07-29 18:06:17 +01001924 DRM_DEBUG_KMS("enable %s (active %d, on? %d) for crtc %d\n",
Daniel Vetter46edb022013-06-05 13:34:12 +02001925 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001926 crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001927
Daniel Vettercdbd2312013-06-05 13:34:03 +02001928 if (pll->active++) {
1929 WARN_ON(!pll->on);
Daniel Vettere9d69442013-06-05 13:34:15 +02001930 assert_shared_dpll_enabled(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001931 return;
1932 }
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001933 WARN_ON(pll->on);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001934
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001935 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
1936
Daniel Vetter46edb022013-06-05 13:34:12 +02001937 DRM_DEBUG_KMS("enabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001938 pll->enable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001939 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001940}
1941
Damien Lespiauf6daaec2014-08-09 23:00:56 +01001942static void intel_disable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001943{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001944 struct drm_device *dev = crtc->base.dev;
1945 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001946 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001947
Jesse Barnes92f25842011-01-04 15:09:34 -08001948 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001949 BUG_ON(INTEL_INFO(dev)->gen < 5);
Daniel Vetter87a875b2013-06-05 13:34:19 +02001950 if (WARN_ON(pll == NULL))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001951 return;
1952
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001953 if (WARN_ON(pll->config.crtc_mask == 0))
Chris Wilson48da64a2012-05-13 20:16:12 +01001954 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001955
Daniel Vetter46edb022013-06-05 13:34:12 +02001956 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1957 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001958 crtc->base.base.id);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001959
Chris Wilson48da64a2012-05-13 20:16:12 +01001960 if (WARN_ON(pll->active == 0)) {
Daniel Vettere9d69442013-06-05 13:34:15 +02001961 assert_shared_dpll_disabled(dev_priv, pll);
Chris Wilson48da64a2012-05-13 20:16:12 +01001962 return;
1963 }
1964
Daniel Vettere9d69442013-06-05 13:34:15 +02001965 assert_shared_dpll_enabled(dev_priv, pll);
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001966 WARN_ON(!pll->on);
Daniel Vettercdbd2312013-06-05 13:34:03 +02001967 if (--pll->active)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001968 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001969
Daniel Vetter46edb022013-06-05 13:34:12 +02001970 DRM_DEBUG_KMS("disabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001971 pll->disable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001972 pll->on = false;
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001973
1974 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
Jesse Barnes92f25842011-01-04 15:09:34 -08001975}
1976
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001977static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1978 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001979{
Daniel Vetter23670b322012-11-01 09:15:30 +01001980 struct drm_device *dev = dev_priv->dev;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001981 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vettere2b78262013-06-07 23:10:03 +02001982 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter23670b322012-11-01 09:15:30 +01001983 uint32_t reg, val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001984
1985 /* PCH only available on ILK+ */
Ville Syrjälä55522f32014-09-03 14:09:53 +03001986 BUG_ON(!HAS_PCH_SPLIT(dev));
Jesse Barnes040484a2011-01-03 12:14:26 -08001987
1988 /* Make sure PCH DPLL is enabled */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02001989 assert_shared_dpll_enabled(dev_priv,
Daniel Vettere9d69442013-06-05 13:34:15 +02001990 intel_crtc_to_shared_dpll(intel_crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001991
1992 /* FDI must be feeding us bits for PCH ports */
1993 assert_fdi_tx_enabled(dev_priv, pipe);
1994 assert_fdi_rx_enabled(dev_priv, pipe);
1995
Daniel Vetter23670b322012-11-01 09:15:30 +01001996 if (HAS_PCH_CPT(dev)) {
1997 /* Workaround: Set the timing override bit before enabling the
1998 * pch transcoder. */
1999 reg = TRANS_CHICKEN2(pipe);
2000 val = I915_READ(reg);
2001 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
2002 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03002003 }
Daniel Vetter23670b322012-11-01 09:15:30 +01002004
Daniel Vetterab9412b2013-05-03 11:49:46 +02002005 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002006 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02002007 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07002008
2009 if (HAS_PCH_IBX(dev_priv->dev)) {
2010 /*
2011 * make the BPC in transcoder be consistent with
2012 * that in pipeconf reg.
2013 */
Daniel Vetterdfd07d72012-12-17 11:21:38 +01002014 val &= ~PIPECONF_BPC_MASK;
2015 val |= pipeconf_val & PIPECONF_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07002016 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02002017
2018 val &= ~TRANS_INTERLACE_MASK;
2019 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02002020 if (HAS_PCH_IBX(dev_priv->dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03002021 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02002022 val |= TRANS_LEGACY_INTERLACED_ILK;
2023 else
2024 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02002025 else
2026 val |= TRANS_PROGRESSIVE;
2027
Jesse Barnes040484a2011-01-03 12:14:26 -08002028 I915_WRITE(reg, val | TRANS_ENABLE);
2029 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03002030 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
Jesse Barnes040484a2011-01-03 12:14:26 -08002031}
2032
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002033static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02002034 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08002035{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002036 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002037
2038 /* PCH only available on ILK+ */
Ville Syrjälä55522f32014-09-03 14:09:53 +03002039 BUG_ON(!HAS_PCH_SPLIT(dev_priv->dev));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002040
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002041 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01002042 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02002043 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002044
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002045 /* Workaround: set timing override bit. */
2046 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01002047 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002048 I915_WRITE(_TRANSA_CHICKEN2, val);
2049
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02002050 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02002051 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002052
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02002053 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
2054 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02002055 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002056 else
2057 val |= TRANS_PROGRESSIVE;
2058
Daniel Vetterab9412b2013-05-03 11:49:46 +02002059 I915_WRITE(LPT_TRANSCONF, val);
2060 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
Paulo Zanoni937bb612012-10-31 18:12:47 -02002061 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002062}
2063
Paulo Zanonib8a4f402012-10-31 18:12:42 -02002064static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
2065 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08002066{
Daniel Vetter23670b322012-11-01 09:15:30 +01002067 struct drm_device *dev = dev_priv->dev;
2068 uint32_t reg, val;
Jesse Barnes040484a2011-01-03 12:14:26 -08002069
2070 /* FDI relies on the transcoder */
2071 assert_fdi_tx_disabled(dev_priv, pipe);
2072 assert_fdi_rx_disabled(dev_priv, pipe);
2073
Jesse Barnes291906f2011-02-02 12:28:03 -08002074 /* Ports must be off as well */
2075 assert_pch_ports_disabled(dev_priv, pipe);
2076
Daniel Vetterab9412b2013-05-03 11:49:46 +02002077 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002078 val = I915_READ(reg);
2079 val &= ~TRANS_ENABLE;
2080 I915_WRITE(reg, val);
2081 /* wait for PCH transcoder off, transcoder state */
2082 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03002083 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
Daniel Vetter23670b322012-11-01 09:15:30 +01002084
2085 if (!HAS_PCH_IBX(dev)) {
2086 /* Workaround: Clear the timing override chicken bit again. */
2087 reg = TRANS_CHICKEN2(pipe);
2088 val = I915_READ(reg);
2089 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
2090 I915_WRITE(reg, val);
2091 }
Jesse Barnes040484a2011-01-03 12:14:26 -08002092}
2093
Paulo Zanoniab4d9662012-10-31 18:12:55 -02002094static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002095{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002096 u32 val;
2097
Daniel Vetterab9412b2013-05-03 11:49:46 +02002098 val = I915_READ(LPT_TRANSCONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002099 val &= ~TRANS_ENABLE;
Daniel Vetterab9412b2013-05-03 11:49:46 +02002100 I915_WRITE(LPT_TRANSCONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002101 /* wait for PCH transcoder off, transcoder state */
Daniel Vetterab9412b2013-05-03 11:49:46 +02002102 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02002103 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002104
2105 /* Workaround: clear timing override bit. */
2106 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01002107 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002108 I915_WRITE(_TRANSA_CHICKEN2, val);
Jesse Barnes92f25842011-01-04 15:09:34 -08002109}
2110
2111/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002112 * intel_enable_pipe - enable a pipe, asserting requirements
Paulo Zanoni03722642014-01-17 13:51:09 -02002113 * @crtc: crtc responsible for the pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08002114 *
Paulo Zanoni03722642014-01-17 13:51:09 -02002115 * Enable @crtc's pipe, making sure that various hardware specific requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08002116 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002117 */
Paulo Zanonie1fdc472014-01-17 13:51:12 -02002118static void intel_enable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002119{
Paulo Zanoni03722642014-01-17 13:51:09 -02002120 struct drm_device *dev = crtc->base.dev;
2121 struct drm_i915_private *dev_priv = dev->dev_private;
2122 enum pipe pipe = crtc->pipe;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002123 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
2124 pipe);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002125 enum pipe pch_transcoder;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002126 int reg;
2127 u32 val;
2128
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002129 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002130 assert_cursor_disabled(dev_priv, pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002131 assert_sprites_disabled(dev_priv, pipe);
2132
Paulo Zanoni681e5812012-12-06 11:12:38 -02002133 if (HAS_PCH_LPT(dev_priv->dev))
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002134 pch_transcoder = TRANSCODER_A;
2135 else
2136 pch_transcoder = pipe;
2137
Jesse Barnesb24e7172011-01-04 15:09:30 -08002138 /*
2139 * A pipe without a PLL won't actually be able to drive bits from
2140 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
2141 * need the check.
2142 */
Imre Deak50360402015-01-16 00:55:16 -08002143 if (HAS_GMCH_DISPLAY(dev_priv->dev))
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03002144 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
Jani Nikula23538ef2013-08-27 15:12:22 +03002145 assert_dsi_pll_enabled(dev_priv);
2146 else
2147 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002148 else {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002149 if (crtc->config->has_pch_encoder) {
Jesse Barnes040484a2011-01-03 12:14:26 -08002150 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002151 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002152 assert_fdi_tx_pll_enabled(dev_priv,
2153 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08002154 }
2155 /* FIXME: assert CPU port conditions for SNB+ */
2156 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08002157
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002158 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002159 val = I915_READ(reg);
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002160 if (val & PIPECONF_ENABLE) {
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002161 WARN_ON(!((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
2162 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)));
Chris Wilson00d70b12011-03-17 07:18:29 +00002163 return;
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002164 }
Chris Wilson00d70b12011-03-17 07:18:29 +00002165
2166 I915_WRITE(reg, val | PIPECONF_ENABLE);
Paulo Zanoni851855d2013-12-19 19:12:29 -02002167 POSTING_READ(reg);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002168}
2169
2170/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002171 * intel_disable_pipe - disable a pipe, asserting requirements
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002172 * @crtc: crtc whose pipes is to be disabled
Jesse Barnesb24e7172011-01-04 15:09:30 -08002173 *
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002174 * Disable the pipe of @crtc, making sure that various hardware
2175 * specific requirements are met, if applicable, e.g. plane
2176 * disabled, panel fitter off, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002177 *
2178 * Will wait until the pipe has shut down before returning.
2179 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002180static void intel_disable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002181{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002182 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002183 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002184 enum pipe pipe = crtc->pipe;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002185 int reg;
2186 u32 val;
2187
2188 /*
2189 * Make sure planes won't keep trying to pump pixels to us,
2190 * or we might hang the display.
2191 */
2192 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002193 assert_cursor_disabled(dev_priv, pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07002194 assert_sprites_disabled(dev_priv, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002195
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002196 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002197 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00002198 if ((val & PIPECONF_ENABLE) == 0)
2199 return;
2200
Ville Syrjälä67adc642014-08-15 01:21:57 +03002201 /*
2202 * Double wide has implications for planes
2203 * so best keep it disabled when not needed.
2204 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002205 if (crtc->config->double_wide)
Ville Syrjälä67adc642014-08-15 01:21:57 +03002206 val &= ~PIPECONF_DOUBLE_WIDE;
2207
2208 /* Don't disable pipe or pipe PLLs if needed */
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002209 if (!(pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) &&
2210 !(pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Ville Syrjälä67adc642014-08-15 01:21:57 +03002211 val &= ~PIPECONF_ENABLE;
2212
2213 I915_WRITE(reg, val);
2214 if ((val & PIPECONF_ENABLE) == 0)
2215 intel_wait_for_pipe_off(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002216}
2217
2218/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002219 * intel_enable_primary_hw_plane - enable the primary plane on a given pipe
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002220 * @plane: plane to be enabled
2221 * @crtc: crtc for the plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002222 *
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002223 * Enable @plane on @crtc, making sure that the pipe is running first.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002224 */
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002225static void intel_enable_primary_hw_plane(struct drm_plane *plane,
2226 struct drm_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002227{
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002228 struct drm_device *dev = plane->dev;
2229 struct drm_i915_private *dev_priv = dev->dev_private;
2230 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002231
2232 /* If the pipe isn't enabled, we can't pump pixels and may hang */
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002233 assert_pipe_enabled(dev_priv, intel_crtc->pipe);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002234 to_intel_plane_state(plane->state)->visible = true;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002235
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002236 dev_priv->display.update_primary_plane(crtc, plane->fb,
2237 crtc->x, crtc->y);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002238}
2239
Chris Wilson693db182013-03-05 14:52:39 +00002240static bool need_vtd_wa(struct drm_device *dev)
2241{
2242#ifdef CONFIG_INTEL_IOMMU
2243 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2244 return true;
2245#endif
2246 return false;
2247}
2248
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002249unsigned int
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002250intel_tile_height(struct drm_device *dev, uint32_t pixel_format,
2251 uint64_t fb_format_modifier)
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002252{
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002253 unsigned int tile_height;
2254 uint32_t pixel_bytes;
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002255
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002256 switch (fb_format_modifier) {
2257 case DRM_FORMAT_MOD_NONE:
2258 tile_height = 1;
2259 break;
2260 case I915_FORMAT_MOD_X_TILED:
2261 tile_height = IS_GEN2(dev) ? 16 : 8;
2262 break;
2263 case I915_FORMAT_MOD_Y_TILED:
2264 tile_height = 32;
2265 break;
2266 case I915_FORMAT_MOD_Yf_TILED:
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002267 pixel_bytes = drm_format_plane_cpp(pixel_format, 0);
2268 switch (pixel_bytes) {
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002269 default:
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002270 case 1:
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002271 tile_height = 64;
2272 break;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002273 case 2:
2274 case 4:
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002275 tile_height = 32;
2276 break;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002277 case 8:
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002278 tile_height = 16;
2279 break;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002280 case 16:
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002281 WARN_ONCE(1,
2282 "128-bit pixels are not supported for display!");
2283 tile_height = 16;
2284 break;
2285 }
2286 break;
2287 default:
2288 MISSING_CASE(fb_format_modifier);
2289 tile_height = 1;
2290 break;
2291 }
Daniel Vetter091df6c2015-02-10 17:16:10 +00002292
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002293 return tile_height;
2294}
2295
2296unsigned int
2297intel_fb_align_height(struct drm_device *dev, unsigned int height,
2298 uint32_t pixel_format, uint64_t fb_format_modifier)
2299{
2300 return ALIGN(height, intel_tile_height(dev, pixel_format,
2301 fb_format_modifier));
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002302}
2303
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002304static int
2305intel_fill_fb_ggtt_view(struct i915_ggtt_view *view, struct drm_framebuffer *fb,
2306 const struct drm_plane_state *plane_state)
2307{
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002308 struct intel_rotation_info *info = &view->rotation_info;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002309
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002310 *view = i915_ggtt_view_normal;
2311
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002312 if (!plane_state)
2313 return 0;
2314
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002315 if (!intel_rotation_90_or_270(plane_state->rotation))
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002316 return 0;
2317
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02002318 *view = i915_ggtt_view_rotated;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002319
2320 info->height = fb->height;
2321 info->pixel_format = fb->pixel_format;
2322 info->pitch = fb->pitches[0];
2323 info->fb_modifier = fb->modifier[0];
2324
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002325 return 0;
2326}
2327
Chris Wilson127bd2a2010-07-23 23:32:05 +01002328int
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002329intel_pin_and_fence_fb_obj(struct drm_plane *plane,
2330 struct drm_framebuffer *fb,
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +00002331 const struct drm_plane_state *plane_state,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002332 struct intel_engine_cs *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002333{
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002334 struct drm_device *dev = fb->dev;
Chris Wilsonce453d82011-02-21 14:43:56 +00002335 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002336 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002337 struct i915_ggtt_view view;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002338 u32 alignment;
2339 int ret;
2340
Matt Roperebcdd392014-07-09 16:22:11 -07002341 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
2342
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002343 switch (fb->modifier[0]) {
2344 case DRM_FORMAT_MOD_NONE:
Damien Lespiau1fada4c2013-07-03 21:06:02 +01002345 if (INTEL_INFO(dev)->gen >= 9)
2346 alignment = 256 * 1024;
2347 else if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
Chris Wilson534843d2010-07-05 18:01:46 +01002348 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002349 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01002350 alignment = 4 * 1024;
2351 else
2352 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002353 break;
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002354 case I915_FORMAT_MOD_X_TILED:
Damien Lespiau1fada4c2013-07-03 21:06:02 +01002355 if (INTEL_INFO(dev)->gen >= 9)
2356 alignment = 256 * 1024;
2357 else {
2358 /* pin() will align the object as required by fence */
2359 alignment = 0;
2360 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002361 break;
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002362 case I915_FORMAT_MOD_Y_TILED:
Damien Lespiau1327b9a2015-02-27 11:15:20 +00002363 case I915_FORMAT_MOD_Yf_TILED:
2364 if (WARN_ONCE(INTEL_INFO(dev)->gen < 9,
2365 "Y tiling bo slipped through, driver bug!\n"))
2366 return -EINVAL;
2367 alignment = 1 * 1024 * 1024;
2368 break;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002369 default:
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002370 MISSING_CASE(fb->modifier[0]);
2371 return -EINVAL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002372 }
2373
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002374 ret = intel_fill_fb_ggtt_view(&view, fb, plane_state);
2375 if (ret)
2376 return ret;
2377
Chris Wilson693db182013-03-05 14:52:39 +00002378 /* Note that the w/a also requires 64 PTE of padding following the
2379 * bo. We currently fill all unused PTE with the shadow page and so
2380 * we should always have valid PTE following the scanout preventing
2381 * the VT-d warning.
2382 */
2383 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2384 alignment = 256 * 1024;
2385
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002386 /*
2387 * Global gtt pte registers are special registers which actually forward
2388 * writes to a chunk of system memory. Which means that there is no risk
2389 * that the register values disappear as soon as we call
2390 * intel_runtime_pm_put(), so it is correct to wrap only the
2391 * pin/unpin/fence and not more.
2392 */
2393 intel_runtime_pm_get(dev_priv);
2394
Chris Wilsonce453d82011-02-21 14:43:56 +00002395 dev_priv->mm.interruptible = false;
Tvrtko Ursuline6617332015-03-23 11:10:33 +00002396 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined,
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002397 &view);
Chris Wilson48b956c2010-09-14 12:50:34 +01002398 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00002399 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002400
2401 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2402 * fence, whereas 965+ only requires a fence if using
2403 * framebuffer compression. For simplicity, we always install
2404 * a fence as the cost is not that onerous.
2405 */
Chris Wilson06d98132012-04-17 15:31:24 +01002406 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002407 if (ret)
2408 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002409
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002410 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002411
Chris Wilsonce453d82011-02-21 14:43:56 +00002412 dev_priv->mm.interruptible = true;
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002413 intel_runtime_pm_put(dev_priv);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002414 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01002415
2416err_unpin:
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002417 i915_gem_object_unpin_from_display_plane(obj, &view);
Chris Wilsonce453d82011-02-21 14:43:56 +00002418err_interruptible:
2419 dev_priv->mm.interruptible = true;
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002420 intel_runtime_pm_put(dev_priv);
Chris Wilson48b956c2010-09-14 12:50:34 +01002421 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002422}
2423
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +00002424static void intel_unpin_fb_obj(struct drm_framebuffer *fb,
2425 const struct drm_plane_state *plane_state)
Chris Wilson1690e1e2011-12-14 13:57:08 +01002426{
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +00002427 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002428 struct i915_ggtt_view view;
2429 int ret;
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +00002430
Matt Roperebcdd392014-07-09 16:22:11 -07002431 WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex));
2432
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002433 ret = intel_fill_fb_ggtt_view(&view, fb, plane_state);
2434 WARN_ONCE(ret, "Couldn't get view from plane state!");
2435
Chris Wilson1690e1e2011-12-14 13:57:08 +01002436 i915_gem_object_unpin_fence(obj);
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002437 i915_gem_object_unpin_from_display_plane(obj, &view);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002438}
2439
Daniel Vetterc2c75132012-07-05 12:17:30 +02002440/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2441 * is assumed to be a power-of-two. */
Chris Wilsonbc752862013-02-21 20:04:31 +00002442unsigned long intel_gen4_compute_page_offset(int *x, int *y,
2443 unsigned int tiling_mode,
2444 unsigned int cpp,
2445 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02002446{
Chris Wilsonbc752862013-02-21 20:04:31 +00002447 if (tiling_mode != I915_TILING_NONE) {
2448 unsigned int tile_rows, tiles;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002449
Chris Wilsonbc752862013-02-21 20:04:31 +00002450 tile_rows = *y / 8;
2451 *y %= 8;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002452
Chris Wilsonbc752862013-02-21 20:04:31 +00002453 tiles = *x / (512/cpp);
2454 *x %= 512/cpp;
2455
2456 return tile_rows * pitch * 8 + tiles * 4096;
2457 } else {
2458 unsigned int offset;
2459
2460 offset = *y * pitch + *x * cpp;
2461 *y = 0;
2462 *x = (offset & 4095) / cpp;
2463 return offset & -4096;
2464 }
Daniel Vetterc2c75132012-07-05 12:17:30 +02002465}
2466
Damien Lespiaub35d63f2015-01-20 12:51:50 +00002467static int i9xx_format_to_fourcc(int format)
Jesse Barnes46f297f2014-03-07 08:57:48 -08002468{
2469 switch (format) {
2470 case DISPPLANE_8BPP:
2471 return DRM_FORMAT_C8;
2472 case DISPPLANE_BGRX555:
2473 return DRM_FORMAT_XRGB1555;
2474 case DISPPLANE_BGRX565:
2475 return DRM_FORMAT_RGB565;
2476 default:
2477 case DISPPLANE_BGRX888:
2478 return DRM_FORMAT_XRGB8888;
2479 case DISPPLANE_RGBX888:
2480 return DRM_FORMAT_XBGR8888;
2481 case DISPPLANE_BGRX101010:
2482 return DRM_FORMAT_XRGB2101010;
2483 case DISPPLANE_RGBX101010:
2484 return DRM_FORMAT_XBGR2101010;
2485 }
2486}
2487
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00002488static int skl_format_to_fourcc(int format, bool rgb_order, bool alpha)
2489{
2490 switch (format) {
2491 case PLANE_CTL_FORMAT_RGB_565:
2492 return DRM_FORMAT_RGB565;
2493 default:
2494 case PLANE_CTL_FORMAT_XRGB_8888:
2495 if (rgb_order) {
2496 if (alpha)
2497 return DRM_FORMAT_ABGR8888;
2498 else
2499 return DRM_FORMAT_XBGR8888;
2500 } else {
2501 if (alpha)
2502 return DRM_FORMAT_ARGB8888;
2503 else
2504 return DRM_FORMAT_XRGB8888;
2505 }
2506 case PLANE_CTL_FORMAT_XRGB_2101010:
2507 if (rgb_order)
2508 return DRM_FORMAT_XBGR2101010;
2509 else
2510 return DRM_FORMAT_XRGB2101010;
2511 }
2512}
2513
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002514static bool
Daniel Vetterf6936e22015-03-26 12:17:05 +01002515intel_alloc_initial_plane_obj(struct intel_crtc *crtc,
2516 struct intel_initial_plane_config *plane_config)
Jesse Barnes46f297f2014-03-07 08:57:48 -08002517{
2518 struct drm_device *dev = crtc->base.dev;
2519 struct drm_i915_gem_object *obj = NULL;
2520 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Damien Lespiau2d140302015-02-05 17:22:18 +00002521 struct drm_framebuffer *fb = &plane_config->fb->base;
Daniel Vetterf37b5c22015-02-10 23:12:27 +01002522 u32 base_aligned = round_down(plane_config->base, PAGE_SIZE);
2523 u32 size_aligned = round_up(plane_config->base + plane_config->size,
2524 PAGE_SIZE);
2525
2526 size_aligned -= base_aligned;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002527
Chris Wilsonff2652e2014-03-10 08:07:02 +00002528 if (plane_config->size == 0)
2529 return false;
2530
Daniel Vetterf37b5c22015-02-10 23:12:27 +01002531 obj = i915_gem_object_create_stolen_for_preallocated(dev,
2532 base_aligned,
2533 base_aligned,
2534 size_aligned);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002535 if (!obj)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002536 return false;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002537
Damien Lespiau49af4492015-01-20 12:51:44 +00002538 obj->tiling_mode = plane_config->tiling;
2539 if (obj->tiling_mode == I915_TILING_X)
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002540 obj->stride = fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002541
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002542 mode_cmd.pixel_format = fb->pixel_format;
2543 mode_cmd.width = fb->width;
2544 mode_cmd.height = fb->height;
2545 mode_cmd.pitches[0] = fb->pitches[0];
Daniel Vetter18c52472015-02-10 17:16:09 +00002546 mode_cmd.modifier[0] = fb->modifier[0];
2547 mode_cmd.flags = DRM_MODE_FB_MODIFIERS;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002548
2549 mutex_lock(&dev->struct_mutex);
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002550 if (intel_framebuffer_init(dev, to_intel_framebuffer(fb),
Jesse Barnes484b41d2014-03-07 08:57:55 -08002551 &mode_cmd, obj)) {
Jesse Barnes46f297f2014-03-07 08:57:48 -08002552 DRM_DEBUG_KMS("intel fb init failed\n");
2553 goto out_unref_obj;
2554 }
Jesse Barnes46f297f2014-03-07 08:57:48 -08002555 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002556
Daniel Vetterf6936e22015-03-26 12:17:05 +01002557 DRM_DEBUG_KMS("initial plane fb obj %p\n", obj);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002558 return true;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002559
2560out_unref_obj:
2561 drm_gem_object_unreference(&obj->base);
2562 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002563 return false;
2564}
2565
Matt Roperafd65eb2015-02-03 13:10:04 -08002566/* Update plane->state->fb to match plane->fb after driver-internal updates */
2567static void
2568update_state_fb(struct drm_plane *plane)
2569{
2570 if (plane->fb == plane->state->fb)
2571 return;
2572
2573 if (plane->state->fb)
2574 drm_framebuffer_unreference(plane->state->fb);
2575 plane->state->fb = plane->fb;
2576 if (plane->state->fb)
2577 drm_framebuffer_reference(plane->state->fb);
2578}
2579
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002580static void
Daniel Vetterf6936e22015-03-26 12:17:05 +01002581intel_find_initial_plane_obj(struct intel_crtc *intel_crtc,
2582 struct intel_initial_plane_config *plane_config)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002583{
2584 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnesd9ceb812014-10-09 12:57:43 -07002585 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002586 struct drm_crtc *c;
2587 struct intel_crtc *i;
Matt Roper2ff8fde2014-07-08 07:50:07 -07002588 struct drm_i915_gem_object *obj;
Daniel Vetter88595ac2015-03-26 12:42:24 +01002589 struct drm_plane *primary = intel_crtc->base.primary;
2590 struct drm_framebuffer *fb;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002591
Damien Lespiau2d140302015-02-05 17:22:18 +00002592 if (!plane_config->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002593 return;
2594
Daniel Vetterf6936e22015-03-26 12:17:05 +01002595 if (intel_alloc_initial_plane_obj(intel_crtc, plane_config)) {
Daniel Vetter88595ac2015-03-26 12:42:24 +01002596 fb = &plane_config->fb->base;
2597 goto valid_fb;
Damien Lespiauf55548b2015-02-05 18:30:20 +00002598 }
Jesse Barnes484b41d2014-03-07 08:57:55 -08002599
Damien Lespiau2d140302015-02-05 17:22:18 +00002600 kfree(plane_config->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002601
2602 /*
2603 * Failed to alloc the obj, check to see if we should share
2604 * an fb with another CRTC instead
2605 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002606 for_each_crtc(dev, c) {
Jesse Barnes484b41d2014-03-07 08:57:55 -08002607 i = to_intel_crtc(c);
2608
2609 if (c == &intel_crtc->base)
2610 continue;
2611
Matt Roper2ff8fde2014-07-08 07:50:07 -07002612 if (!i->active)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002613 continue;
2614
Daniel Vetter88595ac2015-03-26 12:42:24 +01002615 fb = c->primary->fb;
2616 if (!fb)
Matt Roper2ff8fde2014-07-08 07:50:07 -07002617 continue;
2618
Daniel Vetter88595ac2015-03-26 12:42:24 +01002619 obj = intel_fb_obj(fb);
Matt Roper2ff8fde2014-07-08 07:50:07 -07002620 if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) {
Daniel Vetter88595ac2015-03-26 12:42:24 +01002621 drm_framebuffer_reference(fb);
2622 goto valid_fb;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002623 }
2624 }
Daniel Vetter88595ac2015-03-26 12:42:24 +01002625
2626 return;
2627
2628valid_fb:
2629 obj = intel_fb_obj(fb);
2630 if (obj->tiling_mode != I915_TILING_NONE)
2631 dev_priv->preserve_bios_swizzle = true;
2632
2633 primary->fb = fb;
Maarten Lankhorst36750f22015-06-01 12:49:54 +02002634 primary->crtc = primary->state->crtc = &intel_crtc->base;
Daniel Vetter88595ac2015-03-26 12:42:24 +01002635 update_state_fb(primary);
Maarten Lankhorst36750f22015-06-01 12:49:54 +02002636 intel_crtc->base.state->plane_mask |= (1 << drm_plane_index(primary));
Daniel Vetter88595ac2015-03-26 12:42:24 +01002637 obj->frontbuffer_bits |= INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002638}
2639
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002640static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2641 struct drm_framebuffer *fb,
2642 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07002643{
2644 struct drm_device *dev = crtc->dev;
2645 struct drm_i915_private *dev_priv = dev->dev_private;
2646 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002647 struct drm_plane *primary = crtc->primary;
2648 bool visible = to_intel_plane_state(primary->state)->visible;
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002649 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002650 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002651 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002652 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002653 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302654 int pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002655
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002656 if (!visible || !fb) {
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002657 I915_WRITE(reg, 0);
2658 if (INTEL_INFO(dev)->gen >= 4)
2659 I915_WRITE(DSPSURF(plane), 0);
2660 else
2661 I915_WRITE(DSPADDR(plane), 0);
2662 POSTING_READ(reg);
2663 return;
2664 }
2665
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002666 obj = intel_fb_obj(fb);
2667 if (WARN_ON(obj == NULL))
2668 return;
2669
2670 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2671
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002672 dspcntr = DISPPLANE_GAMMA_ENABLE;
2673
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002674 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002675
2676 if (INTEL_INFO(dev)->gen < 4) {
2677 if (intel_crtc->pipe == PIPE_B)
2678 dspcntr |= DISPPLANE_SEL_PIPE_B;
2679
2680 /* pipesrc and dspsize control the size that is scaled from,
2681 * which should always be the user's requested size.
2682 */
2683 I915_WRITE(DSPSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002684 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2685 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002686 I915_WRITE(DSPPOS(plane), 0);
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002687 } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) {
2688 I915_WRITE(PRIMSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002689 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2690 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002691 I915_WRITE(PRIMPOS(plane), 0);
2692 I915_WRITE(PRIMCNSTALPHA(plane), 0);
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002693 }
2694
Ville Syrjälä57779d02012-10-31 17:50:14 +02002695 switch (fb->pixel_format) {
2696 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002697 dspcntr |= DISPPLANE_8BPP;
2698 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002699 case DRM_FORMAT_XRGB1555:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002700 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002701 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002702 case DRM_FORMAT_RGB565:
2703 dspcntr |= DISPPLANE_BGRX565;
2704 break;
2705 case DRM_FORMAT_XRGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002706 dspcntr |= DISPPLANE_BGRX888;
2707 break;
2708 case DRM_FORMAT_XBGR8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002709 dspcntr |= DISPPLANE_RGBX888;
2710 break;
2711 case DRM_FORMAT_XRGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002712 dspcntr |= DISPPLANE_BGRX101010;
2713 break;
2714 case DRM_FORMAT_XBGR2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002715 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002716 break;
2717 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002718 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07002719 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002720
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002721 if (INTEL_INFO(dev)->gen >= 4 &&
2722 obj->tiling_mode != I915_TILING_NONE)
2723 dspcntr |= DISPPLANE_TILED;
Jesse Barnes81255562010-08-02 12:07:50 -07002724
Ville Syrjäläde1aa622013-06-07 10:47:01 +03002725 if (IS_G4X(dev))
2726 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2727
Ville Syrjäläb98971272014-08-27 16:51:22 +03002728 linear_offset = y * fb->pitches[0] + x * pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002729
Daniel Vetterc2c75132012-07-05 12:17:30 +02002730 if (INTEL_INFO(dev)->gen >= 4) {
2731 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002732 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002733 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002734 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002735 linear_offset -= intel_crtc->dspaddr_offset;
2736 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002737 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002738 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002739
Matt Roper8e7d6882015-01-21 16:35:41 -08002740 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302741 dspcntr |= DISPPLANE_ROTATE_180;
2742
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002743 x += (intel_crtc->config->pipe_src_w - 1);
2744 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302745
2746 /* Finding the last pixel of the last line of the display
2747 data and adding to linear_offset*/
2748 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002749 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2750 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302751 }
2752
2753 I915_WRITE(reg, dspcntr);
2754
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002755 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002756 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002757 I915_WRITE(DSPSURF(plane),
2758 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002759 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002760 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002761 } else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002762 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002763 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002764}
2765
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002766static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2767 struct drm_framebuffer *fb,
2768 int x, int y)
Jesse Barnes17638cd2011-06-24 12:19:23 -07002769{
2770 struct drm_device *dev = crtc->dev;
2771 struct drm_i915_private *dev_priv = dev->dev_private;
2772 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002773 struct drm_plane *primary = crtc->primary;
2774 bool visible = to_intel_plane_state(primary->state)->visible;
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002775 struct drm_i915_gem_object *obj;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002776 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002777 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002778 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002779 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302780 int pixel_size;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002781
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002782 if (!visible || !fb) {
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002783 I915_WRITE(reg, 0);
2784 I915_WRITE(DSPSURF(plane), 0);
2785 POSTING_READ(reg);
2786 return;
2787 }
2788
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002789 obj = intel_fb_obj(fb);
2790 if (WARN_ON(obj == NULL))
2791 return;
2792
2793 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2794
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002795 dspcntr = DISPPLANE_GAMMA_ENABLE;
2796
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002797 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002798
2799 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
2800 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
2801
Ville Syrjälä57779d02012-10-31 17:50:14 +02002802 switch (fb->pixel_format) {
2803 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002804 dspcntr |= DISPPLANE_8BPP;
2805 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002806 case DRM_FORMAT_RGB565:
2807 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002808 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002809 case DRM_FORMAT_XRGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002810 dspcntr |= DISPPLANE_BGRX888;
2811 break;
2812 case DRM_FORMAT_XBGR8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002813 dspcntr |= DISPPLANE_RGBX888;
2814 break;
2815 case DRM_FORMAT_XRGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002816 dspcntr |= DISPPLANE_BGRX101010;
2817 break;
2818 case DRM_FORMAT_XBGR2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002819 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002820 break;
2821 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002822 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002823 }
2824
2825 if (obj->tiling_mode != I915_TILING_NONE)
2826 dspcntr |= DISPPLANE_TILED;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002827
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002828 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03002829 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002830
Ville Syrjäläb98971272014-08-27 16:51:22 +03002831 linear_offset = y * fb->pitches[0] + x * pixel_size;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002832 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002833 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002834 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002835 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002836 linear_offset -= intel_crtc->dspaddr_offset;
Matt Roper8e7d6882015-01-21 16:35:41 -08002837 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302838 dspcntr |= DISPPLANE_ROTATE_180;
2839
2840 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002841 x += (intel_crtc->config->pipe_src_w - 1);
2842 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302843
2844 /* Finding the last pixel of the last line of the display
2845 data and adding to linear_offset*/
2846 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002847 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2848 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302849 }
2850 }
2851
2852 I915_WRITE(reg, dspcntr);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002853
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002854 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002855 I915_WRITE(DSPSURF(plane),
2856 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Paulo Zanonib3dc6852013-11-02 21:07:33 -07002857 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002858 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2859 } else {
2860 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2861 I915_WRITE(DSPLINOFF(plane), linear_offset);
2862 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002863 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002864}
2865
Damien Lespiaub3218032015-02-27 11:15:18 +00002866u32 intel_fb_stride_alignment(struct drm_device *dev, uint64_t fb_modifier,
2867 uint32_t pixel_format)
2868{
2869 u32 bits_per_pixel = drm_format_plane_cpp(pixel_format, 0) * 8;
2870
2871 /*
2872 * The stride is either expressed as a multiple of 64 bytes
2873 * chunks for linear buffers or in number of tiles for tiled
2874 * buffers.
2875 */
2876 switch (fb_modifier) {
2877 case DRM_FORMAT_MOD_NONE:
2878 return 64;
2879 case I915_FORMAT_MOD_X_TILED:
2880 if (INTEL_INFO(dev)->gen == 2)
2881 return 128;
2882 return 512;
2883 case I915_FORMAT_MOD_Y_TILED:
2884 /* No need to check for old gens and Y tiling since this is
2885 * about the display engine and those will be blocked before
2886 * we get here.
2887 */
2888 return 128;
2889 case I915_FORMAT_MOD_Yf_TILED:
2890 if (bits_per_pixel == 8)
2891 return 64;
2892 else
2893 return 128;
2894 default:
2895 MISSING_CASE(fb_modifier);
2896 return 64;
2897 }
2898}
2899
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002900unsigned long intel_plane_obj_offset(struct intel_plane *intel_plane,
2901 struct drm_i915_gem_object *obj)
2902{
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02002903 const struct i915_ggtt_view *view = &i915_ggtt_view_normal;
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002904
2905 if (intel_rotation_90_or_270(intel_plane->base.state->rotation))
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02002906 view = &i915_ggtt_view_rotated;
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002907
2908 return i915_gem_obj_ggtt_offset_view(obj, view);
2909}
2910
Chandra Kondurua1b22782015-04-07 15:28:45 -07002911/*
2912 * This function detaches (aka. unbinds) unused scalers in hardware
2913 */
2914void skl_detach_scalers(struct intel_crtc *intel_crtc)
2915{
2916 struct drm_device *dev;
2917 struct drm_i915_private *dev_priv;
2918 struct intel_crtc_scaler_state *scaler_state;
2919 int i;
2920
2921 if (!intel_crtc || !intel_crtc->config)
2922 return;
2923
2924 dev = intel_crtc->base.dev;
2925 dev_priv = dev->dev_private;
2926 scaler_state = &intel_crtc->config->scaler_state;
2927
2928 /* loop through and disable scalers that aren't in use */
2929 for (i = 0; i < intel_crtc->num_scalers; i++) {
2930 if (!scaler_state->scalers[i].in_use) {
2931 I915_WRITE(SKL_PS_CTRL(intel_crtc->pipe, i), 0);
2932 I915_WRITE(SKL_PS_WIN_POS(intel_crtc->pipe, i), 0);
2933 I915_WRITE(SKL_PS_WIN_SZ(intel_crtc->pipe, i), 0);
2934 DRM_DEBUG_KMS("CRTC:%d Disabled scaler id %u.%u\n",
2935 intel_crtc->base.base.id, intel_crtc->pipe, i);
2936 }
2937 }
2938}
2939
Chandra Konduru6156a452015-04-27 13:48:39 -07002940u32 skl_plane_ctl_format(uint32_t pixel_format)
2941{
Chandra Konduru6156a452015-04-27 13:48:39 -07002942 switch (pixel_format) {
Damien Lespiaud161cf72015-05-12 16:13:17 +01002943 case DRM_FORMAT_C8:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01002944 return PLANE_CTL_FORMAT_INDEXED;
Chandra Konduru6156a452015-04-27 13:48:39 -07002945 case DRM_FORMAT_RGB565:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01002946 return PLANE_CTL_FORMAT_RGB_565;
Chandra Konduru6156a452015-04-27 13:48:39 -07002947 case DRM_FORMAT_XBGR8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01002948 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX;
Chandra Konduru6156a452015-04-27 13:48:39 -07002949 case DRM_FORMAT_XRGB8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01002950 return PLANE_CTL_FORMAT_XRGB_8888;
Chandra Konduru6156a452015-04-27 13:48:39 -07002951 /*
2952 * XXX: For ARBG/ABGR formats we default to expecting scanout buffers
2953 * to be already pre-multiplied. We need to add a knob (or a different
2954 * DRM_FORMAT) for user-space to configure that.
2955 */
2956 case DRM_FORMAT_ABGR8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01002957 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX |
Chandra Konduru6156a452015-04-27 13:48:39 -07002958 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
Chandra Konduru6156a452015-04-27 13:48:39 -07002959 case DRM_FORMAT_ARGB8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01002960 return PLANE_CTL_FORMAT_XRGB_8888 |
Chandra Konduru6156a452015-04-27 13:48:39 -07002961 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
Chandra Konduru6156a452015-04-27 13:48:39 -07002962 case DRM_FORMAT_XRGB2101010:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01002963 return PLANE_CTL_FORMAT_XRGB_2101010;
Chandra Konduru6156a452015-04-27 13:48:39 -07002964 case DRM_FORMAT_XBGR2101010:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01002965 return PLANE_CTL_ORDER_RGBX | PLANE_CTL_FORMAT_XRGB_2101010;
Chandra Konduru6156a452015-04-27 13:48:39 -07002966 case DRM_FORMAT_YUYV:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01002967 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YUYV;
Chandra Konduru6156a452015-04-27 13:48:39 -07002968 case DRM_FORMAT_YVYU:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01002969 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YVYU;
Chandra Konduru6156a452015-04-27 13:48:39 -07002970 case DRM_FORMAT_UYVY:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01002971 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_UYVY;
Chandra Konduru6156a452015-04-27 13:48:39 -07002972 case DRM_FORMAT_VYUY:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01002973 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_VYUY;
Chandra Konduru6156a452015-04-27 13:48:39 -07002974 default:
Damien Lespiau4249eee2015-05-12 16:13:16 +01002975 MISSING_CASE(pixel_format);
Chandra Konduru6156a452015-04-27 13:48:39 -07002976 }
Damien Lespiau8cfcba42015-05-12 16:13:14 +01002977
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01002978 return 0;
Chandra Konduru6156a452015-04-27 13:48:39 -07002979}
2980
2981u32 skl_plane_ctl_tiling(uint64_t fb_modifier)
2982{
Chandra Konduru6156a452015-04-27 13:48:39 -07002983 switch (fb_modifier) {
2984 case DRM_FORMAT_MOD_NONE:
2985 break;
2986 case I915_FORMAT_MOD_X_TILED:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01002987 return PLANE_CTL_TILED_X;
Chandra Konduru6156a452015-04-27 13:48:39 -07002988 case I915_FORMAT_MOD_Y_TILED:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01002989 return PLANE_CTL_TILED_Y;
Chandra Konduru6156a452015-04-27 13:48:39 -07002990 case I915_FORMAT_MOD_Yf_TILED:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01002991 return PLANE_CTL_TILED_YF;
Chandra Konduru6156a452015-04-27 13:48:39 -07002992 default:
2993 MISSING_CASE(fb_modifier);
2994 }
Damien Lespiau8cfcba42015-05-12 16:13:14 +01002995
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01002996 return 0;
Chandra Konduru6156a452015-04-27 13:48:39 -07002997}
2998
2999u32 skl_plane_ctl_rotation(unsigned int rotation)
3000{
Chandra Konduru6156a452015-04-27 13:48:39 -07003001 switch (rotation) {
3002 case BIT(DRM_ROTATE_0):
3003 break;
Sonika Jindal1e8df162015-05-20 13:40:48 +05303004 /*
3005 * DRM_ROTATE_ is counter clockwise to stay compatible with Xrandr
3006 * while i915 HW rotation is clockwise, thats why this swapping.
3007 */
Chandra Konduru6156a452015-04-27 13:48:39 -07003008 case BIT(DRM_ROTATE_90):
Sonika Jindal1e8df162015-05-20 13:40:48 +05303009 return PLANE_CTL_ROTATE_270;
Chandra Konduru6156a452015-04-27 13:48:39 -07003010 case BIT(DRM_ROTATE_180):
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003011 return PLANE_CTL_ROTATE_180;
Chandra Konduru6156a452015-04-27 13:48:39 -07003012 case BIT(DRM_ROTATE_270):
Sonika Jindal1e8df162015-05-20 13:40:48 +05303013 return PLANE_CTL_ROTATE_90;
Chandra Konduru6156a452015-04-27 13:48:39 -07003014 default:
3015 MISSING_CASE(rotation);
3016 }
3017
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003018 return 0;
Chandra Konduru6156a452015-04-27 13:48:39 -07003019}
3020
Damien Lespiau70d21f02013-07-03 21:06:04 +01003021static void skylake_update_primary_plane(struct drm_crtc *crtc,
3022 struct drm_framebuffer *fb,
3023 int x, int y)
3024{
3025 struct drm_device *dev = crtc->dev;
3026 struct drm_i915_private *dev_priv = dev->dev_private;
3027 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03003028 struct drm_plane *plane = crtc->primary;
3029 bool visible = to_intel_plane_state(plane->state)->visible;
Damien Lespiau70d21f02013-07-03 21:06:04 +01003030 struct drm_i915_gem_object *obj;
3031 int pipe = intel_crtc->pipe;
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303032 u32 plane_ctl, stride_div, stride;
3033 u32 tile_height, plane_offset, plane_size;
3034 unsigned int rotation;
3035 int x_offset, y_offset;
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00003036 unsigned long surf_addr;
Chandra Konduru6156a452015-04-27 13:48:39 -07003037 struct intel_crtc_state *crtc_state = intel_crtc->config;
3038 struct intel_plane_state *plane_state;
3039 int src_x = 0, src_y = 0, src_w = 0, src_h = 0;
3040 int dst_x = 0, dst_y = 0, dst_w = 0, dst_h = 0;
3041 int scaler_id = -1;
3042
Chandra Konduru6156a452015-04-27 13:48:39 -07003043 plane_state = to_intel_plane_state(plane->state);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003044
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03003045 if (!visible || !fb) {
Damien Lespiau70d21f02013-07-03 21:06:04 +01003046 I915_WRITE(PLANE_CTL(pipe, 0), 0);
3047 I915_WRITE(PLANE_SURF(pipe, 0), 0);
3048 POSTING_READ(PLANE_CTL(pipe, 0));
3049 return;
3050 }
3051
3052 plane_ctl = PLANE_CTL_ENABLE |
3053 PLANE_CTL_PIPE_GAMMA_ENABLE |
3054 PLANE_CTL_PIPE_CSC_ENABLE;
3055
Chandra Konduru6156a452015-04-27 13:48:39 -07003056 plane_ctl |= skl_plane_ctl_format(fb->pixel_format);
3057 plane_ctl |= skl_plane_ctl_tiling(fb->modifier[0]);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003058 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303059
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303060 rotation = plane->state->rotation;
Chandra Konduru6156a452015-04-27 13:48:39 -07003061 plane_ctl |= skl_plane_ctl_rotation(rotation);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003062
Damien Lespiaub3218032015-02-27 11:15:18 +00003063 obj = intel_fb_obj(fb);
3064 stride_div = intel_fb_stride_alignment(dev, fb->modifier[0],
3065 fb->pixel_format);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303066 surf_addr = intel_plane_obj_offset(to_intel_plane(plane), obj);
3067
Chandra Konduru6156a452015-04-27 13:48:39 -07003068 /*
3069 * FIXME: intel_plane_state->src, dst aren't set when transitional
3070 * update_plane helpers are called from legacy paths.
3071 * Once full atomic crtc is available, below check can be avoided.
3072 */
3073 if (drm_rect_width(&plane_state->src)) {
3074 scaler_id = plane_state->scaler_id;
3075 src_x = plane_state->src.x1 >> 16;
3076 src_y = plane_state->src.y1 >> 16;
3077 src_w = drm_rect_width(&plane_state->src) >> 16;
3078 src_h = drm_rect_height(&plane_state->src) >> 16;
3079 dst_x = plane_state->dst.x1;
3080 dst_y = plane_state->dst.y1;
3081 dst_w = drm_rect_width(&plane_state->dst);
3082 dst_h = drm_rect_height(&plane_state->dst);
3083
3084 WARN_ON(x != src_x || y != src_y);
3085 } else {
3086 src_w = intel_crtc->config->pipe_src_w;
3087 src_h = intel_crtc->config->pipe_src_h;
3088 }
3089
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303090 if (intel_rotation_90_or_270(rotation)) {
3091 /* stride = Surface height in tiles */
Chandra Konduru2614f172015-05-08 20:22:46 -07003092 tile_height = intel_tile_height(dev, fb->pixel_format,
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303093 fb->modifier[0]);
3094 stride = DIV_ROUND_UP(fb->height, tile_height);
Chandra Konduru6156a452015-04-27 13:48:39 -07003095 x_offset = stride * tile_height - y - src_h;
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303096 y_offset = x;
Chandra Konduru6156a452015-04-27 13:48:39 -07003097 plane_size = (src_w - 1) << 16 | (src_h - 1);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303098 } else {
3099 stride = fb->pitches[0] / stride_div;
3100 x_offset = x;
3101 y_offset = y;
Chandra Konduru6156a452015-04-27 13:48:39 -07003102 plane_size = (src_h - 1) << 16 | (src_w - 1);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303103 }
3104 plane_offset = y_offset << 16 | x_offset;
Damien Lespiaub3218032015-02-27 11:15:18 +00003105
Damien Lespiau70d21f02013-07-03 21:06:04 +01003106 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303107 I915_WRITE(PLANE_OFFSET(pipe, 0), plane_offset);
3108 I915_WRITE(PLANE_SIZE(pipe, 0), plane_size);
3109 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
Chandra Konduru6156a452015-04-27 13:48:39 -07003110
3111 if (scaler_id >= 0) {
3112 uint32_t ps_ctrl = 0;
3113
3114 WARN_ON(!dst_w || !dst_h);
3115 ps_ctrl = PS_SCALER_EN | PS_PLANE_SEL(0) |
3116 crtc_state->scaler_state.scalers[scaler_id].mode;
3117 I915_WRITE(SKL_PS_CTRL(pipe, scaler_id), ps_ctrl);
3118 I915_WRITE(SKL_PS_PWR_GATE(pipe, scaler_id), 0);
3119 I915_WRITE(SKL_PS_WIN_POS(pipe, scaler_id), (dst_x << 16) | dst_y);
3120 I915_WRITE(SKL_PS_WIN_SZ(pipe, scaler_id), (dst_w << 16) | dst_h);
3121 I915_WRITE(PLANE_POS(pipe, 0), 0);
3122 } else {
3123 I915_WRITE(PLANE_POS(pipe, 0), (dst_y << 16) | dst_x);
3124 }
3125
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00003126 I915_WRITE(PLANE_SURF(pipe, 0), surf_addr);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003127
3128 POSTING_READ(PLANE_SURF(pipe, 0));
3129}
3130
Jesse Barnes17638cd2011-06-24 12:19:23 -07003131/* Assume fb object is pinned & idle & fenced and just update base pointers */
3132static int
3133intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
3134 int x, int y, enum mode_set_atomic state)
3135{
3136 struct drm_device *dev = crtc->dev;
3137 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07003138
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01003139 if (dev_priv->display.disable_fbc)
3140 dev_priv->display.disable_fbc(dev);
Jesse Barnes81255562010-08-02 12:07:50 -07003141
Daniel Vetter29b9bde2014-04-24 23:55:01 +02003142 dev_priv->display.update_primary_plane(crtc, fb, x, y);
3143
3144 return 0;
Jesse Barnes81255562010-08-02 12:07:50 -07003145}
3146
Ville Syrjälä75147472014-11-24 18:28:11 +02003147static void intel_complete_page_flips(struct drm_device *dev)
Ville Syrjälä96a02912013-02-18 19:08:49 +02003148{
Ville Syrjälä96a02912013-02-18 19:08:49 +02003149 struct drm_crtc *crtc;
3150
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01003151 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02003152 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3153 enum plane plane = intel_crtc->plane;
3154
3155 intel_prepare_page_flip(dev, plane);
3156 intel_finish_page_flip_plane(dev, plane);
3157 }
Ville Syrjälä75147472014-11-24 18:28:11 +02003158}
3159
3160static void intel_update_primary_planes(struct drm_device *dev)
3161{
3162 struct drm_i915_private *dev_priv = dev->dev_private;
3163 struct drm_crtc *crtc;
Ville Syrjälä96a02912013-02-18 19:08:49 +02003164
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01003165 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02003166 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3167
Rob Clark51fd3712013-11-19 12:10:12 -05003168 drm_modeset_lock(&crtc->mutex, NULL);
Chris Wilson947fdaadf2013-11-27 12:01:32 +00003169 /*
3170 * FIXME: Once we have proper support for primary planes (and
3171 * disabling them without disabling the entire crtc) allow again
Dave Airlie66e514c2014-04-03 07:51:54 +10003172 * a NULL crtc->primary->fb.
Chris Wilson947fdaadf2013-11-27 12:01:32 +00003173 */
Matt Roperf4510a22014-04-01 15:22:40 -07003174 if (intel_crtc->active && crtc->primary->fb)
Matt Roper262ca2b2014-03-18 17:22:55 -07003175 dev_priv->display.update_primary_plane(crtc,
Dave Airlie66e514c2014-04-03 07:51:54 +10003176 crtc->primary->fb,
Matt Roper262ca2b2014-03-18 17:22:55 -07003177 crtc->x,
3178 crtc->y);
Rob Clark51fd3712013-11-19 12:10:12 -05003179 drm_modeset_unlock(&crtc->mutex);
Ville Syrjälä96a02912013-02-18 19:08:49 +02003180 }
3181}
3182
Ville Syrjälä75147472014-11-24 18:28:11 +02003183void intel_prepare_reset(struct drm_device *dev)
3184{
3185 /* no reset support for gen2 */
3186 if (IS_GEN2(dev))
3187 return;
3188
3189 /* reset doesn't touch the display */
3190 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
3191 return;
3192
3193 drm_modeset_lock_all(dev);
Ville Syrjäläf98ce922014-11-21 21:54:30 +02003194 /*
3195 * Disabling the crtcs gracefully seems nicer. Also the
3196 * g33 docs say we should at least disable all the planes.
3197 */
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02003198 intel_display_suspend(dev);
Ville Syrjälä75147472014-11-24 18:28:11 +02003199}
3200
3201void intel_finish_reset(struct drm_device *dev)
3202{
3203 struct drm_i915_private *dev_priv = to_i915(dev);
3204
3205 /*
3206 * Flips in the rings will be nuked by the reset,
3207 * so complete all pending flips so that user space
3208 * will get its events and not get stuck.
3209 */
3210 intel_complete_page_flips(dev);
3211
3212 /* no reset support for gen2 */
3213 if (IS_GEN2(dev))
3214 return;
3215
3216 /* reset doesn't touch the display */
3217 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) {
3218 /*
3219 * Flips in the rings have been nuked by the reset,
3220 * so update the base address of all primary
3221 * planes to the the last fb to make sure we're
3222 * showing the correct fb after a reset.
3223 */
3224 intel_update_primary_planes(dev);
3225 return;
3226 }
3227
3228 /*
3229 * The display has been reset as well,
3230 * so need a full re-initialization.
3231 */
3232 intel_runtime_pm_disable_interrupts(dev_priv);
3233 intel_runtime_pm_enable_interrupts(dev_priv);
3234
3235 intel_modeset_init_hw(dev);
3236
3237 spin_lock_irq(&dev_priv->irq_lock);
3238 if (dev_priv->display.hpd_irq_setup)
3239 dev_priv->display.hpd_irq_setup(dev);
3240 spin_unlock_irq(&dev_priv->irq_lock);
3241
3242 intel_modeset_setup_hw_state(dev, true);
3243
3244 intel_hpd_init(dev_priv);
3245
3246 drm_modeset_unlock_all(dev);
3247}
3248
Chris Wilson2e2f3512015-04-27 13:41:14 +01003249static void
Chris Wilson14667a42012-04-03 17:58:35 +01003250intel_finish_fb(struct drm_framebuffer *old_fb)
3251{
Matt Roper2ff8fde2014-07-08 07:50:07 -07003252 struct drm_i915_gem_object *obj = intel_fb_obj(old_fb);
Chris Wilson2e2f3512015-04-27 13:41:14 +01003253 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilson14667a42012-04-03 17:58:35 +01003254 bool was_interruptible = dev_priv->mm.interruptible;
3255 int ret;
3256
Chris Wilson14667a42012-04-03 17:58:35 +01003257 /* Big Hammer, we also need to ensure that any pending
3258 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
3259 * current scanout is retired before unpinning the old
Chris Wilson2e2f3512015-04-27 13:41:14 +01003260 * framebuffer. Note that we rely on userspace rendering
3261 * into the buffer attached to the pipe they are waiting
3262 * on. If not, userspace generates a GPU hang with IPEHR
3263 * point to the MI_WAIT_FOR_EVENT.
Chris Wilson14667a42012-04-03 17:58:35 +01003264 *
3265 * This should only fail upon a hung GPU, in which case we
3266 * can safely continue.
3267 */
3268 dev_priv->mm.interruptible = false;
Chris Wilson2e2f3512015-04-27 13:41:14 +01003269 ret = i915_gem_object_wait_rendering(obj, true);
Chris Wilson14667a42012-04-03 17:58:35 +01003270 dev_priv->mm.interruptible = was_interruptible;
3271
Chris Wilson2e2f3512015-04-27 13:41:14 +01003272 WARN_ON(ret);
Chris Wilson14667a42012-04-03 17:58:35 +01003273}
3274
Chris Wilson7d5e3792014-03-04 13:15:08 +00003275static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
3276{
3277 struct drm_device *dev = crtc->dev;
3278 struct drm_i915_private *dev_priv = dev->dev_private;
3279 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003280 bool pending;
3281
3282 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
3283 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
3284 return false;
3285
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003286 spin_lock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003287 pending = to_intel_crtc(crtc)->unpin_work != NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003288 spin_unlock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003289
3290 return pending;
3291}
3292
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003293static void intel_update_pipe_size(struct intel_crtc *crtc)
3294{
3295 struct drm_device *dev = crtc->base.dev;
3296 struct drm_i915_private *dev_priv = dev->dev_private;
3297 const struct drm_display_mode *adjusted_mode;
3298
3299 if (!i915.fastboot)
3300 return;
3301
3302 /*
3303 * Update pipe size and adjust fitter if needed: the reason for this is
3304 * that in compute_mode_changes we check the native mode (not the pfit
3305 * mode) to see if we can flip rather than do a full mode set. In the
3306 * fastboot case, we'll flip, but if we don't update the pipesrc and
3307 * pfit state, we'll end up with a big fb scanned out into the wrong
3308 * sized surface.
3309 *
3310 * To fix this properly, we need to hoist the checks up into
3311 * compute_mode_changes (or above), check the actual pfit state and
3312 * whether the platform allows pfit disable with pipe active, and only
3313 * then update the pipesrc and pfit state, even on the flip path.
3314 */
3315
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003316 adjusted_mode = &crtc->config->base.adjusted_mode;
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003317
3318 I915_WRITE(PIPESRC(crtc->pipe),
3319 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
3320 (adjusted_mode->crtc_vdisplay - 1));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003321 if (!crtc->config->pch_pfit.enabled &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03003322 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
3323 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003324 I915_WRITE(PF_CTL(crtc->pipe), 0);
3325 I915_WRITE(PF_WIN_POS(crtc->pipe), 0);
3326 I915_WRITE(PF_WIN_SZ(crtc->pipe), 0);
3327 }
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003328 crtc->config->pipe_src_w = adjusted_mode->crtc_hdisplay;
3329 crtc->config->pipe_src_h = adjusted_mode->crtc_vdisplay;
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003330}
3331
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003332static void intel_fdi_normal_train(struct drm_crtc *crtc)
3333{
3334 struct drm_device *dev = crtc->dev;
3335 struct drm_i915_private *dev_priv = dev->dev_private;
3336 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3337 int pipe = intel_crtc->pipe;
3338 u32 reg, temp;
3339
3340 /* enable normal train */
3341 reg = FDI_TX_CTL(pipe);
3342 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07003343 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07003344 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3345 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07003346 } else {
3347 temp &= ~FDI_LINK_TRAIN_NONE;
3348 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07003349 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003350 I915_WRITE(reg, temp);
3351
3352 reg = FDI_RX_CTL(pipe);
3353 temp = I915_READ(reg);
3354 if (HAS_PCH_CPT(dev)) {
3355 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3356 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3357 } else {
3358 temp &= ~FDI_LINK_TRAIN_NONE;
3359 temp |= FDI_LINK_TRAIN_NONE;
3360 }
3361 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3362
3363 /* wait one idle pattern time */
3364 POSTING_READ(reg);
3365 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07003366
3367 /* IVB wants error correction enabled */
3368 if (IS_IVYBRIDGE(dev))
3369 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3370 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003371}
3372
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003373/* The FDI link training functions for ILK/Ibexpeak. */
3374static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3375{
3376 struct drm_device *dev = crtc->dev;
3377 struct drm_i915_private *dev_priv = dev->dev_private;
3378 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3379 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003380 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003381
Ville Syrjälä1c8562f2014-04-25 22:12:07 +03003382 /* FDI needs bits from pipe first */
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003383 assert_pipe_enabled(dev_priv, pipe);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003384
Adam Jacksone1a44742010-06-25 15:32:14 -04003385 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3386 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003387 reg = FDI_RX_IMR(pipe);
3388 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003389 temp &= ~FDI_RX_SYMBOL_LOCK;
3390 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003391 I915_WRITE(reg, temp);
3392 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003393 udelay(150);
3394
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003395 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003396 reg = FDI_TX_CTL(pipe);
3397 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003398 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003399 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003400 temp &= ~FDI_LINK_TRAIN_NONE;
3401 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003402 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003403
Chris Wilson5eddb702010-09-11 13:48:45 +01003404 reg = FDI_RX_CTL(pipe);
3405 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003406 temp &= ~FDI_LINK_TRAIN_NONE;
3407 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003408 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3409
3410 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003411 udelay(150);
3412
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003413 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01003414 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3415 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3416 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003417
Chris Wilson5eddb702010-09-11 13:48:45 +01003418 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003419 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003420 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003421 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3422
3423 if ((temp & FDI_RX_BIT_LOCK)) {
3424 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01003425 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003426 break;
3427 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003428 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003429 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003430 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003431
3432 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003433 reg = FDI_TX_CTL(pipe);
3434 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003435 temp &= ~FDI_LINK_TRAIN_NONE;
3436 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003437 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003438
Chris Wilson5eddb702010-09-11 13:48:45 +01003439 reg = FDI_RX_CTL(pipe);
3440 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003441 temp &= ~FDI_LINK_TRAIN_NONE;
3442 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003443 I915_WRITE(reg, temp);
3444
3445 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003446 udelay(150);
3447
Chris Wilson5eddb702010-09-11 13:48:45 +01003448 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003449 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003450 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003451 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3452
3453 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003454 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003455 DRM_DEBUG_KMS("FDI train 2 done.\n");
3456 break;
3457 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003458 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003459 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003460 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003461
3462 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07003463
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003464}
3465
Akshay Joshi0206e352011-08-16 15:34:10 -04003466static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003467 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3468 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3469 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3470 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3471};
3472
3473/* The FDI link training functions for SNB/Cougarpoint. */
3474static void gen6_fdi_link_train(struct drm_crtc *crtc)
3475{
3476 struct drm_device *dev = crtc->dev;
3477 struct drm_i915_private *dev_priv = dev->dev_private;
3478 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3479 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05003480 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003481
Adam Jacksone1a44742010-06-25 15:32:14 -04003482 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3483 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003484 reg = FDI_RX_IMR(pipe);
3485 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003486 temp &= ~FDI_RX_SYMBOL_LOCK;
3487 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003488 I915_WRITE(reg, temp);
3489
3490 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003491 udelay(150);
3492
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003493 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003494 reg = FDI_TX_CTL(pipe);
3495 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003496 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003497 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003498 temp &= ~FDI_LINK_TRAIN_NONE;
3499 temp |= FDI_LINK_TRAIN_PATTERN_1;
3500 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3501 /* SNB-B */
3502 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01003503 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003504
Daniel Vetterd74cf322012-10-26 10:58:13 +02003505 I915_WRITE(FDI_RX_MISC(pipe),
3506 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3507
Chris Wilson5eddb702010-09-11 13:48:45 +01003508 reg = FDI_RX_CTL(pipe);
3509 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003510 if (HAS_PCH_CPT(dev)) {
3511 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3512 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3513 } else {
3514 temp &= ~FDI_LINK_TRAIN_NONE;
3515 temp |= FDI_LINK_TRAIN_PATTERN_1;
3516 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003517 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3518
3519 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003520 udelay(150);
3521
Akshay Joshi0206e352011-08-16 15:34:10 -04003522 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003523 reg = FDI_TX_CTL(pipe);
3524 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003525 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3526 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003527 I915_WRITE(reg, temp);
3528
3529 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003530 udelay(500);
3531
Sean Paulfa37d392012-03-02 12:53:39 -05003532 for (retry = 0; retry < 5; retry++) {
3533 reg = FDI_RX_IIR(pipe);
3534 temp = I915_READ(reg);
3535 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3536 if (temp & FDI_RX_BIT_LOCK) {
3537 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3538 DRM_DEBUG_KMS("FDI train 1 done.\n");
3539 break;
3540 }
3541 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003542 }
Sean Paulfa37d392012-03-02 12:53:39 -05003543 if (retry < 5)
3544 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003545 }
3546 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003547 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003548
3549 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003550 reg = FDI_TX_CTL(pipe);
3551 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003552 temp &= ~FDI_LINK_TRAIN_NONE;
3553 temp |= FDI_LINK_TRAIN_PATTERN_2;
3554 if (IS_GEN6(dev)) {
3555 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3556 /* SNB-B */
3557 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3558 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003559 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003560
Chris Wilson5eddb702010-09-11 13:48:45 +01003561 reg = FDI_RX_CTL(pipe);
3562 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003563 if (HAS_PCH_CPT(dev)) {
3564 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3565 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3566 } else {
3567 temp &= ~FDI_LINK_TRAIN_NONE;
3568 temp |= FDI_LINK_TRAIN_PATTERN_2;
3569 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003570 I915_WRITE(reg, temp);
3571
3572 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003573 udelay(150);
3574
Akshay Joshi0206e352011-08-16 15:34:10 -04003575 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003576 reg = FDI_TX_CTL(pipe);
3577 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003578 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3579 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003580 I915_WRITE(reg, temp);
3581
3582 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003583 udelay(500);
3584
Sean Paulfa37d392012-03-02 12:53:39 -05003585 for (retry = 0; retry < 5; retry++) {
3586 reg = FDI_RX_IIR(pipe);
3587 temp = I915_READ(reg);
3588 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3589 if (temp & FDI_RX_SYMBOL_LOCK) {
3590 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3591 DRM_DEBUG_KMS("FDI train 2 done.\n");
3592 break;
3593 }
3594 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003595 }
Sean Paulfa37d392012-03-02 12:53:39 -05003596 if (retry < 5)
3597 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003598 }
3599 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003600 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003601
3602 DRM_DEBUG_KMS("FDI train done.\n");
3603}
3604
Jesse Barnes357555c2011-04-28 15:09:55 -07003605/* Manual link training for Ivy Bridge A0 parts */
3606static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3607{
3608 struct drm_device *dev = crtc->dev;
3609 struct drm_i915_private *dev_priv = dev->dev_private;
3610 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3611 int pipe = intel_crtc->pipe;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003612 u32 reg, temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07003613
3614 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3615 for train result */
3616 reg = FDI_RX_IMR(pipe);
3617 temp = I915_READ(reg);
3618 temp &= ~FDI_RX_SYMBOL_LOCK;
3619 temp &= ~FDI_RX_BIT_LOCK;
3620 I915_WRITE(reg, temp);
3621
3622 POSTING_READ(reg);
3623 udelay(150);
3624
Daniel Vetter01a415f2012-10-27 15:58:40 +02003625 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3626 I915_READ(FDI_RX_IIR(pipe)));
3627
Jesse Barnes139ccd32013-08-19 11:04:55 -07003628 /* Try each vswing and preemphasis setting twice before moving on */
3629 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3630 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07003631 reg = FDI_TX_CTL(pipe);
3632 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003633 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3634 temp &= ~FDI_TX_ENABLE;
3635 I915_WRITE(reg, temp);
3636
3637 reg = FDI_RX_CTL(pipe);
3638 temp = I915_READ(reg);
3639 temp &= ~FDI_LINK_TRAIN_AUTO;
3640 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3641 temp &= ~FDI_RX_ENABLE;
3642 I915_WRITE(reg, temp);
3643
3644 /* enable CPU FDI TX and PCH FDI RX */
3645 reg = FDI_TX_CTL(pipe);
3646 temp = I915_READ(reg);
3647 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003648 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003649 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07003650 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003651 temp |= snb_b_fdi_train_param[j/2];
3652 temp |= FDI_COMPOSITE_SYNC;
3653 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3654
3655 I915_WRITE(FDI_RX_MISC(pipe),
3656 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3657
3658 reg = FDI_RX_CTL(pipe);
3659 temp = I915_READ(reg);
3660 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3661 temp |= FDI_COMPOSITE_SYNC;
3662 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3663
3664 POSTING_READ(reg);
3665 udelay(1); /* should be 0.5us */
3666
3667 for (i = 0; i < 4; i++) {
3668 reg = FDI_RX_IIR(pipe);
3669 temp = I915_READ(reg);
3670 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3671
3672 if (temp & FDI_RX_BIT_LOCK ||
3673 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3674 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3675 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3676 i);
3677 break;
3678 }
3679 udelay(1); /* should be 0.5us */
3680 }
3681 if (i == 4) {
3682 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3683 continue;
3684 }
3685
3686 /* Train 2 */
3687 reg = FDI_TX_CTL(pipe);
3688 temp = I915_READ(reg);
3689 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3690 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3691 I915_WRITE(reg, temp);
3692
3693 reg = FDI_RX_CTL(pipe);
3694 temp = I915_READ(reg);
3695 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3696 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07003697 I915_WRITE(reg, temp);
3698
3699 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003700 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003701
Jesse Barnes139ccd32013-08-19 11:04:55 -07003702 for (i = 0; i < 4; i++) {
3703 reg = FDI_RX_IIR(pipe);
3704 temp = I915_READ(reg);
3705 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07003706
Jesse Barnes139ccd32013-08-19 11:04:55 -07003707 if (temp & FDI_RX_SYMBOL_LOCK ||
3708 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3709 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3710 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3711 i);
3712 goto train_done;
3713 }
3714 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003715 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07003716 if (i == 4)
3717 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07003718 }
Jesse Barnes357555c2011-04-28 15:09:55 -07003719
Jesse Barnes139ccd32013-08-19 11:04:55 -07003720train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07003721 DRM_DEBUG_KMS("FDI train done.\n");
3722}
3723
Daniel Vetter88cefb62012-08-12 19:27:14 +02003724static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07003725{
Daniel Vetter88cefb62012-08-12 19:27:14 +02003726 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003727 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003728 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003729 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003730
Jesse Barnesc64e3112010-09-10 11:27:03 -07003731
Jesse Barnes0e23b992010-09-10 11:10:00 -07003732 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01003733 reg = FDI_RX_CTL(pipe);
3734 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003735 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003736 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003737 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01003738 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3739
3740 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003741 udelay(200);
3742
3743 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003744 temp = I915_READ(reg);
3745 I915_WRITE(reg, temp | FDI_PCDCLK);
3746
3747 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003748 udelay(200);
3749
Paulo Zanoni20749732012-11-23 15:30:38 -02003750 /* Enable CPU FDI TX PLL, always on for Ironlake */
3751 reg = FDI_TX_CTL(pipe);
3752 temp = I915_READ(reg);
3753 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3754 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01003755
Paulo Zanoni20749732012-11-23 15:30:38 -02003756 POSTING_READ(reg);
3757 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003758 }
3759}
3760
Daniel Vetter88cefb62012-08-12 19:27:14 +02003761static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3762{
3763 struct drm_device *dev = intel_crtc->base.dev;
3764 struct drm_i915_private *dev_priv = dev->dev_private;
3765 int pipe = intel_crtc->pipe;
3766 u32 reg, temp;
3767
3768 /* Switch from PCDclk to Rawclk */
3769 reg = FDI_RX_CTL(pipe);
3770 temp = I915_READ(reg);
3771 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3772
3773 /* Disable CPU FDI TX PLL */
3774 reg = FDI_TX_CTL(pipe);
3775 temp = I915_READ(reg);
3776 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3777
3778 POSTING_READ(reg);
3779 udelay(100);
3780
3781 reg = FDI_RX_CTL(pipe);
3782 temp = I915_READ(reg);
3783 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3784
3785 /* Wait for the clocks to turn off. */
3786 POSTING_READ(reg);
3787 udelay(100);
3788}
3789
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003790static void ironlake_fdi_disable(struct drm_crtc *crtc)
3791{
3792 struct drm_device *dev = crtc->dev;
3793 struct drm_i915_private *dev_priv = dev->dev_private;
3794 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3795 int pipe = intel_crtc->pipe;
3796 u32 reg, temp;
3797
3798 /* disable CPU FDI tx and PCH FDI rx */
3799 reg = FDI_TX_CTL(pipe);
3800 temp = I915_READ(reg);
3801 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3802 POSTING_READ(reg);
3803
3804 reg = FDI_RX_CTL(pipe);
3805 temp = I915_READ(reg);
3806 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003807 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003808 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3809
3810 POSTING_READ(reg);
3811 udelay(100);
3812
3813 /* Ironlake workaround, disable clock pointer after downing FDI */
Robin Schroereba905b2014-05-18 02:24:50 +02003814 if (HAS_PCH_IBX(dev))
Jesse Barnes6f06ce12011-01-04 15:09:38 -08003815 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003816
3817 /* still set train pattern 1 */
3818 reg = FDI_TX_CTL(pipe);
3819 temp = I915_READ(reg);
3820 temp &= ~FDI_LINK_TRAIN_NONE;
3821 temp |= FDI_LINK_TRAIN_PATTERN_1;
3822 I915_WRITE(reg, temp);
3823
3824 reg = FDI_RX_CTL(pipe);
3825 temp = I915_READ(reg);
3826 if (HAS_PCH_CPT(dev)) {
3827 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3828 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3829 } else {
3830 temp &= ~FDI_LINK_TRAIN_NONE;
3831 temp |= FDI_LINK_TRAIN_PATTERN_1;
3832 }
3833 /* BPC in FDI rx is consistent with that in PIPECONF */
3834 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003835 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003836 I915_WRITE(reg, temp);
3837
3838 POSTING_READ(reg);
3839 udelay(100);
3840}
3841
Chris Wilson5dce5b932014-01-20 10:17:36 +00003842bool intel_has_pending_fb_unpin(struct drm_device *dev)
3843{
3844 struct intel_crtc *crtc;
3845
3846 /* Note that we don't need to be called with mode_config.lock here
3847 * as our list of CRTC objects is static for the lifetime of the
3848 * device and so cannot disappear as we iterate. Similarly, we can
3849 * happily treat the predicates as racy, atomic checks as userspace
3850 * cannot claim and pin a new fb without at least acquring the
3851 * struct_mutex and so serialising with us.
3852 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003853 for_each_intel_crtc(dev, crtc) {
Chris Wilson5dce5b932014-01-20 10:17:36 +00003854 if (atomic_read(&crtc->unpin_work_count) == 0)
3855 continue;
3856
3857 if (crtc->unpin_work)
3858 intel_wait_for_vblank(dev, crtc->pipe);
3859
3860 return true;
3861 }
3862
3863 return false;
3864}
3865
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003866static void page_flip_completed(struct intel_crtc *intel_crtc)
3867{
3868 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
3869 struct intel_unpin_work *work = intel_crtc->unpin_work;
3870
3871 /* ensure that the unpin work is consistent wrt ->pending. */
3872 smp_rmb();
3873 intel_crtc->unpin_work = NULL;
3874
3875 if (work->event)
3876 drm_send_vblank_event(intel_crtc->base.dev,
3877 intel_crtc->pipe,
3878 work->event);
3879
3880 drm_crtc_vblank_put(&intel_crtc->base);
3881
3882 wake_up_all(&dev_priv->pending_flip_queue);
3883 queue_work(dev_priv->wq, &work->work);
3884
3885 trace_i915_flip_complete(intel_crtc->plane,
3886 work->pending_flip_obj);
3887}
3888
Ville Syrjälä46a55d32014-05-21 14:04:46 +03003889void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003890{
Chris Wilson0f911282012-04-17 10:05:38 +01003891 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01003892 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003893
Daniel Vetter2c10d572012-12-20 21:24:07 +01003894 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
Chris Wilson9c787942014-09-05 07:13:25 +01003895 if (WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3896 !intel_crtc_has_pending_flip(crtc),
3897 60*HZ) == 0)) {
3898 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter2c10d572012-12-20 21:24:07 +01003899
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003900 spin_lock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003901 if (intel_crtc->unpin_work) {
3902 WARN_ONCE(1, "Removing stuck page flip\n");
3903 page_flip_completed(intel_crtc);
3904 }
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003905 spin_unlock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003906 }
Chris Wilson5bb61642012-09-27 21:25:58 +01003907
Chris Wilson975d5682014-08-20 13:13:34 +01003908 if (crtc->primary->fb) {
3909 mutex_lock(&dev->struct_mutex);
3910 intel_finish_fb(crtc->primary->fb);
3911 mutex_unlock(&dev->struct_mutex);
3912 }
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003913}
3914
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003915/* Program iCLKIP clock to the desired frequency */
3916static void lpt_program_iclkip(struct drm_crtc *crtc)
3917{
3918 struct drm_device *dev = crtc->dev;
3919 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003920 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003921 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3922 u32 temp;
3923
Ville Syrjäläa5805162015-05-26 20:42:30 +03003924 mutex_lock(&dev_priv->sb_lock);
Daniel Vetter09153002012-12-12 14:06:44 +01003925
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003926 /* It is necessary to ungate the pixclk gate prior to programming
3927 * the divisors, and gate it back when it is done.
3928 */
3929 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3930
3931 /* Disable SSCCTL */
3932 intel_sbi_write(dev_priv, SBI_SSCCTL6,
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003933 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
3934 SBI_SSCCTL_DISABLE,
3935 SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003936
3937 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003938 if (clock == 20000) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003939 auxdiv = 1;
3940 divsel = 0x41;
3941 phaseinc = 0x20;
3942 } else {
3943 /* The iCLK virtual clock root frequency is in MHz,
Damien Lespiau241bfc32013-09-25 16:45:37 +01003944 * but the adjusted_mode->crtc_clock in in KHz. To get the
3945 * divisors, it is necessary to divide one by another, so we
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003946 * convert the virtual clock precision to KHz here for higher
3947 * precision.
3948 */
3949 u32 iclk_virtual_root_freq = 172800 * 1000;
3950 u32 iclk_pi_range = 64;
3951 u32 desired_divisor, msb_divisor_value, pi_value;
3952
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003953 desired_divisor = (iclk_virtual_root_freq / clock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003954 msb_divisor_value = desired_divisor / iclk_pi_range;
3955 pi_value = desired_divisor % iclk_pi_range;
3956
3957 auxdiv = 0;
3958 divsel = msb_divisor_value - 2;
3959 phaseinc = pi_value;
3960 }
3961
3962 /* This should not happen with any sane values */
3963 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3964 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3965 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3966 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3967
3968 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 +03003969 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003970 auxdiv,
3971 divsel,
3972 phasedir,
3973 phaseinc);
3974
3975 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003976 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003977 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3978 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3979 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3980 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3981 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3982 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003983 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003984
3985 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003986 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003987 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3988 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003989 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003990
3991 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003992 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003993 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003994 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003995
3996 /* Wait for initialization time */
3997 udelay(24);
3998
3999 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
Daniel Vetter09153002012-12-12 14:06:44 +01004000
Ville Syrjäläa5805162015-05-26 20:42:30 +03004001 mutex_unlock(&dev_priv->sb_lock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004002}
4003
Daniel Vetter275f01b22013-05-03 11:49:47 +02004004static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
4005 enum pipe pch_transcoder)
4006{
4007 struct drm_device *dev = crtc->base.dev;
4008 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004009 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Daniel Vetter275f01b22013-05-03 11:49:47 +02004010
4011 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
4012 I915_READ(HTOTAL(cpu_transcoder)));
4013 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
4014 I915_READ(HBLANK(cpu_transcoder)));
4015 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
4016 I915_READ(HSYNC(cpu_transcoder)));
4017
4018 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
4019 I915_READ(VTOTAL(cpu_transcoder)));
4020 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
4021 I915_READ(VBLANK(cpu_transcoder)));
4022 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
4023 I915_READ(VSYNC(cpu_transcoder)));
4024 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
4025 I915_READ(VSYNCSHIFT(cpu_transcoder)));
4026}
4027
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004028static void cpt_set_fdi_bc_bifurcation(struct drm_device *dev, bool enable)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004029{
4030 struct drm_i915_private *dev_priv = dev->dev_private;
4031 uint32_t temp;
4032
4033 temp = I915_READ(SOUTH_CHICKEN1);
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004034 if (!!(temp & FDI_BC_BIFURCATION_SELECT) == enable)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004035 return;
4036
4037 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
4038 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
4039
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004040 temp &= ~FDI_BC_BIFURCATION_SELECT;
4041 if (enable)
4042 temp |= FDI_BC_BIFURCATION_SELECT;
4043
4044 DRM_DEBUG_KMS("%sabling fdi C rx\n", enable ? "en" : "dis");
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004045 I915_WRITE(SOUTH_CHICKEN1, temp);
4046 POSTING_READ(SOUTH_CHICKEN1);
4047}
4048
4049static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
4050{
4051 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004052
4053 switch (intel_crtc->pipe) {
4054 case PIPE_A:
4055 break;
4056 case PIPE_B:
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004057 if (intel_crtc->config->fdi_lanes > 2)
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004058 cpt_set_fdi_bc_bifurcation(dev, false);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004059 else
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004060 cpt_set_fdi_bc_bifurcation(dev, true);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004061
4062 break;
4063 case PIPE_C:
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004064 cpt_set_fdi_bc_bifurcation(dev, true);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004065
4066 break;
4067 default:
4068 BUG();
4069 }
4070}
4071
Jesse Barnesf67a5592011-01-05 10:31:48 -08004072/*
4073 * Enable PCH resources required for PCH ports:
4074 * - PCH PLLs
4075 * - FDI training & RX/TX
4076 * - update transcoder timings
4077 * - DP transcoding bits
4078 * - transcoder
4079 */
4080static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08004081{
4082 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004083 struct drm_i915_private *dev_priv = dev->dev_private;
4084 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4085 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004086 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004087
Daniel Vetterab9412b2013-05-03 11:49:46 +02004088 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01004089
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004090 if (IS_IVYBRIDGE(dev))
4091 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
4092
Daniel Vettercd986ab2012-10-26 10:58:12 +02004093 /* Write the TU size bits before fdi link training, so that error
4094 * detection works. */
4095 I915_WRITE(FDI_RX_TUSIZE1(pipe),
4096 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
4097
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004098 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07004099 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004100
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004101 /* We need to program the right clock selection before writing the pixel
4102 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02004103 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004104 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07004105
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004106 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02004107 temp |= TRANS_DPLL_ENABLE(pipe);
4108 sel = TRANS_DPLLB_SEL(pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004109 if (intel_crtc->config->shared_dpll == DPLL_ID_PCH_PLL_B)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004110 temp |= sel;
4111 else
4112 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004113 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004114 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004115
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004116 /* XXX: pch pll's can be enabled any time before we enable the PCH
4117 * transcoder, and we actually should do this to not upset any PCH
4118 * transcoder that already use the clock when we share it.
4119 *
4120 * Note that enable_shared_dpll tries to do the right thing, but
4121 * get_shared_dpll unconditionally resets the pll - we need that to have
4122 * the right LVDS enable sequence. */
Daniel Vetter85b38942014-04-24 23:55:14 +02004123 intel_enable_shared_dpll(intel_crtc);
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004124
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08004125 /* set transcoder timing, panel must allow it */
4126 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02004127 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004128
Paulo Zanoni303b81e2012-10-31 18:12:23 -02004129 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08004130
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004131 /* For PCH DP, enable TRANS_DP_CTL */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004132 if (HAS_PCH_CPT(dev) && intel_crtc->config->has_dp_encoder) {
Daniel Vetterdfd07d72012-12-17 11:21:38 +01004133 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01004134 reg = TRANS_DP_CTL(pipe);
4135 temp = I915_READ(reg);
4136 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08004137 TRANS_DP_SYNC_MASK |
4138 TRANS_DP_BPC_MASK);
Ville Syrjäläe3ef4472015-05-05 17:17:31 +03004139 temp |= TRANS_DP_OUTPUT_ENABLE;
Jesse Barnes9325c9f2011-06-24 12:19:21 -07004140 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004141
4142 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01004143 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004144 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01004145 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004146
4147 switch (intel_trans_dp_port_sel(crtc)) {
4148 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01004149 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004150 break;
4151 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01004152 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004153 break;
4154 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01004155 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004156 break;
4157 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02004158 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004159 }
4160
Chris Wilson5eddb702010-09-11 13:48:45 +01004161 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004162 }
4163
Paulo Zanonib8a4f402012-10-31 18:12:42 -02004164 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004165}
4166
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004167static void lpt_pch_enable(struct drm_crtc *crtc)
4168{
4169 struct drm_device *dev = crtc->dev;
4170 struct drm_i915_private *dev_priv = dev->dev_private;
4171 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004172 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004173
Daniel Vetterab9412b2013-05-03 11:49:46 +02004174 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004175
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02004176 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004177
Paulo Zanoni0540e482012-10-31 18:12:40 -02004178 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02004179 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004180
Paulo Zanoni937bb612012-10-31 18:12:47 -02004181 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004182}
4183
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004184struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc,
4185 struct intel_crtc_state *crtc_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004186{
Daniel Vettere2b78262013-06-07 23:10:03 +02004187 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004188 struct intel_shared_dpll *pll;
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004189 struct intel_shared_dpll_config *shared_dpll;
Daniel Vettere2b78262013-06-07 23:10:03 +02004190 enum intel_dpll_id i;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004191
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004192 shared_dpll = intel_atomic_get_shared_dpll_state(crtc_state->base.state);
4193
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004194 if (HAS_PCH_IBX(dev_priv->dev)) {
4195 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
Daniel Vetterd94ab062013-07-04 12:01:16 +02004196 i = (enum intel_dpll_id) crtc->pipe;
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004197 pll = &dev_priv->shared_dplls[i];
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004198
Daniel Vetter46edb022013-06-05 13:34:12 +02004199 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
4200 crtc->base.base.id, pll->name);
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004201
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004202 WARN_ON(shared_dpll[i].crtc_mask);
Daniel Vetterf2a69f42014-05-20 15:19:19 +02004203
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004204 goto found;
4205 }
4206
Satheeshakrishna Mbcddf612014-08-22 09:49:10 +05304207 if (IS_BROXTON(dev_priv->dev)) {
4208 /* PLL is attached to port in bxt */
4209 struct intel_encoder *encoder;
4210 struct intel_digital_port *intel_dig_port;
4211
4212 encoder = intel_ddi_get_crtc_new_encoder(crtc_state);
4213 if (WARN_ON(!encoder))
4214 return NULL;
4215
4216 intel_dig_port = enc_to_dig_port(&encoder->base);
4217 /* 1:1 mapping between ports and PLLs */
4218 i = (enum intel_dpll_id)intel_dig_port->port;
4219 pll = &dev_priv->shared_dplls[i];
4220 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
4221 crtc->base.base.id, pll->name);
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004222 WARN_ON(shared_dpll[i].crtc_mask);
Satheeshakrishna Mbcddf612014-08-22 09:49:10 +05304223
4224 goto found;
4225 }
4226
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004227 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4228 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004229
4230 /* Only want to check enabled timings first */
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004231 if (shared_dpll[i].crtc_mask == 0)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004232 continue;
4233
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004234 if (memcmp(&crtc_state->dpll_hw_state,
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004235 &shared_dpll[i].hw_state,
4236 sizeof(crtc_state->dpll_hw_state)) == 0) {
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004237 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (crtc mask 0x%08x, ative %d)\n",
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +02004238 crtc->base.base.id, pll->name,
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004239 shared_dpll[i].crtc_mask,
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004240 pll->active);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004241 goto found;
4242 }
4243 }
4244
4245 /* Ok no matching timings, maybe there's a free one? */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004246 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4247 pll = &dev_priv->shared_dplls[i];
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004248 if (shared_dpll[i].crtc_mask == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02004249 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
4250 crtc->base.base.id, pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004251 goto found;
4252 }
4253 }
4254
4255 return NULL;
4256
4257found:
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004258 if (shared_dpll[i].crtc_mask == 0)
4259 shared_dpll[i].hw_state =
4260 crtc_state->dpll_hw_state;
Daniel Vetterf2a69f42014-05-20 15:19:19 +02004261
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004262 crtc_state->shared_dpll = i;
Daniel Vetter46edb022013-06-05 13:34:12 +02004263 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
4264 pipe_name(crtc->pipe));
Daniel Vetter66e985c2013-06-05 13:34:20 +02004265
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004266 shared_dpll[i].crtc_mask |= 1 << crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004267
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004268 return pll;
4269}
4270
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004271static void intel_shared_dpll_commit(struct drm_atomic_state *state)
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004272{
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004273 struct drm_i915_private *dev_priv = to_i915(state->dev);
4274 struct intel_shared_dpll_config *shared_dpll;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004275 struct intel_shared_dpll *pll;
4276 enum intel_dpll_id i;
4277
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004278 if (!to_intel_atomic_state(state)->dpll_set)
4279 return;
4280
4281 shared_dpll = to_intel_atomic_state(state)->shared_dpll;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004282 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4283 pll = &dev_priv->shared_dplls[i];
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004284 pll->config = shared_dpll[i];
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004285 }
4286}
4287
Daniel Vettera1520312013-05-03 11:49:50 +02004288static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07004289{
4290 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01004291 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07004292 u32 temp;
4293
4294 temp = I915_READ(dslreg);
4295 udelay(500);
4296 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07004297 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03004298 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07004299 }
4300}
4301
Chandra Kondurua1b22782015-04-07 15:28:45 -07004302/**
4303 * skl_update_scaler_users - Stages update to crtc's scaler state
4304 * @intel_crtc: crtc
4305 * @crtc_state: crtc_state
4306 * @plane: plane (NULL indicates crtc is requesting update)
4307 * @plane_state: plane's state
4308 * @force_detach: request unconditional detachment of scaler
4309 *
4310 * This function updates scaler state for requested plane or crtc.
4311 * To request scaler usage update for a plane, caller shall pass plane pointer.
4312 * To request scaler usage update for crtc, caller shall pass plane pointer
4313 * as NULL.
4314 *
4315 * Return
4316 * 0 - scaler_usage updated successfully
4317 * error - requested scaling cannot be supported or other error condition
4318 */
4319int
4320skl_update_scaler_users(
4321 struct intel_crtc *intel_crtc, struct intel_crtc_state *crtc_state,
4322 struct intel_plane *intel_plane, struct intel_plane_state *plane_state,
4323 int force_detach)
4324{
4325 int need_scaling;
4326 int idx;
4327 int src_w, src_h, dst_w, dst_h;
4328 int *scaler_id;
4329 struct drm_framebuffer *fb;
4330 struct intel_crtc_scaler_state *scaler_state;
Chandra Konduru6156a452015-04-27 13:48:39 -07004331 unsigned int rotation;
Chandra Kondurua1b22782015-04-07 15:28:45 -07004332
4333 if (!intel_crtc || !crtc_state)
4334 return 0;
4335
4336 scaler_state = &crtc_state->scaler_state;
4337
4338 idx = intel_plane ? drm_plane_index(&intel_plane->base) : SKL_CRTC_INDEX;
4339 fb = intel_plane ? plane_state->base.fb : NULL;
4340
4341 if (intel_plane) {
4342 src_w = drm_rect_width(&plane_state->src) >> 16;
4343 src_h = drm_rect_height(&plane_state->src) >> 16;
4344 dst_w = drm_rect_width(&plane_state->dst);
4345 dst_h = drm_rect_height(&plane_state->dst);
4346 scaler_id = &plane_state->scaler_id;
Chandra Konduru6156a452015-04-27 13:48:39 -07004347 rotation = plane_state->base.rotation;
Chandra Kondurua1b22782015-04-07 15:28:45 -07004348 } else {
4349 struct drm_display_mode *adjusted_mode =
4350 &crtc_state->base.adjusted_mode;
4351 src_w = crtc_state->pipe_src_w;
4352 src_h = crtc_state->pipe_src_h;
4353 dst_w = adjusted_mode->hdisplay;
4354 dst_h = adjusted_mode->vdisplay;
4355 scaler_id = &scaler_state->scaler_id;
Chandra Konduru6156a452015-04-27 13:48:39 -07004356 rotation = DRM_ROTATE_0;
Chandra Kondurua1b22782015-04-07 15:28:45 -07004357 }
Chandra Konduru6156a452015-04-27 13:48:39 -07004358
4359 need_scaling = intel_rotation_90_or_270(rotation) ?
4360 (src_h != dst_w || src_w != dst_h):
4361 (src_w != dst_w || src_h != dst_h);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004362
4363 /*
4364 * if plane is being disabled or scaler is no more required or force detach
4365 * - free scaler binded to this plane/crtc
4366 * - in order to do this, update crtc->scaler_usage
4367 *
4368 * Here scaler state in crtc_state is set free so that
4369 * scaler can be assigned to other user. Actual register
4370 * update to free the scaler is done in plane/panel-fit programming.
4371 * For this purpose crtc/plane_state->scaler_id isn't reset here.
4372 */
4373 if (force_detach || !need_scaling || (intel_plane &&
4374 (!fb || !plane_state->visible))) {
4375 if (*scaler_id >= 0) {
4376 scaler_state->scaler_users &= ~(1 << idx);
4377 scaler_state->scalers[*scaler_id].in_use = 0;
4378
4379 DRM_DEBUG_KMS("Staged freeing scaler id %d.%d from %s:%d "
4380 "crtc_state = %p scaler_users = 0x%x\n",
4381 intel_crtc->pipe, *scaler_id, intel_plane ? "PLANE" : "CRTC",
4382 intel_plane ? intel_plane->base.base.id :
4383 intel_crtc->base.base.id, crtc_state,
4384 scaler_state->scaler_users);
4385 *scaler_id = -1;
4386 }
4387 return 0;
4388 }
4389
4390 /* range checks */
4391 if (src_w < SKL_MIN_SRC_W || src_h < SKL_MIN_SRC_H ||
4392 dst_w < SKL_MIN_DST_W || dst_h < SKL_MIN_DST_H ||
4393
4394 src_w > SKL_MAX_SRC_W || src_h > SKL_MAX_SRC_H ||
4395 dst_w > SKL_MAX_DST_W || dst_h > SKL_MAX_DST_H) {
4396 DRM_DEBUG_KMS("%s:%d scaler_user index %u.%u: src %ux%u dst %ux%u "
4397 "size is out of scaler range\n",
4398 intel_plane ? "PLANE" : "CRTC",
4399 intel_plane ? intel_plane->base.base.id : intel_crtc->base.base.id,
4400 intel_crtc->pipe, idx, src_w, src_h, dst_w, dst_h);
4401 return -EINVAL;
4402 }
4403
4404 /* check colorkey */
Chandra Konduru225c2282015-05-18 16:18:44 -07004405 if (WARN_ON(intel_plane &&
4406 intel_plane->ckey.flags != I915_SET_COLORKEY_NONE)) {
4407 DRM_DEBUG_KMS("PLANE:%d scaling %ux%u->%ux%u not allowed with colorkey",
4408 intel_plane->base.base.id, src_w, src_h, dst_w, dst_h);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004409 return -EINVAL;
4410 }
4411
4412 /* Check src format */
4413 if (intel_plane) {
4414 switch (fb->pixel_format) {
4415 case DRM_FORMAT_RGB565:
4416 case DRM_FORMAT_XBGR8888:
4417 case DRM_FORMAT_XRGB8888:
4418 case DRM_FORMAT_ABGR8888:
4419 case DRM_FORMAT_ARGB8888:
4420 case DRM_FORMAT_XRGB2101010:
Chandra Kondurua1b22782015-04-07 15:28:45 -07004421 case DRM_FORMAT_XBGR2101010:
Chandra Kondurua1b22782015-04-07 15:28:45 -07004422 case DRM_FORMAT_YUYV:
4423 case DRM_FORMAT_YVYU:
4424 case DRM_FORMAT_UYVY:
4425 case DRM_FORMAT_VYUY:
4426 break;
4427 default:
4428 DRM_DEBUG_KMS("PLANE:%d FB:%d unsupported scaling format 0x%x\n",
4429 intel_plane->base.base.id, fb->base.id, fb->pixel_format);
4430 return -EINVAL;
4431 }
4432 }
4433
4434 /* mark this plane as a scaler user in crtc_state */
4435 scaler_state->scaler_users |= (1 << idx);
4436 DRM_DEBUG_KMS("%s:%d staged scaling request for %ux%u->%ux%u "
4437 "crtc_state = %p scaler_users = 0x%x\n",
4438 intel_plane ? "PLANE" : "CRTC",
4439 intel_plane ? intel_plane->base.base.id : intel_crtc->base.base.id,
4440 src_w, src_h, dst_w, dst_h, crtc_state, scaler_state->scaler_users);
4441 return 0;
4442}
4443
4444static void skylake_pfit_update(struct intel_crtc *crtc, int enable)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004445{
4446 struct drm_device *dev = crtc->base.dev;
4447 struct drm_i915_private *dev_priv = dev->dev_private;
4448 int pipe = crtc->pipe;
Chandra Kondurua1b22782015-04-07 15:28:45 -07004449 struct intel_crtc_scaler_state *scaler_state =
4450 &crtc->config->scaler_state;
4451
4452 DRM_DEBUG_KMS("for crtc_state = %p\n", crtc->config);
4453
4454 /* To update pfit, first update scaler state */
4455 skl_update_scaler_users(crtc, crtc->config, NULL, NULL, !enable);
4456 intel_atomic_setup_scalers(crtc->base.dev, crtc, crtc->config);
4457 skl_detach_scalers(crtc);
4458 if (!enable)
4459 return;
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004460
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004461 if (crtc->config->pch_pfit.enabled) {
Chandra Kondurua1b22782015-04-07 15:28:45 -07004462 int id;
4463
4464 if (WARN_ON(crtc->config->scaler_state.scaler_id < 0)) {
4465 DRM_ERROR("Requesting pfit without getting a scaler first\n");
4466 return;
4467 }
4468
4469 id = scaler_state->scaler_id;
4470 I915_WRITE(SKL_PS_CTRL(pipe, id), PS_SCALER_EN |
4471 PS_FILTER_MEDIUM | scaler_state->scalers[id].mode);
4472 I915_WRITE(SKL_PS_WIN_POS(pipe, id), crtc->config->pch_pfit.pos);
4473 I915_WRITE(SKL_PS_WIN_SZ(pipe, id), crtc->config->pch_pfit.size);
4474
4475 DRM_DEBUG_KMS("for crtc_state = %p scaler_id = %d\n", crtc->config, id);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004476 }
4477}
4478
Jesse Barnesb074cec2013-04-25 12:55:02 -07004479static void ironlake_pfit_enable(struct intel_crtc *crtc)
4480{
4481 struct drm_device *dev = crtc->base.dev;
4482 struct drm_i915_private *dev_priv = dev->dev_private;
4483 int pipe = crtc->pipe;
4484
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004485 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07004486 /* Force use of hard-coded filter coefficients
4487 * as some pre-programmed values are broken,
4488 * e.g. x201.
4489 */
4490 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
4491 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4492 PF_PIPE_SEL_IVB(pipe));
4493 else
4494 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004495 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4496 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08004497 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004498}
4499
Matt Roper4a3b8762014-12-23 10:41:51 -08004500static void intel_enable_sprite_planes(struct drm_crtc *crtc)
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004501{
4502 struct drm_device *dev = crtc->dev;
4503 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07004504 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004505 struct intel_plane *intel_plane;
4506
Matt Roperaf2b6532014-04-01 15:22:32 -07004507 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
4508 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004509 if (intel_plane->pipe == pipe)
4510 intel_plane_restore(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07004511 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004512}
4513
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004514void hsw_enable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004515{
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004516 struct drm_device *dev = crtc->base.dev;
4517 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid77e4532013-09-24 13:52:55 -03004518
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004519 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004520 return;
4521
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004522 /* We can only enable IPS after we enable a plane and wait for a vblank */
4523 intel_wait_for_vblank(dev, crtc->pipe);
4524
Paulo Zanonid77e4532013-09-24 13:52:55 -03004525 assert_plane_enabled(dev_priv, crtc->plane);
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004526 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004527 mutex_lock(&dev_priv->rps.hw_lock);
4528 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4529 mutex_unlock(&dev_priv->rps.hw_lock);
4530 /* Quoting Art Runyan: "its not safe to expect any particular
4531 * value in IPS_CTL bit 31 after enabling IPS through the
Jesse Barnese59150d2014-01-07 13:30:45 -08004532 * mailbox." Moreover, the mailbox may return a bogus state,
4533 * so we need to just enable it and continue on.
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004534 */
4535 } else {
4536 I915_WRITE(IPS_CTL, IPS_ENABLE);
4537 /* The bit only becomes 1 in the next vblank, so this wait here
4538 * is essentially intel_wait_for_vblank. If we don't have this
4539 * and don't wait for vblanks until the end of crtc_enable, then
4540 * the HW state readout code will complain that the expected
4541 * IPS_CTL value is not the one we read. */
4542 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
4543 DRM_ERROR("Timed out waiting for IPS enable\n");
4544 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004545}
4546
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004547void hsw_disable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004548{
4549 struct drm_device *dev = crtc->base.dev;
4550 struct drm_i915_private *dev_priv = dev->dev_private;
4551
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004552 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004553 return;
4554
4555 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004556 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004557 mutex_lock(&dev_priv->rps.hw_lock);
4558 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4559 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004560 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
4561 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
4562 DRM_ERROR("Timed out waiting for IPS disable\n");
Jesse Barnese59150d2014-01-07 13:30:45 -08004563 } else {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004564 I915_WRITE(IPS_CTL, 0);
Jesse Barnese59150d2014-01-07 13:30:45 -08004565 POSTING_READ(IPS_CTL);
4566 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004567
4568 /* We need to wait for a vblank before we can disable the plane. */
4569 intel_wait_for_vblank(dev, crtc->pipe);
4570}
4571
4572/** Loads the palette/gamma unit for the CRTC with the prepared values */
4573static void intel_crtc_load_lut(struct drm_crtc *crtc)
4574{
4575 struct drm_device *dev = crtc->dev;
4576 struct drm_i915_private *dev_priv = dev->dev_private;
4577 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4578 enum pipe pipe = intel_crtc->pipe;
4579 int palreg = PALETTE(pipe);
4580 int i;
4581 bool reenable_ips = false;
4582
4583 /* The clocks have to be on to load the palette. */
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02004584 if (!crtc->state->active)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004585 return;
4586
Imre Deak50360402015-01-16 00:55:16 -08004587 if (HAS_GMCH_DISPLAY(dev_priv->dev)) {
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03004588 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI))
Paulo Zanonid77e4532013-09-24 13:52:55 -03004589 assert_dsi_pll_enabled(dev_priv);
4590 else
4591 assert_pll_enabled(dev_priv, pipe);
4592 }
4593
4594 /* use legacy palette for Ironlake */
Sonika Jindal7a1db492014-07-22 11:18:27 +05304595 if (!HAS_GMCH_DISPLAY(dev))
Paulo Zanonid77e4532013-09-24 13:52:55 -03004596 palreg = LGC_PALETTE(pipe);
4597
4598 /* Workaround : Do not read or write the pipe palette/gamma data while
4599 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
4600 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004601 if (IS_HASWELL(dev) && intel_crtc->config->ips_enabled &&
Paulo Zanonid77e4532013-09-24 13:52:55 -03004602 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
4603 GAMMA_MODE_MODE_SPLIT)) {
4604 hsw_disable_ips(intel_crtc);
4605 reenable_ips = true;
4606 }
4607
4608 for (i = 0; i < 256; i++) {
4609 I915_WRITE(palreg + 4 * i,
4610 (intel_crtc->lut_r[i] << 16) |
4611 (intel_crtc->lut_g[i] << 8) |
4612 intel_crtc->lut_b[i]);
4613 }
4614
4615 if (reenable_ips)
4616 hsw_enable_ips(intel_crtc);
4617}
4618
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004619static void intel_crtc_dpms_overlay_disable(struct intel_crtc *intel_crtc)
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004620{
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004621 if (intel_crtc->overlay) {
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004622 struct drm_device *dev = intel_crtc->base.dev;
4623 struct drm_i915_private *dev_priv = dev->dev_private;
4624
4625 mutex_lock(&dev->struct_mutex);
4626 dev_priv->mm.interruptible = false;
4627 (void) intel_overlay_switch_off(intel_crtc->overlay);
4628 dev_priv->mm.interruptible = true;
4629 mutex_unlock(&dev->struct_mutex);
4630 }
4631
4632 /* Let userspace switch the overlay on again. In most cases userspace
4633 * has to recompute where to put it anyway.
4634 */
4635}
4636
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004637/**
4638 * intel_post_enable_primary - Perform operations after enabling primary plane
4639 * @crtc: the CRTC whose primary plane was just enabled
4640 *
4641 * Performs potentially sleeping operations that must be done after the primary
4642 * plane is enabled, such as updating FBC and IPS. Note that this may be
4643 * called due to an explicit primary plane update, or due to an implicit
4644 * re-enable that is caused when a sprite plane is updated to no longer
4645 * completely hide the primary plane.
4646 */
4647static void
4648intel_post_enable_primary(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004649{
4650 struct drm_device *dev = crtc->dev;
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004651 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004652 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4653 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004654
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004655 /*
4656 * BDW signals flip done immediately if the plane
4657 * is disabled, even if the plane enable is already
4658 * armed to occur at the next vblank :(
4659 */
4660 if (IS_BROADWELL(dev))
4661 intel_wait_for_vblank(dev, pipe);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004662
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004663 /*
4664 * FIXME IPS should be fine as long as one plane is
4665 * enabled, but in practice it seems to have problems
4666 * when going from primary only to sprite only and vice
4667 * versa.
4668 */
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004669 hsw_enable_ips(intel_crtc);
4670
4671 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004672 intel_fbc_update(dev);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004673 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf99d7062014-06-19 16:01:59 +02004674
4675 /*
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004676 * Gen2 reports pipe underruns whenever all planes are disabled.
4677 * So don't enable underrun reporting before at least some planes
4678 * are enabled.
4679 * FIXME: Need to fix the logic to work when we turn off all planes
4680 * but leave the pipe running.
Daniel Vetterf99d7062014-06-19 16:01:59 +02004681 */
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004682 if (IS_GEN2(dev))
4683 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4684
4685 /* Underruns don't raise interrupts, so check manually. */
4686 if (HAS_GMCH_DISPLAY(dev))
4687 i9xx_check_fifo_underruns(dev_priv);
4688}
4689
4690/**
4691 * intel_pre_disable_primary - Perform operations before disabling primary plane
4692 * @crtc: the CRTC whose primary plane is to be disabled
4693 *
4694 * Performs potentially sleeping operations that must be done before the
4695 * primary plane is disabled, such as updating FBC and IPS. Note that this may
4696 * be called due to an explicit primary plane update, or due to an implicit
4697 * disable that is caused when a sprite plane completely hides the primary
4698 * plane.
4699 */
4700static void
4701intel_pre_disable_primary(struct drm_crtc *crtc)
4702{
4703 struct drm_device *dev = crtc->dev;
4704 struct drm_i915_private *dev_priv = dev->dev_private;
4705 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4706 int pipe = intel_crtc->pipe;
4707
4708 /*
4709 * Gen2 reports pipe underruns whenever all planes are disabled.
4710 * So diasble underrun reporting before all the planes get disabled.
4711 * FIXME: Need to fix the logic to work when we turn off all planes
4712 * but leave the pipe running.
4713 */
4714 if (IS_GEN2(dev))
4715 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
4716
4717 /*
4718 * Vblank time updates from the shadow to live plane control register
4719 * are blocked if the memory self-refresh mode is active at that
4720 * moment. So to make sure the plane gets truly disabled, disable
4721 * first the self-refresh mode. The self-refresh enable bit in turn
4722 * will be checked/applied by the HW only at the next frame start
4723 * event which is after the vblank start event, so we need to have a
4724 * wait-for-vblank between disabling the plane and the pipe.
4725 */
4726 if (HAS_GMCH_DISPLAY(dev))
4727 intel_set_memory_cxsr(dev_priv, false);
4728
4729 mutex_lock(&dev->struct_mutex);
4730 if (dev_priv->fbc.crtc == intel_crtc)
4731 intel_fbc_disable(dev);
4732 mutex_unlock(&dev->struct_mutex);
4733
4734 /*
4735 * FIXME IPS should be fine as long as one plane is
4736 * enabled, but in practice it seems to have problems
4737 * when going from primary only to sprite only and vice
4738 * versa.
4739 */
4740 hsw_disable_ips(intel_crtc);
4741}
4742
4743static void intel_crtc_enable_planes(struct drm_crtc *crtc)
4744{
Rodrigo Vivi2d847d42015-05-28 10:21:16 -07004745 struct drm_device *dev = crtc->dev;
4746 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4747 int pipe = intel_crtc->pipe;
4748
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004749 intel_enable_primary_hw_plane(crtc->primary, crtc);
4750 intel_enable_sprite_planes(crtc);
4751 intel_crtc_update_cursor(crtc, true);
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004752
4753 intel_post_enable_primary(crtc);
Rodrigo Vivi2d847d42015-05-28 10:21:16 -07004754
4755 /*
4756 * FIXME: Once we grow proper nuclear flip support out of this we need
4757 * to compute the mask of flip planes precisely. For the time being
4758 * consider this a flip to a NULL plane.
4759 */
4760 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004761}
4762
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004763static void intel_crtc_disable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004764{
4765 struct drm_device *dev = crtc->dev;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004766 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorst27321ae2015-04-21 17:12:52 +03004767 struct intel_plane *intel_plane;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004768 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004769
4770 intel_crtc_wait_for_pending_flips(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004771
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004772 intel_pre_disable_primary(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004773
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004774 intel_crtc_dpms_overlay_disable(intel_crtc);
Maarten Lankhorst27321ae2015-04-21 17:12:52 +03004775 for_each_intel_plane(dev, intel_plane) {
4776 if (intel_plane->pipe == pipe) {
4777 struct drm_crtc *from = intel_plane->base.crtc;
4778
4779 intel_plane->disable_plane(&intel_plane->base,
4780 from ?: crtc, true);
4781 }
4782 }
Ville Syrjäläf98551a2014-05-22 17:48:06 +03004783
Daniel Vetterf99d7062014-06-19 16:01:59 +02004784 /*
4785 * FIXME: Once we grow proper nuclear flip support out of this we need
4786 * to compute the mask of flip planes precisely. For the time being
4787 * consider this a flip to a NULL plane.
4788 */
4789 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004790}
4791
Jesse Barnesf67a5592011-01-05 10:31:48 -08004792static void ironlake_crtc_enable(struct drm_crtc *crtc)
4793{
4794 struct drm_device *dev = crtc->dev;
4795 struct drm_i915_private *dev_priv = dev->dev_private;
4796 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004797 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004798 int pipe = intel_crtc->pipe;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004799
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02004800 if (WARN_ON(intel_crtc->active))
Jesse Barnesf67a5592011-01-05 10:31:48 -08004801 return;
4802
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004803 if (intel_crtc->config->has_pch_encoder)
Daniel Vetterb14b1052014-04-24 23:55:13 +02004804 intel_prepare_shared_dpll(intel_crtc);
4805
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004806 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05304807 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004808
4809 intel_set_pipe_timings(intel_crtc);
4810
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004811 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter29407aa2014-04-24 23:55:08 +02004812 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004813 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004814 }
4815
4816 ironlake_set_pipeconf(crtc);
4817
Jesse Barnesf67a5592011-01-05 10:31:48 -08004818 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004819
Daniel Vettera72e4c92014-09-30 10:56:47 +02004820 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4821 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni86642812013-04-12 17:57:57 -03004822
Daniel Vetterf6736a12013-06-05 13:34:30 +02004823 for_each_encoder_on_crtc(dev, crtc, encoder)
Daniel Vetter952735e2013-06-05 13:34:27 +02004824 if (encoder->pre_enable)
4825 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004826
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004827 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02004828 /* Note: FDI PLL enabling _must_ be done before we enable the
4829 * cpu pipes, hence this is separate from all the other fdi/pch
4830 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02004831 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02004832 } else {
4833 assert_fdi_tx_disabled(dev_priv, pipe);
4834 assert_fdi_rx_disabled(dev_priv, pipe);
4835 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004836
Jesse Barnesb074cec2013-04-25 12:55:02 -07004837 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004838
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02004839 /*
4840 * On ILK+ LUT must be loaded before the pipe is running but with
4841 * clocks enabled
4842 */
4843 intel_crtc_load_lut(crtc);
4844
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004845 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004846 intel_enable_pipe(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004847
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004848 if (intel_crtc->config->has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08004849 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004850
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004851 assert_vblank_disabled(crtc);
4852 drm_crtc_vblank_on(crtc);
4853
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004854 for_each_encoder_on_crtc(dev, crtc, encoder)
4855 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02004856
4857 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02004858 cpt_verify_modeset(dev, intel_crtc->pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004859}
4860
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004861/* IPS only exists on ULT machines and is tied to pipe A. */
4862static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4863{
Damien Lespiauf5adf942013-06-24 18:29:34 +01004864 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004865}
4866
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004867static void haswell_crtc_enable(struct drm_crtc *crtc)
4868{
4869 struct drm_device *dev = crtc->dev;
4870 struct drm_i915_private *dev_priv = dev->dev_private;
4871 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4872 struct intel_encoder *encoder;
Maarten Lankhorst99d736a2015-06-01 12:50:09 +02004873 int pipe = intel_crtc->pipe, hsw_workaround_pipe;
4874 struct intel_crtc_state *pipe_config =
4875 to_intel_crtc_state(crtc->state);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004876
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02004877 if (WARN_ON(intel_crtc->active))
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004878 return;
4879
Daniel Vetterdf8ad702014-06-25 22:02:03 +03004880 if (intel_crtc_to_shared_dpll(intel_crtc))
4881 intel_enable_shared_dpll(intel_crtc);
4882
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004883 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05304884 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter229fca92014-04-24 23:55:09 +02004885
4886 intel_set_pipe_timings(intel_crtc);
4887
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004888 if (intel_crtc->config->cpu_transcoder != TRANSCODER_EDP) {
4889 I915_WRITE(PIPE_MULT(intel_crtc->config->cpu_transcoder),
4890 intel_crtc->config->pixel_multiplier - 1);
Clint Taylorebb69c92014-09-30 10:30:22 -07004891 }
4892
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004893 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter229fca92014-04-24 23:55:09 +02004894 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004895 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter229fca92014-04-24 23:55:09 +02004896 }
4897
4898 haswell_set_pipeconf(crtc);
4899
4900 intel_set_pipe_csc(crtc);
4901
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004902 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004903
Daniel Vettera72e4c92014-09-30 10:56:47 +02004904 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004905 for_each_encoder_on_crtc(dev, crtc, encoder)
4906 if (encoder->pre_enable)
4907 encoder->pre_enable(encoder);
4908
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004909 if (intel_crtc->config->has_pch_encoder) {
Daniel Vettera72e4c92014-09-30 10:56:47 +02004910 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4911 true);
Imre Deak4fe94672014-06-25 22:01:49 +03004912 dev_priv->display.fdi_link_train(crtc);
4913 }
4914
Paulo Zanoni1f544382012-10-24 11:32:00 -02004915 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004916
Jesse Barnesff6d9f52015-01-21 17:19:54 -08004917 if (INTEL_INFO(dev)->gen == 9)
Chandra Kondurua1b22782015-04-07 15:28:45 -07004918 skylake_pfit_update(intel_crtc, 1);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08004919 else if (INTEL_INFO(dev)->gen < 9)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004920 ironlake_pfit_enable(intel_crtc);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08004921 else
4922 MISSING_CASE(INTEL_INFO(dev)->gen);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004923
4924 /*
4925 * On ILK+ LUT must be loaded before the pipe is running but with
4926 * clocks enabled
4927 */
4928 intel_crtc_load_lut(crtc);
4929
Paulo Zanoni1f544382012-10-24 11:32:00 -02004930 intel_ddi_set_pipe_settings(crtc);
Damien Lespiau8228c252013-03-07 15:30:27 +00004931 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004932
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004933 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004934 intel_enable_pipe(intel_crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004935
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004936 if (intel_crtc->config->has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004937 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004938
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004939 if (intel_crtc->config->dp_encoder_is_mst)
Dave Airlie0e32b392014-05-02 14:02:48 +10004940 intel_ddi_set_vc_payload_alloc(crtc, true);
4941
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004942 assert_vblank_disabled(crtc);
4943 drm_crtc_vblank_on(crtc);
4944
Jani Nikula8807e552013-08-30 19:40:32 +03004945 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004946 encoder->enable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004947 intel_opregion_notify_encoder(encoder, true);
4948 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004949
Paulo Zanonie4916942013-09-20 16:21:19 -03004950 /* If we change the relative order between pipe/planes enabling, we need
4951 * to change the workaround. */
Maarten Lankhorst99d736a2015-06-01 12:50:09 +02004952 hsw_workaround_pipe = pipe_config->hsw_workaround_pipe;
4953 if (IS_HASWELL(dev) && hsw_workaround_pipe != INVALID_PIPE) {
4954 intel_wait_for_vblank(dev, hsw_workaround_pipe);
4955 intel_wait_for_vblank(dev, hsw_workaround_pipe);
4956 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004957}
4958
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004959static void ironlake_pfit_disable(struct intel_crtc *crtc)
4960{
4961 struct drm_device *dev = crtc->base.dev;
4962 struct drm_i915_private *dev_priv = dev->dev_private;
4963 int pipe = crtc->pipe;
4964
4965 /* To avoid upsetting the power well on haswell only disable the pfit if
4966 * it's in use. The hw state code will make sure we get this right. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004967 if (crtc->config->pch_pfit.enabled) {
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004968 I915_WRITE(PF_CTL(pipe), 0);
4969 I915_WRITE(PF_WIN_POS(pipe), 0);
4970 I915_WRITE(PF_WIN_SZ(pipe), 0);
4971 }
4972}
4973
Jesse Barnes6be4a602010-09-10 10:26:01 -07004974static void ironlake_crtc_disable(struct drm_crtc *crtc)
4975{
4976 struct drm_device *dev = crtc->dev;
4977 struct drm_i915_private *dev_priv = dev->dev_private;
4978 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004979 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004980 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01004981 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004982
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02004983 if (WARN_ON(!intel_crtc->active))
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004984 return;
4985
Daniel Vetterea9d7582012-07-10 10:42:52 +02004986 for_each_encoder_on_crtc(dev, crtc, encoder)
4987 encoder->disable(encoder);
4988
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004989 drm_crtc_vblank_off(crtc);
4990 assert_vblank_disabled(crtc);
4991
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004992 if (intel_crtc->config->has_pch_encoder)
Daniel Vettera72e4c92014-09-30 10:56:47 +02004993 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
Daniel Vetterd925c592013-06-05 13:34:04 +02004994
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03004995 intel_disable_pipe(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004996
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004997 ironlake_pfit_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004998
Ville Syrjälä5a74f702015-05-05 17:17:38 +03004999 if (intel_crtc->config->has_pch_encoder)
5000 ironlake_fdi_disable(crtc);
5001
Daniel Vetterbf49ec82012-09-06 22:15:40 +02005002 for_each_encoder_on_crtc(dev, crtc, encoder)
5003 if (encoder->post_disable)
5004 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005005
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005006 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterd925c592013-06-05 13:34:04 +02005007 ironlake_disable_pch_transcoder(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005008
Daniel Vetterd925c592013-06-05 13:34:04 +02005009 if (HAS_PCH_CPT(dev)) {
5010 /* disable TRANS_DP_CTL */
5011 reg = TRANS_DP_CTL(pipe);
5012 temp = I915_READ(reg);
5013 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
5014 TRANS_DP_PORT_SEL_MASK);
5015 temp |= TRANS_DP_PORT_SEL_NONE;
5016 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005017
Daniel Vetterd925c592013-06-05 13:34:04 +02005018 /* disable DPLL_SEL */
5019 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02005020 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
Daniel Vetterd925c592013-06-05 13:34:04 +02005021 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005022 }
Daniel Vetterd925c592013-06-05 13:34:04 +02005023
5024 /* disable PCH DPLL */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02005025 intel_disable_shared_dpll(intel_crtc);
Daniel Vetterd925c592013-06-05 13:34:04 +02005026
5027 ironlake_fdi_pll_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005028 }
5029
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005030 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03005031 intel_update_watermarks(crtc);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01005032
5033 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02005034 intel_fbc_update(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01005035 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005036}
5037
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005038static void haswell_crtc_disable(struct drm_crtc *crtc)
5039{
5040 struct drm_device *dev = crtc->dev;
5041 struct drm_i915_private *dev_priv = dev->dev_private;
5042 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5043 struct intel_encoder *encoder;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005044 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005045
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02005046 if (WARN_ON(!intel_crtc->active))
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005047 return;
5048
Jani Nikula8807e552013-08-30 19:40:32 +03005049 for_each_encoder_on_crtc(dev, crtc, encoder) {
5050 intel_opregion_notify_encoder(encoder, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005051 encoder->disable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03005052 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005053
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005054 drm_crtc_vblank_off(crtc);
5055 assert_vblank_disabled(crtc);
5056
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005057 if (intel_crtc->config->has_pch_encoder)
Daniel Vettera72e4c92014-09-30 10:56:47 +02005058 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5059 false);
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03005060 intel_disable_pipe(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005061
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005062 if (intel_crtc->config->dp_encoder_is_mst)
Ville Syrjäläa4bf2142014-08-18 21:27:34 +03005063 intel_ddi_set_vc_payload_alloc(crtc, false);
5064
Paulo Zanoniad80a812012-10-24 16:06:19 -02005065 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005066
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005067 if (INTEL_INFO(dev)->gen == 9)
Chandra Kondurua1b22782015-04-07 15:28:45 -07005068 skylake_pfit_update(intel_crtc, 0);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005069 else if (INTEL_INFO(dev)->gen < 9)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00005070 ironlake_pfit_disable(intel_crtc);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005071 else
5072 MISSING_CASE(INTEL_INFO(dev)->gen);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005073
Paulo Zanoni1f544382012-10-24 11:32:00 -02005074 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005075
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005076 if (intel_crtc->config->has_pch_encoder) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02005077 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02005078 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02005079 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005080
Imre Deak97b040a2014-06-25 22:01:50 +03005081 for_each_encoder_on_crtc(dev, crtc, encoder)
5082 if (encoder->post_disable)
5083 encoder->post_disable(encoder);
5084
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005085 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03005086 intel_update_watermarks(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005087
5088 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02005089 intel_fbc_update(dev);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005090 mutex_unlock(&dev->struct_mutex);
Daniel Vetterdf8ad702014-06-25 22:02:03 +03005091
5092 if (intel_crtc_to_shared_dpll(intel_crtc))
5093 intel_disable_shared_dpll(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005094}
5095
Jesse Barnes2dd24552013-04-25 12:55:01 -07005096static void i9xx_pfit_enable(struct intel_crtc *crtc)
5097{
5098 struct drm_device *dev = crtc->base.dev;
5099 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005100 struct intel_crtc_state *pipe_config = crtc->config;
Jesse Barnes2dd24552013-04-25 12:55:01 -07005101
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02005102 if (!pipe_config->gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07005103 return;
5104
Daniel Vetterc0b03412013-05-28 12:05:54 +02005105 /*
5106 * The panel fitter should only be adjusted whilst the pipe is disabled,
5107 * according to register description and PRM.
5108 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07005109 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
5110 assert_pipe_disabled(dev_priv, crtc->pipe);
5111
Jesse Barnesb074cec2013-04-25 12:55:02 -07005112 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
5113 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02005114
5115 /* Border color in case we don't scale up to the full screen. Black by
5116 * default, change to something else for debugging. */
5117 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07005118}
5119
Dave Airlied05410f2014-06-05 13:22:59 +10005120static enum intel_display_power_domain port_to_power_domain(enum port port)
5121{
5122 switch (port) {
5123 case PORT_A:
5124 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
5125 case PORT_B:
5126 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
5127 case PORT_C:
5128 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
5129 case PORT_D:
5130 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
5131 default:
5132 WARN_ON_ONCE(1);
5133 return POWER_DOMAIN_PORT_OTHER;
5134 }
5135}
5136
Imre Deak77d22dc2014-03-05 16:20:52 +02005137#define for_each_power_domain(domain, mask) \
5138 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
5139 if ((1 << (domain)) & (mask))
5140
Imre Deak319be8a2014-03-04 19:22:57 +02005141enum intel_display_power_domain
5142intel_display_port_power_domain(struct intel_encoder *intel_encoder)
Imre Deak77d22dc2014-03-05 16:20:52 +02005143{
Imre Deak319be8a2014-03-04 19:22:57 +02005144 struct drm_device *dev = intel_encoder->base.dev;
5145 struct intel_digital_port *intel_dig_port;
5146
5147 switch (intel_encoder->type) {
5148 case INTEL_OUTPUT_UNKNOWN:
5149 /* Only DDI platforms should ever use this output type */
5150 WARN_ON_ONCE(!HAS_DDI(dev));
5151 case INTEL_OUTPUT_DISPLAYPORT:
5152 case INTEL_OUTPUT_HDMI:
5153 case INTEL_OUTPUT_EDP:
5154 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
Dave Airlied05410f2014-06-05 13:22:59 +10005155 return port_to_power_domain(intel_dig_port->port);
Dave Airlie0e32b392014-05-02 14:02:48 +10005156 case INTEL_OUTPUT_DP_MST:
5157 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5158 return port_to_power_domain(intel_dig_port->port);
Imre Deak319be8a2014-03-04 19:22:57 +02005159 case INTEL_OUTPUT_ANALOG:
5160 return POWER_DOMAIN_PORT_CRT;
5161 case INTEL_OUTPUT_DSI:
5162 return POWER_DOMAIN_PORT_DSI;
5163 default:
5164 return POWER_DOMAIN_PORT_OTHER;
5165 }
5166}
5167
5168static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
5169{
5170 struct drm_device *dev = crtc->dev;
5171 struct intel_encoder *intel_encoder;
5172 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5173 enum pipe pipe = intel_crtc->pipe;
Imre Deak77d22dc2014-03-05 16:20:52 +02005174 unsigned long mask;
5175 enum transcoder transcoder;
5176
5177 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
5178
5179 mask = BIT(POWER_DOMAIN_PIPE(pipe));
5180 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005181 if (intel_crtc->config->pch_pfit.enabled ||
5182 intel_crtc->config->pch_pfit.force_thru)
Imre Deak77d22dc2014-03-05 16:20:52 +02005183 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
5184
Imre Deak319be8a2014-03-04 19:22:57 +02005185 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
5186 mask |= BIT(intel_display_port_power_domain(intel_encoder));
5187
Imre Deak77d22dc2014-03-05 16:20:52 +02005188 return mask;
5189}
5190
Ander Conselvan de Oliveira679dacd2015-03-20 16:18:15 +02005191static void modeset_update_crtc_power_domains(struct drm_atomic_state *state)
Imre Deak77d22dc2014-03-05 16:20:52 +02005192{
Ander Conselvan de Oliveira679dacd2015-03-20 16:18:15 +02005193 struct drm_device *dev = state->dev;
Imre Deak77d22dc2014-03-05 16:20:52 +02005194 struct drm_i915_private *dev_priv = dev->dev_private;
5195 unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
5196 struct intel_crtc *crtc;
5197
5198 /*
5199 * First get all needed power domains, then put all unneeded, to avoid
5200 * any unnecessary toggling of the power wells.
5201 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01005202 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02005203 enum intel_display_power_domain domain;
5204
Matt Roper83d65732015-02-25 13:12:16 -08005205 if (!crtc->base.state->enable)
Imre Deak77d22dc2014-03-05 16:20:52 +02005206 continue;
5207
Imre Deak319be8a2014-03-04 19:22:57 +02005208 pipe_domains[crtc->pipe] = get_crtc_power_domains(&crtc->base);
Imre Deak77d22dc2014-03-05 16:20:52 +02005209
5210 for_each_power_domain(domain, pipe_domains[crtc->pipe])
5211 intel_display_power_get(dev_priv, domain);
5212 }
5213
Ville Syrjälä50f6e502014-11-06 14:49:12 +02005214 if (dev_priv->display.modeset_global_resources)
Ander Conselvan de Oliveira679dacd2015-03-20 16:18:15 +02005215 dev_priv->display.modeset_global_resources(state);
Ville Syrjälä50f6e502014-11-06 14:49:12 +02005216
Damien Lespiaud3fcc802014-05-13 23:32:22 +01005217 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02005218 enum intel_display_power_domain domain;
5219
5220 for_each_power_domain(domain, crtc->enabled_power_domains)
5221 intel_display_power_put(dev_priv, domain);
5222
5223 crtc->enabled_power_domains = pipe_domains[crtc->pipe];
5224 }
5225
5226 intel_display_set_init_power(dev_priv, false);
5227}
5228
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005229static void intel_update_max_cdclk(struct drm_device *dev)
5230{
5231 struct drm_i915_private *dev_priv = dev->dev_private;
5232
5233 if (IS_SKYLAKE(dev)) {
5234 u32 limit = I915_READ(SKL_DFSM) & SKL_DFSM_CDCLK_LIMIT_MASK;
5235
5236 if (limit == SKL_DFSM_CDCLK_LIMIT_675)
5237 dev_priv->max_cdclk_freq = 675000;
5238 else if (limit == SKL_DFSM_CDCLK_LIMIT_540)
5239 dev_priv->max_cdclk_freq = 540000;
5240 else if (limit == SKL_DFSM_CDCLK_LIMIT_450)
5241 dev_priv->max_cdclk_freq = 450000;
5242 else
5243 dev_priv->max_cdclk_freq = 337500;
5244 } else if (IS_BROADWELL(dev)) {
5245 /*
5246 * FIXME with extra cooling we can allow
5247 * 540 MHz for ULX and 675 Mhz for ULT.
5248 * How can we know if extra cooling is
5249 * available? PCI ID, VTB, something else?
5250 */
5251 if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
5252 dev_priv->max_cdclk_freq = 450000;
5253 else if (IS_BDW_ULX(dev))
5254 dev_priv->max_cdclk_freq = 450000;
5255 else if (IS_BDW_ULT(dev))
5256 dev_priv->max_cdclk_freq = 540000;
5257 else
5258 dev_priv->max_cdclk_freq = 675000;
5259 } else if (IS_VALLEYVIEW(dev)) {
5260 dev_priv->max_cdclk_freq = 400000;
5261 } else {
5262 /* otherwise assume cdclk is fixed */
5263 dev_priv->max_cdclk_freq = dev_priv->cdclk_freq;
5264 }
5265
5266 DRM_DEBUG_DRIVER("Max CD clock rate: %d kHz\n",
5267 dev_priv->max_cdclk_freq);
5268}
5269
5270static void intel_update_cdclk(struct drm_device *dev)
5271{
5272 struct drm_i915_private *dev_priv = dev->dev_private;
5273
5274 dev_priv->cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
5275 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
5276 dev_priv->cdclk_freq);
5277
5278 /*
5279 * Program the gmbus_freq based on the cdclk frequency.
5280 * BSpec erroneously claims we should aim for 4MHz, but
5281 * in fact 1MHz is the correct frequency.
5282 */
5283 if (IS_VALLEYVIEW(dev)) {
5284 /*
5285 * Program the gmbus_freq based on the cdclk frequency.
5286 * BSpec erroneously claims we should aim for 4MHz, but
5287 * in fact 1MHz is the correct frequency.
5288 */
5289 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->cdclk_freq, 1000));
5290 }
5291
5292 if (dev_priv->max_cdclk_freq == 0)
5293 intel_update_max_cdclk(dev);
5294}
5295
Damien Lespiau70d0c572015-06-04 18:21:29 +01005296static void broxton_set_cdclk(struct drm_device *dev, int frequency)
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305297{
5298 struct drm_i915_private *dev_priv = dev->dev_private;
5299 uint32_t divider;
5300 uint32_t ratio;
5301 uint32_t current_freq;
5302 int ret;
5303
5304 /* frequency = 19.2MHz * ratio / 2 / div{1,1.5,2,4} */
5305 switch (frequency) {
5306 case 144000:
5307 divider = BXT_CDCLK_CD2X_DIV_SEL_4;
5308 ratio = BXT_DE_PLL_RATIO(60);
5309 break;
5310 case 288000:
5311 divider = BXT_CDCLK_CD2X_DIV_SEL_2;
5312 ratio = BXT_DE_PLL_RATIO(60);
5313 break;
5314 case 384000:
5315 divider = BXT_CDCLK_CD2X_DIV_SEL_1_5;
5316 ratio = BXT_DE_PLL_RATIO(60);
5317 break;
5318 case 576000:
5319 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5320 ratio = BXT_DE_PLL_RATIO(60);
5321 break;
5322 case 624000:
5323 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5324 ratio = BXT_DE_PLL_RATIO(65);
5325 break;
5326 case 19200:
5327 /*
5328 * Bypass frequency with DE PLL disabled. Init ratio, divider
5329 * to suppress GCC warning.
5330 */
5331 ratio = 0;
5332 divider = 0;
5333 break;
5334 default:
5335 DRM_ERROR("unsupported CDCLK freq %d", frequency);
5336
5337 return;
5338 }
5339
5340 mutex_lock(&dev_priv->rps.hw_lock);
5341 /* Inform power controller of upcoming frequency change */
5342 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
5343 0x80000000);
5344 mutex_unlock(&dev_priv->rps.hw_lock);
5345
5346 if (ret) {
5347 DRM_ERROR("PCode CDCLK freq change notify failed (err %d, freq %d)\n",
5348 ret, frequency);
5349 return;
5350 }
5351
5352 current_freq = I915_READ(CDCLK_CTL) & CDCLK_FREQ_DECIMAL_MASK;
5353 /* convert from .1 fixpoint MHz with -1MHz offset to kHz */
5354 current_freq = current_freq * 500 + 1000;
5355
5356 /*
5357 * DE PLL has to be disabled when
5358 * - setting to 19.2MHz (bypass, PLL isn't used)
5359 * - before setting to 624MHz (PLL needs toggling)
5360 * - before setting to any frequency from 624MHz (PLL needs toggling)
5361 */
5362 if (frequency == 19200 || frequency == 624000 ||
5363 current_freq == 624000) {
5364 I915_WRITE(BXT_DE_PLL_ENABLE, ~BXT_DE_PLL_PLL_ENABLE);
5365 /* Timeout 200us */
5366 if (wait_for(!(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK),
5367 1))
5368 DRM_ERROR("timout waiting for DE PLL unlock\n");
5369 }
5370
5371 if (frequency != 19200) {
5372 uint32_t val;
5373
5374 val = I915_READ(BXT_DE_PLL_CTL);
5375 val &= ~BXT_DE_PLL_RATIO_MASK;
5376 val |= ratio;
5377 I915_WRITE(BXT_DE_PLL_CTL, val);
5378
5379 I915_WRITE(BXT_DE_PLL_ENABLE, BXT_DE_PLL_PLL_ENABLE);
5380 /* Timeout 200us */
5381 if (wait_for(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK, 1))
5382 DRM_ERROR("timeout waiting for DE PLL lock\n");
5383
5384 val = I915_READ(CDCLK_CTL);
5385 val &= ~BXT_CDCLK_CD2X_DIV_SEL_MASK;
5386 val |= divider;
5387 /*
5388 * Disable SSA Precharge when CD clock frequency < 500 MHz,
5389 * enable otherwise.
5390 */
5391 val &= ~BXT_CDCLK_SSA_PRECHARGE_ENABLE;
5392 if (frequency >= 500000)
5393 val |= BXT_CDCLK_SSA_PRECHARGE_ENABLE;
5394
5395 val &= ~CDCLK_FREQ_DECIMAL_MASK;
5396 /* convert from kHz to .1 fixpoint MHz with -1MHz offset */
5397 val |= (frequency - 1000) / 500;
5398 I915_WRITE(CDCLK_CTL, val);
5399 }
5400
5401 mutex_lock(&dev_priv->rps.hw_lock);
5402 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
5403 DIV_ROUND_UP(frequency, 25000));
5404 mutex_unlock(&dev_priv->rps.hw_lock);
5405
5406 if (ret) {
5407 DRM_ERROR("PCode CDCLK freq set failed, (err %d, freq %d)\n",
5408 ret, frequency);
5409 return;
5410 }
5411
Damien Lespiaua47871b2015-06-04 18:21:34 +01005412 intel_update_cdclk(dev);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305413}
5414
5415void broxton_init_cdclk(struct drm_device *dev)
5416{
5417 struct drm_i915_private *dev_priv = dev->dev_private;
5418 uint32_t val;
5419
5420 /*
5421 * NDE_RSTWRN_OPT RST PCH Handshake En must always be 0b on BXT
5422 * or else the reset will hang because there is no PCH to respond.
5423 * Move the handshake programming to initialization sequence.
5424 * Previously was left up to BIOS.
5425 */
5426 val = I915_READ(HSW_NDE_RSTWRN_OPT);
5427 val &= ~RESET_PCH_HANDSHAKE_ENABLE;
5428 I915_WRITE(HSW_NDE_RSTWRN_OPT, val);
5429
5430 /* Enable PG1 for cdclk */
5431 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
5432
5433 /* check if cd clock is enabled */
5434 if (I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_PLL_ENABLE) {
5435 DRM_DEBUG_KMS("Display already initialized\n");
5436 return;
5437 }
5438
5439 /*
5440 * FIXME:
5441 * - The initial CDCLK needs to be read from VBT.
5442 * Need to make this change after VBT has changes for BXT.
5443 * - check if setting the max (or any) cdclk freq is really necessary
5444 * here, it belongs to modeset time
5445 */
5446 broxton_set_cdclk(dev, 624000);
5447
5448 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) | DBUF_POWER_REQUEST);
Ville Syrjälä22e02c02015-05-06 14:28:57 +03005449 POSTING_READ(DBUF_CTL);
5450
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305451 udelay(10);
5452
5453 if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE))
5454 DRM_ERROR("DBuf power enable timeout!\n");
5455}
5456
5457void broxton_uninit_cdclk(struct drm_device *dev)
5458{
5459 struct drm_i915_private *dev_priv = dev->dev_private;
5460
5461 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) & ~DBUF_POWER_REQUEST);
Ville Syrjälä22e02c02015-05-06 14:28:57 +03005462 POSTING_READ(DBUF_CTL);
5463
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305464 udelay(10);
5465
5466 if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE)
5467 DRM_ERROR("DBuf power disable timeout!\n");
5468
5469 /* Set minimum (bypass) frequency, in effect turning off the DE PLL */
5470 broxton_set_cdclk(dev, 19200);
5471
5472 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
5473}
5474
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005475static const struct skl_cdclk_entry {
5476 unsigned int freq;
5477 unsigned int vco;
5478} skl_cdclk_frequencies[] = {
5479 { .freq = 308570, .vco = 8640 },
5480 { .freq = 337500, .vco = 8100 },
5481 { .freq = 432000, .vco = 8640 },
5482 { .freq = 450000, .vco = 8100 },
5483 { .freq = 540000, .vco = 8100 },
5484 { .freq = 617140, .vco = 8640 },
5485 { .freq = 675000, .vco = 8100 },
5486};
5487
5488static unsigned int skl_cdclk_decimal(unsigned int freq)
5489{
5490 return (freq - 1000) / 500;
5491}
5492
5493static unsigned int skl_cdclk_get_vco(unsigned int freq)
5494{
5495 unsigned int i;
5496
5497 for (i = 0; i < ARRAY_SIZE(skl_cdclk_frequencies); i++) {
5498 const struct skl_cdclk_entry *e = &skl_cdclk_frequencies[i];
5499
5500 if (e->freq == freq)
5501 return e->vco;
5502 }
5503
5504 return 8100;
5505}
5506
5507static void
5508skl_dpll0_enable(struct drm_i915_private *dev_priv, unsigned int required_vco)
5509{
5510 unsigned int min_freq;
5511 u32 val;
5512
5513 /* select the minimum CDCLK before enabling DPLL 0 */
5514 val = I915_READ(CDCLK_CTL);
5515 val &= ~CDCLK_FREQ_SEL_MASK | ~CDCLK_FREQ_DECIMAL_MASK;
5516 val |= CDCLK_FREQ_337_308;
5517
5518 if (required_vco == 8640)
5519 min_freq = 308570;
5520 else
5521 min_freq = 337500;
5522
5523 val = CDCLK_FREQ_337_308 | skl_cdclk_decimal(min_freq);
5524
5525 I915_WRITE(CDCLK_CTL, val);
5526 POSTING_READ(CDCLK_CTL);
5527
5528 /*
5529 * We always enable DPLL0 with the lowest link rate possible, but still
5530 * taking into account the VCO required to operate the eDP panel at the
5531 * desired frequency. The usual DP link rates operate with a VCO of
5532 * 8100 while the eDP 1.4 alternate link rates need a VCO of 8640.
5533 * The modeset code is responsible for the selection of the exact link
5534 * rate later on, with the constraint of choosing a frequency that
5535 * works with required_vco.
5536 */
5537 val = I915_READ(DPLL_CTRL1);
5538
5539 val &= ~(DPLL_CTRL1_HDMI_MODE(SKL_DPLL0) | DPLL_CTRL1_SSC(SKL_DPLL0) |
5540 DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0));
5541 val |= DPLL_CTRL1_OVERRIDE(SKL_DPLL0);
5542 if (required_vco == 8640)
5543 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080,
5544 SKL_DPLL0);
5545 else
5546 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810,
5547 SKL_DPLL0);
5548
5549 I915_WRITE(DPLL_CTRL1, val);
5550 POSTING_READ(DPLL_CTRL1);
5551
5552 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) | LCPLL_PLL_ENABLE);
5553
5554 if (wait_for(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK, 5))
5555 DRM_ERROR("DPLL0 not locked\n");
5556}
5557
5558static bool skl_cdclk_pcu_ready(struct drm_i915_private *dev_priv)
5559{
5560 int ret;
5561 u32 val;
5562
5563 /* inform PCU we want to change CDCLK */
5564 val = SKL_CDCLK_PREPARE_FOR_CHANGE;
5565 mutex_lock(&dev_priv->rps.hw_lock);
5566 ret = sandybridge_pcode_read(dev_priv, SKL_PCODE_CDCLK_CONTROL, &val);
5567 mutex_unlock(&dev_priv->rps.hw_lock);
5568
5569 return ret == 0 && (val & SKL_CDCLK_READY_FOR_CHANGE);
5570}
5571
5572static bool skl_cdclk_wait_for_pcu_ready(struct drm_i915_private *dev_priv)
5573{
5574 unsigned int i;
5575
5576 for (i = 0; i < 15; i++) {
5577 if (skl_cdclk_pcu_ready(dev_priv))
5578 return true;
5579 udelay(10);
5580 }
5581
5582 return false;
5583}
5584
5585static void skl_set_cdclk(struct drm_i915_private *dev_priv, unsigned int freq)
5586{
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005587 struct drm_device *dev = dev_priv->dev;
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005588 u32 freq_select, pcu_ack;
5589
5590 DRM_DEBUG_DRIVER("Changing CDCLK to %dKHz\n", freq);
5591
5592 if (!skl_cdclk_wait_for_pcu_ready(dev_priv)) {
5593 DRM_ERROR("failed to inform PCU about cdclk change\n");
5594 return;
5595 }
5596
5597 /* set CDCLK_CTL */
5598 switch(freq) {
5599 case 450000:
5600 case 432000:
5601 freq_select = CDCLK_FREQ_450_432;
5602 pcu_ack = 1;
5603 break;
5604 case 540000:
5605 freq_select = CDCLK_FREQ_540;
5606 pcu_ack = 2;
5607 break;
5608 case 308570:
5609 case 337500:
5610 default:
5611 freq_select = CDCLK_FREQ_337_308;
5612 pcu_ack = 0;
5613 break;
5614 case 617140:
5615 case 675000:
5616 freq_select = CDCLK_FREQ_675_617;
5617 pcu_ack = 3;
5618 break;
5619 }
5620
5621 I915_WRITE(CDCLK_CTL, freq_select | skl_cdclk_decimal(freq));
5622 POSTING_READ(CDCLK_CTL);
5623
5624 /* inform PCU of the change */
5625 mutex_lock(&dev_priv->rps.hw_lock);
5626 sandybridge_pcode_write(dev_priv, SKL_PCODE_CDCLK_CONTROL, pcu_ack);
5627 mutex_unlock(&dev_priv->rps.hw_lock);
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005628
5629 intel_update_cdclk(dev);
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005630}
5631
5632void skl_uninit_cdclk(struct drm_i915_private *dev_priv)
5633{
5634 /* disable DBUF power */
5635 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) & ~DBUF_POWER_REQUEST);
5636 POSTING_READ(DBUF_CTL);
5637
5638 udelay(10);
5639
5640 if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE)
5641 DRM_ERROR("DBuf power disable timeout\n");
5642
5643 /* disable DPLL0 */
5644 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) & ~LCPLL_PLL_ENABLE);
5645 if (wait_for(!(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK), 1))
5646 DRM_ERROR("Couldn't disable DPLL0\n");
5647
5648 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
5649}
5650
5651void skl_init_cdclk(struct drm_i915_private *dev_priv)
5652{
5653 u32 val;
5654 unsigned int required_vco;
5655
5656 /* enable PCH reset handshake */
5657 val = I915_READ(HSW_NDE_RSTWRN_OPT);
5658 I915_WRITE(HSW_NDE_RSTWRN_OPT, val | RESET_PCH_HANDSHAKE_ENABLE);
5659
5660 /* enable PG1 and Misc I/O */
5661 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
5662
5663 /* DPLL0 already enabed !? */
5664 if (I915_READ(LCPLL1_CTL) & LCPLL_PLL_ENABLE) {
5665 DRM_DEBUG_DRIVER("DPLL0 already running\n");
5666 return;
5667 }
5668
5669 /* enable DPLL0 */
5670 required_vco = skl_cdclk_get_vco(dev_priv->skl_boot_cdclk);
5671 skl_dpll0_enable(dev_priv, required_vco);
5672
5673 /* set CDCLK to the frequency the BIOS chose */
5674 skl_set_cdclk(dev_priv, dev_priv->skl_boot_cdclk);
5675
5676 /* enable DBUF power */
5677 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) | DBUF_POWER_REQUEST);
5678 POSTING_READ(DBUF_CTL);
5679
5680 udelay(10);
5681
5682 if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE))
5683 DRM_ERROR("DBuf power enable timeout\n");
5684}
5685
Ville Syrjälädfcab172014-06-13 13:37:47 +03005686/* returns HPLL frequency in kHz */
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03005687static int valleyview_get_vco(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005688{
Jesse Barnes586f49d2013-11-04 16:06:59 -08005689 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
Jesse Barnes30a970c2013-11-04 13:48:12 -08005690
Jesse Barnes586f49d2013-11-04 16:06:59 -08005691 /* Obtain SKU information */
Ville Syrjäläa5805162015-05-26 20:42:30 +03005692 mutex_lock(&dev_priv->sb_lock);
Jesse Barnes586f49d2013-11-04 16:06:59 -08005693 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
5694 CCK_FUSE_HPLL_FREQ_MASK;
Ville Syrjäläa5805162015-05-26 20:42:30 +03005695 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005696
Ville Syrjälädfcab172014-06-13 13:37:47 +03005697 return vco_freq[hpll_freq] * 1000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005698}
5699
5700/* Adjust CDclk dividers to allow high res or save power if possible */
5701static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
5702{
5703 struct drm_i915_private *dev_priv = dev->dev_private;
5704 u32 val, cmd;
5705
Vandana Kannan164dfd22014-11-24 13:37:41 +05305706 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5707 != dev_priv->cdclk_freq);
Imre Deakd60c4472014-03-27 17:45:10 +02005708
Ville Syrjälädfcab172014-06-13 13:37:47 +03005709 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
Jesse Barnes30a970c2013-11-04 13:48:12 -08005710 cmd = 2;
Ville Syrjälädfcab172014-06-13 13:37:47 +03005711 else if (cdclk == 266667)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005712 cmd = 1;
5713 else
5714 cmd = 0;
5715
5716 mutex_lock(&dev_priv->rps.hw_lock);
5717 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5718 val &= ~DSPFREQGUAR_MASK;
5719 val |= (cmd << DSPFREQGUAR_SHIFT);
5720 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5721 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5722 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
5723 50)) {
5724 DRM_ERROR("timed out waiting for CDclk change\n");
5725 }
5726 mutex_unlock(&dev_priv->rps.hw_lock);
5727
Ville Syrjälä54433e92015-05-26 20:42:31 +03005728 mutex_lock(&dev_priv->sb_lock);
5729
Ville Syrjälädfcab172014-06-13 13:37:47 +03005730 if (cdclk == 400000) {
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005731 u32 divider;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005732
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005733 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005734
Jesse Barnes30a970c2013-11-04 13:48:12 -08005735 /* adjust cdclk divider */
5736 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
Ville Syrjälä9cf33db2014-06-13 13:37:48 +03005737 val &= ~DISPLAY_FREQUENCY_VALUES;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005738 val |= divider;
5739 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
Ville Syrjäläa877e802014-06-13 13:37:52 +03005740
5741 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
5742 DISPLAY_FREQUENCY_STATUS) == (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
5743 50))
5744 DRM_ERROR("timed out waiting for CDclk change\n");
Jesse Barnes30a970c2013-11-04 13:48:12 -08005745 }
5746
Jesse Barnes30a970c2013-11-04 13:48:12 -08005747 /* adjust self-refresh exit latency value */
5748 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
5749 val &= ~0x7f;
5750
5751 /*
5752 * For high bandwidth configs, we set a higher latency in the bunit
5753 * so that the core display fetch happens in time to avoid underruns.
5754 */
Ville Syrjälädfcab172014-06-13 13:37:47 +03005755 if (cdclk == 400000)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005756 val |= 4500 / 250; /* 4.5 usec */
5757 else
5758 val |= 3000 / 250; /* 3.0 usec */
5759 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
Ville Syrjälä54433e92015-05-26 20:42:31 +03005760
Ville Syrjäläa5805162015-05-26 20:42:30 +03005761 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005762
Ville Syrjäläb6283052015-06-03 15:45:07 +03005763 intel_update_cdclk(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005764}
5765
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005766static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
5767{
5768 struct drm_i915_private *dev_priv = dev->dev_private;
5769 u32 val, cmd;
5770
Vandana Kannan164dfd22014-11-24 13:37:41 +05305771 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5772 != dev_priv->cdclk_freq);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005773
5774 switch (cdclk) {
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005775 case 333333:
5776 case 320000:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005777 case 266667:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005778 case 200000:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005779 break;
5780 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01005781 MISSING_CASE(cdclk);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005782 return;
5783 }
5784
Ville Syrjälä9d0d3fd2015-03-02 20:07:17 +02005785 /*
5786 * Specs are full of misinformation, but testing on actual
5787 * hardware has shown that we just need to write the desired
5788 * CCK divider into the Punit register.
5789 */
5790 cmd = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
5791
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005792 mutex_lock(&dev_priv->rps.hw_lock);
5793 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5794 val &= ~DSPFREQGUAR_MASK_CHV;
5795 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
5796 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5797 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5798 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
5799 50)) {
5800 DRM_ERROR("timed out waiting for CDclk change\n");
5801 }
5802 mutex_unlock(&dev_priv->rps.hw_lock);
5803
Ville Syrjäläb6283052015-06-03 15:45:07 +03005804 intel_update_cdclk(dev);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005805}
5806
Jesse Barnes30a970c2013-11-04 13:48:12 -08005807static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
5808 int max_pixclk)
5809{
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005810 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005811 int limit = IS_CHERRYVIEW(dev_priv) ? 95 : 90;
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005812
Jesse Barnes30a970c2013-11-04 13:48:12 -08005813 /*
5814 * Really only a few cases to deal with, as only 4 CDclks are supported:
5815 * 200MHz
5816 * 267MHz
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005817 * 320/333MHz (depends on HPLL freq)
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005818 * 400MHz (VLV only)
5819 * So we check to see whether we're above 90% (VLV) or 95% (CHV)
5820 * of the lower bin and adjust if needed.
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005821 *
5822 * We seem to get an unstable or solid color picture at 200MHz.
5823 * Not sure what's wrong. For now use 200MHz only when all pipes
5824 * are off.
Jesse Barnes30a970c2013-11-04 13:48:12 -08005825 */
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005826 if (!IS_CHERRYVIEW(dev_priv) &&
5827 max_pixclk > freq_320*limit/100)
Ville Syrjälädfcab172014-06-13 13:37:47 +03005828 return 400000;
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005829 else if (max_pixclk > 266667*limit/100)
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005830 return freq_320;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005831 else if (max_pixclk > 0)
Ville Syrjälädfcab172014-06-13 13:37:47 +03005832 return 266667;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005833 else
5834 return 200000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005835}
5836
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305837static int broxton_calc_cdclk(struct drm_i915_private *dev_priv,
5838 int max_pixclk)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005839{
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305840 /*
5841 * FIXME:
5842 * - remove the guardband, it's not needed on BXT
5843 * - set 19.2MHz bypass frequency if there are no active pipes
5844 */
5845 if (max_pixclk > 576000*9/10)
5846 return 624000;
5847 else if (max_pixclk > 384000*9/10)
5848 return 576000;
5849 else if (max_pixclk > 288000*9/10)
5850 return 384000;
5851 else if (max_pixclk > 144000*9/10)
5852 return 288000;
5853 else
5854 return 144000;
5855}
5856
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03005857/* Compute the max pixel clock for new configuration. Uses atomic state if
5858 * that's non-NULL, look at current state otherwise. */
5859static int intel_mode_max_pixclk(struct drm_device *dev,
5860 struct drm_atomic_state *state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005861{
Jesse Barnes30a970c2013-11-04 13:48:12 -08005862 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005863 struct intel_crtc_state *crtc_state;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005864 int max_pixclk = 0;
5865
Damien Lespiaud3fcc802014-05-13 23:32:22 +01005866 for_each_intel_crtc(dev, intel_crtc) {
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03005867 if (state)
5868 crtc_state =
5869 intel_atomic_get_crtc_state(state, intel_crtc);
5870 else
5871 crtc_state = intel_crtc->config;
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005872 if (IS_ERR(crtc_state))
5873 return PTR_ERR(crtc_state);
5874
5875 if (!crtc_state->base.enable)
5876 continue;
5877
5878 max_pixclk = max(max_pixclk,
5879 crtc_state->base.adjusted_mode.crtc_clock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005880 }
5881
5882 return max_pixclk;
5883}
5884
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +03005885static int valleyview_modeset_global_pipes(struct drm_atomic_state *state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005886{
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005887 struct drm_i915_private *dev_priv = to_i915(state->dev);
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +03005888 struct drm_crtc *crtc;
5889 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03005890 int max_pixclk = intel_mode_max_pixclk(state->dev, state);
Maarten Lankhorst85a96e72015-06-01 12:49:53 +02005891 int cdclk, ret = 0;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005892
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005893 if (max_pixclk < 0)
5894 return max_pixclk;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005895
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305896 if (IS_VALLEYVIEW(dev_priv))
5897 cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
5898 else
5899 cdclk = broxton_calc_cdclk(dev_priv, max_pixclk);
5900
5901 if (cdclk == dev_priv->cdclk_freq)
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005902 return 0;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005903
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +03005904 /* add all active pipes to the state */
5905 for_each_crtc(state->dev, crtc) {
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +03005906 crtc_state = drm_atomic_get_crtc_state(state, crtc);
5907 if (IS_ERR(crtc_state))
5908 return PTR_ERR(crtc_state);
Maarten Lankhorst85a96e72015-06-01 12:49:53 +02005909
5910 if (!crtc_state->active || needs_modeset(crtc_state))
5911 continue;
5912
5913 crtc_state->mode_changed = true;
5914
5915 ret = drm_atomic_add_affected_connectors(state, crtc);
5916 if (ret)
5917 break;
5918
5919 ret = drm_atomic_add_affected_planes(state, crtc);
5920 if (ret)
5921 break;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +03005922 }
5923
Maarten Lankhorst85a96e72015-06-01 12:49:53 +02005924 return ret;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005925}
5926
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02005927static void vlv_program_pfi_credits(struct drm_i915_private *dev_priv)
5928{
5929 unsigned int credits, default_credits;
5930
5931 if (IS_CHERRYVIEW(dev_priv))
5932 default_credits = PFI_CREDIT(12);
5933 else
5934 default_credits = PFI_CREDIT(8);
5935
Vandana Kannan164dfd22014-11-24 13:37:41 +05305936 if (DIV_ROUND_CLOSEST(dev_priv->cdclk_freq, 1000) >= dev_priv->rps.cz_freq) {
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02005937 /* CHV suggested value is 31 or 63 */
5938 if (IS_CHERRYVIEW(dev_priv))
5939 credits = PFI_CREDIT_31;
5940 else
5941 credits = PFI_CREDIT(15);
5942 } else {
5943 credits = default_credits;
5944 }
5945
5946 /*
5947 * WA - write default credits before re-programming
5948 * FIXME: should we also set the resend bit here?
5949 */
5950 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
5951 default_credits);
5952
5953 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
5954 credits | PFI_CREDIT_RESEND);
5955
5956 /*
5957 * FIXME is this guaranteed to clear
5958 * immediately or should we poll for it?
5959 */
5960 WARN_ON(I915_READ(GCI_CONTROL) & PFI_CREDIT_RESEND);
5961}
5962
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03005963static void valleyview_modeset_global_resources(struct drm_atomic_state *old_state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005964{
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03005965 struct drm_device *dev = old_state->dev;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005966 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03005967 int max_pixclk = intel_mode_max_pixclk(dev, NULL);
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005968 int req_cdclk;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005969
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03005970 /* The path in intel_mode_max_pixclk() with a NULL atomic state should
5971 * never fail. */
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005972 if (WARN_ON(max_pixclk < 0))
5973 return;
5974
5975 req_cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005976
Vandana Kannan164dfd22014-11-24 13:37:41 +05305977 if (req_cdclk != dev_priv->cdclk_freq) {
Imre Deak738c05c2014-11-19 16:25:37 +02005978 /*
5979 * FIXME: We can end up here with all power domains off, yet
5980 * with a CDCLK frequency other than the minimum. To account
5981 * for this take the PIPE-A power domain, which covers the HW
5982 * blocks needed for the following programming. This can be
5983 * removed once it's guaranteed that we get here either with
5984 * the minimum CDCLK set, or the required power domains
5985 * enabled.
5986 */
5987 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
5988
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005989 if (IS_CHERRYVIEW(dev))
5990 cherryview_set_cdclk(dev, req_cdclk);
5991 else
5992 valleyview_set_cdclk(dev, req_cdclk);
Imre Deak738c05c2014-11-19 16:25:37 +02005993
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02005994 vlv_program_pfi_credits(dev_priv);
5995
Imre Deak738c05c2014-11-19 16:25:37 +02005996 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005997 }
Jesse Barnes30a970c2013-11-04 13:48:12 -08005998}
5999
Jesse Barnes89b667f2013-04-18 14:51:36 -07006000static void valleyview_crtc_enable(struct drm_crtc *crtc)
6001{
6002 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02006003 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006004 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6005 struct intel_encoder *encoder;
6006 int pipe = intel_crtc->pipe;
Jani Nikula23538ef2013-08-27 15:12:22 +03006007 bool is_dsi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07006008
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02006009 if (WARN_ON(intel_crtc->active))
Jesse Barnes89b667f2013-04-18 14:51:36 -07006010 return;
6011
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006012 is_dsi = intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI);
Shobhit Kumar8525a232014-06-25 12:20:39 +05306013
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006014 if (!is_dsi) {
6015 if (IS_CHERRYVIEW(dev))
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006016 chv_prepare_pll(intel_crtc, intel_crtc->config);
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006017 else
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006018 vlv_prepare_pll(intel_crtc, intel_crtc->config);
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006019 }
Daniel Vetter5b18e572014-04-24 23:55:06 +02006020
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006021 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05306022 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter5b18e572014-04-24 23:55:06 +02006023
6024 intel_set_pipe_timings(intel_crtc);
6025
Ville Syrjäläc14b0482014-10-16 20:52:34 +03006026 if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) {
6027 struct drm_i915_private *dev_priv = dev->dev_private;
6028
6029 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
6030 I915_WRITE(CHV_CANVAS(pipe), 0);
6031 }
6032
Daniel Vetter5b18e572014-04-24 23:55:06 +02006033 i9xx_set_pipeconf(intel_crtc);
6034
Jesse Barnes89b667f2013-04-18 14:51:36 -07006035 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07006036
Daniel Vettera72e4c92014-09-30 10:56:47 +02006037 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006038
Jesse Barnes89b667f2013-04-18 14:51:36 -07006039 for_each_encoder_on_crtc(dev, crtc, encoder)
6040 if (encoder->pre_pll_enable)
6041 encoder->pre_pll_enable(encoder);
6042
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006043 if (!is_dsi) {
6044 if (IS_CHERRYVIEW(dev))
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006045 chv_enable_pll(intel_crtc, intel_crtc->config);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006046 else
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006047 vlv_enable_pll(intel_crtc, intel_crtc->config);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006048 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07006049
6050 for_each_encoder_on_crtc(dev, crtc, encoder)
6051 if (encoder->pre_enable)
6052 encoder->pre_enable(encoder);
6053
Jesse Barnes2dd24552013-04-25 12:55:01 -07006054 i9xx_pfit_enable(intel_crtc);
6055
Ville Syrjälä63cbb072013-06-04 13:48:59 +03006056 intel_crtc_load_lut(crtc);
6057
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03006058 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02006059 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02006060
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03006061 assert_vblank_disabled(crtc);
6062 drm_crtc_vblank_on(crtc);
6063
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01006064 for_each_encoder_on_crtc(dev, crtc, encoder)
6065 encoder->enable(encoder);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006066}
6067
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02006068static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
6069{
6070 struct drm_device *dev = crtc->base.dev;
6071 struct drm_i915_private *dev_priv = dev->dev_private;
6072
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006073 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
6074 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02006075}
6076
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006077static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08006078{
6079 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02006080 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08006081 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02006082 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08006083 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08006084
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02006085 if (WARN_ON(intel_crtc->active))
Chris Wilsonf7abfe82010-09-13 14:19:16 +01006086 return;
6087
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02006088 i9xx_set_pll_dividers(intel_crtc);
6089
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006090 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05306091 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter5b18e572014-04-24 23:55:06 +02006092
6093 intel_set_pipe_timings(intel_crtc);
6094
Daniel Vetter5b18e572014-04-24 23:55:06 +02006095 i9xx_set_pipeconf(intel_crtc);
6096
Chris Wilsonf7abfe82010-09-13 14:19:16 +01006097 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01006098
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006099 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02006100 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006101
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02006102 for_each_encoder_on_crtc(dev, crtc, encoder)
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02006103 if (encoder->pre_enable)
6104 encoder->pre_enable(encoder);
6105
Daniel Vetterf6736a12013-06-05 13:34:30 +02006106 i9xx_enable_pll(intel_crtc);
6107
Jesse Barnes2dd24552013-04-25 12:55:01 -07006108 i9xx_pfit_enable(intel_crtc);
6109
Ville Syrjälä63cbb072013-06-04 13:48:59 +03006110 intel_crtc_load_lut(crtc);
6111
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03006112 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02006113 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02006114
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03006115 assert_vblank_disabled(crtc);
6116 drm_crtc_vblank_on(crtc);
6117
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01006118 for_each_encoder_on_crtc(dev, crtc, encoder)
6119 encoder->enable(encoder);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006120}
6121
Daniel Vetter87476d62013-04-11 16:29:06 +02006122static void i9xx_pfit_disable(struct intel_crtc *crtc)
6123{
6124 struct drm_device *dev = crtc->base.dev;
6125 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02006126
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006127 if (!crtc->config->gmch_pfit.control)
Daniel Vetter328d8e82013-05-08 10:36:31 +02006128 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02006129
6130 assert_pipe_disabled(dev_priv, crtc->pipe);
6131
Daniel Vetter328d8e82013-05-08 10:36:31 +02006132 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
6133 I915_READ(PFIT_CONTROL));
6134 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02006135}
6136
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006137static void i9xx_crtc_disable(struct drm_crtc *crtc)
6138{
6139 struct drm_device *dev = crtc->dev;
6140 struct drm_i915_private *dev_priv = dev->dev_private;
6141 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02006142 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006143 int pipe = intel_crtc->pipe;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02006144
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02006145 if (WARN_ON(!intel_crtc->active))
Chris Wilsonf7abfe82010-09-13 14:19:16 +01006146 return;
6147
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006148 /*
6149 * On gen2 planes are double buffered but the pipe isn't, so we must
6150 * wait for planes to fully turn off before disabling the pipe.
Imre Deak564ed192014-06-13 14:54:21 +03006151 * We also need to wait on all gmch platforms because of the
6152 * self-refresh mode constraint explained above.
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006153 */
Imre Deak564ed192014-06-13 14:54:21 +03006154 intel_wait_for_vblank(dev, pipe);
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006155
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03006156 for_each_encoder_on_crtc(dev, crtc, encoder)
6157 encoder->disable(encoder);
6158
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01006159 drm_crtc_vblank_off(crtc);
6160 assert_vblank_disabled(crtc);
6161
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03006162 intel_disable_pipe(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02006163
Daniel Vetter87476d62013-04-11 16:29:06 +02006164 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02006165
Jesse Barnes89b667f2013-04-18 14:51:36 -07006166 for_each_encoder_on_crtc(dev, crtc, encoder)
6167 if (encoder->post_disable)
6168 encoder->post_disable(encoder);
6169
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006170 if (!intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI)) {
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03006171 if (IS_CHERRYVIEW(dev))
6172 chv_disable_pll(dev_priv, pipe);
6173 else if (IS_VALLEYVIEW(dev))
6174 vlv_disable_pll(dev_priv, pipe);
6175 else
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03006176 i9xx_disable_pll(intel_crtc);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03006177 }
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006178
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006179 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02006180 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006181
Chris Wilsonf7abfe82010-09-13 14:19:16 +01006182 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03006183 intel_update_watermarks(crtc);
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03006184
Daniel Vetterefa96242014-04-24 23:55:02 +02006185 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02006186 intel_fbc_update(dev);
Daniel Vetterefa96242014-04-24 23:55:02 +02006187 mutex_unlock(&dev->struct_mutex);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006188}
6189
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006190static void intel_crtc_disable_noatomic(struct drm_crtc *crtc)
6191{
6192 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6193 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
6194 enum intel_display_power_domain domain;
6195 unsigned long domains;
6196
6197 if (!intel_crtc->active)
6198 return;
6199
6200 intel_crtc_disable_planes(crtc);
6201 dev_priv->display.crtc_disable(crtc);
6202
6203 domains = intel_crtc->enabled_power_domains;
6204 for_each_power_domain(domain, domains)
6205 intel_display_power_put(dev_priv, domain);
6206 intel_crtc->enabled_power_domains = 0;
6207}
6208
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006209/*
6210 * turn all crtc's off, but do not adjust state
6211 * This has to be paired with a call to intel_modeset_setup_hw_state.
6212 */
Maarten Lankhorst9716c692015-06-10 10:24:19 +02006213void intel_display_suspend(struct drm_device *dev)
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006214{
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006215 struct drm_crtc *crtc;
6216
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006217 for_each_crtc(dev, crtc)
6218 intel_crtc_disable_noatomic(crtc);
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006219}
6220
Borun Fub04c5bd2014-07-12 10:02:27 +05306221/* Master function to enable/disable CRTC and corresponding power wells */
Maarten Lankhorst5da76e92015-06-01 12:50:04 +02006222int intel_crtc_control(struct drm_crtc *crtc, bool enable)
Chris Wilsoncdd59982010-09-08 16:30:16 +01006223{
Chris Wilsoncdd59982010-09-08 16:30:16 +01006224 struct drm_device *dev = crtc->dev;
Maarten Lankhorst5da76e92015-06-01 12:50:04 +02006225 struct drm_mode_config *config = &dev->mode_config;
6226 struct drm_modeset_acquire_ctx *ctx = config->acquire_ctx;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006227 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorst5da76e92015-06-01 12:50:04 +02006228 struct intel_crtc_state *pipe_config;
6229 struct drm_atomic_state *state;
6230 int ret;
Daniel Vetter976f8a22012-07-08 22:34:21 +02006231
Maarten Lankhorst1b509252015-06-01 12:49:48 +02006232 if (enable == intel_crtc->active)
Maarten Lankhorst5da76e92015-06-01 12:50:04 +02006233 return 0;
Maarten Lankhorst1b509252015-06-01 12:49:48 +02006234
6235 if (enable && !crtc->state->enable)
Maarten Lankhorst5da76e92015-06-01 12:50:04 +02006236 return 0;
Maarten Lankhorst1b509252015-06-01 12:49:48 +02006237
Maarten Lankhorst5da76e92015-06-01 12:50:04 +02006238 /* this function should be called with drm_modeset_lock_all for now */
6239 if (WARN_ON(!ctx))
6240 return -EIO;
6241 lockdep_assert_held(&ctx->ww_ctx);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006242
Maarten Lankhorst5da76e92015-06-01 12:50:04 +02006243 state = drm_atomic_state_alloc(dev);
6244 if (WARN_ON(!state))
6245 return -ENOMEM;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006246
Maarten Lankhorst5da76e92015-06-01 12:50:04 +02006247 state->acquire_ctx = ctx;
6248 state->allow_modeset = true;
6249
6250 pipe_config = intel_atomic_get_crtc_state(state, intel_crtc);
6251 if (IS_ERR(pipe_config)) {
6252 ret = PTR_ERR(pipe_config);
6253 goto err;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006254 }
Maarten Lankhorst5da76e92015-06-01 12:50:04 +02006255 pipe_config->base.active = enable;
6256
6257 ret = intel_set_mode(state);
6258 if (!ret)
6259 return ret;
6260
6261err:
6262 DRM_ERROR("Updating crtc active failed with %i\n", ret);
6263 drm_atomic_state_free(state);
6264 return ret;
Borun Fub04c5bd2014-07-12 10:02:27 +05306265}
6266
6267/**
6268 * Sets the power management mode of the pipe and plane.
6269 */
6270void intel_crtc_update_dpms(struct drm_crtc *crtc)
6271{
6272 struct drm_device *dev = crtc->dev;
6273 struct intel_encoder *intel_encoder;
6274 bool enable = false;
6275
6276 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
6277 enable |= intel_encoder->connectors_active;
6278
6279 intel_crtc_control(crtc, enable);
Daniel Vetter976f8a22012-07-08 22:34:21 +02006280}
6281
Chris Wilsonea5b2132010-08-04 13:50:23 +01006282void intel_encoder_destroy(struct drm_encoder *encoder)
6283{
Chris Wilson4ef69c72010-09-09 15:14:28 +01006284 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01006285
Chris Wilsonea5b2132010-08-04 13:50:23 +01006286 drm_encoder_cleanup(encoder);
6287 kfree(intel_encoder);
6288}
6289
Damien Lespiau92373292013-08-08 22:28:57 +01006290/* Simple dpms helper for encoders with just one connector, no cloning and only
Daniel Vetter5ab432e2012-06-30 08:59:56 +02006291 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
6292 * state of the entire output pipe. */
Damien Lespiau92373292013-08-08 22:28:57 +01006293static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
Daniel Vetter5ab432e2012-06-30 08:59:56 +02006294{
6295 if (mode == DRM_MODE_DPMS_ON) {
6296 encoder->connectors_active = true;
6297
Daniel Vetterb2cabb02012-07-01 22:42:24 +02006298 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02006299 } else {
6300 encoder->connectors_active = false;
6301
Daniel Vetterb2cabb02012-07-01 22:42:24 +02006302 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02006303 }
6304}
6305
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006306/* Cross check the actual hw state with our own modeset state tracking (and it's
6307 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02006308static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006309{
6310 if (connector->get_hw_state(connector)) {
6311 struct intel_encoder *encoder = connector->encoder;
6312 struct drm_crtc *crtc;
6313 bool encoder_enabled;
6314 enum pipe pipe;
6315
6316 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
6317 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03006318 connector->base.name);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006319
Dave Airlie0e32b392014-05-02 14:02:48 +10006320 /* there is no real hw state for MST connectors */
6321 if (connector->mst_port)
6322 return;
6323
Rob Clarke2c719b2014-12-15 13:56:32 -05006324 I915_STATE_WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006325 "wrong connector dpms state\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05006326 I915_STATE_WARN(connector->base.encoder != &encoder->base,
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006327 "active connector not linked to encoder\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006328
Dave Airlie36cd7442014-05-02 13:44:18 +10006329 if (encoder) {
Rob Clarke2c719b2014-12-15 13:56:32 -05006330 I915_STATE_WARN(!encoder->connectors_active,
Dave Airlie36cd7442014-05-02 13:44:18 +10006331 "encoder->connectors_active not set\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006332
Dave Airlie36cd7442014-05-02 13:44:18 +10006333 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
Rob Clarke2c719b2014-12-15 13:56:32 -05006334 I915_STATE_WARN(!encoder_enabled, "encoder not enabled\n");
6335 if (I915_STATE_WARN_ON(!encoder->base.crtc))
Dave Airlie36cd7442014-05-02 13:44:18 +10006336 return;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006337
Dave Airlie36cd7442014-05-02 13:44:18 +10006338 crtc = encoder->base.crtc;
6339
Matt Roper83d65732015-02-25 13:12:16 -08006340 I915_STATE_WARN(!crtc->state->enable,
6341 "crtc not enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05006342 I915_STATE_WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
6343 I915_STATE_WARN(pipe != to_intel_crtc(crtc)->pipe,
Dave Airlie36cd7442014-05-02 13:44:18 +10006344 "encoder active on the wrong pipe\n");
6345 }
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006346 }
6347}
6348
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03006349int intel_connector_init(struct intel_connector *connector)
6350{
6351 struct drm_connector_state *connector_state;
6352
6353 connector_state = kzalloc(sizeof *connector_state, GFP_KERNEL);
6354 if (!connector_state)
6355 return -ENOMEM;
6356
6357 connector->base.state = connector_state;
6358 return 0;
6359}
6360
6361struct intel_connector *intel_connector_alloc(void)
6362{
6363 struct intel_connector *connector;
6364
6365 connector = kzalloc(sizeof *connector, GFP_KERNEL);
6366 if (!connector)
6367 return NULL;
6368
6369 if (intel_connector_init(connector) < 0) {
6370 kfree(connector);
6371 return NULL;
6372 }
6373
6374 return connector;
6375}
6376
Daniel Vetter5ab432e2012-06-30 08:59:56 +02006377/* Even simpler default implementation, if there's really no special case to
6378 * consider. */
6379void intel_connector_dpms(struct drm_connector *connector, int mode)
6380{
Daniel Vetter5ab432e2012-06-30 08:59:56 +02006381 /* All the simple cases only support two dpms states. */
6382 if (mode != DRM_MODE_DPMS_ON)
6383 mode = DRM_MODE_DPMS_OFF;
6384
6385 if (mode == connector->dpms)
6386 return;
6387
6388 connector->dpms = mode;
6389
6390 /* Only need to change hw state when actually enabled */
Chris Wilsonc9976dcf2013-09-29 19:15:07 +01006391 if (connector->encoder)
6392 intel_encoder_dpms(to_intel_encoder(connector->encoder), mode);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006393
Daniel Vetterb9805142012-08-31 17:37:33 +02006394 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02006395}
6396
Daniel Vetterf0947c32012-07-02 13:10:34 +02006397/* Simple connector->get_hw_state implementation for encoders that support only
6398 * one connector and no cloning and hence the encoder state determines the state
6399 * of the connector. */
6400bool intel_connector_get_hw_state(struct intel_connector *connector)
6401{
Daniel Vetter24929352012-07-02 20:28:59 +02006402 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02006403 struct intel_encoder *encoder = connector->encoder;
6404
6405 return encoder->get_hw_state(encoder, &pipe);
6406}
6407
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006408static int pipe_required_fdi_lanes(struct intel_crtc_state *crtc_state)
Ville Syrjäläd272ddf2015-03-11 18:52:31 +02006409{
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006410 if (crtc_state->base.enable && crtc_state->has_pch_encoder)
6411 return crtc_state->fdi_lanes;
Ville Syrjäläd272ddf2015-03-11 18:52:31 +02006412
6413 return 0;
6414}
6415
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006416static int ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006417 struct intel_crtc_state *pipe_config)
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006418{
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006419 struct drm_atomic_state *state = pipe_config->base.state;
6420 struct intel_crtc *other_crtc;
6421 struct intel_crtc_state *other_crtc_state;
6422
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006423 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
6424 pipe_name(pipe), pipe_config->fdi_lanes);
6425 if (pipe_config->fdi_lanes > 4) {
6426 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
6427 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006428 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006429 }
6430
Paulo Zanonibafb6552013-11-02 21:07:44 -07006431 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006432 if (pipe_config->fdi_lanes > 2) {
6433 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
6434 pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006435 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006436 } else {
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006437 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006438 }
6439 }
6440
6441 if (INTEL_INFO(dev)->num_pipes == 2)
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006442 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006443
6444 /* Ivybridge 3 pipe is really complicated */
6445 switch (pipe) {
6446 case PIPE_A:
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006447 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006448 case PIPE_B:
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006449 if (pipe_config->fdi_lanes <= 2)
6450 return 0;
6451
6452 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_C));
6453 other_crtc_state =
6454 intel_atomic_get_crtc_state(state, other_crtc);
6455 if (IS_ERR(other_crtc_state))
6456 return PTR_ERR(other_crtc_state);
6457
6458 if (pipe_required_fdi_lanes(other_crtc_state) > 0) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006459 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
6460 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006461 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006462 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006463 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006464 case PIPE_C:
Ville Syrjälä251cc672015-03-11 18:52:30 +02006465 if (pipe_config->fdi_lanes > 2) {
6466 DRM_DEBUG_KMS("only 2 lanes on pipe %c: required %i lanes\n",
6467 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006468 return -EINVAL;
Ville Syrjälä251cc672015-03-11 18:52:30 +02006469 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006470
6471 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_B));
6472 other_crtc_state =
6473 intel_atomic_get_crtc_state(state, other_crtc);
6474 if (IS_ERR(other_crtc_state))
6475 return PTR_ERR(other_crtc_state);
6476
6477 if (pipe_required_fdi_lanes(other_crtc_state) > 2) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006478 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006479 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006480 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006481 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006482 default:
6483 BUG();
6484 }
6485}
6486
Daniel Vettere29c22c2013-02-21 00:00:16 +01006487#define RETRY 1
6488static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006489 struct intel_crtc_state *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02006490{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006491 struct drm_device *dev = intel_crtc->base.dev;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006492 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006493 int lane, link_bw, fdi_dotclock, ret;
6494 bool needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02006495
Daniel Vettere29c22c2013-02-21 00:00:16 +01006496retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02006497 /* FDI is a binary signal running at ~2.7GHz, encoding
6498 * each output octet as 10 bits. The actual frequency
6499 * is stored as a divider into a 100MHz clock, and the
6500 * mode pixel clock is stored in units of 1KHz.
6501 * Hence the bw of each lane in terms of the mode signal
6502 * is:
6503 */
6504 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
6505
Damien Lespiau241bfc32013-09-25 16:45:37 +01006506 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02006507
Daniel Vetter2bd89a02013-06-01 17:16:19 +02006508 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02006509 pipe_config->pipe_bpp);
6510
6511 pipe_config->fdi_lanes = lane;
6512
Daniel Vetter2bd89a02013-06-01 17:16:19 +02006513 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02006514 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006515
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006516 ret = ironlake_check_fdi_lanes(intel_crtc->base.dev,
6517 intel_crtc->pipe, pipe_config);
6518 if (ret == -EINVAL && pipe_config->pipe_bpp > 6*3) {
Daniel Vettere29c22c2013-02-21 00:00:16 +01006519 pipe_config->pipe_bpp -= 2*3;
6520 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
6521 pipe_config->pipe_bpp);
6522 needs_recompute = true;
6523 pipe_config->bw_constrained = true;
6524
6525 goto retry;
6526 }
6527
6528 if (needs_recompute)
6529 return RETRY;
6530
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006531 return ret;
Daniel Vetter877d48d2013-04-19 11:24:43 +02006532}
6533
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03006534static bool pipe_config_supports_ips(struct drm_i915_private *dev_priv,
6535 struct intel_crtc_state *pipe_config)
6536{
6537 if (pipe_config->pipe_bpp > 24)
6538 return false;
6539
6540 /* HSW can handle pixel rate up to cdclk? */
6541 if (IS_HASWELL(dev_priv->dev))
6542 return true;
6543
6544 /*
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03006545 * We compare against max which means we must take
6546 * the increased cdclk requirement into account when
6547 * calculating the new cdclk.
6548 *
6549 * Should measure whether using a lower cdclk w/o IPS
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03006550 */
6551 return ilk_pipe_pixel_rate(pipe_config) <=
6552 dev_priv->max_cdclk_freq * 95 / 100;
6553}
6554
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006555static void hsw_compute_ips_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006556 struct intel_crtc_state *pipe_config)
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006557{
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03006558 struct drm_device *dev = crtc->base.dev;
6559 struct drm_i915_private *dev_priv = dev->dev_private;
6560
Jani Nikulad330a952014-01-21 11:24:25 +02006561 pipe_config->ips_enabled = i915.enable_ips &&
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03006562 hsw_crtc_supports_ips(crtc) &&
6563 pipe_config_supports_ips(dev_priv, pipe_config);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006564}
6565
Daniel Vettera43f6e02013-06-07 23:10:32 +02006566static int intel_crtc_compute_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006567 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08006568{
Daniel Vettera43f6e02013-06-07 23:10:32 +02006569 struct drm_device *dev = crtc->base.dev;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02006570 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006571 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Chandra Kondurud03c93d2015-04-09 16:42:46 -07006572 int ret;
Chris Wilson89749352010-09-12 18:25:19 +01006573
Ville Syrjäläad3a4472013-09-04 18:30:04 +03006574 /* FIXME should check pixel clock limits on all platforms */
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006575 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä44913152015-06-03 15:45:10 +03006576 int clock_limit = dev_priv->max_cdclk_freq;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006577
6578 /*
6579 * Enable pixel doubling when the dot clock
6580 * is > 90% of the (display) core speed.
6581 *
Ville Syrjäläb397c962013-09-04 18:30:06 +03006582 * GDG double wide on either pipe,
6583 * otherwise pipe A only.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006584 */
Ville Syrjäläb397c962013-09-04 18:30:06 +03006585 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
Damien Lespiau241bfc32013-09-25 16:45:37 +01006586 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
Ville Syrjäläad3a4472013-09-04 18:30:04 +03006587 clock_limit *= 2;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006588 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03006589 }
6590
Damien Lespiau241bfc32013-09-25 16:45:37 +01006591 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
Daniel Vettere29c22c2013-02-21 00:00:16 +01006592 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08006593 }
Chris Wilson89749352010-09-12 18:25:19 +01006594
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03006595 /*
6596 * Pipe horizontal size must be even in:
6597 * - DVO ganged mode
6598 * - LVDS dual channel mode
6599 * - Double wide pipe
6600 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02006601 if ((intel_pipe_will_have_type(pipe_config, INTEL_OUTPUT_LVDS) &&
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03006602 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
6603 pipe_config->pipe_src_w &= ~1;
6604
Damien Lespiau8693a822013-05-03 18:48:11 +01006605 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
6606 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03006607 */
6608 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
6609 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01006610 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03006611
Damien Lespiauf5adf942013-06-24 18:29:34 +01006612 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02006613 hsw_compute_ips_config(crtc, pipe_config);
6614
Daniel Vetter877d48d2013-04-19 11:24:43 +02006615 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02006616 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02006617
Chandra Kondurud03c93d2015-04-09 16:42:46 -07006618 /* FIXME: remove below call once atomic mode set is place and all crtc
6619 * related checks called from atomic_crtc_check function */
6620 ret = 0;
6621 DRM_DEBUG_KMS("intel_crtc = %p drm_state (pipe_config->base.state) = %p\n",
6622 crtc, pipe_config->base.state);
6623 ret = intel_atomic_setup_scalers(dev, crtc, pipe_config);
6624
6625 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08006626}
6627
Ville Syrjälä1652d192015-03-31 14:12:01 +03006628static int skylake_get_display_clock_speed(struct drm_device *dev)
6629{
6630 struct drm_i915_private *dev_priv = to_i915(dev);
6631 uint32_t lcpll1 = I915_READ(LCPLL1_CTL);
6632 uint32_t cdctl = I915_READ(CDCLK_CTL);
6633 uint32_t linkrate;
6634
Damien Lespiau414355a2015-06-04 18:21:31 +01006635 if (!(lcpll1 & LCPLL_PLL_ENABLE))
Ville Syrjälä1652d192015-03-31 14:12:01 +03006636 return 24000; /* 24MHz is the cd freq with NSSC ref */
Ville Syrjälä1652d192015-03-31 14:12:01 +03006637
6638 if ((cdctl & CDCLK_FREQ_SEL_MASK) == CDCLK_FREQ_540)
6639 return 540000;
6640
6641 linkrate = (I915_READ(DPLL_CTRL1) &
Damien Lespiau71cd8422015-04-30 16:39:17 +01006642 DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0)) >> 1;
Ville Syrjälä1652d192015-03-31 14:12:01 +03006643
Damien Lespiau71cd8422015-04-30 16:39:17 +01006644 if (linkrate == DPLL_CTRL1_LINK_RATE_2160 ||
6645 linkrate == DPLL_CTRL1_LINK_RATE_1080) {
Ville Syrjälä1652d192015-03-31 14:12:01 +03006646 /* vco 8640 */
6647 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6648 case CDCLK_FREQ_450_432:
6649 return 432000;
6650 case CDCLK_FREQ_337_308:
6651 return 308570;
6652 case CDCLK_FREQ_675_617:
6653 return 617140;
6654 default:
6655 WARN(1, "Unknown cd freq selection\n");
6656 }
6657 } else {
6658 /* vco 8100 */
6659 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6660 case CDCLK_FREQ_450_432:
6661 return 450000;
6662 case CDCLK_FREQ_337_308:
6663 return 337500;
6664 case CDCLK_FREQ_675_617:
6665 return 675000;
6666 default:
6667 WARN(1, "Unknown cd freq selection\n");
6668 }
6669 }
6670
6671 /* error case, do as if DPLL0 isn't enabled */
6672 return 24000;
6673}
6674
6675static int broadwell_get_display_clock_speed(struct drm_device *dev)
6676{
6677 struct drm_i915_private *dev_priv = dev->dev_private;
6678 uint32_t lcpll = I915_READ(LCPLL_CTL);
6679 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6680
6681 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6682 return 800000;
6683 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6684 return 450000;
6685 else if (freq == LCPLL_CLK_FREQ_450)
6686 return 450000;
6687 else if (freq == LCPLL_CLK_FREQ_54O_BDW)
6688 return 540000;
6689 else if (freq == LCPLL_CLK_FREQ_337_5_BDW)
6690 return 337500;
6691 else
6692 return 675000;
6693}
6694
6695static int haswell_get_display_clock_speed(struct drm_device *dev)
6696{
6697 struct drm_i915_private *dev_priv = dev->dev_private;
6698 uint32_t lcpll = I915_READ(LCPLL_CTL);
6699 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6700
6701 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6702 return 800000;
6703 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6704 return 450000;
6705 else if (freq == LCPLL_CLK_FREQ_450)
6706 return 450000;
6707 else if (IS_HSW_ULT(dev))
6708 return 337500;
6709 else
6710 return 540000;
Jesse Barnes79e53942008-11-07 14:24:08 -08006711}
6712
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07006713static int valleyview_get_display_clock_speed(struct drm_device *dev)
6714{
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03006715 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03006716 u32 val;
6717 int divider;
6718
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03006719 if (dev_priv->hpll_freq == 0)
6720 dev_priv->hpll_freq = valleyview_get_vco(dev_priv);
6721
Ville Syrjäläa5805162015-05-26 20:42:30 +03006722 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03006723 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
Ville Syrjäläa5805162015-05-26 20:42:30 +03006724 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03006725
6726 divider = val & DISPLAY_FREQUENCY_VALUES;
6727
Ville Syrjälä7d007f42014-06-13 13:37:53 +03006728 WARN((val & DISPLAY_FREQUENCY_STATUS) !=
6729 (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
6730 "cdclk change in progress\n");
6731
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03006732 return DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, divider + 1);
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07006733}
6734
Ville Syrjäläb37a6432015-03-31 14:11:54 +03006735static int ilk_get_display_clock_speed(struct drm_device *dev)
6736{
6737 return 450000;
6738}
6739
Jesse Barnese70236a2009-09-21 10:42:27 -07006740static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08006741{
Jesse Barnese70236a2009-09-21 10:42:27 -07006742 return 400000;
6743}
Jesse Barnes79e53942008-11-07 14:24:08 -08006744
Jesse Barnese70236a2009-09-21 10:42:27 -07006745static int i915_get_display_clock_speed(struct drm_device *dev)
6746{
Ville Syrjäläe907f172015-03-31 14:09:47 +03006747 return 333333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006748}
Jesse Barnes79e53942008-11-07 14:24:08 -08006749
Jesse Barnese70236a2009-09-21 10:42:27 -07006750static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
6751{
6752 return 200000;
6753}
Jesse Barnes79e53942008-11-07 14:24:08 -08006754
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006755static int pnv_get_display_clock_speed(struct drm_device *dev)
6756{
6757 u16 gcfgc = 0;
6758
6759 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6760
6761 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6762 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006763 return 266667;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006764 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006765 return 333333;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006766 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006767 return 444444;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006768 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
6769 return 200000;
6770 default:
6771 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
6772 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006773 return 133333;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006774 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006775 return 166667;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006776 }
6777}
6778
Jesse Barnese70236a2009-09-21 10:42:27 -07006779static int i915gm_get_display_clock_speed(struct drm_device *dev)
6780{
6781 u16 gcfgc = 0;
6782
6783 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6784
6785 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Ville Syrjäläe907f172015-03-31 14:09:47 +03006786 return 133333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006787 else {
6788 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6789 case GC_DISPLAY_CLOCK_333_MHZ:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006790 return 333333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006791 default:
6792 case GC_DISPLAY_CLOCK_190_200_MHZ:
6793 return 190000;
6794 }
6795 }
6796}
Jesse Barnes79e53942008-11-07 14:24:08 -08006797
Jesse Barnese70236a2009-09-21 10:42:27 -07006798static int i865_get_display_clock_speed(struct drm_device *dev)
6799{
Ville Syrjäläe907f172015-03-31 14:09:47 +03006800 return 266667;
Jesse Barnese70236a2009-09-21 10:42:27 -07006801}
6802
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006803static int i85x_get_display_clock_speed(struct drm_device *dev)
Jesse Barnese70236a2009-09-21 10:42:27 -07006804{
6805 u16 hpllcc = 0;
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006806
Ville Syrjälä65cd2b32015-05-22 11:22:32 +03006807 /*
6808 * 852GM/852GMV only supports 133 MHz and the HPLLCC
6809 * encoding is different :(
6810 * FIXME is this the right way to detect 852GM/852GMV?
6811 */
6812 if (dev->pdev->revision == 0x1)
6813 return 133333;
6814
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006815 pci_bus_read_config_word(dev->pdev->bus,
6816 PCI_DEVFN(0, 3), HPLLCC, &hpllcc);
6817
Jesse Barnese70236a2009-09-21 10:42:27 -07006818 /* Assume that the hardware is in the high speed state. This
6819 * should be the default.
6820 */
6821 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
6822 case GC_CLOCK_133_200:
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006823 case GC_CLOCK_133_200_2:
Jesse Barnese70236a2009-09-21 10:42:27 -07006824 case GC_CLOCK_100_200:
6825 return 200000;
6826 case GC_CLOCK_166_250:
6827 return 250000;
6828 case GC_CLOCK_100_133:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006829 return 133333;
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006830 case GC_CLOCK_133_266:
6831 case GC_CLOCK_133_266_2:
6832 case GC_CLOCK_166_266:
6833 return 266667;
Jesse Barnese70236a2009-09-21 10:42:27 -07006834 }
6835
6836 /* Shouldn't happen */
6837 return 0;
6838}
6839
6840static int i830_get_display_clock_speed(struct drm_device *dev)
6841{
Ville Syrjäläe907f172015-03-31 14:09:47 +03006842 return 133333;
Jesse Barnes79e53942008-11-07 14:24:08 -08006843}
6844
Ville Syrjälä34edce22015-05-22 11:22:33 +03006845static unsigned int intel_hpll_vco(struct drm_device *dev)
6846{
6847 struct drm_i915_private *dev_priv = dev->dev_private;
6848 static const unsigned int blb_vco[8] = {
6849 [0] = 3200000,
6850 [1] = 4000000,
6851 [2] = 5333333,
6852 [3] = 4800000,
6853 [4] = 6400000,
6854 };
6855 static const unsigned int pnv_vco[8] = {
6856 [0] = 3200000,
6857 [1] = 4000000,
6858 [2] = 5333333,
6859 [3] = 4800000,
6860 [4] = 2666667,
6861 };
6862 static const unsigned int cl_vco[8] = {
6863 [0] = 3200000,
6864 [1] = 4000000,
6865 [2] = 5333333,
6866 [3] = 6400000,
6867 [4] = 3333333,
6868 [5] = 3566667,
6869 [6] = 4266667,
6870 };
6871 static const unsigned int elk_vco[8] = {
6872 [0] = 3200000,
6873 [1] = 4000000,
6874 [2] = 5333333,
6875 [3] = 4800000,
6876 };
6877 static const unsigned int ctg_vco[8] = {
6878 [0] = 3200000,
6879 [1] = 4000000,
6880 [2] = 5333333,
6881 [3] = 6400000,
6882 [4] = 2666667,
6883 [5] = 4266667,
6884 };
6885 const unsigned int *vco_table;
6886 unsigned int vco;
6887 uint8_t tmp = 0;
6888
6889 /* FIXME other chipsets? */
6890 if (IS_GM45(dev))
6891 vco_table = ctg_vco;
6892 else if (IS_G4X(dev))
6893 vco_table = elk_vco;
6894 else if (IS_CRESTLINE(dev))
6895 vco_table = cl_vco;
6896 else if (IS_PINEVIEW(dev))
6897 vco_table = pnv_vco;
6898 else if (IS_G33(dev))
6899 vco_table = blb_vco;
6900 else
6901 return 0;
6902
6903 tmp = I915_READ(IS_MOBILE(dev) ? HPLLVCO_MOBILE : HPLLVCO);
6904
6905 vco = vco_table[tmp & 0x7];
6906 if (vco == 0)
6907 DRM_ERROR("Bad HPLL VCO (HPLLVCO=0x%02x)\n", tmp);
6908 else
6909 DRM_DEBUG_KMS("HPLL VCO %u kHz\n", vco);
6910
6911 return vco;
6912}
6913
6914static int gm45_get_display_clock_speed(struct drm_device *dev)
6915{
6916 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
6917 uint16_t tmp = 0;
6918
6919 pci_read_config_word(dev->pdev, GCFGC, &tmp);
6920
6921 cdclk_sel = (tmp >> 12) & 0x1;
6922
6923 switch (vco) {
6924 case 2666667:
6925 case 4000000:
6926 case 5333333:
6927 return cdclk_sel ? 333333 : 222222;
6928 case 3200000:
6929 return cdclk_sel ? 320000 : 228571;
6930 default:
6931 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u, CFGC=0x%04x\n", vco, tmp);
6932 return 222222;
6933 }
6934}
6935
6936static int i965gm_get_display_clock_speed(struct drm_device *dev)
6937{
6938 static const uint8_t div_3200[] = { 16, 10, 8 };
6939 static const uint8_t div_4000[] = { 20, 12, 10 };
6940 static const uint8_t div_5333[] = { 24, 16, 14 };
6941 const uint8_t *div_table;
6942 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
6943 uint16_t tmp = 0;
6944
6945 pci_read_config_word(dev->pdev, GCFGC, &tmp);
6946
6947 cdclk_sel = ((tmp >> 8) & 0x1f) - 1;
6948
6949 if (cdclk_sel >= ARRAY_SIZE(div_3200))
6950 goto fail;
6951
6952 switch (vco) {
6953 case 3200000:
6954 div_table = div_3200;
6955 break;
6956 case 4000000:
6957 div_table = div_4000;
6958 break;
6959 case 5333333:
6960 div_table = div_5333;
6961 break;
6962 default:
6963 goto fail;
6964 }
6965
6966 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
6967
6968 fail:
6969 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%04x\n", vco, tmp);
6970 return 200000;
6971}
6972
6973static int g33_get_display_clock_speed(struct drm_device *dev)
6974{
6975 static const uint8_t div_3200[] = { 12, 10, 8, 7, 5, 16 };
6976 static const uint8_t div_4000[] = { 14, 12, 10, 8, 6, 20 };
6977 static const uint8_t div_4800[] = { 20, 14, 12, 10, 8, 24 };
6978 static const uint8_t div_5333[] = { 20, 16, 12, 12, 8, 28 };
6979 const uint8_t *div_table;
6980 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
6981 uint16_t tmp = 0;
6982
6983 pci_read_config_word(dev->pdev, GCFGC, &tmp);
6984
6985 cdclk_sel = (tmp >> 4) & 0x7;
6986
6987 if (cdclk_sel >= ARRAY_SIZE(div_3200))
6988 goto fail;
6989
6990 switch (vco) {
6991 case 3200000:
6992 div_table = div_3200;
6993 break;
6994 case 4000000:
6995 div_table = div_4000;
6996 break;
6997 case 4800000:
6998 div_table = div_4800;
6999 break;
7000 case 5333333:
7001 div_table = div_5333;
7002 break;
7003 default:
7004 goto fail;
7005 }
7006
7007 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
7008
7009 fail:
7010 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%08x\n", vco, tmp);
7011 return 190476;
7012}
7013
Zhenyu Wang2c072452009-06-05 15:38:42 +08007014static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007015intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08007016{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007017 while (*num > DATA_LINK_M_N_MASK ||
7018 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08007019 *num >>= 1;
7020 *den >>= 1;
7021 }
7022}
7023
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007024static void compute_m_n(unsigned int m, unsigned int n,
7025 uint32_t *ret_m, uint32_t *ret_n)
7026{
7027 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
7028 *ret_m = div_u64((uint64_t) m * *ret_n, n);
7029 intel_reduce_m_n_ratio(ret_m, ret_n);
7030}
7031
Daniel Vettere69d0bc2012-11-29 15:59:36 +01007032void
7033intel_link_compute_m_n(int bits_per_pixel, int nlanes,
7034 int pixel_clock, int link_clock,
7035 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08007036{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01007037 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007038
7039 compute_m_n(bits_per_pixel * pixel_clock,
7040 link_clock * nlanes * 8,
7041 &m_n->gmch_m, &m_n->gmch_n);
7042
7043 compute_m_n(pixel_clock, link_clock,
7044 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08007045}
7046
Chris Wilsona7615032011-01-12 17:04:08 +00007047static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
7048{
Jani Nikulad330a952014-01-21 11:24:25 +02007049 if (i915.panel_use_ssc >= 0)
7050 return i915.panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03007051 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07007052 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00007053}
7054
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007055static int i9xx_get_refclk(const struct intel_crtc_state *crtc_state,
7056 int num_connectors)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007057{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007058 struct drm_device *dev = crtc_state->base.crtc->dev;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007059 struct drm_i915_private *dev_priv = dev->dev_private;
7060 int refclk;
7061
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007062 WARN_ON(!crtc_state->base.state);
7063
Imre Deak5ab7b0b2015-03-06 03:29:25 +02007064 if (IS_VALLEYVIEW(dev) || IS_BROXTON(dev)) {
Daniel Vetter9a0ea492013-09-16 11:29:34 +02007065 refclk = 100000;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007066 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007067 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007068 refclk = dev_priv->vbt.lvds_ssc_freq;
7069 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007070 } else if (!IS_GEN2(dev)) {
7071 refclk = 96000;
7072 } else {
7073 refclk = 48000;
7074 }
7075
7076 return refclk;
7077}
7078
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007079static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007080{
Daniel Vetter7df00d72013-05-21 21:54:55 +02007081 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007082}
Daniel Vetterf47709a2013-03-28 10:42:02 +01007083
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007084static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
7085{
7086 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007087}
7088
Daniel Vetterf47709a2013-03-28 10:42:02 +01007089static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007090 struct intel_crtc_state *crtc_state,
Jesse Barnesa7516a02011-12-15 12:30:37 -08007091 intel_clock_t *reduced_clock)
7092{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007093 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007094 u32 fp, fp2 = 0;
7095
7096 if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007097 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007098 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007099 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007100 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007101 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007102 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007103 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007104 }
7105
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007106 crtc_state->dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007107
Daniel Vetterf47709a2013-03-28 10:42:02 +01007108 crtc->lowfreq_avail = false;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007109 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Rodrigo Viviab585de2015-03-24 12:40:09 -07007110 reduced_clock) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007111 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01007112 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007113 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007114 crtc_state->dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007115 }
7116}
7117
Chon Ming Lee5e69f972013-09-05 20:41:49 +08007118static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
7119 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07007120{
7121 u32 reg_val;
7122
7123 /*
7124 * PLLB opamp always calibrates to max value of 0x3f, force enable it
7125 * and set it to a reasonable value instead.
7126 */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007127 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007128 reg_val &= 0xffffff00;
7129 reg_val |= 0x00000030;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007130 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007131
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007132 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007133 reg_val &= 0x8cffffff;
7134 reg_val = 0x8c000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007135 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007136
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007137 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007138 reg_val &= 0xffffff00;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007139 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007140
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007141 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007142 reg_val &= 0x00ffffff;
7143 reg_val |= 0xb0000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007144 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007145}
7146
Daniel Vetterb5518422013-05-03 11:49:48 +02007147static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
7148 struct intel_link_m_n *m_n)
7149{
7150 struct drm_device *dev = crtc->base.dev;
7151 struct drm_i915_private *dev_priv = dev->dev_private;
7152 int pipe = crtc->pipe;
7153
Daniel Vettere3b95f12013-05-03 11:49:49 +02007154 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7155 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
7156 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
7157 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02007158}
7159
7160static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -07007161 struct intel_link_m_n *m_n,
7162 struct intel_link_m_n *m2_n2)
Daniel Vetterb5518422013-05-03 11:49:48 +02007163{
7164 struct drm_device *dev = crtc->base.dev;
7165 struct drm_i915_private *dev_priv = dev->dev_private;
7166 int pipe = crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007167 enum transcoder transcoder = crtc->config->cpu_transcoder;
Daniel Vetterb5518422013-05-03 11:49:48 +02007168
7169 if (INTEL_INFO(dev)->gen >= 5) {
7170 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
7171 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
7172 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
7173 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
Vandana Kannanf769cd22014-08-05 07:51:22 -07007174 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
7175 * for gen < 8) and if DRRS is supported (to make sure the
7176 * registers are not unnecessarily accessed).
7177 */
Durgadoss R44395bf2015-02-13 15:33:02 +05307178 if (m2_n2 && (IS_CHERRYVIEW(dev) || INTEL_INFO(dev)->gen < 8) &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007179 crtc->config->has_drrs) {
Vandana Kannanf769cd22014-08-05 07:51:22 -07007180 I915_WRITE(PIPE_DATA_M2(transcoder),
7181 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
7182 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
7183 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
7184 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
7185 }
Daniel Vetterb5518422013-05-03 11:49:48 +02007186 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02007187 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7188 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
7189 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
7190 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02007191 }
7192}
7193
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05307194void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n)
Daniel Vetter03afc4a2013-04-02 23:42:31 +02007195{
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05307196 struct intel_link_m_n *dp_m_n, *dp_m2_n2 = NULL;
7197
7198 if (m_n == M1_N1) {
7199 dp_m_n = &crtc->config->dp_m_n;
7200 dp_m2_n2 = &crtc->config->dp_m2_n2;
7201 } else if (m_n == M2_N2) {
7202
7203 /*
7204 * M2_N2 registers are not supported. Hence m2_n2 divider value
7205 * needs to be programmed into M1_N1.
7206 */
7207 dp_m_n = &crtc->config->dp_m2_n2;
7208 } else {
7209 DRM_ERROR("Unsupported divider value\n");
7210 return;
7211 }
7212
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007213 if (crtc->config->has_pch_encoder)
7214 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02007215 else
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05307216 intel_cpu_transcoder_set_m_n(crtc, dp_m_n, dp_m2_n2);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02007217}
7218
Ville Syrjäläd288f652014-10-28 13:20:22 +02007219static void vlv_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007220 struct intel_crtc_state *pipe_config)
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007221{
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007222 u32 dpll, dpll_md;
7223
7224 /*
7225 * Enable DPIO clock input. We should never disable the reference
7226 * clock for pipe B, since VGA hotplug / manual detection depends
7227 * on it.
7228 */
7229 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
7230 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
7231 /* We should never disable this, set it here for state tracking */
7232 if (crtc->pipe == PIPE_B)
7233 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
7234 dpll |= DPLL_VCO_ENABLE;
Ville Syrjäläd288f652014-10-28 13:20:22 +02007235 pipe_config->dpll_hw_state.dpll = dpll;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007236
Ville Syrjäläd288f652014-10-28 13:20:22 +02007237 dpll_md = (pipe_config->pixel_multiplier - 1)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007238 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjäläd288f652014-10-28 13:20:22 +02007239 pipe_config->dpll_hw_state.dpll_md = dpll_md;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007240}
7241
Ville Syrjäläd288f652014-10-28 13:20:22 +02007242static void vlv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007243 const struct intel_crtc_state *pipe_config)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007244{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007245 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007246 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01007247 int pipe = crtc->pipe;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007248 u32 mdiv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007249 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007250 u32 coreclk, reg_val;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007251
Ville Syrjäläa5805162015-05-26 20:42:30 +03007252 mutex_lock(&dev_priv->sb_lock);
Daniel Vetter09153002012-12-12 14:06:44 +01007253
Ville Syrjäläd288f652014-10-28 13:20:22 +02007254 bestn = pipe_config->dpll.n;
7255 bestm1 = pipe_config->dpll.m1;
7256 bestm2 = pipe_config->dpll.m2;
7257 bestp1 = pipe_config->dpll.p1;
7258 bestp2 = pipe_config->dpll.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007259
Jesse Barnes89b667f2013-04-18 14:51:36 -07007260 /* See eDP HDMI DPIO driver vbios notes doc */
7261
7262 /* PLL B needs special handling */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007263 if (pipe == PIPE_B)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08007264 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007265
7266 /* Set up Tx target for periodic Rcomp update */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007267 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007268
7269 /* Disable target IRef on PLL */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007270 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007271 reg_val &= 0x00ffffff;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007272 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007273
7274 /* Disable fast lock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007275 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007276
7277 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007278 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
7279 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
7280 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007281 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07007282
7283 /*
7284 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
7285 * but we don't support that).
7286 * Note: don't use the DAC post divider as it seems unstable.
7287 */
7288 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007289 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007290
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007291 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007292 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007293
Jesse Barnes89b667f2013-04-18 14:51:36 -07007294 /* Set HBR and RBR LPF coefficients */
Ville Syrjäläd288f652014-10-28 13:20:22 +02007295 if (pipe_config->port_clock == 162000 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007296 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG) ||
7297 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007298 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Ville Syrjälä885b0122013-07-05 19:21:38 +03007299 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007300 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007301 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007302 0x00d0000f);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007303
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02007304 if (pipe_config->has_dp_encoder) {
Jesse Barnes89b667f2013-04-18 14:51:36 -07007305 /* Use SSC source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007306 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007307 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007308 0x0df40000);
7309 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007310 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007311 0x0df70000);
7312 } else { /* HDMI or VGA */
7313 /* Use bend source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007314 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007315 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007316 0x0df70000);
7317 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007318 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007319 0x0df40000);
7320 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007321
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007322 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007323 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007324 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
7325 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
Jesse Barnes89b667f2013-04-18 14:51:36 -07007326 coreclk |= 0x01000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007327 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007328
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007329 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
Ville Syrjäläa5805162015-05-26 20:42:30 +03007330 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007331}
7332
Ville Syrjäläd288f652014-10-28 13:20:22 +02007333static void chv_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007334 struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007335{
Ville Syrjäläd288f652014-10-28 13:20:22 +02007336 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLOCK_CHV |
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007337 DPLL_REFA_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
7338 DPLL_VCO_ENABLE;
7339 if (crtc->pipe != PIPE_A)
Ville Syrjäläd288f652014-10-28 13:20:22 +02007340 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007341
Ville Syrjäläd288f652014-10-28 13:20:22 +02007342 pipe_config->dpll_hw_state.dpll_md =
7343 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007344}
7345
Ville Syrjäläd288f652014-10-28 13:20:22 +02007346static void chv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007347 const struct intel_crtc_state *pipe_config)
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007348{
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007349 struct drm_device *dev = crtc->base.dev;
7350 struct drm_i915_private *dev_priv = dev->dev_private;
7351 int pipe = crtc->pipe;
7352 int dpll_reg = DPLL(crtc->pipe);
7353 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307354 u32 loopfilter, tribuf_calcntr;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007355 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307356 u32 dpio_val;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307357 int vco;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007358
Ville Syrjäläd288f652014-10-28 13:20:22 +02007359 bestn = pipe_config->dpll.n;
7360 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
7361 bestm1 = pipe_config->dpll.m1;
7362 bestm2 = pipe_config->dpll.m2 >> 22;
7363 bestp1 = pipe_config->dpll.p1;
7364 bestp2 = pipe_config->dpll.p2;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307365 vco = pipe_config->dpll.vco;
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307366 dpio_val = 0;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307367 loopfilter = 0;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007368
7369 /*
7370 * Enable Refclk and SSC
7371 */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03007372 I915_WRITE(dpll_reg,
Ville Syrjäläd288f652014-10-28 13:20:22 +02007373 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03007374
Ville Syrjäläa5805162015-05-26 20:42:30 +03007375 mutex_lock(&dev_priv->sb_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007376
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007377 /* p1 and p2 divider */
7378 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
7379 5 << DPIO_CHV_S1_DIV_SHIFT |
7380 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
7381 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
7382 1 << DPIO_CHV_K_DIV_SHIFT);
7383
7384 /* Feedback post-divider - m2 */
7385 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
7386
7387 /* Feedback refclk divider - n and m1 */
7388 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
7389 DPIO_CHV_M1_DIV_BY_2 |
7390 1 << DPIO_CHV_N_DIV_SHIFT);
7391
7392 /* M2 fraction division */
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307393 if (bestm2_frac)
7394 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007395
7396 /* M2 fraction division enable */
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307397 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
7398 dpio_val &= ~(DPIO_CHV_FEEDFWD_GAIN_MASK | DPIO_CHV_FRAC_DIV_EN);
7399 dpio_val |= (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT);
7400 if (bestm2_frac)
7401 dpio_val |= DPIO_CHV_FRAC_DIV_EN;
7402 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port), dpio_val);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007403
Vijay Purushothamande3a0fd2015-03-05 19:32:06 +05307404 /* Program digital lock detect threshold */
7405 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW9(port));
7406 dpio_val &= ~(DPIO_CHV_INT_LOCK_THRESHOLD_MASK |
7407 DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE);
7408 dpio_val |= (0x5 << DPIO_CHV_INT_LOCK_THRESHOLD_SHIFT);
7409 if (!bestm2_frac)
7410 dpio_val |= DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE;
7411 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW9(port), dpio_val);
7412
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007413 /* Loop filter */
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307414 if (vco == 5400000) {
7415 loopfilter |= (0x3 << DPIO_CHV_PROP_COEFF_SHIFT);
7416 loopfilter |= (0x8 << DPIO_CHV_INT_COEFF_SHIFT);
7417 loopfilter |= (0x1 << DPIO_CHV_GAIN_CTRL_SHIFT);
7418 tribuf_calcntr = 0x9;
7419 } else if (vco <= 6200000) {
7420 loopfilter |= (0x5 << DPIO_CHV_PROP_COEFF_SHIFT);
7421 loopfilter |= (0xB << DPIO_CHV_INT_COEFF_SHIFT);
7422 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7423 tribuf_calcntr = 0x9;
7424 } else if (vco <= 6480000) {
7425 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7426 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7427 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7428 tribuf_calcntr = 0x8;
7429 } else {
7430 /* Not supported. Apply the same limits as in the max case */
7431 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7432 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7433 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7434 tribuf_calcntr = 0;
7435 }
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007436 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
7437
Ville Syrjälä968040b2015-03-11 22:52:08 +02007438 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW8(port));
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307439 dpio_val &= ~DPIO_CHV_TDC_TARGET_CNT_MASK;
7440 dpio_val |= (tribuf_calcntr << DPIO_CHV_TDC_TARGET_CNT_SHIFT);
7441 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW8(port), dpio_val);
7442
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007443 /* AFC Recal */
7444 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
7445 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
7446 DPIO_AFC_RECAL);
7447
Ville Syrjäläa5805162015-05-26 20:42:30 +03007448 mutex_unlock(&dev_priv->sb_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007449}
7450
Ville Syrjäläd288f652014-10-28 13:20:22 +02007451/**
7452 * vlv_force_pll_on - forcibly enable just the PLL
7453 * @dev_priv: i915 private structure
7454 * @pipe: pipe PLL to enable
7455 * @dpll: PLL configuration
7456 *
7457 * Enable the PLL for @pipe using the supplied @dpll config. To be used
7458 * in cases where we need the PLL enabled even when @pipe is not going to
7459 * be enabled.
7460 */
7461void vlv_force_pll_on(struct drm_device *dev, enum pipe pipe,
7462 const struct dpll *dpll)
7463{
7464 struct intel_crtc *crtc =
7465 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007466 struct intel_crtc_state pipe_config = {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007467 .base.crtc = &crtc->base,
Ville Syrjäläd288f652014-10-28 13:20:22 +02007468 .pixel_multiplier = 1,
7469 .dpll = *dpll,
7470 };
7471
7472 if (IS_CHERRYVIEW(dev)) {
7473 chv_update_pll(crtc, &pipe_config);
7474 chv_prepare_pll(crtc, &pipe_config);
7475 chv_enable_pll(crtc, &pipe_config);
7476 } else {
7477 vlv_update_pll(crtc, &pipe_config);
7478 vlv_prepare_pll(crtc, &pipe_config);
7479 vlv_enable_pll(crtc, &pipe_config);
7480 }
7481}
7482
7483/**
7484 * vlv_force_pll_off - forcibly disable just the PLL
7485 * @dev_priv: i915 private structure
7486 * @pipe: pipe PLL to disable
7487 *
7488 * Disable the PLL for @pipe. To be used in cases where we need
7489 * the PLL enabled even when @pipe is not going to be enabled.
7490 */
7491void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe)
7492{
7493 if (IS_CHERRYVIEW(dev))
7494 chv_disable_pll(to_i915(dev), pipe);
7495 else
7496 vlv_disable_pll(to_i915(dev), pipe);
7497}
7498
Daniel Vetterf47709a2013-03-28 10:42:02 +01007499static void i9xx_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007500 struct intel_crtc_state *crtc_state,
Daniel Vetterf47709a2013-03-28 10:42:02 +01007501 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007502 int num_connectors)
7503{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007504 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007505 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007506 u32 dpll;
7507 bool is_sdvo;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007508 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007509
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007510 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05307511
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007512 is_sdvo = intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO) ||
7513 intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007514
7515 dpll = DPLL_VGA_MODE_DIS;
7516
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007517 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007518 dpll |= DPLLB_MODE_LVDS;
7519 else
7520 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01007521
Daniel Vetteref1b4602013-06-01 17:17:04 +02007522 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007523 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetter198a037f2013-04-19 11:14:37 +02007524 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007525 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02007526
7527 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007528 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007529
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007530 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007531 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007532
7533 /* compute bitmask from p1 value */
7534 if (IS_PINEVIEW(dev))
7535 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
7536 else {
7537 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7538 if (IS_G4X(dev) && reduced_clock)
7539 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
7540 }
7541 switch (clock->p2) {
7542 case 5:
7543 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
7544 break;
7545 case 7:
7546 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
7547 break;
7548 case 10:
7549 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
7550 break;
7551 case 14:
7552 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
7553 break;
7554 }
7555 if (INTEL_INFO(dev)->gen >= 4)
7556 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
7557
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007558 if (crtc_state->sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007559 dpll |= PLL_REF_INPUT_TVCLKINBC;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007560 else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007561 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
7562 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7563 else
7564 dpll |= PLL_REF_INPUT_DREFCLK;
7565
7566 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007567 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02007568
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007569 if (INTEL_INFO(dev)->gen >= 4) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007570 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02007571 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007572 crtc_state->dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007573 }
7574}
7575
Daniel Vetterf47709a2013-03-28 10:42:02 +01007576static void i8xx_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007577 struct intel_crtc_state *crtc_state,
Daniel Vetterf47709a2013-03-28 10:42:02 +01007578 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007579 int num_connectors)
7580{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007581 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007582 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007583 u32 dpll;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007584 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007585
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007586 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05307587
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007588 dpll = DPLL_VGA_MODE_DIS;
7589
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007590 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007591 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7592 } else {
7593 if (clock->p1 == 2)
7594 dpll |= PLL_P1_DIVIDE_BY_TWO;
7595 else
7596 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7597 if (clock->p2 == 4)
7598 dpll |= PLL_P2_DIVIDE_BY_4;
7599 }
7600
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007601 if (!IS_I830(dev) && intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO))
Daniel Vetter4a33e482013-07-06 12:52:05 +02007602 dpll |= DPLL_DVO_2X_MODE;
7603
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007604 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007605 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
7606 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7607 else
7608 dpll |= PLL_REF_INPUT_DREFCLK;
7609
7610 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007611 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007612}
7613
Daniel Vetter8a654f32013-06-01 17:16:22 +02007614static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007615{
7616 struct drm_device *dev = intel_crtc->base.dev;
7617 struct drm_i915_private *dev_priv = dev->dev_private;
7618 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007619 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Daniel Vetter8a654f32013-06-01 17:16:22 +02007620 struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007621 &intel_crtc->config->base.adjusted_mode;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02007622 uint32_t crtc_vtotal, crtc_vblank_end;
7623 int vsyncshift = 0;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007624
7625 /* We need to be careful not to changed the adjusted mode, for otherwise
7626 * the hw state checker will get angry at the mismatch. */
7627 crtc_vtotal = adjusted_mode->crtc_vtotal;
7628 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007629
Ville Syrjälä609aeac2014-03-28 23:29:30 +02007630 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007631 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007632 crtc_vtotal -= 1;
7633 crtc_vblank_end -= 1;
Ville Syrjälä609aeac2014-03-28 23:29:30 +02007634
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007635 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjälä609aeac2014-03-28 23:29:30 +02007636 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
7637 else
7638 vsyncshift = adjusted_mode->crtc_hsync_start -
7639 adjusted_mode->crtc_htotal / 2;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02007640 if (vsyncshift < 0)
7641 vsyncshift += adjusted_mode->crtc_htotal;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007642 }
7643
7644 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007645 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007646
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007647 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007648 (adjusted_mode->crtc_hdisplay - 1) |
7649 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007650 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007651 (adjusted_mode->crtc_hblank_start - 1) |
7652 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007653 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007654 (adjusted_mode->crtc_hsync_start - 1) |
7655 ((adjusted_mode->crtc_hsync_end - 1) << 16));
7656
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007657 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007658 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007659 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007660 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007661 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007662 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007663 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007664 (adjusted_mode->crtc_vsync_start - 1) |
7665 ((adjusted_mode->crtc_vsync_end - 1) << 16));
7666
Paulo Zanonib5e508d2012-10-24 11:34:43 -02007667 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
7668 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
7669 * documented on the DDI_FUNC_CTL register description, EDP Input Select
7670 * bits. */
7671 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
7672 (pipe == PIPE_B || pipe == PIPE_C))
7673 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
7674
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007675 /* pipesrc controls the size that is scaled from, which should
7676 * always be the user's requested size.
7677 */
7678 I915_WRITE(PIPESRC(pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007679 ((intel_crtc->config->pipe_src_w - 1) << 16) |
7680 (intel_crtc->config->pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007681}
7682
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007683static void intel_get_pipe_timings(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007684 struct intel_crtc_state *pipe_config)
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007685{
7686 struct drm_device *dev = crtc->base.dev;
7687 struct drm_i915_private *dev_priv = dev->dev_private;
7688 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
7689 uint32_t tmp;
7690
7691 tmp = I915_READ(HTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007692 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
7693 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007694 tmp = I915_READ(HBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007695 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
7696 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007697 tmp = I915_READ(HSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007698 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
7699 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007700
7701 tmp = I915_READ(VTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007702 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
7703 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007704 tmp = I915_READ(VBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007705 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
7706 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007707 tmp = I915_READ(VSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007708 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
7709 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007710
7711 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007712 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
7713 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
7714 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007715 }
7716
7717 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03007718 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
7719 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
7720
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007721 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
7722 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007723}
7724
Daniel Vetterf6a83282014-02-11 15:28:57 -08007725void intel_mode_from_pipe_config(struct drm_display_mode *mode,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007726 struct intel_crtc_state *pipe_config)
Jesse Barnesbabea612013-06-26 18:57:38 +03007727{
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007728 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
7729 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
7730 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
7731 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03007732
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007733 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
7734 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
7735 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
7736 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03007737
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007738 mode->flags = pipe_config->base.adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03007739
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007740 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
7741 mode->flags |= pipe_config->base.adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03007742}
7743
Daniel Vetter84b046f2013-02-19 18:48:54 +01007744static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
7745{
7746 struct drm_device *dev = intel_crtc->base.dev;
7747 struct drm_i915_private *dev_priv = dev->dev_private;
7748 uint32_t pipeconf;
7749
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02007750 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01007751
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03007752 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
7753 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
7754 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
Daniel Vetter67c72a12013-09-24 11:46:14 +02007755
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007756 if (intel_crtc->config->double_wide)
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03007757 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01007758
Daniel Vetterff9ce462013-04-24 14:57:17 +02007759 /* only g4x and later have fancy bpc/dither controls */
7760 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02007761 /* Bspec claims that we can't use dithering for 30bpp pipes. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007762 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
Daniel Vetterff9ce462013-04-24 14:57:17 +02007763 pipeconf |= PIPECONF_DITHER_EN |
7764 PIPECONF_DITHER_TYPE_SP;
7765
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007766 switch (intel_crtc->config->pipe_bpp) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02007767 case 18:
7768 pipeconf |= PIPECONF_6BPC;
7769 break;
7770 case 24:
7771 pipeconf |= PIPECONF_8BPC;
7772 break;
7773 case 30:
7774 pipeconf |= PIPECONF_10BPC;
7775 break;
7776 default:
7777 /* Case prevented by intel_choose_pipe_bpp_dither. */
7778 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01007779 }
7780 }
7781
7782 if (HAS_PIPE_CXSR(dev)) {
7783 if (intel_crtc->lowfreq_avail) {
7784 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
7785 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
7786 } else {
7787 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01007788 }
7789 }
7790
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007791 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02007792 if (INTEL_INFO(dev)->gen < 4 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007793 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02007794 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
7795 else
7796 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
7797 } else
Daniel Vetter84b046f2013-02-19 18:48:54 +01007798 pipeconf |= PIPECONF_PROGRESSIVE;
7799
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007800 if (IS_VALLEYVIEW(dev) && intel_crtc->config->limited_color_range)
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02007801 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03007802
Daniel Vetter84b046f2013-02-19 18:48:54 +01007803 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
7804 POSTING_READ(PIPECONF(intel_crtc->pipe));
7805}
7806
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007807static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
7808 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08007809{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007810 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08007811 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholtc751ce42010-03-25 11:48:48 -07007812 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07007813 intel_clock_t clock, reduced_clock;
Daniel Vettera16af722013-04-30 14:01:44 +02007814 bool ok, has_reduced_clock = false;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007815 bool is_lvds = false, is_dsi = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01007816 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08007817 const intel_limit_t *limit;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02007818 struct drm_atomic_state *state = crtc_state->base.state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03007819 struct drm_connector *connector;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02007820 struct drm_connector_state *connector_state;
7821 int i;
Jesse Barnes79e53942008-11-07 14:24:08 -08007822
Ander Conselvan de Oliveiradd3cd742015-05-15 13:34:29 +03007823 memset(&crtc_state->dpll_hw_state, 0,
7824 sizeof(crtc_state->dpll_hw_state));
7825
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03007826 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02007827 if (connector_state->crtc != &crtc->base)
7828 continue;
7829
7830 encoder = to_intel_encoder(connector_state->best_encoder);
7831
Chris Wilson5eddb702010-09-11 13:48:45 +01007832 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08007833 case INTEL_OUTPUT_LVDS:
7834 is_lvds = true;
7835 break;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007836 case INTEL_OUTPUT_DSI:
7837 is_dsi = true;
7838 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007839 default:
7840 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08007841 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05007842
Eric Anholtc751ce42010-03-25 11:48:48 -07007843 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08007844 }
7845
Jani Nikulaf2335332013-09-13 11:03:09 +03007846 if (is_dsi)
Daniel Vetter5b18e572014-04-24 23:55:06 +02007847 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007848
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007849 if (!crtc_state->clock_set) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007850 refclk = i9xx_get_refclk(crtc_state, num_connectors);
Jani Nikulaf2335332013-09-13 11:03:09 +03007851
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007852 /*
7853 * Returns a set of divisors for the desired target clock with
7854 * the given refclk, or FALSE. The returned values represent
7855 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
7856 * 2) / p1 / p2.
7857 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007858 limit = intel_limit(crtc_state, refclk);
7859 ok = dev_priv->display.find_dpll(limit, crtc_state,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007860 crtc_state->port_clock,
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007861 refclk, NULL, &clock);
Jani Nikulaf2335332013-09-13 11:03:09 +03007862 if (!ok) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007863 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7864 return -EINVAL;
7865 }
Eric Anholtf564048e2011-03-30 13:01:02 -07007866
Jani Nikulaf2335332013-09-13 11:03:09 +03007867 if (is_lvds && dev_priv->lvds_downclock_avail) {
7868 /*
7869 * Ensure we match the reduced clock's P to the target
7870 * clock. If the clocks don't match, we can't switch
7871 * the display clock by using the FP0/FP1. In such case
7872 * we will disable the LVDS downclock feature.
7873 */
7874 has_reduced_clock =
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007875 dev_priv->display.find_dpll(limit, crtc_state,
Jani Nikulaf2335332013-09-13 11:03:09 +03007876 dev_priv->lvds_downclock,
7877 refclk, &clock,
7878 &reduced_clock);
7879 }
7880 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007881 crtc_state->dpll.n = clock.n;
7882 crtc_state->dpll.m1 = clock.m1;
7883 crtc_state->dpll.m2 = clock.m2;
7884 crtc_state->dpll.p1 = clock.p1;
7885 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01007886 }
Eric Anholtf564048e2011-03-30 13:01:02 -07007887
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007888 if (IS_GEN2(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007889 i8xx_update_pll(crtc, crtc_state,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05307890 has_reduced_clock ? &reduced_clock : NULL,
7891 num_connectors);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007892 } else if (IS_CHERRYVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007893 chv_update_pll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007894 } else if (IS_VALLEYVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007895 vlv_update_pll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007896 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007897 i9xx_update_pll(crtc, crtc_state,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007898 has_reduced_clock ? &reduced_clock : NULL,
Robin Schroereba905b2014-05-18 02:24:50 +02007899 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007900 }
Eric Anholtf564048e2011-03-30 13:01:02 -07007901
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007902 return 0;
Eric Anholtf564048e2011-03-30 13:01:02 -07007903}
7904
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007905static void i9xx_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007906 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007907{
7908 struct drm_device *dev = crtc->base.dev;
7909 struct drm_i915_private *dev_priv = dev->dev_private;
7910 uint32_t tmp;
7911
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02007912 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
7913 return;
7914
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007915 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02007916 if (!(tmp & PFIT_ENABLE))
7917 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007918
Daniel Vetter06922822013-07-11 13:35:40 +02007919 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007920 if (INTEL_INFO(dev)->gen < 4) {
7921 if (crtc->pipe != PIPE_B)
7922 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007923 } else {
7924 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
7925 return;
7926 }
7927
Daniel Vetter06922822013-07-11 13:35:40 +02007928 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007929 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
7930 if (INTEL_INFO(dev)->gen < 5)
7931 pipe_config->gmch_pfit.lvds_border_bits =
7932 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
7933}
7934
Jesse Barnesacbec812013-09-20 11:29:32 -07007935static void vlv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007936 struct intel_crtc_state *pipe_config)
Jesse Barnesacbec812013-09-20 11:29:32 -07007937{
7938 struct drm_device *dev = crtc->base.dev;
7939 struct drm_i915_private *dev_priv = dev->dev_private;
7940 int pipe = pipe_config->cpu_transcoder;
7941 intel_clock_t clock;
7942 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07007943 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07007944
Shobhit Kumarf573de52014-07-30 20:32:37 +05307945 /* In case of MIPI DPLL will not even be used */
7946 if (!(pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE))
7947 return;
7948
Ville Syrjäläa5805162015-05-26 20:42:30 +03007949 mutex_lock(&dev_priv->sb_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007950 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
Ville Syrjäläa5805162015-05-26 20:42:30 +03007951 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnesacbec812013-09-20 11:29:32 -07007952
7953 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
7954 clock.m2 = mdiv & DPIO_M2DIV_MASK;
7955 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
7956 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
7957 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
7958
Ville Syrjäläf6466282013-10-14 14:50:31 +03007959 vlv_clock(refclk, &clock);
Jesse Barnesacbec812013-09-20 11:29:32 -07007960
Ville Syrjäläf6466282013-10-14 14:50:31 +03007961 /* clock.dot is the fast clock */
7962 pipe_config->port_clock = clock.dot / 5;
Jesse Barnesacbec812013-09-20 11:29:32 -07007963}
7964
Damien Lespiau5724dbd2015-01-20 12:51:52 +00007965static void
7966i9xx_get_initial_plane_config(struct intel_crtc *crtc,
7967 struct intel_initial_plane_config *plane_config)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007968{
7969 struct drm_device *dev = crtc->base.dev;
7970 struct drm_i915_private *dev_priv = dev->dev_private;
7971 u32 val, base, offset;
7972 int pipe = crtc->pipe, plane = crtc->plane;
7973 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00007974 unsigned int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007975 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00007976 struct intel_framebuffer *intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007977
Damien Lespiau42a7b082015-02-05 19:35:13 +00007978 val = I915_READ(DSPCNTR(plane));
7979 if (!(val & DISPLAY_PLANE_ENABLE))
7980 return;
7981
Damien Lespiaud9806c92015-01-21 14:07:19 +00007982 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00007983 if (!intel_fb) {
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007984 DRM_DEBUG_KMS("failed to alloc fb\n");
7985 return;
7986 }
7987
Damien Lespiau1b842c82015-01-21 13:50:54 +00007988 fb = &intel_fb->base;
7989
Daniel Vetter18c52472015-02-10 17:16:09 +00007990 if (INTEL_INFO(dev)->gen >= 4) {
7991 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00007992 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00007993 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
7994 }
7995 }
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007996
7997 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00007998 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007999 fb->pixel_format = fourcc;
8000 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008001
8002 if (INTEL_INFO(dev)->gen >= 4) {
Damien Lespiau49af4492015-01-20 12:51:44 +00008003 if (plane_config->tiling)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008004 offset = I915_READ(DSPTILEOFF(plane));
8005 else
8006 offset = I915_READ(DSPLINOFF(plane));
8007 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
8008 } else {
8009 base = I915_READ(DSPADDR(plane));
8010 }
8011 plane_config->base = base;
8012
8013 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008014 fb->width = ((val >> 16) & 0xfff) + 1;
8015 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008016
8017 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008018 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008019
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008020 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00008021 fb->pixel_format,
8022 fb->modifier[0]);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008023
Daniel Vetterf37b5c22015-02-10 23:12:27 +01008024 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008025
Damien Lespiau2844a922015-01-20 12:51:48 +00008026 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
8027 pipe_name(pipe), plane, fb->width, fb->height,
8028 fb->bits_per_pixel, base, fb->pitches[0],
8029 plane_config->size);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008030
Damien Lespiau2d140302015-02-05 17:22:18 +00008031 plane_config->fb = intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008032}
8033
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008034static void chv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008035 struct intel_crtc_state *pipe_config)
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008036{
8037 struct drm_device *dev = crtc->base.dev;
8038 struct drm_i915_private *dev_priv = dev->dev_private;
8039 int pipe = pipe_config->cpu_transcoder;
8040 enum dpio_channel port = vlv_pipe_to_channel(pipe);
8041 intel_clock_t clock;
8042 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2;
8043 int refclk = 100000;
8044
Ville Syrjäläa5805162015-05-26 20:42:30 +03008045 mutex_lock(&dev_priv->sb_lock);
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008046 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
8047 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
8048 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
8049 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
Ville Syrjäläa5805162015-05-26 20:42:30 +03008050 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008051
8052 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
8053 clock.m2 = ((pll_dw0 & 0xff) << 22) | (pll_dw2 & 0x3fffff);
8054 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
8055 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
8056 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
8057
8058 chv_clock(refclk, &clock);
8059
8060 /* clock.dot is the fast clock */
8061 pipe_config->port_clock = clock.dot / 5;
8062}
8063
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008064static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008065 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008066{
8067 struct drm_device *dev = crtc->base.dev;
8068 struct drm_i915_private *dev_priv = dev->dev_private;
8069 uint32_t tmp;
8070
Daniel Vetterf458ebb2014-09-30 10:56:39 +02008071 if (!intel_display_power_is_enabled(dev_priv,
8072 POWER_DOMAIN_PIPE(crtc->pipe)))
Imre Deakb5482bd2014-03-05 16:20:55 +02008073 return false;
8074
Daniel Vettere143a212013-07-04 12:01:15 +02008075 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008076 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02008077
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008078 tmp = I915_READ(PIPECONF(crtc->pipe));
8079 if (!(tmp & PIPECONF_ENABLE))
8080 return false;
8081
Ville Syrjälä42571ae2013-09-06 23:29:00 +03008082 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
8083 switch (tmp & PIPECONF_BPC_MASK) {
8084 case PIPECONF_6BPC:
8085 pipe_config->pipe_bpp = 18;
8086 break;
8087 case PIPECONF_8BPC:
8088 pipe_config->pipe_bpp = 24;
8089 break;
8090 case PIPECONF_10BPC:
8091 pipe_config->pipe_bpp = 30;
8092 break;
8093 default:
8094 break;
8095 }
8096 }
8097
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02008098 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
8099 pipe_config->limited_color_range = true;
8100
Ville Syrjälä282740f2013-09-04 18:30:03 +03008101 if (INTEL_INFO(dev)->gen < 4)
8102 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
8103
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008104 intel_get_pipe_timings(crtc, pipe_config);
8105
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008106 i9xx_get_pfit_config(crtc, pipe_config);
8107
Daniel Vetter6c49f242013-06-06 12:45:25 +02008108 if (INTEL_INFO(dev)->gen >= 4) {
8109 tmp = I915_READ(DPLL_MD(crtc->pipe));
8110 pipe_config->pixel_multiplier =
8111 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
8112 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008113 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02008114 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
8115 tmp = I915_READ(DPLL(crtc->pipe));
8116 pipe_config->pixel_multiplier =
8117 ((tmp & SDVO_MULTIPLIER_MASK)
8118 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
8119 } else {
8120 /* Note that on i915G/GM the pixel multiplier is in the sdvo
8121 * port and will be fixed up in the encoder->get_config
8122 * function. */
8123 pipe_config->pixel_multiplier = 1;
8124 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008125 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
8126 if (!IS_VALLEYVIEW(dev)) {
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03008127 /*
8128 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
8129 * on 830. Filter it out here so that we don't
8130 * report errors due to that.
8131 */
8132 if (IS_I830(dev))
8133 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
8134
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008135 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
8136 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03008137 } else {
8138 /* Mask out read-only status bits. */
8139 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
8140 DPLL_PORTC_READY_MASK |
8141 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008142 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02008143
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008144 if (IS_CHERRYVIEW(dev))
8145 chv_crtc_clock_get(crtc, pipe_config);
8146 else if (IS_VALLEYVIEW(dev))
Jesse Barnesacbec812013-09-20 11:29:32 -07008147 vlv_crtc_clock_get(crtc, pipe_config);
8148 else
8149 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03008150
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008151 return true;
8152}
8153
Paulo Zanonidde86e22012-12-01 12:04:25 -02008154static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07008155{
8156 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008157 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008158 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008159 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07008160 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07008161 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07008162 bool has_ck505 = false;
8163 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008164
8165 /* We need to take the global config into account */
Damien Lespiaub2784e12014-08-05 11:29:37 +01008166 for_each_intel_encoder(dev, encoder) {
Keith Packard199e5d72011-09-22 12:01:57 -07008167 switch (encoder->type) {
8168 case INTEL_OUTPUT_LVDS:
8169 has_panel = true;
8170 has_lvds = true;
8171 break;
8172 case INTEL_OUTPUT_EDP:
8173 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03008174 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07008175 has_cpu_edp = true;
8176 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008177 default:
8178 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008179 }
8180 }
8181
Keith Packard99eb6a02011-09-26 14:29:12 -07008182 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03008183 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07008184 can_ssc = has_ck505;
8185 } else {
8186 has_ck505 = false;
8187 can_ssc = true;
8188 }
8189
Imre Deak2de69052013-05-08 13:14:04 +03008190 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
8191 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008192
8193 /* Ironlake: try to setup display ref clock before DPLL
8194 * enabling. This is only under driver's control after
8195 * PCH B stepping, previous chipset stepping should be
8196 * ignoring this setting.
8197 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008198 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008199
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008200 /* As we must carefully and slowly disable/enable each source in turn,
8201 * compute the final state we want first and check if we need to
8202 * make any changes at all.
8203 */
8204 final = val;
8205 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07008206 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008207 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07008208 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008209 final |= DREF_NONSPREAD_SOURCE_ENABLE;
8210
8211 final &= ~DREF_SSC_SOURCE_MASK;
8212 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
8213 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008214
Keith Packard199e5d72011-09-22 12:01:57 -07008215 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008216 final |= DREF_SSC_SOURCE_ENABLE;
8217
8218 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8219 final |= DREF_SSC1_ENABLE;
8220
8221 if (has_cpu_edp) {
8222 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8223 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
8224 else
8225 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
8226 } else
8227 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
8228 } else {
8229 final |= DREF_SSC_SOURCE_DISABLE;
8230 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
8231 }
8232
8233 if (final == val)
8234 return;
8235
8236 /* Always enable nonspread source */
8237 val &= ~DREF_NONSPREAD_SOURCE_MASK;
8238
8239 if (has_ck505)
8240 val |= DREF_NONSPREAD_CK505_ENABLE;
8241 else
8242 val |= DREF_NONSPREAD_SOURCE_ENABLE;
8243
8244 if (has_panel) {
8245 val &= ~DREF_SSC_SOURCE_MASK;
8246 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008247
Keith Packard199e5d72011-09-22 12:01:57 -07008248 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07008249 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07008250 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008251 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02008252 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008253 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008254
8255 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008256 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07008257 POSTING_READ(PCH_DREF_CONTROL);
8258 udelay(200);
8259
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008260 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008261
8262 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07008263 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07008264 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07008265 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008266 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Robin Schroereba905b2014-05-18 02:24:50 +02008267 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008268 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07008269 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008270 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008271
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008272 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07008273 POSTING_READ(PCH_DREF_CONTROL);
8274 udelay(200);
8275 } else {
8276 DRM_DEBUG_KMS("Disabling SSC entirely\n");
8277
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008278 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07008279
8280 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008281 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008282
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008283 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07008284 POSTING_READ(PCH_DREF_CONTROL);
8285 udelay(200);
8286
8287 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008288 val &= ~DREF_SSC_SOURCE_MASK;
8289 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008290
8291 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008292 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008293
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008294 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008295 POSTING_READ(PCH_DREF_CONTROL);
8296 udelay(200);
8297 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008298
8299 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008300}
8301
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008302static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02008303{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008304 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02008305
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008306 tmp = I915_READ(SOUTH_CHICKEN2);
8307 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
8308 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008309
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008310 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
8311 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
8312 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02008313
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008314 tmp = I915_READ(SOUTH_CHICKEN2);
8315 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
8316 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008317
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008318 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
8319 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
8320 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008321}
8322
8323/* WaMPhyProgramming:hsw */
8324static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
8325{
8326 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02008327
8328 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
8329 tmp &= ~(0xFF << 24);
8330 tmp |= (0x12 << 24);
8331 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
8332
Paulo Zanonidde86e22012-12-01 12:04:25 -02008333 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
8334 tmp |= (1 << 11);
8335 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
8336
8337 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
8338 tmp |= (1 << 11);
8339 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
8340
Paulo Zanonidde86e22012-12-01 12:04:25 -02008341 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
8342 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
8343 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
8344
8345 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
8346 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
8347 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
8348
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008349 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
8350 tmp &= ~(7 << 13);
8351 tmp |= (5 << 13);
8352 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008353
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008354 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
8355 tmp &= ~(7 << 13);
8356 tmp |= (5 << 13);
8357 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008358
8359 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
8360 tmp &= ~0xFF;
8361 tmp |= 0x1C;
8362 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
8363
8364 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
8365 tmp &= ~0xFF;
8366 tmp |= 0x1C;
8367 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
8368
8369 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
8370 tmp &= ~(0xFF << 16);
8371 tmp |= (0x1C << 16);
8372 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
8373
8374 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
8375 tmp &= ~(0xFF << 16);
8376 tmp |= (0x1C << 16);
8377 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
8378
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008379 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
8380 tmp |= (1 << 27);
8381 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008382
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008383 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
8384 tmp |= (1 << 27);
8385 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008386
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008387 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
8388 tmp &= ~(0xF << 28);
8389 tmp |= (4 << 28);
8390 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008391
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008392 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
8393 tmp &= ~(0xF << 28);
8394 tmp |= (4 << 28);
8395 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008396}
8397
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008398/* Implements 3 different sequences from BSpec chapter "Display iCLK
8399 * Programming" based on the parameters passed:
8400 * - Sequence to enable CLKOUT_DP
8401 * - Sequence to enable CLKOUT_DP without spread
8402 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
8403 */
8404static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
8405 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008406{
8407 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008408 uint32_t reg, tmp;
8409
8410 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
8411 with_spread = true;
8412 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
8413 with_fdi, "LP PCH doesn't have FDI\n"))
8414 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008415
Ville Syrjäläa5805162015-05-26 20:42:30 +03008416 mutex_lock(&dev_priv->sb_lock);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008417
8418 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8419 tmp &= ~SBI_SSCCTL_DISABLE;
8420 tmp |= SBI_SSCCTL_PATHALT;
8421 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8422
8423 udelay(24);
8424
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008425 if (with_spread) {
8426 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8427 tmp &= ~SBI_SSCCTL_PATHALT;
8428 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008429
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008430 if (with_fdi) {
8431 lpt_reset_fdi_mphy(dev_priv);
8432 lpt_program_fdi_mphy(dev_priv);
8433 }
8434 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02008435
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008436 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
8437 SBI_GEN0 : SBI_DBUFF0;
8438 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8439 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8440 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01008441
Ville Syrjäläa5805162015-05-26 20:42:30 +03008442 mutex_unlock(&dev_priv->sb_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008443}
8444
Paulo Zanoni47701c32013-07-23 11:19:25 -03008445/* Sequence to disable CLKOUT_DP */
8446static void lpt_disable_clkout_dp(struct drm_device *dev)
8447{
8448 struct drm_i915_private *dev_priv = dev->dev_private;
8449 uint32_t reg, tmp;
8450
Ville Syrjäläa5805162015-05-26 20:42:30 +03008451 mutex_lock(&dev_priv->sb_lock);
Paulo Zanoni47701c32013-07-23 11:19:25 -03008452
8453 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
8454 SBI_GEN0 : SBI_DBUFF0;
8455 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8456 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8457 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
8458
8459 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8460 if (!(tmp & SBI_SSCCTL_DISABLE)) {
8461 if (!(tmp & SBI_SSCCTL_PATHALT)) {
8462 tmp |= SBI_SSCCTL_PATHALT;
8463 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8464 udelay(32);
8465 }
8466 tmp |= SBI_SSCCTL_DISABLE;
8467 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8468 }
8469
Ville Syrjäläa5805162015-05-26 20:42:30 +03008470 mutex_unlock(&dev_priv->sb_lock);
Paulo Zanoni47701c32013-07-23 11:19:25 -03008471}
8472
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008473static void lpt_init_pch_refclk(struct drm_device *dev)
8474{
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008475 struct intel_encoder *encoder;
8476 bool has_vga = false;
8477
Damien Lespiaub2784e12014-08-05 11:29:37 +01008478 for_each_intel_encoder(dev, encoder) {
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008479 switch (encoder->type) {
8480 case INTEL_OUTPUT_ANALOG:
8481 has_vga = true;
8482 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008483 default:
8484 break;
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008485 }
8486 }
8487
Paulo Zanoni47701c32013-07-23 11:19:25 -03008488 if (has_vga)
8489 lpt_enable_clkout_dp(dev, true, true);
8490 else
8491 lpt_disable_clkout_dp(dev);
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008492}
8493
Paulo Zanonidde86e22012-12-01 12:04:25 -02008494/*
8495 * Initialize reference clocks when the driver loads
8496 */
8497void intel_init_pch_refclk(struct drm_device *dev)
8498{
8499 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
8500 ironlake_init_pch_refclk(dev);
8501 else if (HAS_PCH_LPT(dev))
8502 lpt_init_pch_refclk(dev);
8503}
8504
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008505static int ironlake_get_refclk(struct intel_crtc_state *crtc_state)
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008506{
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008507 struct drm_device *dev = crtc_state->base.crtc->dev;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008508 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008509 struct drm_atomic_state *state = crtc_state->base.state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008510 struct drm_connector *connector;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008511 struct drm_connector_state *connector_state;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008512 struct intel_encoder *encoder;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008513 int num_connectors = 0, i;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008514 bool is_lvds = false;
8515
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008516 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008517 if (connector_state->crtc != crtc_state->base.crtc)
8518 continue;
8519
8520 encoder = to_intel_encoder(connector_state->best_encoder);
8521
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008522 switch (encoder->type) {
8523 case INTEL_OUTPUT_LVDS:
8524 is_lvds = true;
8525 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008526 default:
8527 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008528 }
8529 num_connectors++;
8530 }
8531
8532 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008533 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03008534 dev_priv->vbt.lvds_ssc_freq);
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008535 return dev_priv->vbt.lvds_ssc_freq;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008536 }
8537
8538 return 120000;
8539}
8540
Daniel Vetter6ff93602013-04-19 11:24:36 +02008541static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03008542{
8543 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
8544 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8545 int pipe = intel_crtc->pipe;
8546 uint32_t val;
8547
Daniel Vetter78114072013-06-13 00:54:57 +02008548 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03008549
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008550 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03008551 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008552 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008553 break;
8554 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008555 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008556 break;
8557 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008558 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008559 break;
8560 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008561 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008562 break;
8563 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03008564 /* Case prevented by intel_choose_pipe_bpp_dither. */
8565 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03008566 }
8567
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008568 if (intel_crtc->config->dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03008569 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8570
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008571 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03008572 val |= PIPECONF_INTERLACED_ILK;
8573 else
8574 val |= PIPECONF_PROGRESSIVE;
8575
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008576 if (intel_crtc->config->limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02008577 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02008578
Paulo Zanonic8203562012-09-12 10:06:29 -03008579 I915_WRITE(PIPECONF(pipe), val);
8580 POSTING_READ(PIPECONF(pipe));
8581}
8582
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008583/*
8584 * Set up the pipe CSC unit.
8585 *
8586 * Currently only full range RGB to limited range RGB conversion
8587 * is supported, but eventually this should handle various
8588 * RGB<->YCbCr scenarios as well.
8589 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01008590static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008591{
8592 struct drm_device *dev = crtc->dev;
8593 struct drm_i915_private *dev_priv = dev->dev_private;
8594 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8595 int pipe = intel_crtc->pipe;
8596 uint16_t coeff = 0x7800; /* 1.0 */
8597
8598 /*
8599 * TODO: Check what kind of values actually come out of the pipe
8600 * with these coeff/postoff values and adjust to get the best
8601 * accuracy. Perhaps we even need to take the bpc value into
8602 * consideration.
8603 */
8604
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008605 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008606 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
8607
8608 /*
8609 * GY/GU and RY/RU should be the other way around according
8610 * to BSpec, but reality doesn't agree. Just set them up in
8611 * a way that results in the correct picture.
8612 */
8613 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
8614 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
8615
8616 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
8617 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
8618
8619 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
8620 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
8621
8622 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
8623 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
8624 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
8625
8626 if (INTEL_INFO(dev)->gen > 6) {
8627 uint16_t postoff = 0;
8628
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008629 if (intel_crtc->config->limited_color_range)
Ville Syrjälä32cf0cb2013-11-28 22:10:38 +02008630 postoff = (16 * (1 << 12) / 255) & 0x1fff;
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008631
8632 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
8633 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
8634 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
8635
8636 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
8637 } else {
8638 uint32_t mode = CSC_MODE_YUV_TO_RGB;
8639
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008640 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008641 mode |= CSC_BLACK_SCREEN_OFFSET;
8642
8643 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
8644 }
8645}
8646
Daniel Vetter6ff93602013-04-19 11:24:36 +02008647static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008648{
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008649 struct drm_device *dev = crtc->dev;
8650 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008651 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008652 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008653 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008654 uint32_t val;
8655
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02008656 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008657
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008658 if (IS_HASWELL(dev) && intel_crtc->config->dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008659 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8660
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008661 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008662 val |= PIPECONF_INTERLACED_ILK;
8663 else
8664 val |= PIPECONF_PROGRESSIVE;
8665
Paulo Zanoni702e7a52012-10-23 18:29:59 -02008666 I915_WRITE(PIPECONF(cpu_transcoder), val);
8667 POSTING_READ(PIPECONF(cpu_transcoder));
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02008668
8669 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
8670 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008671
Satheeshakrishna M3cdf1222014-04-08 15:46:53 +05308672 if (IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008673 val = 0;
8674
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008675 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008676 case 18:
8677 val |= PIPEMISC_DITHER_6_BPC;
8678 break;
8679 case 24:
8680 val |= PIPEMISC_DITHER_8_BPC;
8681 break;
8682 case 30:
8683 val |= PIPEMISC_DITHER_10_BPC;
8684 break;
8685 case 36:
8686 val |= PIPEMISC_DITHER_12_BPC;
8687 break;
8688 default:
8689 /* Case prevented by pipe_config_set_bpp. */
8690 BUG();
8691 }
8692
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008693 if (intel_crtc->config->dither)
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008694 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
8695
8696 I915_WRITE(PIPEMISC(pipe), val);
8697 }
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008698}
8699
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008700static bool ironlake_compute_clocks(struct drm_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008701 struct intel_crtc_state *crtc_state,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008702 intel_clock_t *clock,
8703 bool *has_reduced_clock,
8704 intel_clock_t *reduced_clock)
8705{
8706 struct drm_device *dev = crtc->dev;
8707 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008708 int refclk;
8709 const intel_limit_t *limit;
Daniel Vettera16af722013-04-30 14:01:44 +02008710 bool ret, is_lvds = false;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008711
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02008712 is_lvds = intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008713
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008714 refclk = ironlake_get_refclk(crtc_state);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008715
8716 /*
8717 * Returns a set of divisors for the desired target clock with the given
8718 * refclk, or FALSE. The returned values represent the clock equation:
8719 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
8720 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02008721 limit = intel_limit(crtc_state, refclk);
8722 ret = dev_priv->display.find_dpll(limit, crtc_state,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008723 crtc_state->port_clock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02008724 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008725 if (!ret)
8726 return false;
8727
8728 if (is_lvds && dev_priv->lvds_downclock_avail) {
8729 /*
8730 * Ensure we match the reduced clock's P to the target clock.
8731 * If the clocks don't match, we can't switch the display clock
8732 * by using the FP0/FP1. In such case we will disable the LVDS
8733 * downclock feature.
8734 */
Daniel Vetteree9300b2013-06-03 22:40:22 +02008735 *has_reduced_clock =
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02008736 dev_priv->display.find_dpll(limit, crtc_state,
Daniel Vetteree9300b2013-06-03 22:40:22 +02008737 dev_priv->lvds_downclock,
8738 refclk, clock,
8739 reduced_clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008740 }
8741
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008742 return true;
8743}
8744
Paulo Zanonid4b19312012-11-29 11:29:32 -02008745int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
8746{
8747 /*
8748 * Account for spread spectrum to avoid
8749 * oversubscribing the link. Max center spread
8750 * is 2.5%; use 5% for safety's sake.
8751 */
8752 u32 bps = target_clock * bpp * 21 / 20;
Ville Syrjälä619d4d02014-02-27 14:23:14 +02008753 return DIV_ROUND_UP(bps, link_bw * 8);
Paulo Zanonid4b19312012-11-29 11:29:32 -02008754}
8755
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008756static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02008757{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008758 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03008759}
8760
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008761static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008762 struct intel_crtc_state *crtc_state,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008763 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02008764 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008765{
8766 struct drm_crtc *crtc = &intel_crtc->base;
8767 struct drm_device *dev = crtc->dev;
8768 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008769 struct drm_atomic_state *state = crtc_state->base.state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008770 struct drm_connector *connector;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008771 struct drm_connector_state *connector_state;
8772 struct intel_encoder *encoder;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008773 uint32_t dpll;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008774 int factor, num_connectors = 0, i;
Daniel Vetter09ede542013-04-30 14:01:45 +02008775 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008776
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008777 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008778 if (connector_state->crtc != crtc_state->base.crtc)
8779 continue;
8780
8781 encoder = to_intel_encoder(connector_state->best_encoder);
8782
8783 switch (encoder->type) {
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008784 case INTEL_OUTPUT_LVDS:
8785 is_lvds = true;
8786 break;
8787 case INTEL_OUTPUT_SDVO:
8788 case INTEL_OUTPUT_HDMI:
8789 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008790 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008791 default:
8792 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008793 }
8794
8795 num_connectors++;
8796 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008797
Chris Wilsonc1858122010-12-03 21:35:48 +00008798 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07008799 factor = 21;
8800 if (is_lvds) {
8801 if ((intel_panel_use_ssc(dev_priv) &&
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008802 dev_priv->vbt.lvds_ssc_freq == 100000) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02008803 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07008804 factor = 25;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008805 } else if (crtc_state->sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07008806 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00008807
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008808 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02008809 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00008810
Daniel Vetter9a7c7892013-04-04 22:20:34 +02008811 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
8812 *fp2 |= FP_CB_TUNE;
8813
Chris Wilson5eddb702010-09-11 13:48:45 +01008814 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08008815
Eric Anholta07d6782011-03-30 13:01:08 -07008816 if (is_lvds)
8817 dpll |= DPLLB_MODE_LVDS;
8818 else
8819 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02008820
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008821 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02008822 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02008823
8824 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02008825 dpll |= DPLL_SDVO_HIGH_SPEED;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008826 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02008827 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08008828
Eric Anholta07d6782011-03-30 13:01:08 -07008829 /* compute bitmask from p1 value */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008830 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07008831 /* also FPA1 */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008832 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07008833
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008834 switch (crtc_state->dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07008835 case 5:
8836 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
8837 break;
8838 case 7:
8839 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
8840 break;
8841 case 10:
8842 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
8843 break;
8844 case 14:
8845 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
8846 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08008847 }
8848
Daniel Vetterb4c09f32013-04-30 14:01:42 +02008849 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05008850 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08008851 else
8852 dpll |= PLL_REF_INPUT_DREFCLK;
8853
Daniel Vetter959e16d2013-06-05 13:34:21 +02008854 return dpll | DPLL_VCO_ENABLE;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008855}
8856
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008857static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
8858 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08008859{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008860 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08008861 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02008862 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03008863 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01008864 bool is_lvds = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02008865 struct intel_shared_dpll *pll;
Jesse Barnes79e53942008-11-07 14:24:08 -08008866
Ander Conselvan de Oliveiradd3cd742015-05-15 13:34:29 +03008867 memset(&crtc_state->dpll_hw_state, 0,
8868 sizeof(crtc_state->dpll_hw_state));
8869
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03008870 is_lvds = intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS);
Jesse Barnes79e53942008-11-07 14:24:08 -08008871
Paulo Zanoni5dc52982012-10-05 12:05:56 -03008872 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
8873 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
8874
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008875 ok = ironlake_compute_clocks(&crtc->base, crtc_state, &clock,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008876 &has_reduced_clock, &reduced_clock);
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008877 if (!ok && !crtc_state->clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008878 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8879 return -EINVAL;
8880 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01008881 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008882 if (!crtc_state->clock_set) {
8883 crtc_state->dpll.n = clock.n;
8884 crtc_state->dpll.m1 = clock.m1;
8885 crtc_state->dpll.m2 = clock.m2;
8886 crtc_state->dpll.p1 = clock.p1;
8887 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01008888 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008889
Paulo Zanoni5dc52982012-10-05 12:05:56 -03008890 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008891 if (crtc_state->has_pch_encoder) {
8892 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02008893 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008894 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02008895
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008896 dpll = ironlake_compute_dpll(crtc, crtc_state,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02008897 &fp, &reduced_clock,
8898 has_reduced_clock ? &fp2 : NULL);
8899
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008900 crtc_state->dpll_hw_state.dpll = dpll;
8901 crtc_state->dpll_hw_state.fp0 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02008902 if (has_reduced_clock)
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008903 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetter66e985c2013-06-05 13:34:20 +02008904 else
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008905 crtc_state->dpll_hw_state.fp1 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02008906
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008907 pll = intel_get_shared_dpll(crtc, crtc_state);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01008908 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03008909 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008910 pipe_name(crtc->pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07008911 return -EINVAL;
8912 }
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +02008913 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008914
Rodrigo Viviab585de2015-03-24 12:40:09 -07008915 if (is_lvds && has_reduced_clock)
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008916 crtc->lowfreq_avail = true;
Daniel Vetterbcd644e2013-06-05 13:34:22 +02008917 else
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008918 crtc->lowfreq_avail = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02008919
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02008920 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008921}
8922
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008923static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
8924 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02008925{
8926 struct drm_device *dev = crtc->base.dev;
8927 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008928 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02008929
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008930 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
8931 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
8932 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
8933 & ~TU_SIZE_MASK;
8934 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
8935 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
8936 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
8937}
8938
8939static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
8940 enum transcoder transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008941 struct intel_link_m_n *m_n,
8942 struct intel_link_m_n *m2_n2)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008943{
8944 struct drm_device *dev = crtc->base.dev;
8945 struct drm_i915_private *dev_priv = dev->dev_private;
8946 enum pipe pipe = crtc->pipe;
8947
8948 if (INTEL_INFO(dev)->gen >= 5) {
8949 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
8950 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
8951 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
8952 & ~TU_SIZE_MASK;
8953 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
8954 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
8955 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008956 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
8957 * gen < 8) and if DRRS is supported (to make sure the
8958 * registers are not unnecessarily read).
8959 */
8960 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008961 crtc->config->has_drrs) {
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008962 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
8963 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
8964 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
8965 & ~TU_SIZE_MASK;
8966 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
8967 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
8968 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
8969 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008970 } else {
8971 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
8972 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
8973 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
8974 & ~TU_SIZE_MASK;
8975 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
8976 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
8977 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
8978 }
8979}
8980
8981void intel_dp_get_m_n(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008982 struct intel_crtc_state *pipe_config)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008983{
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02008984 if (pipe_config->has_pch_encoder)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008985 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
8986 else
8987 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008988 &pipe_config->dp_m_n,
8989 &pipe_config->dp_m2_n2);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008990}
8991
Daniel Vetter72419202013-04-04 13:28:53 +02008992static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008993 struct intel_crtc_state *pipe_config)
Daniel Vetter72419202013-04-04 13:28:53 +02008994{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008995 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008996 &pipe_config->fdi_m_n, NULL);
Daniel Vetter72419202013-04-04 13:28:53 +02008997}
8998
Jesse Barnesbd2e2442014-11-13 17:51:47 +00008999static void skylake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009000 struct intel_crtc_state *pipe_config)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009001{
9002 struct drm_device *dev = crtc->base.dev;
9003 struct drm_i915_private *dev_priv = dev->dev_private;
Chandra Kondurua1b22782015-04-07 15:28:45 -07009004 struct intel_crtc_scaler_state *scaler_state = &pipe_config->scaler_state;
9005 uint32_t ps_ctrl = 0;
9006 int id = -1;
9007 int i;
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009008
Chandra Kondurua1b22782015-04-07 15:28:45 -07009009 /* find scaler attached to this pipe */
9010 for (i = 0; i < crtc->num_scalers; i++) {
9011 ps_ctrl = I915_READ(SKL_PS_CTRL(crtc->pipe, i));
9012 if (ps_ctrl & PS_SCALER_EN && !(ps_ctrl & PS_PLANE_SEL_MASK)) {
9013 id = i;
9014 pipe_config->pch_pfit.enabled = true;
9015 pipe_config->pch_pfit.pos = I915_READ(SKL_PS_WIN_POS(crtc->pipe, i));
9016 pipe_config->pch_pfit.size = I915_READ(SKL_PS_WIN_SZ(crtc->pipe, i));
9017 break;
9018 }
9019 }
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009020
Chandra Kondurua1b22782015-04-07 15:28:45 -07009021 scaler_state->scaler_id = id;
9022 if (id >= 0) {
9023 scaler_state->scaler_users |= (1 << SKL_CRTC_INDEX);
9024 } else {
9025 scaler_state->scaler_users &= ~(1 << SKL_CRTC_INDEX);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009026 }
9027}
9028
Damien Lespiau5724dbd2015-01-20 12:51:52 +00009029static void
9030skylake_get_initial_plane_config(struct intel_crtc *crtc,
9031 struct intel_initial_plane_config *plane_config)
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009032{
9033 struct drm_device *dev = crtc->base.dev;
9034 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau40f46282015-02-27 11:15:21 +00009035 u32 val, base, offset, stride_mult, tiling;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009036 int pipe = crtc->pipe;
9037 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00009038 unsigned int aligned_height;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009039 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00009040 struct intel_framebuffer *intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009041
Damien Lespiaud9806c92015-01-21 14:07:19 +00009042 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00009043 if (!intel_fb) {
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009044 DRM_DEBUG_KMS("failed to alloc fb\n");
9045 return;
9046 }
9047
Damien Lespiau1b842c82015-01-21 13:50:54 +00009048 fb = &intel_fb->base;
9049
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009050 val = I915_READ(PLANE_CTL(pipe, 0));
Damien Lespiau42a7b082015-02-05 19:35:13 +00009051 if (!(val & PLANE_CTL_ENABLE))
9052 goto error;
9053
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009054 pixel_format = val & PLANE_CTL_FORMAT_MASK;
9055 fourcc = skl_format_to_fourcc(pixel_format,
9056 val & PLANE_CTL_ORDER_RGBX,
9057 val & PLANE_CTL_ALPHA_MASK);
9058 fb->pixel_format = fourcc;
9059 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
9060
Damien Lespiau40f46282015-02-27 11:15:21 +00009061 tiling = val & PLANE_CTL_TILED_MASK;
9062 switch (tiling) {
9063 case PLANE_CTL_TILED_LINEAR:
9064 fb->modifier[0] = DRM_FORMAT_MOD_NONE;
9065 break;
9066 case PLANE_CTL_TILED_X:
9067 plane_config->tiling = I915_TILING_X;
9068 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9069 break;
9070 case PLANE_CTL_TILED_Y:
9071 fb->modifier[0] = I915_FORMAT_MOD_Y_TILED;
9072 break;
9073 case PLANE_CTL_TILED_YF:
9074 fb->modifier[0] = I915_FORMAT_MOD_Yf_TILED;
9075 break;
9076 default:
9077 MISSING_CASE(tiling);
9078 goto error;
9079 }
9080
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009081 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
9082 plane_config->base = base;
9083
9084 offset = I915_READ(PLANE_OFFSET(pipe, 0));
9085
9086 val = I915_READ(PLANE_SIZE(pipe, 0));
9087 fb->height = ((val >> 16) & 0xfff) + 1;
9088 fb->width = ((val >> 0) & 0x1fff) + 1;
9089
9090 val = I915_READ(PLANE_STRIDE(pipe, 0));
Damien Lespiau40f46282015-02-27 11:15:21 +00009091 stride_mult = intel_fb_stride_alignment(dev, fb->modifier[0],
9092 fb->pixel_format);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009093 fb->pitches[0] = (val & 0x3ff) * stride_mult;
9094
9095 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00009096 fb->pixel_format,
9097 fb->modifier[0]);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009098
Daniel Vetterf37b5c22015-02-10 23:12:27 +01009099 plane_config->size = fb->pitches[0] * aligned_height;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009100
9101 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9102 pipe_name(pipe), fb->width, fb->height,
9103 fb->bits_per_pixel, base, fb->pitches[0],
9104 plane_config->size);
9105
Damien Lespiau2d140302015-02-05 17:22:18 +00009106 plane_config->fb = intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009107 return;
9108
9109error:
9110 kfree(fb);
9111}
9112
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009113static void ironlake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009114 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009115{
9116 struct drm_device *dev = crtc->base.dev;
9117 struct drm_i915_private *dev_priv = dev->dev_private;
9118 uint32_t tmp;
9119
9120 tmp = I915_READ(PF_CTL(crtc->pipe));
9121
9122 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01009123 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009124 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
9125 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02009126
9127 /* We currently do not free assignements of panel fitters on
9128 * ivb/hsw (since we don't use the higher upscaling modes which
9129 * differentiates them) so just WARN about this case for now. */
9130 if (IS_GEN7(dev)) {
9131 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
9132 PF_PIPE_SEL_IVB(crtc->pipe));
9133 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009134 }
Jesse Barnes79e53942008-11-07 14:24:08 -08009135}
9136
Damien Lespiau5724dbd2015-01-20 12:51:52 +00009137static void
9138ironlake_get_initial_plane_config(struct intel_crtc *crtc,
9139 struct intel_initial_plane_config *plane_config)
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009140{
9141 struct drm_device *dev = crtc->base.dev;
9142 struct drm_i915_private *dev_priv = dev->dev_private;
9143 u32 val, base, offset;
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009144 int pipe = crtc->pipe;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009145 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00009146 unsigned int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009147 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00009148 struct intel_framebuffer *intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009149
Damien Lespiau42a7b082015-02-05 19:35:13 +00009150 val = I915_READ(DSPCNTR(pipe));
9151 if (!(val & DISPLAY_PLANE_ENABLE))
9152 return;
9153
Damien Lespiaud9806c92015-01-21 14:07:19 +00009154 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00009155 if (!intel_fb) {
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009156 DRM_DEBUG_KMS("failed to alloc fb\n");
9157 return;
9158 }
9159
Damien Lespiau1b842c82015-01-21 13:50:54 +00009160 fb = &intel_fb->base;
9161
Daniel Vetter18c52472015-02-10 17:16:09 +00009162 if (INTEL_INFO(dev)->gen >= 4) {
9163 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00009164 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00009165 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9166 }
9167 }
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009168
9169 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00009170 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009171 fb->pixel_format = fourcc;
9172 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009173
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009174 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009175 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009176 offset = I915_READ(DSPOFFSET(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009177 } else {
Damien Lespiau49af4492015-01-20 12:51:44 +00009178 if (plane_config->tiling)
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009179 offset = I915_READ(DSPTILEOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009180 else
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009181 offset = I915_READ(DSPLINOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009182 }
9183 plane_config->base = base;
9184
9185 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009186 fb->width = ((val >> 16) & 0xfff) + 1;
9187 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009188
9189 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009190 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009191
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009192 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00009193 fb->pixel_format,
9194 fb->modifier[0]);
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009195
Daniel Vetterf37b5c22015-02-10 23:12:27 +01009196 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009197
Damien Lespiau2844a922015-01-20 12:51:48 +00009198 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9199 pipe_name(pipe), fb->width, fb->height,
9200 fb->bits_per_pixel, base, fb->pitches[0],
9201 plane_config->size);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009202
Damien Lespiau2d140302015-02-05 17:22:18 +00009203 plane_config->fb = intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009204}
9205
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009206static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009207 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009208{
9209 struct drm_device *dev = crtc->base.dev;
9210 struct drm_i915_private *dev_priv = dev->dev_private;
9211 uint32_t tmp;
9212
Daniel Vetterf458ebb2014-09-30 10:56:39 +02009213 if (!intel_display_power_is_enabled(dev_priv,
9214 POWER_DOMAIN_PIPE(crtc->pipe)))
Paulo Zanoni930e8c92014-07-04 13:38:34 -03009215 return false;
9216
Daniel Vettere143a212013-07-04 12:01:15 +02009217 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009218 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02009219
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009220 tmp = I915_READ(PIPECONF(crtc->pipe));
9221 if (!(tmp & PIPECONF_ENABLE))
9222 return false;
9223
Ville Syrjälä42571ae2013-09-06 23:29:00 +03009224 switch (tmp & PIPECONF_BPC_MASK) {
9225 case PIPECONF_6BPC:
9226 pipe_config->pipe_bpp = 18;
9227 break;
9228 case PIPECONF_8BPC:
9229 pipe_config->pipe_bpp = 24;
9230 break;
9231 case PIPECONF_10BPC:
9232 pipe_config->pipe_bpp = 30;
9233 break;
9234 case PIPECONF_12BPC:
9235 pipe_config->pipe_bpp = 36;
9236 break;
9237 default:
9238 break;
9239 }
9240
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02009241 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
9242 pipe_config->limited_color_range = true;
9243
Daniel Vetterab9412b2013-05-03 11:49:46 +02009244 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02009245 struct intel_shared_dpll *pll;
9246
Daniel Vetter88adfff2013-03-28 10:42:01 +01009247 pipe_config->has_pch_encoder = true;
9248
Daniel Vetter627eb5a2013-04-29 19:33:42 +02009249 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
9250 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
9251 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02009252
9253 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02009254
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009255 if (HAS_PCH_IBX(dev_priv->dev)) {
Daniel Vetterd94ab062013-07-04 12:01:16 +02009256 pipe_config->shared_dpll =
9257 (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009258 } else {
9259 tmp = I915_READ(PCH_DPLL_SEL);
9260 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
9261 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
9262 else
9263 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
9264 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02009265
9266 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
9267
9268 WARN_ON(!pll->get_hw_state(dev_priv, pll,
9269 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02009270
9271 tmp = pipe_config->dpll_hw_state.dpll;
9272 pipe_config->pixel_multiplier =
9273 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
9274 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03009275
9276 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02009277 } else {
9278 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02009279 }
9280
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009281 intel_get_pipe_timings(crtc, pipe_config);
9282
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009283 ironlake_get_pfit_config(crtc, pipe_config);
9284
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009285 return true;
9286}
9287
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009288static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
9289{
9290 struct drm_device *dev = dev_priv->dev;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009291 struct intel_crtc *crtc;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009292
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009293 for_each_intel_crtc(dev, crtc)
Rob Clarke2c719b2014-12-15 13:56:32 -05009294 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009295 pipe_name(crtc->pipe));
9296
Rob Clarke2c719b2014-12-15 13:56:32 -05009297 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
9298 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
9299 I915_STATE_WARN(I915_READ(WRPLL_CTL1) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
9300 I915_STATE_WARN(I915_READ(WRPLL_CTL2) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
9301 I915_STATE_WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
9302 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009303 "CPU PWM1 enabled\n");
Paulo Zanonic5107b82014-07-04 11:50:30 -03009304 if (IS_HASWELL(dev))
Rob Clarke2c719b2014-12-15 13:56:32 -05009305 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
Paulo Zanonic5107b82014-07-04 11:50:30 -03009306 "CPU PWM2 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05009307 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009308 "PCH PWM1 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05009309 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009310 "Utility pin enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05009311 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009312
Paulo Zanoni9926ada2014-04-01 19:39:47 -03009313 /*
9314 * In theory we can still leave IRQs enabled, as long as only the HPD
9315 * interrupts remain enabled. We used to check for that, but since it's
9316 * gen-specific and since we only disable LCPLL after we fully disable
9317 * the interrupts, the check below should be enough.
9318 */
Rob Clarke2c719b2014-12-15 13:56:32 -05009319 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009320}
9321
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009322static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
9323{
9324 struct drm_device *dev = dev_priv->dev;
9325
9326 if (IS_HASWELL(dev))
9327 return I915_READ(D_COMP_HSW);
9328 else
9329 return I915_READ(D_COMP_BDW);
9330}
9331
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009332static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
9333{
9334 struct drm_device *dev = dev_priv->dev;
9335
9336 if (IS_HASWELL(dev)) {
9337 mutex_lock(&dev_priv->rps.hw_lock);
9338 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
9339 val))
Paulo Zanonif475dad2014-07-04 11:59:57 -03009340 DRM_ERROR("Failed to write to D_COMP\n");
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009341 mutex_unlock(&dev_priv->rps.hw_lock);
9342 } else {
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009343 I915_WRITE(D_COMP_BDW, val);
9344 POSTING_READ(D_COMP_BDW);
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009345 }
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009346}
9347
9348/*
9349 * This function implements pieces of two sequences from BSpec:
9350 * - Sequence for display software to disable LCPLL
9351 * - Sequence for display software to allow package C8+
9352 * The steps implemented here are just the steps that actually touch the LCPLL
9353 * register. Callers should take care of disabling all the display engine
9354 * functions, doing the mode unset, fixing interrupts, etc.
9355 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03009356static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
9357 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009358{
9359 uint32_t val;
9360
9361 assert_can_disable_lcpll(dev_priv);
9362
9363 val = I915_READ(LCPLL_CTL);
9364
9365 if (switch_to_fclk) {
9366 val |= LCPLL_CD_SOURCE_FCLK;
9367 I915_WRITE(LCPLL_CTL, val);
9368
9369 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
9370 LCPLL_CD_SOURCE_FCLK_DONE, 1))
9371 DRM_ERROR("Switching to FCLK failed\n");
9372
9373 val = I915_READ(LCPLL_CTL);
9374 }
9375
9376 val |= LCPLL_PLL_DISABLE;
9377 I915_WRITE(LCPLL_CTL, val);
9378 POSTING_READ(LCPLL_CTL);
9379
9380 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
9381 DRM_ERROR("LCPLL still locked\n");
9382
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009383 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009384 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009385 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009386 ndelay(100);
9387
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009388 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
9389 1))
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009390 DRM_ERROR("D_COMP RCOMP still in progress\n");
9391
9392 if (allow_power_down) {
9393 val = I915_READ(LCPLL_CTL);
9394 val |= LCPLL_POWER_DOWN_ALLOW;
9395 I915_WRITE(LCPLL_CTL, val);
9396 POSTING_READ(LCPLL_CTL);
9397 }
9398}
9399
9400/*
9401 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
9402 * source.
9403 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03009404static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009405{
9406 uint32_t val;
9407
9408 val = I915_READ(LCPLL_CTL);
9409
9410 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
9411 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
9412 return;
9413
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03009414 /*
9415 * Make sure we're not on PC8 state before disabling PC8, otherwise
9416 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03009417 */
Mika Kuoppala59bad942015-01-16 11:34:40 +02009418 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Paulo Zanoni215733f2013-08-19 13:18:07 -03009419
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009420 if (val & LCPLL_POWER_DOWN_ALLOW) {
9421 val &= ~LCPLL_POWER_DOWN_ALLOW;
9422 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02009423 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009424 }
9425
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009426 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009427 val |= D_COMP_COMP_FORCE;
9428 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009429 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009430
9431 val = I915_READ(LCPLL_CTL);
9432 val &= ~LCPLL_PLL_DISABLE;
9433 I915_WRITE(LCPLL_CTL, val);
9434
9435 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
9436 DRM_ERROR("LCPLL not locked yet\n");
9437
9438 if (val & LCPLL_CD_SOURCE_FCLK) {
9439 val = I915_READ(LCPLL_CTL);
9440 val &= ~LCPLL_CD_SOURCE_FCLK;
9441 I915_WRITE(LCPLL_CTL, val);
9442
9443 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
9444 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
9445 DRM_ERROR("Switching back to LCPLL failed\n");
9446 }
Paulo Zanoni215733f2013-08-19 13:18:07 -03009447
Mika Kuoppala59bad942015-01-16 11:34:40 +02009448 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ville Syrjäläb6283052015-06-03 15:45:07 +03009449 intel_update_cdclk(dev_priv->dev);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009450}
9451
Paulo Zanoni765dab672014-03-07 20:08:18 -03009452/*
9453 * Package states C8 and deeper are really deep PC states that can only be
9454 * reached when all the devices on the system allow it, so even if the graphics
9455 * device allows PC8+, it doesn't mean the system will actually get to these
9456 * states. Our driver only allows PC8+ when going into runtime PM.
9457 *
9458 * The requirements for PC8+ are that all the outputs are disabled, the power
9459 * well is disabled and most interrupts are disabled, and these are also
9460 * requirements for runtime PM. When these conditions are met, we manually do
9461 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
9462 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
9463 * hang the machine.
9464 *
9465 * When we really reach PC8 or deeper states (not just when we allow it) we lose
9466 * the state of some registers, so when we come back from PC8+ we need to
9467 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
9468 * need to take care of the registers kept by RC6. Notice that this happens even
9469 * if we don't put the device in PCI D3 state (which is what currently happens
9470 * because of the runtime PM support).
9471 *
9472 * For more, read "Display Sequences for Package C8" on the hardware
9473 * documentation.
9474 */
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03009475void hsw_enable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03009476{
Paulo Zanonic67a4702013-08-19 13:18:09 -03009477 struct drm_device *dev = dev_priv->dev;
9478 uint32_t val;
9479
Paulo Zanonic67a4702013-08-19 13:18:09 -03009480 DRM_DEBUG_KMS("Enabling package C8+\n");
9481
Paulo Zanonic67a4702013-08-19 13:18:09 -03009482 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
9483 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9484 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
9485 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9486 }
9487
9488 lpt_disable_clkout_dp(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009489 hsw_disable_lcpll(dev_priv, true, true);
9490}
9491
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03009492void hsw_disable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03009493{
9494 struct drm_device *dev = dev_priv->dev;
9495 uint32_t val;
9496
Paulo Zanonic67a4702013-08-19 13:18:09 -03009497 DRM_DEBUG_KMS("Disabling package C8+\n");
9498
9499 hsw_restore_lcpll(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009500 lpt_init_pch_refclk(dev);
9501
9502 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
9503 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9504 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
9505 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9506 }
9507
9508 intel_prepare_ddi(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009509}
9510
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03009511static void broxton_modeset_global_resources(struct drm_atomic_state *old_state)
Vandana Kannanf8437dd12014-11-24 13:37:39 +05309512{
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03009513 struct drm_device *dev = old_state->dev;
Vandana Kannanf8437dd12014-11-24 13:37:39 +05309514 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03009515 int max_pixclk = intel_mode_max_pixclk(dev, NULL);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05309516 int req_cdclk;
9517
9518 /* see the comment in valleyview_modeset_global_resources */
9519 if (WARN_ON(max_pixclk < 0))
9520 return;
9521
9522 req_cdclk = broxton_calc_cdclk(dev_priv, max_pixclk);
9523
9524 if (req_cdclk != dev_priv->cdclk_freq)
9525 broxton_set_cdclk(dev, req_cdclk);
9526}
9527
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009528/* compute the max rate for new configuration */
9529static int ilk_max_pixel_rate(struct drm_i915_private *dev_priv)
9530{
9531 struct drm_device *dev = dev_priv->dev;
9532 struct intel_crtc *intel_crtc;
9533 struct drm_crtc *crtc;
9534 int max_pixel_rate = 0;
9535 int pixel_rate;
9536
9537 for_each_crtc(dev, crtc) {
9538 if (!crtc->state->enable)
9539 continue;
9540
9541 intel_crtc = to_intel_crtc(crtc);
9542 pixel_rate = ilk_pipe_pixel_rate(intel_crtc->config);
9543
9544 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
9545 if (IS_BROADWELL(dev) && intel_crtc->config->ips_enabled)
9546 pixel_rate = DIV_ROUND_UP(pixel_rate * 100, 95);
9547
9548 max_pixel_rate = max(max_pixel_rate, pixel_rate);
9549 }
9550
9551 return max_pixel_rate;
9552}
9553
9554static void broadwell_set_cdclk(struct drm_device *dev, int cdclk)
9555{
9556 struct drm_i915_private *dev_priv = dev->dev_private;
9557 uint32_t val, data;
9558 int ret;
9559
9560 if (WARN((I915_READ(LCPLL_CTL) &
9561 (LCPLL_PLL_DISABLE | LCPLL_PLL_LOCK |
9562 LCPLL_CD_CLOCK_DISABLE | LCPLL_ROOT_CD_CLOCK_DISABLE |
9563 LCPLL_CD2X_CLOCK_DISABLE | LCPLL_POWER_DOWN_ALLOW |
9564 LCPLL_CD_SOURCE_FCLK)) != LCPLL_PLL_LOCK,
9565 "trying to change cdclk frequency with cdclk not enabled\n"))
9566 return;
9567
9568 mutex_lock(&dev_priv->rps.hw_lock);
9569 ret = sandybridge_pcode_write(dev_priv,
9570 BDW_PCODE_DISPLAY_FREQ_CHANGE_REQ, 0x0);
9571 mutex_unlock(&dev_priv->rps.hw_lock);
9572 if (ret) {
9573 DRM_ERROR("failed to inform pcode about cdclk change\n");
9574 return;
9575 }
9576
9577 val = I915_READ(LCPLL_CTL);
9578 val |= LCPLL_CD_SOURCE_FCLK;
9579 I915_WRITE(LCPLL_CTL, val);
9580
9581 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
9582 LCPLL_CD_SOURCE_FCLK_DONE, 1))
9583 DRM_ERROR("Switching to FCLK failed\n");
9584
9585 val = I915_READ(LCPLL_CTL);
9586 val &= ~LCPLL_CLK_FREQ_MASK;
9587
9588 switch (cdclk) {
9589 case 450000:
9590 val |= LCPLL_CLK_FREQ_450;
9591 data = 0;
9592 break;
9593 case 540000:
9594 val |= LCPLL_CLK_FREQ_54O_BDW;
9595 data = 1;
9596 break;
9597 case 337500:
9598 val |= LCPLL_CLK_FREQ_337_5_BDW;
9599 data = 2;
9600 break;
9601 case 675000:
9602 val |= LCPLL_CLK_FREQ_675_BDW;
9603 data = 3;
9604 break;
9605 default:
9606 WARN(1, "invalid cdclk frequency\n");
9607 return;
9608 }
9609
9610 I915_WRITE(LCPLL_CTL, val);
9611
9612 val = I915_READ(LCPLL_CTL);
9613 val &= ~LCPLL_CD_SOURCE_FCLK;
9614 I915_WRITE(LCPLL_CTL, val);
9615
9616 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
9617 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
9618 DRM_ERROR("Switching back to LCPLL failed\n");
9619
9620 mutex_lock(&dev_priv->rps.hw_lock);
9621 sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ, data);
9622 mutex_unlock(&dev_priv->rps.hw_lock);
9623
9624 intel_update_cdclk(dev);
9625
9626 WARN(cdclk != dev_priv->cdclk_freq,
9627 "cdclk requested %d kHz but got %d kHz\n",
9628 cdclk, dev_priv->cdclk_freq);
9629}
9630
9631static int broadwell_calc_cdclk(struct drm_i915_private *dev_priv,
9632 int max_pixel_rate)
9633{
9634 int cdclk;
9635
9636 /*
9637 * FIXME should also account for plane ratio
9638 * once 64bpp pixel formats are supported.
9639 */
9640 if (max_pixel_rate > 540000)
9641 cdclk = 675000;
9642 else if (max_pixel_rate > 450000)
9643 cdclk = 540000;
9644 else if (max_pixel_rate > 337500)
9645 cdclk = 450000;
9646 else
9647 cdclk = 337500;
9648
9649 /*
9650 * FIXME move the cdclk caclulation to
9651 * compute_config() so we can fail gracegully.
9652 */
9653 if (cdclk > dev_priv->max_cdclk_freq) {
9654 DRM_ERROR("requested cdclk (%d kHz) exceeds max (%d kHz)\n",
9655 cdclk, dev_priv->max_cdclk_freq);
9656 cdclk = dev_priv->max_cdclk_freq;
9657 }
9658
9659 return cdclk;
9660}
9661
9662static int broadwell_modeset_global_pipes(struct drm_atomic_state *state)
9663{
9664 struct drm_i915_private *dev_priv = to_i915(state->dev);
9665 struct drm_crtc *crtc;
9666 struct drm_crtc_state *crtc_state;
9667 int max_pixclk = ilk_max_pixel_rate(dev_priv);
9668 int cdclk, i;
9669
9670 cdclk = broadwell_calc_cdclk(dev_priv, max_pixclk);
9671
9672 if (cdclk == dev_priv->cdclk_freq)
9673 return 0;
9674
9675 /* add all active pipes to the state */
9676 for_each_crtc(state->dev, crtc) {
9677 if (!crtc->state->enable)
9678 continue;
9679
9680 crtc_state = drm_atomic_get_crtc_state(state, crtc);
9681 if (IS_ERR(crtc_state))
9682 return PTR_ERR(crtc_state);
9683 }
9684
9685 /* disable/enable all currently active pipes while we change cdclk */
9686 for_each_crtc_in_state(state, crtc, crtc_state, i)
9687 if (crtc_state->enable)
9688 crtc_state->mode_changed = true;
9689
9690 return 0;
9691}
9692
9693static void broadwell_modeset_global_resources(struct drm_atomic_state *state)
9694{
9695 struct drm_device *dev = state->dev;
9696 struct drm_i915_private *dev_priv = dev->dev_private;
9697 int max_pixel_rate = ilk_max_pixel_rate(dev_priv);
9698 int req_cdclk = broadwell_calc_cdclk(dev_priv, max_pixel_rate);
9699
9700 if (req_cdclk != dev_priv->cdclk_freq)
9701 broadwell_set_cdclk(dev, req_cdclk);
9702}
9703
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009704static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
9705 struct intel_crtc_state *crtc_state)
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03009706{
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009707 if (!intel_ddi_pll_select(crtc, crtc_state))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03009708 return -EINVAL;
Daniel Vetter716c2e52014-06-25 22:02:02 +03009709
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03009710 crtc->lowfreq_avail = false;
Daniel Vetter644cef32014-04-24 23:55:07 +02009711
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02009712 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08009713}
9714
Satheeshakrishna M3760b592014-08-22 09:49:11 +05309715static void bxt_get_ddi_pll(struct drm_i915_private *dev_priv,
9716 enum port port,
9717 struct intel_crtc_state *pipe_config)
9718{
9719 switch (port) {
9720 case PORT_A:
9721 pipe_config->ddi_pll_sel = SKL_DPLL0;
9722 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
9723 break;
9724 case PORT_B:
9725 pipe_config->ddi_pll_sel = SKL_DPLL1;
9726 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
9727 break;
9728 case PORT_C:
9729 pipe_config->ddi_pll_sel = SKL_DPLL2;
9730 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
9731 break;
9732 default:
9733 DRM_ERROR("Incorrect port type\n");
9734 }
9735}
9736
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009737static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
9738 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009739 struct intel_crtc_state *pipe_config)
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009740{
Damien Lespiau3148ade2014-11-21 16:14:56 +00009741 u32 temp, dpll_ctl1;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009742
9743 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
9744 pipe_config->ddi_pll_sel = temp >> (port * 3 + 1);
9745
9746 switch (pipe_config->ddi_pll_sel) {
Damien Lespiau3148ade2014-11-21 16:14:56 +00009747 case SKL_DPLL0:
9748 /*
9749 * On SKL the eDP DPLL (DPLL0 as we don't use SSC) is not part
9750 * of the shared DPLL framework and thus needs to be read out
9751 * separately
9752 */
9753 dpll_ctl1 = I915_READ(DPLL_CTRL1);
9754 pipe_config->dpll_hw_state.ctrl1 = dpll_ctl1 & 0x3f;
9755 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009756 case SKL_DPLL1:
9757 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
9758 break;
9759 case SKL_DPLL2:
9760 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
9761 break;
9762 case SKL_DPLL3:
9763 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
9764 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009765 }
9766}
9767
Damien Lespiau7d2c8172014-07-29 18:06:18 +01009768static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
9769 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009770 struct intel_crtc_state *pipe_config)
Damien Lespiau7d2c8172014-07-29 18:06:18 +01009771{
9772 pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
9773
9774 switch (pipe_config->ddi_pll_sel) {
9775 case PORT_CLK_SEL_WRPLL1:
9776 pipe_config->shared_dpll = DPLL_ID_WRPLL1;
9777 break;
9778 case PORT_CLK_SEL_WRPLL2:
9779 pipe_config->shared_dpll = DPLL_ID_WRPLL2;
9780 break;
9781 }
9782}
9783
Daniel Vetter26804af2014-06-25 22:01:55 +03009784static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009785 struct intel_crtc_state *pipe_config)
Daniel Vetter26804af2014-06-25 22:01:55 +03009786{
9787 struct drm_device *dev = crtc->base.dev;
9788 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterd452c5b2014-07-04 11:27:39 -03009789 struct intel_shared_dpll *pll;
Daniel Vetter26804af2014-06-25 22:01:55 +03009790 enum port port;
9791 uint32_t tmp;
9792
9793 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
9794
9795 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
9796
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009797 if (IS_SKYLAKE(dev))
9798 skylake_get_ddi_pll(dev_priv, port, pipe_config);
Satheeshakrishna M3760b592014-08-22 09:49:11 +05309799 else if (IS_BROXTON(dev))
9800 bxt_get_ddi_pll(dev_priv, port, pipe_config);
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009801 else
9802 haswell_get_ddi_pll(dev_priv, port, pipe_config);
Daniel Vetter9cd86932014-06-25 22:01:57 +03009803
Daniel Vetterd452c5b2014-07-04 11:27:39 -03009804 if (pipe_config->shared_dpll >= 0) {
9805 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
9806
9807 WARN_ON(!pll->get_hw_state(dev_priv, pll,
9808 &pipe_config->dpll_hw_state));
9809 }
9810
Daniel Vetter26804af2014-06-25 22:01:55 +03009811 /*
9812 * Haswell has only FDI/PCH transcoder A. It is which is connected to
9813 * DDI E. So just check whether this pipe is wired to DDI E and whether
9814 * the PCH transcoder is on.
9815 */
Damien Lespiauca370452013-12-03 13:56:24 +00009816 if (INTEL_INFO(dev)->gen < 9 &&
9817 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
Daniel Vetter26804af2014-06-25 22:01:55 +03009818 pipe_config->has_pch_encoder = true;
9819
9820 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
9821 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
9822 FDI_DP_PORT_WIDTH_SHIFT) + 1;
9823
9824 ironlake_get_fdi_m_n_config(crtc, pipe_config);
9825 }
9826}
9827
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009828static bool haswell_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009829 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009830{
9831 struct drm_device *dev = crtc->base.dev;
9832 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009833 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009834 uint32_t tmp;
9835
Daniel Vetterf458ebb2014-09-30 10:56:39 +02009836 if (!intel_display_power_is_enabled(dev_priv,
Imre Deakb5482bd2014-03-05 16:20:55 +02009837 POWER_DOMAIN_PIPE(crtc->pipe)))
9838 return false;
9839
Daniel Vettere143a212013-07-04 12:01:15 +02009840 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009841 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
9842
Daniel Vettereccb1402013-05-22 00:50:22 +02009843 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
9844 if (tmp & TRANS_DDI_FUNC_ENABLE) {
9845 enum pipe trans_edp_pipe;
9846 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
9847 default:
9848 WARN(1, "unknown pipe linked to edp transcoder\n");
9849 case TRANS_DDI_EDP_INPUT_A_ONOFF:
9850 case TRANS_DDI_EDP_INPUT_A_ON:
9851 trans_edp_pipe = PIPE_A;
9852 break;
9853 case TRANS_DDI_EDP_INPUT_B_ONOFF:
9854 trans_edp_pipe = PIPE_B;
9855 break;
9856 case TRANS_DDI_EDP_INPUT_C_ONOFF:
9857 trans_edp_pipe = PIPE_C;
9858 break;
9859 }
9860
9861 if (trans_edp_pipe == crtc->pipe)
9862 pipe_config->cpu_transcoder = TRANSCODER_EDP;
9863 }
9864
Daniel Vetterf458ebb2014-09-30 10:56:39 +02009865 if (!intel_display_power_is_enabled(dev_priv,
Daniel Vettereccb1402013-05-22 00:50:22 +02009866 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -03009867 return false;
9868
Daniel Vettereccb1402013-05-22 00:50:22 +02009869 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009870 if (!(tmp & PIPECONF_ENABLE))
9871 return false;
9872
Daniel Vetter26804af2014-06-25 22:01:55 +03009873 haswell_get_ddi_port_state(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02009874
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009875 intel_get_pipe_timings(crtc, pipe_config);
9876
Chandra Kondurua1b22782015-04-07 15:28:45 -07009877 if (INTEL_INFO(dev)->gen >= 9) {
9878 skl_init_scalers(dev, crtc, pipe_config);
9879 }
9880
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009881 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
Chandra Konduruaf99ced2015-05-11 14:35:47 -07009882
9883 if (INTEL_INFO(dev)->gen >= 9) {
9884 pipe_config->scaler_state.scaler_id = -1;
9885 pipe_config->scaler_state.scaler_users &= ~(1 << SKL_CRTC_INDEX);
9886 }
9887
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009888 if (intel_display_power_is_enabled(dev_priv, pfit_domain)) {
Jesse Barnesff6d9f52015-01-21 17:19:54 -08009889 if (INTEL_INFO(dev)->gen == 9)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009890 skylake_get_pfit_config(crtc, pipe_config);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08009891 else if (INTEL_INFO(dev)->gen < 9)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009892 ironlake_get_pfit_config(crtc, pipe_config);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08009893 else
9894 MISSING_CASE(INTEL_INFO(dev)->gen);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009895 }
Daniel Vetter88adfff2013-03-28 10:42:01 +01009896
Jesse Barnese59150d2014-01-07 13:30:45 -08009897 if (IS_HASWELL(dev))
9898 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
9899 (I915_READ(IPS_CTL) & IPS_ENABLE);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03009900
Clint Taylorebb69c92014-09-30 10:30:22 -07009901 if (pipe_config->cpu_transcoder != TRANSCODER_EDP) {
9902 pipe_config->pixel_multiplier =
9903 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
9904 } else {
9905 pipe_config->pixel_multiplier = 1;
9906 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02009907
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009908 return true;
9909}
9910
Chris Wilson560b85b2010-08-07 11:01:38 +01009911static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
9912{
9913 struct drm_device *dev = crtc->dev;
9914 struct drm_i915_private *dev_priv = dev->dev_private;
9915 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälädc41c152014-08-13 11:57:05 +03009916 uint32_t cntl = 0, size = 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01009917
Ville Syrjälädc41c152014-08-13 11:57:05 +03009918 if (base) {
Matt Roper3dd512f2015-02-27 10:12:00 -08009919 unsigned int width = intel_crtc->base.cursor->state->crtc_w;
9920 unsigned int height = intel_crtc->base.cursor->state->crtc_h;
Ville Syrjälädc41c152014-08-13 11:57:05 +03009921 unsigned int stride = roundup_pow_of_two(width) * 4;
9922
9923 switch (stride) {
9924 default:
9925 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
9926 width, stride);
9927 stride = 256;
9928 /* fallthrough */
9929 case 256:
9930 case 512:
9931 case 1024:
9932 case 2048:
9933 break;
Chris Wilson4b0e3332014-05-30 16:35:26 +03009934 }
9935
Ville Syrjälädc41c152014-08-13 11:57:05 +03009936 cntl |= CURSOR_ENABLE |
9937 CURSOR_GAMMA_ENABLE |
9938 CURSOR_FORMAT_ARGB |
9939 CURSOR_STRIDE(stride);
9940
9941 size = (height << 12) | width;
Chris Wilson4b0e3332014-05-30 16:35:26 +03009942 }
Chris Wilson560b85b2010-08-07 11:01:38 +01009943
Ville Syrjälädc41c152014-08-13 11:57:05 +03009944 if (intel_crtc->cursor_cntl != 0 &&
9945 (intel_crtc->cursor_base != base ||
9946 intel_crtc->cursor_size != size ||
9947 intel_crtc->cursor_cntl != cntl)) {
9948 /* On these chipsets we can only modify the base/size/stride
9949 * whilst the cursor is disabled.
9950 */
9951 I915_WRITE(_CURACNTR, 0);
9952 POSTING_READ(_CURACNTR);
9953 intel_crtc->cursor_cntl = 0;
9954 }
9955
Ville Syrjälä99d1f382014-09-12 20:53:32 +03009956 if (intel_crtc->cursor_base != base) {
Ville Syrjälädc41c152014-08-13 11:57:05 +03009957 I915_WRITE(_CURABASE, base);
Ville Syrjälä99d1f382014-09-12 20:53:32 +03009958 intel_crtc->cursor_base = base;
9959 }
Ville Syrjälädc41c152014-08-13 11:57:05 +03009960
9961 if (intel_crtc->cursor_size != size) {
9962 I915_WRITE(CURSIZE, size);
9963 intel_crtc->cursor_size = size;
9964 }
9965
Chris Wilson4b0e3332014-05-30 16:35:26 +03009966 if (intel_crtc->cursor_cntl != cntl) {
9967 I915_WRITE(_CURACNTR, cntl);
9968 POSTING_READ(_CURACNTR);
9969 intel_crtc->cursor_cntl = cntl;
9970 }
Chris Wilson560b85b2010-08-07 11:01:38 +01009971}
9972
9973static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
9974{
9975 struct drm_device *dev = crtc->dev;
9976 struct drm_i915_private *dev_priv = dev->dev_private;
9977 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9978 int pipe = intel_crtc->pipe;
Chris Wilson4b0e3332014-05-30 16:35:26 +03009979 uint32_t cntl;
Chris Wilson560b85b2010-08-07 11:01:38 +01009980
Chris Wilson4b0e3332014-05-30 16:35:26 +03009981 cntl = 0;
9982 if (base) {
9983 cntl = MCURSOR_GAMMA_ENABLE;
Matt Roper3dd512f2015-02-27 10:12:00 -08009984 switch (intel_crtc->base.cursor->state->crtc_w) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05309985 case 64:
9986 cntl |= CURSOR_MODE_64_ARGB_AX;
9987 break;
9988 case 128:
9989 cntl |= CURSOR_MODE_128_ARGB_AX;
9990 break;
9991 case 256:
9992 cntl |= CURSOR_MODE_256_ARGB_AX;
9993 break;
9994 default:
Matt Roper3dd512f2015-02-27 10:12:00 -08009995 MISSING_CASE(intel_crtc->base.cursor->state->crtc_w);
Sagar Kamble4726e0b2014-03-10 17:06:23 +05309996 return;
Chris Wilson560b85b2010-08-07 11:01:38 +01009997 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03009998 cntl |= pipe << 28; /* Connect to correct pipe */
Ville Syrjälä47bf17a2014-09-12 20:53:33 +03009999
10000 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
10001 cntl |= CURSOR_PIPE_CSC_ENABLE;
Chris Wilson560b85b2010-08-07 11:01:38 +010010002 }
Chris Wilson4b0e3332014-05-30 16:35:26 +030010003
Matt Roper8e7d6882015-01-21 16:35:41 -080010004 if (crtc->cursor->state->rotation == BIT(DRM_ROTATE_180))
Ville Syrjälä4398ad42014-10-23 07:41:34 -070010005 cntl |= CURSOR_ROTATE_180;
10006
Chris Wilson4b0e3332014-05-30 16:35:26 +030010007 if (intel_crtc->cursor_cntl != cntl) {
10008 I915_WRITE(CURCNTR(pipe), cntl);
10009 POSTING_READ(CURCNTR(pipe));
10010 intel_crtc->cursor_cntl = cntl;
10011 }
10012
Jesse Barnes65a21cd2011-10-12 11:10:21 -070010013 /* and commit changes on next vblank */
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030010014 I915_WRITE(CURBASE(pipe), base);
10015 POSTING_READ(CURBASE(pipe));
Ville Syrjälä99d1f382014-09-12 20:53:32 +030010016
10017 intel_crtc->cursor_base = base;
Jesse Barnes65a21cd2011-10-12 11:10:21 -070010018}
10019
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010020/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +010010021static void intel_crtc_update_cursor(struct drm_crtc *crtc,
10022 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010023{
10024 struct drm_device *dev = crtc->dev;
10025 struct drm_i915_private *dev_priv = dev->dev_private;
10026 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10027 int pipe = intel_crtc->pipe;
Matt Roper3d7d6512014-06-10 08:28:13 -070010028 int x = crtc->cursor_x;
10029 int y = crtc->cursor_y;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +030010030 u32 base = 0, pos = 0;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010031
Ville Syrjäläd6e4db12013-09-04 18:25:31 +030010032 if (on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010033 base = intel_crtc->cursor_addr;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010034
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010035 if (x >= intel_crtc->config->pipe_src_w)
Ville Syrjäläd6e4db12013-09-04 18:25:31 +030010036 base = 0;
10037
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010038 if (y >= intel_crtc->config->pipe_src_h)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010039 base = 0;
10040
10041 if (x < 0) {
Matt Roper3dd512f2015-02-27 10:12:00 -080010042 if (x + intel_crtc->base.cursor->state->crtc_w <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010043 base = 0;
10044
10045 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
10046 x = -x;
10047 }
10048 pos |= x << CURSOR_X_SHIFT;
10049
10050 if (y < 0) {
Matt Roper3dd512f2015-02-27 10:12:00 -080010051 if (y + intel_crtc->base.cursor->state->crtc_h <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010052 base = 0;
10053
10054 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
10055 y = -y;
10056 }
10057 pos |= y << CURSOR_Y_SHIFT;
10058
Chris Wilson4b0e3332014-05-30 16:35:26 +030010059 if (base == 0 && intel_crtc->cursor_base == 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010060 return;
10061
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030010062 I915_WRITE(CURPOS(pipe), pos);
10063
Ville Syrjälä4398ad42014-10-23 07:41:34 -070010064 /* ILK+ do this automagically */
10065 if (HAS_GMCH_DISPLAY(dev) &&
Matt Roper8e7d6882015-01-21 16:35:41 -080010066 crtc->cursor->state->rotation == BIT(DRM_ROTATE_180)) {
Matt Roper3dd512f2015-02-27 10:12:00 -080010067 base += (intel_crtc->base.cursor->state->crtc_h *
10068 intel_crtc->base.cursor->state->crtc_w - 1) * 4;
Ville Syrjälä4398ad42014-10-23 07:41:34 -070010069 }
10070
Ville Syrjälä8ac54662014-08-12 19:39:54 +030010071 if (IS_845G(dev) || IS_I865G(dev))
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030010072 i845_update_cursor(crtc, base);
10073 else
10074 i9xx_update_cursor(crtc, base);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010075}
10076
Ville Syrjälädc41c152014-08-13 11:57:05 +030010077static bool cursor_size_ok(struct drm_device *dev,
10078 uint32_t width, uint32_t height)
10079{
10080 if (width == 0 || height == 0)
10081 return false;
10082
10083 /*
10084 * 845g/865g are special in that they are only limited by
10085 * the width of their cursors, the height is arbitrary up to
10086 * the precision of the register. Everything else requires
10087 * square cursors, limited to a few power-of-two sizes.
10088 */
10089 if (IS_845G(dev) || IS_I865G(dev)) {
10090 if ((width & 63) != 0)
10091 return false;
10092
10093 if (width > (IS_845G(dev) ? 64 : 512))
10094 return false;
10095
10096 if (height > 1023)
10097 return false;
10098 } else {
10099 switch (width | height) {
10100 case 256:
10101 case 128:
10102 if (IS_GEN2(dev))
10103 return false;
10104 case 64:
10105 break;
10106 default:
10107 return false;
10108 }
10109 }
10110
10111 return true;
10112}
10113
Jesse Barnes79e53942008-11-07 14:24:08 -080010114static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +010010115 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -080010116{
James Simmons72034252010-08-03 01:33:19 +010010117 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -080010118 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -080010119
James Simmons72034252010-08-03 01:33:19 +010010120 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -080010121 intel_crtc->lut_r[i] = red[i] >> 8;
10122 intel_crtc->lut_g[i] = green[i] >> 8;
10123 intel_crtc->lut_b[i] = blue[i] >> 8;
10124 }
10125
10126 intel_crtc_load_lut(crtc);
10127}
10128
Jesse Barnes79e53942008-11-07 14:24:08 -080010129/* VESA 640x480x72Hz mode to set on the pipe */
10130static struct drm_display_mode load_detect_mode = {
10131 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
10132 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
10133};
10134
Daniel Vettera8bb6812014-02-10 18:00:39 +010010135struct drm_framebuffer *
10136__intel_framebuffer_create(struct drm_device *dev,
10137 struct drm_mode_fb_cmd2 *mode_cmd,
10138 struct drm_i915_gem_object *obj)
Chris Wilsond2dff872011-04-19 08:36:26 +010010139{
10140 struct intel_framebuffer *intel_fb;
10141 int ret;
10142
10143 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
10144 if (!intel_fb) {
Alexey Khoroshilov6ccb81f2014-11-08 01:41:23 +030010145 drm_gem_object_unreference(&obj->base);
Chris Wilsond2dff872011-04-19 08:36:26 +010010146 return ERR_PTR(-ENOMEM);
10147 }
10148
10149 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Daniel Vetterdd4916c2013-10-09 21:23:51 +020010150 if (ret)
10151 goto err;
Chris Wilsond2dff872011-04-19 08:36:26 +010010152
10153 return &intel_fb->base;
Daniel Vetterdd4916c2013-10-09 21:23:51 +020010154err:
Alexey Khoroshilov6ccb81f2014-11-08 01:41:23 +030010155 drm_gem_object_unreference(&obj->base);
Daniel Vetterdd4916c2013-10-09 21:23:51 +020010156 kfree(intel_fb);
10157
10158 return ERR_PTR(ret);
Chris Wilsond2dff872011-04-19 08:36:26 +010010159}
10160
Daniel Vetterb5ea6422014-03-02 21:18:00 +010010161static struct drm_framebuffer *
Daniel Vettera8bb6812014-02-10 18:00:39 +010010162intel_framebuffer_create(struct drm_device *dev,
10163 struct drm_mode_fb_cmd2 *mode_cmd,
10164 struct drm_i915_gem_object *obj)
10165{
10166 struct drm_framebuffer *fb;
10167 int ret;
10168
10169 ret = i915_mutex_lock_interruptible(dev);
10170 if (ret)
10171 return ERR_PTR(ret);
10172 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
10173 mutex_unlock(&dev->struct_mutex);
10174
10175 return fb;
10176}
10177
Chris Wilsond2dff872011-04-19 08:36:26 +010010178static u32
10179intel_framebuffer_pitch_for_width(int width, int bpp)
10180{
10181 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
10182 return ALIGN(pitch, 64);
10183}
10184
10185static u32
10186intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
10187{
10188 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
Fabian Frederick1267a262014-07-01 20:39:41 +020010189 return PAGE_ALIGN(pitch * mode->vdisplay);
Chris Wilsond2dff872011-04-19 08:36:26 +010010190}
10191
10192static struct drm_framebuffer *
10193intel_framebuffer_create_for_mode(struct drm_device *dev,
10194 struct drm_display_mode *mode,
10195 int depth, int bpp)
10196{
10197 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +000010198 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +010010199
10200 obj = i915_gem_alloc_object(dev,
10201 intel_framebuffer_size_for_mode(mode, bpp));
10202 if (obj == NULL)
10203 return ERR_PTR(-ENOMEM);
10204
10205 mode_cmd.width = mode->hdisplay;
10206 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -080010207 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
10208 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +000010209 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +010010210
10211 return intel_framebuffer_create(dev, &mode_cmd, obj);
10212}
10213
10214static struct drm_framebuffer *
10215mode_fits_in_fbdev(struct drm_device *dev,
10216 struct drm_display_mode *mode)
10217{
Daniel Vetter4520f532013-10-09 09:18:51 +020010218#ifdef CONFIG_DRM_I915_FBDEV
Chris Wilsond2dff872011-04-19 08:36:26 +010010219 struct drm_i915_private *dev_priv = dev->dev_private;
10220 struct drm_i915_gem_object *obj;
10221 struct drm_framebuffer *fb;
10222
Daniel Vetter4c0e5522014-02-14 16:35:54 +010010223 if (!dev_priv->fbdev)
10224 return NULL;
10225
10226 if (!dev_priv->fbdev->fb)
Chris Wilsond2dff872011-04-19 08:36:26 +010010227 return NULL;
10228
Jesse Barnes8bcd4552014-02-07 12:10:38 -080010229 obj = dev_priv->fbdev->fb->obj;
Daniel Vetter4c0e5522014-02-14 16:35:54 +010010230 BUG_ON(!obj);
Chris Wilsond2dff872011-04-19 08:36:26 +010010231
Jesse Barnes8bcd4552014-02-07 12:10:38 -080010232 fb = &dev_priv->fbdev->fb->base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +020010233 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
10234 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +010010235 return NULL;
10236
Ville Syrjälä01f2c772011-12-20 00:06:49 +020010237 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +010010238 return NULL;
10239
10240 return fb;
Daniel Vetter4520f532013-10-09 09:18:51 +020010241#else
10242 return NULL;
10243#endif
Chris Wilsond2dff872011-04-19 08:36:26 +010010244}
10245
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030010246static int intel_modeset_setup_plane_state(struct drm_atomic_state *state,
10247 struct drm_crtc *crtc,
10248 struct drm_display_mode *mode,
10249 struct drm_framebuffer *fb,
10250 int x, int y)
10251{
10252 struct drm_plane_state *plane_state;
10253 int hdisplay, vdisplay;
10254 int ret;
10255
10256 plane_state = drm_atomic_get_plane_state(state, crtc->primary);
10257 if (IS_ERR(plane_state))
10258 return PTR_ERR(plane_state);
10259
10260 if (mode)
10261 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
10262 else
10263 hdisplay = vdisplay = 0;
10264
10265 ret = drm_atomic_set_crtc_for_plane(plane_state, fb ? crtc : NULL);
10266 if (ret)
10267 return ret;
10268 drm_atomic_set_fb_for_plane(plane_state, fb);
10269 plane_state->crtc_x = 0;
10270 plane_state->crtc_y = 0;
10271 plane_state->crtc_w = hdisplay;
10272 plane_state->crtc_h = vdisplay;
10273 plane_state->src_x = x << 16;
10274 plane_state->src_y = y << 16;
10275 plane_state->src_w = hdisplay << 16;
10276 plane_state->src_h = vdisplay << 16;
10277
10278 return 0;
10279}
10280
Daniel Vetterd2434ab2012-08-12 21:20:10 +020010281bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +010010282 struct drm_display_mode *mode,
Rob Clark51fd3712013-11-19 12:10:12 -050010283 struct intel_load_detect_pipe *old,
10284 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -080010285{
10286 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +020010287 struct intel_encoder *intel_encoder =
10288 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -080010289 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +010010290 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -080010291 struct drm_crtc *crtc = NULL;
10292 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +020010293 struct drm_framebuffer *fb;
Rob Clark51fd3712013-11-19 12:10:12 -050010294 struct drm_mode_config *config = &dev->mode_config;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010295 struct drm_atomic_state *state = NULL;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010296 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010297 struct intel_crtc_state *crtc_state;
Rob Clark51fd3712013-11-19 12:10:12 -050010298 int ret, i = -1;
Jesse Barnes79e53942008-11-07 14:24:08 -080010299
Chris Wilsond2dff872011-04-19 08:36:26 +010010300 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +030010301 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +030010302 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +010010303
Rob Clark51fd3712013-11-19 12:10:12 -050010304retry:
10305 ret = drm_modeset_lock(&config->connection_mutex, ctx);
10306 if (ret)
Maarten Lankhorstf7217902015-06-10 10:24:20 +020010307 goto fail_unlock;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020010308
Jesse Barnes79e53942008-11-07 14:24:08 -080010309 /*
10310 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +010010311 *
Jesse Barnes79e53942008-11-07 14:24:08 -080010312 * - if the connector already has an assigned crtc, use it (but make
10313 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +010010314 *
Jesse Barnes79e53942008-11-07 14:24:08 -080010315 * - try to find the first unused crtc that can drive this connector,
10316 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -080010317 */
10318
10319 /* See if we already have a CRTC for this connector */
10320 if (encoder->crtc) {
10321 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +010010322
Rob Clark51fd3712013-11-19 12:10:12 -050010323 ret = drm_modeset_lock(&crtc->mutex, ctx);
10324 if (ret)
Maarten Lankhorstf7217902015-06-10 10:24:20 +020010325 goto fail_unlock;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +010010326 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
10327 if (ret)
Maarten Lankhorstf7217902015-06-10 10:24:20 +020010328 goto fail_unlock;
Daniel Vetter7b240562012-12-12 00:35:33 +010010329
Daniel Vetter24218aa2012-08-12 19:27:11 +020010330 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +010010331 old->load_detect_temp = false;
10332
10333 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +020010334 if (connector->dpms != DRM_MODE_DPMS_ON)
10335 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +010010336
Chris Wilson71731882011-04-19 23:10:58 +010010337 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -080010338 }
10339
10340 /* Find an unused one (if possible) */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010010341 for_each_crtc(dev, possible_crtc) {
Jesse Barnes79e53942008-11-07 14:24:08 -080010342 i++;
10343 if (!(encoder->possible_crtcs & (1 << i)))
10344 continue;
Matt Roper83d65732015-02-25 13:12:16 -080010345 if (possible_crtc->state->enable)
Ville Syrjäläa4592492014-08-11 13:15:36 +030010346 continue;
Maarten Lankhorstf7217902015-06-10 10:24:20 +020010347 /* This can occur when applying the pipe A quirk on resume. */
10348 if (to_intel_crtc(possible_crtc)->new_enabled)
10349 continue;
Ville Syrjäläa4592492014-08-11 13:15:36 +030010350
10351 crtc = possible_crtc;
10352 break;
Jesse Barnes79e53942008-11-07 14:24:08 -080010353 }
10354
10355 /*
10356 * If we didn't find an unused CRTC, don't use any.
10357 */
10358 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +010010359 DRM_DEBUG_KMS("no pipe available for load-detect\n");
Maarten Lankhorstf7217902015-06-10 10:24:20 +020010360 goto fail_unlock;
Jesse Barnes79e53942008-11-07 14:24:08 -080010361 }
10362
Rob Clark51fd3712013-11-19 12:10:12 -050010363 ret = drm_modeset_lock(&crtc->mutex, ctx);
10364 if (ret)
Maarten Lankhorstf7217902015-06-10 10:24:20 +020010365 goto fail_unlock;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +010010366 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
10367 if (ret)
Maarten Lankhorstf7217902015-06-10 10:24:20 +020010368 goto fail_unlock;
10369 intel_encoder->new_crtc = to_intel_crtc(crtc);
10370 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080010371
10372 intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstf7217902015-06-10 10:24:20 +020010373 intel_crtc->new_enabled = true;
Daniel Vetter24218aa2012-08-12 19:27:11 +020010374 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +010010375 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +010010376 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -080010377
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010378 state = drm_atomic_state_alloc(dev);
10379 if (!state)
10380 return false;
10381
10382 state->acquire_ctx = ctx;
10383
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010384 connector_state = drm_atomic_get_connector_state(state, connector);
10385 if (IS_ERR(connector_state)) {
10386 ret = PTR_ERR(connector_state);
10387 goto fail;
10388 }
10389
10390 connector_state->crtc = crtc;
10391 connector_state->best_encoder = &intel_encoder->base;
10392
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010393 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
10394 if (IS_ERR(crtc_state)) {
10395 ret = PTR_ERR(crtc_state);
10396 goto fail;
10397 }
10398
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020010399 crtc_state->base.active = crtc_state->base.enable = true;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010400
Chris Wilson64927112011-04-20 07:25:26 +010010401 if (!mode)
10402 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -080010403
Chris Wilsond2dff872011-04-19 08:36:26 +010010404 /* We need a framebuffer large enough to accommodate all accesses
10405 * that the plane may generate whilst we perform load detection.
10406 * We can not rely on the fbcon either being present (we get called
10407 * during its initialisation to detect all boot displays, or it may
10408 * not even exist) or that it is large enough to satisfy the
10409 * requested mode.
10410 */
Daniel Vetter94352cf2012-07-05 22:51:56 +020010411 fb = mode_fits_in_fbdev(dev, mode);
10412 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +010010413 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +020010414 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
10415 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +010010416 } else
10417 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +020010418 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +010010419 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010420 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080010421 }
Chris Wilsond2dff872011-04-19 08:36:26 +010010422
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030010423 ret = intel_modeset_setup_plane_state(state, crtc, mode, fb, 0, 0);
10424 if (ret)
10425 goto fail;
10426
Ander Conselvan de Oliveira8c7b5cc2015-04-21 17:13:19 +030010427 drm_mode_copy(&crtc_state->base.mode, mode);
10428
Ander Conselvan de Oliveira568c6342015-06-01 12:49:57 +020010429 if (intel_set_mode(state)) {
Chris Wilson64927112011-04-20 07:25:26 +010010430 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +010010431 if (old->release_fb)
10432 old->release_fb->funcs->destroy(old->release_fb);
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010433 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080010434 }
Daniel Vetter9128b042015-03-03 17:31:21 +010010435 crtc->primary->crtc = crtc;
Chris Wilson71731882011-04-19 23:10:58 +010010436
Jesse Barnes79e53942008-11-07 14:24:08 -080010437 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -070010438 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +010010439 return true;
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010440
Maarten Lankhorstf7217902015-06-10 10:24:20 +020010441 fail:
10442 intel_crtc->new_enabled = crtc->state->enable;
10443fail_unlock:
Ander Conselvan de Oliveirae5d958e2015-04-21 17:12:57 +030010444 drm_atomic_state_free(state);
10445 state = NULL;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010446
Rob Clark51fd3712013-11-19 12:10:12 -050010447 if (ret == -EDEADLK) {
10448 drm_modeset_backoff(ctx);
10449 goto retry;
10450 }
10451
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010452 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -080010453}
10454
Daniel Vetterd2434ab2012-08-12 21:20:10 +020010455void intel_release_load_detect_pipe(struct drm_connector *connector,
Ander Conselvan de Oliveira49172fe2015-03-20 16:18:02 +020010456 struct intel_load_detect_pipe *old,
10457 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -080010458{
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010459 struct drm_device *dev = connector->dev;
Daniel Vetterd2434ab2012-08-12 21:20:10 +020010460 struct intel_encoder *intel_encoder =
10461 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +010010462 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +010010463 struct drm_crtc *crtc = encoder->crtc;
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010464 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010465 struct drm_atomic_state *state;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010466 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010467 struct intel_crtc_state *crtc_state;
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030010468 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080010469
Chris Wilsond2dff872011-04-19 08:36:26 +010010470 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +030010471 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +030010472 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +010010473
Chris Wilson8261b192011-04-19 23:18:09 +010010474 if (old->load_detect_temp) {
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010475 state = drm_atomic_state_alloc(dev);
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010476 if (!state)
10477 goto fail;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010478
10479 state->acquire_ctx = ctx;
10480
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010481 connector_state = drm_atomic_get_connector_state(state, connector);
10482 if (IS_ERR(connector_state))
10483 goto fail;
10484
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010485 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
10486 if (IS_ERR(crtc_state))
10487 goto fail;
10488
Maarten Lankhorstf7217902015-06-10 10:24:20 +020010489 to_intel_connector(connector)->new_encoder = NULL;
10490 intel_encoder->new_crtc = NULL;
10491 intel_crtc->new_enabled = false;
10492
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010493 connector_state->best_encoder = NULL;
10494 connector_state->crtc = NULL;
10495
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020010496 crtc_state->base.enable = crtc_state->base.active = false;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010497
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030010498 ret = intel_modeset_setup_plane_state(state, crtc, NULL, NULL,
10499 0, 0);
10500 if (ret)
10501 goto fail;
10502
Ander Conselvan de Oliveira568c6342015-06-01 12:49:57 +020010503 ret = intel_set_mode(state);
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030010504 if (ret)
10505 goto fail;
Chris Wilsond2dff872011-04-19 08:36:26 +010010506
Daniel Vetter36206362012-12-10 20:42:17 +010010507 if (old->release_fb) {
10508 drm_framebuffer_unregister_private(old->release_fb);
10509 drm_framebuffer_unreference(old->release_fb);
10510 }
Chris Wilsond2dff872011-04-19 08:36:26 +010010511
Chris Wilson0622a532011-04-21 09:32:11 +010010512 return;
Jesse Barnes79e53942008-11-07 14:24:08 -080010513 }
10514
Eric Anholtc751ce42010-03-25 11:48:48 -070010515 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +020010516 if (old->dpms_mode != DRM_MODE_DPMS_ON)
10517 connector->funcs->dpms(connector, old->dpms_mode);
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010518
10519 return;
10520fail:
10521 DRM_DEBUG_KMS("Couldn't release load detect pipe.\n");
10522 drm_atomic_state_free(state);
Jesse Barnes79e53942008-11-07 14:24:08 -080010523}
10524
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010525static int i9xx_pll_refclk(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010526 const struct intel_crtc_state *pipe_config)
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010527{
10528 struct drm_i915_private *dev_priv = dev->dev_private;
10529 u32 dpll = pipe_config->dpll_hw_state.dpll;
10530
10531 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
Ville Syrjäläe91e9412013-12-09 18:54:16 +020010532 return dev_priv->vbt.lvds_ssc_freq;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010533 else if (HAS_PCH_SPLIT(dev))
10534 return 120000;
10535 else if (!IS_GEN2(dev))
10536 return 96000;
10537 else
10538 return 48000;
10539}
10540
Jesse Barnes79e53942008-11-07 14:24:08 -080010541/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010542static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010543 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -080010544{
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010545 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -080010546 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010547 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +030010548 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -080010549 u32 fp;
10550 intel_clock_t clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010551 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -080010552
10553 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +030010554 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -080010555 else
Ville Syrjälä293623f2013-09-13 16:18:46 +030010556 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -080010557
10558 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -050010559 if (IS_PINEVIEW(dev)) {
10560 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
10561 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +080010562 } else {
10563 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
10564 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
10565 }
10566
Chris Wilsona6c45cf2010-09-17 00:32:17 +010010567 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -050010568 if (IS_PINEVIEW(dev))
10569 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
10570 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +080010571 else
10572 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -080010573 DPLL_FPA01_P1_POST_DIV_SHIFT);
10574
10575 switch (dpll & DPLL_MODE_MASK) {
10576 case DPLLB_MODE_DAC_SERIAL:
10577 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
10578 5 : 10;
10579 break;
10580 case DPLLB_MODE_LVDS:
10581 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
10582 7 : 14;
10583 break;
10584 default:
Zhao Yakui28c97732009-10-09 11:39:41 +080010585 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -080010586 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010587 return;
Jesse Barnes79e53942008-11-07 14:24:08 -080010588 }
10589
Daniel Vetterac58c3f2013-06-01 17:16:17 +020010590 if (IS_PINEVIEW(dev))
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010591 pineview_clock(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +020010592 else
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010593 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -080010594 } else {
Ville Syrjälä0fb58222014-01-10 14:06:46 +020010595 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +020010596 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
Jesse Barnes79e53942008-11-07 14:24:08 -080010597
10598 if (is_lvds) {
10599 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
10600 DPLL_FPA01_P1_POST_DIV_SHIFT);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +020010601
10602 if (lvds & LVDS_CLKB_POWER_UP)
10603 clock.p2 = 7;
10604 else
10605 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -080010606 } else {
10607 if (dpll & PLL_P1_DIVIDE_BY_TWO)
10608 clock.p1 = 2;
10609 else {
10610 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
10611 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
10612 }
10613 if (dpll & PLL_P2_DIVIDE_BY_4)
10614 clock.p2 = 4;
10615 else
10616 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -080010617 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010618
10619 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -080010620 }
10621
Ville Syrjälä18442d02013-09-13 16:00:08 +030010622 /*
10623 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +010010624 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +030010625 * encoder's get_config() function.
10626 */
10627 pipe_config->port_clock = clock.dot;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010628}
10629
Ville Syrjälä6878da02013-09-13 15:59:11 +030010630int intel_dotclock_calculate(int link_freq,
10631 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010632{
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010633 /*
10634 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +030010635 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010636 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +030010637 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010638 *
10639 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +030010640 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -080010641 */
10642
Ville Syrjälä6878da02013-09-13 15:59:11 +030010643 if (!m_n->link_n)
10644 return 0;
10645
10646 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
10647}
10648
Ville Syrjälä18442d02013-09-13 16:00:08 +030010649static void ironlake_pch_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010650 struct intel_crtc_state *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +030010651{
10652 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä18442d02013-09-13 16:00:08 +030010653
10654 /* read out port_clock from the DPLL */
10655 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +030010656
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010657 /*
Ville Syrjälä18442d02013-09-13 16:00:08 +030010658 * This value does not include pixel_multiplier.
Damien Lespiau241bfc32013-09-25 16:45:37 +010010659 * We will check that port_clock and adjusted_mode.crtc_clock
Ville Syrjälä18442d02013-09-13 16:00:08 +030010660 * agree once we know their relationship in the encoder's
10661 * get_config() function.
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010662 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010663 pipe_config->base.adjusted_mode.crtc_clock =
Ville Syrjälä18442d02013-09-13 16:00:08 +030010664 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
10665 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -080010666}
10667
10668/** Returns the currently programmed mode of the given pipe. */
10669struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
10670 struct drm_crtc *crtc)
10671{
Jesse Barnes548f2452011-02-17 10:40:53 -080010672 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080010673 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010674 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080010675 struct drm_display_mode *mode;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010676 struct intel_crtc_state pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -020010677 int htot = I915_READ(HTOTAL(cpu_transcoder));
10678 int hsync = I915_READ(HSYNC(cpu_transcoder));
10679 int vtot = I915_READ(VTOTAL(cpu_transcoder));
10680 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +030010681 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -080010682
10683 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
10684 if (!mode)
10685 return NULL;
10686
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010687 /*
10688 * Construct a pipe_config sufficient for getting the clock info
10689 * back out of crtc_clock_get.
10690 *
10691 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
10692 * to use a real value here instead.
10693 */
Ville Syrjälä293623f2013-09-13 16:18:46 +030010694 pipe_config.cpu_transcoder = (enum transcoder) pipe;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010695 pipe_config.pixel_multiplier = 1;
Ville Syrjälä293623f2013-09-13 16:18:46 +030010696 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
10697 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
10698 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010699 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
10700
Ville Syrjälä773ae032013-09-23 17:48:20 +030010701 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -080010702 mode->hdisplay = (htot & 0xffff) + 1;
10703 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
10704 mode->hsync_start = (hsync & 0xffff) + 1;
10705 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
10706 mode->vdisplay = (vtot & 0xffff) + 1;
10707 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
10708 mode->vsync_start = (vsync & 0xffff) + 1;
10709 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
10710
10711 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -080010712
10713 return mode;
10714}
10715
Jesse Barnes652c3932009-08-17 13:31:43 -070010716static void intel_decrease_pllclock(struct drm_crtc *crtc)
10717{
10718 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +030010719 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -070010720 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -070010721
Sonika Jindalbaff2962014-07-22 11:16:35 +053010722 if (!HAS_GMCH_DISPLAY(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -070010723 return;
10724
10725 if (!dev_priv->lvds_downclock_avail)
10726 return;
10727
10728 /*
10729 * Since this is called by a timer, we should never get here in
10730 * the manual case.
10731 */
10732 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +010010733 int pipe = intel_crtc->pipe;
10734 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +020010735 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +010010736
Zhao Yakui44d98a62009-10-09 11:39:40 +080010737 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -070010738
Sean Paul8ac5a6d2012-02-13 13:14:51 -050010739 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -070010740
Chris Wilson074b5e12012-05-02 12:07:06 +010010741 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -070010742 dpll |= DISPLAY_RATE_SELECT_FPA1;
10743 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -070010744 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -070010745 dpll = I915_READ(dpll_reg);
10746 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +080010747 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -070010748 }
10749
10750}
10751
Chris Wilsonf047e392012-07-21 12:31:41 +010010752void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -070010753{
Paulo Zanonic67a4702013-08-19 13:18:09 -030010754 struct drm_i915_private *dev_priv = dev->dev_private;
10755
Chris Wilsonf62a0072014-02-21 17:55:39 +000010756 if (dev_priv->mm.busy)
10757 return;
10758
Paulo Zanoni43694d62014-03-07 20:08:08 -030010759 intel_runtime_pm_get(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -030010760 i915_update_gfx_val(dev_priv);
Chris Wilson43cf3bf2015-03-18 09:48:22 +000010761 if (INTEL_INFO(dev)->gen >= 6)
10762 gen6_rps_busy(dev_priv);
Chris Wilsonf62a0072014-02-21 17:55:39 +000010763 dev_priv->mm.busy = true;
Chris Wilsonf047e392012-07-21 12:31:41 +010010764}
10765
10766void intel_mark_idle(struct drm_device *dev)
10767{
Paulo Zanonic67a4702013-08-19 13:18:09 -030010768 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson725a5b52013-01-08 11:02:57 +000010769 struct drm_crtc *crtc;
10770
Chris Wilsonf62a0072014-02-21 17:55:39 +000010771 if (!dev_priv->mm.busy)
10772 return;
10773
10774 dev_priv->mm.busy = false;
10775
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010010776 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -070010777 if (!crtc->primary->fb)
Chris Wilson725a5b52013-01-08 11:02:57 +000010778 continue;
10779
10780 intel_decrease_pllclock(crtc);
10781 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +010010782
Damien Lespiau3d13ef22014-02-07 19:12:47 +000010783 if (INTEL_INFO(dev)->gen >= 6)
Chris Wilsonb29c19b2013-09-25 17:34:56 +010010784 gen6_rps_idle(dev->dev_private);
Paulo Zanonibb4cdd52014-02-21 13:52:19 -030010785
Paulo Zanoni43694d62014-03-07 20:08:08 -030010786 intel_runtime_pm_put(dev_priv);
Chris Wilsonf047e392012-07-21 12:31:41 +010010787}
10788
Jesse Barnes79e53942008-11-07 14:24:08 -080010789static void intel_crtc_destroy(struct drm_crtc *crtc)
10790{
10791 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010792 struct drm_device *dev = crtc->dev;
10793 struct intel_unpin_work *work;
Daniel Vetter67e77c52010-08-20 22:26:30 +020010794
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010795 spin_lock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010796 work = intel_crtc->unpin_work;
10797 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010798 spin_unlock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010799
10800 if (work) {
10801 cancel_work_sync(&work->work);
10802 kfree(work);
10803 }
Jesse Barnes79e53942008-11-07 14:24:08 -080010804
10805 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010806
Jesse Barnes79e53942008-11-07 14:24:08 -080010807 kfree(intel_crtc);
10808}
10809
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010810static void intel_unpin_work_fn(struct work_struct *__work)
10811{
10812 struct intel_unpin_work *work =
10813 container_of(__work, struct intel_unpin_work, work);
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010814 struct drm_device *dev = work->crtc->dev;
Daniel Vetterf99d7062014-06-19 16:01:59 +020010815 enum pipe pipe = to_intel_crtc(work->crtc)->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010816
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010817 mutex_lock(&dev->struct_mutex);
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000010818 intel_unpin_fb_obj(work->old_fb, work->crtc->primary->state);
Chris Wilson05394f32010-11-08 19:18:58 +000010819 drm_gem_object_unreference(&work->pending_flip_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +000010820
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020010821 intel_fbc_update(dev);
John Harrisonf06cc1b2014-11-24 18:49:37 +000010822
10823 if (work->flip_queued_req)
John Harrison146d84f2014-12-05 13:49:33 +000010824 i915_gem_request_assign(&work->flip_queued_req, NULL);
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010825 mutex_unlock(&dev->struct_mutex);
10826
Daniel Vetterf99d7062014-06-19 16:01:59 +020010827 intel_frontbuffer_flip_complete(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
Chris Wilson89ed88b2015-02-16 14:31:49 +000010828 drm_framebuffer_unreference(work->old_fb);
Daniel Vetterf99d7062014-06-19 16:01:59 +020010829
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010830 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
10831 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
10832
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010833 kfree(work);
10834}
10835
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010836static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +010010837 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010838{
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010839 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10840 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010841 unsigned long flags;
10842
10843 /* Ignore early vblank irqs */
10844 if (intel_crtc == NULL)
10845 return;
10846
Daniel Vetterf3260382014-09-15 14:55:23 +020010847 /*
10848 * This is called both by irq handlers and the reset code (to complete
10849 * lost pageflips) so needs the full irqsave spinlocks.
10850 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010851 spin_lock_irqsave(&dev->event_lock, flags);
10852 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +000010853
10854 /* Ensure we don't miss a work->pending update ... */
10855 smp_rmb();
10856
10857 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010858 spin_unlock_irqrestore(&dev->event_lock, flags);
10859 return;
10860 }
10861
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010862 page_flip_completed(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +010010863
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010864 spin_unlock_irqrestore(&dev->event_lock, flags);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010865}
10866
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010867void intel_finish_page_flip(struct drm_device *dev, int pipe)
10868{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010869 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010870 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
10871
Mario Kleiner49b14a52010-12-09 07:00:07 +010010872 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010873}
10874
10875void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
10876{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010877 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010878 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
10879
Mario Kleiner49b14a52010-12-09 07:00:07 +010010880 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010881}
10882
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010883/* Is 'a' after or equal to 'b'? */
10884static bool g4x_flip_count_after_eq(u32 a, u32 b)
10885{
10886 return !((a - b) & 0x80000000);
10887}
10888
10889static bool page_flip_finished(struct intel_crtc *crtc)
10890{
10891 struct drm_device *dev = crtc->base.dev;
10892 struct drm_i915_private *dev_priv = dev->dev_private;
10893
Ville Syrjäläbdfa7542014-05-27 21:33:09 +030010894 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
10895 crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
10896 return true;
10897
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010898 /*
10899 * The relevant registers doen't exist on pre-ctg.
10900 * As the flip done interrupt doesn't trigger for mmio
10901 * flips on gmch platforms, a flip count check isn't
10902 * really needed there. But since ctg has the registers,
10903 * include it in the check anyway.
10904 */
10905 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
10906 return true;
10907
10908 /*
10909 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
10910 * used the same base address. In that case the mmio flip might
10911 * have completed, but the CS hasn't even executed the flip yet.
10912 *
10913 * A flip count check isn't enough as the CS might have updated
10914 * the base address just after start of vblank, but before we
10915 * managed to process the interrupt. This means we'd complete the
10916 * CS flip too soon.
10917 *
10918 * Combining both checks should get us a good enough result. It may
10919 * still happen that the CS flip has been executed, but has not
10920 * yet actually completed. But in case the base address is the same
10921 * anyway, we don't really care.
10922 */
10923 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
10924 crtc->unpin_work->gtt_offset &&
10925 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_GM45(crtc->pipe)),
10926 crtc->unpin_work->flip_count);
10927}
10928
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010929void intel_prepare_page_flip(struct drm_device *dev, int plane)
10930{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010931 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010932 struct intel_crtc *intel_crtc =
10933 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
10934 unsigned long flags;
10935
Daniel Vetterf3260382014-09-15 14:55:23 +020010936
10937 /*
10938 * This is called both by irq handlers and the reset code (to complete
10939 * lost pageflips) so needs the full irqsave spinlocks.
10940 *
10941 * NB: An MMIO update of the plane base pointer will also
Chris Wilsone7d841c2012-12-03 11:36:30 +000010942 * generate a page-flip completion irq, i.e. every modeset
10943 * is also accompanied by a spurious intel_prepare_page_flip().
10944 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010945 spin_lock_irqsave(&dev->event_lock, flags);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010946 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
Chris Wilsone7d841c2012-12-03 11:36:30 +000010947 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010948 spin_unlock_irqrestore(&dev->event_lock, flags);
10949}
10950
Robin Schroereba905b2014-05-18 02:24:50 +020010951static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
Chris Wilsone7d841c2012-12-03 11:36:30 +000010952{
10953 /* Ensure that the work item is consistent when activating it ... */
10954 smp_wmb();
10955 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
10956 /* and that it is marked active as soon as the irq could fire. */
10957 smp_wmb();
10958}
10959
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010960static int intel_gen2_queue_flip(struct drm_device *dev,
10961 struct drm_crtc *crtc,
10962 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010963 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +010010964 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -070010965 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010966{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010967 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010968 u32 flip_mask;
10969 int ret;
10970
Daniel Vetter6d90c952012-04-26 23:28:05 +020010971 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010972 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010973 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010974
10975 /* Can't queue multiple flips, so wait for the previous
10976 * one to finish before executing the next.
10977 */
10978 if (intel_crtc->plane)
10979 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
10980 else
10981 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +020010982 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
10983 intel_ring_emit(ring, MI_NOOP);
10984 intel_ring_emit(ring, MI_DISPLAY_FLIP |
10985 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
10986 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010987 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +020010988 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +000010989
10990 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +010010991 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +010010992 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010993}
10994
10995static int intel_gen3_queue_flip(struct drm_device *dev,
10996 struct drm_crtc *crtc,
10997 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010998 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +010010999 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -070011000 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011001{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011002 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011003 u32 flip_mask;
11004 int ret;
11005
Daniel Vetter6d90c952012-04-26 23:28:05 +020011006 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011007 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011008 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011009
11010 if (intel_crtc->plane)
11011 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
11012 else
11013 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +020011014 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
11015 intel_ring_emit(ring, MI_NOOP);
11016 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
11017 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11018 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011019 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +020011020 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011021
Chris Wilsone7d841c2012-12-03 11:36:30 +000011022 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +010011023 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +010011024 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011025}
11026
11027static int intel_gen4_queue_flip(struct drm_device *dev,
11028 struct drm_crtc *crtc,
11029 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011030 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +010011031 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -070011032 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011033{
11034 struct drm_i915_private *dev_priv = dev->dev_private;
11035 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11036 uint32_t pf, pipesrc;
11037 int ret;
11038
Daniel Vetter6d90c952012-04-26 23:28:05 +020011039 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011040 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011041 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011042
11043 /* i965+ uses the linear or tiled offsets from the
11044 * Display Registers (which do not change across a page-flip)
11045 * so we need only reprogram the base address.
11046 */
Daniel Vetter6d90c952012-04-26 23:28:05 +020011047 intel_ring_emit(ring, MI_DISPLAY_FLIP |
11048 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11049 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011050 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
Daniel Vetterc2c75132012-07-05 12:17:30 +020011051 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011052
11053 /* XXX Enabling the panel-fitter across page-flip is so far
11054 * untested on non-native modes, so ignore it for now.
11055 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
11056 */
11057 pf = 0;
11058 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +020011059 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +000011060
11061 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +010011062 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +010011063 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011064}
11065
11066static int intel_gen6_queue_flip(struct drm_device *dev,
11067 struct drm_crtc *crtc,
11068 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011069 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +010011070 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -070011071 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011072{
11073 struct drm_i915_private *dev_priv = dev->dev_private;
11074 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11075 uint32_t pf, pipesrc;
11076 int ret;
11077
Daniel Vetter6d90c952012-04-26 23:28:05 +020011078 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011079 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011080 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011081
Daniel Vetter6d90c952012-04-26 23:28:05 +020011082 intel_ring_emit(ring, MI_DISPLAY_FLIP |
11083 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11084 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011085 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011086
Chris Wilson99d9acd2012-04-17 20:37:00 +010011087 /* Contrary to the suggestions in the documentation,
11088 * "Enable Panel Fitter" does not seem to be required when page
11089 * flipping with a non-native mode, and worse causes a normal
11090 * modeset to fail.
11091 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
11092 */
11093 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011094 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +020011095 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +000011096
11097 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +010011098 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +010011099 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011100}
11101
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011102static int intel_gen7_queue_flip(struct drm_device *dev,
11103 struct drm_crtc *crtc,
11104 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011105 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +010011106 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -070011107 uint32_t flags)
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011108{
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011109 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettercb05d8d2012-05-23 14:02:00 +020011110 uint32_t plane_bit = 0;
Chris Wilsonffe74d72013-08-26 20:58:12 +010011111 int len, ret;
11112
Robin Schroereba905b2014-05-18 02:24:50 +020011113 switch (intel_crtc->plane) {
Daniel Vettercb05d8d2012-05-23 14:02:00 +020011114 case PLANE_A:
11115 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
11116 break;
11117 case PLANE_B:
11118 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
11119 break;
11120 case PLANE_C:
11121 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
11122 break;
11123 default:
11124 WARN_ONCE(1, "unknown plane in flip command\n");
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011125 return -ENODEV;
Daniel Vettercb05d8d2012-05-23 14:02:00 +020011126 }
11127
Chris Wilsonffe74d72013-08-26 20:58:12 +010011128 len = 4;
Damien Lespiauf4768282014-04-07 20:24:34 +010011129 if (ring->id == RCS) {
Chris Wilsonffe74d72013-08-26 20:58:12 +010011130 len += 6;
Damien Lespiauf4768282014-04-07 20:24:34 +010011131 /*
11132 * On Gen 8, SRM is now taking an extra dword to accommodate
11133 * 48bits addresses, and we need a NOOP for the batch size to
11134 * stay even.
11135 */
11136 if (IS_GEN8(dev))
11137 len += 2;
11138 }
Chris Wilsonffe74d72013-08-26 20:58:12 +010011139
Ville Syrjäläf66fab82014-02-11 19:52:06 +020011140 /*
11141 * BSpec MI_DISPLAY_FLIP for IVB:
11142 * "The full packet must be contained within the same cache line."
11143 *
11144 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
11145 * cacheline, if we ever start emitting more commands before
11146 * the MI_DISPLAY_FLIP we may need to first emit everything else,
11147 * then do the cacheline alignment, and finally emit the
11148 * MI_DISPLAY_FLIP.
11149 */
11150 ret = intel_ring_cacheline_align(ring);
11151 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011152 return ret;
Ville Syrjäläf66fab82014-02-11 19:52:06 +020011153
Chris Wilsonffe74d72013-08-26 20:58:12 +010011154 ret = intel_ring_begin(ring, len);
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011155 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011156 return ret;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011157
Chris Wilsonffe74d72013-08-26 20:58:12 +010011158 /* Unmask the flip-done completion message. Note that the bspec says that
11159 * we should do this for both the BCS and RCS, and that we must not unmask
11160 * more than one flip event at any time (or ensure that one flip message
11161 * can be sent by waiting for flip-done prior to queueing new flips).
11162 * Experimentation says that BCS works despite DERRMR masking all
11163 * flip-done completion events and that unmasking all planes at once
11164 * for the RCS also doesn't appear to drop events. Setting the DERRMR
11165 * to zero does lead to lockups within MI_DISPLAY_FLIP.
11166 */
11167 if (ring->id == RCS) {
11168 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
11169 intel_ring_emit(ring, DERRMR);
11170 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
11171 DERRMR_PIPEB_PRI_FLIP_DONE |
11172 DERRMR_PIPEC_PRI_FLIP_DONE));
Damien Lespiauf4768282014-04-07 20:24:34 +010011173 if (IS_GEN8(dev))
11174 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
11175 MI_SRM_LRM_GLOBAL_GTT);
11176 else
11177 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) |
11178 MI_SRM_LRM_GLOBAL_GTT);
Chris Wilsonffe74d72013-08-26 20:58:12 +010011179 intel_ring_emit(ring, DERRMR);
11180 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Damien Lespiauf4768282014-04-07 20:24:34 +010011181 if (IS_GEN8(dev)) {
11182 intel_ring_emit(ring, 0);
11183 intel_ring_emit(ring, MI_NOOP);
11184 }
Chris Wilsonffe74d72013-08-26 20:58:12 +010011185 }
11186
Daniel Vettercb05d8d2012-05-23 14:02:00 +020011187 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +020011188 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011189 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011190 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +000011191
11192 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +010011193 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +010011194 return 0;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011195}
11196
Sourab Gupta84c33a62014-06-02 16:47:17 +053011197static bool use_mmio_flip(struct intel_engine_cs *ring,
11198 struct drm_i915_gem_object *obj)
11199{
11200 /*
11201 * This is not being used for older platforms, because
11202 * non-availability of flip done interrupt forces us to use
11203 * CS flips. Older platforms derive flip done using some clever
11204 * tricks involving the flip_pending status bits and vblank irqs.
11205 * So using MMIO flips there would disrupt this mechanism.
11206 */
11207
Chris Wilson8e09bf82014-07-08 10:40:30 +010011208 if (ring == NULL)
11209 return true;
11210
Sourab Gupta84c33a62014-06-02 16:47:17 +053011211 if (INTEL_INFO(ring->dev)->gen < 5)
11212 return false;
11213
11214 if (i915.use_mmio_flip < 0)
11215 return false;
11216 else if (i915.use_mmio_flip > 0)
11217 return true;
Oscar Mateo14bf9932014-07-24 17:04:34 +010011218 else if (i915.enable_execlists)
11219 return true;
Sourab Gupta84c33a62014-06-02 16:47:17 +053011220 else
Chris Wilsonb4716182015-04-27 13:41:17 +010011221 return ring != i915_gem_request_get_ring(obj->last_write_req);
Sourab Gupta84c33a62014-06-02 16:47:17 +053011222}
11223
Damien Lespiauff944562014-11-20 14:58:16 +000011224static void skl_do_mmio_flip(struct intel_crtc *intel_crtc)
11225{
11226 struct drm_device *dev = intel_crtc->base.dev;
11227 struct drm_i915_private *dev_priv = dev->dev_private;
11228 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
Damien Lespiauff944562014-11-20 14:58:16 +000011229 const enum pipe pipe = intel_crtc->pipe;
11230 u32 ctl, stride;
11231
11232 ctl = I915_READ(PLANE_CTL(pipe, 0));
11233 ctl &= ~PLANE_CTL_TILED_MASK;
Tvrtko Ursulin2ebef632015-04-20 16:22:48 +010011234 switch (fb->modifier[0]) {
11235 case DRM_FORMAT_MOD_NONE:
11236 break;
11237 case I915_FORMAT_MOD_X_TILED:
Damien Lespiauff944562014-11-20 14:58:16 +000011238 ctl |= PLANE_CTL_TILED_X;
Tvrtko Ursulin2ebef632015-04-20 16:22:48 +010011239 break;
11240 case I915_FORMAT_MOD_Y_TILED:
11241 ctl |= PLANE_CTL_TILED_Y;
11242 break;
11243 case I915_FORMAT_MOD_Yf_TILED:
11244 ctl |= PLANE_CTL_TILED_YF;
11245 break;
11246 default:
11247 MISSING_CASE(fb->modifier[0]);
11248 }
Damien Lespiauff944562014-11-20 14:58:16 +000011249
11250 /*
11251 * The stride is either expressed as a multiple of 64 bytes chunks for
11252 * linear buffers or in number of tiles for tiled buffers.
11253 */
Tvrtko Ursulin2ebef632015-04-20 16:22:48 +010011254 stride = fb->pitches[0] /
11255 intel_fb_stride_alignment(dev, fb->modifier[0],
11256 fb->pixel_format);
Damien Lespiauff944562014-11-20 14:58:16 +000011257
11258 /*
11259 * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on
11260 * PLANE_SURF updates, the update is then guaranteed to be atomic.
11261 */
11262 I915_WRITE(PLANE_CTL(pipe, 0), ctl);
11263 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
11264
11265 I915_WRITE(PLANE_SURF(pipe, 0), intel_crtc->unpin_work->gtt_offset);
11266 POSTING_READ(PLANE_SURF(pipe, 0));
11267}
11268
11269static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc)
Sourab Gupta84c33a62014-06-02 16:47:17 +053011270{
11271 struct drm_device *dev = intel_crtc->base.dev;
11272 struct drm_i915_private *dev_priv = dev->dev_private;
11273 struct intel_framebuffer *intel_fb =
11274 to_intel_framebuffer(intel_crtc->base.primary->fb);
11275 struct drm_i915_gem_object *obj = intel_fb->obj;
11276 u32 dspcntr;
11277 u32 reg;
11278
Sourab Gupta84c33a62014-06-02 16:47:17 +053011279 reg = DSPCNTR(intel_crtc->plane);
11280 dspcntr = I915_READ(reg);
11281
Damien Lespiauc5d97472014-10-25 00:11:11 +010011282 if (obj->tiling_mode != I915_TILING_NONE)
11283 dspcntr |= DISPPLANE_TILED;
11284 else
11285 dspcntr &= ~DISPPLANE_TILED;
11286
Sourab Gupta84c33a62014-06-02 16:47:17 +053011287 I915_WRITE(reg, dspcntr);
11288
11289 I915_WRITE(DSPSURF(intel_crtc->plane),
11290 intel_crtc->unpin_work->gtt_offset);
11291 POSTING_READ(DSPSURF(intel_crtc->plane));
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020011292
Damien Lespiauff944562014-11-20 14:58:16 +000011293}
11294
11295/*
11296 * XXX: This is the temporary way to update the plane registers until we get
11297 * around to using the usual plane update functions for MMIO flips
11298 */
11299static void intel_do_mmio_flip(struct intel_crtc *intel_crtc)
11300{
11301 struct drm_device *dev = intel_crtc->base.dev;
11302 bool atomic_update;
11303 u32 start_vbl_count;
11304
11305 intel_mark_page_flip_active(intel_crtc);
11306
11307 atomic_update = intel_pipe_update_start(intel_crtc, &start_vbl_count);
11308
11309 if (INTEL_INFO(dev)->gen >= 9)
11310 skl_do_mmio_flip(intel_crtc);
11311 else
11312 /* use_mmio_flip() retricts MMIO flips to ilk+ */
11313 ilk_do_mmio_flip(intel_crtc);
11314
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020011315 if (atomic_update)
11316 intel_pipe_update_end(intel_crtc, start_vbl_count);
Sourab Gupta84c33a62014-06-02 16:47:17 +053011317}
11318
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020011319static void intel_mmio_flip_work_func(struct work_struct *work)
Sourab Gupta84c33a62014-06-02 16:47:17 +053011320{
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011321 struct intel_mmio_flip *mmio_flip =
11322 container_of(work, struct intel_mmio_flip, work);
Sourab Gupta84c33a62014-06-02 16:47:17 +053011323
Daniel Vettereed29a52015-05-21 14:21:25 +020011324 if (mmio_flip->req)
11325 WARN_ON(__i915_wait_request(mmio_flip->req,
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011326 mmio_flip->crtc->reset_counter,
Chris Wilsonbcafc4e2015-04-27 13:41:21 +010011327 false, NULL,
11328 &mmio_flip->i915->rps.mmioflips));
Sourab Gupta84c33a62014-06-02 16:47:17 +053011329
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011330 intel_do_mmio_flip(mmio_flip->crtc);
11331
Daniel Vettereed29a52015-05-21 14:21:25 +020011332 i915_gem_request_unreference__unlocked(mmio_flip->req);
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011333 kfree(mmio_flip);
Sourab Gupta84c33a62014-06-02 16:47:17 +053011334}
11335
11336static int intel_queue_mmio_flip(struct drm_device *dev,
11337 struct drm_crtc *crtc,
11338 struct drm_framebuffer *fb,
11339 struct drm_i915_gem_object *obj,
11340 struct intel_engine_cs *ring,
11341 uint32_t flags)
11342{
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011343 struct intel_mmio_flip *mmio_flip;
Sourab Gupta84c33a62014-06-02 16:47:17 +053011344
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011345 mmio_flip = kmalloc(sizeof(*mmio_flip), GFP_KERNEL);
11346 if (mmio_flip == NULL)
11347 return -ENOMEM;
Sourab Gupta84c33a62014-06-02 16:47:17 +053011348
Chris Wilsonbcafc4e2015-04-27 13:41:21 +010011349 mmio_flip->i915 = to_i915(dev);
Daniel Vettereed29a52015-05-21 14:21:25 +020011350 mmio_flip->req = i915_gem_request_reference(obj->last_write_req);
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011351 mmio_flip->crtc = to_intel_crtc(crtc);
11352
11353 INIT_WORK(&mmio_flip->work, intel_mmio_flip_work_func);
11354 schedule_work(&mmio_flip->work);
Ander Conselvan de Oliveira536f5b52014-11-06 11:03:40 +020011355
Sourab Gupta84c33a62014-06-02 16:47:17 +053011356 return 0;
11357}
11358
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011359static int intel_default_queue_flip(struct drm_device *dev,
11360 struct drm_crtc *crtc,
11361 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011362 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +010011363 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -070011364 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011365{
11366 return -ENODEV;
11367}
11368
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011369static bool __intel_pageflip_stall_check(struct drm_device *dev,
11370 struct drm_crtc *crtc)
11371{
11372 struct drm_i915_private *dev_priv = dev->dev_private;
11373 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11374 struct intel_unpin_work *work = intel_crtc->unpin_work;
11375 u32 addr;
11376
11377 if (atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE)
11378 return true;
11379
11380 if (!work->enable_stall_check)
11381 return false;
11382
11383 if (work->flip_ready_vblank == 0) {
Daniel Vetter3a8a9462014-11-26 14:39:48 +010011384 if (work->flip_queued_req &&
11385 !i915_gem_request_completed(work->flip_queued_req, true))
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011386 return false;
11387
Daniel Vetter1e3feef2015-02-13 21:03:45 +010011388 work->flip_ready_vblank = drm_crtc_vblank_count(crtc);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011389 }
11390
Daniel Vetter1e3feef2015-02-13 21:03:45 +010011391 if (drm_crtc_vblank_count(crtc) - work->flip_ready_vblank < 3)
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011392 return false;
11393
11394 /* Potential stall - if we see that the flip has happened,
11395 * assume a missed interrupt. */
11396 if (INTEL_INFO(dev)->gen >= 4)
11397 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane)));
11398 else
11399 addr = I915_READ(DSPADDR(intel_crtc->plane));
11400
11401 /* There is a potential issue here with a false positive after a flip
11402 * to the same address. We could address this by checking for a
11403 * non-incrementing frame counter.
11404 */
11405 return addr == work->gtt_offset;
11406}
11407
11408void intel_check_page_flip(struct drm_device *dev, int pipe)
11409{
11410 struct drm_i915_private *dev_priv = dev->dev_private;
11411 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
11412 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson6ad790c2015-04-07 16:20:31 +010011413 struct intel_unpin_work *work;
Daniel Vetterf3260382014-09-15 14:55:23 +020011414
Dave Gordon6c51d462015-03-06 15:34:26 +000011415 WARN_ON(!in_interrupt());
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011416
11417 if (crtc == NULL)
11418 return;
11419
Daniel Vetterf3260382014-09-15 14:55:23 +020011420 spin_lock(&dev->event_lock);
Chris Wilson6ad790c2015-04-07 16:20:31 +010011421 work = intel_crtc->unpin_work;
11422 if (work != NULL && __intel_pageflip_stall_check(dev, crtc)) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011423 WARN_ONCE(1, "Kicking stuck page flip: queued at %d, now %d\n",
Chris Wilson6ad790c2015-04-07 16:20:31 +010011424 work->flip_queued_vblank, drm_vblank_count(dev, pipe));
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011425 page_flip_completed(intel_crtc);
Chris Wilson6ad790c2015-04-07 16:20:31 +010011426 work = NULL;
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011427 }
Chris Wilson6ad790c2015-04-07 16:20:31 +010011428 if (work != NULL &&
11429 drm_vblank_count(dev, pipe) - work->flip_queued_vblank > 1)
11430 intel_queue_rps_boost_for_request(dev, work->flip_queued_req);
Daniel Vetterf3260382014-09-15 14:55:23 +020011431 spin_unlock(&dev->event_lock);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011432}
11433
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011434static int intel_crtc_page_flip(struct drm_crtc *crtc,
11435 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011436 struct drm_pending_vblank_event *event,
11437 uint32_t page_flip_flags)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011438{
11439 struct drm_device *dev = crtc->dev;
11440 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperf4510a22014-04-01 15:22:40 -070011441 struct drm_framebuffer *old_fb = crtc->primary->fb;
Matt Roper2ff8fde2014-07-08 07:50:07 -070011442 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011443 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Gustavo Padovan455a6802014-12-01 15:40:11 -080011444 struct drm_plane *primary = crtc->primary;
Daniel Vettera071fa02014-06-18 23:28:09 +020011445 enum pipe pipe = intel_crtc->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011446 struct intel_unpin_work *work;
Oscar Mateoa4872ba2014-05-22 14:13:33 +010011447 struct intel_engine_cs *ring;
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010011448 bool mmio_flip;
Chris Wilson52e68632010-08-08 10:15:59 +010011449 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011450
Matt Roper2ff8fde2014-07-08 07:50:07 -070011451 /*
11452 * drm_mode_page_flip_ioctl() should already catch this, but double
11453 * check to be safe. In the future we may enable pageflipping from
11454 * a disabled primary plane.
11455 */
11456 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
11457 return -EBUSY;
11458
Ville Syrjäläe6a595d2012-05-24 21:08:59 +030011459 /* Can't change pixel format via MI display flips. */
Matt Roperf4510a22014-04-01 15:22:40 -070011460 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Ville Syrjäläe6a595d2012-05-24 21:08:59 +030011461 return -EINVAL;
11462
11463 /*
11464 * TILEOFF/LINOFF registers can't be changed via MI display flips.
11465 * Note that pitch changes could also affect these register.
11466 */
11467 if (INTEL_INFO(dev)->gen > 3 &&
Matt Roperf4510a22014-04-01 15:22:40 -070011468 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
11469 fb->pitches[0] != crtc->primary->fb->pitches[0]))
Ville Syrjäläe6a595d2012-05-24 21:08:59 +030011470 return -EINVAL;
11471
Chris Wilsonf900db42014-02-20 09:26:13 +000011472 if (i915_terminally_wedged(&dev_priv->gpu_error))
11473 goto out_hang;
11474
Daniel Vetterb14c5672013-09-19 12:18:32 +020011475 work = kzalloc(sizeof(*work), GFP_KERNEL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011476 if (work == NULL)
11477 return -ENOMEM;
11478
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011479 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011480 work->crtc = crtc;
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000011481 work->old_fb = old_fb;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011482 INIT_WORK(&work->work, intel_unpin_work_fn);
11483
Daniel Vetter87b6b102014-05-15 15:33:46 +020011484 ret = drm_crtc_vblank_get(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -070011485 if (ret)
11486 goto free_work;
11487
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011488 /* We borrow the event spin lock for protecting unpin_work */
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011489 spin_lock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011490 if (intel_crtc->unpin_work) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011491 /* Before declaring the flip queue wedged, check if
11492 * the hardware completed the operation behind our backs.
11493 */
11494 if (__intel_pageflip_stall_check(dev, crtc)) {
11495 DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n");
11496 page_flip_completed(intel_crtc);
11497 } else {
11498 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011499 spin_unlock_irq(&dev->event_lock);
Chris Wilson468f0b42010-05-27 13:18:13 +010011500
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011501 drm_crtc_vblank_put(crtc);
11502 kfree(work);
11503 return -EBUSY;
11504 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011505 }
11506 intel_crtc->unpin_work = work;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011507 spin_unlock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011508
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011509 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
11510 flush_workqueue(dev_priv->wq);
11511
Jesse Barnes75dfca82010-02-10 15:09:44 -080011512 /* Reference the objects for the scheduled work. */
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000011513 drm_framebuffer_reference(work->old_fb);
Chris Wilson05394f32010-11-08 19:18:58 +000011514 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011515
Matt Roperf4510a22014-04-01 15:22:40 -070011516 crtc->primary->fb = fb;
Matt Roperafd65eb2015-02-03 13:10:04 -080011517 update_state_fb(crtc->primary);
Matt Roper1ed1f962015-01-30 16:22:36 -080011518
Chris Wilsone1f99ce2010-10-27 12:45:26 +010011519 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +010011520
Chris Wilson89ed88b2015-02-16 14:31:49 +000011521 ret = i915_mutex_lock_interruptible(dev);
11522 if (ret)
11523 goto cleanup;
11524
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011525 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +020011526 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +010011527
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011528 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
Daniel Vettera071fa02014-06-18 23:28:09 +020011529 work->flip_count = I915_READ(PIPE_FLIPCOUNT_GM45(pipe)) + 1;
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011530
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011531 if (IS_VALLEYVIEW(dev)) {
11532 ring = &dev_priv->ring[BCS];
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000011533 if (obj->tiling_mode != intel_fb_obj(work->old_fb)->tiling_mode)
Chris Wilson8e09bf82014-07-08 10:40:30 +010011534 /* vlv: DISPLAY_FLIP fails to change tiling */
11535 ring = NULL;
Chris Wilson48bf5b22014-12-27 09:48:28 +000011536 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Chris Wilson2a92d5b2014-07-08 10:40:29 +010011537 ring = &dev_priv->ring[BCS];
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011538 } else if (INTEL_INFO(dev)->gen >= 7) {
Chris Wilsonb4716182015-04-27 13:41:17 +010011539 ring = i915_gem_request_get_ring(obj->last_write_req);
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011540 if (ring == NULL || ring->id != RCS)
11541 ring = &dev_priv->ring[BCS];
11542 } else {
11543 ring = &dev_priv->ring[RCS];
11544 }
11545
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010011546 mmio_flip = use_mmio_flip(ring, obj);
11547
11548 /* When using CS flips, we want to emit semaphores between rings.
11549 * However, when using mmio flips we will create a task to do the
11550 * synchronisation, so all we want here is to pin the framebuffer
11551 * into the display plane and skip any waits.
11552 */
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000011553 ret = intel_pin_and_fence_fb_obj(crtc->primary, fb,
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010011554 crtc->primary->state,
Chris Wilsonb4716182015-04-27 13:41:17 +010011555 mmio_flip ? i915_gem_request_get_ring(obj->last_write_req) : ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011556 if (ret)
11557 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011558
Tvrtko Ursulin121920f2015-03-23 11:10:37 +000011559 work->gtt_offset = intel_plane_obj_offset(to_intel_plane(primary), obj)
11560 + intel_crtc->dspaddr_offset;
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011561
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010011562 if (mmio_flip) {
Sourab Gupta84c33a62014-06-02 16:47:17 +053011563 ret = intel_queue_mmio_flip(dev, crtc, fb, obj, ring,
11564 page_flip_flags);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011565 if (ret)
11566 goto cleanup_unpin;
11567
John Harrisonf06cc1b2014-11-24 18:49:37 +000011568 i915_gem_request_assign(&work->flip_queued_req,
11569 obj->last_write_req);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011570 } else {
Chris Wilsond94b5032015-04-27 13:41:15 +010011571 if (obj->last_write_req) {
11572 ret = i915_gem_check_olr(obj->last_write_req);
11573 if (ret)
11574 goto cleanup_unpin;
11575 }
11576
Sourab Gupta84c33a62014-06-02 16:47:17 +053011577 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, ring,
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011578 page_flip_flags);
11579 if (ret)
11580 goto cleanup_unpin;
11581
John Harrisonf06cc1b2014-11-24 18:49:37 +000011582 i915_gem_request_assign(&work->flip_queued_req,
11583 intel_ring_get_request(ring));
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011584 }
11585
Daniel Vetter1e3feef2015-02-13 21:03:45 +010011586 work->flip_queued_vblank = drm_crtc_vblank_count(crtc);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011587 work->enable_stall_check = true;
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011588
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000011589 i915_gem_track_fb(intel_fb_obj(work->old_fb), obj,
Daniel Vettera071fa02014-06-18 23:28:09 +020011590 INTEL_FRONTBUFFER_PRIMARY(pipe));
11591
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020011592 intel_fbc_disable(dev);
Daniel Vetterf99d7062014-06-19 16:01:59 +020011593 intel_frontbuffer_flip_prepare(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011594 mutex_unlock(&dev->struct_mutex);
11595
Jesse Barnese5510fa2010-07-01 16:48:37 -070011596 trace_i915_flip_request(intel_crtc->plane, obj);
11597
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011598 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +010011599
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011600cleanup_unpin:
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000011601 intel_unpin_fb_obj(fb, crtc->primary->state);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011602cleanup_pending:
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011603 atomic_dec(&intel_crtc->unpin_work_count);
Chris Wilson89ed88b2015-02-16 14:31:49 +000011604 mutex_unlock(&dev->struct_mutex);
11605cleanup:
Matt Roperf4510a22014-04-01 15:22:40 -070011606 crtc->primary->fb = old_fb;
Matt Roperafd65eb2015-02-03 13:10:04 -080011607 update_state_fb(crtc->primary);
Chris Wilson96b099f2010-06-07 14:03:04 +010011608
Chris Wilson89ed88b2015-02-16 14:31:49 +000011609 drm_gem_object_unreference_unlocked(&obj->base);
11610 drm_framebuffer_unreference(work->old_fb);
11611
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011612 spin_lock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +010011613 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011614 spin_unlock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +010011615
Daniel Vetter87b6b102014-05-15 15:33:46 +020011616 drm_crtc_vblank_put(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -070011617free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +010011618 kfree(work);
11619
Chris Wilsonf900db42014-02-20 09:26:13 +000011620 if (ret == -EIO) {
Maarten Lankhorst02e0efb2015-06-12 11:15:40 +020011621 struct drm_atomic_state *state;
11622 struct drm_plane_state *plane_state;
11623
Chris Wilsonf900db42014-02-20 09:26:13 +000011624out_hang:
Maarten Lankhorst02e0efb2015-06-12 11:15:40 +020011625 state = drm_atomic_state_alloc(dev);
11626 if (!state)
11627 return -ENOMEM;
11628 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
11629
11630retry:
11631 plane_state = drm_atomic_get_plane_state(state, primary);
11632 ret = PTR_ERR_OR_ZERO(plane_state);
11633 if (!ret) {
11634 drm_atomic_set_fb_for_plane(plane_state, fb);
11635
11636 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
11637 if (!ret)
11638 ret = drm_atomic_commit(state);
11639 }
11640
11641 if (ret == -EDEADLK) {
11642 drm_modeset_backoff(state->acquire_ctx);
11643 drm_atomic_state_clear(state);
11644 goto retry;
11645 }
11646
11647 if (ret)
11648 drm_atomic_state_free(state);
11649
Chris Wilsonf0d3dad2014-09-07 16:51:12 +010011650 if (ret == 0 && event) {
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011651 spin_lock_irq(&dev->event_lock);
Daniel Vettera071fa02014-06-18 23:28:09 +020011652 drm_send_vblank_event(dev, pipe, event);
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011653 spin_unlock_irq(&dev->event_lock);
Chris Wilsonf0d3dad2014-09-07 16:51:12 +010011654 }
Chris Wilsonf900db42014-02-20 09:26:13 +000011655 }
Chris Wilson96b099f2010-06-07 14:03:04 +010011656 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011657}
11658
Jani Nikula65b38e02015-04-13 11:26:56 +030011659static const struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011660 .mode_set_base_atomic = intel_pipe_set_base_atomic,
11661 .load_lut = intel_crtc_load_lut,
Matt Roperea2c67b2014-12-23 10:41:52 -080011662 .atomic_begin = intel_begin_crtc_commit,
11663 .atomic_flush = intel_finish_crtc_commit,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011664};
11665
Maarten Lankhorstf7217902015-06-10 10:24:20 +020011666/**
11667 * intel_modeset_update_staged_output_state
11668 *
11669 * Updates the staged output configuration state, e.g. after we've read out the
11670 * current hw state.
11671 */
11672static void intel_modeset_update_staged_output_state(struct drm_device *dev)
11673{
11674 struct intel_crtc *crtc;
11675 struct intel_encoder *encoder;
11676 struct intel_connector *connector;
11677
11678 for_each_intel_connector(dev, connector) {
11679 connector->new_encoder =
11680 to_intel_encoder(connector->base.encoder);
11681 }
11682
11683 for_each_intel_encoder(dev, encoder) {
11684 encoder->new_crtc =
11685 to_intel_crtc(encoder->base.crtc);
11686 }
11687
11688 for_each_intel_crtc(dev, crtc) {
11689 crtc->new_enabled = crtc->base.state->enable;
11690 }
11691}
11692
Ander Conselvan de Oliveirad29b2f92015-03-20 16:18:05 +020011693/* Transitional helper to copy current connector/encoder state to
11694 * connector->state. This is needed so that code that is partially
11695 * converted to atomic does the right thing.
11696 */
11697static void intel_modeset_update_connector_atomic_state(struct drm_device *dev)
11698{
11699 struct intel_connector *connector;
11700
11701 for_each_intel_connector(dev, connector) {
11702 if (connector->base.encoder) {
11703 connector->base.state->best_encoder =
11704 connector->base.encoder;
11705 connector->base.state->crtc =
11706 connector->base.encoder->crtc;
11707 } else {
11708 connector->base.state->best_encoder = NULL;
11709 connector->base.state->crtc = NULL;
11710 }
11711 }
11712}
11713
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011714static void
Robin Schroereba905b2014-05-18 02:24:50 +020011715connected_sink_compute_bpp(struct intel_connector *connector,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011716 struct intel_crtc_state *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011717{
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011718 int bpp = pipe_config->pipe_bpp;
11719
11720 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
11721 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030011722 connector->base.name);
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011723
11724 /* Don't use an invalid EDID bpc value */
11725 if (connector->base.display_info.bpc &&
11726 connector->base.display_info.bpc * 3 < bpp) {
11727 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
11728 bpp, connector->base.display_info.bpc*3);
11729 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
11730 }
11731
11732 /* Clamp bpp to 8 on screens without EDID 1.4 */
11733 if (connector->base.display_info.bpc == 0 && bpp > 24) {
11734 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
11735 bpp);
11736 pipe_config->pipe_bpp = 24;
11737 }
11738}
11739
11740static int
11741compute_baseline_pipe_bpp(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011742 struct intel_crtc_state *pipe_config)
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011743{
11744 struct drm_device *dev = crtc->base.dev;
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020011745 struct drm_atomic_state *state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011746 struct drm_connector *connector;
11747 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020011748 int bpp, i;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011749
Daniel Vetterd328c9d2015-04-10 16:22:37 +020011750 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)))
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011751 bpp = 10*3;
Daniel Vetterd328c9d2015-04-10 16:22:37 +020011752 else if (INTEL_INFO(dev)->gen >= 5)
11753 bpp = 12*3;
11754 else
11755 bpp = 8*3;
11756
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011757
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011758 pipe_config->pipe_bpp = bpp;
11759
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020011760 state = pipe_config->base.state;
11761
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011762 /* Clamp display bpp to EDID value */
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011763 for_each_connector_in_state(state, connector, connector_state, i) {
11764 if (connector_state->crtc != &crtc->base)
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020011765 continue;
11766
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011767 connected_sink_compute_bpp(to_intel_connector(connector),
11768 pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011769 }
11770
11771 return bpp;
11772}
11773
Daniel Vetter644db712013-09-19 14:53:58 +020011774static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
11775{
11776 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
11777 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +010011778 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +020011779 mode->crtc_hdisplay, mode->crtc_hsync_start,
11780 mode->crtc_hsync_end, mode->crtc_htotal,
11781 mode->crtc_vdisplay, mode->crtc_vsync_start,
11782 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
11783}
11784
Daniel Vetterc0b03412013-05-28 12:05:54 +020011785static void intel_dump_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011786 struct intel_crtc_state *pipe_config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020011787 const char *context)
11788{
Chandra Konduru6a60cd82015-04-07 15:28:40 -070011789 struct drm_device *dev = crtc->base.dev;
11790 struct drm_plane *plane;
11791 struct intel_plane *intel_plane;
11792 struct intel_plane_state *state;
11793 struct drm_framebuffer *fb;
11794
11795 DRM_DEBUG_KMS("[CRTC:%d]%s config %p for pipe %c\n", crtc->base.base.id,
11796 context, pipe_config, pipe_name(crtc->pipe));
Daniel Vetterc0b03412013-05-28 12:05:54 +020011797
11798 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
11799 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
11800 pipe_config->pipe_bpp, pipe_config->dither);
11801 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
11802 pipe_config->has_pch_encoder,
11803 pipe_config->fdi_lanes,
11804 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
11805 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
11806 pipe_config->fdi_m_n.tu);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030011807 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
11808 pipe_config->has_dp_encoder,
11809 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
11810 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
11811 pipe_config->dp_m_n.tu);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070011812
11813 DRM_DEBUG_KMS("dp: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n",
11814 pipe_config->has_dp_encoder,
11815 pipe_config->dp_m2_n2.gmch_m,
11816 pipe_config->dp_m2_n2.gmch_n,
11817 pipe_config->dp_m2_n2.link_m,
11818 pipe_config->dp_m2_n2.link_n,
11819 pipe_config->dp_m2_n2.tu);
11820
Daniel Vetter55072d12014-11-20 16:10:28 +010011821 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
11822 pipe_config->has_audio,
11823 pipe_config->has_infoframe);
11824
Daniel Vetterc0b03412013-05-28 12:05:54 +020011825 DRM_DEBUG_KMS("requested mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011826 drm_mode_debug_printmodeline(&pipe_config->base.mode);
Daniel Vetterc0b03412013-05-28 12:05:54 +020011827 DRM_DEBUG_KMS("adjusted mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011828 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
11829 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +030011830 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030011831 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
11832 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Tvrtko Ursulin0ec463d2015-05-13 16:51:08 +010011833 DRM_DEBUG_KMS("num_scalers: %d, scaler_users: 0x%x, scaler_id: %d\n",
11834 crtc->num_scalers,
11835 pipe_config->scaler_state.scaler_users,
11836 pipe_config->scaler_state.scaler_id);
Daniel Vetterc0b03412013-05-28 12:05:54 +020011837 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
11838 pipe_config->gmch_pfit.control,
11839 pipe_config->gmch_pfit.pgm_ratios,
11840 pipe_config->gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +010011841 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
Daniel Vetterc0b03412013-05-28 12:05:54 +020011842 pipe_config->pch_pfit.pos,
Chris Wilsonfd4daa92013-08-27 17:04:17 +010011843 pipe_config->pch_pfit.size,
11844 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
Paulo Zanoni42db64e2013-05-31 16:33:22 -030011845 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Ville Syrjäläcf532bb2013-09-04 18:30:02 +030011846 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
Chandra Konduru6a60cd82015-04-07 15:28:40 -070011847
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010011848 if (IS_BROXTON(dev)) {
11849 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: ebb0: 0x%x, "
11850 "pll0: 0x%x, pll1: 0x%x, pll2: 0x%x, pll3: 0x%x, "
11851 "pll6: 0x%x, pll8: 0x%x, pcsdw12: 0x%x\n",
11852 pipe_config->ddi_pll_sel,
11853 pipe_config->dpll_hw_state.ebb0,
11854 pipe_config->dpll_hw_state.pll0,
11855 pipe_config->dpll_hw_state.pll1,
11856 pipe_config->dpll_hw_state.pll2,
11857 pipe_config->dpll_hw_state.pll3,
11858 pipe_config->dpll_hw_state.pll6,
11859 pipe_config->dpll_hw_state.pll8,
11860 pipe_config->dpll_hw_state.pcsdw12);
11861 } else if (IS_SKYLAKE(dev)) {
11862 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: "
11863 "ctrl1: 0x%x, cfgcr1: 0x%x, cfgcr2: 0x%x\n",
11864 pipe_config->ddi_pll_sel,
11865 pipe_config->dpll_hw_state.ctrl1,
11866 pipe_config->dpll_hw_state.cfgcr1,
11867 pipe_config->dpll_hw_state.cfgcr2);
11868 } else if (HAS_DDI(dev)) {
11869 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: wrpll: 0x%x\n",
11870 pipe_config->ddi_pll_sel,
11871 pipe_config->dpll_hw_state.wrpll);
11872 } else {
11873 DRM_DEBUG_KMS("dpll_hw_state: dpll: 0x%x, dpll_md: 0x%x, "
11874 "fp0: 0x%x, fp1: 0x%x\n",
11875 pipe_config->dpll_hw_state.dpll,
11876 pipe_config->dpll_hw_state.dpll_md,
11877 pipe_config->dpll_hw_state.fp0,
11878 pipe_config->dpll_hw_state.fp1);
11879 }
11880
Chandra Konduru6a60cd82015-04-07 15:28:40 -070011881 DRM_DEBUG_KMS("planes on this crtc\n");
11882 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
11883 intel_plane = to_intel_plane(plane);
11884 if (intel_plane->pipe != crtc->pipe)
11885 continue;
11886
11887 state = to_intel_plane_state(plane->state);
11888 fb = state->base.fb;
11889 if (!fb) {
11890 DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d "
11891 "disabled, scaler_id = %d\n",
11892 plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD",
11893 plane->base.id, intel_plane->pipe,
11894 (crtc->base.primary == plane) ? 0 : intel_plane->plane + 1,
11895 drm_plane_index(plane), state->scaler_id);
11896 continue;
11897 }
11898
11899 DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d enabled",
11900 plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD",
11901 plane->base.id, intel_plane->pipe,
11902 crtc->base.primary == plane ? 0 : intel_plane->plane + 1,
11903 drm_plane_index(plane));
11904 DRM_DEBUG_KMS("\tFB:%d, fb = %ux%u format = 0x%x",
11905 fb->base.id, fb->width, fb->height, fb->pixel_format);
11906 DRM_DEBUG_KMS("\tscaler:%d src (%u, %u) %ux%u dst (%u, %u) %ux%u\n",
11907 state->scaler_id,
11908 state->src.x1 >> 16, state->src.y1 >> 16,
11909 drm_rect_width(&state->src) >> 16,
11910 drm_rect_height(&state->src) >> 16,
11911 state->dst.x1, state->dst.y1,
11912 drm_rect_width(&state->dst), drm_rect_height(&state->dst));
11913 }
Daniel Vetterc0b03412013-05-28 12:05:54 +020011914}
11915
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011916static bool encoders_cloneable(const struct intel_encoder *a,
11917 const struct intel_encoder *b)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020011918{
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011919 /* masks could be asymmetric, so check both ways */
11920 return a == b || (a->cloneable & (1 << b->type) &&
11921 b->cloneable & (1 << a->type));
11922}
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020011923
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030011924static bool check_single_encoder_cloning(struct drm_atomic_state *state,
11925 struct intel_crtc *crtc,
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011926 struct intel_encoder *encoder)
11927{
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011928 struct intel_encoder *source_encoder;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011929 struct drm_connector *connector;
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030011930 struct drm_connector_state *connector_state;
11931 int i;
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011932
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011933 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030011934 if (connector_state->crtc != &crtc->base)
11935 continue;
11936
11937 source_encoder =
11938 to_intel_encoder(connector_state->best_encoder);
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011939 if (!encoders_cloneable(encoder, source_encoder))
11940 return false;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020011941 }
11942
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011943 return true;
11944}
11945
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030011946static bool check_encoder_cloning(struct drm_atomic_state *state,
11947 struct intel_crtc *crtc)
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011948{
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011949 struct intel_encoder *encoder;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011950 struct drm_connector *connector;
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030011951 struct drm_connector_state *connector_state;
11952 int i;
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011953
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011954 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030011955 if (connector_state->crtc != &crtc->base)
11956 continue;
11957
11958 encoder = to_intel_encoder(connector_state->best_encoder);
11959 if (!check_single_encoder_cloning(state, crtc, encoder))
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011960 return false;
11961 }
11962
11963 return true;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020011964}
11965
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030011966static bool check_digital_port_conflicts(struct drm_atomic_state *state)
Ville Syrjälä00f0b372014-12-02 14:10:46 +020011967{
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030011968 struct drm_device *dev = state->dev;
11969 struct intel_encoder *encoder;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011970 struct drm_connector *connector;
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030011971 struct drm_connector_state *connector_state;
Ville Syrjälä00f0b372014-12-02 14:10:46 +020011972 unsigned int used_ports = 0;
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030011973 int i;
Ville Syrjälä00f0b372014-12-02 14:10:46 +020011974
11975 /*
11976 * Walk the connector list instead of the encoder
11977 * list to detect the problem on ddi platforms
11978 * where there's just one encoder per digital port.
11979 */
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011980 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030011981 if (!connector_state->best_encoder)
11982 continue;
11983
11984 encoder = to_intel_encoder(connector_state->best_encoder);
11985
11986 WARN_ON(!connector_state->crtc);
Ville Syrjälä00f0b372014-12-02 14:10:46 +020011987
11988 switch (encoder->type) {
11989 unsigned int port_mask;
11990 case INTEL_OUTPUT_UNKNOWN:
11991 if (WARN_ON(!HAS_DDI(dev)))
11992 break;
11993 case INTEL_OUTPUT_DISPLAYPORT:
11994 case INTEL_OUTPUT_HDMI:
11995 case INTEL_OUTPUT_EDP:
11996 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
11997
11998 /* the same port mustn't appear more than once */
11999 if (used_ports & port_mask)
12000 return false;
12001
12002 used_ports |= port_mask;
12003 default:
12004 break;
12005 }
12006 }
12007
12008 return true;
12009}
12010
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012011static void
12012clear_intel_crtc_state(struct intel_crtc_state *crtc_state)
12013{
12014 struct drm_crtc_state tmp_state;
Chandra Konduru663a3642015-04-07 15:28:41 -070012015 struct intel_crtc_scaler_state scaler_state;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012016 struct intel_dpll_hw_state dpll_hw_state;
12017 enum intel_dpll_id shared_dpll;
Ander Conselvan de Oliveira8504c742015-05-15 11:51:50 +030012018 uint32_t ddi_pll_sel;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012019
Ander Conselvan de Oliveira7546a382015-05-20 09:03:27 +030012020 /* FIXME: before the switch to atomic started, a new pipe_config was
12021 * kzalloc'd. Code that depends on any field being zero should be
12022 * fixed, so that the crtc_state can be safely duplicated. For now,
12023 * only fields that are know to not cause problems are preserved. */
12024
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012025 tmp_state = crtc_state->base;
Chandra Konduru663a3642015-04-07 15:28:41 -070012026 scaler_state = crtc_state->scaler_state;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012027 shared_dpll = crtc_state->shared_dpll;
12028 dpll_hw_state = crtc_state->dpll_hw_state;
Ander Conselvan de Oliveira8504c742015-05-15 11:51:50 +030012029 ddi_pll_sel = crtc_state->ddi_pll_sel;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012030
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012031 memset(crtc_state, 0, sizeof *crtc_state);
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012032
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012033 crtc_state->base = tmp_state;
Chandra Konduru663a3642015-04-07 15:28:41 -070012034 crtc_state->scaler_state = scaler_state;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012035 crtc_state->shared_dpll = shared_dpll;
12036 crtc_state->dpll_hw_state = dpll_hw_state;
Ander Conselvan de Oliveira8504c742015-05-15 11:51:50 +030012037 crtc_state->ddi_pll_sel = ddi_pll_sel;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012038}
12039
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030012040static int
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010012041intel_modeset_pipe_config(struct drm_crtc *crtc,
Ander Conselvan de Oliveira568c6342015-06-01 12:49:57 +020012042 struct drm_atomic_state *state)
Daniel Vetter7758a112012-07-08 19:40:39 +020012043{
Ander Conselvan de Oliveira568c6342015-06-01 12:49:57 +020012044 struct drm_crtc_state *crtc_state;
12045 struct intel_crtc_state *pipe_config;
Daniel Vetter7758a112012-07-08 19:40:39 +020012046 struct intel_encoder *encoder;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012047 struct drm_connector *connector;
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020012048 struct drm_connector_state *connector_state;
Daniel Vetterd328c9d2015-04-10 16:22:37 +020012049 int base_bpp, ret = -EINVAL;
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020012050 int i;
Daniel Vettere29c22c2013-02-21 00:00:16 +010012051 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +020012052
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030012053 if (!check_encoder_cloning(state, to_intel_crtc(crtc))) {
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020012054 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030012055 return -EINVAL;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020012056 }
12057
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030012058 if (!check_digital_port_conflicts(state)) {
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012059 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030012060 return -EINVAL;
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012061 }
12062
Ander Conselvan de Oliveira568c6342015-06-01 12:49:57 +020012063 crtc_state = drm_atomic_get_existing_crtc_state(state, crtc);
12064 if (WARN_ON(!crtc_state))
12065 return -EINVAL;
12066
12067 pipe_config = to_intel_crtc_state(crtc_state);
12068
Ander Conselvan de Oliveiracdba9542015-06-01 12:49:51 +020012069 /*
12070 * XXX: Add all connectors to make the crtc state match the encoders.
12071 */
12072 if (!needs_modeset(&pipe_config->base)) {
12073 ret = drm_atomic_add_affected_connectors(state, crtc);
12074 if (ret)
12075 return ret;
12076 }
12077
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012078 clear_intel_crtc_state(pipe_config);
Daniel Vetter7758a112012-07-08 19:40:39 +020012079
Daniel Vettere143a212013-07-04 12:01:15 +020012080 pipe_config->cpu_transcoder =
12081 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010012082
Imre Deak2960bc92013-07-30 13:36:32 +030012083 /*
12084 * Sanitize sync polarity flags based on requested ones. If neither
12085 * positive or negative polarity is requested, treat this as meaning
12086 * negative polarity.
12087 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012088 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030012089 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012090 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030012091
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012092 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030012093 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012094 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030012095
Daniel Vetter050f7ae2013-06-02 13:26:23 +020012096 /* Compute a starting value for pipe_config->pipe_bpp taking the source
12097 * plane pixel format and any sink constraints into account. Returns the
12098 * source plane bpp so that dithering can be selected on mismatches
12099 * after encoders and crtc also have had their say. */
Daniel Vetterd328c9d2015-04-10 16:22:37 +020012100 base_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
12101 pipe_config);
12102 if (base_bpp < 0)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012103 goto fail;
12104
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030012105 /*
12106 * Determine the real pipe dimensions. Note that stereo modes can
12107 * increase the actual pipe size due to the frame doubling and
12108 * insertion of additional space for blanks between the frame. This
12109 * is stored in the crtc timings. We use the requested mode to do this
12110 * computation to clearly distinguish it from the adjusted mode, which
12111 * can be changed by the connectors in the below retry loop.
12112 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012113 drm_crtc_get_hv_timing(&pipe_config->base.mode,
Gustavo Padovanecb7e162014-12-01 15:40:09 -080012114 &pipe_config->pipe_src_w,
12115 &pipe_config->pipe_src_h);
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030012116
Daniel Vettere29c22c2013-02-21 00:00:16 +010012117encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +020012118 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +020012119 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +020012120 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +020012121
Daniel Vetter135c81b2013-07-21 21:37:09 +020012122 /* Fill in default crtc timings, allow encoders to overwrite them. */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012123 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
12124 CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +020012125
Daniel Vetter7758a112012-07-08 19:40:39 +020012126 /* Pass our mode to the connectors and the CRTC to give them a chance to
12127 * adjust it according to limitations or connector properties, and also
12128 * a chance to reject the mode entirely.
12129 */
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012130 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020012131 if (connector_state->crtc != crtc)
12132 continue;
12133
12134 encoder = to_intel_encoder(connector_state->best_encoder);
12135
Daniel Vetterefea6e82013-07-21 21:36:59 +020012136 if (!(encoder->compute_config(encoder, pipe_config))) {
12137 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +020012138 goto fail;
12139 }
12140 }
12141
Daniel Vetterff9a6752013-06-01 17:16:21 +020012142 /* Set default port clock if not overwritten by the encoder. Needs to be
12143 * done afterwards in case the encoder adjusts the mode. */
12144 if (!pipe_config->port_clock)
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012145 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
Damien Lespiau241bfc32013-09-25 16:45:37 +010012146 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +020012147
Daniel Vettera43f6e02013-06-07 23:10:32 +020012148 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010012149 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +020012150 DRM_DEBUG_KMS("CRTC fixup failed\n");
12151 goto fail;
12152 }
Daniel Vettere29c22c2013-02-21 00:00:16 +010012153
12154 if (ret == RETRY) {
12155 if (WARN(!retry, "loop in pipe configuration computation\n")) {
12156 ret = -EINVAL;
12157 goto fail;
12158 }
12159
12160 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
12161 retry = false;
12162 goto encoder_retry;
12163 }
12164
Daniel Vetterd328c9d2015-04-10 16:22:37 +020012165 pipe_config->dither = pipe_config->pipe_bpp != base_bpp;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012166 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
Daniel Vetterd328c9d2015-04-10 16:22:37 +020012167 base_bpp, pipe_config->pipe_bpp, pipe_config->dither);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012168
Ander Conselvan de Oliveiracdba9542015-06-01 12:49:51 +020012169 /* Check if we need to force a modeset */
12170 if (pipe_config->has_audio !=
Maarten Lankhorst85a96e72015-06-01 12:49:53 +020012171 to_intel_crtc_state(crtc->state)->has_audio) {
Ander Conselvan de Oliveiracdba9542015-06-01 12:49:51 +020012172 pipe_config->base.mode_changed = true;
Maarten Lankhorst85a96e72015-06-01 12:49:53 +020012173 ret = drm_atomic_add_affected_planes(state, crtc);
12174 }
Ander Conselvan de Oliveiracdba9542015-06-01 12:49:51 +020012175
12176 /*
12177 * Note we have an issue here with infoframes: current code
12178 * only updates them on the full mode set path per hw
12179 * requirements. So here we should be checking for any
12180 * required changes and forcing a mode set.
12181 */
Daniel Vetter7758a112012-07-08 19:40:39 +020012182fail:
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030012183 return ret;
Daniel Vetter7758a112012-07-08 19:40:39 +020012184}
12185
Daniel Vetterea9d7582012-07-10 10:42:52 +020012186static bool intel_crtc_in_use(struct drm_crtc *crtc)
12187{
12188 struct drm_encoder *encoder;
12189 struct drm_device *dev = crtc->dev;
12190
12191 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
12192 if (encoder->crtc == crtc)
12193 return true;
12194
12195 return false;
12196}
12197
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012198static void
12199intel_modeset_update_state(struct drm_atomic_state *state)
12200{
12201 struct drm_device *dev = state->dev;
Daniel Vetterea9d7582012-07-10 10:42:52 +020012202 struct intel_encoder *intel_encoder;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012203 struct drm_crtc *crtc;
12204 struct drm_crtc_state *crtc_state;
Daniel Vetterea9d7582012-07-10 10:42:52 +020012205 struct drm_connector *connector;
12206
Maarten Lankhorstde419ab2015-06-04 10:21:28 +020012207 intel_shared_dpll_commit(state);
Daniel Vetterba41c0de2014-11-03 15:04:55 +010012208
Damien Lespiaub2784e12014-08-05 11:29:37 +010012209 for_each_intel_encoder(dev, intel_encoder) {
Daniel Vetterea9d7582012-07-10 10:42:52 +020012210 if (!intel_encoder->base.crtc)
12211 continue;
12212
Maarten Lankhorst69024de2015-06-01 12:49:46 +020012213 crtc = intel_encoder->base.crtc;
12214 crtc_state = drm_atomic_get_existing_crtc_state(state, crtc);
12215 if (!crtc_state || !needs_modeset(crtc->state))
12216 continue;
Daniel Vetterea9d7582012-07-10 10:42:52 +020012217
Maarten Lankhorst69024de2015-06-01 12:49:46 +020012218 intel_encoder->connectors_active = false;
Daniel Vetterea9d7582012-07-10 10:42:52 +020012219 }
12220
Maarten Lankhorst3cb480b2015-06-01 12:49:49 +020012221 drm_atomic_helper_update_legacy_modeset_state(state->dev, state);
Maarten Lankhorstf7217902015-06-10 10:24:20 +020012222 intel_modeset_update_staged_output_state(state->dev);
Daniel Vetterea9d7582012-07-10 10:42:52 +020012223
Ville Syrjälä76688512014-01-10 11:28:06 +020012224 /* Double check state. */
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012225 for_each_crtc(dev, crtc) {
12226 WARN_ON(crtc->state->enable != intel_crtc_in_use(crtc));
Maarten Lankhorst3cb480b2015-06-01 12:49:49 +020012227
12228 to_intel_crtc(crtc)->config = to_intel_crtc_state(crtc->state);
Maarten Lankhorstfc467a222015-06-01 12:50:07 +020012229
12230 /* Update hwmode for vblank functions */
12231 if (crtc->state->active)
12232 crtc->hwmode = crtc->state->adjusted_mode;
12233 else
12234 crtc->hwmode.crtc_clock = 0;
Daniel Vetterea9d7582012-07-10 10:42:52 +020012235 }
12236
12237 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
12238 if (!connector->encoder || !connector->encoder->crtc)
12239 continue;
12240
Maarten Lankhorst69024de2015-06-01 12:49:46 +020012241 crtc = connector->encoder->crtc;
12242 crtc_state = drm_atomic_get_existing_crtc_state(state, crtc);
12243 if (!crtc_state || !needs_modeset(crtc->state))
12244 continue;
Daniel Vetterea9d7582012-07-10 10:42:52 +020012245
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +020012246 if (crtc->state->active) {
Maarten Lankhorst69024de2015-06-01 12:49:46 +020012247 struct drm_property *dpms_property =
12248 dev->mode_config.dpms_property;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012249
Maarten Lankhorst69024de2015-06-01 12:49:46 +020012250 connector->dpms = DRM_MODE_DPMS_ON;
12251 drm_object_property_set_value(&connector->base, dpms_property, DRM_MODE_DPMS_ON);
Daniel Vetter68d34722012-09-06 22:08:35 +020012252
Maarten Lankhorst69024de2015-06-01 12:49:46 +020012253 intel_encoder = to_intel_encoder(connector->encoder);
12254 intel_encoder->connectors_active = true;
12255 } else
12256 connector->dpms = DRM_MODE_DPMS_OFF;
Daniel Vetterea9d7582012-07-10 10:42:52 +020012257 }
Daniel Vetterea9d7582012-07-10 10:42:52 +020012258}
12259
Ville Syrjälä3bd26262013-09-06 23:29:02 +030012260static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030012261{
Ville Syrjälä3bd26262013-09-06 23:29:02 +030012262 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030012263
12264 if (clock1 == clock2)
12265 return true;
12266
12267 if (!clock1 || !clock2)
12268 return false;
12269
12270 diff = abs(clock1 - clock2);
12271
12272 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
12273 return true;
12274
12275 return false;
12276}
12277
Daniel Vetter25c5b262012-07-08 22:08:04 +020012278#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
12279 list_for_each_entry((intel_crtc), \
12280 &(dev)->mode_config.crtc_list, \
12281 base.head) \
Daniel Vetter0973f182013-04-19 11:25:33 +020012282 if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +020012283
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012284static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020012285intel_pipe_config_compare(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012286 struct intel_crtc_state *current_config,
12287 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012288{
Daniel Vetter66e985c2013-06-05 13:34:20 +020012289#define PIPE_CONF_CHECK_X(name) \
12290 if (current_config->name != pipe_config->name) { \
12291 DRM_ERROR("mismatch in " #name " " \
12292 "(expected 0x%08x, found 0x%08x)\n", \
12293 current_config->name, \
12294 pipe_config->name); \
12295 return false; \
12296 }
12297
Daniel Vetter08a24032013-04-19 11:25:34 +020012298#define PIPE_CONF_CHECK_I(name) \
12299 if (current_config->name != pipe_config->name) { \
12300 DRM_ERROR("mismatch in " #name " " \
12301 "(expected %i, found %i)\n", \
12302 current_config->name, \
12303 pipe_config->name); \
12304 return false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +010012305 }
12306
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012307/* This is required for BDW+ where there is only one set of registers for
12308 * switching between high and low RR.
12309 * This macro can be used whenever a comparison has to be made between one
12310 * hw state and multiple sw state variables.
12311 */
12312#define PIPE_CONF_CHECK_I_ALT(name, alt_name) \
12313 if ((current_config->name != pipe_config->name) && \
12314 (current_config->alt_name != pipe_config->name)) { \
12315 DRM_ERROR("mismatch in " #name " " \
12316 "(expected %i or %i, found %i)\n", \
12317 current_config->name, \
12318 current_config->alt_name, \
12319 pipe_config->name); \
12320 return false; \
12321 }
12322
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012323#define PIPE_CONF_CHECK_FLAGS(name, mask) \
12324 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Jesse Barnes6f024882013-07-01 10:19:09 -070012325 DRM_ERROR("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012326 "(expected %i, found %i)\n", \
12327 current_config->name & (mask), \
12328 pipe_config->name & (mask)); \
12329 return false; \
12330 }
12331
Ville Syrjälä5e550652013-09-06 23:29:07 +030012332#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
12333 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
12334 DRM_ERROR("mismatch in " #name " " \
12335 "(expected %i, found %i)\n", \
12336 current_config->name, \
12337 pipe_config->name); \
12338 return false; \
12339 }
12340
Daniel Vetterbb760062013-06-06 14:55:52 +020012341#define PIPE_CONF_QUIRK(quirk) \
12342 ((current_config->quirks | pipe_config->quirks) & (quirk))
12343
Daniel Vettereccb1402013-05-22 00:50:22 +020012344 PIPE_CONF_CHECK_I(cpu_transcoder);
12345
Daniel Vetter08a24032013-04-19 11:25:34 +020012346 PIPE_CONF_CHECK_I(has_pch_encoder);
12347 PIPE_CONF_CHECK_I(fdi_lanes);
Daniel Vetter72419202013-04-04 13:28:53 +020012348 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
12349 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
12350 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
12351 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
12352 PIPE_CONF_CHECK_I(fdi_m_n.tu);
Daniel Vetter08a24032013-04-19 11:25:34 +020012353
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030012354 PIPE_CONF_CHECK_I(has_dp_encoder);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012355
12356 if (INTEL_INFO(dev)->gen < 8) {
12357 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
12358 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
12359 PIPE_CONF_CHECK_I(dp_m_n.link_m);
12360 PIPE_CONF_CHECK_I(dp_m_n.link_n);
12361 PIPE_CONF_CHECK_I(dp_m_n.tu);
12362
12363 if (current_config->has_drrs) {
12364 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_m);
12365 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_n);
12366 PIPE_CONF_CHECK_I(dp_m2_n2.link_m);
12367 PIPE_CONF_CHECK_I(dp_m2_n2.link_n);
12368 PIPE_CONF_CHECK_I(dp_m2_n2.tu);
12369 }
12370 } else {
12371 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_m, dp_m2_n2.gmch_m);
12372 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_n, dp_m2_n2.gmch_n);
12373 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_m, dp_m2_n2.link_m);
12374 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_n, dp_m2_n2.link_n);
12375 PIPE_CONF_CHECK_I_ALT(dp_m_n.tu, dp_m2_n2.tu);
12376 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030012377
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012378 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
12379 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
12380 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
12381 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
12382 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
12383 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012384
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012385 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
12386 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
12387 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
12388 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
12389 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
12390 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012391
Daniel Vetterc93f54c2013-06-27 19:47:19 +020012392 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6897b4b2014-04-24 23:54:47 +020012393 PIPE_CONF_CHECK_I(has_hdmi_sink);
Daniel Vetterb5a9fa02014-04-24 23:54:49 +020012394 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
12395 IS_VALLEYVIEW(dev))
12396 PIPE_CONF_CHECK_I(limited_color_range);
Jesse Barnese43823e2014-11-05 14:26:08 -080012397 PIPE_CONF_CHECK_I(has_infoframe);
Daniel Vetter6c49f242013-06-06 12:45:25 +020012398
Daniel Vetter9ed109a2014-04-24 23:54:52 +020012399 PIPE_CONF_CHECK_I(has_audio);
12400
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012401 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012402 DRM_MODE_FLAG_INTERLACE);
12403
Daniel Vetterbb760062013-06-06 14:55:52 +020012404 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012405 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020012406 DRM_MODE_FLAG_PHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012407 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020012408 DRM_MODE_FLAG_NHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012409 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020012410 DRM_MODE_FLAG_PVSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012411 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020012412 DRM_MODE_FLAG_NVSYNC);
12413 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -070012414
Ville Syrjälä37327ab2013-09-04 18:25:28 +030012415 PIPE_CONF_CHECK_I(pipe_src_w);
12416 PIPE_CONF_CHECK_I(pipe_src_h);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012417
Daniel Vetter99535992014-04-13 12:00:33 +020012418 /*
12419 * FIXME: BIOS likes to set up a cloned config with lvds+external
12420 * screen. Since we don't yet re-compute the pipe config when moving
12421 * just the lvds port away to another pipe the sw tracking won't match.
12422 *
12423 * Proper atomic modesets with recomputed global state will fix this.
12424 * Until then just don't check gmch state for inherited modes.
12425 */
12426 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE)) {
12427 PIPE_CONF_CHECK_I(gmch_pfit.control);
12428 /* pfit ratios are autocomputed by the hw on gen4+ */
12429 if (INTEL_INFO(dev)->gen < 4)
12430 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
12431 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
12432 }
12433
Chris Wilsonfd4daa92013-08-27 17:04:17 +010012434 PIPE_CONF_CHECK_I(pch_pfit.enabled);
12435 if (current_config->pch_pfit.enabled) {
12436 PIPE_CONF_CHECK_I(pch_pfit.pos);
12437 PIPE_CONF_CHECK_I(pch_pfit.size);
12438 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020012439
Chandra Kondurua1b22782015-04-07 15:28:45 -070012440 PIPE_CONF_CHECK_I(scaler_state.scaler_id);
12441
Jesse Barnese59150d2014-01-07 13:30:45 -080012442 /* BDW+ don't expose a synchronous way to read the state */
12443 if (IS_HASWELL(dev))
12444 PIPE_CONF_CHECK_I(ips_enabled);
Paulo Zanoni42db64e2013-05-31 16:33:22 -030012445
Ville Syrjälä282740f2013-09-04 18:30:03 +030012446 PIPE_CONF_CHECK_I(double_wide);
12447
Daniel Vetter26804af2014-06-25 22:01:55 +030012448 PIPE_CONF_CHECK_X(ddi_pll_sel);
12449
Daniel Vetterc0d43d62013-06-07 23:11:08 +020012450 PIPE_CONF_CHECK_I(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +020012451 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +020012452 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +020012453 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
12454 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterd452c5b2014-07-04 11:27:39 -030012455 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
Damien Lespiau3f4cd192014-11-13 14:55:21 +000012456 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
12457 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
12458 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
Daniel Vetterc0d43d62013-06-07 23:11:08 +020012459
Ville Syrjälä42571ae2013-09-06 23:29:00 +030012460 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
12461 PIPE_CONF_CHECK_I(pipe_bpp);
12462
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012463 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
Jesse Barnesa9a7e982014-01-20 14:18:04 -080012464 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
Ville Syrjälä5e550652013-09-06 23:29:07 +030012465
Daniel Vetter66e985c2013-06-05 13:34:20 +020012466#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +020012467#undef PIPE_CONF_CHECK_I
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012468#undef PIPE_CONF_CHECK_I_ALT
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012469#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +030012470#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +020012471#undef PIPE_CONF_QUIRK
Daniel Vetter627eb5a2013-04-29 19:33:42 +020012472
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012473 return true;
12474}
12475
Damien Lespiau08db6652014-11-04 17:06:52 +000012476static void check_wm_state(struct drm_device *dev)
12477{
12478 struct drm_i915_private *dev_priv = dev->dev_private;
12479 struct skl_ddb_allocation hw_ddb, *sw_ddb;
12480 struct intel_crtc *intel_crtc;
12481 int plane;
12482
12483 if (INTEL_INFO(dev)->gen < 9)
12484 return;
12485
12486 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
12487 sw_ddb = &dev_priv->wm.skl_hw.ddb;
12488
12489 for_each_intel_crtc(dev, intel_crtc) {
12490 struct skl_ddb_entry *hw_entry, *sw_entry;
12491 const enum pipe pipe = intel_crtc->pipe;
12492
12493 if (!intel_crtc->active)
12494 continue;
12495
12496 /* planes */
Damien Lespiaudd740782015-02-28 14:54:08 +000012497 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau08db6652014-11-04 17:06:52 +000012498 hw_entry = &hw_ddb.plane[pipe][plane];
12499 sw_entry = &sw_ddb->plane[pipe][plane];
12500
12501 if (skl_ddb_entry_equal(hw_entry, sw_entry))
12502 continue;
12503
12504 DRM_ERROR("mismatch in DDB state pipe %c plane %d "
12505 "(expected (%u,%u), found (%u,%u))\n",
12506 pipe_name(pipe), plane + 1,
12507 sw_entry->start, sw_entry->end,
12508 hw_entry->start, hw_entry->end);
12509 }
12510
12511 /* cursor */
12512 hw_entry = &hw_ddb.cursor[pipe];
12513 sw_entry = &sw_ddb->cursor[pipe];
12514
12515 if (skl_ddb_entry_equal(hw_entry, sw_entry))
12516 continue;
12517
12518 DRM_ERROR("mismatch in DDB state pipe %c cursor "
12519 "(expected (%u,%u), found (%u,%u))\n",
12520 pipe_name(pipe),
12521 sw_entry->start, sw_entry->end,
12522 hw_entry->start, hw_entry->end);
12523 }
12524}
12525
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012526static void
12527check_connector_state(struct drm_device *dev)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012528{
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012529 struct intel_connector *connector;
12530
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020012531 for_each_intel_connector(dev, connector) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012532 /* This also checks the encoder/connector hw state with the
12533 * ->get_hw_state callbacks. */
12534 intel_connector_check_state(connector);
12535
Maarten Lankhorstf7217902015-06-10 10:24:20 +020012536 I915_STATE_WARN(&connector->new_encoder->base != connector->base.encoder,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012537 "connector's staged encoder doesn't match current encoder\n");
12538 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012539}
12540
12541static void
12542check_encoder_state(struct drm_device *dev)
12543{
12544 struct intel_encoder *encoder;
12545 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012546
Damien Lespiaub2784e12014-08-05 11:29:37 +010012547 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012548 bool enabled = false;
12549 bool active = false;
12550 enum pipe pipe, tracked_pipe;
12551
12552 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
12553 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030012554 encoder->base.name);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012555
Maarten Lankhorstf7217902015-06-10 10:24:20 +020012556 I915_STATE_WARN(&encoder->new_crtc->base != encoder->base.crtc,
12557 "encoder's stage crtc doesn't match current crtc\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050012558 I915_STATE_WARN(encoder->connectors_active && !encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012559 "encoder's active_connectors set, but no crtc\n");
12560
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020012561 for_each_intel_connector(dev, connector) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012562 if (connector->base.encoder != &encoder->base)
12563 continue;
12564 enabled = true;
12565 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
12566 active = true;
12567 }
Dave Airlie0e32b392014-05-02 14:02:48 +100012568 /*
12569 * for MST connectors if we unplug the connector is gone
12570 * away but the encoder is still connected to a crtc
12571 * until a modeset happens in response to the hotplug.
12572 */
12573 if (!enabled && encoder->base.encoder_type == DRM_MODE_ENCODER_DPMST)
12574 continue;
12575
Rob Clarke2c719b2014-12-15 13:56:32 -050012576 I915_STATE_WARN(!!encoder->base.crtc != enabled,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012577 "encoder's enabled state mismatch "
12578 "(expected %i, found %i)\n",
12579 !!encoder->base.crtc, enabled);
Rob Clarke2c719b2014-12-15 13:56:32 -050012580 I915_STATE_WARN(active && !encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012581 "active encoder with no crtc\n");
12582
Rob Clarke2c719b2014-12-15 13:56:32 -050012583 I915_STATE_WARN(encoder->connectors_active != active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012584 "encoder's computed active state doesn't match tracked active state "
12585 "(expected %i, found %i)\n", active, encoder->connectors_active);
12586
12587 active = encoder->get_hw_state(encoder, &pipe);
Rob Clarke2c719b2014-12-15 13:56:32 -050012588 I915_STATE_WARN(active != encoder->connectors_active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012589 "encoder's hw state doesn't match sw tracking "
12590 "(expected %i, found %i)\n",
12591 encoder->connectors_active, active);
12592
12593 if (!encoder->base.crtc)
12594 continue;
12595
12596 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
Rob Clarke2c719b2014-12-15 13:56:32 -050012597 I915_STATE_WARN(active && pipe != tracked_pipe,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012598 "active encoder's pipe doesn't match"
12599 "(expected %i, found %i)\n",
12600 tracked_pipe, pipe);
12601
12602 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012603}
12604
12605static void
12606check_crtc_state(struct drm_device *dev)
12607{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012608 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012609 struct intel_crtc *crtc;
12610 struct intel_encoder *encoder;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012611 struct intel_crtc_state pipe_config;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012612
Damien Lespiaud3fcc802014-05-13 23:32:22 +010012613 for_each_intel_crtc(dev, crtc) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012614 bool enabled = false;
12615 bool active = false;
12616
Jesse Barnes045ac3b2013-05-14 17:08:26 -070012617 memset(&pipe_config, 0, sizeof(pipe_config));
12618
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012619 DRM_DEBUG_KMS("[CRTC:%d]\n",
12620 crtc->base.base.id);
12621
Matt Roper83d65732015-02-25 13:12:16 -080012622 I915_STATE_WARN(crtc->active && !crtc->base.state->enable,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012623 "active crtc, but not enabled in sw tracking\n");
12624
Damien Lespiaub2784e12014-08-05 11:29:37 +010012625 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012626 if (encoder->base.crtc != &crtc->base)
12627 continue;
12628 enabled = true;
12629 if (encoder->connectors_active)
12630 active = true;
12631 }
Daniel Vetter6c49f242013-06-06 12:45:25 +020012632
Rob Clarke2c719b2014-12-15 13:56:32 -050012633 I915_STATE_WARN(active != crtc->active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012634 "crtc's computed active state doesn't match tracked active state "
12635 "(expected %i, found %i)\n", active, crtc->active);
Matt Roper83d65732015-02-25 13:12:16 -080012636 I915_STATE_WARN(enabled != crtc->base.state->enable,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012637 "crtc's computed enabled state doesn't match tracked enabled state "
Matt Roper83d65732015-02-25 13:12:16 -080012638 "(expected %i, found %i)\n", enabled,
12639 crtc->base.state->enable);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012640
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012641 active = dev_priv->display.get_pipe_config(crtc,
12642 &pipe_config);
Daniel Vetterd62cf622013-05-29 10:41:29 +020012643
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030012644 /* hw state is inconsistent with the pipe quirk */
12645 if ((crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
12646 (crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Daniel Vetterd62cf622013-05-29 10:41:29 +020012647 active = crtc->active;
12648
Damien Lespiaub2784e12014-08-05 11:29:37 +010012649 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä3eaba512013-08-05 17:57:48 +030012650 enum pipe pipe;
Daniel Vetter6c49f242013-06-06 12:45:25 +020012651 if (encoder->base.crtc != &crtc->base)
12652 continue;
Daniel Vetter1d37b682013-11-18 09:00:59 +010012653 if (encoder->get_hw_state(encoder, &pipe))
Daniel Vetter6c49f242013-06-06 12:45:25 +020012654 encoder->get_config(encoder, &pipe_config);
12655 }
12656
Rob Clarke2c719b2014-12-15 13:56:32 -050012657 I915_STATE_WARN(crtc->active != active,
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012658 "crtc active state doesn't match with hw state "
12659 "(expected %i, found %i)\n", crtc->active, active);
12660
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +020012661 I915_STATE_WARN(crtc->active != crtc->base.state->active,
12662 "transitional active state does not match atomic hw state "
12663 "(expected %i, found %i)\n", crtc->base.state->active, crtc->active);
12664
Daniel Vetterc0b03412013-05-28 12:05:54 +020012665 if (active &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020012666 !intel_pipe_config_compare(dev, crtc->config, &pipe_config)) {
Rob Clarke2c719b2014-12-15 13:56:32 -050012667 I915_STATE_WARN(1, "pipe state doesn't match!\n");
Daniel Vetterc0b03412013-05-28 12:05:54 +020012668 intel_dump_pipe_config(crtc, &pipe_config,
12669 "[hw state]");
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020012670 intel_dump_pipe_config(crtc, crtc->config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020012671 "[sw state]");
12672 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012673 }
12674}
12675
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012676static void
12677check_shared_dpll_state(struct drm_device *dev)
12678{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012679 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012680 struct intel_crtc *crtc;
12681 struct intel_dpll_hw_state dpll_hw_state;
12682 int i;
Daniel Vetter53589012013-06-05 13:34:16 +020012683
12684 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
12685 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
12686 int enabled_crtcs = 0, active_crtcs = 0;
12687 bool active;
12688
12689 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
12690
12691 DRM_DEBUG_KMS("%s\n", pll->name);
12692
12693 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
12694
Rob Clarke2c719b2014-12-15 13:56:32 -050012695 I915_STATE_WARN(pll->active > hweight32(pll->config.crtc_mask),
Daniel Vetter53589012013-06-05 13:34:16 +020012696 "more active pll users than references: %i vs %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020012697 pll->active, hweight32(pll->config.crtc_mask));
Rob Clarke2c719b2014-12-15 13:56:32 -050012698 I915_STATE_WARN(pll->active && !pll->on,
Daniel Vetter53589012013-06-05 13:34:16 +020012699 "pll in active use but not on in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050012700 I915_STATE_WARN(pll->on && !pll->active,
Daniel Vetter35c95372013-07-17 06:55:04 +020012701 "pll in on but not on in use in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050012702 I915_STATE_WARN(pll->on != active,
Daniel Vetter53589012013-06-05 13:34:16 +020012703 "pll on state mismatch (expected %i, found %i)\n",
12704 pll->on, active);
12705
Damien Lespiaud3fcc802014-05-13 23:32:22 +010012706 for_each_intel_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080012707 if (crtc->base.state->enable && intel_crtc_to_shared_dpll(crtc) == pll)
Daniel Vetter53589012013-06-05 13:34:16 +020012708 enabled_crtcs++;
12709 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
12710 active_crtcs++;
12711 }
Rob Clarke2c719b2014-12-15 13:56:32 -050012712 I915_STATE_WARN(pll->active != active_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020012713 "pll active crtcs mismatch (expected %i, found %i)\n",
12714 pll->active, active_crtcs);
Rob Clarke2c719b2014-12-15 13:56:32 -050012715 I915_STATE_WARN(hweight32(pll->config.crtc_mask) != enabled_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020012716 "pll enabled crtcs mismatch (expected %i, found %i)\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020012717 hweight32(pll->config.crtc_mask), enabled_crtcs);
Daniel Vetter66e985c2013-06-05 13:34:20 +020012718
Rob Clarke2c719b2014-12-15 13:56:32 -050012719 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state, &dpll_hw_state,
Daniel Vetter66e985c2013-06-05 13:34:20 +020012720 sizeof(dpll_hw_state)),
12721 "pll hw state mismatch\n");
Daniel Vetter53589012013-06-05 13:34:16 +020012722 }
Daniel Vettere2e1ed42012-07-08 21:14:38 +020012723}
12724
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012725void
12726intel_modeset_check_state(struct drm_device *dev)
12727{
Damien Lespiau08db6652014-11-04 17:06:52 +000012728 check_wm_state(dev);
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012729 check_connector_state(dev);
12730 check_encoder_state(dev);
12731 check_crtc_state(dev);
12732 check_shared_dpll_state(dev);
12733}
12734
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012735void ironlake_check_encoder_dotclock(const struct intel_crtc_state *pipe_config,
Ville Syrjälä18442d02013-09-13 16:00:08 +030012736 int dotclock)
12737{
12738 /*
12739 * FDI already provided one idea for the dotclock.
12740 * Yell if the encoder disagrees.
12741 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012742 WARN(!intel_fuzzy_clock_check(pipe_config->base.adjusted_mode.crtc_clock, dotclock),
Ville Syrjälä18442d02013-09-13 16:00:08 +030012743 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012744 pipe_config->base.adjusted_mode.crtc_clock, dotclock);
Ville Syrjälä18442d02013-09-13 16:00:08 +030012745}
12746
Ville Syrjälä80715b22014-05-15 20:23:23 +030012747static void update_scanline_offset(struct intel_crtc *crtc)
12748{
12749 struct drm_device *dev = crtc->base.dev;
12750
12751 /*
12752 * The scanline counter increments at the leading edge of hsync.
12753 *
12754 * On most platforms it starts counting from vtotal-1 on the
12755 * first active line. That means the scanline counter value is
12756 * always one less than what we would expect. Ie. just after
12757 * start of vblank, which also occurs at start of hsync (on the
12758 * last active line), the scanline counter will read vblank_start-1.
12759 *
12760 * On gen2 the scanline counter starts counting from 1 instead
12761 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
12762 * to keep the value positive), instead of adding one.
12763 *
12764 * On HSW+ the behaviour of the scanline counter depends on the output
12765 * type. For DP ports it behaves like most other platforms, but on HDMI
12766 * there's an extra 1 line difference. So we need to add two instead of
12767 * one to the value.
12768 */
12769 if (IS_GEN2(dev)) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020012770 const struct drm_display_mode *mode = &crtc->config->base.adjusted_mode;
Ville Syrjälä80715b22014-05-15 20:23:23 +030012771 int vtotal;
12772
12773 vtotal = mode->crtc_vtotal;
12774 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
12775 vtotal /= 2;
12776
12777 crtc->scanline_offset = vtotal - 1;
12778 } else if (HAS_DDI(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +030012779 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) {
Ville Syrjälä80715b22014-05-15 20:23:23 +030012780 crtc->scanline_offset = 2;
12781 } else
12782 crtc->scanline_offset = 1;
12783}
12784
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020012785static int intel_modeset_setup_plls(struct drm_atomic_state *state)
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012786{
Ander Conselvan de Oliveira225da592015-04-02 14:47:57 +030012787 struct drm_device *dev = state->dev;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012788 struct drm_i915_private *dev_priv = to_i915(dev);
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012789 unsigned clear_pipes = 0;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012790 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012791 struct intel_crtc_state *intel_crtc_state;
12792 struct drm_crtc *crtc;
12793 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012794 int ret = 0;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012795 int i;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012796
12797 if (!dev_priv->display.crtc_compute_clock)
12798 return 0;
12799
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012800 for_each_crtc_in_state(state, crtc, crtc_state, i) {
12801 intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012802 intel_crtc_state = to_intel_crtc_state(crtc_state);
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012803
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012804 if (needs_modeset(crtc_state)) {
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012805 clear_pipes |= 1 << intel_crtc->pipe;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012806 intel_crtc_state->shared_dpll = DPLL_ID_PRIVATE;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012807 }
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012808 }
12809
Maarten Lankhorstde419ab2015-06-04 10:21:28 +020012810 if (clear_pipes) {
12811 struct intel_shared_dpll_config *shared_dpll =
12812 intel_atomic_get_shared_dpll_state(state);
12813
12814 for (i = 0; i < dev_priv->num_shared_dpll; i++)
12815 shared_dpll[i].crtc_mask &= ~clear_pipes;
12816 }
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012817
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012818 for_each_crtc_in_state(state, crtc, crtc_state, i) {
12819 if (!needs_modeset(crtc_state) || !crtc_state->enable)
Ander Conselvan de Oliveira225da592015-04-02 14:47:57 +030012820 continue;
12821
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012822 intel_crtc = to_intel_crtc(crtc);
12823 intel_crtc_state = to_intel_crtc_state(crtc_state);
12824
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012825 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012826 intel_crtc_state);
Maarten Lankhorstde419ab2015-06-04 10:21:28 +020012827 if (ret)
12828 return ret;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012829 }
12830
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012831 return ret;
12832}
12833
Maarten Lankhorst99d736a2015-06-01 12:50:09 +020012834/*
12835 * This implements the workaround described in the "notes" section of the mode
12836 * set sequence documentation. When going from no pipes or single pipe to
12837 * multiple pipes, and planes are enabled after the pipe, we need to wait at
12838 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
12839 */
12840static int haswell_mode_set_planes_workaround(struct drm_atomic_state *state)
12841{
12842 struct drm_crtc_state *crtc_state;
12843 struct intel_crtc *intel_crtc;
12844 struct drm_crtc *crtc;
12845 struct intel_crtc_state *first_crtc_state = NULL;
12846 struct intel_crtc_state *other_crtc_state = NULL;
12847 enum pipe first_pipe = INVALID_PIPE, enabled_pipe = INVALID_PIPE;
12848 int i;
12849
12850 /* look at all crtc's that are going to be enabled in during modeset */
12851 for_each_crtc_in_state(state, crtc, crtc_state, i) {
12852 intel_crtc = to_intel_crtc(crtc);
12853
12854 if (!crtc_state->active || !needs_modeset(crtc_state))
12855 continue;
12856
12857 if (first_crtc_state) {
12858 other_crtc_state = to_intel_crtc_state(crtc_state);
12859 break;
12860 } else {
12861 first_crtc_state = to_intel_crtc_state(crtc_state);
12862 first_pipe = intel_crtc->pipe;
12863 }
12864 }
12865
12866 /* No workaround needed? */
12867 if (!first_crtc_state)
12868 return 0;
12869
12870 /* w/a possibly needed, check how many crtc's are already enabled. */
12871 for_each_intel_crtc(state->dev, intel_crtc) {
12872 struct intel_crtc_state *pipe_config;
12873
12874 pipe_config = intel_atomic_get_crtc_state(state, intel_crtc);
12875 if (IS_ERR(pipe_config))
12876 return PTR_ERR(pipe_config);
12877
12878 pipe_config->hsw_workaround_pipe = INVALID_PIPE;
12879
12880 if (!pipe_config->base.active ||
12881 needs_modeset(&pipe_config->base))
12882 continue;
12883
12884 /* 2 or more enabled crtcs means no need for w/a */
12885 if (enabled_pipe != INVALID_PIPE)
12886 return 0;
12887
12888 enabled_pipe = intel_crtc->pipe;
12889 }
12890
12891 if (enabled_pipe != INVALID_PIPE)
12892 first_crtc_state->hsw_workaround_pipe = enabled_pipe;
12893 else if (other_crtc_state)
12894 other_crtc_state->hsw_workaround_pipe = first_pipe;
12895
12896 return 0;
12897}
12898
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030012899/* Code that should eventually be part of atomic_check() */
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020012900static int intel_modeset_checks(struct drm_atomic_state *state)
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030012901{
12902 struct drm_device *dev = state->dev;
12903 int ret;
12904
12905 /*
12906 * See if the config requires any additional preparation, e.g.
12907 * to adjust global state with pipes off. We need to do this
12908 * here so we can get the modeset_pipe updated config for the new
12909 * mode set on this crtc. For other crtcs we need to use the
12910 * adjusted_mode bits in the crtc directly.
12911 */
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030012912 if (IS_VALLEYVIEW(dev) || IS_BROXTON(dev) || IS_BROADWELL(dev)) {
12913 if (IS_VALLEYVIEW(dev) || IS_BROXTON(dev))
12914 ret = valleyview_modeset_global_pipes(state);
12915 else
12916 ret = broadwell_modeset_global_pipes(state);
12917
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030012918 if (ret)
12919 return ret;
12920 }
12921
Maarten Lankhorst99d736a2015-06-01 12:50:09 +020012922 ret = intel_modeset_setup_plls(state);
12923 if (ret)
12924 return ret;
12925
12926 if (IS_HASWELL(dev))
12927 ret = haswell_mode_set_planes_workaround(state);
12928
12929 return ret;
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020012930}
12931
12932static int
12933intel_modeset_compute_config(struct drm_atomic_state *state)
12934{
12935 struct drm_crtc *crtc;
12936 struct drm_crtc_state *crtc_state;
12937 int ret, i;
12938
12939 ret = drm_atomic_helper_check_modeset(state->dev, state);
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030012940 if (ret)
12941 return ret;
12942
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020012943 for_each_crtc_in_state(state, crtc, crtc_state, i) {
12944 if (!crtc_state->enable &&
12945 WARN_ON(crtc_state->active))
12946 crtc_state->active = false;
12947
12948 if (!crtc_state->enable)
12949 continue;
12950
12951 ret = intel_modeset_pipe_config(crtc, state);
12952 if (ret)
12953 return ret;
12954
12955 intel_dump_pipe_config(to_intel_crtc(crtc),
12956 to_intel_crtc_state(crtc_state),
12957 "[modeset]");
12958 }
12959
12960 ret = intel_modeset_checks(state);
12961 if (ret)
12962 return ret;
12963
12964 return drm_atomic_helper_check_planes(state->dev, state);
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030012965}
12966
Ander Conselvan de Oliveirac72d9692015-06-01 12:49:50 +020012967static int __intel_set_mode(struct drm_atomic_state *state)
Daniel Vettera6778b32012-07-02 09:56:42 +020012968{
Ander Conselvan de Oliveirac72d9692015-06-01 12:49:50 +020012969 struct drm_device *dev = state->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +030012970 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012971 struct drm_crtc *crtc;
12972 struct drm_crtc_state *crtc_state;
Chris Wilsonc0c36b942012-12-19 16:08:43 +000012973 int ret = 0;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012974 int i;
Daniel Vettera6778b32012-07-02 09:56:42 +020012975
Ander Conselvan de Oliveirad4afb8c2015-04-21 17:13:22 +030012976 ret = drm_atomic_helper_prepare_planes(dev, state);
12977 if (ret)
12978 return ret;
12979
Maarten Lankhorst1c5e19f2015-06-01 12:50:06 +020012980 drm_atomic_helper_swap_state(dev, state);
12981
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012982 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorst1c5e19f2015-06-01 12:50:06 +020012983 if (!needs_modeset(crtc->state) || !crtc_state->active)
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012984 continue;
Daniel Vetter460da9162013-03-27 00:44:51 +010012985
Maarten Lankhorst69024de2015-06-01 12:49:46 +020012986 intel_crtc_disable_planes(crtc);
12987 dev_priv->display.crtc_disable(crtc);
Daniel Vetterea9d7582012-07-10 10:42:52 +020012988 }
Daniel Vettera6778b32012-07-02 09:56:42 +020012989
Daniel Vetterea9d7582012-07-10 10:42:52 +020012990 /* Only after disabling all output pipelines that will be changed can we
12991 * update the the output configuration. */
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012992 intel_modeset_update_state(state);
Daniel Vetterea9d7582012-07-10 10:42:52 +020012993
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +030012994 /* The state has been swaped above, so state actually contains the
12995 * old state now. */
12996
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +030012997 modeset_update_crtc_power_domains(state);
Daniel Vetter47fab732012-10-26 10:58:18 +020012998
Daniel Vettera6778b32012-07-02 09:56:42 +020012999 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013000 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorst5ac1c4b2015-06-01 12:50:01 +020013001 drm_atomic_helper_commit_planes_on_crtc(crtc_state);
13002
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +020013003 if (!needs_modeset(crtc->state) || !crtc->state->active)
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013004 continue;
Ville Syrjälä80715b22014-05-15 20:23:23 +030013005
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013006 update_scanline_offset(to_intel_crtc(crtc));
13007
13008 dev_priv->display.crtc_enable(crtc);
13009 intel_crtc_enable_planes(crtc);
Ville Syrjälä80715b22014-05-15 20:23:23 +030013010 }
Daniel Vettera6778b32012-07-02 09:56:42 +020013011
Daniel Vettera6778b32012-07-02 09:56:42 +020013012 /* FIXME: add subpixel order */
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013013
Ander Conselvan de Oliveirad4afb8c2015-04-21 17:13:22 +030013014 drm_atomic_helper_cleanup_planes(dev, state);
13015
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030013016 drm_atomic_state_free(state);
13017
Ander Conselvan de Oliveira9eb45f22015-04-21 17:13:07 +030013018 return 0;
Daniel Vettera6778b32012-07-02 09:56:42 +020013019}
13020
Ander Conselvan de Oliveira568c6342015-06-01 12:49:57 +020013021static int intel_set_mode_checked(struct drm_atomic_state *state)
Jesse Barnes7f27126e2014-11-05 14:26:06 -080013022{
Ander Conselvan de Oliveira568c6342015-06-01 12:49:57 +020013023 struct drm_device *dev = state->dev;
Jesse Barnes7f27126e2014-11-05 14:26:06 -080013024 int ret;
13025
Ander Conselvan de Oliveira568c6342015-06-01 12:49:57 +020013026 ret = __intel_set_mode(state);
Jesse Barnes7f27126e2014-11-05 14:26:06 -080013027 if (ret == 0)
Ander Conselvan de Oliveira568c6342015-06-01 12:49:57 +020013028 intel_modeset_check_state(dev);
Jesse Barnes7f27126e2014-11-05 14:26:06 -080013029
13030 return ret;
13031}
13032
Ander Conselvan de Oliveira568c6342015-06-01 12:49:57 +020013033static int intel_set_mode(struct drm_atomic_state *state)
Daniel Vetterf30da182013-04-11 20:22:50 +020013034{
Ander Conselvan de Oliveira568c6342015-06-01 12:49:57 +020013035 int ret;
Daniel Vetterf30da182013-04-11 20:22:50 +020013036
Ander Conselvan de Oliveira568c6342015-06-01 12:49:57 +020013037 ret = intel_modeset_compute_config(state);
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013038 if (ret)
Ander Conselvan de Oliveira568c6342015-06-01 12:49:57 +020013039 return ret;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013040
Ander Conselvan de Oliveira568c6342015-06-01 12:49:57 +020013041 return intel_set_mode_checked(state);
Daniel Vetterf30da182013-04-11 20:22:50 +020013042}
13043
Chris Wilsonc0c36b942012-12-19 16:08:43 +000013044void intel_crtc_restore_mode(struct drm_crtc *crtc)
13045{
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013046 struct drm_device *dev = crtc->dev;
13047 struct drm_atomic_state *state;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030013048 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013049 struct intel_encoder *encoder;
13050 struct intel_connector *connector;
13051 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030013052 struct intel_crtc_state *crtc_state;
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030013053 int ret;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013054
13055 state = drm_atomic_state_alloc(dev);
13056 if (!state) {
13057 DRM_DEBUG_KMS("[CRTC:%d] mode restore failed, out of memory",
13058 crtc->base.id);
13059 return;
13060 }
13061
13062 state->acquire_ctx = dev->mode_config.acquire_ctx;
13063
13064 /* The force restore path in the HW readout code relies on the staged
13065 * config still keeping the user requested config while the actual
13066 * state has been overwritten by the configuration read from HW. We
13067 * need to copy the staged config to the atomic state, otherwise the
13068 * mode set will just reapply the state the HW is already in. */
13069 for_each_intel_encoder(dev, encoder) {
Maarten Lankhorstf7217902015-06-10 10:24:20 +020013070 if (&encoder->new_crtc->base != crtc)
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013071 continue;
13072
13073 for_each_intel_connector(dev, connector) {
Maarten Lankhorstf7217902015-06-10 10:24:20 +020013074 if (connector->new_encoder != encoder)
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013075 continue;
13076
13077 connector_state = drm_atomic_get_connector_state(state, &connector->base);
13078 if (IS_ERR(connector_state)) {
13079 DRM_DEBUG_KMS("Failed to add [CONNECTOR:%d:%s] to state: %ld\n",
13080 connector->base.base.id,
13081 connector->base.name,
13082 PTR_ERR(connector_state));
13083 continue;
13084 }
13085
13086 connector_state->crtc = crtc;
Maarten Lankhorstf7217902015-06-10 10:24:20 +020013087 connector_state->best_encoder = &encoder->base;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013088 }
13089 }
13090
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030013091 for_each_intel_crtc(dev, intel_crtc) {
Maarten Lankhorstf7217902015-06-10 10:24:20 +020013092 if (intel_crtc->new_enabled == intel_crtc->base.enabled)
13093 continue;
13094
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030013095 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
13096 if (IS_ERR(crtc_state)) {
13097 DRM_DEBUG_KMS("Failed to add [CRTC:%d] to state: %ld\n",
13098 intel_crtc->base.base.id,
13099 PTR_ERR(crtc_state));
13100 continue;
13101 }
13102
Maarten Lankhorstf7217902015-06-10 10:24:20 +020013103 crtc_state->base.active = crtc_state->base.enable =
13104 intel_crtc->new_enabled;
13105
Ander Conselvan de Oliveira8c7b5cc2015-04-21 17:13:19 +030013106 if (&intel_crtc->base == crtc)
13107 drm_mode_copy(&crtc_state->base.mode, &crtc->mode);
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030013108 }
13109
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030013110 intel_modeset_setup_plane_state(state, crtc, &crtc->mode,
13111 crtc->primary->fb, crtc->x, crtc->y);
13112
Ander Conselvan de Oliveira568c6342015-06-01 12:49:57 +020013113 ret = intel_set_mode(state);
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030013114 if (ret)
13115 drm_atomic_state_free(state);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000013116}
13117
Daniel Vetter25c5b262012-07-08 22:08:04 +020013118#undef for_each_intel_crtc_masked
13119
Ander Conselvan de Oliveirab7885262015-04-21 17:13:14 +030013120static bool intel_connector_in_mode_set(struct intel_connector *connector,
13121 struct drm_mode_set *set)
13122{
13123 int ro;
13124
13125 for (ro = 0; ro < set->num_connectors; ro++)
13126 if (set->connectors[ro] == &connector->base)
13127 return true;
13128
13129 return false;
13130}
13131
Daniel Vetter2e431052012-07-04 22:42:15 +020013132static int
Daniel Vetter9a935852012-07-05 22:34:27 +020013133intel_modeset_stage_output_state(struct drm_device *dev,
13134 struct drm_mode_set *set,
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020013135 struct drm_atomic_state *state)
Daniel Vetter50f56112012-07-02 09:35:43 +020013136{
Daniel Vetter9a935852012-07-05 22:34:27 +020013137 struct intel_connector *connector;
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030013138 struct drm_connector *drm_connector;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020013139 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030013140 struct drm_crtc *crtc;
13141 struct drm_crtc_state *crtc_state;
13142 int i, ret;
Daniel Vetter50f56112012-07-02 09:35:43 +020013143
Damien Lespiau9abdda72013-02-13 13:29:23 +000013144 /* The upper layers ensure that we either disable a crtc or have a list
Daniel Vetter9a935852012-07-05 22:34:27 +020013145 * of connectors. For paranoia, double-check this. */
13146 WARN_ON(!set->fb && (set->num_connectors != 0));
13147 WARN_ON(set->fb && (set->num_connectors == 0));
13148
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020013149 for_each_intel_connector(dev, connector) {
Ander Conselvan de Oliveirab7885262015-04-21 17:13:14 +030013150 bool in_mode_set = intel_connector_in_mode_set(connector, set);
13151
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030013152 if (!in_mode_set && connector->base.state->crtc != set->crtc)
13153 continue;
13154
13155 connector_state =
13156 drm_atomic_get_connector_state(state, &connector->base);
13157 if (IS_ERR(connector_state))
13158 return PTR_ERR(connector_state);
13159
Ander Conselvan de Oliveirab7885262015-04-21 17:13:14 +030013160 if (in_mode_set) {
13161 int pipe = to_intel_crtc(set->crtc)->pipe;
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030013162 connector_state->best_encoder =
13163 &intel_find_encoder(connector, pipe)->base;
Daniel Vetter50f56112012-07-02 09:35:43 +020013164 }
13165
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030013166 if (connector->base.state->crtc != set->crtc)
Ander Conselvan de Oliveirab7885262015-04-21 17:13:14 +030013167 continue;
13168
Daniel Vetter9a935852012-07-05 22:34:27 +020013169 /* If we disable the crtc, disable all its connectors. Also, if
13170 * the connector is on the changing crtc but not on the new
13171 * connector list, disable it. */
Ander Conselvan de Oliveirab7885262015-04-21 17:13:14 +030013172 if (!set->fb || !in_mode_set) {
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030013173 connector_state->best_encoder = NULL;
Daniel Vetter9a935852012-07-05 22:34:27 +020013174
13175 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
13176 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030013177 connector->base.name);
Daniel Vetter9a935852012-07-05 22:34:27 +020013178 }
Daniel Vetter9a935852012-07-05 22:34:27 +020013179 }
13180 /* connector->new_encoder is now updated for all connectors. */
13181
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030013182 for_each_connector_in_state(state, drm_connector, connector_state, i) {
13183 connector = to_intel_connector(drm_connector);
Ville Syrjälä76688512014-01-10 11:28:06 +020013184
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030013185 if (!connector_state->best_encoder) {
13186 ret = drm_atomic_set_crtc_for_connector(connector_state,
13187 NULL);
13188 if (ret)
13189 return ret;
13190
Daniel Vetter50f56112012-07-02 09:35:43 +020013191 continue;
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030013192 }
Daniel Vetter50f56112012-07-02 09:35:43 +020013193
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030013194 if (intel_connector_in_mode_set(connector, set)) {
13195 struct drm_crtc *crtc = connector->base.state->crtc;
13196
13197 /* If this connector was in a previous crtc, add it
13198 * to the state. We might need to disable it. */
13199 if (crtc) {
13200 crtc_state =
13201 drm_atomic_get_crtc_state(state, crtc);
13202 if (IS_ERR(crtc_state))
13203 return PTR_ERR(crtc_state);
13204 }
13205
13206 ret = drm_atomic_set_crtc_for_connector(connector_state,
13207 set->crtc);
13208 if (ret)
13209 return ret;
13210 }
Daniel Vetter50f56112012-07-02 09:35:43 +020013211
13212 /* Make sure the new CRTC will work with the encoder */
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030013213 if (!drm_encoder_crtc_ok(connector_state->best_encoder,
13214 connector_state->crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020013215 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +020013216 }
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020013217
Daniel Vetter9a935852012-07-05 22:34:27 +020013218 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
13219 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030013220 connector->base.name,
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030013221 connector_state->crtc->base.id);
13222
13223 if (connector_state->best_encoder != &connector->encoder->base)
13224 connector->encoder =
13225 to_intel_encoder(connector_state->best_encoder);
Daniel Vetter9a935852012-07-05 22:34:27 +020013226 }
13227
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030013228 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020013229 bool has_connectors;
13230
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030013231 ret = drm_atomic_add_affected_connectors(state, crtc);
13232 if (ret)
13233 return ret;
Paulo Zanoni5a65f352014-01-07 14:55:53 -020013234
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020013235 has_connectors = !!drm_atomic_connectors_for_crtc(state, crtc);
13236 if (has_connectors != crtc_state->enable)
13237 crtc_state->enable =
13238 crtc_state->active = has_connectors;
Ville Syrjälä76688512014-01-10 11:28:06 +020013239 }
13240
Ander Conselvan de Oliveira8c7b5cc2015-04-21 17:13:19 +030013241 ret = intel_modeset_setup_plane_state(state, set->crtc, set->mode,
13242 set->fb, set->x, set->y);
13243 if (ret)
13244 return ret;
13245
13246 crtc_state = drm_atomic_get_crtc_state(state, set->crtc);
13247 if (IS_ERR(crtc_state))
13248 return PTR_ERR(crtc_state);
13249
13250 if (set->mode)
13251 drm_mode_copy(&crtc_state->mode, set->mode);
13252
13253 if (set->num_connectors)
13254 crtc_state->active = true;
13255
Daniel Vetter2e431052012-07-04 22:42:15 +020013256 return 0;
13257}
13258
13259static int intel_crtc_set_config(struct drm_mode_set *set)
13260{
13261 struct drm_device *dev;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013262 struct drm_atomic_state *state = NULL;
Daniel Vetter2e431052012-07-04 22:42:15 +020013263 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +020013264
Daniel Vetter8d3e3752012-07-05 16:09:09 +020013265 BUG_ON(!set);
13266 BUG_ON(!set->crtc);
13267 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +020013268
Daniel Vetter7e53f3a2013-01-21 10:52:17 +010013269 /* Enforce sane interface api - has been abused by the fb helper. */
13270 BUG_ON(!set->mode && set->fb);
13271 BUG_ON(set->fb && set->num_connectors == 0);
Daniel Vetter431e50f2012-07-10 17:53:42 +020013272
Daniel Vetter2e431052012-07-04 22:42:15 +020013273 if (set->fb) {
13274 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
13275 set->crtc->base.id, set->fb->base.id,
13276 (int)set->num_connectors, set->x, set->y);
13277 } else {
13278 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +020013279 }
13280
13281 dev = set->crtc->dev;
13282
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013283 state = drm_atomic_state_alloc(dev);
Ander Conselvan de Oliveira7cbf41d2015-04-21 17:13:16 +030013284 if (!state)
13285 return -ENOMEM;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013286
13287 state->acquire_ctx = dev->mode_config.acquire_ctx;
13288
Ander Conselvan de Oliveira462a4252015-04-21 17:13:00 +030013289 ret = intel_modeset_stage_output_state(dev, set, state);
Daniel Vetter2e431052012-07-04 22:42:15 +020013290 if (ret)
Ander Conselvan de Oliveira7cbf41d2015-04-21 17:13:16 +030013291 goto out;
Daniel Vetter2e431052012-07-04 22:42:15 +020013292
Ander Conselvan de Oliveira568c6342015-06-01 12:49:57 +020013293 ret = intel_modeset_compute_config(state);
13294 if (ret)
Ander Conselvan de Oliveira7cbf41d2015-04-21 17:13:16 +030013295 goto out;
Jesse Barnes50f52752014-11-07 13:11:00 -080013296
Jesse Barnes1f9954d2014-11-05 14:26:10 -080013297 intel_update_pipe_size(to_intel_crtc(set->crtc));
13298
Ander Conselvan de Oliveira568c6342015-06-01 12:49:57 +020013299 ret = intel_set_mode_checked(state);
Chris Wilson2d05eae2013-05-03 17:36:25 +010013300 if (ret) {
Daniel Vetterbf67dfe2013-06-25 11:06:52 +020013301 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
13302 set->crtc->base.id, ret);
Chris Wilson2d05eae2013-05-03 17:36:25 +010013303 }
Daniel Vetter50f56112012-07-02 09:35:43 +020013304
Ander Conselvan de Oliveira7cbf41d2015-04-21 17:13:16 +030013305out:
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030013306 if (ret)
13307 drm_atomic_state_free(state);
Daniel Vetter50f56112012-07-02 09:35:43 +020013308 return ret;
13309}
13310
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013311static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013312 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +020013313 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013314 .destroy = intel_crtc_destroy,
13315 .page_flip = intel_crtc_page_flip,
Matt Roper13568372015-01-21 16:35:47 -080013316 .atomic_duplicate_state = intel_crtc_duplicate_state,
13317 .atomic_destroy_state = intel_crtc_destroy_state,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013318};
13319
Daniel Vetter53589012013-06-05 13:34:16 +020013320static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
13321 struct intel_shared_dpll *pll,
13322 struct intel_dpll_hw_state *hw_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013323{
Daniel Vetter53589012013-06-05 13:34:16 +020013324 uint32_t val;
13325
Daniel Vetterf458ebb2014-09-30 10:56:39 +020013326 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_PLLS))
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030013327 return false;
13328
Daniel Vetter53589012013-06-05 13:34:16 +020013329 val = I915_READ(PCH_DPLL(pll->id));
Daniel Vetter66e985c2013-06-05 13:34:20 +020013330 hw_state->dpll = val;
13331 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
13332 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
Daniel Vetter53589012013-06-05 13:34:16 +020013333
13334 return val & DPLL_VCO_ENABLE;
13335}
13336
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013337static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
13338 struct intel_shared_dpll *pll)
13339{
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013340 I915_WRITE(PCH_FP0(pll->id), pll->config.hw_state.fp0);
13341 I915_WRITE(PCH_FP1(pll->id), pll->config.hw_state.fp1);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013342}
13343
Daniel Vettere7b903d2013-06-05 13:34:14 +020013344static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
13345 struct intel_shared_dpll *pll)
13346{
Daniel Vettere7b903d2013-06-05 13:34:14 +020013347 /* PCH refclock must be enabled first */
Paulo Zanoni89eff4b2014-01-08 11:12:28 -020013348 ibx_assert_pch_refclk_enabled(dev_priv);
Daniel Vettere7b903d2013-06-05 13:34:14 +020013349
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013350 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013351
13352 /* Wait for the clocks to stabilize. */
13353 POSTING_READ(PCH_DPLL(pll->id));
13354 udelay(150);
13355
13356 /* The pixel multiplier can only be updated once the
13357 * DPLL is enabled and the clocks are stable.
13358 *
13359 * So write it again.
13360 */
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013361 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013362 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020013363 udelay(200);
13364}
13365
13366static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
13367 struct intel_shared_dpll *pll)
13368{
13369 struct drm_device *dev = dev_priv->dev;
13370 struct intel_crtc *crtc;
Daniel Vettere7b903d2013-06-05 13:34:14 +020013371
13372 /* Make sure no transcoder isn't still depending on us. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013373 for_each_intel_crtc(dev, crtc) {
Daniel Vettere7b903d2013-06-05 13:34:14 +020013374 if (intel_crtc_to_shared_dpll(crtc) == pll)
13375 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
13376 }
13377
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013378 I915_WRITE(PCH_DPLL(pll->id), 0);
13379 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020013380 udelay(200);
13381}
13382
Daniel Vetter46edb022013-06-05 13:34:12 +020013383static char *ibx_pch_dpll_names[] = {
13384 "PCH DPLL A",
13385 "PCH DPLL B",
13386};
13387
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013388static void ibx_pch_dpll_init(struct drm_device *dev)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013389{
Daniel Vettere7b903d2013-06-05 13:34:14 +020013390 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013391 int i;
13392
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013393 dev_priv->num_shared_dpll = 2;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013394
Daniel Vettere72f9fb2013-06-05 13:34:06 +020013395 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
Daniel Vetter46edb022013-06-05 13:34:12 +020013396 dev_priv->shared_dplls[i].id = i;
13397 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013398 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
Daniel Vettere7b903d2013-06-05 13:34:14 +020013399 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
13400 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
Daniel Vetter53589012013-06-05 13:34:16 +020013401 dev_priv->shared_dplls[i].get_hw_state =
13402 ibx_pch_dpll_get_hw_state;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013403 }
13404}
13405
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013406static void intel_shared_dpll_init(struct drm_device *dev)
13407{
Daniel Vettere7b903d2013-06-05 13:34:14 +020013408 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013409
Ville Syrjäläb6283052015-06-03 15:45:07 +030013410 intel_update_cdclk(dev);
13411
Daniel Vetter9cd86932014-06-25 22:01:57 +030013412 if (HAS_DDI(dev))
13413 intel_ddi_pll_init(dev);
13414 else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013415 ibx_pch_dpll_init(dev);
13416 else
13417 dev_priv->num_shared_dpll = 0;
13418
13419 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013420}
13421
Matt Roper6beb8c232014-12-01 15:40:14 -080013422/**
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +000013423 * intel_wm_need_update - Check whether watermarks need updating
13424 * @plane: drm plane
13425 * @state: new plane state
13426 *
13427 * Check current plane state versus the new one to determine whether
13428 * watermarks need to be recalculated.
13429 *
13430 * Returns true or false.
13431 */
13432bool intel_wm_need_update(struct drm_plane *plane,
13433 struct drm_plane_state *state)
13434{
13435 /* Update watermarks on tiling changes. */
13436 if (!plane->state->fb || !state->fb ||
13437 plane->state->fb->modifier[0] != state->fb->modifier[0] ||
13438 plane->state->rotation != state->rotation)
13439 return true;
13440
13441 return false;
13442}
13443
13444/**
Matt Roper6beb8c232014-12-01 15:40:14 -080013445 * intel_prepare_plane_fb - Prepare fb for usage on plane
13446 * @plane: drm plane to prepare for
13447 * @fb: framebuffer to prepare for presentation
13448 *
13449 * Prepares a framebuffer for usage on a display plane. Generally this
13450 * involves pinning the underlying object and updating the frontbuffer tracking
13451 * bits. Some older platforms need special physical address handling for
13452 * cursor planes.
13453 *
13454 * Returns 0 on success, negative error code on failure.
13455 */
13456int
13457intel_prepare_plane_fb(struct drm_plane *plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +000013458 struct drm_framebuffer *fb,
13459 const struct drm_plane_state *new_state)
Matt Roper465c1202014-05-29 08:06:54 -070013460{
13461 struct drm_device *dev = plane->dev;
Matt Roper6beb8c232014-12-01 15:40:14 -080013462 struct intel_plane *intel_plane = to_intel_plane(plane);
13463 enum pipe pipe = intel_plane->pipe;
13464 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
13465 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->fb);
13466 unsigned frontbuffer_bits = 0;
13467 int ret = 0;
Matt Roper465c1202014-05-29 08:06:54 -070013468
Matt Roperea2c67b2014-12-23 10:41:52 -080013469 if (!obj)
Matt Roper465c1202014-05-29 08:06:54 -070013470 return 0;
13471
Matt Roper6beb8c232014-12-01 15:40:14 -080013472 switch (plane->type) {
13473 case DRM_PLANE_TYPE_PRIMARY:
13474 frontbuffer_bits = INTEL_FRONTBUFFER_PRIMARY(pipe);
13475 break;
13476 case DRM_PLANE_TYPE_CURSOR:
13477 frontbuffer_bits = INTEL_FRONTBUFFER_CURSOR(pipe);
13478 break;
13479 case DRM_PLANE_TYPE_OVERLAY:
13480 frontbuffer_bits = INTEL_FRONTBUFFER_SPRITE(pipe);
13481 break;
13482 }
Matt Roper465c1202014-05-29 08:06:54 -070013483
Matt Roper4c345742014-07-09 16:22:10 -070013484 mutex_lock(&dev->struct_mutex);
Matt Roper465c1202014-05-29 08:06:54 -070013485
Matt Roper6beb8c232014-12-01 15:40:14 -080013486 if (plane->type == DRM_PLANE_TYPE_CURSOR &&
13487 INTEL_INFO(dev)->cursor_needs_physical) {
13488 int align = IS_I830(dev) ? 16 * 1024 : 256;
13489 ret = i915_gem_object_attach_phys(obj, align);
13490 if (ret)
13491 DRM_DEBUG_KMS("failed to attach phys object\n");
13492 } else {
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000013493 ret = intel_pin_and_fence_fb_obj(plane, fb, new_state, NULL);
Matt Roper6beb8c232014-12-01 15:40:14 -080013494 }
13495
13496 if (ret == 0)
13497 i915_gem_track_fb(old_obj, obj, frontbuffer_bits);
13498
13499 mutex_unlock(&dev->struct_mutex);
13500
13501 return ret;
13502}
13503
Matt Roper38f3ce32014-12-02 07:45:25 -080013504/**
13505 * intel_cleanup_plane_fb - Cleans up an fb after plane use
13506 * @plane: drm plane to clean up for
13507 * @fb: old framebuffer that was on plane
13508 *
13509 * Cleans up a framebuffer that has just been removed from a plane.
13510 */
13511void
13512intel_cleanup_plane_fb(struct drm_plane *plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +000013513 struct drm_framebuffer *fb,
13514 const struct drm_plane_state *old_state)
Matt Roper38f3ce32014-12-02 07:45:25 -080013515{
13516 struct drm_device *dev = plane->dev;
13517 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
13518
13519 if (WARN_ON(!obj))
13520 return;
13521
13522 if (plane->type != DRM_PLANE_TYPE_CURSOR ||
13523 !INTEL_INFO(dev)->cursor_needs_physical) {
13524 mutex_lock(&dev->struct_mutex);
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000013525 intel_unpin_fb_obj(fb, old_state);
Matt Roper38f3ce32014-12-02 07:45:25 -080013526 mutex_unlock(&dev->struct_mutex);
13527 }
Matt Roper465c1202014-05-29 08:06:54 -070013528}
13529
Chandra Konduru6156a452015-04-27 13:48:39 -070013530int
13531skl_max_scale(struct intel_crtc *intel_crtc, struct intel_crtc_state *crtc_state)
13532{
13533 int max_scale;
13534 struct drm_device *dev;
13535 struct drm_i915_private *dev_priv;
13536 int crtc_clock, cdclk;
13537
13538 if (!intel_crtc || !crtc_state)
13539 return DRM_PLANE_HELPER_NO_SCALING;
13540
13541 dev = intel_crtc->base.dev;
13542 dev_priv = dev->dev_private;
13543 crtc_clock = crtc_state->base.adjusted_mode.crtc_clock;
13544 cdclk = dev_priv->display.get_display_clock_speed(dev);
13545
13546 if (!crtc_clock || !cdclk)
13547 return DRM_PLANE_HELPER_NO_SCALING;
13548
13549 /*
13550 * skl max scale is lower of:
13551 * close to 3 but not 3, -1 is for that purpose
13552 * or
13553 * cdclk/crtc_clock
13554 */
13555 max_scale = min((1 << 16) * 3 - 1, (1 << 8) * ((cdclk << 8) / crtc_clock));
13556
13557 return max_scale;
13558}
13559
Matt Roper465c1202014-05-29 08:06:54 -070013560static int
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013561intel_check_primary_plane(struct drm_plane *plane,
13562 struct intel_plane_state *state)
Matt Roper465c1202014-05-29 08:06:54 -070013563{
Matt Roper32b7eee2014-12-24 07:59:06 -080013564 struct drm_device *dev = plane->dev;
13565 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roper2b875c22014-12-01 15:40:13 -080013566 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080013567 struct intel_crtc *intel_crtc;
Chandra Konduru6156a452015-04-27 13:48:39 -070013568 struct intel_crtc_state *crtc_state;
Matt Roper2b875c22014-12-01 15:40:13 -080013569 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013570 struct drm_rect *dest = &state->dst;
13571 struct drm_rect *src = &state->src;
13572 const struct drm_rect *clip = &state->clip;
Sonika Jindald8106362015-04-10 14:37:28 +053013573 bool can_position = false;
Chandra Konduru6156a452015-04-27 13:48:39 -070013574 int max_scale = DRM_PLANE_HELPER_NO_SCALING;
13575 int min_scale = DRM_PLANE_HELPER_NO_SCALING;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013576 int ret;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013577
Matt Roperea2c67b2014-12-23 10:41:52 -080013578 crtc = crtc ? crtc : plane->crtc;
13579 intel_crtc = to_intel_crtc(crtc);
Chandra Konduru6156a452015-04-27 13:48:39 -070013580 crtc_state = state->base.state ?
13581 intel_atomic_get_crtc_state(state->base.state, intel_crtc) : NULL;
Matt Roperea2c67b2014-12-23 10:41:52 -080013582
Chandra Konduru6156a452015-04-27 13:48:39 -070013583 if (INTEL_INFO(dev)->gen >= 9) {
Chandra Konduru225c2282015-05-18 16:18:44 -070013584 /* use scaler when colorkey is not required */
13585 if (to_intel_plane(plane)->ckey.flags == I915_SET_COLORKEY_NONE) {
13586 min_scale = 1;
13587 max_scale = skl_max_scale(intel_crtc, crtc_state);
13588 }
Sonika Jindald8106362015-04-10 14:37:28 +053013589 can_position = true;
Chandra Konduru6156a452015-04-27 13:48:39 -070013590 }
Sonika Jindald8106362015-04-10 14:37:28 +053013591
Matt Roperc59cb172014-12-01 15:40:16 -080013592 ret = drm_plane_helper_check_update(plane, crtc, fb,
13593 src, dest, clip,
Chandra Konduru6156a452015-04-27 13:48:39 -070013594 min_scale,
13595 max_scale,
Sonika Jindald8106362015-04-10 14:37:28 +053013596 can_position, true,
13597 &state->visible);
Matt Roperc59cb172014-12-01 15:40:16 -080013598 if (ret)
13599 return ret;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013600
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013601 if (intel_crtc->active) {
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030013602 struct intel_plane_state *old_state =
13603 to_intel_plane_state(plane->state);
13604
Matt Roper32b7eee2014-12-24 07:59:06 -080013605 intel_crtc->atomic.wait_for_flips = true;
13606
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013607 /*
13608 * FBC does not work on some platforms for rotated
13609 * planes, so disable it when rotation is not 0 and
13610 * update it when rotation is set back to 0.
13611 *
13612 * FIXME: This is redundant with the fbc update done in
13613 * the primary plane enable function except that that
13614 * one is done too late. We eventually need to unify
13615 * this.
13616 */
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030013617 if (state->visible &&
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013618 INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev) &&
Paulo Zanonie35fef22015-02-09 14:46:29 -020013619 dev_priv->fbc.crtc == intel_crtc &&
Matt Roper8e7d6882015-01-21 16:35:41 -080013620 state->base.rotation != BIT(DRM_ROTATE_0)) {
Matt Roper32b7eee2014-12-24 07:59:06 -080013621 intel_crtc->atomic.disable_fbc = true;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013622 }
13623
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030013624 if (state->visible && !old_state->visible) {
Matt Roper32b7eee2014-12-24 07:59:06 -080013625 /*
13626 * BDW signals flip done immediately if the plane
13627 * is disabled, even if the plane enable is already
13628 * armed to occur at the next vblank :(
13629 */
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030013630 if (IS_BROADWELL(dev))
Matt Roper32b7eee2014-12-24 07:59:06 -080013631 intel_crtc->atomic.wait_vblank = true;
Maarten Lankhorstfb9d6cf2015-06-01 12:49:56 +020013632
13633 if (crtc_state && !needs_modeset(&crtc_state->base))
13634 intel_crtc->atomic.post_enable_primary = true;
Matt Roper32b7eee2014-12-24 07:59:06 -080013635 }
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013636
Maarten Lankhorstfb9d6cf2015-06-01 12:49:56 +020013637 if (!state->visible && old_state->visible &&
13638 crtc_state && !needs_modeset(&crtc_state->base))
13639 intel_crtc->atomic.pre_disable_primary = true;
13640
Matt Roper32b7eee2014-12-24 07:59:06 -080013641 intel_crtc->atomic.fb_bits |=
13642 INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
13643
13644 intel_crtc->atomic.update_fbc = true;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +000013645
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +000013646 if (intel_wm_need_update(plane, &state->base))
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +000013647 intel_crtc->atomic.update_wm = true;
Matt Roperc59cb172014-12-01 15:40:16 -080013648 }
13649
Chandra Konduru6156a452015-04-27 13:48:39 -070013650 if (INTEL_INFO(dev)->gen >= 9) {
13651 ret = skl_update_scaler_users(intel_crtc, crtc_state,
13652 to_intel_plane(plane), state, 0);
13653 if (ret)
13654 return ret;
13655 }
13656
Matt Roperc59cb172014-12-01 15:40:16 -080013657 return 0;
Matt Roper465c1202014-05-29 08:06:54 -070013658}
13659
Sonika Jindal48404c12014-08-22 14:06:04 +053013660static void
13661intel_commit_primary_plane(struct drm_plane *plane,
13662 struct intel_plane_state *state)
13663{
Matt Roper2b875c22014-12-01 15:40:13 -080013664 struct drm_crtc *crtc = state->base.crtc;
13665 struct drm_framebuffer *fb = state->base.fb;
13666 struct drm_device *dev = plane->dev;
Sonika Jindal48404c12014-08-22 14:06:04 +053013667 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperea2c67b2014-12-23 10:41:52 -080013668 struct intel_crtc *intel_crtc;
Sonika Jindalce54d852014-08-21 11:44:39 +053013669 struct drm_rect *src = &state->src;
Matt Ropercf4c7c12014-12-04 10:27:42 -080013670
Matt Roperea2c67b2014-12-23 10:41:52 -080013671 crtc = crtc ? crtc : plane->crtc;
13672 intel_crtc = to_intel_crtc(crtc);
13673
Matt Ropercf4c7c12014-12-04 10:27:42 -080013674 plane->fb = fb;
Sonika Jindalce54d852014-08-21 11:44:39 +053013675 crtc->x = src->x1 >> 16;
Matt Roper465c1202014-05-29 08:06:54 -070013676 crtc->y = src->y1 >> 16;
13677
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013678 if (intel_crtc->active) {
Maarten Lankhorst27321ae2015-04-21 17:12:52 +030013679 if (state->visible)
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013680 /* FIXME: kill this fastboot hack */
13681 intel_update_pipe_size(intel_crtc);
13682
Maarten Lankhorst27321ae2015-04-21 17:12:52 +030013683 dev_priv->display.update_primary_plane(crtc, plane->fb,
13684 crtc->x, crtc->y);
Matt Roper32b7eee2014-12-24 07:59:06 -080013685 }
13686}
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013687
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013688static void
13689intel_disable_primary_plane(struct drm_plane *plane,
13690 struct drm_crtc *crtc,
13691 bool force)
13692{
13693 struct drm_device *dev = plane->dev;
13694 struct drm_i915_private *dev_priv = dev->dev_private;
13695
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013696 dev_priv->display.update_primary_plane(crtc, NULL, 0, 0);
13697}
13698
Matt Roper32b7eee2014-12-24 07:59:06 -080013699static void intel_begin_crtc_commit(struct drm_crtc *crtc)
13700{
13701 struct drm_device *dev = crtc->dev;
13702 struct drm_i915_private *dev_priv = dev->dev_private;
13703 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorst5c2db182015-06-01 12:50:11 +020013704 struct drm_crtc_state *crtc_state = intel_crtc->base.state;
Matt Roperea2c67b2014-12-23 10:41:52 -080013705 struct intel_plane *intel_plane;
13706 struct drm_plane *p;
13707 unsigned fb_bits = 0;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013708
Matt Roperea2c67b2014-12-23 10:41:52 -080013709 /* Track fb's for any planes being disabled */
13710 list_for_each_entry(p, &dev->mode_config.plane_list, head) {
13711 intel_plane = to_intel_plane(p);
13712
13713 if (intel_crtc->atomic.disabled_planes &
13714 (1 << drm_plane_index(p))) {
13715 switch (p->type) {
13716 case DRM_PLANE_TYPE_PRIMARY:
13717 fb_bits = INTEL_FRONTBUFFER_PRIMARY(intel_plane->pipe);
13718 break;
13719 case DRM_PLANE_TYPE_CURSOR:
13720 fb_bits = INTEL_FRONTBUFFER_CURSOR(intel_plane->pipe);
13721 break;
13722 case DRM_PLANE_TYPE_OVERLAY:
13723 fb_bits = INTEL_FRONTBUFFER_SPRITE(intel_plane->pipe);
13724 break;
13725 }
13726
13727 mutex_lock(&dev->struct_mutex);
13728 i915_gem_track_fb(intel_fb_obj(p->fb), NULL, fb_bits);
13729 mutex_unlock(&dev->struct_mutex);
13730 }
13731 }
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013732
Matt Roper32b7eee2014-12-24 07:59:06 -080013733 if (intel_crtc->atomic.wait_for_flips)
13734 intel_crtc_wait_for_pending_flips(crtc);
13735
13736 if (intel_crtc->atomic.disable_fbc)
13737 intel_fbc_disable(dev);
13738
13739 if (intel_crtc->atomic.pre_disable_primary)
13740 intel_pre_disable_primary(crtc);
13741
13742 if (intel_crtc->atomic.update_wm)
13743 intel_update_watermarks(crtc);
13744
13745 intel_runtime_pm_get(dev_priv);
Matt Roperc34c9ee2014-12-23 10:41:50 -080013746
13747 /* Perform vblank evasion around commit operation */
Maarten Lankhorst5c2db182015-06-01 12:50:11 +020013748 if (crtc_state->active && !needs_modeset(crtc_state))
Matt Roperc34c9ee2014-12-23 10:41:50 -080013749 intel_crtc->atomic.evade =
13750 intel_pipe_update_start(intel_crtc,
13751 &intel_crtc->atomic.start_vbl_count);
Matt Roper32b7eee2014-12-24 07:59:06 -080013752}
13753
13754static void intel_finish_crtc_commit(struct drm_crtc *crtc)
13755{
13756 struct drm_device *dev = crtc->dev;
13757 struct drm_i915_private *dev_priv = dev->dev_private;
13758 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13759 struct drm_plane *p;
13760
Matt Roperc34c9ee2014-12-23 10:41:50 -080013761 if (intel_crtc->atomic.evade)
13762 intel_pipe_update_end(intel_crtc,
13763 intel_crtc->atomic.start_vbl_count);
13764
Matt Roper32b7eee2014-12-24 07:59:06 -080013765 intel_runtime_pm_put(dev_priv);
13766
Maarten Lankhorst8a8f7f42015-06-01 12:49:55 +020013767 if (intel_crtc->atomic.wait_vblank && intel_crtc->active)
Matt Roper32b7eee2014-12-24 07:59:06 -080013768 intel_wait_for_vblank(dev, intel_crtc->pipe);
13769
13770 intel_frontbuffer_flip(dev, intel_crtc->atomic.fb_bits);
13771
13772 if (intel_crtc->atomic.update_fbc) {
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013773 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020013774 intel_fbc_update(dev);
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013775 mutex_unlock(&dev->struct_mutex);
13776 }
Matt Roper465c1202014-05-29 08:06:54 -070013777
Matt Roper32b7eee2014-12-24 07:59:06 -080013778 if (intel_crtc->atomic.post_enable_primary)
13779 intel_post_enable_primary(crtc);
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013780
Matt Roper32b7eee2014-12-24 07:59:06 -080013781 drm_for_each_legacy_plane(p, &dev->mode_config.plane_list)
13782 if (intel_crtc->atomic.update_sprite_watermarks & drm_plane_index(p))
13783 intel_update_sprite_watermarks(p, crtc, 0, 0, 0,
13784 false, false);
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013785
Matt Roper32b7eee2014-12-24 07:59:06 -080013786 memset(&intel_crtc->atomic, 0, sizeof(intel_crtc->atomic));
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013787}
13788
Matt Ropercf4c7c12014-12-04 10:27:42 -080013789/**
Matt Roper4a3b8762014-12-23 10:41:51 -080013790 * intel_plane_destroy - destroy a plane
13791 * @plane: plane to destroy
Matt Ropercf4c7c12014-12-04 10:27:42 -080013792 *
Matt Roper4a3b8762014-12-23 10:41:51 -080013793 * Common destruction function for all types of planes (primary, cursor,
13794 * sprite).
Matt Ropercf4c7c12014-12-04 10:27:42 -080013795 */
Matt Roper4a3b8762014-12-23 10:41:51 -080013796void intel_plane_destroy(struct drm_plane *plane)
Matt Roper465c1202014-05-29 08:06:54 -070013797{
13798 struct intel_plane *intel_plane = to_intel_plane(plane);
13799 drm_plane_cleanup(plane);
13800 kfree(intel_plane);
13801}
13802
Matt Roper65a3fea2015-01-21 16:35:42 -080013803const struct drm_plane_funcs intel_plane_funcs = {
Matt Roper70a101f2015-04-08 18:56:53 -070013804 .update_plane = drm_atomic_helper_update_plane,
13805 .disable_plane = drm_atomic_helper_disable_plane,
Matt Roper3d7d6512014-06-10 08:28:13 -070013806 .destroy = intel_plane_destroy,
Matt Roperc196e1d2015-01-21 16:35:48 -080013807 .set_property = drm_atomic_helper_plane_set_property,
Matt Ropera98b3432015-01-21 16:35:43 -080013808 .atomic_get_property = intel_plane_atomic_get_property,
13809 .atomic_set_property = intel_plane_atomic_set_property,
Matt Roperea2c67b2014-12-23 10:41:52 -080013810 .atomic_duplicate_state = intel_plane_duplicate_state,
13811 .atomic_destroy_state = intel_plane_destroy_state,
13812
Matt Roper465c1202014-05-29 08:06:54 -070013813};
13814
13815static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
13816 int pipe)
13817{
13818 struct intel_plane *primary;
Matt Roper8e7d6882015-01-21 16:35:41 -080013819 struct intel_plane_state *state;
Matt Roper465c1202014-05-29 08:06:54 -070013820 const uint32_t *intel_primary_formats;
13821 int num_formats;
13822
13823 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
13824 if (primary == NULL)
13825 return NULL;
13826
Matt Roper8e7d6882015-01-21 16:35:41 -080013827 state = intel_create_plane_state(&primary->base);
13828 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080013829 kfree(primary);
13830 return NULL;
13831 }
Matt Roper8e7d6882015-01-21 16:35:41 -080013832 primary->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080013833
Matt Roper465c1202014-05-29 08:06:54 -070013834 primary->can_scale = false;
13835 primary->max_downscale = 1;
Chandra Konduru6156a452015-04-27 13:48:39 -070013836 if (INTEL_INFO(dev)->gen >= 9) {
13837 primary->can_scale = true;
Chandra Konduruaf99ced2015-05-11 14:35:47 -070013838 state->scaler_id = -1;
Chandra Konduru6156a452015-04-27 13:48:39 -070013839 }
Matt Roper465c1202014-05-29 08:06:54 -070013840 primary->pipe = pipe;
13841 primary->plane = pipe;
Matt Roperc59cb172014-12-01 15:40:16 -080013842 primary->check_plane = intel_check_primary_plane;
13843 primary->commit_plane = intel_commit_primary_plane;
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013844 primary->disable_plane = intel_disable_primary_plane;
Chandra Konduru08e221f2015-04-07 15:28:37 -070013845 primary->ckey.flags = I915_SET_COLORKEY_NONE;
Matt Roper465c1202014-05-29 08:06:54 -070013846 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
13847 primary->plane = !pipe;
13848
Damien Lespiau6c0fd452015-05-19 12:29:16 +010013849 if (INTEL_INFO(dev)->gen >= 9) {
13850 intel_primary_formats = skl_primary_formats;
13851 num_formats = ARRAY_SIZE(skl_primary_formats);
13852 } else if (INTEL_INFO(dev)->gen >= 4) {
Damien Lespiau568db4f2015-05-12 16:13:18 +010013853 intel_primary_formats = i965_primary_formats;
13854 num_formats = ARRAY_SIZE(i965_primary_formats);
Damien Lespiau6c0fd452015-05-19 12:29:16 +010013855 } else {
13856 intel_primary_formats = i8xx_primary_formats;
13857 num_formats = ARRAY_SIZE(i8xx_primary_formats);
Matt Roper465c1202014-05-29 08:06:54 -070013858 }
13859
13860 drm_universal_plane_init(dev, &primary->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080013861 &intel_plane_funcs,
Matt Roper465c1202014-05-29 08:06:54 -070013862 intel_primary_formats, num_formats,
13863 DRM_PLANE_TYPE_PRIMARY);
Sonika Jindal48404c12014-08-22 14:06:04 +053013864
Sonika Jindal3b7a5112015-04-10 14:37:29 +053013865 if (INTEL_INFO(dev)->gen >= 4)
13866 intel_create_rotation_property(dev, primary);
Sonika Jindal48404c12014-08-22 14:06:04 +053013867
Matt Roperea2c67b2014-12-23 10:41:52 -080013868 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
13869
Matt Roper465c1202014-05-29 08:06:54 -070013870 return &primary->base;
13871}
13872
Sonika Jindal3b7a5112015-04-10 14:37:29 +053013873void intel_create_rotation_property(struct drm_device *dev, struct intel_plane *plane)
13874{
13875 if (!dev->mode_config.rotation_property) {
13876 unsigned long flags = BIT(DRM_ROTATE_0) |
13877 BIT(DRM_ROTATE_180);
13878
13879 if (INTEL_INFO(dev)->gen >= 9)
13880 flags |= BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270);
13881
13882 dev->mode_config.rotation_property =
13883 drm_mode_create_rotation_property(dev, flags);
13884 }
13885 if (dev->mode_config.rotation_property)
13886 drm_object_attach_property(&plane->base.base,
13887 dev->mode_config.rotation_property,
13888 plane->base.state->rotation);
13889}
13890
Matt Roper3d7d6512014-06-10 08:28:13 -070013891static int
Gustavo Padovan852e7872014-09-05 17:22:31 -030013892intel_check_cursor_plane(struct drm_plane *plane,
13893 struct intel_plane_state *state)
Matt Roper3d7d6512014-06-10 08:28:13 -070013894{
Matt Roper2b875c22014-12-01 15:40:13 -080013895 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080013896 struct drm_device *dev = plane->dev;
Matt Roper2b875c22014-12-01 15:40:13 -080013897 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan852e7872014-09-05 17:22:31 -030013898 struct drm_rect *dest = &state->dst;
13899 struct drm_rect *src = &state->src;
13900 const struct drm_rect *clip = &state->clip;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013901 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Matt Roperea2c67b2014-12-23 10:41:52 -080013902 struct intel_crtc *intel_crtc;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013903 unsigned stride;
13904 int ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030013905
Matt Roperea2c67b2014-12-23 10:41:52 -080013906 crtc = crtc ? crtc : plane->crtc;
13907 intel_crtc = to_intel_crtc(crtc);
13908
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013909 ret = drm_plane_helper_check_update(plane, crtc, fb,
Gustavo Padovan852e7872014-09-05 17:22:31 -030013910 src, dest, clip,
13911 DRM_PLANE_HELPER_NO_SCALING,
13912 DRM_PLANE_HELPER_NO_SCALING,
13913 true, true, &state->visible);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013914 if (ret)
13915 return ret;
13916
13917
13918 /* if we want to turn off the cursor ignore width and height */
13919 if (!obj)
Matt Roper32b7eee2014-12-24 07:59:06 -080013920 goto finish;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013921
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013922 /* Check for which cursor types we support */
Matt Roperea2c67b2014-12-23 10:41:52 -080013923 if (!cursor_size_ok(dev, state->base.crtc_w, state->base.crtc_h)) {
13924 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
13925 state->base.crtc_w, state->base.crtc_h);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013926 return -EINVAL;
13927 }
13928
Matt Roperea2c67b2014-12-23 10:41:52 -080013929 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
13930 if (obj->base.size < stride * state->base.crtc_h) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013931 DRM_DEBUG_KMS("buffer is too small\n");
13932 return -ENOMEM;
13933 }
13934
Ville Syrjälä3a656b52015-03-09 21:08:37 +020013935 if (fb->modifier[0] != DRM_FORMAT_MOD_NONE) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013936 DRM_DEBUG_KMS("cursor cannot be tiled\n");
13937 ret = -EINVAL;
13938 }
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013939
Matt Roper32b7eee2014-12-24 07:59:06 -080013940finish:
13941 if (intel_crtc->active) {
Ville Syrjälä3749f462015-03-10 13:15:22 +020013942 if (plane->state->crtc_w != state->base.crtc_w)
Matt Roper32b7eee2014-12-24 07:59:06 -080013943 intel_crtc->atomic.update_wm = true;
13944
13945 intel_crtc->atomic.fb_bits |=
13946 INTEL_FRONTBUFFER_CURSOR(intel_crtc->pipe);
13947 }
13948
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013949 return ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030013950}
13951
Matt Roperf4a2cf22014-12-01 15:40:12 -080013952static void
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013953intel_disable_cursor_plane(struct drm_plane *plane,
13954 struct drm_crtc *crtc,
13955 bool force)
13956{
13957 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13958
13959 if (!force) {
13960 plane->fb = NULL;
13961 intel_crtc->cursor_bo = NULL;
13962 intel_crtc->cursor_addr = 0;
13963 }
13964
13965 intel_crtc_update_cursor(crtc, false);
13966}
13967
13968static void
Gustavo Padovan852e7872014-09-05 17:22:31 -030013969intel_commit_cursor_plane(struct drm_plane *plane,
13970 struct intel_plane_state *state)
13971{
Matt Roper2b875c22014-12-01 15:40:13 -080013972 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080013973 struct drm_device *dev = plane->dev;
13974 struct intel_crtc *intel_crtc;
Matt Roper2b875c22014-12-01 15:40:13 -080013975 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
Gustavo Padovana912f122014-12-01 15:40:10 -080013976 uint32_t addr;
Matt Roper3d7d6512014-06-10 08:28:13 -070013977
Matt Roperea2c67b2014-12-23 10:41:52 -080013978 crtc = crtc ? crtc : plane->crtc;
13979 intel_crtc = to_intel_crtc(crtc);
Sonika Jindala919db92014-10-23 07:41:33 -070013980
Matt Roperea2c67b2014-12-23 10:41:52 -080013981 plane->fb = state->base.fb;
13982 crtc->cursor_x = state->base.crtc_x;
13983 crtc->cursor_y = state->base.crtc_y;
13984
Gustavo Padovana912f122014-12-01 15:40:10 -080013985 if (intel_crtc->cursor_bo == obj)
13986 goto update;
13987
Matt Roperf4a2cf22014-12-01 15:40:12 -080013988 if (!obj)
Gustavo Padovana912f122014-12-01 15:40:10 -080013989 addr = 0;
Matt Roperf4a2cf22014-12-01 15:40:12 -080013990 else if (!INTEL_INFO(dev)->cursor_needs_physical)
Gustavo Padovana912f122014-12-01 15:40:10 -080013991 addr = i915_gem_obj_ggtt_offset(obj);
Matt Roperf4a2cf22014-12-01 15:40:12 -080013992 else
Gustavo Padovana912f122014-12-01 15:40:10 -080013993 addr = obj->phys_handle->busaddr;
Gustavo Padovana912f122014-12-01 15:40:10 -080013994
Gustavo Padovana912f122014-12-01 15:40:10 -080013995 intel_crtc->cursor_addr = addr;
13996 intel_crtc->cursor_bo = obj;
13997update:
Gustavo Padovana912f122014-12-01 15:40:10 -080013998
Matt Roper32b7eee2014-12-24 07:59:06 -080013999 if (intel_crtc->active)
Gustavo Padovan852e7872014-09-05 17:22:31 -030014000 intel_crtc_update_cursor(crtc, state->visible);
Matt Roper3d7d6512014-06-10 08:28:13 -070014001}
Gustavo Padovan852e7872014-09-05 17:22:31 -030014002
Matt Roper3d7d6512014-06-10 08:28:13 -070014003static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
14004 int pipe)
14005{
14006 struct intel_plane *cursor;
Matt Roper8e7d6882015-01-21 16:35:41 -080014007 struct intel_plane_state *state;
Matt Roper3d7d6512014-06-10 08:28:13 -070014008
14009 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
14010 if (cursor == NULL)
14011 return NULL;
14012
Matt Roper8e7d6882015-01-21 16:35:41 -080014013 state = intel_create_plane_state(&cursor->base);
14014 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080014015 kfree(cursor);
14016 return NULL;
14017 }
Matt Roper8e7d6882015-01-21 16:35:41 -080014018 cursor->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080014019
Matt Roper3d7d6512014-06-10 08:28:13 -070014020 cursor->can_scale = false;
14021 cursor->max_downscale = 1;
14022 cursor->pipe = pipe;
14023 cursor->plane = pipe;
Matt Roperc59cb172014-12-01 15:40:16 -080014024 cursor->check_plane = intel_check_cursor_plane;
14025 cursor->commit_plane = intel_commit_cursor_plane;
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030014026 cursor->disable_plane = intel_disable_cursor_plane;
Matt Roper3d7d6512014-06-10 08:28:13 -070014027
14028 drm_universal_plane_init(dev, &cursor->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080014029 &intel_plane_funcs,
Matt Roper3d7d6512014-06-10 08:28:13 -070014030 intel_cursor_formats,
14031 ARRAY_SIZE(intel_cursor_formats),
14032 DRM_PLANE_TYPE_CURSOR);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070014033
14034 if (INTEL_INFO(dev)->gen >= 4) {
14035 if (!dev->mode_config.rotation_property)
14036 dev->mode_config.rotation_property =
14037 drm_mode_create_rotation_property(dev,
14038 BIT(DRM_ROTATE_0) |
14039 BIT(DRM_ROTATE_180));
14040 if (dev->mode_config.rotation_property)
14041 drm_object_attach_property(&cursor->base.base,
14042 dev->mode_config.rotation_property,
Matt Roper8e7d6882015-01-21 16:35:41 -080014043 state->base.rotation);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070014044 }
14045
Chandra Konduruaf99ced2015-05-11 14:35:47 -070014046 if (INTEL_INFO(dev)->gen >=9)
14047 state->scaler_id = -1;
14048
Matt Roperea2c67b2014-12-23 10:41:52 -080014049 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
14050
Matt Roper3d7d6512014-06-10 08:28:13 -070014051 return &cursor->base;
14052}
14053
Chandra Konduru549e2bf2015-04-07 15:28:38 -070014054static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
14055 struct intel_crtc_state *crtc_state)
14056{
14057 int i;
14058 struct intel_scaler *intel_scaler;
14059 struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state;
14060
14061 for (i = 0; i < intel_crtc->num_scalers; i++) {
14062 intel_scaler = &scaler_state->scalers[i];
14063 intel_scaler->in_use = 0;
14064 intel_scaler->id = i;
14065
14066 intel_scaler->mode = PS_SCALER_MODE_DYN;
14067 }
14068
14069 scaler_state->scaler_id = -1;
14070}
14071
Hannes Ederb358d0a2008-12-18 21:18:47 +010014072static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -080014073{
Jani Nikulafbee40d2014-03-31 14:27:18 +030014074 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080014075 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020014076 struct intel_crtc_state *crtc_state = NULL;
Matt Roper3d7d6512014-06-10 08:28:13 -070014077 struct drm_plane *primary = NULL;
14078 struct drm_plane *cursor = NULL;
Matt Roper465c1202014-05-29 08:06:54 -070014079 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080014080
Daniel Vetter955382f2013-09-19 14:05:45 +020014081 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -080014082 if (intel_crtc == NULL)
14083 return;
14084
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020014085 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
14086 if (!crtc_state)
14087 goto fail;
Ander Conselvan de Oliveira550acef2015-04-21 17:13:24 +030014088 intel_crtc->config = crtc_state;
14089 intel_crtc->base.state = &crtc_state->base;
Matt Roper07878242015-02-25 11:43:26 -080014090 crtc_state->base.crtc = &intel_crtc->base;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020014091
Chandra Konduru549e2bf2015-04-07 15:28:38 -070014092 /* initialize shared scalers */
14093 if (INTEL_INFO(dev)->gen >= 9) {
14094 if (pipe == PIPE_C)
14095 intel_crtc->num_scalers = 1;
14096 else
14097 intel_crtc->num_scalers = SKL_NUM_SCALERS;
14098
14099 skl_init_scalers(dev, intel_crtc, crtc_state);
14100 }
14101
Matt Roper465c1202014-05-29 08:06:54 -070014102 primary = intel_primary_plane_create(dev, pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070014103 if (!primary)
14104 goto fail;
14105
14106 cursor = intel_cursor_plane_create(dev, pipe);
14107 if (!cursor)
14108 goto fail;
14109
Matt Roper465c1202014-05-29 08:06:54 -070014110 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
Matt Roper3d7d6512014-06-10 08:28:13 -070014111 cursor, &intel_crtc_funcs);
14112 if (ret)
14113 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080014114
14115 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -080014116 for (i = 0; i < 256; i++) {
14117 intel_crtc->lut_r[i] = i;
14118 intel_crtc->lut_g[i] = i;
14119 intel_crtc->lut_b[i] = i;
14120 }
14121
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020014122 /*
14123 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
Daniel Vetter8c0f92e2014-06-16 02:08:26 +020014124 * is hooked to pipe B. Hence we want plane A feeding pipe B.
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020014125 */
Jesse Barnes80824002009-09-10 15:28:06 -070014126 intel_crtc->pipe = pipe;
14127 intel_crtc->plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +010014128 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
Zhao Yakui28c97732009-10-09 11:39:41 +080014129 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +010014130 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -070014131 }
14132
Chris Wilson4b0e3332014-05-30 16:35:26 +030014133 intel_crtc->cursor_base = ~0;
14134 intel_crtc->cursor_cntl = ~0;
Ville Syrjälädc41c152014-08-13 11:57:05 +030014135 intel_crtc->cursor_size = ~0;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030014136
Jesse Barnes22fd0fa2009-12-02 13:42:53 -080014137 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
14138 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
14139 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
14140 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
14141
Jesse Barnes79e53942008-11-07 14:24:08 -080014142 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Daniel Vetter87b6b102014-05-15 15:33:46 +020014143
14144 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070014145 return;
14146
14147fail:
14148 if (primary)
14149 drm_plane_cleanup(primary);
14150 if (cursor)
14151 drm_plane_cleanup(cursor);
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020014152 kfree(crtc_state);
Matt Roper3d7d6512014-06-10 08:28:13 -070014153 kfree(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -080014154}
14155
Jesse Barnes752aa882013-10-31 18:55:49 +020014156enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
14157{
14158 struct drm_encoder *encoder = connector->base.encoder;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020014159 struct drm_device *dev = connector->base.dev;
Jesse Barnes752aa882013-10-31 18:55:49 +020014160
Rob Clark51fd3712013-11-19 12:10:12 -050014161 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Jesse Barnes752aa882013-10-31 18:55:49 +020014162
Ville Syrjäläd3babd32014-11-07 11:16:01 +020014163 if (!encoder || WARN_ON(!encoder->crtc))
Jesse Barnes752aa882013-10-31 18:55:49 +020014164 return INVALID_PIPE;
14165
14166 return to_intel_crtc(encoder->crtc)->pipe;
14167}
14168
Carl Worth08d7b3d2009-04-29 14:43:54 -070014169int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +000014170 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -070014171{
Carl Worth08d7b3d2009-04-29 14:43:54 -070014172 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Rob Clark7707e652014-07-17 23:30:04 -040014173 struct drm_crtc *drmmode_crtc;
Daniel Vetterc05422d2009-08-11 16:05:30 +020014174 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -070014175
Rob Clark7707e652014-07-17 23:30:04 -040014176 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
Carl Worth08d7b3d2009-04-29 14:43:54 -070014177
Rob Clark7707e652014-07-17 23:30:04 -040014178 if (!drmmode_crtc) {
Carl Worth08d7b3d2009-04-29 14:43:54 -070014179 DRM_ERROR("no such CRTC id\n");
Ville Syrjälä3f2c2052013-10-17 13:35:03 +030014180 return -ENOENT;
Carl Worth08d7b3d2009-04-29 14:43:54 -070014181 }
14182
Rob Clark7707e652014-07-17 23:30:04 -040014183 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetterc05422d2009-08-11 16:05:30 +020014184 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -070014185
Daniel Vetterc05422d2009-08-11 16:05:30 +020014186 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -070014187}
14188
Daniel Vetter66a92782012-07-12 20:08:18 +020014189static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080014190{
Daniel Vetter66a92782012-07-12 20:08:18 +020014191 struct drm_device *dev = encoder->base.dev;
14192 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080014193 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080014194 int entry = 0;
14195
Damien Lespiaub2784e12014-08-05 11:29:37 +010014196 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020014197 if (encoders_cloneable(encoder, source_encoder))
Daniel Vetter66a92782012-07-12 20:08:18 +020014198 index_mask |= (1 << entry);
14199
Jesse Barnes79e53942008-11-07 14:24:08 -080014200 entry++;
14201 }
Chris Wilson4ef69c72010-09-09 15:14:28 +010014202
Jesse Barnes79e53942008-11-07 14:24:08 -080014203 return index_mask;
14204}
14205
Chris Wilson4d302442010-12-14 19:21:29 +000014206static bool has_edp_a(struct drm_device *dev)
14207{
14208 struct drm_i915_private *dev_priv = dev->dev_private;
14209
14210 if (!IS_MOBILE(dev))
14211 return false;
14212
14213 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
14214 return false;
14215
Damien Lespiaue3589902014-02-07 19:12:50 +000014216 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
Chris Wilson4d302442010-12-14 19:21:29 +000014217 return false;
14218
14219 return true;
14220}
14221
Jesse Barnes84b4e042014-06-25 08:24:29 -070014222static bool intel_crt_present(struct drm_device *dev)
14223{
14224 struct drm_i915_private *dev_priv = dev->dev_private;
14225
Damien Lespiau884497e2013-12-03 13:56:23 +000014226 if (INTEL_INFO(dev)->gen >= 9)
14227 return false;
14228
Damien Lespiaucf404ce2014-10-01 20:04:15 +010014229 if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
Jesse Barnes84b4e042014-06-25 08:24:29 -070014230 return false;
14231
14232 if (IS_CHERRYVIEW(dev))
14233 return false;
14234
14235 if (IS_VALLEYVIEW(dev) && !dev_priv->vbt.int_crt_support)
14236 return false;
14237
14238 return true;
14239}
14240
Jesse Barnes79e53942008-11-07 14:24:08 -080014241static void intel_setup_outputs(struct drm_device *dev)
14242{
Eric Anholt725e30a2009-01-22 13:01:02 -080014243 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +010014244 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -040014245 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -080014246
Daniel Vetterc9093352013-06-06 22:22:47 +020014247 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080014248
Jesse Barnes84b4e042014-06-25 08:24:29 -070014249 if (intel_crt_present(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -020014250 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040014251
Vandana Kannanc776eb22014-08-19 12:05:01 +053014252 if (IS_BROXTON(dev)) {
14253 /*
14254 * FIXME: Broxton doesn't support port detection via the
14255 * DDI_BUF_CTL_A or SFUSE_STRAP registers, find another way to
14256 * detect the ports.
14257 */
14258 intel_ddi_init(dev, PORT_A);
14259 intel_ddi_init(dev, PORT_B);
14260 intel_ddi_init(dev, PORT_C);
14261 } else if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030014262 int found;
14263
Jesse Barnesde31fac2015-03-06 15:53:32 -080014264 /*
14265 * Haswell uses DDI functions to detect digital outputs.
14266 * On SKL pre-D0 the strap isn't connected, so we assume
14267 * it's there.
14268 */
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030014269 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
Jesse Barnesde31fac2015-03-06 15:53:32 -080014270 /* WaIgnoreDDIAStrap: skl */
14271 if (found ||
14272 (IS_SKYLAKE(dev) && INTEL_REVID(dev) < SKL_REVID_D0))
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030014273 intel_ddi_init(dev, PORT_A);
14274
14275 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
14276 * register */
14277 found = I915_READ(SFUSE_STRAP);
14278
14279 if (found & SFUSE_STRAP_DDIB_DETECTED)
14280 intel_ddi_init(dev, PORT_B);
14281 if (found & SFUSE_STRAP_DDIC_DETECTED)
14282 intel_ddi_init(dev, PORT_C);
14283 if (found & SFUSE_STRAP_DDID_DETECTED)
14284 intel_ddi_init(dev, PORT_D);
14285 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -040014286 int found;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020014287 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
Daniel Vetter270b3042012-10-27 15:52:05 +020014288
14289 if (has_edp_a(dev))
14290 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040014291
Paulo Zanonidc0fa712013-02-19 16:21:46 -030014292 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +080014293 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +010014294 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080014295 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -030014296 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080014297 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014298 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080014299 }
14300
Paulo Zanonidc0fa712013-02-19 16:21:46 -030014301 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030014302 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080014303
Paulo Zanonidc0fa712013-02-19 16:21:46 -030014304 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030014305 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080014306
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080014307 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014308 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080014309
Daniel Vetter270b3042012-10-27 15:52:05 +020014310 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014311 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -070014312 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014313 /*
14314 * The DP_DETECTED bit is the latched state of the DDC
14315 * SDA pin at boot. However since eDP doesn't require DDC
14316 * (no way to plug in a DP->HDMI dongle) the DDC pins for
14317 * eDP ports may have been muxed to an alternate function.
14318 * Thus we can't rely on the DP_DETECTED bit alone to detect
14319 * eDP ports. Consult the VBT as well as DP_DETECTED to
14320 * detect eDP ports.
14321 */
Ville Syrjäläd2182a62015-01-09 14:21:14 +020014322 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED &&
14323 !intel_dp_is_edp(dev, PORT_B))
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030014324 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
14325 PORT_B);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014326 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED ||
14327 intel_dp_is_edp(dev, PORT_B))
14328 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030014329
Ville Syrjäläd2182a62015-01-09 14:21:14 +020014330 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED &&
14331 !intel_dp_is_edp(dev, PORT_C))
Jesse Barnes6f6005a2013-08-09 09:34:35 -070014332 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
14333 PORT_C);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014334 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED ||
14335 intel_dp_is_edp(dev, PORT_C))
14336 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
Gajanan Bhat19c03922012-09-27 19:13:07 +053014337
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030014338 if (IS_CHERRYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014339 if (I915_READ(VLV_DISPLAY_BASE + CHV_HDMID) & SDVO_DETECTED)
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030014340 intel_hdmi_init(dev, VLV_DISPLAY_BASE + CHV_HDMID,
14341 PORT_D);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014342 /* eDP not supported on port D, so don't check VBT */
14343 if (I915_READ(VLV_DISPLAY_BASE + DP_D) & DP_DETECTED)
14344 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_D, PORT_D);
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030014345 }
14346
Jani Nikula3cfca972013-08-27 15:12:26 +030014347 intel_dsi_init(dev);
Zhenyu Wang103a1962009-11-27 11:44:36 +080014348 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +080014349 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -080014350
Paulo Zanonie2debe92013-02-18 19:00:27 -030014351 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014352 DRM_DEBUG_KMS("probing SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030014353 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014354 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
14355 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030014356 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014357 }
Ma Ling27185ae2009-08-24 13:50:23 +080014358
Imre Deake7281ea2013-05-08 13:14:08 +030014359 if (!found && SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014360 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -080014361 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -040014362
14363 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -040014364
Paulo Zanonie2debe92013-02-18 19:00:27 -030014365 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014366 DRM_DEBUG_KMS("probing SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030014367 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014368 }
Ma Ling27185ae2009-08-24 13:50:23 +080014369
Paulo Zanonie2debe92013-02-18 19:00:27 -030014370 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +080014371
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014372 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
14373 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030014374 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014375 }
Imre Deake7281ea2013-05-08 13:14:08 +030014376 if (SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014377 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -080014378 }
Ma Ling27185ae2009-08-24 13:50:23 +080014379
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014380 if (SUPPORTS_INTEGRATED_DP(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +030014381 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014382 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -070014383 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080014384 intel_dvo_init(dev);
14385
Zhenyu Wang103a1962009-11-27 11:44:36 +080014386 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080014387 intel_tv_init(dev);
14388
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -080014389 intel_psr_init(dev);
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -070014390
Damien Lespiaub2784e12014-08-05 11:29:37 +010014391 for_each_intel_encoder(dev, encoder) {
Chris Wilson4ef69c72010-09-09 15:14:28 +010014392 encoder->base.possible_crtcs = encoder->crtc_mask;
14393 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +020014394 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -080014395 }
Chris Wilson47356eb2011-01-11 17:06:04 +000014396
Paulo Zanonidde86e22012-12-01 12:04:25 -020014397 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +020014398
14399 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080014400}
14401
14402static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
14403{
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030014404 struct drm_device *dev = fb->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -080014405 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -080014406
Daniel Vetteref2d6332014-02-10 18:00:38 +010014407 drm_framebuffer_cleanup(fb);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030014408 mutex_lock(&dev->struct_mutex);
Daniel Vetteref2d6332014-02-10 18:00:38 +010014409 WARN_ON(!intel_fb->obj->framebuffer_references--);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030014410 drm_gem_object_unreference(&intel_fb->obj->base);
14411 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080014412 kfree(intel_fb);
14413}
14414
14415static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +000014416 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -080014417 unsigned int *handle)
14418{
14419 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +000014420 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080014421
Chris Wilson05394f32010-11-08 19:18:58 +000014422 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -080014423}
14424
14425static const struct drm_framebuffer_funcs intel_fb_funcs = {
14426 .destroy = intel_user_framebuffer_destroy,
14427 .create_handle = intel_user_framebuffer_create_handle,
14428};
14429
Damien Lespiaub3218032015-02-27 11:15:18 +000014430static
14431u32 intel_fb_pitch_limit(struct drm_device *dev, uint64_t fb_modifier,
14432 uint32_t pixel_format)
14433{
14434 u32 gen = INTEL_INFO(dev)->gen;
14435
14436 if (gen >= 9) {
14437 /* "The stride in bytes must not exceed the of the size of 8K
14438 * pixels and 32K bytes."
14439 */
14440 return min(8192*drm_format_plane_cpp(pixel_format, 0), 32768);
14441 } else if (gen >= 5 && !IS_VALLEYVIEW(dev)) {
14442 return 32*1024;
14443 } else if (gen >= 4) {
14444 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
14445 return 16*1024;
14446 else
14447 return 32*1024;
14448 } else if (gen >= 3) {
14449 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
14450 return 8*1024;
14451 else
14452 return 16*1024;
14453 } else {
14454 /* XXX DSPC is limited to 4k tiled */
14455 return 8*1024;
14456 }
14457}
14458
Daniel Vetterb5ea6422014-03-02 21:18:00 +010014459static int intel_framebuffer_init(struct drm_device *dev,
14460 struct intel_framebuffer *intel_fb,
14461 struct drm_mode_fb_cmd2 *mode_cmd,
14462 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -080014463{
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +000014464 unsigned int aligned_height;
Jesse Barnes79e53942008-11-07 14:24:08 -080014465 int ret;
Damien Lespiaub3218032015-02-27 11:15:18 +000014466 u32 pitch_limit, stride_alignment;
Jesse Barnes79e53942008-11-07 14:24:08 -080014467
Daniel Vetterdd4916c2013-10-09 21:23:51 +020014468 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
14469
Daniel Vetter2a80ead2015-02-10 17:16:06 +000014470 if (mode_cmd->flags & DRM_MODE_FB_MODIFIERS) {
14471 /* Enforce that fb modifier and tiling mode match, but only for
14472 * X-tiled. This is needed for FBC. */
14473 if (!!(obj->tiling_mode == I915_TILING_X) !=
14474 !!(mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED)) {
14475 DRM_DEBUG("tiling_mode doesn't match fb modifier\n");
14476 return -EINVAL;
14477 }
14478 } else {
14479 if (obj->tiling_mode == I915_TILING_X)
14480 mode_cmd->modifier[0] = I915_FORMAT_MOD_X_TILED;
14481 else if (obj->tiling_mode == I915_TILING_Y) {
14482 DRM_DEBUG("No Y tiling for legacy addfb\n");
14483 return -EINVAL;
14484 }
14485 }
14486
Tvrtko Ursulin9a8f0a12015-02-27 11:15:24 +000014487 /* Passed in modifier sanity checking. */
14488 switch (mode_cmd->modifier[0]) {
14489 case I915_FORMAT_MOD_Y_TILED:
14490 case I915_FORMAT_MOD_Yf_TILED:
14491 if (INTEL_INFO(dev)->gen < 9) {
14492 DRM_DEBUG("Unsupported tiling 0x%llx!\n",
14493 mode_cmd->modifier[0]);
14494 return -EINVAL;
14495 }
14496 case DRM_FORMAT_MOD_NONE:
14497 case I915_FORMAT_MOD_X_TILED:
14498 break;
14499 default:
Jesse Barnesc0f40422015-03-23 12:43:50 -070014500 DRM_DEBUG("Unsupported fb modifier 0x%llx!\n",
14501 mode_cmd->modifier[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +010014502 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014503 }
Chris Wilson57cd6502010-08-08 12:34:44 +010014504
Damien Lespiaub3218032015-02-27 11:15:18 +000014505 stride_alignment = intel_fb_stride_alignment(dev, mode_cmd->modifier[0],
14506 mode_cmd->pixel_format);
14507 if (mode_cmd->pitches[0] & (stride_alignment - 1)) {
14508 DRM_DEBUG("pitch (%d) must be at least %u byte aligned\n",
14509 mode_cmd->pitches[0], stride_alignment);
Chris Wilson57cd6502010-08-08 12:34:44 +010014510 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014511 }
Chris Wilson57cd6502010-08-08 12:34:44 +010014512
Damien Lespiaub3218032015-02-27 11:15:18 +000014513 pitch_limit = intel_fb_pitch_limit(dev, mode_cmd->modifier[0],
14514 mode_cmd->pixel_format);
Chris Wilsona35cdaa2013-06-25 17:26:45 +010014515 if (mode_cmd->pitches[0] > pitch_limit) {
Damien Lespiaub3218032015-02-27 11:15:18 +000014516 DRM_DEBUG("%s pitch (%u) must be at less than %d\n",
14517 mode_cmd->modifier[0] != DRM_FORMAT_MOD_NONE ?
Daniel Vetter2a80ead2015-02-10 17:16:06 +000014518 "tiled" : "linear",
Chris Wilsona35cdaa2013-06-25 17:26:45 +010014519 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014520 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014521 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014522
Daniel Vetter2a80ead2015-02-10 17:16:06 +000014523 if (mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014524 mode_cmd->pitches[0] != obj->stride) {
14525 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
14526 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014527 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014528 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014529
Ville Syrjälä57779d02012-10-31 17:50:14 +020014530 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080014531 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020014532 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020014533 case DRM_FORMAT_RGB565:
14534 case DRM_FORMAT_XRGB8888:
14535 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020014536 break;
14537 case DRM_FORMAT_XRGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014538 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014539 DRM_DEBUG("unsupported pixel format: %s\n",
14540 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020014541 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014542 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020014543 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +020014544 case DRM_FORMAT_ABGR8888:
Damien Lespiau6c0fd452015-05-19 12:29:16 +010014545 if (!IS_VALLEYVIEW(dev) && INTEL_INFO(dev)->gen < 9) {
14546 DRM_DEBUG("unsupported pixel format: %s\n",
14547 drm_get_format_name(mode_cmd->pixel_format));
14548 return -EINVAL;
14549 }
14550 break;
14551 case DRM_FORMAT_XBGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020014552 case DRM_FORMAT_XRGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020014553 case DRM_FORMAT_XBGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014554 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014555 DRM_DEBUG("unsupported pixel format: %s\n",
14556 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020014557 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014558 }
Jesse Barnesb5626742011-06-24 12:19:27 -070014559 break;
Damien Lespiau75312082015-05-15 19:06:01 +010014560 case DRM_FORMAT_ABGR2101010:
14561 if (!IS_VALLEYVIEW(dev)) {
14562 DRM_DEBUG("unsupported pixel format: %s\n",
14563 drm_get_format_name(mode_cmd->pixel_format));
14564 return -EINVAL;
14565 }
14566 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020014567 case DRM_FORMAT_YUYV:
14568 case DRM_FORMAT_UYVY:
14569 case DRM_FORMAT_YVYU:
14570 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014571 if (INTEL_INFO(dev)->gen < 5) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014572 DRM_DEBUG("unsupported pixel format: %s\n",
14573 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020014574 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014575 }
Chris Wilson57cd6502010-08-08 12:34:44 +010014576 break;
14577 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014578 DRM_DEBUG("unsupported pixel format: %s\n",
14579 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010014580 return -EINVAL;
14581 }
14582
Ville Syrjälä90f9a332012-10-31 17:50:19 +020014583 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
14584 if (mode_cmd->offsets[0] != 0)
14585 return -EINVAL;
14586
Damien Lespiauec2c9812015-01-20 12:51:45 +000014587 aligned_height = intel_fb_align_height(dev, mode_cmd->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +000014588 mode_cmd->pixel_format,
14589 mode_cmd->modifier[0]);
Daniel Vetter53155c02013-10-09 21:55:33 +020014590 /* FIXME drm helper for size checks (especially planar formats)? */
14591 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
14592 return -EINVAL;
14593
Daniel Vetterc7d73f62012-12-13 23:38:38 +010014594 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
14595 intel_fb->obj = obj;
Daniel Vetter80075d42013-10-09 21:23:52 +020014596 intel_fb->obj->framebuffer_references++;
Daniel Vetterc7d73f62012-12-13 23:38:38 +010014597
Jesse Barnes79e53942008-11-07 14:24:08 -080014598 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
14599 if (ret) {
14600 DRM_ERROR("framebuffer init failed %d\n", ret);
14601 return ret;
14602 }
14603
Jesse Barnes79e53942008-11-07 14:24:08 -080014604 return 0;
14605}
14606
Jesse Barnes79e53942008-11-07 14:24:08 -080014607static struct drm_framebuffer *
14608intel_user_framebuffer_create(struct drm_device *dev,
14609 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -080014610 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080014611{
Chris Wilson05394f32010-11-08 19:18:58 +000014612 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080014613
Jesse Barnes308e5bc2011-11-14 14:51:28 -080014614 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
14615 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +000014616 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010014617 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080014618
Chris Wilsond2dff872011-04-19 08:36:26 +010014619 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -080014620}
14621
Daniel Vetter4520f532013-10-09 09:18:51 +020014622#ifndef CONFIG_DRM_I915_FBDEV
Daniel Vetter0632fef2013-10-08 17:44:49 +020014623static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
Daniel Vetter4520f532013-10-09 09:18:51 +020014624{
14625}
14626#endif
14627
Jesse Barnes79e53942008-11-07 14:24:08 -080014628static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080014629 .fb_create = intel_user_framebuffer_create,
Daniel Vetter0632fef2013-10-08 17:44:49 +020014630 .output_poll_changed = intel_fbdev_output_poll_changed,
Matt Roper5ee67f12015-01-21 16:35:44 -080014631 .atomic_check = intel_atomic_check,
14632 .atomic_commit = intel_atomic_commit,
Maarten Lankhorstde419ab2015-06-04 10:21:28 +020014633 .atomic_state_alloc = intel_atomic_state_alloc,
14634 .atomic_state_clear = intel_atomic_state_clear,
Jesse Barnes79e53942008-11-07 14:24:08 -080014635};
14636
Jesse Barnese70236a2009-09-21 10:42:27 -070014637/* Set up chip specific display functions */
14638static void intel_init_display(struct drm_device *dev)
14639{
14640 struct drm_i915_private *dev_priv = dev->dev_private;
14641
Daniel Vetteree9300b2013-06-03 22:40:22 +020014642 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
14643 dev_priv->display.find_dpll = g4x_find_best_dpll;
Chon Ming Leeef9348c2014-04-09 13:28:18 +030014644 else if (IS_CHERRYVIEW(dev))
14645 dev_priv->display.find_dpll = chv_find_best_dpll;
Daniel Vetteree9300b2013-06-03 22:40:22 +020014646 else if (IS_VALLEYVIEW(dev))
14647 dev_priv->display.find_dpll = vlv_find_best_dpll;
14648 else if (IS_PINEVIEW(dev))
14649 dev_priv->display.find_dpll = pnv_find_best_dpll;
14650 else
14651 dev_priv->display.find_dpll = i9xx_find_best_dpll;
14652
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014653 if (INTEL_INFO(dev)->gen >= 9) {
14654 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014655 dev_priv->display.get_initial_plane_config =
14656 skylake_get_initial_plane_config;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014657 dev_priv->display.crtc_compute_clock =
14658 haswell_crtc_compute_clock;
14659 dev_priv->display.crtc_enable = haswell_crtc_enable;
14660 dev_priv->display.crtc_disable = haswell_crtc_disable;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014661 dev_priv->display.update_primary_plane =
14662 skylake_update_primary_plane;
14663 } else if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010014664 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014665 dev_priv->display.get_initial_plane_config =
14666 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira797d0252014-10-29 11:32:34 +020014667 dev_priv->display.crtc_compute_clock =
14668 haswell_crtc_compute_clock;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020014669 dev_priv->display.crtc_enable = haswell_crtc_enable;
14670 dev_priv->display.crtc_disable = haswell_crtc_disable;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014671 dev_priv->display.update_primary_plane =
14672 ironlake_update_primary_plane;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030014673 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010014674 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014675 dev_priv->display.get_initial_plane_config =
14676 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +020014677 dev_priv->display.crtc_compute_clock =
14678 ironlake_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020014679 dev_priv->display.crtc_enable = ironlake_crtc_enable;
14680 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Matt Roper262ca2b2014-03-18 17:22:55 -070014681 dev_priv->display.update_primary_plane =
14682 ironlake_update_primary_plane;
Jesse Barnes89b667f2013-04-18 14:51:36 -070014683 } else if (IS_VALLEYVIEW(dev)) {
14684 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014685 dev_priv->display.get_initial_plane_config =
14686 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020014687 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Jesse Barnes89b667f2013-04-18 14:51:36 -070014688 dev_priv->display.crtc_enable = valleyview_crtc_enable;
14689 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Matt Roper262ca2b2014-03-18 17:22:55 -070014690 dev_priv->display.update_primary_plane =
14691 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070014692 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010014693 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014694 dev_priv->display.get_initial_plane_config =
14695 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020014696 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020014697 dev_priv->display.crtc_enable = i9xx_crtc_enable;
14698 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Matt Roper262ca2b2014-03-18 17:22:55 -070014699 dev_priv->display.update_primary_plane =
14700 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070014701 }
Jesse Barnese70236a2009-09-21 10:42:27 -070014702
Jesse Barnese70236a2009-09-21 10:42:27 -070014703 /* Returns the core display clock speed */
Ville Syrjälä1652d192015-03-31 14:12:01 +030014704 if (IS_SKYLAKE(dev))
14705 dev_priv->display.get_display_clock_speed =
14706 skylake_get_display_clock_speed;
14707 else if (IS_BROADWELL(dev))
14708 dev_priv->display.get_display_clock_speed =
14709 broadwell_get_display_clock_speed;
14710 else if (IS_HASWELL(dev))
14711 dev_priv->display.get_display_clock_speed =
14712 haswell_get_display_clock_speed;
14713 else if (IS_VALLEYVIEW(dev))
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070014714 dev_priv->display.get_display_clock_speed =
14715 valleyview_get_display_clock_speed;
Ville Syrjäläb37a6432015-03-31 14:11:54 +030014716 else if (IS_GEN5(dev))
14717 dev_priv->display.get_display_clock_speed =
14718 ilk_get_display_clock_speed;
Ville Syrjäläa7c66cd2015-03-31 14:11:56 +030014719 else if (IS_I945G(dev) || IS_BROADWATER(dev) ||
Ville Syrjälä34edce22015-05-22 11:22:33 +030014720 IS_GEN6(dev) || IS_IVYBRIDGE(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070014721 dev_priv->display.get_display_clock_speed =
14722 i945_get_display_clock_speed;
Ville Syrjälä34edce22015-05-22 11:22:33 +030014723 else if (IS_GM45(dev))
14724 dev_priv->display.get_display_clock_speed =
14725 gm45_get_display_clock_speed;
14726 else if (IS_CRESTLINE(dev))
14727 dev_priv->display.get_display_clock_speed =
14728 i965gm_get_display_clock_speed;
14729 else if (IS_PINEVIEW(dev))
14730 dev_priv->display.get_display_clock_speed =
14731 pnv_get_display_clock_speed;
14732 else if (IS_G33(dev) || IS_G4X(dev))
14733 dev_priv->display.get_display_clock_speed =
14734 g33_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070014735 else if (IS_I915G(dev))
14736 dev_priv->display.get_display_clock_speed =
14737 i915_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020014738 else if (IS_I945GM(dev) || IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070014739 dev_priv->display.get_display_clock_speed =
14740 i9xx_misc_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020014741 else if (IS_PINEVIEW(dev))
14742 dev_priv->display.get_display_clock_speed =
14743 pnv_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070014744 else if (IS_I915GM(dev))
14745 dev_priv->display.get_display_clock_speed =
14746 i915gm_get_display_clock_speed;
14747 else if (IS_I865G(dev))
14748 dev_priv->display.get_display_clock_speed =
14749 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +020014750 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070014751 dev_priv->display.get_display_clock_speed =
Ville Syrjälä1b1d2712015-05-22 11:22:31 +030014752 i85x_get_display_clock_speed;
Ville Syrjälä623e01e2015-05-22 11:22:34 +030014753 else { /* 830 */
14754 WARN(!IS_I830(dev), "Unknown platform. Assuming 133 MHz CDCLK\n");
Jesse Barnese70236a2009-09-21 10:42:27 -070014755 dev_priv->display.get_display_clock_speed =
14756 i830_get_display_clock_speed;
Ville Syrjälä623e01e2015-05-22 11:22:34 +030014757 }
Jesse Barnese70236a2009-09-21 10:42:27 -070014758
Jani Nikula7c10a2b2014-10-27 16:26:43 +020014759 if (IS_GEN5(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053014760 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053014761 } else if (IS_GEN6(dev)) {
14762 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053014763 } else if (IS_IVYBRIDGE(dev)) {
14764 /* FIXME: detect B0+ stepping and use auto training */
14765 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Paulo Zanoni059b2fe2014-09-02 16:53:57 -030014766 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053014767 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030014768 if (IS_BROADWELL(dev))
14769 dev_priv->display.modeset_global_resources =
14770 broadwell_modeset_global_resources;
Jesse Barnes30a970c2013-11-04 13:48:12 -080014771 } else if (IS_VALLEYVIEW(dev)) {
14772 dev_priv->display.modeset_global_resources =
14773 valleyview_modeset_global_resources;
Vandana Kannanf8437dd12014-11-24 13:37:39 +053014774 } else if (IS_BROXTON(dev)) {
14775 dev_priv->display.modeset_global_resources =
14776 broxton_modeset_global_resources;
Jesse Barnese70236a2009-09-21 10:42:27 -070014777 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070014778
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070014779 switch (INTEL_INFO(dev)->gen) {
14780 case 2:
14781 dev_priv->display.queue_flip = intel_gen2_queue_flip;
14782 break;
14783
14784 case 3:
14785 dev_priv->display.queue_flip = intel_gen3_queue_flip;
14786 break;
14787
14788 case 4:
14789 case 5:
14790 dev_priv->display.queue_flip = intel_gen4_queue_flip;
14791 break;
14792
14793 case 6:
14794 dev_priv->display.queue_flip = intel_gen6_queue_flip;
14795 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070014796 case 7:
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070014797 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
Jesse Barnes7c9017e2011-06-16 12:18:54 -070014798 dev_priv->display.queue_flip = intel_gen7_queue_flip;
14799 break;
Damien Lespiau830c81d2014-11-13 17:51:46 +000014800 case 9:
Tvrtko Ursulinba343e02015-02-10 17:16:12 +000014801 /* Drop through - unsupported since execlist only. */
14802 default:
14803 /* Default just returns -ENODEV to indicate unsupported */
14804 dev_priv->display.queue_flip = intel_default_queue_flip;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070014805 }
Jani Nikula7bd688c2013-11-08 16:48:56 +020014806
14807 intel_panel_init_backlight_funcs(dev);
Ville Syrjäläe39b9992014-09-04 14:53:14 +030014808
14809 mutex_init(&dev_priv->pps_mutex);
Jesse Barnese70236a2009-09-21 10:42:27 -070014810}
14811
Jesse Barnesb690e962010-07-19 13:53:12 -070014812/*
14813 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
14814 * resume, or other times. This quirk makes sure that's the case for
14815 * affected systems.
14816 */
Akshay Joshi0206e352011-08-16 15:34:10 -040014817static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070014818{
14819 struct drm_i915_private *dev_priv = dev->dev_private;
14820
14821 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020014822 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070014823}
14824
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030014825static void quirk_pipeb_force(struct drm_device *dev)
14826{
14827 struct drm_i915_private *dev_priv = dev->dev_private;
14828
14829 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
14830 DRM_INFO("applying pipe b force quirk\n");
14831}
14832
Keith Packard435793d2011-07-12 14:56:22 -070014833/*
14834 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
14835 */
14836static void quirk_ssc_force_disable(struct drm_device *dev)
14837{
14838 struct drm_i915_private *dev_priv = dev->dev_private;
14839 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020014840 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070014841}
14842
Carsten Emde4dca20e2012-03-15 15:56:26 +010014843/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010014844 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
14845 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010014846 */
14847static void quirk_invert_brightness(struct drm_device *dev)
14848{
14849 struct drm_i915_private *dev_priv = dev->dev_private;
14850 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020014851 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070014852}
14853
Scot Doyle9c72cc62014-07-03 23:27:50 +000014854/* Some VBT's incorrectly indicate no backlight is present */
14855static void quirk_backlight_present(struct drm_device *dev)
14856{
14857 struct drm_i915_private *dev_priv = dev->dev_private;
14858 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
14859 DRM_INFO("applying backlight present quirk\n");
14860}
14861
Jesse Barnesb690e962010-07-19 13:53:12 -070014862struct intel_quirk {
14863 int device;
14864 int subsystem_vendor;
14865 int subsystem_device;
14866 void (*hook)(struct drm_device *dev);
14867};
14868
Egbert Eich5f85f172012-10-14 15:46:38 +020014869/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
14870struct intel_dmi_quirk {
14871 void (*hook)(struct drm_device *dev);
14872 const struct dmi_system_id (*dmi_id_list)[];
14873};
14874
14875static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
14876{
14877 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
14878 return 1;
14879}
14880
14881static const struct intel_dmi_quirk intel_dmi_quirks[] = {
14882 {
14883 .dmi_id_list = &(const struct dmi_system_id[]) {
14884 {
14885 .callback = intel_dmi_reverse_brightness,
14886 .ident = "NCR Corporation",
14887 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
14888 DMI_MATCH(DMI_PRODUCT_NAME, ""),
14889 },
14890 },
14891 { } /* terminating entry */
14892 },
14893 .hook = quirk_invert_brightness,
14894 },
14895};
14896
Ben Widawskyc43b5632012-04-16 14:07:40 -070014897static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070014898 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
14899 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
14900
Jesse Barnesb690e962010-07-19 13:53:12 -070014901 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
14902 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
14903
Ville Syrjälä5f080c02014-08-15 01:22:06 +030014904 /* 830 needs to leave pipe A & dpll A up */
14905 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
14906
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030014907 /* 830 needs to leave pipe B & dpll B up */
14908 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
14909
Keith Packard435793d2011-07-12 14:56:22 -070014910 /* Lenovo U160 cannot use SSC on LVDS */
14911 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020014912
14913 /* Sony Vaio Y cannot use SSC on LVDS */
14914 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010014915
Alexander van Heukelumbe505f62013-12-28 21:00:39 +010014916 /* Acer Aspire 5734Z must invert backlight brightness */
14917 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
14918
14919 /* Acer/eMachines G725 */
14920 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
14921
14922 /* Acer/eMachines e725 */
14923 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
14924
14925 /* Acer/Packard Bell NCL20 */
14926 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
14927
14928 /* Acer Aspire 4736Z */
14929 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jani Nikula0f540c32014-01-13 17:30:34 +020014930
14931 /* Acer Aspire 5336 */
14932 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
Scot Doyle2e93a1a2014-07-03 23:27:51 +000014933
14934 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
14935 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
Scot Doyled4967d82014-07-03 23:27:52 +000014936
Scot Doyledfb3d47b2014-08-21 16:08:02 +000014937 /* Acer C720 Chromebook (Core i3 4005U) */
14938 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
14939
jens steinb2a96012014-10-28 20:25:53 +010014940 /* Apple Macbook 2,1 (Core 2 T7400) */
14941 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
14942
Scot Doyled4967d82014-07-03 23:27:52 +000014943 /* Toshiba CB35 Chromebook (Celeron 2955U) */
14944 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
Scot Doyle724cb062014-07-11 22:16:30 +000014945
14946 /* HP Chromebook 14 (Celeron 2955U) */
14947 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
Jani Nikulacf6f0af2015-02-19 10:53:39 +020014948
14949 /* Dell Chromebook 11 */
14950 { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present },
Jesse Barnesb690e962010-07-19 13:53:12 -070014951};
14952
14953static void intel_init_quirks(struct drm_device *dev)
14954{
14955 struct pci_dev *d = dev->pdev;
14956 int i;
14957
14958 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
14959 struct intel_quirk *q = &intel_quirks[i];
14960
14961 if (d->device == q->device &&
14962 (d->subsystem_vendor == q->subsystem_vendor ||
14963 q->subsystem_vendor == PCI_ANY_ID) &&
14964 (d->subsystem_device == q->subsystem_device ||
14965 q->subsystem_device == PCI_ANY_ID))
14966 q->hook(dev);
14967 }
Egbert Eich5f85f172012-10-14 15:46:38 +020014968 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
14969 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
14970 intel_dmi_quirks[i].hook(dev);
14971 }
Jesse Barnesb690e962010-07-19 13:53:12 -070014972}
14973
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014974/* Disable the VGA plane that we never use */
14975static void i915_disable_vga(struct drm_device *dev)
14976{
14977 struct drm_i915_private *dev_priv = dev->dev_private;
14978 u8 sr1;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020014979 u32 vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014980
Ville Syrjälä2b37c612014-01-22 21:32:38 +020014981 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014982 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070014983 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014984 sr1 = inb(VGA_SR_DATA);
14985 outb(sr1 | 1<<5, VGA_SR_DATA);
14986 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
14987 udelay(300);
14988
Ville Syrjälä01f5a622014-12-16 18:38:37 +020014989 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014990 POSTING_READ(vga_reg);
14991}
14992
Daniel Vetterf8175862012-04-10 15:50:11 +020014993void intel_modeset_init_hw(struct drm_device *dev)
14994{
Ville Syrjäläb6283052015-06-03 15:45:07 +030014995 intel_update_cdclk(dev);
Eugeni Dodonova8f78b52012-06-28 15:55:35 -030014996 intel_prepare_ddi(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020014997 intel_init_clock_gating(dev);
Daniel Vetter8090c6b2012-06-24 16:42:32 +020014998 intel_enable_gt_powersave(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020014999}
15000
Jesse Barnes79e53942008-11-07 14:24:08 -080015001void intel_modeset_init(struct drm_device *dev)
15002{
Jesse Barnes652c3932009-08-17 13:31:43 -070015003 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau1fe47782014-03-03 17:31:47 +000015004 int sprite, ret;
Damien Lespiau8cc87b72014-03-03 17:31:44 +000015005 enum pipe pipe;
Jesse Barnes46f297f2014-03-07 08:57:48 -080015006 struct intel_crtc *crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -080015007
15008 drm_mode_config_init(dev);
15009
15010 dev->mode_config.min_width = 0;
15011 dev->mode_config.min_height = 0;
15012
Dave Airlie019d96c2011-09-29 16:20:42 +010015013 dev->mode_config.preferred_depth = 24;
15014 dev->mode_config.prefer_shadow = 1;
15015
Tvrtko Ursulin25bab382015-02-10 17:16:16 +000015016 dev->mode_config.allow_fb_modifiers = true;
15017
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020015018 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080015019
Jesse Barnesb690e962010-07-19 13:53:12 -070015020 intel_init_quirks(dev);
15021
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030015022 intel_init_pm(dev);
15023
Ben Widawskye3c74752013-04-05 13:12:39 -070015024 if (INTEL_INFO(dev)->num_pipes == 0)
15025 return;
15026
Jesse Barnese70236a2009-09-21 10:42:27 -070015027 intel_init_display(dev);
Jani Nikula7c10a2b2014-10-27 16:26:43 +020015028 intel_init_audio(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070015029
Chris Wilsona6c45cf2010-09-17 00:32:17 +010015030 if (IS_GEN2(dev)) {
15031 dev->mode_config.max_width = 2048;
15032 dev->mode_config.max_height = 2048;
15033 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070015034 dev->mode_config.max_width = 4096;
15035 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080015036 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010015037 dev->mode_config.max_width = 8192;
15038 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080015039 }
Damien Lespiau068be562014-03-28 14:17:49 +000015040
Ville Syrjälädc41c152014-08-13 11:57:05 +030015041 if (IS_845G(dev) || IS_I865G(dev)) {
15042 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
15043 dev->mode_config.cursor_height = 1023;
15044 } else if (IS_GEN2(dev)) {
Damien Lespiau068be562014-03-28 14:17:49 +000015045 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
15046 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
15047 } else {
15048 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
15049 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
15050 }
15051
Ben Widawsky5d4545a2013-01-17 12:45:15 -080015052 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080015053
Zhao Yakui28c97732009-10-09 11:39:41 +080015054 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070015055 INTEL_INFO(dev)->num_pipes,
15056 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080015057
Damien Lespiau055e3932014-08-18 13:49:10 +010015058 for_each_pipe(dev_priv, pipe) {
Damien Lespiau8cc87b72014-03-03 17:31:44 +000015059 intel_crtc_init(dev, pipe);
Damien Lespiau3bdcfc02015-02-28 14:54:09 +000015060 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau1fe47782014-03-03 17:31:47 +000015061 ret = intel_plane_init(dev, pipe, sprite);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070015062 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030015063 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +000015064 pipe_name(pipe), sprite_name(pipe, sprite), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070015065 }
Jesse Barnes79e53942008-11-07 14:24:08 -080015066 }
15067
Jesse Barnesf42bb702013-12-16 16:34:23 -080015068 intel_init_dpio(dev);
15069
Daniel Vettere72f9fb2013-06-05 13:34:06 +020015070 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010015071
Jesse Barnes9cce37f2010-08-13 15:11:26 -070015072 /* Just disable it once at startup */
15073 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080015074 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000015075
15076 /* Just in case the BIOS is doing something questionable. */
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020015077 intel_fbc_disable(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080015078
Daniel Vetter6e9f7982014-05-29 23:54:47 +020015079 drm_modeset_lock_all(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080015080 intel_modeset_setup_hw_state(dev, false);
Daniel Vetter6e9f7982014-05-29 23:54:47 +020015081 drm_modeset_unlock_all(dev);
Jesse Barnes46f297f2014-03-07 08:57:48 -080015082
Damien Lespiaud3fcc802014-05-13 23:32:22 +010015083 for_each_intel_crtc(dev, crtc) {
Jesse Barnes46f297f2014-03-07 08:57:48 -080015084 if (!crtc->active)
15085 continue;
15086
Jesse Barnes46f297f2014-03-07 08:57:48 -080015087 /*
Jesse Barnes46f297f2014-03-07 08:57:48 -080015088 * Note that reserving the BIOS fb up front prevents us
15089 * from stuffing other stolen allocations like the ring
15090 * on top. This prevents some ugliness at boot time, and
15091 * can even allow for smooth boot transitions if the BIOS
15092 * fb is large enough for the active pipe configuration.
15093 */
Damien Lespiau5724dbd2015-01-20 12:51:52 +000015094 if (dev_priv->display.get_initial_plane_config) {
15095 dev_priv->display.get_initial_plane_config(crtc,
Jesse Barnes46f297f2014-03-07 08:57:48 -080015096 &crtc->plane_config);
15097 /*
15098 * If the fb is shared between multiple heads, we'll
15099 * just get the first one.
15100 */
Daniel Vetterf6936e22015-03-26 12:17:05 +010015101 intel_find_initial_plane_obj(crtc, &crtc->plane_config);
Jesse Barnes46f297f2014-03-07 08:57:48 -080015102 }
Jesse Barnes46f297f2014-03-07 08:57:48 -080015103 }
Chris Wilson2c7111d2011-03-29 10:40:27 +010015104}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080015105
Daniel Vetter7fad7982012-07-04 17:51:47 +020015106static void intel_enable_pipe_a(struct drm_device *dev)
15107{
15108 struct intel_connector *connector;
15109 struct drm_connector *crt = NULL;
15110 struct intel_load_detect_pipe load_detect_temp;
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030015111 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
Daniel Vetter7fad7982012-07-04 17:51:47 +020015112
15113 /* We can't just switch on the pipe A, we need to set things up with a
15114 * proper mode and output configuration. As a gross hack, enable pipe A
15115 * by enabling the load detect pipe once. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020015116 for_each_intel_connector(dev, connector) {
Daniel Vetter7fad7982012-07-04 17:51:47 +020015117 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
15118 crt = &connector->base;
15119 break;
15120 }
15121 }
15122
15123 if (!crt)
15124 return;
15125
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030015126 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
Ander Conselvan de Oliveira49172fe2015-03-20 16:18:02 +020015127 intel_release_load_detect_pipe(crt, &load_detect_temp, ctx);
Daniel Vetter7fad7982012-07-04 17:51:47 +020015128}
15129
Daniel Vetterfa555832012-10-10 23:14:00 +020015130static bool
15131intel_check_plane_mapping(struct intel_crtc *crtc)
15132{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070015133 struct drm_device *dev = crtc->base.dev;
15134 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020015135 u32 reg, val;
15136
Ben Widawsky7eb552a2013-03-13 14:05:41 -070015137 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020015138 return true;
15139
15140 reg = DSPCNTR(!crtc->plane);
15141 val = I915_READ(reg);
15142
15143 if ((val & DISPLAY_PLANE_ENABLE) &&
15144 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
15145 return false;
15146
15147 return true;
15148}
15149
Daniel Vetter24929352012-07-02 20:28:59 +020015150static void intel_sanitize_crtc(struct intel_crtc *crtc)
15151{
15152 struct drm_device *dev = crtc->base.dev;
15153 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +020015154 struct intel_encoder *encoder;
Daniel Vetterfa555832012-10-10 23:14:00 +020015155 u32 reg;
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +020015156 bool enable;
Daniel Vetter24929352012-07-02 20:28:59 +020015157
Daniel Vetter24929352012-07-02 20:28:59 +020015158 /* Clear any frame start delays used for debugging left by the BIOS */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020015159 reg = PIPECONF(crtc->config->cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +020015160 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
15161
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030015162 /* restore vblank interrupts to correct state */
Daniel Vetter96256042015-02-13 21:03:42 +010015163 drm_crtc_vblank_reset(&crtc->base);
Ville Syrjäläd297e102014-08-06 14:50:01 +030015164 if (crtc->active) {
15165 update_scanline_offset(crtc);
Daniel Vetter96256042015-02-13 21:03:42 +010015166 drm_crtc_vblank_on(&crtc->base);
15167 }
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030015168
Daniel Vetter24929352012-07-02 20:28:59 +020015169 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020015170 * disable the crtc (and hence change the state) if it is wrong. Note
15171 * that gen4+ has a fixed plane -> pipe mapping. */
15172 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020015173 bool plane;
15174
Daniel Vetter24929352012-07-02 20:28:59 +020015175 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
15176 crtc->base.base.id);
15177
15178 /* Pipe has the wrong plane attached and the plane is active.
15179 * Temporarily change the plane mapping and disable everything
15180 * ... */
15181 plane = crtc->plane;
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030015182 to_intel_plane_state(crtc->base.primary->state)->visible = true;
Daniel Vetter24929352012-07-02 20:28:59 +020015183 crtc->plane = !plane;
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +020015184 intel_crtc_disable_noatomic(&crtc->base);
Daniel Vetter24929352012-07-02 20:28:59 +020015185 crtc->plane = plane;
Daniel Vetter24929352012-07-02 20:28:59 +020015186 }
Daniel Vetter24929352012-07-02 20:28:59 +020015187
Daniel Vetter7fad7982012-07-04 17:51:47 +020015188 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
15189 crtc->pipe == PIPE_A && !crtc->active) {
15190 /* BIOS forgot to enable pipe A, this mostly happens after
15191 * resume. Force-enable the pipe to fix this, the update_dpms
15192 * call below we restore the pipe to the right state, but leave
15193 * the required bits on. */
15194 intel_enable_pipe_a(dev);
15195 }
15196
Daniel Vetter24929352012-07-02 20:28:59 +020015197 /* Adjust the state of the output pipe according to whether we
15198 * have active connectors/encoders. */
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +020015199 enable = false;
15200 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
15201 enable |= encoder->connectors_active;
15202
15203 if (!enable)
15204 intel_crtc_disable_noatomic(&crtc->base);
Daniel Vetter24929352012-07-02 20:28:59 +020015205
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +020015206 if (crtc->active != crtc->base.state->active) {
Daniel Vetter24929352012-07-02 20:28:59 +020015207
15208 /* This can happen either due to bugs in the get_hw_state
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +020015209 * functions or because of calls to intel_crtc_disable_noatomic,
15210 * or because the pipe is force-enabled due to the
Daniel Vetter24929352012-07-02 20:28:59 +020015211 * pipe A quirk. */
15212 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
15213 crtc->base.base.id,
Matt Roper83d65732015-02-25 13:12:16 -080015214 crtc->base.state->enable ? "enabled" : "disabled",
Daniel Vetter24929352012-07-02 20:28:59 +020015215 crtc->active ? "enabled" : "disabled");
15216
Matt Roper83d65732015-02-25 13:12:16 -080015217 crtc->base.state->enable = crtc->active;
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020015218 crtc->base.state->active = crtc->active;
Daniel Vetter24929352012-07-02 20:28:59 +020015219 crtc->base.enabled = crtc->active;
15220
15221 /* Because we only establish the connector -> encoder ->
15222 * crtc links if something is active, this means the
15223 * crtc is now deactivated. Break the links. connector
15224 * -> encoder links are only establish when things are
15225 * actually up, hence no need to break them. */
15226 WARN_ON(crtc->active);
15227
15228 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
15229 WARN_ON(encoder->connectors_active);
15230 encoder->base.crtc = NULL;
15231 }
15232 }
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020015233
Ville Syrjäläa3ed6aa2014-09-03 14:09:52 +030015234 if (crtc->active || HAS_GMCH_DISPLAY(dev)) {
Daniel Vetter4cc31482014-03-24 00:01:41 +010015235 /*
15236 * We start out with underrun reporting disabled to avoid races.
15237 * For correct bookkeeping mark this on active crtcs.
15238 *
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020015239 * Also on gmch platforms we dont have any hardware bits to
15240 * disable the underrun reporting. Which means we need to start
15241 * out with underrun reporting disabled also on inactive pipes,
15242 * since otherwise we'll complain about the garbage we read when
15243 * e.g. coming up after runtime pm.
15244 *
Daniel Vetter4cc31482014-03-24 00:01:41 +010015245 * No protection against concurrent access is required - at
15246 * worst a fifo underrun happens which also sets this to false.
15247 */
15248 crtc->cpu_fifo_underrun_disabled = true;
15249 crtc->pch_fifo_underrun_disabled = true;
15250 }
Daniel Vetter24929352012-07-02 20:28:59 +020015251}
15252
15253static void intel_sanitize_encoder(struct intel_encoder *encoder)
15254{
15255 struct intel_connector *connector;
15256 struct drm_device *dev = encoder->base.dev;
15257
15258 /* We need to check both for a crtc link (meaning that the
15259 * encoder is active and trying to read from a pipe) and the
15260 * pipe itself being active. */
15261 bool has_active_crtc = encoder->base.crtc &&
15262 to_intel_crtc(encoder->base.crtc)->active;
15263
15264 if (encoder->connectors_active && !has_active_crtc) {
15265 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
15266 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030015267 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020015268
15269 /* Connector is active, but has no active pipe. This is
15270 * fallout from our resume register restoring. Disable
15271 * the encoder manually again. */
15272 if (encoder->base.crtc) {
15273 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
15274 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030015275 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020015276 encoder->disable(encoder);
Ville Syrjäläa62d1492014-06-28 02:04:01 +030015277 if (encoder->post_disable)
15278 encoder->post_disable(encoder);
Daniel Vetter24929352012-07-02 20:28:59 +020015279 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020015280 encoder->base.crtc = NULL;
15281 encoder->connectors_active = false;
Daniel Vetter24929352012-07-02 20:28:59 +020015282
15283 /* Inconsistent output/port/pipe state happens presumably due to
15284 * a bug in one of the get_hw_state functions. Or someplace else
15285 * in our code, like the register restore mess on resume. Clamp
15286 * things to off as a safer default. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020015287 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020015288 if (connector->encoder != encoder)
15289 continue;
Egbert Eich7f1950f2014-04-25 10:56:22 +020015290 connector->base.dpms = DRM_MODE_DPMS_OFF;
15291 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020015292 }
15293 }
15294 /* Enabled encoders without active connectors will be fixed in
15295 * the crtc fixup. */
15296}
15297
Imre Deak04098752014-02-18 00:02:16 +020015298void i915_redisable_vga_power_on(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010015299{
15300 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020015301 u32 vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010015302
Imre Deak04098752014-02-18 00:02:16 +020015303 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
15304 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
15305 i915_disable_vga(dev);
15306 }
15307}
15308
15309void i915_redisable_vga(struct drm_device *dev)
15310{
15311 struct drm_i915_private *dev_priv = dev->dev_private;
15312
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030015313 /* This function can be called both from intel_modeset_setup_hw_state or
15314 * at a very early point in our resume sequence, where the power well
15315 * structures are not yet restored. Since this function is at a very
15316 * paranoid "someone might have enabled VGA while we were not looking"
15317 * level, just check if the power well is enabled instead of trying to
15318 * follow the "don't touch the power well if we don't need it" policy
15319 * the rest of the driver uses. */
Daniel Vetterf458ebb2014-09-30 10:56:39 +020015320 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_VGA))
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030015321 return;
15322
Imre Deak04098752014-02-18 00:02:16 +020015323 i915_redisable_vga_power_on(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010015324}
15325
Ville Syrjälä98ec7732014-04-30 17:43:01 +030015326static bool primary_get_hw_state(struct intel_crtc *crtc)
15327{
15328 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
15329
Maarten Lankhorstf7217902015-06-10 10:24:20 +020015330 if (!crtc->active)
Ville Syrjälä98ec7732014-04-30 17:43:01 +030015331 return false;
15332
15333 return I915_READ(DSPCNTR(crtc->plane)) & DISPLAY_PLANE_ENABLE;
15334}
15335
Maarten Lankhorstf7217902015-06-10 10:24:20 +020015336static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020015337{
Maarten Lankhorstf7217902015-06-10 10:24:20 +020015338 struct drm_i915_private *dev_priv = dev->dev_private;
15339 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020015340 struct intel_crtc *crtc;
Maarten Lankhorstf7217902015-06-10 10:24:20 +020015341 struct intel_encoder *encoder;
15342 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020015343 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020015344
Maarten Lankhorstf7217902015-06-10 10:24:20 +020015345 for_each_intel_crtc(dev, crtc) {
15346 struct drm_plane *primary = crtc->base.primary;
15347 struct intel_plane_state *plane_state;
15348
15349 memset(crtc->config, 0, sizeof(*crtc->config));
15350 crtc->config->base.crtc = &crtc->base;
15351
15352 crtc->config->quirks |= PIPE_CONFIG_QUIRK_INHERITED_MODE;
15353
15354 crtc->active = dev_priv->display.get_pipe_config(crtc,
15355 crtc->config);
15356
15357 crtc->base.state->enable = crtc->active;
15358 crtc->base.state->active = crtc->active;
15359 crtc->base.enabled = crtc->active;
Maarten Lankhorstb8b7fad2015-06-12 11:15:41 +020015360 crtc->base.hwmode = crtc->config->base.adjusted_mode;
Maarten Lankhorstf7217902015-06-10 10:24:20 +020015361
15362 plane_state = to_intel_plane_state(primary->state);
15363 plane_state->visible = primary_get_hw_state(crtc);
15364
15365 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
15366 crtc->base.base.id,
15367 crtc->active ? "enabled" : "disabled");
15368 }
15369
Daniel Vetter53589012013-06-05 13:34:16 +020015370 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
15371 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
15372
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015373 pll->on = pll->get_hw_state(dev_priv, pll,
Maarten Lankhorstf7217902015-06-10 10:24:20 +020015374 &pll->config.hw_state);
Daniel Vetter53589012013-06-05 13:34:16 +020015375 pll->active = 0;
Maarten Lankhorstf7217902015-06-10 10:24:20 +020015376 pll->config.crtc_mask = 0;
15377 for_each_intel_crtc(dev, crtc) {
15378 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll) {
Daniel Vetter53589012013-06-05 13:34:16 +020015379 pll->active++;
Maarten Lankhorstf7217902015-06-10 10:24:20 +020015380 pll->config.crtc_mask |= 1 << crtc->pipe;
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020015381 }
Daniel Vetter53589012013-06-05 13:34:16 +020015382 }
Daniel Vetter53589012013-06-05 13:34:16 +020015383
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020015384 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
Maarten Lankhorstf7217902015-06-10 10:24:20 +020015385 pll->name, pll->config.crtc_mask, pll->on);
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030015386
Maarten Lankhorstf7217902015-06-10 10:24:20 +020015387 if (pll->config.crtc_mask)
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030015388 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
Daniel Vetter53589012013-06-05 13:34:16 +020015389 }
15390
Damien Lespiaub2784e12014-08-05 11:29:37 +010015391 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020015392 pipe = 0;
15393
15394 if (encoder->get_hw_state(encoder, &pipe)) {
Maarten Lankhorstf7217902015-06-10 10:24:20 +020015395 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
15396 encoder->base.crtc = &crtc->base;
15397 encoder->get_config(encoder, crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020015398 } else {
15399 encoder->base.crtc = NULL;
15400 }
15401
Maarten Lankhorstf7217902015-06-10 10:24:20 +020015402 encoder->connectors_active = false;
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010015403 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
Daniel Vetter24929352012-07-02 20:28:59 +020015404 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030015405 encoder->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020015406 encoder->base.crtc ? "enabled" : "disabled",
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010015407 pipe_name(pipe));
Daniel Vetter24929352012-07-02 20:28:59 +020015408 }
15409
Maarten Lankhorstf7217902015-06-10 10:24:20 +020015410 for_each_intel_connector(dev, connector) {
15411 if (connector->get_hw_state(connector)) {
15412 connector->base.dpms = DRM_MODE_DPMS_ON;
15413 connector->encoder->connectors_active = true;
15414 connector->base.encoder = &connector->encoder->base;
15415 } else {
15416 connector->base.dpms = DRM_MODE_DPMS_OFF;
15417 connector->base.encoder = NULL;
15418 }
15419 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
15420 connector->base.base.id,
15421 connector->base.name,
15422 connector->base.encoder ? "enabled" : "disabled");
Daniel Vetter24929352012-07-02 20:28:59 +020015423 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020015424}
15425
15426/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
15427 * and i915 state tracking structures. */
15428void intel_modeset_setup_hw_state(struct drm_device *dev,
15429 bool force_restore)
15430{
15431 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorstf7217902015-06-10 10:24:20 +020015432 enum pipe pipe;
15433 struct intel_crtc *crtc;
Daniel Vetter30e984d2013-06-05 13:34:17 +020015434 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020015435 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020015436
Maarten Lankhorstf7217902015-06-10 10:24:20 +020015437 intel_modeset_readout_hw_state(dev);
15438
15439 /*
15440 * Now that we have the config, copy it to each CRTC struct
15441 * Note that this could go away if we move to using crtc_config
15442 * checking everywhere.
15443 */
15444 for_each_intel_crtc(dev, crtc) {
15445 if (crtc->active && i915.fastboot) {
15446 intel_mode_from_pipe_config(&crtc->base.mode,
15447 crtc->config);
15448 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
15449 crtc->base.base.id);
15450 drm_mode_debug_printmodeline(&crtc->base.mode);
15451 }
Jesse Barnesbabea612013-06-26 18:57:38 +030015452 }
15453
Daniel Vetter24929352012-07-02 20:28:59 +020015454 /* HW state is read out, now we need to sanitize this mess. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010015455 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020015456 intel_sanitize_encoder(encoder);
15457 }
15458
Maarten Lankhorstf7217902015-06-10 10:24:20 +020015459 for_each_pipe(dev_priv, pipe) {
15460 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
15461 intel_sanitize_crtc(crtc);
15462 intel_dump_pipe_config(crtc, crtc->config,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020015463 "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020015464 }
Daniel Vetter9a935852012-07-05 22:34:27 +020015465
Ander Conselvan de Oliveirad29b2f92015-03-20 16:18:05 +020015466 intel_modeset_update_connector_atomic_state(dev);
15467
Daniel Vetter35c95372013-07-17 06:55:04 +020015468 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
15469 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
15470
15471 if (!pll->on || pll->active)
15472 continue;
15473
15474 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
15475
15476 pll->disable(dev_priv, pll);
15477 pll->on = false;
15478 }
15479
Pradeep Bhat30789992014-11-04 17:06:45 +000015480 if (IS_GEN9(dev))
15481 skl_wm_get_hw_state(dev);
15482 else if (HAS_PCH_SPLIT(dev))
Ville Syrjälä243e6a42013-10-14 14:55:24 +030015483 ilk_wm_get_hw_state(dev);
15484
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010015485 if (force_restore) {
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030015486 i915_redisable_vga(dev);
15487
Maarten Lankhorstf7217902015-06-10 10:24:20 +020015488 /*
15489 * We need to use raw interfaces for restoring state to avoid
15490 * checking (bogus) intermediate states.
15491 */
15492 for_each_pipe(dev_priv, pipe) {
15493 struct drm_crtc *crtc =
15494 dev_priv->pipe_to_crtc_mapping[pipe];
15495
15496 intel_crtc_restore_mode(crtc);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010015497 }
15498 } else {
Maarten Lankhorstf7217902015-06-10 10:24:20 +020015499 intel_modeset_update_staged_output_state(dev);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010015500 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020015501
15502 intel_modeset_check_state(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +010015503}
15504
15505void intel_modeset_gem_init(struct drm_device *dev)
15506{
Jesse Barnes92122782014-10-09 12:57:42 -070015507 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes484b41d2014-03-07 08:57:55 -080015508 struct drm_crtc *c;
Matt Roper2ff8fde2014-07-08 07:50:07 -070015509 struct drm_i915_gem_object *obj;
Tvrtko Ursuline0d61492015-04-13 16:03:03 +010015510 int ret;
Jesse Barnes484b41d2014-03-07 08:57:55 -080015511
Imre Deakae484342014-03-31 15:10:44 +030015512 mutex_lock(&dev->struct_mutex);
15513 intel_init_gt_powersave(dev);
15514 mutex_unlock(&dev->struct_mutex);
15515
Jesse Barnes92122782014-10-09 12:57:42 -070015516 /*
15517 * There may be no VBT; and if the BIOS enabled SSC we can
15518 * just keep using it to avoid unnecessary flicker. Whereas if the
15519 * BIOS isn't using it, don't assume it will work even if the VBT
15520 * indicates as much.
15521 */
15522 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
15523 dev_priv->vbt.lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
15524 DREF_SSC1_ENABLE);
15525
Chris Wilson1833b132012-05-09 11:56:28 +010015526 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020015527
15528 intel_setup_overlay(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -080015529
15530 /*
15531 * Make sure any fbs we allocated at startup are properly
15532 * pinned & fenced. When we do the allocation it's too early
15533 * for this.
15534 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010015535 for_each_crtc(dev, c) {
Matt Roper2ff8fde2014-07-08 07:50:07 -070015536 obj = intel_fb_obj(c->primary->fb);
15537 if (obj == NULL)
Jesse Barnes484b41d2014-03-07 08:57:55 -080015538 continue;
15539
Tvrtko Ursuline0d61492015-04-13 16:03:03 +010015540 mutex_lock(&dev->struct_mutex);
15541 ret = intel_pin_and_fence_fb_obj(c->primary,
15542 c->primary->fb,
15543 c->primary->state,
15544 NULL);
15545 mutex_unlock(&dev->struct_mutex);
15546 if (ret) {
Jesse Barnes484b41d2014-03-07 08:57:55 -080015547 DRM_ERROR("failed to pin boot fb on pipe %d\n",
15548 to_intel_crtc(c)->pipe);
Dave Airlie66e514c2014-04-03 07:51:54 +100015549 drm_framebuffer_unreference(c->primary->fb);
15550 c->primary->fb = NULL;
Maarten Lankhorst36750f22015-06-01 12:49:54 +020015551 c->primary->crtc = c->primary->state->crtc = NULL;
Matt Roperafd65eb2015-02-03 13:10:04 -080015552 update_state_fb(c->primary);
Maarten Lankhorst36750f22015-06-01 12:49:54 +020015553 c->state->plane_mask &= ~(1 << drm_plane_index(c->primary));
Jesse Barnes484b41d2014-03-07 08:57:55 -080015554 }
15555 }
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020015556
15557 intel_backlight_register(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080015558}
15559
Imre Deak4932e2c2014-02-11 17:12:48 +020015560void intel_connector_unregister(struct intel_connector *intel_connector)
15561{
15562 struct drm_connector *connector = &intel_connector->base;
15563
15564 intel_panel_destroy_backlight(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +010015565 drm_connector_unregister(connector);
Imre Deak4932e2c2014-02-11 17:12:48 +020015566}
15567
Jesse Barnes79e53942008-11-07 14:24:08 -080015568void intel_modeset_cleanup(struct drm_device *dev)
15569{
Jesse Barnes652c3932009-08-17 13:31:43 -070015570 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid9255d52013-09-26 20:05:59 -030015571 struct drm_connector *connector;
Jesse Barnes652c3932009-08-17 13:31:43 -070015572
Imre Deak2eb52522014-11-19 15:30:05 +020015573 intel_disable_gt_powersave(dev);
15574
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020015575 intel_backlight_unregister(dev);
15576
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015577 /*
15578 * Interrupts and polling as the first thing to avoid creating havoc.
Imre Deak2eb52522014-11-19 15:30:05 +020015579 * Too much stuff here (turning of connectors, ...) would
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015580 * experience fancy races otherwise.
15581 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +020015582 intel_irq_uninstall(dev_priv);
Jesse Barneseb21b922014-06-20 11:57:33 -070015583
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015584 /*
15585 * Due to the hpd irq storm handling the hotplug work can re-arm the
15586 * poll handlers. Hence disable polling after hpd handling is shut down.
15587 */
Keith Packardf87ea762010-10-03 19:36:26 -070015588 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015589
Jesse Barnes652c3932009-08-17 13:31:43 -070015590 mutex_lock(&dev->struct_mutex);
15591
Jesse Barnes723bfd72010-10-07 16:01:13 -070015592 intel_unregister_dsm_handler();
15593
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020015594 intel_fbc_disable(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070015595
Kristian Høgsberg69341a52009-11-11 12:19:17 -050015596 mutex_unlock(&dev->struct_mutex);
15597
Chris Wilson1630fe72011-07-08 12:22:42 +010015598 /* flush any delayed tasks or pending work */
15599 flush_scheduled_work();
15600
Jani Nikuladb31af1d2013-11-08 16:48:53 +020015601 /* destroy the backlight and sysfs files before encoders/connectors */
15602 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Imre Deak4932e2c2014-02-11 17:12:48 +020015603 struct intel_connector *intel_connector;
15604
15605 intel_connector = to_intel_connector(connector);
15606 intel_connector->unregister(intel_connector);
Jani Nikuladb31af1d2013-11-08 16:48:53 +020015607 }
Paulo Zanonid9255d52013-09-26 20:05:59 -030015608
Jesse Barnes79e53942008-11-07 14:24:08 -080015609 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010015610
15611 intel_cleanup_overlay(dev);
Imre Deakae484342014-03-31 15:10:44 +030015612
15613 mutex_lock(&dev->struct_mutex);
15614 intel_cleanup_gt_powersave(dev);
15615 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080015616}
15617
Dave Airlie28d52042009-09-21 14:33:58 +100015618/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +080015619 * Return which encoder is currently attached for connector.
15620 */
Chris Wilsondf0e9242010-09-09 16:20:55 +010015621struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -080015622{
Chris Wilsondf0e9242010-09-09 16:20:55 +010015623 return &intel_attached_encoder(connector)->base;
15624}
Jesse Barnes79e53942008-11-07 14:24:08 -080015625
Chris Wilsondf0e9242010-09-09 16:20:55 +010015626void intel_connector_attach_encoder(struct intel_connector *connector,
15627 struct intel_encoder *encoder)
15628{
15629 connector->encoder = encoder;
15630 drm_mode_connector_attach_encoder(&connector->base,
15631 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080015632}
Dave Airlie28d52042009-09-21 14:33:58 +100015633
15634/*
15635 * set vga decode state - true == enable VGA decode
15636 */
15637int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
15638{
15639 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona885b3c2013-12-17 14:34:50 +000015640 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
Dave Airlie28d52042009-09-21 14:33:58 +100015641 u16 gmch_ctrl;
15642
Chris Wilson75fa0412014-02-07 18:37:02 -020015643 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
15644 DRM_ERROR("failed to read control word\n");
15645 return -EIO;
15646 }
15647
Chris Wilsonc0cc8a52014-02-07 18:37:03 -020015648 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
15649 return 0;
15650
Dave Airlie28d52042009-09-21 14:33:58 +100015651 if (state)
15652 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
15653 else
15654 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
Chris Wilson75fa0412014-02-07 18:37:02 -020015655
15656 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
15657 DRM_ERROR("failed to write control word\n");
15658 return -EIO;
15659 }
15660
Dave Airlie28d52042009-09-21 14:33:58 +100015661 return 0;
15662}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015663
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015664struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030015665
15666 u32 power_well_driver;
15667
Chris Wilson63b66e52013-08-08 15:12:06 +020015668 int num_transcoders;
15669
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015670 struct intel_cursor_error_state {
15671 u32 control;
15672 u32 position;
15673 u32 base;
15674 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010015675 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015676
15677 struct intel_pipe_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020015678 bool power_domain_on;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015679 u32 source;
Imre Deakf301b1e2014-04-18 15:55:04 +030015680 u32 stat;
Damien Lespiau52331302012-08-15 19:23:25 +010015681 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015682
15683 struct intel_plane_error_state {
15684 u32 control;
15685 u32 stride;
15686 u32 size;
15687 u32 pos;
15688 u32 addr;
15689 u32 surface;
15690 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010015691 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020015692
15693 struct intel_transcoder_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020015694 bool power_domain_on;
Chris Wilson63b66e52013-08-08 15:12:06 +020015695 enum transcoder cpu_transcoder;
15696
15697 u32 conf;
15698
15699 u32 htotal;
15700 u32 hblank;
15701 u32 hsync;
15702 u32 vtotal;
15703 u32 vblank;
15704 u32 vsync;
15705 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015706};
15707
15708struct intel_display_error_state *
15709intel_display_capture_error_state(struct drm_device *dev)
15710{
Jani Nikulafbee40d2014-03-31 14:27:18 +030015711 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015712 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020015713 int transcoders[] = {
15714 TRANSCODER_A,
15715 TRANSCODER_B,
15716 TRANSCODER_C,
15717 TRANSCODER_EDP,
15718 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015719 int i;
15720
Chris Wilson63b66e52013-08-08 15:12:06 +020015721 if (INTEL_INFO(dev)->num_pipes == 0)
15722 return NULL;
15723
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020015724 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015725 if (error == NULL)
15726 return NULL;
15727
Imre Deak190be112013-11-25 17:15:31 +020015728 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030015729 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
15730
Damien Lespiau055e3932014-08-18 13:49:10 +010015731 for_each_pipe(dev_priv, i) {
Imre Deakddf9c532013-11-27 22:02:02 +020015732 error->pipe[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020015733 __intel_display_power_is_enabled(dev_priv,
15734 POWER_DOMAIN_PIPE(i));
Imre Deakddf9c532013-11-27 22:02:02 +020015735 if (!error->pipe[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020015736 continue;
15737
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030015738 error->cursor[i].control = I915_READ(CURCNTR(i));
15739 error->cursor[i].position = I915_READ(CURPOS(i));
15740 error->cursor[i].base = I915_READ(CURBASE(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015741
15742 error->plane[i].control = I915_READ(DSPCNTR(i));
15743 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030015744 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030015745 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030015746 error->plane[i].pos = I915_READ(DSPPOS(i));
15747 }
Paulo Zanonica291362013-03-06 20:03:14 -030015748 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
15749 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015750 if (INTEL_INFO(dev)->gen >= 4) {
15751 error->plane[i].surface = I915_READ(DSPSURF(i));
15752 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
15753 }
15754
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015755 error->pipe[i].source = I915_READ(PIPESRC(i));
Imre Deakf301b1e2014-04-18 15:55:04 +030015756
Sonika Jindal3abfce72014-07-21 15:23:43 +053015757 if (HAS_GMCH_DISPLAY(dev))
Imre Deakf301b1e2014-04-18 15:55:04 +030015758 error->pipe[i].stat = I915_READ(PIPESTAT(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020015759 }
15760
15761 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
15762 if (HAS_DDI(dev_priv->dev))
15763 error->num_transcoders++; /* Account for eDP. */
15764
15765 for (i = 0; i < error->num_transcoders; i++) {
15766 enum transcoder cpu_transcoder = transcoders[i];
15767
Imre Deakddf9c532013-11-27 22:02:02 +020015768 error->transcoder[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020015769 __intel_display_power_is_enabled(dev_priv,
Paulo Zanoni38cc1da2013-12-20 15:09:41 -020015770 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020015771 if (!error->transcoder[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020015772 continue;
15773
Chris Wilson63b66e52013-08-08 15:12:06 +020015774 error->transcoder[i].cpu_transcoder = cpu_transcoder;
15775
15776 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
15777 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
15778 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
15779 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
15780 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
15781 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
15782 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015783 }
15784
15785 return error;
15786}
15787
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015788#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
15789
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015790void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015791intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015792 struct drm_device *dev,
15793 struct intel_display_error_state *error)
15794{
Damien Lespiau055e3932014-08-18 13:49:10 +010015795 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015796 int i;
15797
Chris Wilson63b66e52013-08-08 15:12:06 +020015798 if (!error)
15799 return;
15800
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015801 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Imre Deak190be112013-11-25 17:15:31 +020015802 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015803 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030015804 error->power_well_driver);
Damien Lespiau055e3932014-08-18 13:49:10 +010015805 for_each_pipe(dev_priv, i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015806 err_printf(m, "Pipe [%d]:\n", i);
Imre Deakddf9c532013-11-27 22:02:02 +020015807 err_printf(m, " Power: %s\n",
15808 error->pipe[i].power_domain_on ? "on" : "off");
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015809 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Imre Deakf301b1e2014-04-18 15:55:04 +030015810 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015811
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015812 err_printf(m, "Plane [%d]:\n", i);
15813 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
15814 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030015815 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015816 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
15817 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030015818 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030015819 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015820 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015821 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015822 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
15823 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015824 }
15825
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015826 err_printf(m, "Cursor [%d]:\n", i);
15827 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
15828 err_printf(m, " POS: %08x\n", error->cursor[i].position);
15829 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015830 }
Chris Wilson63b66e52013-08-08 15:12:06 +020015831
15832 for (i = 0; i < error->num_transcoders; i++) {
Chris Wilson1cf84bb2013-10-21 09:10:33 +010015833 err_printf(m, "CPU transcoder: %c\n",
Chris Wilson63b66e52013-08-08 15:12:06 +020015834 transcoder_name(error->transcoder[i].cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020015835 err_printf(m, " Power: %s\n",
15836 error->transcoder[i].power_domain_on ? "on" : "off");
Chris Wilson63b66e52013-08-08 15:12:06 +020015837 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
15838 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
15839 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
15840 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
15841 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
15842 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
15843 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
15844 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015845}
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030015846
15847void intel_modeset_preclose(struct drm_device *dev, struct drm_file *file)
15848{
15849 struct intel_crtc *crtc;
15850
15851 for_each_intel_crtc(dev, crtc) {
15852 struct intel_unpin_work *work;
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030015853
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020015854 spin_lock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030015855
15856 work = crtc->unpin_work;
15857
15858 if (work && work->event &&
15859 work->event->base.file_priv == file) {
15860 kfree(work->event);
15861 work->event = NULL;
15862 }
15863
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020015864 spin_unlock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030015865 }
15866}