blob: 274ccc491855a02380d9bda994597fd403d5ac1c [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"
Matt Roperc196e1d2015-01-21 16:35:48 -080040#include <drm/drm_atomic_helper.h>
David Howells760285e2012-10-02 18:01:07 +010041#include <drm/drm_dp_helper.h>
42#include <drm/drm_crtc_helper.h>
Matt Roper465c1202014-05-29 08:06:54 -070043#include <drm/drm_plane_helper.h>
44#include <drm/drm_rect.h>
Keith Packardc0f372b32011-11-16 22:24:52 -080045#include <linux/dma_remapping.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080046
Matt Roper465c1202014-05-29 08:06:54 -070047/* Primary plane formats supported by all gen */
48#define COMMON_PRIMARY_FORMATS \
49 DRM_FORMAT_C8, \
50 DRM_FORMAT_RGB565, \
51 DRM_FORMAT_XRGB8888, \
52 DRM_FORMAT_ARGB8888
53
54/* Primary plane formats for gen <= 3 */
55static const uint32_t intel_primary_formats_gen2[] = {
56 COMMON_PRIMARY_FORMATS,
57 DRM_FORMAT_XRGB1555,
58 DRM_FORMAT_ARGB1555,
59};
60
61/* Primary plane formats for gen >= 4 */
62static const uint32_t intel_primary_formats_gen4[] = {
63 COMMON_PRIMARY_FORMATS, \
64 DRM_FORMAT_XBGR8888,
65 DRM_FORMAT_ABGR8888,
66 DRM_FORMAT_XRGB2101010,
67 DRM_FORMAT_ARGB2101010,
68 DRM_FORMAT_XBGR2101010,
69 DRM_FORMAT_ABGR2101010,
70};
71
Matt Roper3d7d6512014-06-10 08:28:13 -070072/* Cursor formats */
73static const uint32_t intel_cursor_formats[] = {
74 DRM_FORMAT_ARGB8888,
75};
76
Chris Wilson6b383a72010-09-13 13:54:26 +010077static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
Jesse Barnes79e53942008-11-07 14:24:08 -080078
Jesse Barnesf1f644d2013-06-27 00:39:25 +030079static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020080 struct intel_crtc_state *pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +030081static void ironlake_pch_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020082 struct intel_crtc_state *pipe_config);
Jesse Barnesf1f644d2013-06-27 00:39:25 +030083
Damien Lespiaue7457a92013-08-08 22:28:59 +010084static int intel_set_mode(struct drm_crtc *crtc, struct drm_display_mode *mode,
85 int x, int y, struct drm_framebuffer *old_fb);
Jesse Barneseb1bfe82014-02-12 12:26:25 -080086static int intel_framebuffer_init(struct drm_device *dev,
87 struct intel_framebuffer *ifb,
88 struct drm_mode_fb_cmd2 *mode_cmd,
89 struct drm_i915_gem_object *obj);
Daniel Vetter5b18e572014-04-24 23:55:06 +020090static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc);
91static void intel_set_pipe_timings(struct intel_crtc *intel_crtc);
Daniel Vetter29407aa2014-04-24 23:55:08 +020092static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -070093 struct intel_link_m_n *m_n,
94 struct intel_link_m_n *m2_n2);
Daniel Vetter29407aa2014-04-24 23:55:08 +020095static void ironlake_set_pipeconf(struct drm_crtc *crtc);
Daniel Vetter229fca92014-04-24 23:55:09 +020096static void haswell_set_pipeconf(struct drm_crtc *crtc);
97static void intel_set_pipe_csc(struct drm_crtc *crtc);
Ville Syrjäläd288f652014-10-28 13:20:22 +020098static void vlv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020099 const struct intel_crtc_state *pipe_config);
Ville Syrjäläd288f652014-10-28 13:20:22 +0200100static void chv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200101 const struct intel_crtc_state *pipe_config);
Matt Roperea2c67b2014-12-23 10:41:52 -0800102static void intel_begin_crtc_commit(struct drm_crtc *crtc);
103static void intel_finish_crtc_commit(struct drm_crtc *crtc);
Damien Lespiaue7457a92013-08-08 22:28:59 +0100104
Dave Airlie0e32b392014-05-02 14:02:48 +1000105static struct intel_encoder *intel_find_encoder(struct intel_connector *connector, int pipe)
106{
107 if (!connector->mst_port)
108 return connector->encoder;
109 else
110 return &connector->mst_port->mst_encoders[pipe]->base;
111}
112
Jesse Barnes79e53942008-11-07 14:24:08 -0800113typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -0400114 int min, max;
Jesse Barnes79e53942008-11-07 14:24:08 -0800115} intel_range_t;
116
117typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -0400118 int dot_limit;
119 int p2_slow, p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -0800120} intel_p2_t;
121
Ma Lingd4906092009-03-18 20:13:27 +0800122typedef struct intel_limit intel_limit_t;
123struct intel_limit {
Akshay Joshi0206e352011-08-16 15:34:10 -0400124 intel_range_t dot, vco, n, m, m1, m2, p, p1;
125 intel_p2_t p2;
Ma Lingd4906092009-03-18 20:13:27 +0800126};
Jesse Barnes79e53942008-11-07 14:24:08 -0800127
Daniel Vetterd2acd212012-10-20 20:57:43 +0200128int
129intel_pch_rawclk(struct drm_device *dev)
130{
131 struct drm_i915_private *dev_priv = dev->dev_private;
132
133 WARN_ON(!HAS_PCH_SPLIT(dev));
134
135 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
136}
137
Chris Wilson021357a2010-09-07 20:54:59 +0100138static inline u32 /* units of 100MHz */
139intel_fdi_link_freq(struct drm_device *dev)
140{
Chris Wilson8b99e682010-10-13 09:59:17 +0100141 if (IS_GEN5(dev)) {
142 struct drm_i915_private *dev_priv = dev->dev_private;
143 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
144 } else
145 return 27;
Chris Wilson021357a2010-09-07 20:54:59 +0100146}
147
Daniel Vetter5d536e22013-07-06 12:52:06 +0200148static const intel_limit_t intel_limits_i8xx_dac = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400149 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200150 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200151 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400152 .m = { .min = 96, .max = 140 },
153 .m1 = { .min = 18, .max = 26 },
154 .m2 = { .min = 6, .max = 16 },
155 .p = { .min = 4, .max = 128 },
156 .p1 = { .min = 2, .max = 33 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700157 .p2 = { .dot_limit = 165000,
158 .p2_slow = 4, .p2_fast = 2 },
Keith Packarde4b36692009-06-05 19:22:17 -0700159};
160
Daniel Vetter5d536e22013-07-06 12:52:06 +0200161static const intel_limit_t intel_limits_i8xx_dvo = {
162 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200163 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200164 .n = { .min = 2, .max = 16 },
Daniel Vetter5d536e22013-07-06 12:52:06 +0200165 .m = { .min = 96, .max = 140 },
166 .m1 = { .min = 18, .max = 26 },
167 .m2 = { .min = 6, .max = 16 },
168 .p = { .min = 4, .max = 128 },
169 .p1 = { .min = 2, .max = 33 },
170 .p2 = { .dot_limit = 165000,
171 .p2_slow = 4, .p2_fast = 4 },
172};
173
Keith Packarde4b36692009-06-05 19:22:17 -0700174static const intel_limit_t intel_limits_i8xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400175 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200176 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200177 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400178 .m = { .min = 96, .max = 140 },
179 .m1 = { .min = 18, .max = 26 },
180 .m2 = { .min = 6, .max = 16 },
181 .p = { .min = 4, .max = 128 },
182 .p1 = { .min = 1, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700183 .p2 = { .dot_limit = 165000,
184 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700185};
Eric Anholt273e27c2011-03-30 13:01:10 -0700186
Keith Packarde4b36692009-06-05 19:22:17 -0700187static const intel_limit_t intel_limits_i9xx_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400188 .dot = { .min = 20000, .max = 400000 },
189 .vco = { .min = 1400000, .max = 2800000 },
190 .n = { .min = 1, .max = 6 },
191 .m = { .min = 70, .max = 120 },
Patrik Jakobsson4f7dfb62013-02-13 22:20:22 +0100192 .m1 = { .min = 8, .max = 18 },
193 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400194 .p = { .min = 5, .max = 80 },
195 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700196 .p2 = { .dot_limit = 200000,
197 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700198};
199
200static const intel_limit_t intel_limits_i9xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400201 .dot = { .min = 20000, .max = 400000 },
202 .vco = { .min = 1400000, .max = 2800000 },
203 .n = { .min = 1, .max = 6 },
204 .m = { .min = 70, .max = 120 },
Patrik Jakobsson53a7d2d2013-02-13 22:20:21 +0100205 .m1 = { .min = 8, .max = 18 },
206 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400207 .p = { .min = 7, .max = 98 },
208 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700209 .p2 = { .dot_limit = 112000,
210 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700211};
212
Eric Anholt273e27c2011-03-30 13:01:10 -0700213
Keith Packarde4b36692009-06-05 19:22:17 -0700214static const intel_limit_t intel_limits_g4x_sdvo = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700215 .dot = { .min = 25000, .max = 270000 },
216 .vco = { .min = 1750000, .max = 3500000},
217 .n = { .min = 1, .max = 4 },
218 .m = { .min = 104, .max = 138 },
219 .m1 = { .min = 17, .max = 23 },
220 .m2 = { .min = 5, .max = 11 },
221 .p = { .min = 10, .max = 30 },
222 .p1 = { .min = 1, .max = 3},
223 .p2 = { .dot_limit = 270000,
224 .p2_slow = 10,
225 .p2_fast = 10
Ma Ling044c7c42009-03-18 20:13:23 +0800226 },
Keith Packarde4b36692009-06-05 19:22:17 -0700227};
228
229static const intel_limit_t intel_limits_g4x_hdmi = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700230 .dot = { .min = 22000, .max = 400000 },
231 .vco = { .min = 1750000, .max = 3500000},
232 .n = { .min = 1, .max = 4 },
233 .m = { .min = 104, .max = 138 },
234 .m1 = { .min = 16, .max = 23 },
235 .m2 = { .min = 5, .max = 11 },
236 .p = { .min = 5, .max = 80 },
237 .p1 = { .min = 1, .max = 8},
238 .p2 = { .dot_limit = 165000,
239 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700240};
241
242static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700243 .dot = { .min = 20000, .max = 115000 },
244 .vco = { .min = 1750000, .max = 3500000 },
245 .n = { .min = 1, .max = 3 },
246 .m = { .min = 104, .max = 138 },
247 .m1 = { .min = 17, .max = 23 },
248 .m2 = { .min = 5, .max = 11 },
249 .p = { .min = 28, .max = 112 },
250 .p1 = { .min = 2, .max = 8 },
251 .p2 = { .dot_limit = 0,
252 .p2_slow = 14, .p2_fast = 14
Ma Ling044c7c42009-03-18 20:13:23 +0800253 },
Keith Packarde4b36692009-06-05 19:22:17 -0700254};
255
256static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700257 .dot = { .min = 80000, .max = 224000 },
258 .vco = { .min = 1750000, .max = 3500000 },
259 .n = { .min = 1, .max = 3 },
260 .m = { .min = 104, .max = 138 },
261 .m1 = { .min = 17, .max = 23 },
262 .m2 = { .min = 5, .max = 11 },
263 .p = { .min = 14, .max = 42 },
264 .p1 = { .min = 2, .max = 6 },
265 .p2 = { .dot_limit = 0,
266 .p2_slow = 7, .p2_fast = 7
Ma Ling044c7c42009-03-18 20:13:23 +0800267 },
Keith Packarde4b36692009-06-05 19:22:17 -0700268};
269
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500270static const intel_limit_t intel_limits_pineview_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400271 .dot = { .min = 20000, .max = 400000},
272 .vco = { .min = 1700000, .max = 3500000 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700273 /* Pineview's Ncounter is a ring counter */
Akshay Joshi0206e352011-08-16 15:34:10 -0400274 .n = { .min = 3, .max = 6 },
275 .m = { .min = 2, .max = 256 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700276 /* Pineview only has one combined m divider, which we treat as m2. */
Akshay Joshi0206e352011-08-16 15:34:10 -0400277 .m1 = { .min = 0, .max = 0 },
278 .m2 = { .min = 0, .max = 254 },
279 .p = { .min = 5, .max = 80 },
280 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700281 .p2 = { .dot_limit = 200000,
282 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700283};
284
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500285static const intel_limit_t intel_limits_pineview_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400286 .dot = { .min = 20000, .max = 400000 },
287 .vco = { .min = 1700000, .max = 3500000 },
288 .n = { .min = 3, .max = 6 },
289 .m = { .min = 2, .max = 256 },
290 .m1 = { .min = 0, .max = 0 },
291 .m2 = { .min = 0, .max = 254 },
292 .p = { .min = 7, .max = 112 },
293 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700294 .p2 = { .dot_limit = 112000,
295 .p2_slow = 14, .p2_fast = 14 },
Keith Packarde4b36692009-06-05 19:22:17 -0700296};
297
Eric Anholt273e27c2011-03-30 13:01:10 -0700298/* Ironlake / Sandybridge
299 *
300 * We calculate clock using (register_value + 2) for N/M1/M2, so here
301 * the range value for them is (actual_value - 2).
302 */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800303static const intel_limit_t intel_limits_ironlake_dac = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700304 .dot = { .min = 25000, .max = 350000 },
305 .vco = { .min = 1760000, .max = 3510000 },
306 .n = { .min = 1, .max = 5 },
307 .m = { .min = 79, .max = 127 },
308 .m1 = { .min = 12, .max = 22 },
309 .m2 = { .min = 5, .max = 9 },
310 .p = { .min = 5, .max = 80 },
311 .p1 = { .min = 1, .max = 8 },
312 .p2 = { .dot_limit = 225000,
313 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700314};
315
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800316static const intel_limit_t intel_limits_ironlake_single_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700317 .dot = { .min = 25000, .max = 350000 },
318 .vco = { .min = 1760000, .max = 3510000 },
319 .n = { .min = 1, .max = 3 },
320 .m = { .min = 79, .max = 118 },
321 .m1 = { .min = 12, .max = 22 },
322 .m2 = { .min = 5, .max = 9 },
323 .p = { .min = 28, .max = 112 },
324 .p1 = { .min = 2, .max = 8 },
325 .p2 = { .dot_limit = 225000,
326 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800327};
328
329static const intel_limit_t intel_limits_ironlake_dual_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700330 .dot = { .min = 25000, .max = 350000 },
331 .vco = { .min = 1760000, .max = 3510000 },
332 .n = { .min = 1, .max = 3 },
333 .m = { .min = 79, .max = 127 },
334 .m1 = { .min = 12, .max = 22 },
335 .m2 = { .min = 5, .max = 9 },
336 .p = { .min = 14, .max = 56 },
337 .p1 = { .min = 2, .max = 8 },
338 .p2 = { .dot_limit = 225000,
339 .p2_slow = 7, .p2_fast = 7 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800340};
341
Eric Anholt273e27c2011-03-30 13:01:10 -0700342/* LVDS 100mhz refclk limits. */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800343static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700344 .dot = { .min = 25000, .max = 350000 },
345 .vco = { .min = 1760000, .max = 3510000 },
346 .n = { .min = 1, .max = 2 },
347 .m = { .min = 79, .max = 126 },
348 .m1 = { .min = 12, .max = 22 },
349 .m2 = { .min = 5, .max = 9 },
350 .p = { .min = 28, .max = 112 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400351 .p1 = { .min = 2, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700352 .p2 = { .dot_limit = 225000,
353 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800354};
355
356static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700357 .dot = { .min = 25000, .max = 350000 },
358 .vco = { .min = 1760000, .max = 3510000 },
359 .n = { .min = 1, .max = 3 },
360 .m = { .min = 79, .max = 126 },
361 .m1 = { .min = 12, .max = 22 },
362 .m2 = { .min = 5, .max = 9 },
363 .p = { .min = 14, .max = 42 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400364 .p1 = { .min = 2, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700365 .p2 = { .dot_limit = 225000,
366 .p2_slow = 7, .p2_fast = 7 },
Zhao Yakui45476682009-12-31 16:06:04 +0800367};
368
Ville Syrjälädc730512013-09-24 21:26:30 +0300369static const intel_limit_t intel_limits_vlv = {
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300370 /*
371 * These are the data rate limits (measured in fast clocks)
372 * since those are the strictest limits we have. The fast
373 * clock and actual rate limits are more relaxed, so checking
374 * them would make no difference.
375 */
376 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
Daniel Vetter75e53982013-04-18 21:10:43 +0200377 .vco = { .min = 4000000, .max = 6000000 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700378 .n = { .min = 1, .max = 7 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700379 .m1 = { .min = 2, .max = 3 },
380 .m2 = { .min = 11, .max = 156 },
Ville Syrjäläb99ab662013-09-24 21:26:26 +0300381 .p1 = { .min = 2, .max = 3 },
Ville Syrjälä5fdc9c492013-09-24 21:26:29 +0300382 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700383};
384
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300385static const intel_limit_t intel_limits_chv = {
386 /*
387 * These are the data rate limits (measured in fast clocks)
388 * since those are the strictest limits we have. The fast
389 * clock and actual rate limits are more relaxed, so checking
390 * them would make no difference.
391 */
392 .dot = { .min = 25000 * 5, .max = 540000 * 5},
Ville Syrjälä17fe1022015-02-26 21:01:52 +0200393 .vco = { .min = 4800000, .max = 6480000 },
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300394 .n = { .min = 1, .max = 1 },
395 .m1 = { .min = 2, .max = 2 },
396 .m2 = { .min = 24 << 22, .max = 175 << 22 },
397 .p1 = { .min = 2, .max = 4 },
398 .p2 = { .p2_slow = 1, .p2_fast = 14 },
399};
400
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300401static void vlv_clock(int refclk, intel_clock_t *clock)
402{
403 clock->m = clock->m1 * clock->m2;
404 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200405 if (WARN_ON(clock->n == 0 || clock->p == 0))
406 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300407 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
408 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300409}
410
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300411/**
412 * Returns whether any output on the specified pipe is of the specified type
413 */
Damien Lespiau40935612014-10-29 11:16:59 +0000414bool intel_pipe_has_type(struct intel_crtc *crtc, enum intel_output_type type)
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300415{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300416 struct drm_device *dev = crtc->base.dev;
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300417 struct intel_encoder *encoder;
418
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300419 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300420 if (encoder->type == type)
421 return true;
422
423 return false;
424}
425
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200426/**
427 * Returns whether any output on the specified pipe will have the specified
428 * type after a staged modeset is complete, i.e., the same as
429 * intel_pipe_has_type() but looking at encoder->new_crtc instead of
430 * encoder->crtc.
431 */
432static bool intel_pipe_will_have_type(struct intel_crtc *crtc, int type)
433{
434 struct drm_device *dev = crtc->base.dev;
435 struct intel_encoder *encoder;
436
437 for_each_intel_encoder(dev, encoder)
438 if (encoder->new_crtc == crtc && encoder->type == type)
439 return true;
440
441 return false;
442}
443
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300444static const intel_limit_t *intel_ironlake_limit(struct intel_crtc *crtc,
Chris Wilson1b894b52010-12-14 20:04:54 +0000445 int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800446{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300447 struct drm_device *dev = crtc->base.dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800448 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800449
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200450 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100451 if (intel_is_dual_link_lvds(dev)) {
Chris Wilson1b894b52010-12-14 20:04:54 +0000452 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800453 limit = &intel_limits_ironlake_dual_lvds_100m;
454 else
455 limit = &intel_limits_ironlake_dual_lvds;
456 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000457 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800458 limit = &intel_limits_ironlake_single_lvds_100m;
459 else
460 limit = &intel_limits_ironlake_single_lvds;
461 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200462 } else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800463 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800464
465 return limit;
466}
467
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300468static const intel_limit_t *intel_g4x_limit(struct intel_crtc *crtc)
Ma Ling044c7c42009-03-18 20:13:23 +0800469{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300470 struct drm_device *dev = crtc->base.dev;
Ma Ling044c7c42009-03-18 20:13:23 +0800471 const intel_limit_t *limit;
472
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200473 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100474 if (intel_is_dual_link_lvds(dev))
Keith Packarde4b36692009-06-05 19:22:17 -0700475 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800476 else
Keith Packarde4b36692009-06-05 19:22:17 -0700477 limit = &intel_limits_g4x_single_channel_lvds;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200478 } else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_HDMI) ||
479 intel_pipe_will_have_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700480 limit = &intel_limits_g4x_hdmi;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200481 } else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700482 limit = &intel_limits_g4x_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800483 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700484 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800485
486 return limit;
487}
488
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300489static const intel_limit_t *intel_limit(struct intel_crtc *crtc, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800490{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300491 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800492 const intel_limit_t *limit;
493
Eric Anholtbad720f2009-10-22 16:11:14 -0700494 if (HAS_PCH_SPLIT(dev))
Chris Wilson1b894b52010-12-14 20:04:54 +0000495 limit = intel_ironlake_limit(crtc, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800496 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800497 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500498 } else if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200499 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500500 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800501 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500502 limit = &intel_limits_pineview_sdvo;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300503 } else if (IS_CHERRYVIEW(dev)) {
504 limit = &intel_limits_chv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700505 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälädc730512013-09-24 21:26:30 +0300506 limit = &intel_limits_vlv;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100507 } else if (!IS_GEN2(dev)) {
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200508 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100509 limit = &intel_limits_i9xx_lvds;
510 else
511 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800512 } else {
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200513 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700514 limit = &intel_limits_i8xx_lvds;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200515 else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_DVO))
Keith Packarde4b36692009-06-05 19:22:17 -0700516 limit = &intel_limits_i8xx_dvo;
Daniel Vetter5d536e22013-07-06 12:52:06 +0200517 else
518 limit = &intel_limits_i8xx_dac;
Jesse Barnes79e53942008-11-07 14:24:08 -0800519 }
520 return limit;
521}
522
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500523/* m1 is reserved as 0 in Pineview, n is a ring counter */
524static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800525{
Shaohua Li21778322009-02-23 15:19:16 +0800526 clock->m = clock->m2 + 2;
527 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200528 if (WARN_ON(clock->n == 0 || clock->p == 0))
529 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300530 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
531 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Shaohua Li21778322009-02-23 15:19:16 +0800532}
533
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200534static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
535{
536 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
537}
538
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200539static void i9xx_clock(int refclk, intel_clock_t *clock)
Shaohua Li21778322009-02-23 15:19:16 +0800540{
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200541 clock->m = i9xx_dpll_compute_m(clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800542 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200543 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
544 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300545 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
546 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Jesse Barnes79e53942008-11-07 14:24:08 -0800547}
548
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300549static void chv_clock(int refclk, intel_clock_t *clock)
550{
551 clock->m = clock->m1 * clock->m2;
552 clock->p = clock->p1 * clock->p2;
553 if (WARN_ON(clock->n == 0 || clock->p == 0))
554 return;
555 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
556 clock->n << 22);
557 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
558}
559
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800560#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800561/**
562 * Returns whether the given set of divisors are valid for a given refclk with
563 * the given connectors.
564 */
565
Chris Wilson1b894b52010-12-14 20:04:54 +0000566static bool intel_PLL_is_valid(struct drm_device *dev,
567 const intel_limit_t *limit,
568 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800569{
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300570 if (clock->n < limit->n.min || limit->n.max < clock->n)
571 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800572 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400573 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800574 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400575 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800576 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400577 INTELPllInvalid("m1 out of range\n");
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300578
579 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev))
580 if (clock->m1 <= clock->m2)
581 INTELPllInvalid("m1 <= m2\n");
582
583 if (!IS_VALLEYVIEW(dev)) {
584 if (clock->p < limit->p.min || limit->p.max < clock->p)
585 INTELPllInvalid("p out of range\n");
586 if (clock->m < limit->m.min || limit->m.max < clock->m)
587 INTELPllInvalid("m out of range\n");
588 }
589
Jesse Barnes79e53942008-11-07 14:24:08 -0800590 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400591 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800592 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
593 * connector, etc., rather than just a single range.
594 */
595 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400596 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800597
598 return true;
599}
600
Ma Lingd4906092009-03-18 20:13:27 +0800601static bool
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300602i9xx_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800603 int target, int refclk, intel_clock_t *match_clock,
604 intel_clock_t *best_clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800605{
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300606 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800607 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800608 int err = target;
609
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200610 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800611 /*
Daniel Vettera210b022012-11-26 17:22:08 +0100612 * For LVDS just rely on its current settings for dual-channel.
613 * We haven't figured out how to reliably set up different
614 * single/dual channel state, if we even can.
Jesse Barnes79e53942008-11-07 14:24:08 -0800615 */
Daniel Vetter1974cad2012-11-26 17:22:09 +0100616 if (intel_is_dual_link_lvds(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800617 clock.p2 = limit->p2.p2_fast;
618 else
619 clock.p2 = limit->p2.p2_slow;
620 } else {
621 if (target < limit->p2.dot_limit)
622 clock.p2 = limit->p2.p2_slow;
623 else
624 clock.p2 = limit->p2.p2_fast;
625 }
626
Akshay Joshi0206e352011-08-16 15:34:10 -0400627 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800628
Zhao Yakui42158662009-11-20 11:24:18 +0800629 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
630 clock.m1++) {
631 for (clock.m2 = limit->m2.min;
632 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterc0efc382013-06-03 20:56:24 +0200633 if (clock.m2 >= clock.m1)
Zhao Yakui42158662009-11-20 11:24:18 +0800634 break;
635 for (clock.n = limit->n.min;
636 clock.n <= limit->n.max; clock.n++) {
637 for (clock.p1 = limit->p1.min;
638 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800639 int this_err;
640
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200641 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000642 if (!intel_PLL_is_valid(dev, limit,
643 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800644 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800645 if (match_clock &&
646 clock.p != match_clock->p)
647 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800648
649 this_err = abs(clock.dot - target);
650 if (this_err < err) {
651 *best_clock = clock;
652 err = this_err;
653 }
654 }
655 }
656 }
657 }
658
659 return (err != target);
660}
661
Ma Lingd4906092009-03-18 20:13:27 +0800662static bool
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300663pnv_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200664 int target, int refclk, intel_clock_t *match_clock,
665 intel_clock_t *best_clock)
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200666{
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300667 struct drm_device *dev = crtc->base.dev;
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200668 intel_clock_t clock;
669 int err = target;
670
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200671 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200672 /*
673 * For LVDS just rely on its current settings for dual-channel.
674 * We haven't figured out how to reliably set up different
675 * single/dual channel state, if we even can.
676 */
677 if (intel_is_dual_link_lvds(dev))
678 clock.p2 = limit->p2.p2_fast;
679 else
680 clock.p2 = limit->p2.p2_slow;
681 } else {
682 if (target < limit->p2.dot_limit)
683 clock.p2 = limit->p2.p2_slow;
684 else
685 clock.p2 = limit->p2.p2_fast;
686 }
687
688 memset(best_clock, 0, sizeof(*best_clock));
689
690 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
691 clock.m1++) {
692 for (clock.m2 = limit->m2.min;
693 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200694 for (clock.n = limit->n.min;
695 clock.n <= limit->n.max; clock.n++) {
696 for (clock.p1 = limit->p1.min;
697 clock.p1 <= limit->p1.max; clock.p1++) {
698 int this_err;
699
700 pineview_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800701 if (!intel_PLL_is_valid(dev, limit,
702 &clock))
703 continue;
704 if (match_clock &&
705 clock.p != match_clock->p)
706 continue;
707
708 this_err = abs(clock.dot - target);
709 if (this_err < err) {
710 *best_clock = clock;
711 err = this_err;
712 }
713 }
714 }
715 }
716 }
717
718 return (err != target);
719}
720
Ma Lingd4906092009-03-18 20:13:27 +0800721static bool
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300722g4x_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200723 int target, int refclk, intel_clock_t *match_clock,
724 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800725{
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300726 struct drm_device *dev = crtc->base.dev;
Ma Lingd4906092009-03-18 20:13:27 +0800727 intel_clock_t clock;
728 int max_n;
729 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400730 /* approximately equals target * 0.00585 */
731 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800732 found = false;
733
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200734 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100735 if (intel_is_dual_link_lvds(dev))
Ma Lingd4906092009-03-18 20:13:27 +0800736 clock.p2 = limit->p2.p2_fast;
737 else
738 clock.p2 = limit->p2.p2_slow;
739 } else {
740 if (target < limit->p2.dot_limit)
741 clock.p2 = limit->p2.p2_slow;
742 else
743 clock.p2 = limit->p2.p2_fast;
744 }
745
746 memset(best_clock, 0, sizeof(*best_clock));
747 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200748 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800749 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200750 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800751 for (clock.m1 = limit->m1.max;
752 clock.m1 >= limit->m1.min; clock.m1--) {
753 for (clock.m2 = limit->m2.max;
754 clock.m2 >= limit->m2.min; clock.m2--) {
755 for (clock.p1 = limit->p1.max;
756 clock.p1 >= limit->p1.min; clock.p1--) {
757 int this_err;
758
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200759 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000760 if (!intel_PLL_is_valid(dev, limit,
761 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800762 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000763
764 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800765 if (this_err < err_most) {
766 *best_clock = clock;
767 err_most = this_err;
768 max_n = clock.n;
769 found = true;
770 }
771 }
772 }
773 }
774 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800775 return found;
776}
Ma Lingd4906092009-03-18 20:13:27 +0800777
Zhenyu Wang2c072452009-06-05 15:38:42 +0800778static bool
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300779vlv_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200780 int target, int refclk, intel_clock_t *match_clock,
781 intel_clock_t *best_clock)
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700782{
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300783 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300784 intel_clock_t clock;
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300785 unsigned int bestppm = 1000000;
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300786 /* min update 19.2 MHz */
787 int max_n = min(limit->n.max, refclk / 19200);
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300788 bool found = false;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700789
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300790 target *= 5; /* fast clock */
791
792 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700793
794 /* based on hardware requirement, prefer smaller n to precision */
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300795 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Ville Syrjälä811bbf02013-09-24 21:26:25 +0300796 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
Ville Syrjälä889059d2013-09-24 21:26:27 +0300797 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
Ville Syrjäläc1a9ae42013-09-24 21:26:23 +0300798 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300799 clock.p = clock.p1 * clock.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700800 /* based on hardware requirement, prefer bigger m1,m2 values */
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300801 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300802 unsigned int ppm, diff;
803
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300804 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
805 refclk * clock.m1);
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300806
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300807 vlv_clock(refclk, &clock);
808
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300809 if (!intel_PLL_is_valid(dev, limit,
810 &clock))
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300811 continue;
812
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300813 diff = abs(clock.dot - target);
814 ppm = div_u64(1000000ULL * diff, target);
815
816 if (ppm < 100 && clock.p > best_clock->p) {
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300817 bestppm = 0;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300818 *best_clock = clock;
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300819 found = true;
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300820 }
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300821
Ville Syrjäläc6861222013-09-24 21:26:21 +0300822 if (bestppm >= 10 && ppm < bestppm - 10) {
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300823 bestppm = ppm;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300824 *best_clock = clock;
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300825 found = true;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700826 }
827 }
828 }
829 }
830 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700831
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300832 return found;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700833}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700834
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300835static bool
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300836chv_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300837 int target, int refclk, intel_clock_t *match_clock,
838 intel_clock_t *best_clock)
839{
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300840 struct drm_device *dev = crtc->base.dev;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300841 intel_clock_t clock;
842 uint64_t m2;
843 int found = false;
844
845 memset(best_clock, 0, sizeof(*best_clock));
846
847 /*
848 * Based on hardware doc, the n always set to 1, and m1 always
849 * set to 2. If requires to support 200Mhz refclk, we need to
850 * revisit this because n may not 1 anymore.
851 */
852 clock.n = 1, clock.m1 = 2;
853 target *= 5; /* fast clock */
854
855 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
856 for (clock.p2 = limit->p2.p2_fast;
857 clock.p2 >= limit->p2.p2_slow;
858 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
859
860 clock.p = clock.p1 * clock.p2;
861
862 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
863 clock.n) << 22, refclk * clock.m1);
864
865 if (m2 > INT_MAX/clock.m1)
866 continue;
867
868 clock.m2 = m2;
869
870 chv_clock(refclk, &clock);
871
872 if (!intel_PLL_is_valid(dev, limit, &clock))
873 continue;
874
875 /* based on hardware requirement, prefer bigger p
876 */
877 if (clock.p > best_clock->p) {
878 *best_clock = clock;
879 found = true;
880 }
881 }
882 }
883
884 return found;
885}
886
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300887bool intel_crtc_active(struct drm_crtc *crtc)
888{
889 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
890
891 /* Be paranoid as we can arrive here with only partial
892 * state retrieved from the hardware during setup.
893 *
Damien Lespiau241bfc32013-09-25 16:45:37 +0100894 * We can ditch the adjusted_mode.crtc_clock check as soon
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300895 * as Haswell has gained clock readout/fastboot support.
896 *
Dave Airlie66e514c2014-04-03 07:51:54 +1000897 * We can ditch the crtc->primary->fb check as soon as we can
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300898 * properly reconstruct framebuffers.
899 */
Matt Roperf4510a22014-04-01 15:22:40 -0700900 return intel_crtc->active && crtc->primary->fb &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200901 intel_crtc->config->base.adjusted_mode.crtc_clock;
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300902}
903
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200904enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
905 enum pipe pipe)
906{
907 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
908 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
909
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200910 return intel_crtc->config->cpu_transcoder;
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200911}
912
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +0300913static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
914{
915 struct drm_i915_private *dev_priv = dev->dev_private;
916 u32 reg = PIPEDSL(pipe);
917 u32 line1, line2;
918 u32 line_mask;
919
920 if (IS_GEN2(dev))
921 line_mask = DSL_LINEMASK_GEN2;
922 else
923 line_mask = DSL_LINEMASK_GEN3;
924
925 line1 = I915_READ(reg) & line_mask;
926 mdelay(5);
927 line2 = I915_READ(reg) & line_mask;
928
929 return line1 == line2;
930}
931
Keith Packardab7ad7f2010-10-03 00:33:06 -0700932/*
933 * intel_wait_for_pipe_off - wait for pipe to turn off
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300934 * @crtc: crtc whose pipe to wait for
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700935 *
936 * After disabling a pipe, we can't wait for vblank in the usual way,
937 * spinning on the vblank interrupt status bit, since we won't actually
938 * see an interrupt when the pipe is disabled.
939 *
Keith Packardab7ad7f2010-10-03 00:33:06 -0700940 * On Gen4 and above:
941 * wait for the pipe register state bit to turn off
942 *
943 * Otherwise:
944 * wait for the display line value to settle (it usually
945 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +0100946 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700947 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300948static void intel_wait_for_pipe_off(struct intel_crtc *crtc)
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700949{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300950 struct drm_device *dev = crtc->base.dev;
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700951 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200952 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300953 enum pipe pipe = crtc->pipe;
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700954
Keith Packardab7ad7f2010-10-03 00:33:06 -0700955 if (INTEL_INFO(dev)->gen >= 4) {
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200956 int reg = PIPECONF(cpu_transcoder);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700957
Keith Packardab7ad7f2010-10-03 00:33:06 -0700958 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100959 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
960 100))
Daniel Vetter284637d2012-07-09 09:51:57 +0200961 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700962 } else {
Keith Packardab7ad7f2010-10-03 00:33:06 -0700963 /* Wait for the display line to settle */
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +0300964 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
Daniel Vetter284637d2012-07-09 09:51:57 +0200965 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700966 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800967}
968
Damien Lespiaub0ea7d32012-12-13 16:09:00 +0000969/*
970 * ibx_digital_port_connected - is the specified port connected?
971 * @dev_priv: i915 private structure
972 * @port: the port to test
973 *
974 * Returns true if @port is connected, false otherwise.
975 */
976bool ibx_digital_port_connected(struct drm_i915_private *dev_priv,
977 struct intel_digital_port *port)
978{
979 u32 bit;
980
Damien Lespiauc36346e2012-12-13 16:09:03 +0000981 if (HAS_PCH_IBX(dev_priv->dev)) {
Robin Schroereba905b2014-05-18 02:24:50 +0200982 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +0000983 case PORT_B:
984 bit = SDE_PORTB_HOTPLUG;
985 break;
986 case PORT_C:
987 bit = SDE_PORTC_HOTPLUG;
988 break;
989 case PORT_D:
990 bit = SDE_PORTD_HOTPLUG;
991 break;
992 default:
993 return true;
994 }
995 } else {
Robin Schroereba905b2014-05-18 02:24:50 +0200996 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +0000997 case PORT_B:
998 bit = SDE_PORTB_HOTPLUG_CPT;
999 break;
1000 case PORT_C:
1001 bit = SDE_PORTC_HOTPLUG_CPT;
1002 break;
1003 case PORT_D:
1004 bit = SDE_PORTD_HOTPLUG_CPT;
1005 break;
1006 default:
1007 return true;
1008 }
Damien Lespiaub0ea7d32012-12-13 16:09:00 +00001009 }
1010
1011 return I915_READ(SDEISR) & bit;
1012}
1013
Jesse Barnesb24e7172011-01-04 15:09:30 -08001014static const char *state_string(bool enabled)
1015{
1016 return enabled ? "on" : "off";
1017}
1018
1019/* Only for pre-ILK configs */
Daniel Vetter55607e82013-06-16 21:42:39 +02001020void assert_pll(struct drm_i915_private *dev_priv,
1021 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001022{
1023 int reg;
1024 u32 val;
1025 bool cur_state;
1026
1027 reg = DPLL(pipe);
1028 val = I915_READ(reg);
1029 cur_state = !!(val & DPLL_VCO_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001030 I915_STATE_WARN(cur_state != state,
Jesse Barnesb24e7172011-01-04 15:09:30 -08001031 "PLL state assertion failure (expected %s, current %s)\n",
1032 state_string(state), state_string(cur_state));
1033}
Jesse Barnesb24e7172011-01-04 15:09:30 -08001034
Jani Nikula23538ef2013-08-27 15:12:22 +03001035/* XXX: the dsi pll is shared between MIPI DSI ports */
1036static void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
1037{
1038 u32 val;
1039 bool cur_state;
1040
1041 mutex_lock(&dev_priv->dpio_lock);
1042 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
1043 mutex_unlock(&dev_priv->dpio_lock);
1044
1045 cur_state = val & DSI_PLL_VCO_EN;
Rob Clarke2c719b2014-12-15 13:56:32 -05001046 I915_STATE_WARN(cur_state != state,
Jani Nikula23538ef2013-08-27 15:12:22 +03001047 "DSI PLL state assertion failure (expected %s, current %s)\n",
1048 state_string(state), state_string(cur_state));
1049}
1050#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1051#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1052
Daniel Vetter55607e82013-06-16 21:42:39 +02001053struct intel_shared_dpll *
Daniel Vettere2b78262013-06-07 23:10:03 +02001054intel_crtc_to_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes040484a2011-01-03 12:14:26 -08001055{
Daniel Vettere2b78262013-06-07 23:10:03 +02001056 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1057
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001058 if (crtc->config->shared_dpll < 0)
Daniel Vettere2b78262013-06-07 23:10:03 +02001059 return NULL;
1060
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001061 return &dev_priv->shared_dplls[crtc->config->shared_dpll];
Daniel Vettere2b78262013-06-07 23:10:03 +02001062}
1063
Jesse Barnesb24e7172011-01-04 15:09:30 -08001064/* For ILK+ */
Daniel Vetter55607e82013-06-16 21:42:39 +02001065void assert_shared_dpll(struct drm_i915_private *dev_priv,
1066 struct intel_shared_dpll *pll,
1067 bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001068{
Jesse Barnes040484a2011-01-03 12:14:26 -08001069 bool cur_state;
Daniel Vetter53589012013-06-05 13:34:16 +02001070 struct intel_dpll_hw_state hw_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001071
Chris Wilson92b27b02012-05-20 18:10:50 +01001072 if (WARN (!pll,
Daniel Vetter46edb022013-06-05 13:34:12 +02001073 "asserting DPLL %s with no DPLL\n", state_string(state)))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001074 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001075
Daniel Vetter53589012013-06-05 13:34:16 +02001076 cur_state = pll->get_hw_state(dev_priv, pll, &hw_state);
Rob Clarke2c719b2014-12-15 13:56:32 -05001077 I915_STATE_WARN(cur_state != state,
Daniel Vetter53589012013-06-05 13:34:16 +02001078 "%s assertion failure (expected %s, current %s)\n",
1079 pll->name, state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001080}
Jesse Barnes040484a2011-01-03 12:14:26 -08001081
1082static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1083 enum pipe pipe, bool state)
1084{
1085 int reg;
1086 u32 val;
1087 bool cur_state;
Paulo Zanoniad80a812012-10-24 16:06:19 -02001088 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1089 pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001090
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001091 if (HAS_DDI(dev_priv->dev)) {
1092 /* DDI does not have a specific FDI_TX register */
Paulo Zanoniad80a812012-10-24 16:06:19 -02001093 reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001094 val = I915_READ(reg);
Paulo Zanoniad80a812012-10-24 16:06:19 -02001095 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001096 } else {
1097 reg = FDI_TX_CTL(pipe);
1098 val = I915_READ(reg);
1099 cur_state = !!(val & FDI_TX_ENABLE);
1100 }
Rob Clarke2c719b2014-12-15 13:56:32 -05001101 I915_STATE_WARN(cur_state != state,
Jesse Barnes040484a2011-01-03 12:14:26 -08001102 "FDI TX state assertion failure (expected %s, current %s)\n",
1103 state_string(state), state_string(cur_state));
1104}
1105#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1106#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1107
1108static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1109 enum pipe pipe, bool state)
1110{
1111 int reg;
1112 u32 val;
1113 bool cur_state;
1114
Paulo Zanonid63fa0d2012-11-20 13:27:35 -02001115 reg = FDI_RX_CTL(pipe);
1116 val = I915_READ(reg);
1117 cur_state = !!(val & FDI_RX_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001118 I915_STATE_WARN(cur_state != state,
Jesse Barnes040484a2011-01-03 12:14:26 -08001119 "FDI RX state assertion failure (expected %s, current %s)\n",
1120 state_string(state), state_string(cur_state));
1121}
1122#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1123#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1124
1125static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1126 enum pipe pipe)
1127{
1128 int reg;
1129 u32 val;
1130
1131 /* ILK FDI PLL is always enabled */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001132 if (INTEL_INFO(dev_priv->dev)->gen == 5)
Jesse Barnes040484a2011-01-03 12:14:26 -08001133 return;
1134
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001135 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001136 if (HAS_DDI(dev_priv->dev))
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001137 return;
1138
Jesse Barnes040484a2011-01-03 12:14:26 -08001139 reg = FDI_TX_CTL(pipe);
1140 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001141 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 -08001142}
1143
Daniel Vetter55607e82013-06-16 21:42:39 +02001144void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1145 enum pipe pipe, bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001146{
1147 int reg;
1148 u32 val;
Daniel Vetter55607e82013-06-16 21:42:39 +02001149 bool cur_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001150
1151 reg = FDI_RX_CTL(pipe);
1152 val = I915_READ(reg);
Daniel Vetter55607e82013-06-16 21:42:39 +02001153 cur_state = !!(val & FDI_RX_PLL_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001154 I915_STATE_WARN(cur_state != state,
Daniel Vetter55607e82013-06-16 21:42:39 +02001155 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1156 state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001157}
1158
Daniel Vetterb680c372014-09-19 18:27:27 +02001159void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1160 enum pipe pipe)
Jesse Barnesea0760c2011-01-04 15:09:32 -08001161{
Jani Nikulabedd4db2014-08-22 15:04:13 +03001162 struct drm_device *dev = dev_priv->dev;
1163 int pp_reg;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001164 u32 val;
1165 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001166 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001167
Jani Nikulabedd4db2014-08-22 15:04:13 +03001168 if (WARN_ON(HAS_DDI(dev)))
1169 return;
1170
1171 if (HAS_PCH_SPLIT(dev)) {
1172 u32 port_sel;
1173
Jesse Barnesea0760c2011-01-04 15:09:32 -08001174 pp_reg = PCH_PP_CONTROL;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001175 port_sel = I915_READ(PCH_PP_ON_DELAYS) & PANEL_PORT_SELECT_MASK;
1176
1177 if (port_sel == PANEL_PORT_SELECT_LVDS &&
1178 I915_READ(PCH_LVDS) & LVDS_PIPEB_SELECT)
1179 panel_pipe = PIPE_B;
1180 /* XXX: else fix for eDP */
1181 } else if (IS_VALLEYVIEW(dev)) {
1182 /* presumably write lock depends on pipe, not port select */
1183 pp_reg = VLV_PIPE_PP_CONTROL(pipe);
1184 panel_pipe = pipe;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001185 } else {
1186 pp_reg = PP_CONTROL;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001187 if (I915_READ(LVDS) & LVDS_PIPEB_SELECT)
1188 panel_pipe = PIPE_B;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001189 }
1190
1191 val = I915_READ(pp_reg);
1192 if (!(val & PANEL_POWER_ON) ||
Jani Nikulaec49ba22014-08-21 15:06:25 +03001193 ((val & PANEL_UNLOCK_MASK) == PANEL_UNLOCK_REGS))
Jesse Barnesea0760c2011-01-04 15:09:32 -08001194 locked = false;
1195
Rob Clarke2c719b2014-12-15 13:56:32 -05001196 I915_STATE_WARN(panel_pipe == pipe && locked,
Jesse Barnesea0760c2011-01-04 15:09:32 -08001197 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001198 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001199}
1200
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001201static void assert_cursor(struct drm_i915_private *dev_priv,
1202 enum pipe pipe, bool state)
1203{
1204 struct drm_device *dev = dev_priv->dev;
1205 bool cur_state;
1206
Paulo Zanonid9d82082014-02-27 16:30:56 -03001207 if (IS_845G(dev) || IS_I865G(dev))
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001208 cur_state = I915_READ(_CURACNTR) & CURSOR_ENABLE;
Paulo Zanonid9d82082014-02-27 16:30:56 -03001209 else
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03001210 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001211
Rob Clarke2c719b2014-12-15 13:56:32 -05001212 I915_STATE_WARN(cur_state != state,
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001213 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
1214 pipe_name(pipe), state_string(state), state_string(cur_state));
1215}
1216#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1217#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1218
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001219void assert_pipe(struct drm_i915_private *dev_priv,
1220 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001221{
1222 int reg;
1223 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001224 bool cur_state;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001225 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1226 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001227
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001228 /* if we need the pipe quirk it must be always on */
1229 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1230 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Daniel Vetter8e636782012-01-22 01:36:48 +01001231 state = true;
1232
Daniel Vetterf458ebb2014-09-30 10:56:39 +02001233 if (!intel_display_power_is_enabled(dev_priv,
Paulo Zanonib97186f2013-05-03 12:15:36 -03001234 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
Paulo Zanoni69310162013-01-29 16:35:19 -02001235 cur_state = false;
1236 } else {
1237 reg = PIPECONF(cpu_transcoder);
1238 val = I915_READ(reg);
1239 cur_state = !!(val & PIPECONF_ENABLE);
1240 }
1241
Rob Clarke2c719b2014-12-15 13:56:32 -05001242 I915_STATE_WARN(cur_state != state,
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001243 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001244 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001245}
1246
Chris Wilson931872f2012-01-16 23:01:13 +00001247static void assert_plane(struct drm_i915_private *dev_priv,
1248 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001249{
1250 int reg;
1251 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001252 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001253
1254 reg = DSPCNTR(plane);
1255 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001256 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001257 I915_STATE_WARN(cur_state != state,
Chris Wilson931872f2012-01-16 23:01:13 +00001258 "plane %c assertion failure (expected %s, current %s)\n",
1259 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001260}
1261
Chris Wilson931872f2012-01-16 23:01:13 +00001262#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1263#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1264
Jesse Barnesb24e7172011-01-04 15:09:30 -08001265static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1266 enum pipe pipe)
1267{
Ville Syrjälä653e1022013-06-04 13:49:05 +03001268 struct drm_device *dev = dev_priv->dev;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001269 int reg, i;
1270 u32 val;
1271 int cur_pipe;
1272
Ville Syrjälä653e1022013-06-04 13:49:05 +03001273 /* Primary planes are fixed to pipes on gen4+ */
1274 if (INTEL_INFO(dev)->gen >= 4) {
Adam Jackson28c057942011-10-07 14:38:42 -04001275 reg = DSPCNTR(pipe);
1276 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001277 I915_STATE_WARN(val & DISPLAY_PLANE_ENABLE,
Adam Jackson28c057942011-10-07 14:38:42 -04001278 "plane %c assertion failure, should be disabled but not\n",
1279 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001280 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001281 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001282
Jesse Barnesb24e7172011-01-04 15:09:30 -08001283 /* Need to check both planes against the pipe */
Damien Lespiau055e3932014-08-18 13:49:10 +01001284 for_each_pipe(dev_priv, i) {
Jesse Barnesb24e7172011-01-04 15:09:30 -08001285 reg = DSPCNTR(i);
1286 val = I915_READ(reg);
1287 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1288 DISPPLANE_SEL_PIPE_SHIFT;
Rob Clarke2c719b2014-12-15 13:56:32 -05001289 I915_STATE_WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001290 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1291 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001292 }
1293}
1294
Jesse Barnes19332d72013-03-28 09:55:38 -07001295static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1296 enum pipe pipe)
1297{
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001298 struct drm_device *dev = dev_priv->dev;
Damien Lespiau1fe47782014-03-03 17:31:47 +00001299 int reg, sprite;
Jesse Barnes19332d72013-03-28 09:55:38 -07001300 u32 val;
1301
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001302 if (INTEL_INFO(dev)->gen >= 9) {
Damien Lespiau3bdcfc02015-02-28 14:54:09 +00001303 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001304 val = I915_READ(PLANE_CTL(pipe, sprite));
Rob Clarke2c719b2014-12-15 13:56:32 -05001305 I915_STATE_WARN(val & PLANE_CTL_ENABLE,
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001306 "plane %d assertion failure, should be off on pipe %c but is still active\n",
1307 sprite, pipe_name(pipe));
1308 }
1309 } else if (IS_VALLEYVIEW(dev)) {
Damien Lespiau3bdcfc02015-02-28 14:54:09 +00001310 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau1fe47782014-03-03 17:31:47 +00001311 reg = SPCNTR(pipe, sprite);
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001312 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001313 I915_STATE_WARN(val & SP_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001314 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +00001315 sprite_name(pipe, sprite), pipe_name(pipe));
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001316 }
1317 } else if (INTEL_INFO(dev)->gen >= 7) {
1318 reg = SPRCTL(pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07001319 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001320 I915_STATE_WARN(val & SPRITE_ENABLE,
Ville Syrjälä06da8da2013-04-17 17:48:51 +03001321 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001322 plane_name(pipe), pipe_name(pipe));
1323 } else if (INTEL_INFO(dev)->gen >= 5) {
1324 reg = DVSCNTR(pipe);
1325 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001326 I915_STATE_WARN(val & DVS_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001327 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1328 plane_name(pipe), pipe_name(pipe));
Jesse Barnes19332d72013-03-28 09:55:38 -07001329 }
1330}
1331
Ville Syrjälä08c71e52014-08-06 14:49:45 +03001332static void assert_vblank_disabled(struct drm_crtc *crtc)
1333{
Rob Clarke2c719b2014-12-15 13:56:32 -05001334 if (I915_STATE_WARN_ON(drm_crtc_vblank_get(crtc) == 0))
Ville Syrjälä08c71e52014-08-06 14:49:45 +03001335 drm_crtc_vblank_put(crtc);
1336}
1337
Paulo Zanoni89eff4b2014-01-08 11:12:28 -02001338static void ibx_assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
Jesse Barnes92f25842011-01-04 15:09:34 -08001339{
1340 u32 val;
1341 bool enabled;
1342
Rob Clarke2c719b2014-12-15 13:56:32 -05001343 I915_STATE_WARN_ON(!(HAS_PCH_IBX(dev_priv->dev) || HAS_PCH_CPT(dev_priv->dev)));
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001344
Jesse Barnes92f25842011-01-04 15:09:34 -08001345 val = I915_READ(PCH_DREF_CONTROL);
1346 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1347 DREF_SUPERSPREAD_SOURCE_MASK));
Rob Clarke2c719b2014-12-15 13:56:32 -05001348 I915_STATE_WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
Jesse Barnes92f25842011-01-04 15:09:34 -08001349}
1350
Daniel Vetterab9412b2013-05-03 11:49:46 +02001351static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1352 enum pipe pipe)
Jesse Barnes92f25842011-01-04 15:09:34 -08001353{
1354 int reg;
1355 u32 val;
1356 bool enabled;
1357
Daniel Vetterab9412b2013-05-03 11:49:46 +02001358 reg = PCH_TRANSCONF(pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001359 val = I915_READ(reg);
1360 enabled = !!(val & TRANS_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001361 I915_STATE_WARN(enabled,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001362 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1363 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001364}
1365
Keith Packard4e634382011-08-06 10:39:45 -07001366static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1367 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001368{
1369 if ((val & DP_PORT_EN) == 0)
1370 return false;
1371
1372 if (HAS_PCH_CPT(dev_priv->dev)) {
1373 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1374 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1375 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1376 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001377 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1378 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1379 return false;
Keith Packardf0575e92011-07-25 22:12:43 -07001380 } else {
1381 if ((val & DP_PIPE_MASK) != (pipe << 30))
1382 return false;
1383 }
1384 return true;
1385}
1386
Keith Packard1519b992011-08-06 10:35:34 -07001387static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1388 enum pipe pipe, u32 val)
1389{
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001390 if ((val & SDVO_ENABLE) == 0)
Keith Packard1519b992011-08-06 10:35:34 -07001391 return false;
1392
1393 if (HAS_PCH_CPT(dev_priv->dev)) {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001394 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001395 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001396 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1397 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1398 return false;
Keith Packard1519b992011-08-06 10:35:34 -07001399 } else {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001400 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001401 return false;
1402 }
1403 return true;
1404}
1405
1406static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1407 enum pipe pipe, u32 val)
1408{
1409 if ((val & LVDS_PORT_EN) == 0)
1410 return false;
1411
1412 if (HAS_PCH_CPT(dev_priv->dev)) {
1413 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1414 return false;
1415 } else {
1416 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1417 return false;
1418 }
1419 return true;
1420}
1421
1422static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1423 enum pipe pipe, u32 val)
1424{
1425 if ((val & ADPA_DAC_ENABLE) == 0)
1426 return false;
1427 if (HAS_PCH_CPT(dev_priv->dev)) {
1428 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1429 return false;
1430 } else {
1431 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1432 return false;
1433 }
1434 return true;
1435}
1436
Jesse Barnes291906f2011-02-02 12:28:03 -08001437static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001438 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001439{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001440 u32 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001441 I915_STATE_WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001442 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001443 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001444
Rob Clarke2c719b2014-12-15 13:56:32 -05001445 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001446 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001447 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001448}
1449
1450static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1451 enum pipe pipe, int reg)
1452{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001453 u32 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001454 I915_STATE_WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001455 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001456 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001457
Rob Clarke2c719b2014-12-15 13:56:32 -05001458 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001459 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001460 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001461}
1462
1463static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1464 enum pipe pipe)
1465{
1466 int reg;
1467 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001468
Keith Packardf0575e92011-07-25 22:12:43 -07001469 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1470 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1471 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001472
1473 reg = PCH_ADPA;
1474 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001475 I915_STATE_WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001476 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001477 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001478
1479 reg = PCH_LVDS;
1480 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001481 I915_STATE_WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001482 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001483 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001484
Paulo Zanonie2debe92013-02-18 19:00:27 -03001485 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1486 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1487 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
Jesse Barnes291906f2011-02-02 12:28:03 -08001488}
1489
Jesse Barnes40e9cf62013-10-03 11:35:46 -07001490static void intel_init_dpio(struct drm_device *dev)
1491{
1492 struct drm_i915_private *dev_priv = dev->dev_private;
1493
1494 if (!IS_VALLEYVIEW(dev))
1495 return;
1496
Chon Ming Leea09cadd2014-04-09 13:28:14 +03001497 /*
1498 * IOSF_PORT_DPIO is used for VLV x2 PHY (DP/HDMI B and C),
1499 * CHV x1 PHY (DP/HDMI D)
1500 * IOSF_PORT_DPIO_2 is used for CHV x2 PHY (DP/HDMI B and C)
1501 */
1502 if (IS_CHERRYVIEW(dev)) {
1503 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO_2;
1504 DPIO_PHY_IOSF_PORT(DPIO_PHY1) = IOSF_PORT_DPIO;
1505 } else {
1506 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO;
1507 }
Jesse Barnes5382f5f352013-12-16 16:34:24 -08001508}
1509
Ville Syrjäläd288f652014-10-28 13:20:22 +02001510static void vlv_enable_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001511 const struct intel_crtc_state *pipe_config)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001512{
Daniel Vetter426115c2013-07-11 22:13:42 +02001513 struct drm_device *dev = crtc->base.dev;
1514 struct drm_i915_private *dev_priv = dev->dev_private;
1515 int reg = DPLL(crtc->pipe);
Ville Syrjäläd288f652014-10-28 13:20:22 +02001516 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001517
Daniel Vetter426115c2013-07-11 22:13:42 +02001518 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001519
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001520 /* No really, not for ILK+ */
Daniel Vetter87442f72013-06-06 00:52:17 +02001521 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev));
1522
1523 /* PLL is protected by panel, make sure we can write it */
Jani Nikula6a9e7362014-08-22 15:06:35 +03001524 if (IS_MOBILE(dev_priv->dev))
Daniel Vetter426115c2013-07-11 22:13:42 +02001525 assert_panel_unlocked(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001526
Daniel Vetter426115c2013-07-11 22:13:42 +02001527 I915_WRITE(reg, dpll);
1528 POSTING_READ(reg);
1529 udelay(150);
1530
1531 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1532 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1533
Ville Syrjäläd288f652014-10-28 13:20:22 +02001534 I915_WRITE(DPLL_MD(crtc->pipe), pipe_config->dpll_hw_state.dpll_md);
Daniel Vetter426115c2013-07-11 22:13:42 +02001535 POSTING_READ(DPLL_MD(crtc->pipe));
Daniel Vetter87442f72013-06-06 00:52:17 +02001536
1537 /* We do this three times for luck */
Daniel Vetter426115c2013-07-11 22:13:42 +02001538 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001539 POSTING_READ(reg);
1540 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001541 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001542 POSTING_READ(reg);
1543 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001544 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001545 POSTING_READ(reg);
1546 udelay(150); /* wait for warmup */
1547}
1548
Ville Syrjäläd288f652014-10-28 13:20:22 +02001549static void chv_enable_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001550 const struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001551{
1552 struct drm_device *dev = crtc->base.dev;
1553 struct drm_i915_private *dev_priv = dev->dev_private;
1554 int pipe = crtc->pipe;
1555 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001556 u32 tmp;
1557
1558 assert_pipe_disabled(dev_priv, crtc->pipe);
1559
1560 BUG_ON(!IS_CHERRYVIEW(dev_priv->dev));
1561
1562 mutex_lock(&dev_priv->dpio_lock);
1563
1564 /* Enable back the 10bit clock to display controller */
1565 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1566 tmp |= DPIO_DCLKP_EN;
1567 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1568
1569 /*
1570 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1571 */
1572 udelay(1);
1573
1574 /* Enable PLL */
Ville Syrjäläd288f652014-10-28 13:20:22 +02001575 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001576
1577 /* Check PLL is locked */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001578 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001579 DRM_ERROR("PLL %d failed to lock\n", pipe);
1580
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001581 /* not sure when this should be written */
Ville Syrjäläd288f652014-10-28 13:20:22 +02001582 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001583 POSTING_READ(DPLL_MD(pipe));
1584
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001585 mutex_unlock(&dev_priv->dpio_lock);
1586}
1587
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001588static int intel_num_dvo_pipes(struct drm_device *dev)
1589{
1590 struct intel_crtc *crtc;
1591 int count = 0;
1592
1593 for_each_intel_crtc(dev, crtc)
1594 count += crtc->active &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001595 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO);
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001596
1597 return count;
1598}
1599
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001600static void i9xx_enable_pll(struct intel_crtc *crtc)
Daniel Vetter87442f72013-06-06 00:52:17 +02001601{
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001602 struct drm_device *dev = crtc->base.dev;
1603 struct drm_i915_private *dev_priv = dev->dev_private;
1604 int reg = DPLL(crtc->pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001605 u32 dpll = crtc->config->dpll_hw_state.dpll;
Daniel Vetter87442f72013-06-06 00:52:17 +02001606
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001607 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001608
1609 /* No really, not for ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001610 BUG_ON(INTEL_INFO(dev)->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001611
1612 /* PLL is protected by panel, make sure we can write it */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001613 if (IS_MOBILE(dev) && !IS_I830(dev))
1614 assert_panel_unlocked(dev_priv, crtc->pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001615
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001616 /* Enable DVO 2x clock on both PLLs if necessary */
1617 if (IS_I830(dev) && intel_num_dvo_pipes(dev) > 0) {
1618 /*
1619 * It appears to be important that we don't enable this
1620 * for the current pipe before otherwise configuring the
1621 * PLL. No idea how this should be handled if multiple
1622 * DVO outputs are enabled simultaneosly.
1623 */
1624 dpll |= DPLL_DVO_2X_MODE;
1625 I915_WRITE(DPLL(!crtc->pipe),
1626 I915_READ(DPLL(!crtc->pipe)) | DPLL_DVO_2X_MODE);
1627 }
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001628
1629 /* Wait for the clocks to stabilize. */
1630 POSTING_READ(reg);
1631 udelay(150);
1632
1633 if (INTEL_INFO(dev)->gen >= 4) {
1634 I915_WRITE(DPLL_MD(crtc->pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001635 crtc->config->dpll_hw_state.dpll_md);
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001636 } else {
1637 /* The pixel multiplier can only be updated once the
1638 * DPLL is enabled and the clocks are stable.
1639 *
1640 * So write it again.
1641 */
1642 I915_WRITE(reg, dpll);
1643 }
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001644
1645 /* We do this three times for luck */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001646 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001647 POSTING_READ(reg);
1648 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001649 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001650 POSTING_READ(reg);
1651 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001652 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001653 POSTING_READ(reg);
1654 udelay(150); /* wait for warmup */
1655}
1656
1657/**
Daniel Vetter50b44a42013-06-05 13:34:33 +02001658 * i9xx_disable_pll - disable a PLL
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001659 * @dev_priv: i915 private structure
1660 * @pipe: pipe PLL to disable
1661 *
1662 * Disable the PLL for @pipe, making sure the pipe is off first.
1663 *
1664 * Note! This is for pre-ILK only.
1665 */
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001666static void i9xx_disable_pll(struct intel_crtc *crtc)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001667{
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001668 struct drm_device *dev = crtc->base.dev;
1669 struct drm_i915_private *dev_priv = dev->dev_private;
1670 enum pipe pipe = crtc->pipe;
1671
1672 /* Disable DVO 2x clock on both PLLs if necessary */
1673 if (IS_I830(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001674 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO) &&
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001675 intel_num_dvo_pipes(dev) == 1) {
1676 I915_WRITE(DPLL(PIPE_B),
1677 I915_READ(DPLL(PIPE_B)) & ~DPLL_DVO_2X_MODE);
1678 I915_WRITE(DPLL(PIPE_A),
1679 I915_READ(DPLL(PIPE_A)) & ~DPLL_DVO_2X_MODE);
1680 }
1681
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001682 /* Don't disable pipe or pipe PLLs if needed */
1683 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1684 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001685 return;
1686
1687 /* Make sure the pipe isn't still relying on us */
1688 assert_pipe_disabled(dev_priv, pipe);
1689
Daniel Vetter50b44a42013-06-05 13:34:33 +02001690 I915_WRITE(DPLL(pipe), 0);
1691 POSTING_READ(DPLL(pipe));
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001692}
1693
Jesse Barnesf6071162013-10-01 10:41:38 -07001694static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1695{
1696 u32 val = 0;
1697
1698 /* Make sure the pipe isn't still relying on us */
1699 assert_pipe_disabled(dev_priv, pipe);
1700
Imre Deake5cbfbf2014-01-09 17:08:16 +02001701 /*
1702 * Leave integrated clock source and reference clock enabled for pipe B.
1703 * The latter is needed for VGA hotplug / manual detection.
1704 */
Jesse Barnesf6071162013-10-01 10:41:38 -07001705 if (pipe == PIPE_B)
Imre Deake5cbfbf2014-01-09 17:08:16 +02001706 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REFA_CLK_ENABLE_VLV;
Jesse Barnesf6071162013-10-01 10:41:38 -07001707 I915_WRITE(DPLL(pipe), val);
1708 POSTING_READ(DPLL(pipe));
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001709
1710}
1711
1712static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1713{
Ville Syrjäläd7520482014-04-09 13:28:59 +03001714 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001715 u32 val;
1716
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001717 /* Make sure the pipe isn't still relying on us */
1718 assert_pipe_disabled(dev_priv, pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001719
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001720 /* Set PLL en = 0 */
Ville Syrjäläd17ec4c2014-06-28 02:03:59 +03001721 val = DPLL_SSC_REF_CLOCK_CHV | DPLL_REFA_CLK_ENABLE_VLV;
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001722 if (pipe != PIPE_A)
1723 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1724 I915_WRITE(DPLL(pipe), val);
1725 POSTING_READ(DPLL(pipe));
Ville Syrjäläd7520482014-04-09 13:28:59 +03001726
1727 mutex_lock(&dev_priv->dpio_lock);
1728
1729 /* Disable 10bit clock to display controller */
1730 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1731 val &= ~DPIO_DCLKP_EN;
1732 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1733
Ville Syrjälä61407f62014-05-27 16:32:55 +03001734 /* disable left/right clock distribution */
1735 if (pipe != PIPE_B) {
1736 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1737 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1738 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1739 } else {
1740 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1741 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1742 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1743 }
1744
Ville Syrjäläd7520482014-04-09 13:28:59 +03001745 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesf6071162013-10-01 10:41:38 -07001746}
1747
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001748void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
1749 struct intel_digital_port *dport)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001750{
1751 u32 port_mask;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001752 int dpll_reg;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001753
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001754 switch (dport->port) {
1755 case PORT_B:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001756 port_mask = DPLL_PORTB_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001757 dpll_reg = DPLL(0);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001758 break;
1759 case PORT_C:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001760 port_mask = DPLL_PORTC_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001761 dpll_reg = DPLL(0);
1762 break;
1763 case PORT_D:
1764 port_mask = DPLL_PORTD_READY_MASK;
1765 dpll_reg = DPIO_PHY_STATUS;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001766 break;
1767 default:
1768 BUG();
1769 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07001770
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001771 if (wait_for((I915_READ(dpll_reg) & port_mask) == 0, 1000))
Jesse Barnes89b667f2013-04-18 14:51:36 -07001772 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001773 port_name(dport->port), I915_READ(dpll_reg));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001774}
1775
Daniel Vetterb14b1052014-04-24 23:55:13 +02001776static void intel_prepare_shared_dpll(struct intel_crtc *crtc)
1777{
1778 struct drm_device *dev = crtc->base.dev;
1779 struct drm_i915_private *dev_priv = dev->dev_private;
1780 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
1781
Chris Wilsonbe19f0f2014-05-28 16:16:42 +01001782 if (WARN_ON(pll == NULL))
1783 return;
1784
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001785 WARN_ON(!pll->config.crtc_mask);
Daniel Vetterb14b1052014-04-24 23:55:13 +02001786 if (pll->active == 0) {
1787 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
1788 WARN_ON(pll->on);
1789 assert_shared_dpll_disabled(dev_priv, pll);
1790
1791 pll->mode_set(dev_priv, pll);
1792 }
1793}
1794
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001795/**
Daniel Vetter85b38942014-04-24 23:55:14 +02001796 * intel_enable_shared_dpll - enable PCH PLL
Jesse Barnes92f25842011-01-04 15:09:34 -08001797 * @dev_priv: i915 private structure
1798 * @pipe: pipe PLL to enable
1799 *
1800 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1801 * drives the transcoder clock.
1802 */
Daniel Vetter85b38942014-04-24 23:55:14 +02001803static void intel_enable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001804{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001805 struct drm_device *dev = crtc->base.dev;
1806 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001807 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes92f25842011-01-04 15:09:34 -08001808
Daniel Vetter87a875b2013-06-05 13:34:19 +02001809 if (WARN_ON(pll == NULL))
Chris Wilson48da64a2012-05-13 20:16:12 +01001810 return;
1811
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001812 if (WARN_ON(pll->config.crtc_mask == 0))
Chris Wilson48da64a2012-05-13 20:16:12 +01001813 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001814
Damien Lespiau74dd6922014-07-29 18:06:17 +01001815 DRM_DEBUG_KMS("enable %s (active %d, on? %d) for crtc %d\n",
Daniel Vetter46edb022013-06-05 13:34:12 +02001816 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001817 crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001818
Daniel Vettercdbd2312013-06-05 13:34:03 +02001819 if (pll->active++) {
1820 WARN_ON(!pll->on);
Daniel Vettere9d69442013-06-05 13:34:15 +02001821 assert_shared_dpll_enabled(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001822 return;
1823 }
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001824 WARN_ON(pll->on);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001825
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001826 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
1827
Daniel Vetter46edb022013-06-05 13:34:12 +02001828 DRM_DEBUG_KMS("enabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001829 pll->enable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001830 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001831}
1832
Damien Lespiauf6daaec2014-08-09 23:00:56 +01001833static void intel_disable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001834{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001835 struct drm_device *dev = crtc->base.dev;
1836 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001837 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001838
Jesse Barnes92f25842011-01-04 15:09:34 -08001839 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001840 BUG_ON(INTEL_INFO(dev)->gen < 5);
Daniel Vetter87a875b2013-06-05 13:34:19 +02001841 if (WARN_ON(pll == NULL))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001842 return;
1843
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001844 if (WARN_ON(pll->config.crtc_mask == 0))
Chris Wilson48da64a2012-05-13 20:16:12 +01001845 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001846
Daniel Vetter46edb022013-06-05 13:34:12 +02001847 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1848 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001849 crtc->base.base.id);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001850
Chris Wilson48da64a2012-05-13 20:16:12 +01001851 if (WARN_ON(pll->active == 0)) {
Daniel Vettere9d69442013-06-05 13:34:15 +02001852 assert_shared_dpll_disabled(dev_priv, pll);
Chris Wilson48da64a2012-05-13 20:16:12 +01001853 return;
1854 }
1855
Daniel Vettere9d69442013-06-05 13:34:15 +02001856 assert_shared_dpll_enabled(dev_priv, pll);
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001857 WARN_ON(!pll->on);
Daniel Vettercdbd2312013-06-05 13:34:03 +02001858 if (--pll->active)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001859 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001860
Daniel Vetter46edb022013-06-05 13:34:12 +02001861 DRM_DEBUG_KMS("disabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001862 pll->disable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001863 pll->on = false;
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001864
1865 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
Jesse Barnes92f25842011-01-04 15:09:34 -08001866}
1867
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001868static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1869 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001870{
Daniel Vetter23670b322012-11-01 09:15:30 +01001871 struct drm_device *dev = dev_priv->dev;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001872 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vettere2b78262013-06-07 23:10:03 +02001873 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter23670b322012-11-01 09:15:30 +01001874 uint32_t reg, val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001875
1876 /* PCH only available on ILK+ */
Ville Syrjälä55522f32014-09-03 14:09:53 +03001877 BUG_ON(!HAS_PCH_SPLIT(dev));
Jesse Barnes040484a2011-01-03 12:14:26 -08001878
1879 /* Make sure PCH DPLL is enabled */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02001880 assert_shared_dpll_enabled(dev_priv,
Daniel Vettere9d69442013-06-05 13:34:15 +02001881 intel_crtc_to_shared_dpll(intel_crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001882
1883 /* FDI must be feeding us bits for PCH ports */
1884 assert_fdi_tx_enabled(dev_priv, pipe);
1885 assert_fdi_rx_enabled(dev_priv, pipe);
1886
Daniel Vetter23670b322012-11-01 09:15:30 +01001887 if (HAS_PCH_CPT(dev)) {
1888 /* Workaround: Set the timing override bit before enabling the
1889 * pch transcoder. */
1890 reg = TRANS_CHICKEN2(pipe);
1891 val = I915_READ(reg);
1892 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1893 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001894 }
Daniel Vetter23670b322012-11-01 09:15:30 +01001895
Daniel Vetterab9412b2013-05-03 11:49:46 +02001896 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001897 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001898 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001899
1900 if (HAS_PCH_IBX(dev_priv->dev)) {
1901 /*
1902 * make the BPC in transcoder be consistent with
1903 * that in pipeconf reg.
1904 */
Daniel Vetterdfd07d72012-12-17 11:21:38 +01001905 val &= ~PIPECONF_BPC_MASK;
1906 val |= pipeconf_val & PIPECONF_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001907 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001908
1909 val &= ~TRANS_INTERLACE_MASK;
1910 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001911 if (HAS_PCH_IBX(dev_priv->dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001912 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001913 val |= TRANS_LEGACY_INTERLACED_ILK;
1914 else
1915 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001916 else
1917 val |= TRANS_PROGRESSIVE;
1918
Jesse Barnes040484a2011-01-03 12:14:26 -08001919 I915_WRITE(reg, val | TRANS_ENABLE);
1920 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001921 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
Jesse Barnes040484a2011-01-03 12:14:26 -08001922}
1923
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001924static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02001925 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08001926{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001927 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001928
1929 /* PCH only available on ILK+ */
Ville Syrjälä55522f32014-09-03 14:09:53 +03001930 BUG_ON(!HAS_PCH_SPLIT(dev_priv->dev));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001931
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001932 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01001933 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02001934 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001935
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001936 /* Workaround: set timing override bit. */
1937 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001938 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001939 I915_WRITE(_TRANSA_CHICKEN2, val);
1940
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02001941 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02001942 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001943
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02001944 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1945 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02001946 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001947 else
1948 val |= TRANS_PROGRESSIVE;
1949
Daniel Vetterab9412b2013-05-03 11:49:46 +02001950 I915_WRITE(LPT_TRANSCONF, val);
1951 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
Paulo Zanoni937bb612012-10-31 18:12:47 -02001952 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001953}
1954
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001955static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1956 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001957{
Daniel Vetter23670b322012-11-01 09:15:30 +01001958 struct drm_device *dev = dev_priv->dev;
1959 uint32_t reg, val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001960
1961 /* FDI relies on the transcoder */
1962 assert_fdi_tx_disabled(dev_priv, pipe);
1963 assert_fdi_rx_disabled(dev_priv, pipe);
1964
Jesse Barnes291906f2011-02-02 12:28:03 -08001965 /* Ports must be off as well */
1966 assert_pch_ports_disabled(dev_priv, pipe);
1967
Daniel Vetterab9412b2013-05-03 11:49:46 +02001968 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001969 val = I915_READ(reg);
1970 val &= ~TRANS_ENABLE;
1971 I915_WRITE(reg, val);
1972 /* wait for PCH transcoder off, transcoder state */
1973 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001974 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
Daniel Vetter23670b322012-11-01 09:15:30 +01001975
1976 if (!HAS_PCH_IBX(dev)) {
1977 /* Workaround: Clear the timing override chicken bit again. */
1978 reg = TRANS_CHICKEN2(pipe);
1979 val = I915_READ(reg);
1980 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1981 I915_WRITE(reg, val);
1982 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001983}
1984
Paulo Zanoniab4d9662012-10-31 18:12:55 -02001985static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001986{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001987 u32 val;
1988
Daniel Vetterab9412b2013-05-03 11:49:46 +02001989 val = I915_READ(LPT_TRANSCONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001990 val &= ~TRANS_ENABLE;
Daniel Vetterab9412b2013-05-03 11:49:46 +02001991 I915_WRITE(LPT_TRANSCONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001992 /* wait for PCH transcoder off, transcoder state */
Daniel Vetterab9412b2013-05-03 11:49:46 +02001993 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02001994 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001995
1996 /* Workaround: clear timing override bit. */
1997 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001998 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001999 I915_WRITE(_TRANSA_CHICKEN2, val);
Jesse Barnes92f25842011-01-04 15:09:34 -08002000}
2001
2002/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002003 * intel_enable_pipe - enable a pipe, asserting requirements
Paulo Zanoni03722642014-01-17 13:51:09 -02002004 * @crtc: crtc responsible for the pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08002005 *
Paulo Zanoni03722642014-01-17 13:51:09 -02002006 * Enable @crtc's pipe, making sure that various hardware specific requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08002007 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002008 */
Paulo Zanonie1fdc472014-01-17 13:51:12 -02002009static void intel_enable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002010{
Paulo Zanoni03722642014-01-17 13:51:09 -02002011 struct drm_device *dev = crtc->base.dev;
2012 struct drm_i915_private *dev_priv = dev->dev_private;
2013 enum pipe pipe = crtc->pipe;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002014 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
2015 pipe);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002016 enum pipe pch_transcoder;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002017 int reg;
2018 u32 val;
2019
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002020 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002021 assert_cursor_disabled(dev_priv, pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002022 assert_sprites_disabled(dev_priv, pipe);
2023
Paulo Zanoni681e5812012-12-06 11:12:38 -02002024 if (HAS_PCH_LPT(dev_priv->dev))
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002025 pch_transcoder = TRANSCODER_A;
2026 else
2027 pch_transcoder = pipe;
2028
Jesse Barnesb24e7172011-01-04 15:09:30 -08002029 /*
2030 * A pipe without a PLL won't actually be able to drive bits from
2031 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
2032 * need the check.
2033 */
2034 if (!HAS_PCH_SPLIT(dev_priv->dev))
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03002035 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
Jani Nikula23538ef2013-08-27 15:12:22 +03002036 assert_dsi_pll_enabled(dev_priv);
2037 else
2038 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002039 else {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002040 if (crtc->config->has_pch_encoder) {
Jesse Barnes040484a2011-01-03 12:14:26 -08002041 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002042 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002043 assert_fdi_tx_pll_enabled(dev_priv,
2044 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08002045 }
2046 /* FIXME: assert CPU port conditions for SNB+ */
2047 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08002048
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002049 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002050 val = I915_READ(reg);
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002051 if (val & PIPECONF_ENABLE) {
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002052 WARN_ON(!((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
2053 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)));
Chris Wilson00d70b12011-03-17 07:18:29 +00002054 return;
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002055 }
Chris Wilson00d70b12011-03-17 07:18:29 +00002056
2057 I915_WRITE(reg, val | PIPECONF_ENABLE);
Paulo Zanoni851855d2013-12-19 19:12:29 -02002058 POSTING_READ(reg);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002059}
2060
2061/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002062 * intel_disable_pipe - disable a pipe, asserting requirements
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002063 * @crtc: crtc whose pipes is to be disabled
Jesse Barnesb24e7172011-01-04 15:09:30 -08002064 *
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002065 * Disable the pipe of @crtc, making sure that various hardware
2066 * specific requirements are met, if applicable, e.g. plane
2067 * disabled, panel fitter off, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002068 *
2069 * Will wait until the pipe has shut down before returning.
2070 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002071static void intel_disable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002072{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002073 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002074 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002075 enum pipe pipe = crtc->pipe;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002076 int reg;
2077 u32 val;
2078
2079 /*
2080 * Make sure planes won't keep trying to pump pixels to us,
2081 * or we might hang the display.
2082 */
2083 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002084 assert_cursor_disabled(dev_priv, pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07002085 assert_sprites_disabled(dev_priv, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002086
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002087 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002088 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00002089 if ((val & PIPECONF_ENABLE) == 0)
2090 return;
2091
Ville Syrjälä67adc642014-08-15 01:21:57 +03002092 /*
2093 * Double wide has implications for planes
2094 * so best keep it disabled when not needed.
2095 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002096 if (crtc->config->double_wide)
Ville Syrjälä67adc642014-08-15 01:21:57 +03002097 val &= ~PIPECONF_DOUBLE_WIDE;
2098
2099 /* Don't disable pipe or pipe PLLs if needed */
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002100 if (!(pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) &&
2101 !(pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Ville Syrjälä67adc642014-08-15 01:21:57 +03002102 val &= ~PIPECONF_ENABLE;
2103
2104 I915_WRITE(reg, val);
2105 if ((val & PIPECONF_ENABLE) == 0)
2106 intel_wait_for_pipe_off(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002107}
2108
Keith Packardd74362c2011-07-28 14:47:14 -07002109/*
2110 * Plane regs are double buffered, going from enabled->disabled needs a
2111 * trigger in order to latch. The display address reg provides this.
2112 */
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002113void intel_flush_primary_plane(struct drm_i915_private *dev_priv,
2114 enum plane plane)
Keith Packardd74362c2011-07-28 14:47:14 -07002115{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00002116 struct drm_device *dev = dev_priv->dev;
2117 u32 reg = INTEL_INFO(dev)->gen >= 4 ? DSPSURF(plane) : DSPADDR(plane);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002118
2119 I915_WRITE(reg, I915_READ(reg));
2120 POSTING_READ(reg);
Keith Packardd74362c2011-07-28 14:47:14 -07002121}
2122
Jesse Barnesb24e7172011-01-04 15:09:30 -08002123/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002124 * intel_enable_primary_hw_plane - enable the primary plane on a given pipe
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002125 * @plane: plane to be enabled
2126 * @crtc: crtc for the plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002127 *
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002128 * Enable @plane on @crtc, making sure that the pipe is running first.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002129 */
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002130static void intel_enable_primary_hw_plane(struct drm_plane *plane,
2131 struct drm_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002132{
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002133 struct drm_device *dev = plane->dev;
2134 struct drm_i915_private *dev_priv = dev->dev_private;
2135 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002136
2137 /* If the pipe isn't enabled, we can't pump pixels and may hang */
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002138 assert_pipe_enabled(dev_priv, intel_crtc->pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002139
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002140 if (intel_crtc->primary_enabled)
2141 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002142
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002143 intel_crtc->primary_enabled = true;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002144
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002145 dev_priv->display.update_primary_plane(crtc, plane->fb,
2146 crtc->x, crtc->y);
Ville Syrjälä33c3b0d2014-06-24 13:59:28 +03002147
2148 /*
2149 * BDW signals flip done immediately if the plane
2150 * is disabled, even if the plane enable is already
2151 * armed to occur at the next vblank :(
2152 */
2153 if (IS_BROADWELL(dev))
2154 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002155}
2156
Jesse Barnesb24e7172011-01-04 15:09:30 -08002157/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002158 * intel_disable_primary_hw_plane - disable the primary hardware plane
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002159 * @plane: plane to be disabled
2160 * @crtc: crtc for the plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002161 *
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002162 * Disable @plane on @crtc, making sure that the pipe is running first.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002163 */
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002164static void intel_disable_primary_hw_plane(struct drm_plane *plane,
2165 struct drm_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002166{
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002167 struct drm_device *dev = plane->dev;
2168 struct drm_i915_private *dev_priv = dev->dev_private;
2169 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2170
Matt Roper32b7eee2014-12-24 07:59:06 -08002171 if (WARN_ON(!intel_crtc->active))
2172 return;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002173
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002174 if (!intel_crtc->primary_enabled)
2175 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002176
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002177 intel_crtc->primary_enabled = false;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002178
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002179 dev_priv->display.update_primary_plane(crtc, plane->fb,
2180 crtc->x, crtc->y);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002181}
2182
Chris Wilson693db182013-03-05 14:52:39 +00002183static bool need_vtd_wa(struct drm_device *dev)
2184{
2185#ifdef CONFIG_INTEL_IOMMU
2186 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2187 return true;
2188#endif
2189 return false;
2190}
2191
Damien Lespiauec2c9812015-01-20 12:51:45 +00002192int
Daniel Vetter091df6c2015-02-10 17:16:10 +00002193intel_fb_align_height(struct drm_device *dev, int height,
2194 uint32_t pixel_format,
2195 uint64_t fb_format_modifier)
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002196{
2197 int tile_height;
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002198 uint32_t bits_per_pixel;
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002199
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002200 switch (fb_format_modifier) {
2201 case DRM_FORMAT_MOD_NONE:
2202 tile_height = 1;
2203 break;
2204 case I915_FORMAT_MOD_X_TILED:
2205 tile_height = IS_GEN2(dev) ? 16 : 8;
2206 break;
2207 case I915_FORMAT_MOD_Y_TILED:
2208 tile_height = 32;
2209 break;
2210 case I915_FORMAT_MOD_Yf_TILED:
2211 bits_per_pixel = drm_format_plane_cpp(pixel_format, 0) * 8;
2212 switch (bits_per_pixel) {
2213 default:
2214 case 8:
2215 tile_height = 64;
2216 break;
2217 case 16:
2218 case 32:
2219 tile_height = 32;
2220 break;
2221 case 64:
2222 tile_height = 16;
2223 break;
2224 case 128:
2225 WARN_ONCE(1,
2226 "128-bit pixels are not supported for display!");
2227 tile_height = 16;
2228 break;
2229 }
2230 break;
2231 default:
2232 MISSING_CASE(fb_format_modifier);
2233 tile_height = 1;
2234 break;
2235 }
Daniel Vetter091df6c2015-02-10 17:16:10 +00002236
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002237 return ALIGN(height, tile_height);
2238}
2239
Chris Wilson127bd2a2010-07-23 23:32:05 +01002240int
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002241intel_pin_and_fence_fb_obj(struct drm_plane *plane,
2242 struct drm_framebuffer *fb,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002243 struct intel_engine_cs *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002244{
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002245 struct drm_device *dev = fb->dev;
Chris Wilsonce453d82011-02-21 14:43:56 +00002246 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002247 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002248 u32 alignment;
2249 int ret;
2250
Matt Roperebcdd392014-07-09 16:22:11 -07002251 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
2252
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002253 switch (fb->modifier[0]) {
2254 case DRM_FORMAT_MOD_NONE:
Damien Lespiau1fada4c2013-07-03 21:06:02 +01002255 if (INTEL_INFO(dev)->gen >= 9)
2256 alignment = 256 * 1024;
2257 else if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
Chris Wilson534843d2010-07-05 18:01:46 +01002258 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002259 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01002260 alignment = 4 * 1024;
2261 else
2262 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002263 break;
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002264 case I915_FORMAT_MOD_X_TILED:
Damien Lespiau1fada4c2013-07-03 21:06:02 +01002265 if (INTEL_INFO(dev)->gen >= 9)
2266 alignment = 256 * 1024;
2267 else {
2268 /* pin() will align the object as required by fence */
2269 alignment = 0;
2270 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002271 break;
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002272 case I915_FORMAT_MOD_Y_TILED:
Damien Lespiau1327b9a2015-02-27 11:15:20 +00002273 case I915_FORMAT_MOD_Yf_TILED:
2274 if (WARN_ONCE(INTEL_INFO(dev)->gen < 9,
2275 "Y tiling bo slipped through, driver bug!\n"))
2276 return -EINVAL;
2277 alignment = 1 * 1024 * 1024;
2278 break;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002279 default:
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002280 MISSING_CASE(fb->modifier[0]);
2281 return -EINVAL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002282 }
2283
Chris Wilson693db182013-03-05 14:52:39 +00002284 /* Note that the w/a also requires 64 PTE of padding following the
2285 * bo. We currently fill all unused PTE with the shadow page and so
2286 * we should always have valid PTE following the scanout preventing
2287 * the VT-d warning.
2288 */
2289 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2290 alignment = 256 * 1024;
2291
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002292 /*
2293 * Global gtt pte registers are special registers which actually forward
2294 * writes to a chunk of system memory. Which means that there is no risk
2295 * that the register values disappear as soon as we call
2296 * intel_runtime_pm_put(), so it is correct to wrap only the
2297 * pin/unpin/fence and not more.
2298 */
2299 intel_runtime_pm_get(dev_priv);
2300
Chris Wilsonce453d82011-02-21 14:43:56 +00002301 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002302 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01002303 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00002304 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002305
2306 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2307 * fence, whereas 965+ only requires a fence if using
2308 * framebuffer compression. For simplicity, we always install
2309 * a fence as the cost is not that onerous.
2310 */
Chris Wilson06d98132012-04-17 15:31:24 +01002311 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002312 if (ret)
2313 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002314
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002315 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002316
Chris Wilsonce453d82011-02-21 14:43:56 +00002317 dev_priv->mm.interruptible = true;
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002318 intel_runtime_pm_put(dev_priv);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002319 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01002320
2321err_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01002322 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00002323err_interruptible:
2324 dev_priv->mm.interruptible = true;
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002325 intel_runtime_pm_put(dev_priv);
Chris Wilson48b956c2010-09-14 12:50:34 +01002326 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002327}
2328
Damien Lespiauf63bdb52015-02-10 19:32:24 +00002329static void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
Chris Wilson1690e1e2011-12-14 13:57:08 +01002330{
Matt Roperebcdd392014-07-09 16:22:11 -07002331 WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex));
2332
Chris Wilson1690e1e2011-12-14 13:57:08 +01002333 i915_gem_object_unpin_fence(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01002334 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002335}
2336
Daniel Vetterc2c75132012-07-05 12:17:30 +02002337/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2338 * is assumed to be a power-of-two. */
Chris Wilsonbc752862013-02-21 20:04:31 +00002339unsigned long intel_gen4_compute_page_offset(int *x, int *y,
2340 unsigned int tiling_mode,
2341 unsigned int cpp,
2342 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02002343{
Chris Wilsonbc752862013-02-21 20:04:31 +00002344 if (tiling_mode != I915_TILING_NONE) {
2345 unsigned int tile_rows, tiles;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002346
Chris Wilsonbc752862013-02-21 20:04:31 +00002347 tile_rows = *y / 8;
2348 *y %= 8;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002349
Chris Wilsonbc752862013-02-21 20:04:31 +00002350 tiles = *x / (512/cpp);
2351 *x %= 512/cpp;
2352
2353 return tile_rows * pitch * 8 + tiles * 4096;
2354 } else {
2355 unsigned int offset;
2356
2357 offset = *y * pitch + *x * cpp;
2358 *y = 0;
2359 *x = (offset & 4095) / cpp;
2360 return offset & -4096;
2361 }
Daniel Vetterc2c75132012-07-05 12:17:30 +02002362}
2363
Damien Lespiaub35d63f2015-01-20 12:51:50 +00002364static int i9xx_format_to_fourcc(int format)
Jesse Barnes46f297f2014-03-07 08:57:48 -08002365{
2366 switch (format) {
2367 case DISPPLANE_8BPP:
2368 return DRM_FORMAT_C8;
2369 case DISPPLANE_BGRX555:
2370 return DRM_FORMAT_XRGB1555;
2371 case DISPPLANE_BGRX565:
2372 return DRM_FORMAT_RGB565;
2373 default:
2374 case DISPPLANE_BGRX888:
2375 return DRM_FORMAT_XRGB8888;
2376 case DISPPLANE_RGBX888:
2377 return DRM_FORMAT_XBGR8888;
2378 case DISPPLANE_BGRX101010:
2379 return DRM_FORMAT_XRGB2101010;
2380 case DISPPLANE_RGBX101010:
2381 return DRM_FORMAT_XBGR2101010;
2382 }
2383}
2384
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00002385static int skl_format_to_fourcc(int format, bool rgb_order, bool alpha)
2386{
2387 switch (format) {
2388 case PLANE_CTL_FORMAT_RGB_565:
2389 return DRM_FORMAT_RGB565;
2390 default:
2391 case PLANE_CTL_FORMAT_XRGB_8888:
2392 if (rgb_order) {
2393 if (alpha)
2394 return DRM_FORMAT_ABGR8888;
2395 else
2396 return DRM_FORMAT_XBGR8888;
2397 } else {
2398 if (alpha)
2399 return DRM_FORMAT_ARGB8888;
2400 else
2401 return DRM_FORMAT_XRGB8888;
2402 }
2403 case PLANE_CTL_FORMAT_XRGB_2101010:
2404 if (rgb_order)
2405 return DRM_FORMAT_XBGR2101010;
2406 else
2407 return DRM_FORMAT_XRGB2101010;
2408 }
2409}
2410
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002411static bool
2412intel_alloc_plane_obj(struct intel_crtc *crtc,
2413 struct intel_initial_plane_config *plane_config)
Jesse Barnes46f297f2014-03-07 08:57:48 -08002414{
2415 struct drm_device *dev = crtc->base.dev;
2416 struct drm_i915_gem_object *obj = NULL;
2417 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Damien Lespiau2d140302015-02-05 17:22:18 +00002418 struct drm_framebuffer *fb = &plane_config->fb->base;
Daniel Vetterf37b5c22015-02-10 23:12:27 +01002419 u32 base_aligned = round_down(plane_config->base, PAGE_SIZE);
2420 u32 size_aligned = round_up(plane_config->base + plane_config->size,
2421 PAGE_SIZE);
2422
2423 size_aligned -= base_aligned;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002424
Chris Wilsonff2652e2014-03-10 08:07:02 +00002425 if (plane_config->size == 0)
2426 return false;
2427
Daniel Vetterf37b5c22015-02-10 23:12:27 +01002428 obj = i915_gem_object_create_stolen_for_preallocated(dev,
2429 base_aligned,
2430 base_aligned,
2431 size_aligned);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002432 if (!obj)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002433 return false;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002434
Damien Lespiau49af4492015-01-20 12:51:44 +00002435 obj->tiling_mode = plane_config->tiling;
2436 if (obj->tiling_mode == I915_TILING_X)
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002437 obj->stride = fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002438
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002439 mode_cmd.pixel_format = fb->pixel_format;
2440 mode_cmd.width = fb->width;
2441 mode_cmd.height = fb->height;
2442 mode_cmd.pitches[0] = fb->pitches[0];
Daniel Vetter18c52472015-02-10 17:16:09 +00002443 mode_cmd.modifier[0] = fb->modifier[0];
2444 mode_cmd.flags = DRM_MODE_FB_MODIFIERS;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002445
2446 mutex_lock(&dev->struct_mutex);
2447
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002448 if (intel_framebuffer_init(dev, to_intel_framebuffer(fb),
Jesse Barnes484b41d2014-03-07 08:57:55 -08002449 &mode_cmd, obj)) {
Jesse Barnes46f297f2014-03-07 08:57:48 -08002450 DRM_DEBUG_KMS("intel fb init failed\n");
2451 goto out_unref_obj;
2452 }
2453
Daniel Vettera071fa02014-06-18 23:28:09 +02002454 obj->frontbuffer_bits = INTEL_FRONTBUFFER_PRIMARY(crtc->pipe);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002455 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002456
2457 DRM_DEBUG_KMS("plane fb obj %p\n", obj);
2458 return true;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002459
2460out_unref_obj:
2461 drm_gem_object_unreference(&obj->base);
2462 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002463 return false;
2464}
2465
Matt Roperafd65eb2015-02-03 13:10:04 -08002466/* Update plane->state->fb to match plane->fb after driver-internal updates */
2467static void
2468update_state_fb(struct drm_plane *plane)
2469{
2470 if (plane->fb == plane->state->fb)
2471 return;
2472
2473 if (plane->state->fb)
2474 drm_framebuffer_unreference(plane->state->fb);
2475 plane->state->fb = plane->fb;
2476 if (plane->state->fb)
2477 drm_framebuffer_reference(plane->state->fb);
2478}
2479
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002480static void
2481intel_find_plane_obj(struct intel_crtc *intel_crtc,
2482 struct intel_initial_plane_config *plane_config)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002483{
2484 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnesd9ceb812014-10-09 12:57:43 -07002485 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002486 struct drm_crtc *c;
2487 struct intel_crtc *i;
Matt Roper2ff8fde2014-07-08 07:50:07 -07002488 struct drm_i915_gem_object *obj;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002489
Damien Lespiau2d140302015-02-05 17:22:18 +00002490 if (!plane_config->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002491 return;
2492
Damien Lespiauf55548b2015-02-05 18:30:20 +00002493 if (intel_alloc_plane_obj(intel_crtc, plane_config)) {
Damien Lespiaufb9981a2015-02-05 19:24:25 +00002494 struct drm_plane *primary = intel_crtc->base.primary;
2495
2496 primary->fb = &plane_config->fb->base;
2497 primary->state->crtc = &intel_crtc->base;
2498 update_state_fb(primary);
2499
Jesse Barnes484b41d2014-03-07 08:57:55 -08002500 return;
Damien Lespiauf55548b2015-02-05 18:30:20 +00002501 }
Jesse Barnes484b41d2014-03-07 08:57:55 -08002502
Damien Lespiau2d140302015-02-05 17:22:18 +00002503 kfree(plane_config->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002504
2505 /*
2506 * Failed to alloc the obj, check to see if we should share
2507 * an fb with another CRTC instead
2508 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002509 for_each_crtc(dev, c) {
Jesse Barnes484b41d2014-03-07 08:57:55 -08002510 i = to_intel_crtc(c);
2511
2512 if (c == &intel_crtc->base)
2513 continue;
2514
Matt Roper2ff8fde2014-07-08 07:50:07 -07002515 if (!i->active)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002516 continue;
2517
Matt Roper2ff8fde2014-07-08 07:50:07 -07002518 obj = intel_fb_obj(c->primary->fb);
2519 if (obj == NULL)
2520 continue;
2521
2522 if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) {
Damien Lespiaufb9981a2015-02-05 19:24:25 +00002523 struct drm_plane *primary = intel_crtc->base.primary;
2524
Jesse Barnesd9ceb812014-10-09 12:57:43 -07002525 if (obj->tiling_mode != I915_TILING_NONE)
2526 dev_priv->preserve_bios_swizzle = true;
2527
Dave Airlie66e514c2014-04-03 07:51:54 +10002528 drm_framebuffer_reference(c->primary->fb);
Damien Lespiaufb9981a2015-02-05 19:24:25 +00002529 primary->fb = c->primary->fb;
2530 primary->state->crtc = &intel_crtc->base;
Damien Lespiau5ba76c42015-02-05 17:22:15 +00002531 update_state_fb(intel_crtc->base.primary);
Matt Roper2ff8fde2014-07-08 07:50:07 -07002532 obj->frontbuffer_bits |= INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002533 break;
2534 }
2535 }
Matt Roperafd65eb2015-02-03 13:10:04 -08002536
Jesse Barnes46f297f2014-03-07 08:57:48 -08002537}
2538
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002539static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2540 struct drm_framebuffer *fb,
2541 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07002542{
2543 struct drm_device *dev = crtc->dev;
2544 struct drm_i915_private *dev_priv = dev->dev_private;
2545 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002546 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002547 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002548 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002549 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002550 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302551 int pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002552
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002553 if (!intel_crtc->primary_enabled) {
2554 I915_WRITE(reg, 0);
2555 if (INTEL_INFO(dev)->gen >= 4)
2556 I915_WRITE(DSPSURF(plane), 0);
2557 else
2558 I915_WRITE(DSPADDR(plane), 0);
2559 POSTING_READ(reg);
2560 return;
2561 }
2562
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002563 obj = intel_fb_obj(fb);
2564 if (WARN_ON(obj == NULL))
2565 return;
2566
2567 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2568
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002569 dspcntr = DISPPLANE_GAMMA_ENABLE;
2570
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002571 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002572
2573 if (INTEL_INFO(dev)->gen < 4) {
2574 if (intel_crtc->pipe == PIPE_B)
2575 dspcntr |= DISPPLANE_SEL_PIPE_B;
2576
2577 /* pipesrc and dspsize control the size that is scaled from,
2578 * which should always be the user's requested size.
2579 */
2580 I915_WRITE(DSPSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002581 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2582 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002583 I915_WRITE(DSPPOS(plane), 0);
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002584 } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) {
2585 I915_WRITE(PRIMSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002586 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2587 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002588 I915_WRITE(PRIMPOS(plane), 0);
2589 I915_WRITE(PRIMCNSTALPHA(plane), 0);
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002590 }
2591
Ville Syrjälä57779d02012-10-31 17:50:14 +02002592 switch (fb->pixel_format) {
2593 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002594 dspcntr |= DISPPLANE_8BPP;
2595 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002596 case DRM_FORMAT_XRGB1555:
2597 case DRM_FORMAT_ARGB1555:
2598 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002599 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002600 case DRM_FORMAT_RGB565:
2601 dspcntr |= DISPPLANE_BGRX565;
2602 break;
2603 case DRM_FORMAT_XRGB8888:
2604 case DRM_FORMAT_ARGB8888:
2605 dspcntr |= DISPPLANE_BGRX888;
2606 break;
2607 case DRM_FORMAT_XBGR8888:
2608 case DRM_FORMAT_ABGR8888:
2609 dspcntr |= DISPPLANE_RGBX888;
2610 break;
2611 case DRM_FORMAT_XRGB2101010:
2612 case DRM_FORMAT_ARGB2101010:
2613 dspcntr |= DISPPLANE_BGRX101010;
2614 break;
2615 case DRM_FORMAT_XBGR2101010:
2616 case DRM_FORMAT_ABGR2101010:
2617 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002618 break;
2619 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002620 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07002621 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002622
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002623 if (INTEL_INFO(dev)->gen >= 4 &&
2624 obj->tiling_mode != I915_TILING_NONE)
2625 dspcntr |= DISPPLANE_TILED;
Jesse Barnes81255562010-08-02 12:07:50 -07002626
Ville Syrjäläde1aa622013-06-07 10:47:01 +03002627 if (IS_G4X(dev))
2628 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2629
Ville Syrjäläb98971272014-08-27 16:51:22 +03002630 linear_offset = y * fb->pitches[0] + x * pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002631
Daniel Vetterc2c75132012-07-05 12:17:30 +02002632 if (INTEL_INFO(dev)->gen >= 4) {
2633 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002634 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002635 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002636 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002637 linear_offset -= intel_crtc->dspaddr_offset;
2638 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002639 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002640 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002641
Matt Roper8e7d6882015-01-21 16:35:41 -08002642 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302643 dspcntr |= DISPPLANE_ROTATE_180;
2644
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002645 x += (intel_crtc->config->pipe_src_w - 1);
2646 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302647
2648 /* Finding the last pixel of the last line of the display
2649 data and adding to linear_offset*/
2650 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002651 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2652 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302653 }
2654
2655 I915_WRITE(reg, dspcntr);
2656
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002657 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2658 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2659 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002660 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002661 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002662 I915_WRITE(DSPSURF(plane),
2663 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002664 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002665 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002666 } else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002667 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002668 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002669}
2670
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002671static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2672 struct drm_framebuffer *fb,
2673 int x, int y)
Jesse Barnes17638cd2011-06-24 12:19:23 -07002674{
2675 struct drm_device *dev = crtc->dev;
2676 struct drm_i915_private *dev_priv = dev->dev_private;
2677 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002678 struct drm_i915_gem_object *obj;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002679 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002680 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002681 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002682 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302683 int pixel_size;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002684
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002685 if (!intel_crtc->primary_enabled) {
2686 I915_WRITE(reg, 0);
2687 I915_WRITE(DSPSURF(plane), 0);
2688 POSTING_READ(reg);
2689 return;
2690 }
2691
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002692 obj = intel_fb_obj(fb);
2693 if (WARN_ON(obj == NULL))
2694 return;
2695
2696 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2697
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002698 dspcntr = DISPPLANE_GAMMA_ENABLE;
2699
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002700 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002701
2702 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
2703 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
2704
Ville Syrjälä57779d02012-10-31 17:50:14 +02002705 switch (fb->pixel_format) {
2706 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002707 dspcntr |= DISPPLANE_8BPP;
2708 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002709 case DRM_FORMAT_RGB565:
2710 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002711 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002712 case DRM_FORMAT_XRGB8888:
2713 case DRM_FORMAT_ARGB8888:
2714 dspcntr |= DISPPLANE_BGRX888;
2715 break;
2716 case DRM_FORMAT_XBGR8888:
2717 case DRM_FORMAT_ABGR8888:
2718 dspcntr |= DISPPLANE_RGBX888;
2719 break;
2720 case DRM_FORMAT_XRGB2101010:
2721 case DRM_FORMAT_ARGB2101010:
2722 dspcntr |= DISPPLANE_BGRX101010;
2723 break;
2724 case DRM_FORMAT_XBGR2101010:
2725 case DRM_FORMAT_ABGR2101010:
2726 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002727 break;
2728 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002729 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002730 }
2731
2732 if (obj->tiling_mode != I915_TILING_NONE)
2733 dspcntr |= DISPPLANE_TILED;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002734
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002735 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03002736 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002737
Ville Syrjäläb98971272014-08-27 16:51:22 +03002738 linear_offset = y * fb->pitches[0] + x * pixel_size;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002739 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002740 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002741 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002742 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002743 linear_offset -= intel_crtc->dspaddr_offset;
Matt Roper8e7d6882015-01-21 16:35:41 -08002744 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302745 dspcntr |= DISPPLANE_ROTATE_180;
2746
2747 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002748 x += (intel_crtc->config->pipe_src_w - 1);
2749 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302750
2751 /* Finding the last pixel of the last line of the display
2752 data and adding to linear_offset*/
2753 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002754 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2755 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302756 }
2757 }
2758
2759 I915_WRITE(reg, dspcntr);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002760
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002761 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2762 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2763 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002764 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002765 I915_WRITE(DSPSURF(plane),
2766 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Paulo Zanonib3dc6852013-11-02 21:07:33 -07002767 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002768 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2769 } else {
2770 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2771 I915_WRITE(DSPLINOFF(plane), linear_offset);
2772 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002773 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002774}
2775
Damien Lespiaub3218032015-02-27 11:15:18 +00002776u32 intel_fb_stride_alignment(struct drm_device *dev, uint64_t fb_modifier,
2777 uint32_t pixel_format)
2778{
2779 u32 bits_per_pixel = drm_format_plane_cpp(pixel_format, 0) * 8;
2780
2781 /*
2782 * The stride is either expressed as a multiple of 64 bytes
2783 * chunks for linear buffers or in number of tiles for tiled
2784 * buffers.
2785 */
2786 switch (fb_modifier) {
2787 case DRM_FORMAT_MOD_NONE:
2788 return 64;
2789 case I915_FORMAT_MOD_X_TILED:
2790 if (INTEL_INFO(dev)->gen == 2)
2791 return 128;
2792 return 512;
2793 case I915_FORMAT_MOD_Y_TILED:
2794 /* No need to check for old gens and Y tiling since this is
2795 * about the display engine and those will be blocked before
2796 * we get here.
2797 */
2798 return 128;
2799 case I915_FORMAT_MOD_Yf_TILED:
2800 if (bits_per_pixel == 8)
2801 return 64;
2802 else
2803 return 128;
2804 default:
2805 MISSING_CASE(fb_modifier);
2806 return 64;
2807 }
2808}
2809
Damien Lespiau70d21f02013-07-03 21:06:04 +01002810static void skylake_update_primary_plane(struct drm_crtc *crtc,
2811 struct drm_framebuffer *fb,
2812 int x, int y)
2813{
2814 struct drm_device *dev = crtc->dev;
2815 struct drm_i915_private *dev_priv = dev->dev_private;
2816 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Damien Lespiau70d21f02013-07-03 21:06:04 +01002817 struct drm_i915_gem_object *obj;
2818 int pipe = intel_crtc->pipe;
Damien Lespiaub3218032015-02-27 11:15:18 +00002819 u32 plane_ctl, stride_div;
Damien Lespiau70d21f02013-07-03 21:06:04 +01002820
2821 if (!intel_crtc->primary_enabled) {
2822 I915_WRITE(PLANE_CTL(pipe, 0), 0);
2823 I915_WRITE(PLANE_SURF(pipe, 0), 0);
2824 POSTING_READ(PLANE_CTL(pipe, 0));
2825 return;
2826 }
2827
2828 plane_ctl = PLANE_CTL_ENABLE |
2829 PLANE_CTL_PIPE_GAMMA_ENABLE |
2830 PLANE_CTL_PIPE_CSC_ENABLE;
2831
2832 switch (fb->pixel_format) {
2833 case DRM_FORMAT_RGB565:
2834 plane_ctl |= PLANE_CTL_FORMAT_RGB_565;
2835 break;
2836 case DRM_FORMAT_XRGB8888:
2837 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2838 break;
Jani Nikulaf75fb422015-02-10 13:15:49 +02002839 case DRM_FORMAT_ARGB8888:
2840 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2841 plane_ctl |= PLANE_CTL_ALPHA_SW_PREMULTIPLY;
2842 break;
Damien Lespiau70d21f02013-07-03 21:06:04 +01002843 case DRM_FORMAT_XBGR8888:
2844 plane_ctl |= PLANE_CTL_ORDER_RGBX;
2845 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2846 break;
Jani Nikulaf75fb422015-02-10 13:15:49 +02002847 case DRM_FORMAT_ABGR8888:
2848 plane_ctl |= PLANE_CTL_ORDER_RGBX;
2849 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2850 plane_ctl |= PLANE_CTL_ALPHA_SW_PREMULTIPLY;
2851 break;
Damien Lespiau70d21f02013-07-03 21:06:04 +01002852 case DRM_FORMAT_XRGB2101010:
2853 plane_ctl |= PLANE_CTL_FORMAT_XRGB_2101010;
2854 break;
2855 case DRM_FORMAT_XBGR2101010:
2856 plane_ctl |= PLANE_CTL_ORDER_RGBX;
2857 plane_ctl |= PLANE_CTL_FORMAT_XRGB_2101010;
2858 break;
2859 default:
2860 BUG();
2861 }
2862
Daniel Vetter30af77c2015-02-10 17:16:11 +00002863 switch (fb->modifier[0]) {
2864 case DRM_FORMAT_MOD_NONE:
Damien Lespiau70d21f02013-07-03 21:06:04 +01002865 break;
Daniel Vetter30af77c2015-02-10 17:16:11 +00002866 case I915_FORMAT_MOD_X_TILED:
Damien Lespiau70d21f02013-07-03 21:06:04 +01002867 plane_ctl |= PLANE_CTL_TILED_X;
Damien Lespiaub3218032015-02-27 11:15:18 +00002868 break;
2869 case I915_FORMAT_MOD_Y_TILED:
2870 plane_ctl |= PLANE_CTL_TILED_Y;
2871 break;
2872 case I915_FORMAT_MOD_Yf_TILED:
2873 plane_ctl |= PLANE_CTL_TILED_YF;
Damien Lespiau70d21f02013-07-03 21:06:04 +01002874 break;
2875 default:
Damien Lespiaub3218032015-02-27 11:15:18 +00002876 MISSING_CASE(fb->modifier[0]);
Damien Lespiau70d21f02013-07-03 21:06:04 +01002877 }
2878
2879 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
Matt Roper8e7d6882015-01-21 16:35:41 -08002880 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180))
Sonika Jindal1447dde2014-10-04 10:53:31 +01002881 plane_ctl |= PLANE_CTL_ROTATE_180;
Damien Lespiau70d21f02013-07-03 21:06:04 +01002882
Damien Lespiaub3218032015-02-27 11:15:18 +00002883 obj = intel_fb_obj(fb);
2884 stride_div = intel_fb_stride_alignment(dev, fb->modifier[0],
2885 fb->pixel_format);
2886
Damien Lespiau70d21f02013-07-03 21:06:04 +01002887 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
2888
2889 DRM_DEBUG_KMS("Writing base %08lX %d,%d,%d,%d pitch=%d\n",
2890 i915_gem_obj_ggtt_offset(obj),
2891 x, y, fb->width, fb->height,
2892 fb->pitches[0]);
2893
2894 I915_WRITE(PLANE_POS(pipe, 0), 0);
2895 I915_WRITE(PLANE_OFFSET(pipe, 0), (y << 16) | x);
2896 I915_WRITE(PLANE_SIZE(pipe, 0),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002897 (intel_crtc->config->pipe_src_h - 1) << 16 |
2898 (intel_crtc->config->pipe_src_w - 1));
Damien Lespiaub3218032015-02-27 11:15:18 +00002899 I915_WRITE(PLANE_STRIDE(pipe, 0), fb->pitches[0] / stride_div);
Damien Lespiau70d21f02013-07-03 21:06:04 +01002900 I915_WRITE(PLANE_SURF(pipe, 0), i915_gem_obj_ggtt_offset(obj));
2901
2902 POSTING_READ(PLANE_SURF(pipe, 0));
2903}
2904
Jesse Barnes17638cd2011-06-24 12:19:23 -07002905/* Assume fb object is pinned & idle & fenced and just update base pointers */
2906static int
2907intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2908 int x, int y, enum mode_set_atomic state)
2909{
2910 struct drm_device *dev = crtc->dev;
2911 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002912
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002913 if (dev_priv->display.disable_fbc)
2914 dev_priv->display.disable_fbc(dev);
Jesse Barnes81255562010-08-02 12:07:50 -07002915
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002916 dev_priv->display.update_primary_plane(crtc, fb, x, y);
2917
2918 return 0;
Jesse Barnes81255562010-08-02 12:07:50 -07002919}
2920
Ville Syrjälä75147472014-11-24 18:28:11 +02002921static void intel_complete_page_flips(struct drm_device *dev)
Ville Syrjälä96a02912013-02-18 19:08:49 +02002922{
Ville Syrjälä96a02912013-02-18 19:08:49 +02002923 struct drm_crtc *crtc;
2924
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002925 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002926 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2927 enum plane plane = intel_crtc->plane;
2928
2929 intel_prepare_page_flip(dev, plane);
2930 intel_finish_page_flip_plane(dev, plane);
2931 }
Ville Syrjälä75147472014-11-24 18:28:11 +02002932}
2933
2934static void intel_update_primary_planes(struct drm_device *dev)
2935{
2936 struct drm_i915_private *dev_priv = dev->dev_private;
2937 struct drm_crtc *crtc;
Ville Syrjälä96a02912013-02-18 19:08:49 +02002938
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002939 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002940 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2941
Rob Clark51fd3712013-11-19 12:10:12 -05002942 drm_modeset_lock(&crtc->mutex, NULL);
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002943 /*
2944 * FIXME: Once we have proper support for primary planes (and
2945 * disabling them without disabling the entire crtc) allow again
Dave Airlie66e514c2014-04-03 07:51:54 +10002946 * a NULL crtc->primary->fb.
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002947 */
Matt Roperf4510a22014-04-01 15:22:40 -07002948 if (intel_crtc->active && crtc->primary->fb)
Matt Roper262ca2b2014-03-18 17:22:55 -07002949 dev_priv->display.update_primary_plane(crtc,
Dave Airlie66e514c2014-04-03 07:51:54 +10002950 crtc->primary->fb,
Matt Roper262ca2b2014-03-18 17:22:55 -07002951 crtc->x,
2952 crtc->y);
Rob Clark51fd3712013-11-19 12:10:12 -05002953 drm_modeset_unlock(&crtc->mutex);
Ville Syrjälä96a02912013-02-18 19:08:49 +02002954 }
2955}
2956
Ville Syrjälä75147472014-11-24 18:28:11 +02002957void intel_prepare_reset(struct drm_device *dev)
2958{
Ville Syrjäläf98ce922014-11-21 21:54:30 +02002959 struct drm_i915_private *dev_priv = to_i915(dev);
2960 struct intel_crtc *crtc;
2961
Ville Syrjälä75147472014-11-24 18:28:11 +02002962 /* no reset support for gen2 */
2963 if (IS_GEN2(dev))
2964 return;
2965
2966 /* reset doesn't touch the display */
2967 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
2968 return;
2969
2970 drm_modeset_lock_all(dev);
Ville Syrjäläf98ce922014-11-21 21:54:30 +02002971
2972 /*
2973 * Disabling the crtcs gracefully seems nicer. Also the
2974 * g33 docs say we should at least disable all the planes.
2975 */
2976 for_each_intel_crtc(dev, crtc) {
2977 if (crtc->active)
2978 dev_priv->display.crtc_disable(&crtc->base);
2979 }
Ville Syrjälä75147472014-11-24 18:28:11 +02002980}
2981
2982void intel_finish_reset(struct drm_device *dev)
2983{
2984 struct drm_i915_private *dev_priv = to_i915(dev);
2985
2986 /*
2987 * Flips in the rings will be nuked by the reset,
2988 * so complete all pending flips so that user space
2989 * will get its events and not get stuck.
2990 */
2991 intel_complete_page_flips(dev);
2992
2993 /* no reset support for gen2 */
2994 if (IS_GEN2(dev))
2995 return;
2996
2997 /* reset doesn't touch the display */
2998 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) {
2999 /*
3000 * Flips in the rings have been nuked by the reset,
3001 * so update the base address of all primary
3002 * planes to the the last fb to make sure we're
3003 * showing the correct fb after a reset.
3004 */
3005 intel_update_primary_planes(dev);
3006 return;
3007 }
3008
3009 /*
3010 * The display has been reset as well,
3011 * so need a full re-initialization.
3012 */
3013 intel_runtime_pm_disable_interrupts(dev_priv);
3014 intel_runtime_pm_enable_interrupts(dev_priv);
3015
3016 intel_modeset_init_hw(dev);
3017
3018 spin_lock_irq(&dev_priv->irq_lock);
3019 if (dev_priv->display.hpd_irq_setup)
3020 dev_priv->display.hpd_irq_setup(dev);
3021 spin_unlock_irq(&dev_priv->irq_lock);
3022
3023 intel_modeset_setup_hw_state(dev, true);
3024
3025 intel_hpd_init(dev_priv);
3026
3027 drm_modeset_unlock_all(dev);
3028}
3029
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003030static int
Chris Wilson14667a42012-04-03 17:58:35 +01003031intel_finish_fb(struct drm_framebuffer *old_fb)
3032{
Matt Roper2ff8fde2014-07-08 07:50:07 -07003033 struct drm_i915_gem_object *obj = intel_fb_obj(old_fb);
Chris Wilson14667a42012-04-03 17:58:35 +01003034 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
3035 bool was_interruptible = dev_priv->mm.interruptible;
3036 int ret;
3037
Chris Wilson14667a42012-04-03 17:58:35 +01003038 /* Big Hammer, we also need to ensure that any pending
3039 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
3040 * current scanout is retired before unpinning the old
3041 * framebuffer.
3042 *
3043 * This should only fail upon a hung GPU, in which case we
3044 * can safely continue.
3045 */
3046 dev_priv->mm.interruptible = false;
3047 ret = i915_gem_object_finish_gpu(obj);
3048 dev_priv->mm.interruptible = was_interruptible;
3049
3050 return ret;
3051}
3052
Chris Wilson7d5e3792014-03-04 13:15:08 +00003053static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
3054{
3055 struct drm_device *dev = crtc->dev;
3056 struct drm_i915_private *dev_priv = dev->dev_private;
3057 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003058 bool pending;
3059
3060 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
3061 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
3062 return false;
3063
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003064 spin_lock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003065 pending = to_intel_crtc(crtc)->unpin_work != NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003066 spin_unlock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003067
3068 return pending;
3069}
3070
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003071static void intel_update_pipe_size(struct intel_crtc *crtc)
3072{
3073 struct drm_device *dev = crtc->base.dev;
3074 struct drm_i915_private *dev_priv = dev->dev_private;
3075 const struct drm_display_mode *adjusted_mode;
3076
3077 if (!i915.fastboot)
3078 return;
3079
3080 /*
3081 * Update pipe size and adjust fitter if needed: the reason for this is
3082 * that in compute_mode_changes we check the native mode (not the pfit
3083 * mode) to see if we can flip rather than do a full mode set. In the
3084 * fastboot case, we'll flip, but if we don't update the pipesrc and
3085 * pfit state, we'll end up with a big fb scanned out into the wrong
3086 * sized surface.
3087 *
3088 * To fix this properly, we need to hoist the checks up into
3089 * compute_mode_changes (or above), check the actual pfit state and
3090 * whether the platform allows pfit disable with pipe active, and only
3091 * then update the pipesrc and pfit state, even on the flip path.
3092 */
3093
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003094 adjusted_mode = &crtc->config->base.adjusted_mode;
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003095
3096 I915_WRITE(PIPESRC(crtc->pipe),
3097 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
3098 (adjusted_mode->crtc_vdisplay - 1));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003099 if (!crtc->config->pch_pfit.enabled &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03003100 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
3101 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003102 I915_WRITE(PF_CTL(crtc->pipe), 0);
3103 I915_WRITE(PF_WIN_POS(crtc->pipe), 0);
3104 I915_WRITE(PF_WIN_SZ(crtc->pipe), 0);
3105 }
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003106 crtc->config->pipe_src_w = adjusted_mode->crtc_hdisplay;
3107 crtc->config->pipe_src_h = adjusted_mode->crtc_vdisplay;
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003108}
3109
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003110static void intel_fdi_normal_train(struct drm_crtc *crtc)
3111{
3112 struct drm_device *dev = crtc->dev;
3113 struct drm_i915_private *dev_priv = dev->dev_private;
3114 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3115 int pipe = intel_crtc->pipe;
3116 u32 reg, temp;
3117
3118 /* enable normal train */
3119 reg = FDI_TX_CTL(pipe);
3120 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07003121 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07003122 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3123 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07003124 } else {
3125 temp &= ~FDI_LINK_TRAIN_NONE;
3126 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07003127 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003128 I915_WRITE(reg, temp);
3129
3130 reg = FDI_RX_CTL(pipe);
3131 temp = I915_READ(reg);
3132 if (HAS_PCH_CPT(dev)) {
3133 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3134 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3135 } else {
3136 temp &= ~FDI_LINK_TRAIN_NONE;
3137 temp |= FDI_LINK_TRAIN_NONE;
3138 }
3139 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3140
3141 /* wait one idle pattern time */
3142 POSTING_READ(reg);
3143 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07003144
3145 /* IVB wants error correction enabled */
3146 if (IS_IVYBRIDGE(dev))
3147 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3148 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003149}
3150
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003151static bool pipe_has_enabled_pch(struct intel_crtc *crtc)
Daniel Vetter1e833f42013-02-19 22:31:57 +01003152{
Matt Roper83d65732015-02-25 13:12:16 -08003153 return crtc->base.state->enable && crtc->active &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003154 crtc->config->has_pch_encoder;
Daniel Vetter1e833f42013-02-19 22:31:57 +01003155}
3156
Daniel Vetter01a415f2012-10-27 15:58:40 +02003157static void ivb_modeset_global_resources(struct drm_device *dev)
3158{
3159 struct drm_i915_private *dev_priv = dev->dev_private;
3160 struct intel_crtc *pipe_B_crtc =
3161 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
3162 struct intel_crtc *pipe_C_crtc =
3163 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
3164 uint32_t temp;
3165
Daniel Vetter1e833f42013-02-19 22:31:57 +01003166 /*
3167 * When everything is off disable fdi C so that we could enable fdi B
3168 * with all lanes. Note that we don't care about enabled pipes without
3169 * an enabled pch encoder.
3170 */
3171 if (!pipe_has_enabled_pch(pipe_B_crtc) &&
3172 !pipe_has_enabled_pch(pipe_C_crtc)) {
Daniel Vetter01a415f2012-10-27 15:58:40 +02003173 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3174 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3175
3176 temp = I915_READ(SOUTH_CHICKEN1);
3177 temp &= ~FDI_BC_BIFURCATION_SELECT;
3178 DRM_DEBUG_KMS("disabling fdi C rx\n");
3179 I915_WRITE(SOUTH_CHICKEN1, temp);
3180 }
3181}
3182
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003183/* The FDI link training functions for ILK/Ibexpeak. */
3184static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3185{
3186 struct drm_device *dev = crtc->dev;
3187 struct drm_i915_private *dev_priv = dev->dev_private;
3188 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3189 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003190 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003191
Ville Syrjälä1c8562f2014-04-25 22:12:07 +03003192 /* FDI needs bits from pipe first */
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003193 assert_pipe_enabled(dev_priv, pipe);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003194
Adam Jacksone1a44742010-06-25 15:32:14 -04003195 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3196 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003197 reg = FDI_RX_IMR(pipe);
3198 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003199 temp &= ~FDI_RX_SYMBOL_LOCK;
3200 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003201 I915_WRITE(reg, temp);
3202 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003203 udelay(150);
3204
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003205 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003206 reg = FDI_TX_CTL(pipe);
3207 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003208 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003209 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003210 temp &= ~FDI_LINK_TRAIN_NONE;
3211 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003212 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003213
Chris Wilson5eddb702010-09-11 13:48:45 +01003214 reg = FDI_RX_CTL(pipe);
3215 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003216 temp &= ~FDI_LINK_TRAIN_NONE;
3217 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003218 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3219
3220 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003221 udelay(150);
3222
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003223 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01003224 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3225 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3226 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003227
Chris Wilson5eddb702010-09-11 13:48:45 +01003228 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003229 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003230 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003231 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3232
3233 if ((temp & FDI_RX_BIT_LOCK)) {
3234 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01003235 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003236 break;
3237 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003238 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003239 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003240 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003241
3242 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003243 reg = FDI_TX_CTL(pipe);
3244 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003245 temp &= ~FDI_LINK_TRAIN_NONE;
3246 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003247 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003248
Chris Wilson5eddb702010-09-11 13:48:45 +01003249 reg = FDI_RX_CTL(pipe);
3250 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003251 temp &= ~FDI_LINK_TRAIN_NONE;
3252 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003253 I915_WRITE(reg, temp);
3254
3255 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003256 udelay(150);
3257
Chris Wilson5eddb702010-09-11 13:48:45 +01003258 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003259 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003260 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003261 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3262
3263 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003264 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003265 DRM_DEBUG_KMS("FDI train 2 done.\n");
3266 break;
3267 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003268 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003269 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003270 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003271
3272 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07003273
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003274}
3275
Akshay Joshi0206e352011-08-16 15:34:10 -04003276static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003277 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3278 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3279 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3280 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3281};
3282
3283/* The FDI link training functions for SNB/Cougarpoint. */
3284static void gen6_fdi_link_train(struct drm_crtc *crtc)
3285{
3286 struct drm_device *dev = crtc->dev;
3287 struct drm_i915_private *dev_priv = dev->dev_private;
3288 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3289 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05003290 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003291
Adam Jacksone1a44742010-06-25 15:32:14 -04003292 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3293 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003294 reg = FDI_RX_IMR(pipe);
3295 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003296 temp &= ~FDI_RX_SYMBOL_LOCK;
3297 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003298 I915_WRITE(reg, temp);
3299
3300 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003301 udelay(150);
3302
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003303 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003304 reg = FDI_TX_CTL(pipe);
3305 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003306 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003307 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003308 temp &= ~FDI_LINK_TRAIN_NONE;
3309 temp |= FDI_LINK_TRAIN_PATTERN_1;
3310 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3311 /* SNB-B */
3312 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01003313 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003314
Daniel Vetterd74cf322012-10-26 10:58:13 +02003315 I915_WRITE(FDI_RX_MISC(pipe),
3316 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3317
Chris Wilson5eddb702010-09-11 13:48:45 +01003318 reg = FDI_RX_CTL(pipe);
3319 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003320 if (HAS_PCH_CPT(dev)) {
3321 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3322 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3323 } else {
3324 temp &= ~FDI_LINK_TRAIN_NONE;
3325 temp |= FDI_LINK_TRAIN_PATTERN_1;
3326 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003327 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3328
3329 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003330 udelay(150);
3331
Akshay Joshi0206e352011-08-16 15:34:10 -04003332 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003333 reg = FDI_TX_CTL(pipe);
3334 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003335 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3336 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003337 I915_WRITE(reg, temp);
3338
3339 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003340 udelay(500);
3341
Sean Paulfa37d392012-03-02 12:53:39 -05003342 for (retry = 0; retry < 5; retry++) {
3343 reg = FDI_RX_IIR(pipe);
3344 temp = I915_READ(reg);
3345 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3346 if (temp & FDI_RX_BIT_LOCK) {
3347 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3348 DRM_DEBUG_KMS("FDI train 1 done.\n");
3349 break;
3350 }
3351 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003352 }
Sean Paulfa37d392012-03-02 12:53:39 -05003353 if (retry < 5)
3354 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003355 }
3356 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003357 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003358
3359 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003360 reg = FDI_TX_CTL(pipe);
3361 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003362 temp &= ~FDI_LINK_TRAIN_NONE;
3363 temp |= FDI_LINK_TRAIN_PATTERN_2;
3364 if (IS_GEN6(dev)) {
3365 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3366 /* SNB-B */
3367 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3368 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003369 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003370
Chris Wilson5eddb702010-09-11 13:48:45 +01003371 reg = FDI_RX_CTL(pipe);
3372 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003373 if (HAS_PCH_CPT(dev)) {
3374 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3375 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3376 } else {
3377 temp &= ~FDI_LINK_TRAIN_NONE;
3378 temp |= FDI_LINK_TRAIN_PATTERN_2;
3379 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003380 I915_WRITE(reg, temp);
3381
3382 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003383 udelay(150);
3384
Akshay Joshi0206e352011-08-16 15:34:10 -04003385 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003386 reg = FDI_TX_CTL(pipe);
3387 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003388 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3389 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003390 I915_WRITE(reg, temp);
3391
3392 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003393 udelay(500);
3394
Sean Paulfa37d392012-03-02 12:53:39 -05003395 for (retry = 0; retry < 5; retry++) {
3396 reg = FDI_RX_IIR(pipe);
3397 temp = I915_READ(reg);
3398 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3399 if (temp & FDI_RX_SYMBOL_LOCK) {
3400 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3401 DRM_DEBUG_KMS("FDI train 2 done.\n");
3402 break;
3403 }
3404 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003405 }
Sean Paulfa37d392012-03-02 12:53:39 -05003406 if (retry < 5)
3407 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003408 }
3409 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003410 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003411
3412 DRM_DEBUG_KMS("FDI train done.\n");
3413}
3414
Jesse Barnes357555c2011-04-28 15:09:55 -07003415/* Manual link training for Ivy Bridge A0 parts */
3416static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3417{
3418 struct drm_device *dev = crtc->dev;
3419 struct drm_i915_private *dev_priv = dev->dev_private;
3420 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3421 int pipe = intel_crtc->pipe;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003422 u32 reg, temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07003423
3424 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3425 for train result */
3426 reg = FDI_RX_IMR(pipe);
3427 temp = I915_READ(reg);
3428 temp &= ~FDI_RX_SYMBOL_LOCK;
3429 temp &= ~FDI_RX_BIT_LOCK;
3430 I915_WRITE(reg, temp);
3431
3432 POSTING_READ(reg);
3433 udelay(150);
3434
Daniel Vetter01a415f2012-10-27 15:58:40 +02003435 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3436 I915_READ(FDI_RX_IIR(pipe)));
3437
Jesse Barnes139ccd32013-08-19 11:04:55 -07003438 /* Try each vswing and preemphasis setting twice before moving on */
3439 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3440 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07003441 reg = FDI_TX_CTL(pipe);
3442 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003443 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3444 temp &= ~FDI_TX_ENABLE;
3445 I915_WRITE(reg, temp);
3446
3447 reg = FDI_RX_CTL(pipe);
3448 temp = I915_READ(reg);
3449 temp &= ~FDI_LINK_TRAIN_AUTO;
3450 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3451 temp &= ~FDI_RX_ENABLE;
3452 I915_WRITE(reg, temp);
3453
3454 /* enable CPU FDI TX and PCH FDI RX */
3455 reg = FDI_TX_CTL(pipe);
3456 temp = I915_READ(reg);
3457 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003458 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003459 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07003460 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003461 temp |= snb_b_fdi_train_param[j/2];
3462 temp |= FDI_COMPOSITE_SYNC;
3463 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3464
3465 I915_WRITE(FDI_RX_MISC(pipe),
3466 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3467
3468 reg = FDI_RX_CTL(pipe);
3469 temp = I915_READ(reg);
3470 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3471 temp |= FDI_COMPOSITE_SYNC;
3472 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3473
3474 POSTING_READ(reg);
3475 udelay(1); /* should be 0.5us */
3476
3477 for (i = 0; i < 4; i++) {
3478 reg = FDI_RX_IIR(pipe);
3479 temp = I915_READ(reg);
3480 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3481
3482 if (temp & FDI_RX_BIT_LOCK ||
3483 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3484 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3485 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3486 i);
3487 break;
3488 }
3489 udelay(1); /* should be 0.5us */
3490 }
3491 if (i == 4) {
3492 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3493 continue;
3494 }
3495
3496 /* Train 2 */
3497 reg = FDI_TX_CTL(pipe);
3498 temp = I915_READ(reg);
3499 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3500 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3501 I915_WRITE(reg, temp);
3502
3503 reg = FDI_RX_CTL(pipe);
3504 temp = I915_READ(reg);
3505 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3506 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07003507 I915_WRITE(reg, temp);
3508
3509 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003510 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003511
Jesse Barnes139ccd32013-08-19 11:04:55 -07003512 for (i = 0; i < 4; i++) {
3513 reg = FDI_RX_IIR(pipe);
3514 temp = I915_READ(reg);
3515 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07003516
Jesse Barnes139ccd32013-08-19 11:04:55 -07003517 if (temp & FDI_RX_SYMBOL_LOCK ||
3518 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3519 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3520 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3521 i);
3522 goto train_done;
3523 }
3524 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003525 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07003526 if (i == 4)
3527 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07003528 }
Jesse Barnes357555c2011-04-28 15:09:55 -07003529
Jesse Barnes139ccd32013-08-19 11:04:55 -07003530train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07003531 DRM_DEBUG_KMS("FDI train done.\n");
3532}
3533
Daniel Vetter88cefb62012-08-12 19:27:14 +02003534static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07003535{
Daniel Vetter88cefb62012-08-12 19:27:14 +02003536 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003537 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003538 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003539 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003540
Jesse Barnesc64e3112010-09-10 11:27:03 -07003541
Jesse Barnes0e23b992010-09-10 11:10:00 -07003542 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01003543 reg = FDI_RX_CTL(pipe);
3544 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003545 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003546 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003547 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01003548 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3549
3550 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003551 udelay(200);
3552
3553 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003554 temp = I915_READ(reg);
3555 I915_WRITE(reg, temp | FDI_PCDCLK);
3556
3557 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003558 udelay(200);
3559
Paulo Zanoni20749732012-11-23 15:30:38 -02003560 /* Enable CPU FDI TX PLL, always on for Ironlake */
3561 reg = FDI_TX_CTL(pipe);
3562 temp = I915_READ(reg);
3563 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3564 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01003565
Paulo Zanoni20749732012-11-23 15:30:38 -02003566 POSTING_READ(reg);
3567 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003568 }
3569}
3570
Daniel Vetter88cefb62012-08-12 19:27:14 +02003571static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3572{
3573 struct drm_device *dev = intel_crtc->base.dev;
3574 struct drm_i915_private *dev_priv = dev->dev_private;
3575 int pipe = intel_crtc->pipe;
3576 u32 reg, temp;
3577
3578 /* Switch from PCDclk to Rawclk */
3579 reg = FDI_RX_CTL(pipe);
3580 temp = I915_READ(reg);
3581 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3582
3583 /* Disable CPU FDI TX PLL */
3584 reg = FDI_TX_CTL(pipe);
3585 temp = I915_READ(reg);
3586 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3587
3588 POSTING_READ(reg);
3589 udelay(100);
3590
3591 reg = FDI_RX_CTL(pipe);
3592 temp = I915_READ(reg);
3593 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3594
3595 /* Wait for the clocks to turn off. */
3596 POSTING_READ(reg);
3597 udelay(100);
3598}
3599
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003600static void ironlake_fdi_disable(struct drm_crtc *crtc)
3601{
3602 struct drm_device *dev = crtc->dev;
3603 struct drm_i915_private *dev_priv = dev->dev_private;
3604 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3605 int pipe = intel_crtc->pipe;
3606 u32 reg, temp;
3607
3608 /* disable CPU FDI tx and PCH FDI rx */
3609 reg = FDI_TX_CTL(pipe);
3610 temp = I915_READ(reg);
3611 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3612 POSTING_READ(reg);
3613
3614 reg = FDI_RX_CTL(pipe);
3615 temp = I915_READ(reg);
3616 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003617 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003618 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3619
3620 POSTING_READ(reg);
3621 udelay(100);
3622
3623 /* Ironlake workaround, disable clock pointer after downing FDI */
Robin Schroereba905b2014-05-18 02:24:50 +02003624 if (HAS_PCH_IBX(dev))
Jesse Barnes6f06ce12011-01-04 15:09:38 -08003625 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003626
3627 /* still set train pattern 1 */
3628 reg = FDI_TX_CTL(pipe);
3629 temp = I915_READ(reg);
3630 temp &= ~FDI_LINK_TRAIN_NONE;
3631 temp |= FDI_LINK_TRAIN_PATTERN_1;
3632 I915_WRITE(reg, temp);
3633
3634 reg = FDI_RX_CTL(pipe);
3635 temp = I915_READ(reg);
3636 if (HAS_PCH_CPT(dev)) {
3637 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3638 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3639 } else {
3640 temp &= ~FDI_LINK_TRAIN_NONE;
3641 temp |= FDI_LINK_TRAIN_PATTERN_1;
3642 }
3643 /* BPC in FDI rx is consistent with that in PIPECONF */
3644 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003645 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003646 I915_WRITE(reg, temp);
3647
3648 POSTING_READ(reg);
3649 udelay(100);
3650}
3651
Chris Wilson5dce5b932014-01-20 10:17:36 +00003652bool intel_has_pending_fb_unpin(struct drm_device *dev)
3653{
3654 struct intel_crtc *crtc;
3655
3656 /* Note that we don't need to be called with mode_config.lock here
3657 * as our list of CRTC objects is static for the lifetime of the
3658 * device and so cannot disappear as we iterate. Similarly, we can
3659 * happily treat the predicates as racy, atomic checks as userspace
3660 * cannot claim and pin a new fb without at least acquring the
3661 * struct_mutex and so serialising with us.
3662 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003663 for_each_intel_crtc(dev, crtc) {
Chris Wilson5dce5b932014-01-20 10:17:36 +00003664 if (atomic_read(&crtc->unpin_work_count) == 0)
3665 continue;
3666
3667 if (crtc->unpin_work)
3668 intel_wait_for_vblank(dev, crtc->pipe);
3669
3670 return true;
3671 }
3672
3673 return false;
3674}
3675
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003676static void page_flip_completed(struct intel_crtc *intel_crtc)
3677{
3678 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
3679 struct intel_unpin_work *work = intel_crtc->unpin_work;
3680
3681 /* ensure that the unpin work is consistent wrt ->pending. */
3682 smp_rmb();
3683 intel_crtc->unpin_work = NULL;
3684
3685 if (work->event)
3686 drm_send_vblank_event(intel_crtc->base.dev,
3687 intel_crtc->pipe,
3688 work->event);
3689
3690 drm_crtc_vblank_put(&intel_crtc->base);
3691
3692 wake_up_all(&dev_priv->pending_flip_queue);
3693 queue_work(dev_priv->wq, &work->work);
3694
3695 trace_i915_flip_complete(intel_crtc->plane,
3696 work->pending_flip_obj);
3697}
3698
Ville Syrjälä46a55d32014-05-21 14:04:46 +03003699void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003700{
Chris Wilson0f911282012-04-17 10:05:38 +01003701 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01003702 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003703
Daniel Vetter2c10d572012-12-20 21:24:07 +01003704 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
Chris Wilson9c787942014-09-05 07:13:25 +01003705 if (WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3706 !intel_crtc_has_pending_flip(crtc),
3707 60*HZ) == 0)) {
3708 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter2c10d572012-12-20 21:24:07 +01003709
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003710 spin_lock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003711 if (intel_crtc->unpin_work) {
3712 WARN_ONCE(1, "Removing stuck page flip\n");
3713 page_flip_completed(intel_crtc);
3714 }
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003715 spin_unlock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003716 }
Chris Wilson5bb61642012-09-27 21:25:58 +01003717
Chris Wilson975d5682014-08-20 13:13:34 +01003718 if (crtc->primary->fb) {
3719 mutex_lock(&dev->struct_mutex);
3720 intel_finish_fb(crtc->primary->fb);
3721 mutex_unlock(&dev->struct_mutex);
3722 }
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003723}
3724
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003725/* Program iCLKIP clock to the desired frequency */
3726static void lpt_program_iclkip(struct drm_crtc *crtc)
3727{
3728 struct drm_device *dev = crtc->dev;
3729 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003730 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003731 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3732 u32 temp;
3733
Daniel Vetter09153002012-12-12 14:06:44 +01003734 mutex_lock(&dev_priv->dpio_lock);
3735
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003736 /* It is necessary to ungate the pixclk gate prior to programming
3737 * the divisors, and gate it back when it is done.
3738 */
3739 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3740
3741 /* Disable SSCCTL */
3742 intel_sbi_write(dev_priv, SBI_SSCCTL6,
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003743 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
3744 SBI_SSCCTL_DISABLE,
3745 SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003746
3747 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003748 if (clock == 20000) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003749 auxdiv = 1;
3750 divsel = 0x41;
3751 phaseinc = 0x20;
3752 } else {
3753 /* The iCLK virtual clock root frequency is in MHz,
Damien Lespiau241bfc32013-09-25 16:45:37 +01003754 * but the adjusted_mode->crtc_clock in in KHz. To get the
3755 * divisors, it is necessary to divide one by another, so we
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003756 * convert the virtual clock precision to KHz here for higher
3757 * precision.
3758 */
3759 u32 iclk_virtual_root_freq = 172800 * 1000;
3760 u32 iclk_pi_range = 64;
3761 u32 desired_divisor, msb_divisor_value, pi_value;
3762
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003763 desired_divisor = (iclk_virtual_root_freq / clock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003764 msb_divisor_value = desired_divisor / iclk_pi_range;
3765 pi_value = desired_divisor % iclk_pi_range;
3766
3767 auxdiv = 0;
3768 divsel = msb_divisor_value - 2;
3769 phaseinc = pi_value;
3770 }
3771
3772 /* This should not happen with any sane values */
3773 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3774 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3775 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3776 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3777
3778 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 +03003779 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003780 auxdiv,
3781 divsel,
3782 phasedir,
3783 phaseinc);
3784
3785 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003786 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003787 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3788 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3789 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3790 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3791 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3792 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003793 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003794
3795 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003796 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003797 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3798 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003799 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003800
3801 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003802 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003803 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003804 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003805
3806 /* Wait for initialization time */
3807 udelay(24);
3808
3809 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
Daniel Vetter09153002012-12-12 14:06:44 +01003810
3811 mutex_unlock(&dev_priv->dpio_lock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003812}
3813
Daniel Vetter275f01b22013-05-03 11:49:47 +02003814static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3815 enum pipe pch_transcoder)
3816{
3817 struct drm_device *dev = crtc->base.dev;
3818 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003819 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Daniel Vetter275f01b22013-05-03 11:49:47 +02003820
3821 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
3822 I915_READ(HTOTAL(cpu_transcoder)));
3823 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
3824 I915_READ(HBLANK(cpu_transcoder)));
3825 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
3826 I915_READ(HSYNC(cpu_transcoder)));
3827
3828 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
3829 I915_READ(VTOTAL(cpu_transcoder)));
3830 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
3831 I915_READ(VBLANK(cpu_transcoder)));
3832 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
3833 I915_READ(VSYNC(cpu_transcoder)));
3834 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
3835 I915_READ(VSYNCSHIFT(cpu_transcoder)));
3836}
3837
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003838static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
3839{
3840 struct drm_i915_private *dev_priv = dev->dev_private;
3841 uint32_t temp;
3842
3843 temp = I915_READ(SOUTH_CHICKEN1);
3844 if (temp & FDI_BC_BIFURCATION_SELECT)
3845 return;
3846
3847 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3848 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3849
3850 temp |= FDI_BC_BIFURCATION_SELECT;
3851 DRM_DEBUG_KMS("enabling fdi C rx\n");
3852 I915_WRITE(SOUTH_CHICKEN1, temp);
3853 POSTING_READ(SOUTH_CHICKEN1);
3854}
3855
3856static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
3857{
3858 struct drm_device *dev = intel_crtc->base.dev;
3859 struct drm_i915_private *dev_priv = dev->dev_private;
3860
3861 switch (intel_crtc->pipe) {
3862 case PIPE_A:
3863 break;
3864 case PIPE_B:
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003865 if (intel_crtc->config->fdi_lanes > 2)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003866 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
3867 else
3868 cpt_enable_fdi_bc_bifurcation(dev);
3869
3870 break;
3871 case PIPE_C:
3872 cpt_enable_fdi_bc_bifurcation(dev);
3873
3874 break;
3875 default:
3876 BUG();
3877 }
3878}
3879
Jesse Barnesf67a5592011-01-05 10:31:48 -08003880/*
3881 * Enable PCH resources required for PCH ports:
3882 * - PCH PLLs
3883 * - FDI training & RX/TX
3884 * - update transcoder timings
3885 * - DP transcoding bits
3886 * - transcoder
3887 */
3888static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003889{
3890 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003891 struct drm_i915_private *dev_priv = dev->dev_private;
3892 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3893 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003894 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003895
Daniel Vetterab9412b2013-05-03 11:49:46 +02003896 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01003897
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003898 if (IS_IVYBRIDGE(dev))
3899 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
3900
Daniel Vettercd986ab2012-10-26 10:58:12 +02003901 /* Write the TU size bits before fdi link training, so that error
3902 * detection works. */
3903 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3904 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3905
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003906 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07003907 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003908
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003909 /* We need to program the right clock selection before writing the pixel
3910 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003911 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003912 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07003913
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003914 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02003915 temp |= TRANS_DPLL_ENABLE(pipe);
3916 sel = TRANS_DPLLB_SEL(pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003917 if (intel_crtc->config->shared_dpll == DPLL_ID_PCH_PLL_B)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003918 temp |= sel;
3919 else
3920 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003921 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003922 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003923
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003924 /* XXX: pch pll's can be enabled any time before we enable the PCH
3925 * transcoder, and we actually should do this to not upset any PCH
3926 * transcoder that already use the clock when we share it.
3927 *
3928 * Note that enable_shared_dpll tries to do the right thing, but
3929 * get_shared_dpll unconditionally resets the pll - we need that to have
3930 * the right LVDS enable sequence. */
Daniel Vetter85b38942014-04-24 23:55:14 +02003931 intel_enable_shared_dpll(intel_crtc);
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003932
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08003933 /* set transcoder timing, panel must allow it */
3934 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02003935 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003936
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003937 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003938
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003939 /* For PCH DP, enable TRANS_DP_CTL */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003940 if (HAS_PCH_CPT(dev) && intel_crtc->config->has_dp_encoder) {
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003941 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01003942 reg = TRANS_DP_CTL(pipe);
3943 temp = I915_READ(reg);
3944 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08003945 TRANS_DP_SYNC_MASK |
3946 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01003947 temp |= (TRANS_DP_OUTPUT_ENABLE |
3948 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003949 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003950
3951 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003952 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003953 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003954 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003955
3956 switch (intel_trans_dp_port_sel(crtc)) {
3957 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01003958 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003959 break;
3960 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01003961 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003962 break;
3963 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01003964 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003965 break;
3966 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02003967 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003968 }
3969
Chris Wilson5eddb702010-09-11 13:48:45 +01003970 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003971 }
3972
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003973 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003974}
3975
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003976static void lpt_pch_enable(struct drm_crtc *crtc)
3977{
3978 struct drm_device *dev = crtc->dev;
3979 struct drm_i915_private *dev_priv = dev->dev_private;
3980 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003981 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003982
Daniel Vetterab9412b2013-05-03 11:49:46 +02003983 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003984
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02003985 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003986
Paulo Zanoni0540e482012-10-31 18:12:40 -02003987 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02003988 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003989
Paulo Zanoni937bb612012-10-31 18:12:47 -02003990 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003991}
3992
Daniel Vetter716c2e52014-06-25 22:02:02 +03003993void intel_put_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003994{
Daniel Vettere2b78262013-06-07 23:10:03 +02003995 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003996
3997 if (pll == NULL)
3998 return;
3999
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02004000 if (!(pll->config.crtc_mask & (1 << crtc->pipe))) {
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +02004001 WARN(1, "bad %s crtc mask\n", pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004002 return;
4003 }
4004
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02004005 pll->config.crtc_mask &= ~(1 << crtc->pipe);
4006 if (pll->config.crtc_mask == 0) {
Daniel Vetterf4a091c2013-06-10 17:28:22 +02004007 WARN_ON(pll->on);
4008 WARN_ON(pll->active);
4009 }
4010
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004011 crtc->config->shared_dpll = DPLL_ID_PRIVATE;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004012}
4013
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004014struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc,
4015 struct intel_crtc_state *crtc_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004016{
Daniel Vettere2b78262013-06-07 23:10:03 +02004017 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004018 struct intel_shared_dpll *pll;
Daniel Vettere2b78262013-06-07 23:10:03 +02004019 enum intel_dpll_id i;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004020
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004021 if (HAS_PCH_IBX(dev_priv->dev)) {
4022 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
Daniel Vetterd94ab062013-07-04 12:01:16 +02004023 i = (enum intel_dpll_id) crtc->pipe;
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004024 pll = &dev_priv->shared_dplls[i];
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004025
Daniel Vetter46edb022013-06-05 13:34:12 +02004026 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
4027 crtc->base.base.id, pll->name);
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004028
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004029 WARN_ON(pll->new_config->crtc_mask);
Daniel Vetterf2a69f42014-05-20 15:19:19 +02004030
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004031 goto found;
4032 }
4033
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004034 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4035 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004036
4037 /* Only want to check enabled timings first */
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004038 if (pll->new_config->crtc_mask == 0)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004039 continue;
4040
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004041 if (memcmp(&crtc_state->dpll_hw_state,
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004042 &pll->new_config->hw_state,
4043 sizeof(pll->new_config->hw_state)) == 0) {
4044 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (crtc mask 0x%08x, ative %d)\n",
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +02004045 crtc->base.base.id, pll->name,
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004046 pll->new_config->crtc_mask,
4047 pll->active);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004048 goto found;
4049 }
4050 }
4051
4052 /* Ok no matching timings, maybe there's a free one? */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004053 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4054 pll = &dev_priv->shared_dplls[i];
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004055 if (pll->new_config->crtc_mask == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02004056 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
4057 crtc->base.base.id, pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004058 goto found;
4059 }
4060 }
4061
4062 return NULL;
4063
4064found:
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004065 if (pll->new_config->crtc_mask == 0)
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004066 pll->new_config->hw_state = crtc_state->dpll_hw_state;
Daniel Vetterf2a69f42014-05-20 15:19:19 +02004067
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004068 crtc_state->shared_dpll = i;
Daniel Vetter46edb022013-06-05 13:34:12 +02004069 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
4070 pipe_name(crtc->pipe));
Daniel Vetter66e985c2013-06-05 13:34:20 +02004071
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004072 pll->new_config->crtc_mask |= 1 << crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004073
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004074 return pll;
4075}
4076
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004077/**
4078 * intel_shared_dpll_start_config - start a new PLL staged config
4079 * @dev_priv: DRM device
4080 * @clear_pipes: mask of pipes that will have their PLLs freed
4081 *
4082 * Starts a new PLL staged config, copying the current config but
4083 * releasing the references of pipes specified in clear_pipes.
4084 */
4085static int intel_shared_dpll_start_config(struct drm_i915_private *dev_priv,
4086 unsigned clear_pipes)
4087{
4088 struct intel_shared_dpll *pll;
4089 enum intel_dpll_id i;
4090
4091 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4092 pll = &dev_priv->shared_dplls[i];
4093
4094 pll->new_config = kmemdup(&pll->config, sizeof pll->config,
4095 GFP_KERNEL);
4096 if (!pll->new_config)
4097 goto cleanup;
4098
4099 pll->new_config->crtc_mask &= ~clear_pipes;
4100 }
4101
4102 return 0;
4103
4104cleanup:
4105 while (--i >= 0) {
4106 pll = &dev_priv->shared_dplls[i];
Ander Conselvan de Oliveiraf354d732014-11-07 14:07:41 +02004107 kfree(pll->new_config);
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004108 pll->new_config = NULL;
4109 }
4110
4111 return -ENOMEM;
4112}
4113
4114static void intel_shared_dpll_commit(struct drm_i915_private *dev_priv)
4115{
4116 struct intel_shared_dpll *pll;
4117 enum intel_dpll_id i;
4118
4119 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4120 pll = &dev_priv->shared_dplls[i];
4121
4122 WARN_ON(pll->new_config == &pll->config);
4123
4124 pll->config = *pll->new_config;
4125 kfree(pll->new_config);
4126 pll->new_config = NULL;
4127 }
4128}
4129
4130static void intel_shared_dpll_abort_config(struct drm_i915_private *dev_priv)
4131{
4132 struct intel_shared_dpll *pll;
4133 enum intel_dpll_id i;
4134
4135 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4136 pll = &dev_priv->shared_dplls[i];
4137
4138 WARN_ON(pll->new_config == &pll->config);
4139
4140 kfree(pll->new_config);
4141 pll->new_config = NULL;
4142 }
4143}
4144
Daniel Vettera1520312013-05-03 11:49:50 +02004145static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07004146{
4147 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01004148 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07004149 u32 temp;
4150
4151 temp = I915_READ(dslreg);
4152 udelay(500);
4153 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07004154 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03004155 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07004156 }
4157}
4158
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004159static void skylake_pfit_enable(struct intel_crtc *crtc)
4160{
4161 struct drm_device *dev = crtc->base.dev;
4162 struct drm_i915_private *dev_priv = dev->dev_private;
4163 int pipe = crtc->pipe;
4164
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004165 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004166 I915_WRITE(PS_CTL(pipe), PS_ENABLE);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004167 I915_WRITE(PS_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4168 I915_WRITE(PS_WIN_SZ(pipe), crtc->config->pch_pfit.size);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004169 }
4170}
4171
Jesse Barnesb074cec2013-04-25 12:55:02 -07004172static void ironlake_pfit_enable(struct intel_crtc *crtc)
4173{
4174 struct drm_device *dev = crtc->base.dev;
4175 struct drm_i915_private *dev_priv = dev->dev_private;
4176 int pipe = crtc->pipe;
4177
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004178 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07004179 /* Force use of hard-coded filter coefficients
4180 * as some pre-programmed values are broken,
4181 * e.g. x201.
4182 */
4183 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
4184 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4185 PF_PIPE_SEL_IVB(pipe));
4186 else
4187 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004188 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4189 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08004190 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004191}
4192
Matt Roper4a3b8762014-12-23 10:41:51 -08004193static void intel_enable_sprite_planes(struct drm_crtc *crtc)
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004194{
4195 struct drm_device *dev = crtc->dev;
4196 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07004197 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004198 struct intel_plane *intel_plane;
4199
Matt Roperaf2b6532014-04-01 15:22:32 -07004200 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
4201 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004202 if (intel_plane->pipe == pipe)
4203 intel_plane_restore(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07004204 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004205}
4206
Matt Roper0d703d42015-03-04 10:49:04 -08004207/*
4208 * Disable a plane internally without actually modifying the plane's state.
4209 * This will allow us to easily restore the plane later by just reprogramming
4210 * its state.
4211 */
4212static void disable_plane_internal(struct drm_plane *plane)
4213{
4214 struct intel_plane *intel_plane = to_intel_plane(plane);
4215 struct drm_plane_state *state =
4216 plane->funcs->atomic_duplicate_state(plane);
4217 struct intel_plane_state *intel_state = to_intel_plane_state(state);
4218
4219 intel_state->visible = false;
4220 intel_plane->commit_plane(plane, intel_state);
4221
4222 intel_plane_destroy_state(plane, state);
4223}
4224
Matt Roper4a3b8762014-12-23 10:41:51 -08004225static void intel_disable_sprite_planes(struct drm_crtc *crtc)
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004226{
4227 struct drm_device *dev = crtc->dev;
4228 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07004229 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004230 struct intel_plane *intel_plane;
4231
Matt Roperaf2b6532014-04-01 15:22:32 -07004232 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
4233 intel_plane = to_intel_plane(plane);
Matt Roper0d703d42015-03-04 10:49:04 -08004234 if (plane->fb && intel_plane->pipe == pipe)
4235 disable_plane_internal(plane);
Matt Roperaf2b6532014-04-01 15:22:32 -07004236 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004237}
4238
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004239void hsw_enable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004240{
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004241 struct drm_device *dev = crtc->base.dev;
4242 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid77e4532013-09-24 13:52:55 -03004243
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004244 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004245 return;
4246
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004247 /* We can only enable IPS after we enable a plane and wait for a vblank */
4248 intel_wait_for_vblank(dev, crtc->pipe);
4249
Paulo Zanonid77e4532013-09-24 13:52:55 -03004250 assert_plane_enabled(dev_priv, crtc->plane);
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004251 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004252 mutex_lock(&dev_priv->rps.hw_lock);
4253 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4254 mutex_unlock(&dev_priv->rps.hw_lock);
4255 /* Quoting Art Runyan: "its not safe to expect any particular
4256 * value in IPS_CTL bit 31 after enabling IPS through the
Jesse Barnese59150d2014-01-07 13:30:45 -08004257 * mailbox." Moreover, the mailbox may return a bogus state,
4258 * so we need to just enable it and continue on.
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004259 */
4260 } else {
4261 I915_WRITE(IPS_CTL, IPS_ENABLE);
4262 /* The bit only becomes 1 in the next vblank, so this wait here
4263 * is essentially intel_wait_for_vblank. If we don't have this
4264 * and don't wait for vblanks until the end of crtc_enable, then
4265 * the HW state readout code will complain that the expected
4266 * IPS_CTL value is not the one we read. */
4267 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
4268 DRM_ERROR("Timed out waiting for IPS enable\n");
4269 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004270}
4271
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004272void hsw_disable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004273{
4274 struct drm_device *dev = crtc->base.dev;
4275 struct drm_i915_private *dev_priv = dev->dev_private;
4276
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004277 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004278 return;
4279
4280 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004281 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004282 mutex_lock(&dev_priv->rps.hw_lock);
4283 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4284 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004285 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
4286 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
4287 DRM_ERROR("Timed out waiting for IPS disable\n");
Jesse Barnese59150d2014-01-07 13:30:45 -08004288 } else {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004289 I915_WRITE(IPS_CTL, 0);
Jesse Barnese59150d2014-01-07 13:30:45 -08004290 POSTING_READ(IPS_CTL);
4291 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004292
4293 /* We need to wait for a vblank before we can disable the plane. */
4294 intel_wait_for_vblank(dev, crtc->pipe);
4295}
4296
4297/** Loads the palette/gamma unit for the CRTC with the prepared values */
4298static void intel_crtc_load_lut(struct drm_crtc *crtc)
4299{
4300 struct drm_device *dev = crtc->dev;
4301 struct drm_i915_private *dev_priv = dev->dev_private;
4302 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4303 enum pipe pipe = intel_crtc->pipe;
4304 int palreg = PALETTE(pipe);
4305 int i;
4306 bool reenable_ips = false;
4307
4308 /* The clocks have to be on to load the palette. */
Matt Roper83d65732015-02-25 13:12:16 -08004309 if (!crtc->state->enable || !intel_crtc->active)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004310 return;
4311
4312 if (!HAS_PCH_SPLIT(dev_priv->dev)) {
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03004313 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI))
Paulo Zanonid77e4532013-09-24 13:52:55 -03004314 assert_dsi_pll_enabled(dev_priv);
4315 else
4316 assert_pll_enabled(dev_priv, pipe);
4317 }
4318
4319 /* use legacy palette for Ironlake */
Sonika Jindal7a1db492014-07-22 11:18:27 +05304320 if (!HAS_GMCH_DISPLAY(dev))
Paulo Zanonid77e4532013-09-24 13:52:55 -03004321 palreg = LGC_PALETTE(pipe);
4322
4323 /* Workaround : Do not read or write the pipe palette/gamma data while
4324 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
4325 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004326 if (IS_HASWELL(dev) && intel_crtc->config->ips_enabled &&
Paulo Zanonid77e4532013-09-24 13:52:55 -03004327 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
4328 GAMMA_MODE_MODE_SPLIT)) {
4329 hsw_disable_ips(intel_crtc);
4330 reenable_ips = true;
4331 }
4332
4333 for (i = 0; i < 256; i++) {
4334 I915_WRITE(palreg + 4 * i,
4335 (intel_crtc->lut_r[i] << 16) |
4336 (intel_crtc->lut_g[i] << 8) |
4337 intel_crtc->lut_b[i]);
4338 }
4339
4340 if (reenable_ips)
4341 hsw_enable_ips(intel_crtc);
4342}
4343
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004344static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
4345{
4346 if (!enable && intel_crtc->overlay) {
4347 struct drm_device *dev = intel_crtc->base.dev;
4348 struct drm_i915_private *dev_priv = dev->dev_private;
4349
4350 mutex_lock(&dev->struct_mutex);
4351 dev_priv->mm.interruptible = false;
4352 (void) intel_overlay_switch_off(intel_crtc->overlay);
4353 dev_priv->mm.interruptible = true;
4354 mutex_unlock(&dev->struct_mutex);
4355 }
4356
4357 /* Let userspace switch the overlay on again. In most cases userspace
4358 * has to recompute where to put it anyway.
4359 */
4360}
4361
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004362static void intel_crtc_enable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004363{
4364 struct drm_device *dev = crtc->dev;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004365 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4366 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004367
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03004368 intel_enable_primary_hw_plane(crtc->primary, crtc);
Matt Roper4a3b8762014-12-23 10:41:51 -08004369 intel_enable_sprite_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004370 intel_crtc_update_cursor(crtc, true);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004371 intel_crtc_dpms_overlay(intel_crtc, true);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004372
4373 hsw_enable_ips(intel_crtc);
4374
4375 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004376 intel_fbc_update(dev);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004377 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf99d7062014-06-19 16:01:59 +02004378
4379 /*
4380 * FIXME: Once we grow proper nuclear flip support out of this we need
4381 * to compute the mask of flip planes precisely. For the time being
4382 * consider this a flip from a NULL plane.
4383 */
4384 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004385}
4386
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004387static void intel_crtc_disable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004388{
4389 struct drm_device *dev = crtc->dev;
4390 struct drm_i915_private *dev_priv = dev->dev_private;
4391 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4392 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004393
4394 intel_crtc_wait_for_pending_flips(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004395
Paulo Zanonie35fef22015-02-09 14:46:29 -02004396 if (dev_priv->fbc.crtc == intel_crtc)
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004397 intel_fbc_disable(dev);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004398
4399 hsw_disable_ips(intel_crtc);
4400
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004401 intel_crtc_dpms_overlay(intel_crtc, false);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004402 intel_crtc_update_cursor(crtc, false);
Matt Roper4a3b8762014-12-23 10:41:51 -08004403 intel_disable_sprite_planes(crtc);
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03004404 intel_disable_primary_hw_plane(crtc->primary, crtc);
Ville Syrjäläf98551a2014-05-22 17:48:06 +03004405
Daniel Vetterf99d7062014-06-19 16:01:59 +02004406 /*
4407 * FIXME: Once we grow proper nuclear flip support out of this we need
4408 * to compute the mask of flip planes precisely. For the time being
4409 * consider this a flip to a NULL plane.
4410 */
4411 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004412}
4413
Jesse Barnesf67a5592011-01-05 10:31:48 -08004414static void ironlake_crtc_enable(struct drm_crtc *crtc)
4415{
4416 struct drm_device *dev = crtc->dev;
4417 struct drm_i915_private *dev_priv = dev->dev_private;
4418 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004419 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004420 int pipe = intel_crtc->pipe;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004421
Matt Roper83d65732015-02-25 13:12:16 -08004422 WARN_ON(!crtc->state->enable);
Daniel Vetter08a48462012-07-02 11:43:47 +02004423
Jesse Barnesf67a5592011-01-05 10:31:48 -08004424 if (intel_crtc->active)
4425 return;
4426
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004427 if (intel_crtc->config->has_pch_encoder)
Daniel Vetterb14b1052014-04-24 23:55:13 +02004428 intel_prepare_shared_dpll(intel_crtc);
4429
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004430 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05304431 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004432
4433 intel_set_pipe_timings(intel_crtc);
4434
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004435 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter29407aa2014-04-24 23:55:08 +02004436 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004437 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004438 }
4439
4440 ironlake_set_pipeconf(crtc);
4441
Jesse Barnesf67a5592011-01-05 10:31:48 -08004442 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004443
Daniel Vettera72e4c92014-09-30 10:56:47 +02004444 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4445 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni86642812013-04-12 17:57:57 -03004446
Daniel Vetterf6736a12013-06-05 13:34:30 +02004447 for_each_encoder_on_crtc(dev, crtc, encoder)
Daniel Vetter952735e2013-06-05 13:34:27 +02004448 if (encoder->pre_enable)
4449 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004450
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004451 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02004452 /* Note: FDI PLL enabling _must_ be done before we enable the
4453 * cpu pipes, hence this is separate from all the other fdi/pch
4454 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02004455 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02004456 } else {
4457 assert_fdi_tx_disabled(dev_priv, pipe);
4458 assert_fdi_rx_disabled(dev_priv, pipe);
4459 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004460
Jesse Barnesb074cec2013-04-25 12:55:02 -07004461 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004462
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02004463 /*
4464 * On ILK+ LUT must be loaded before the pipe is running but with
4465 * clocks enabled
4466 */
4467 intel_crtc_load_lut(crtc);
4468
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004469 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004470 intel_enable_pipe(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004471
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004472 if (intel_crtc->config->has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08004473 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004474
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004475 assert_vblank_disabled(crtc);
4476 drm_crtc_vblank_on(crtc);
4477
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004478 for_each_encoder_on_crtc(dev, crtc, encoder)
4479 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02004480
4481 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02004482 cpt_verify_modeset(dev, intel_crtc->pipe);
Daniel Vetter6ce94102012-10-04 19:20:03 +02004483
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004484 intel_crtc_enable_planes(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004485}
4486
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004487/* IPS only exists on ULT machines and is tied to pipe A. */
4488static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4489{
Damien Lespiauf5adf942013-06-24 18:29:34 +01004490 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004491}
4492
Paulo Zanonie4916942013-09-20 16:21:19 -03004493/*
4494 * This implements the workaround described in the "notes" section of the mode
4495 * set sequence documentation. When going from no pipes or single pipe to
4496 * multiple pipes, and planes are enabled after the pipe, we need to wait at
4497 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
4498 */
4499static void haswell_mode_set_planes_workaround(struct intel_crtc *crtc)
4500{
4501 struct drm_device *dev = crtc->base.dev;
4502 struct intel_crtc *crtc_it, *other_active_crtc = NULL;
4503
4504 /* We want to get the other_active_crtc only if there's only 1 other
4505 * active crtc. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004506 for_each_intel_crtc(dev, crtc_it) {
Paulo Zanonie4916942013-09-20 16:21:19 -03004507 if (!crtc_it->active || crtc_it == crtc)
4508 continue;
4509
4510 if (other_active_crtc)
4511 return;
4512
4513 other_active_crtc = crtc_it;
4514 }
4515 if (!other_active_crtc)
4516 return;
4517
4518 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4519 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4520}
4521
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004522static void haswell_crtc_enable(struct drm_crtc *crtc)
4523{
4524 struct drm_device *dev = crtc->dev;
4525 struct drm_i915_private *dev_priv = dev->dev_private;
4526 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4527 struct intel_encoder *encoder;
4528 int pipe = intel_crtc->pipe;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004529
Matt Roper83d65732015-02-25 13:12:16 -08004530 WARN_ON(!crtc->state->enable);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004531
4532 if (intel_crtc->active)
4533 return;
4534
Daniel Vetterdf8ad702014-06-25 22:02:03 +03004535 if (intel_crtc_to_shared_dpll(intel_crtc))
4536 intel_enable_shared_dpll(intel_crtc);
4537
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004538 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05304539 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter229fca92014-04-24 23:55:09 +02004540
4541 intel_set_pipe_timings(intel_crtc);
4542
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004543 if (intel_crtc->config->cpu_transcoder != TRANSCODER_EDP) {
4544 I915_WRITE(PIPE_MULT(intel_crtc->config->cpu_transcoder),
4545 intel_crtc->config->pixel_multiplier - 1);
Clint Taylorebb69c92014-09-30 10:30:22 -07004546 }
4547
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004548 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter229fca92014-04-24 23:55:09 +02004549 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004550 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter229fca92014-04-24 23:55:09 +02004551 }
4552
4553 haswell_set_pipeconf(crtc);
4554
4555 intel_set_pipe_csc(crtc);
4556
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004557 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004558
Daniel Vettera72e4c92014-09-30 10:56:47 +02004559 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004560 for_each_encoder_on_crtc(dev, crtc, encoder)
4561 if (encoder->pre_enable)
4562 encoder->pre_enable(encoder);
4563
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004564 if (intel_crtc->config->has_pch_encoder) {
Daniel Vettera72e4c92014-09-30 10:56:47 +02004565 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4566 true);
Imre Deak4fe94672014-06-25 22:01:49 +03004567 dev_priv->display.fdi_link_train(crtc);
4568 }
4569
Paulo Zanoni1f544382012-10-24 11:32:00 -02004570 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004571
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004572 if (IS_SKYLAKE(dev))
4573 skylake_pfit_enable(intel_crtc);
4574 else
4575 ironlake_pfit_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004576
4577 /*
4578 * On ILK+ LUT must be loaded before the pipe is running but with
4579 * clocks enabled
4580 */
4581 intel_crtc_load_lut(crtc);
4582
Paulo Zanoni1f544382012-10-24 11:32:00 -02004583 intel_ddi_set_pipe_settings(crtc);
Damien Lespiau8228c252013-03-07 15:30:27 +00004584 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004585
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004586 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004587 intel_enable_pipe(intel_crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004588
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004589 if (intel_crtc->config->has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004590 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004591
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004592 if (intel_crtc->config->dp_encoder_is_mst)
Dave Airlie0e32b392014-05-02 14:02:48 +10004593 intel_ddi_set_vc_payload_alloc(crtc, true);
4594
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004595 assert_vblank_disabled(crtc);
4596 drm_crtc_vblank_on(crtc);
4597
Jani Nikula8807e552013-08-30 19:40:32 +03004598 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004599 encoder->enable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004600 intel_opregion_notify_encoder(encoder, true);
4601 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004602
Paulo Zanonie4916942013-09-20 16:21:19 -03004603 /* If we change the relative order between pipe/planes enabling, we need
4604 * to change the workaround. */
4605 haswell_mode_set_planes_workaround(intel_crtc);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004606 intel_crtc_enable_planes(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004607}
4608
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004609static void skylake_pfit_disable(struct intel_crtc *crtc)
4610{
4611 struct drm_device *dev = crtc->base.dev;
4612 struct drm_i915_private *dev_priv = dev->dev_private;
4613 int pipe = crtc->pipe;
4614
4615 /* To avoid upsetting the power well on haswell only disable the pfit if
4616 * it's in use. The hw state code will make sure we get this right. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004617 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004618 I915_WRITE(PS_CTL(pipe), 0);
4619 I915_WRITE(PS_WIN_POS(pipe), 0);
4620 I915_WRITE(PS_WIN_SZ(pipe), 0);
4621 }
4622}
4623
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004624static void ironlake_pfit_disable(struct intel_crtc *crtc)
4625{
4626 struct drm_device *dev = crtc->base.dev;
4627 struct drm_i915_private *dev_priv = dev->dev_private;
4628 int pipe = crtc->pipe;
4629
4630 /* To avoid upsetting the power well on haswell only disable the pfit if
4631 * it's in use. The hw state code will make sure we get this right. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004632 if (crtc->config->pch_pfit.enabled) {
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004633 I915_WRITE(PF_CTL(pipe), 0);
4634 I915_WRITE(PF_WIN_POS(pipe), 0);
4635 I915_WRITE(PF_WIN_SZ(pipe), 0);
4636 }
4637}
4638
Jesse Barnes6be4a602010-09-10 10:26:01 -07004639static void ironlake_crtc_disable(struct drm_crtc *crtc)
4640{
4641 struct drm_device *dev = crtc->dev;
4642 struct drm_i915_private *dev_priv = dev->dev_private;
4643 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004644 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004645 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01004646 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004647
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004648 if (!intel_crtc->active)
4649 return;
4650
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004651 intel_crtc_disable_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004652
Daniel Vetterea9d7582012-07-10 10:42:52 +02004653 for_each_encoder_on_crtc(dev, crtc, encoder)
4654 encoder->disable(encoder);
4655
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004656 drm_crtc_vblank_off(crtc);
4657 assert_vblank_disabled(crtc);
4658
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004659 if (intel_crtc->config->has_pch_encoder)
Daniel Vettera72e4c92014-09-30 10:56:47 +02004660 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
Daniel Vetterd925c592013-06-05 13:34:04 +02004661
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03004662 intel_disable_pipe(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004663
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004664 ironlake_pfit_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004665
Daniel Vetterbf49ec82012-09-06 22:15:40 +02004666 for_each_encoder_on_crtc(dev, crtc, encoder)
4667 if (encoder->post_disable)
4668 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004669
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004670 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterd925c592013-06-05 13:34:04 +02004671 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004672
Daniel Vetterd925c592013-06-05 13:34:04 +02004673 ironlake_disable_pch_transcoder(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004674
Daniel Vetterd925c592013-06-05 13:34:04 +02004675 if (HAS_PCH_CPT(dev)) {
4676 /* disable TRANS_DP_CTL */
4677 reg = TRANS_DP_CTL(pipe);
4678 temp = I915_READ(reg);
4679 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
4680 TRANS_DP_PORT_SEL_MASK);
4681 temp |= TRANS_DP_PORT_SEL_NONE;
4682 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004683
Daniel Vetterd925c592013-06-05 13:34:04 +02004684 /* disable DPLL_SEL */
4685 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02004686 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
Daniel Vetterd925c592013-06-05 13:34:04 +02004687 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004688 }
Daniel Vetterd925c592013-06-05 13:34:04 +02004689
4690 /* disable PCH DPLL */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004691 intel_disable_shared_dpll(intel_crtc);
Daniel Vetterd925c592013-06-05 13:34:04 +02004692
4693 ironlake_fdi_pll_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004694 }
4695
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004696 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004697 intel_update_watermarks(crtc);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004698
4699 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004700 intel_fbc_update(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004701 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004702}
4703
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004704static void haswell_crtc_disable(struct drm_crtc *crtc)
4705{
4706 struct drm_device *dev = crtc->dev;
4707 struct drm_i915_private *dev_priv = dev->dev_private;
4708 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4709 struct intel_encoder *encoder;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004710 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004711
4712 if (!intel_crtc->active)
4713 return;
4714
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004715 intel_crtc_disable_planes(crtc);
Ville Syrjälädda9a662013-09-19 17:00:37 -03004716
Jani Nikula8807e552013-08-30 19:40:32 +03004717 for_each_encoder_on_crtc(dev, crtc, encoder) {
4718 intel_opregion_notify_encoder(encoder, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004719 encoder->disable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004720 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004721
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004722 drm_crtc_vblank_off(crtc);
4723 assert_vblank_disabled(crtc);
4724
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004725 if (intel_crtc->config->has_pch_encoder)
Daniel Vettera72e4c92014-09-30 10:56:47 +02004726 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4727 false);
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03004728 intel_disable_pipe(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004729
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004730 if (intel_crtc->config->dp_encoder_is_mst)
Ville Syrjäläa4bf2142014-08-18 21:27:34 +03004731 intel_ddi_set_vc_payload_alloc(crtc, false);
4732
Paulo Zanoniad80a812012-10-24 16:06:19 -02004733 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004734
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004735 if (IS_SKYLAKE(dev))
4736 skylake_pfit_disable(intel_crtc);
4737 else
4738 ironlake_pfit_disable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004739
Paulo Zanoni1f544382012-10-24 11:32:00 -02004740 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004741
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004742 if (intel_crtc->config->has_pch_encoder) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02004743 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02004744 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02004745 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004746
Imre Deak97b040a2014-06-25 22:01:50 +03004747 for_each_encoder_on_crtc(dev, crtc, encoder)
4748 if (encoder->post_disable)
4749 encoder->post_disable(encoder);
4750
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004751 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004752 intel_update_watermarks(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004753
4754 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004755 intel_fbc_update(dev);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004756 mutex_unlock(&dev->struct_mutex);
Daniel Vetterdf8ad702014-06-25 22:02:03 +03004757
4758 if (intel_crtc_to_shared_dpll(intel_crtc))
4759 intel_disable_shared_dpll(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004760}
4761
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004762static void ironlake_crtc_off(struct drm_crtc *crtc)
4763{
4764 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004765 intel_put_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004766}
4767
Paulo Zanoni6441ab52012-10-05 12:05:58 -03004768
Jesse Barnes2dd24552013-04-25 12:55:01 -07004769static void i9xx_pfit_enable(struct intel_crtc *crtc)
4770{
4771 struct drm_device *dev = crtc->base.dev;
4772 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004773 struct intel_crtc_state *pipe_config = crtc->config;
Jesse Barnes2dd24552013-04-25 12:55:01 -07004774
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02004775 if (!pipe_config->gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07004776 return;
4777
Daniel Vetterc0b03412013-05-28 12:05:54 +02004778 /*
4779 * The panel fitter should only be adjusted whilst the pipe is disabled,
4780 * according to register description and PRM.
4781 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07004782 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
4783 assert_pipe_disabled(dev_priv, crtc->pipe);
4784
Jesse Barnesb074cec2013-04-25 12:55:02 -07004785 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
4786 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02004787
4788 /* Border color in case we don't scale up to the full screen. Black by
4789 * default, change to something else for debugging. */
4790 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07004791}
4792
Dave Airlied05410f2014-06-05 13:22:59 +10004793static enum intel_display_power_domain port_to_power_domain(enum port port)
4794{
4795 switch (port) {
4796 case PORT_A:
4797 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
4798 case PORT_B:
4799 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
4800 case PORT_C:
4801 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
4802 case PORT_D:
4803 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
4804 default:
4805 WARN_ON_ONCE(1);
4806 return POWER_DOMAIN_PORT_OTHER;
4807 }
4808}
4809
Imre Deak77d22dc2014-03-05 16:20:52 +02004810#define for_each_power_domain(domain, mask) \
4811 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
4812 if ((1 << (domain)) & (mask))
4813
Imre Deak319be8a2014-03-04 19:22:57 +02004814enum intel_display_power_domain
4815intel_display_port_power_domain(struct intel_encoder *intel_encoder)
Imre Deak77d22dc2014-03-05 16:20:52 +02004816{
Imre Deak319be8a2014-03-04 19:22:57 +02004817 struct drm_device *dev = intel_encoder->base.dev;
4818 struct intel_digital_port *intel_dig_port;
4819
4820 switch (intel_encoder->type) {
4821 case INTEL_OUTPUT_UNKNOWN:
4822 /* Only DDI platforms should ever use this output type */
4823 WARN_ON_ONCE(!HAS_DDI(dev));
4824 case INTEL_OUTPUT_DISPLAYPORT:
4825 case INTEL_OUTPUT_HDMI:
4826 case INTEL_OUTPUT_EDP:
4827 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
Dave Airlied05410f2014-06-05 13:22:59 +10004828 return port_to_power_domain(intel_dig_port->port);
Dave Airlie0e32b392014-05-02 14:02:48 +10004829 case INTEL_OUTPUT_DP_MST:
4830 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
4831 return port_to_power_domain(intel_dig_port->port);
Imre Deak319be8a2014-03-04 19:22:57 +02004832 case INTEL_OUTPUT_ANALOG:
4833 return POWER_DOMAIN_PORT_CRT;
4834 case INTEL_OUTPUT_DSI:
4835 return POWER_DOMAIN_PORT_DSI;
4836 default:
4837 return POWER_DOMAIN_PORT_OTHER;
4838 }
4839}
4840
4841static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
4842{
4843 struct drm_device *dev = crtc->dev;
4844 struct intel_encoder *intel_encoder;
4845 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4846 enum pipe pipe = intel_crtc->pipe;
Imre Deak77d22dc2014-03-05 16:20:52 +02004847 unsigned long mask;
4848 enum transcoder transcoder;
4849
4850 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
4851
4852 mask = BIT(POWER_DOMAIN_PIPE(pipe));
4853 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004854 if (intel_crtc->config->pch_pfit.enabled ||
4855 intel_crtc->config->pch_pfit.force_thru)
Imre Deak77d22dc2014-03-05 16:20:52 +02004856 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
4857
Imre Deak319be8a2014-03-04 19:22:57 +02004858 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4859 mask |= BIT(intel_display_port_power_domain(intel_encoder));
4860
Imre Deak77d22dc2014-03-05 16:20:52 +02004861 return mask;
4862}
4863
Imre Deak77d22dc2014-03-05 16:20:52 +02004864static void modeset_update_crtc_power_domains(struct drm_device *dev)
4865{
4866 struct drm_i915_private *dev_priv = dev->dev_private;
4867 unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
4868 struct intel_crtc *crtc;
4869
4870 /*
4871 * First get all needed power domains, then put all unneeded, to avoid
4872 * any unnecessary toggling of the power wells.
4873 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004874 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004875 enum intel_display_power_domain domain;
4876
Matt Roper83d65732015-02-25 13:12:16 -08004877 if (!crtc->base.state->enable)
Imre Deak77d22dc2014-03-05 16:20:52 +02004878 continue;
4879
Imre Deak319be8a2014-03-04 19:22:57 +02004880 pipe_domains[crtc->pipe] = get_crtc_power_domains(&crtc->base);
Imre Deak77d22dc2014-03-05 16:20:52 +02004881
4882 for_each_power_domain(domain, pipe_domains[crtc->pipe])
4883 intel_display_power_get(dev_priv, domain);
4884 }
4885
Ville Syrjälä50f6e502014-11-06 14:49:12 +02004886 if (dev_priv->display.modeset_global_resources)
4887 dev_priv->display.modeset_global_resources(dev);
4888
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004889 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004890 enum intel_display_power_domain domain;
4891
4892 for_each_power_domain(domain, crtc->enabled_power_domains)
4893 intel_display_power_put(dev_priv, domain);
4894
4895 crtc->enabled_power_domains = pipe_domains[crtc->pipe];
4896 }
4897
4898 intel_display_set_init_power(dev_priv, false);
4899}
4900
Ville Syrjälädfcab172014-06-13 13:37:47 +03004901/* returns HPLL frequency in kHz */
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004902static int valleyview_get_vco(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004903{
Jesse Barnes586f49d2013-11-04 16:06:59 -08004904 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
Jesse Barnes30a970c2013-11-04 13:48:12 -08004905
Jesse Barnes586f49d2013-11-04 16:06:59 -08004906 /* Obtain SKU information */
4907 mutex_lock(&dev_priv->dpio_lock);
4908 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
4909 CCK_FUSE_HPLL_FREQ_MASK;
4910 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004911
Ville Syrjälädfcab172014-06-13 13:37:47 +03004912 return vco_freq[hpll_freq] * 1000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004913}
4914
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004915static void vlv_update_cdclk(struct drm_device *dev)
4916{
4917 struct drm_i915_private *dev_priv = dev->dev_private;
4918
4919 dev_priv->vlv_cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
Ville Syrjälä43dc52c2014-10-07 17:41:20 +03004920 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004921 dev_priv->vlv_cdclk_freq);
4922
4923 /*
4924 * Program the gmbus_freq based on the cdclk frequency.
4925 * BSpec erroneously claims we should aim for 4MHz, but
4926 * in fact 1MHz is the correct frequency.
4927 */
Ville Syrjälä6be1e3d2014-10-16 20:52:31 +03004928 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->vlv_cdclk_freq, 1000));
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004929}
4930
Jesse Barnes30a970c2013-11-04 13:48:12 -08004931/* Adjust CDclk dividers to allow high res or save power if possible */
4932static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
4933{
4934 struct drm_i915_private *dev_priv = dev->dev_private;
4935 u32 val, cmd;
4936
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03004937 WARN_ON(dev_priv->display.get_display_clock_speed(dev) != dev_priv->vlv_cdclk_freq);
Imre Deakd60c4472014-03-27 17:45:10 +02004938
Ville Syrjälädfcab172014-06-13 13:37:47 +03004939 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
Jesse Barnes30a970c2013-11-04 13:48:12 -08004940 cmd = 2;
Ville Syrjälädfcab172014-06-13 13:37:47 +03004941 else if (cdclk == 266667)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004942 cmd = 1;
4943 else
4944 cmd = 0;
4945
4946 mutex_lock(&dev_priv->rps.hw_lock);
4947 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4948 val &= ~DSPFREQGUAR_MASK;
4949 val |= (cmd << DSPFREQGUAR_SHIFT);
4950 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4951 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4952 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
4953 50)) {
4954 DRM_ERROR("timed out waiting for CDclk change\n");
4955 }
4956 mutex_unlock(&dev_priv->rps.hw_lock);
4957
Ville Syrjälädfcab172014-06-13 13:37:47 +03004958 if (cdclk == 400000) {
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03004959 u32 divider;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004960
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03004961 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004962
4963 mutex_lock(&dev_priv->dpio_lock);
4964 /* adjust cdclk divider */
4965 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
Ville Syrjälä9cf33db2014-06-13 13:37:48 +03004966 val &= ~DISPLAY_FREQUENCY_VALUES;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004967 val |= divider;
4968 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
Ville Syrjäläa877e802014-06-13 13:37:52 +03004969
4970 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
4971 DISPLAY_FREQUENCY_STATUS) == (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
4972 50))
4973 DRM_ERROR("timed out waiting for CDclk change\n");
Jesse Barnes30a970c2013-11-04 13:48:12 -08004974 mutex_unlock(&dev_priv->dpio_lock);
4975 }
4976
4977 mutex_lock(&dev_priv->dpio_lock);
4978 /* adjust self-refresh exit latency value */
4979 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
4980 val &= ~0x7f;
4981
4982 /*
4983 * For high bandwidth configs, we set a higher latency in the bunit
4984 * so that the core display fetch happens in time to avoid underruns.
4985 */
Ville Syrjälädfcab172014-06-13 13:37:47 +03004986 if (cdclk == 400000)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004987 val |= 4500 / 250; /* 4.5 usec */
4988 else
4989 val |= 3000 / 250; /* 3.0 usec */
4990 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
4991 mutex_unlock(&dev_priv->dpio_lock);
4992
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004993 vlv_update_cdclk(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004994}
4995
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004996static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
4997{
4998 struct drm_i915_private *dev_priv = dev->dev_private;
4999 u32 val, cmd;
5000
5001 WARN_ON(dev_priv->display.get_display_clock_speed(dev) != dev_priv->vlv_cdclk_freq);
5002
5003 switch (cdclk) {
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005004 case 333333:
5005 case 320000:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005006 case 266667:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005007 case 200000:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005008 break;
5009 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01005010 MISSING_CASE(cdclk);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005011 return;
5012 }
5013
Ville Syrjälä9d0d3fd2015-03-02 20:07:17 +02005014 /*
5015 * Specs are full of misinformation, but testing on actual
5016 * hardware has shown that we just need to write the desired
5017 * CCK divider into the Punit register.
5018 */
5019 cmd = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
5020
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005021 mutex_lock(&dev_priv->rps.hw_lock);
5022 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5023 val &= ~DSPFREQGUAR_MASK_CHV;
5024 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
5025 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5026 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5027 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
5028 50)) {
5029 DRM_ERROR("timed out waiting for CDclk change\n");
5030 }
5031 mutex_unlock(&dev_priv->rps.hw_lock);
5032
5033 vlv_update_cdclk(dev);
5034}
5035
Jesse Barnes30a970c2013-11-04 13:48:12 -08005036static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
5037 int max_pixclk)
5038{
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005039 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005040 int limit = IS_CHERRYVIEW(dev_priv) ? 95 : 90;
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005041
Jesse Barnes30a970c2013-11-04 13:48:12 -08005042 /*
5043 * Really only a few cases to deal with, as only 4 CDclks are supported:
5044 * 200MHz
5045 * 267MHz
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005046 * 320/333MHz (depends on HPLL freq)
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005047 * 400MHz (VLV only)
5048 * So we check to see whether we're above 90% (VLV) or 95% (CHV)
5049 * of the lower bin and adjust if needed.
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005050 *
5051 * We seem to get an unstable or solid color picture at 200MHz.
5052 * Not sure what's wrong. For now use 200MHz only when all pipes
5053 * are off.
Jesse Barnes30a970c2013-11-04 13:48:12 -08005054 */
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005055 if (!IS_CHERRYVIEW(dev_priv) &&
5056 max_pixclk > freq_320*limit/100)
Ville Syrjälädfcab172014-06-13 13:37:47 +03005057 return 400000;
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005058 else if (max_pixclk > 266667*limit/100)
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005059 return freq_320;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005060 else if (max_pixclk > 0)
Ville Syrjälädfcab172014-06-13 13:37:47 +03005061 return 266667;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005062 else
5063 return 200000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005064}
5065
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02005066/* compute the max pixel clock for new configuration */
5067static int intel_mode_max_pixclk(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005068{
5069 struct drm_device *dev = dev_priv->dev;
5070 struct intel_crtc *intel_crtc;
5071 int max_pixclk = 0;
5072
Damien Lespiaud3fcc802014-05-13 23:32:22 +01005073 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02005074 if (intel_crtc->new_enabled)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005075 max_pixclk = max(max_pixclk,
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02005076 intel_crtc->new_config->base.adjusted_mode.crtc_clock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005077 }
5078
5079 return max_pixclk;
5080}
5081
5082static void valleyview_modeset_global_pipes(struct drm_device *dev,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02005083 unsigned *prepare_pipes)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005084{
5085 struct drm_i915_private *dev_priv = dev->dev_private;
5086 struct intel_crtc *intel_crtc;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02005087 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005088
Imre Deakd60c4472014-03-27 17:45:10 +02005089 if (valleyview_calc_cdclk(dev_priv, max_pixclk) ==
5090 dev_priv->vlv_cdclk_freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005091 return;
5092
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02005093 /* disable/enable all currently active pipes while we change cdclk */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01005094 for_each_intel_crtc(dev, intel_crtc)
Matt Roper83d65732015-02-25 13:12:16 -08005095 if (intel_crtc->base.state->enable)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005096 *prepare_pipes |= (1 << intel_crtc->pipe);
5097}
5098
5099static void valleyview_modeset_global_resources(struct drm_device *dev)
5100{
5101 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02005102 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005103 int req_cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
5104
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005105 if (req_cdclk != dev_priv->vlv_cdclk_freq) {
Imre Deak738c05c2014-11-19 16:25:37 +02005106 /*
5107 * FIXME: We can end up here with all power domains off, yet
5108 * with a CDCLK frequency other than the minimum. To account
5109 * for this take the PIPE-A power domain, which covers the HW
5110 * blocks needed for the following programming. This can be
5111 * removed once it's guaranteed that we get here either with
5112 * the minimum CDCLK set, or the required power domains
5113 * enabled.
5114 */
5115 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
5116
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005117 if (IS_CHERRYVIEW(dev))
5118 cherryview_set_cdclk(dev, req_cdclk);
5119 else
5120 valleyview_set_cdclk(dev, req_cdclk);
Imre Deak738c05c2014-11-19 16:25:37 +02005121
5122 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005123 }
Jesse Barnes30a970c2013-11-04 13:48:12 -08005124}
5125
Jesse Barnes89b667f2013-04-18 14:51:36 -07005126static void valleyview_crtc_enable(struct drm_crtc *crtc)
5127{
5128 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02005129 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005130 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5131 struct intel_encoder *encoder;
5132 int pipe = intel_crtc->pipe;
Jani Nikula23538ef2013-08-27 15:12:22 +03005133 bool is_dsi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07005134
Matt Roper83d65732015-02-25 13:12:16 -08005135 WARN_ON(!crtc->state->enable);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005136
5137 if (intel_crtc->active)
5138 return;
5139
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005140 is_dsi = intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI);
Shobhit Kumar8525a232014-06-25 12:20:39 +05305141
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005142 if (!is_dsi) {
5143 if (IS_CHERRYVIEW(dev))
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005144 chv_prepare_pll(intel_crtc, intel_crtc->config);
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005145 else
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005146 vlv_prepare_pll(intel_crtc, intel_crtc->config);
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005147 }
Daniel Vetter5b18e572014-04-24 23:55:06 +02005148
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005149 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05305150 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter5b18e572014-04-24 23:55:06 +02005151
5152 intel_set_pipe_timings(intel_crtc);
5153
Ville Syrjäläc14b0482014-10-16 20:52:34 +03005154 if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) {
5155 struct drm_i915_private *dev_priv = dev->dev_private;
5156
5157 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
5158 I915_WRITE(CHV_CANVAS(pipe), 0);
5159 }
5160
Daniel Vetter5b18e572014-04-24 23:55:06 +02005161 i9xx_set_pipeconf(intel_crtc);
5162
Jesse Barnes89b667f2013-04-18 14:51:36 -07005163 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07005164
Daniel Vettera72e4c92014-09-30 10:56:47 +02005165 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005166
Jesse Barnes89b667f2013-04-18 14:51:36 -07005167 for_each_encoder_on_crtc(dev, crtc, encoder)
5168 if (encoder->pre_pll_enable)
5169 encoder->pre_pll_enable(encoder);
5170
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005171 if (!is_dsi) {
5172 if (IS_CHERRYVIEW(dev))
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005173 chv_enable_pll(intel_crtc, intel_crtc->config);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005174 else
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005175 vlv_enable_pll(intel_crtc, intel_crtc->config);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005176 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07005177
5178 for_each_encoder_on_crtc(dev, crtc, encoder)
5179 if (encoder->pre_enable)
5180 encoder->pre_enable(encoder);
5181
Jesse Barnes2dd24552013-04-25 12:55:01 -07005182 i9xx_pfit_enable(intel_crtc);
5183
Ville Syrjälä63cbb072013-06-04 13:48:59 +03005184 intel_crtc_load_lut(crtc);
5185
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005186 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02005187 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02005188
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03005189 assert_vblank_disabled(crtc);
5190 drm_crtc_vblank_on(crtc);
5191
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005192 for_each_encoder_on_crtc(dev, crtc, encoder)
5193 encoder->enable(encoder);
5194
Ville Syrjälä9ab04602014-05-08 19:23:14 +03005195 intel_crtc_enable_planes(crtc);
Daniel Vetterd40d9182014-05-21 11:45:40 +02005196
Ville Syrjälä56b80e12014-05-16 19:40:22 +03005197 /* Underruns don't raise interrupts, so check manually. */
Daniel Vettera72e4c92014-09-30 10:56:47 +02005198 i9xx_check_fifo_underruns(dev_priv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005199}
5200
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005201static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
5202{
5203 struct drm_device *dev = crtc->base.dev;
5204 struct drm_i915_private *dev_priv = dev->dev_private;
5205
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005206 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
5207 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005208}
5209
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005210static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005211{
5212 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02005213 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08005214 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005215 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08005216 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08005217
Matt Roper83d65732015-02-25 13:12:16 -08005218 WARN_ON(!crtc->state->enable);
Daniel Vetter08a48462012-07-02 11:43:47 +02005219
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005220 if (intel_crtc->active)
5221 return;
5222
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005223 i9xx_set_pll_dividers(intel_crtc);
5224
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005225 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05305226 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter5b18e572014-04-24 23:55:06 +02005227
5228 intel_set_pipe_timings(intel_crtc);
5229
Daniel Vetter5b18e572014-04-24 23:55:06 +02005230 i9xx_set_pipeconf(intel_crtc);
5231
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005232 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01005233
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005234 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005235 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005236
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02005237 for_each_encoder_on_crtc(dev, crtc, encoder)
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02005238 if (encoder->pre_enable)
5239 encoder->pre_enable(encoder);
5240
Daniel Vetterf6736a12013-06-05 13:34:30 +02005241 i9xx_enable_pll(intel_crtc);
5242
Jesse Barnes2dd24552013-04-25 12:55:01 -07005243 i9xx_pfit_enable(intel_crtc);
5244
Ville Syrjälä63cbb072013-06-04 13:48:59 +03005245 intel_crtc_load_lut(crtc);
5246
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005247 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02005248 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02005249
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03005250 assert_vblank_disabled(crtc);
5251 drm_crtc_vblank_on(crtc);
5252
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005253 for_each_encoder_on_crtc(dev, crtc, encoder)
5254 encoder->enable(encoder);
5255
Ville Syrjälä9ab04602014-05-08 19:23:14 +03005256 intel_crtc_enable_planes(crtc);
Daniel Vetterd40d9182014-05-21 11:45:40 +02005257
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005258 /*
5259 * Gen2 reports pipe underruns whenever all planes are disabled.
5260 * So don't enable underrun reporting before at least some planes
5261 * are enabled.
5262 * FIXME: Need to fix the logic to work when we turn off all planes
5263 * but leave the pipe running.
5264 */
5265 if (IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005266 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005267
Ville Syrjälä56b80e12014-05-16 19:40:22 +03005268 /* Underruns don't raise interrupts, so check manually. */
Daniel Vettera72e4c92014-09-30 10:56:47 +02005269 i9xx_check_fifo_underruns(dev_priv);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005270}
5271
Daniel Vetter87476d62013-04-11 16:29:06 +02005272static void i9xx_pfit_disable(struct intel_crtc *crtc)
5273{
5274 struct drm_device *dev = crtc->base.dev;
5275 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02005276
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005277 if (!crtc->config->gmch_pfit.control)
Daniel Vetter328d8e82013-05-08 10:36:31 +02005278 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02005279
5280 assert_pipe_disabled(dev_priv, crtc->pipe);
5281
Daniel Vetter328d8e82013-05-08 10:36:31 +02005282 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
5283 I915_READ(PFIT_CONTROL));
5284 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02005285}
5286
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005287static void i9xx_crtc_disable(struct drm_crtc *crtc)
5288{
5289 struct drm_device *dev = crtc->dev;
5290 struct drm_i915_private *dev_priv = dev->dev_private;
5291 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005292 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005293 int pipe = intel_crtc->pipe;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005294
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005295 if (!intel_crtc->active)
5296 return;
5297
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005298 /*
5299 * Gen2 reports pipe underruns whenever all planes are disabled.
5300 * So diasble underrun reporting before all the planes get disabled.
5301 * FIXME: Need to fix the logic to work when we turn off all planes
5302 * but leave the pipe running.
5303 */
5304 if (IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005305 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005306
Imre Deak564ed192014-06-13 14:54:21 +03005307 /*
5308 * Vblank time updates from the shadow to live plane control register
5309 * are blocked if the memory self-refresh mode is active at that
5310 * moment. So to make sure the plane gets truly disabled, disable
5311 * first the self-refresh mode. The self-refresh enable bit in turn
5312 * will be checked/applied by the HW only at the next frame start
5313 * event which is after the vblank start event, so we need to have a
5314 * wait-for-vblank between disabling the plane and the pipe.
5315 */
5316 intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03005317 intel_crtc_disable_planes(crtc);
5318
Ville Syrjälä6304cd92014-04-25 13:30:12 +03005319 /*
5320 * On gen2 planes are double buffered but the pipe isn't, so we must
5321 * wait for planes to fully turn off before disabling the pipe.
Imre Deak564ed192014-06-13 14:54:21 +03005322 * We also need to wait on all gmch platforms because of the
5323 * self-refresh mode constraint explained above.
Ville Syrjälä6304cd92014-04-25 13:30:12 +03005324 */
Imre Deak564ed192014-06-13 14:54:21 +03005325 intel_wait_for_vblank(dev, pipe);
Ville Syrjälä6304cd92014-04-25 13:30:12 +03005326
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03005327 for_each_encoder_on_crtc(dev, crtc, encoder)
5328 encoder->disable(encoder);
5329
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005330 drm_crtc_vblank_off(crtc);
5331 assert_vblank_disabled(crtc);
5332
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03005333 intel_disable_pipe(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02005334
Daniel Vetter87476d62013-04-11 16:29:06 +02005335 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02005336
Jesse Barnes89b667f2013-04-18 14:51:36 -07005337 for_each_encoder_on_crtc(dev, crtc, encoder)
5338 if (encoder->post_disable)
5339 encoder->post_disable(encoder);
5340
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005341 if (!intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI)) {
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03005342 if (IS_CHERRYVIEW(dev))
5343 chv_disable_pll(dev_priv, pipe);
5344 else if (IS_VALLEYVIEW(dev))
5345 vlv_disable_pll(dev_priv, pipe);
5346 else
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03005347 i9xx_disable_pll(intel_crtc);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03005348 }
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005349
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005350 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005351 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005352
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005353 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03005354 intel_update_watermarks(crtc);
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005355
Daniel Vetterefa96242014-04-24 23:55:02 +02005356 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02005357 intel_fbc_update(dev);
Daniel Vetterefa96242014-04-24 23:55:02 +02005358 mutex_unlock(&dev->struct_mutex);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005359}
5360
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005361static void i9xx_crtc_off(struct drm_crtc *crtc)
5362{
5363}
5364
Borun Fub04c5bd2014-07-12 10:02:27 +05305365/* Master function to enable/disable CRTC and corresponding power wells */
5366void intel_crtc_control(struct drm_crtc *crtc, bool enable)
Chris Wilsoncdd59982010-09-08 16:30:16 +01005367{
Chris Wilsoncdd59982010-09-08 16:30:16 +01005368 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005369 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005370 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005371 enum intel_display_power_domain domain;
5372 unsigned long domains;
Daniel Vetter976f8a22012-07-08 22:34:21 +02005373
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005374 if (enable) {
5375 if (!intel_crtc->active) {
Daniel Vettere1e9fb82014-06-25 22:02:04 +03005376 domains = get_crtc_power_domains(crtc);
5377 for_each_power_domain(domain, domains)
5378 intel_display_power_get(dev_priv, domain);
5379 intel_crtc->enabled_power_domains = domains;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005380
5381 dev_priv->display.crtc_enable(crtc);
5382 }
5383 } else {
5384 if (intel_crtc->active) {
5385 dev_priv->display.crtc_disable(crtc);
5386
Daniel Vettere1e9fb82014-06-25 22:02:04 +03005387 domains = intel_crtc->enabled_power_domains;
5388 for_each_power_domain(domain, domains)
5389 intel_display_power_put(dev_priv, domain);
5390 intel_crtc->enabled_power_domains = 0;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005391 }
5392 }
Borun Fub04c5bd2014-07-12 10:02:27 +05305393}
5394
5395/**
5396 * Sets the power management mode of the pipe and plane.
5397 */
5398void intel_crtc_update_dpms(struct drm_crtc *crtc)
5399{
5400 struct drm_device *dev = crtc->dev;
5401 struct intel_encoder *intel_encoder;
5402 bool enable = false;
5403
5404 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
5405 enable |= intel_encoder->connectors_active;
5406
5407 intel_crtc_control(crtc, enable);
Daniel Vetter976f8a22012-07-08 22:34:21 +02005408}
5409
Daniel Vetter976f8a22012-07-08 22:34:21 +02005410static void intel_crtc_disable(struct drm_crtc *crtc)
5411{
5412 struct drm_device *dev = crtc->dev;
5413 struct drm_connector *connector;
5414 struct drm_i915_private *dev_priv = dev->dev_private;
5415
5416 /* crtc should still be enabled when we disable it. */
Matt Roper83d65732015-02-25 13:12:16 -08005417 WARN_ON(!crtc->state->enable);
Daniel Vetter976f8a22012-07-08 22:34:21 +02005418
5419 dev_priv->display.crtc_disable(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005420 dev_priv->display.off(crtc);
5421
Gustavo Padovan455a6802014-12-01 15:40:11 -08005422 crtc->primary->funcs->disable_plane(crtc->primary);
Daniel Vetter976f8a22012-07-08 22:34:21 +02005423
5424 /* Update computed state. */
5425 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
5426 if (!connector->encoder || !connector->encoder->crtc)
5427 continue;
5428
5429 if (connector->encoder->crtc != crtc)
5430 continue;
5431
5432 connector->dpms = DRM_MODE_DPMS_OFF;
5433 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01005434 }
5435}
5436
Chris Wilsonea5b2132010-08-04 13:50:23 +01005437void intel_encoder_destroy(struct drm_encoder *encoder)
5438{
Chris Wilson4ef69c72010-09-09 15:14:28 +01005439 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01005440
Chris Wilsonea5b2132010-08-04 13:50:23 +01005441 drm_encoder_cleanup(encoder);
5442 kfree(intel_encoder);
5443}
5444
Damien Lespiau92373292013-08-08 22:28:57 +01005445/* Simple dpms helper for encoders with just one connector, no cloning and only
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005446 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
5447 * state of the entire output pipe. */
Damien Lespiau92373292013-08-08 22:28:57 +01005448static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005449{
5450 if (mode == DRM_MODE_DPMS_ON) {
5451 encoder->connectors_active = true;
5452
Daniel Vetterb2cabb02012-07-01 22:42:24 +02005453 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005454 } else {
5455 encoder->connectors_active = false;
5456
Daniel Vetterb2cabb02012-07-01 22:42:24 +02005457 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005458 }
5459}
5460
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005461/* Cross check the actual hw state with our own modeset state tracking (and it's
5462 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02005463static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005464{
5465 if (connector->get_hw_state(connector)) {
5466 struct intel_encoder *encoder = connector->encoder;
5467 struct drm_crtc *crtc;
5468 bool encoder_enabled;
5469 enum pipe pipe;
5470
5471 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
5472 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03005473 connector->base.name);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005474
Dave Airlie0e32b392014-05-02 14:02:48 +10005475 /* there is no real hw state for MST connectors */
5476 if (connector->mst_port)
5477 return;
5478
Rob Clarke2c719b2014-12-15 13:56:32 -05005479 I915_STATE_WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005480 "wrong connector dpms state\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05005481 I915_STATE_WARN(connector->base.encoder != &encoder->base,
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005482 "active connector not linked to encoder\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005483
Dave Airlie36cd7442014-05-02 13:44:18 +10005484 if (encoder) {
Rob Clarke2c719b2014-12-15 13:56:32 -05005485 I915_STATE_WARN(!encoder->connectors_active,
Dave Airlie36cd7442014-05-02 13:44:18 +10005486 "encoder->connectors_active not set\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005487
Dave Airlie36cd7442014-05-02 13:44:18 +10005488 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
Rob Clarke2c719b2014-12-15 13:56:32 -05005489 I915_STATE_WARN(!encoder_enabled, "encoder not enabled\n");
5490 if (I915_STATE_WARN_ON(!encoder->base.crtc))
Dave Airlie36cd7442014-05-02 13:44:18 +10005491 return;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005492
Dave Airlie36cd7442014-05-02 13:44:18 +10005493 crtc = encoder->base.crtc;
5494
Matt Roper83d65732015-02-25 13:12:16 -08005495 I915_STATE_WARN(!crtc->state->enable,
5496 "crtc not enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05005497 I915_STATE_WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
5498 I915_STATE_WARN(pipe != to_intel_crtc(crtc)->pipe,
Dave Airlie36cd7442014-05-02 13:44:18 +10005499 "encoder active on the wrong pipe\n");
5500 }
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005501 }
5502}
5503
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005504/* Even simpler default implementation, if there's really no special case to
5505 * consider. */
5506void intel_connector_dpms(struct drm_connector *connector, int mode)
5507{
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005508 /* All the simple cases only support two dpms states. */
5509 if (mode != DRM_MODE_DPMS_ON)
5510 mode = DRM_MODE_DPMS_OFF;
5511
5512 if (mode == connector->dpms)
5513 return;
5514
5515 connector->dpms = mode;
5516
5517 /* Only need to change hw state when actually enabled */
Chris Wilsonc9976dcf2013-09-29 19:15:07 +01005518 if (connector->encoder)
5519 intel_encoder_dpms(to_intel_encoder(connector->encoder), mode);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005520
Daniel Vetterb9805142012-08-31 17:37:33 +02005521 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005522}
5523
Daniel Vetterf0947c32012-07-02 13:10:34 +02005524/* Simple connector->get_hw_state implementation for encoders that support only
5525 * one connector and no cloning and hence the encoder state determines the state
5526 * of the connector. */
5527bool intel_connector_get_hw_state(struct intel_connector *connector)
5528{
Daniel Vetter24929352012-07-02 20:28:59 +02005529 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02005530 struct intel_encoder *encoder = connector->encoder;
5531
5532 return encoder->get_hw_state(encoder, &pipe);
5533}
5534
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005535static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005536 struct intel_crtc_state *pipe_config)
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005537{
5538 struct drm_i915_private *dev_priv = dev->dev_private;
5539 struct intel_crtc *pipe_B_crtc =
5540 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
5541
5542 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
5543 pipe_name(pipe), pipe_config->fdi_lanes);
5544 if (pipe_config->fdi_lanes > 4) {
5545 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
5546 pipe_name(pipe), pipe_config->fdi_lanes);
5547 return false;
5548 }
5549
Paulo Zanonibafb6552013-11-02 21:07:44 -07005550 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005551 if (pipe_config->fdi_lanes > 2) {
5552 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
5553 pipe_config->fdi_lanes);
5554 return false;
5555 } else {
5556 return true;
5557 }
5558 }
5559
5560 if (INTEL_INFO(dev)->num_pipes == 2)
5561 return true;
5562
5563 /* Ivybridge 3 pipe is really complicated */
5564 switch (pipe) {
5565 case PIPE_A:
5566 return true;
5567 case PIPE_B:
5568 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
5569 pipe_config->fdi_lanes > 2) {
5570 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5571 pipe_name(pipe), pipe_config->fdi_lanes);
5572 return false;
5573 }
5574 return true;
5575 case PIPE_C:
Daniel Vetter1e833f42013-02-19 22:31:57 +01005576 if (!pipe_has_enabled_pch(pipe_B_crtc) ||
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005577 pipe_B_crtc->config->fdi_lanes <= 2) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005578 if (pipe_config->fdi_lanes > 2) {
5579 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5580 pipe_name(pipe), pipe_config->fdi_lanes);
5581 return false;
5582 }
5583 } else {
5584 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
5585 return false;
5586 }
5587 return true;
5588 default:
5589 BUG();
5590 }
5591}
5592
Daniel Vettere29c22c2013-02-21 00:00:16 +01005593#define RETRY 1
5594static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005595 struct intel_crtc_state *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02005596{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005597 struct drm_device *dev = intel_crtc->base.dev;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02005598 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Daniel Vetterff9a6752013-06-01 17:16:21 +02005599 int lane, link_bw, fdi_dotclock;
Daniel Vettere29c22c2013-02-21 00:00:16 +01005600 bool setup_ok, needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005601
Daniel Vettere29c22c2013-02-21 00:00:16 +01005602retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02005603 /* FDI is a binary signal running at ~2.7GHz, encoding
5604 * each output octet as 10 bits. The actual frequency
5605 * is stored as a divider into a 100MHz clock, and the
5606 * mode pixel clock is stored in units of 1KHz.
5607 * Hence the bw of each lane in terms of the mode signal
5608 * is:
5609 */
5610 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
5611
Damien Lespiau241bfc32013-09-25 16:45:37 +01005612 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005613
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005614 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005615 pipe_config->pipe_bpp);
5616
5617 pipe_config->fdi_lanes = lane;
5618
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005619 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005620 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005621
Daniel Vettere29c22c2013-02-21 00:00:16 +01005622 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
5623 intel_crtc->pipe, pipe_config);
5624 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
5625 pipe_config->pipe_bpp -= 2*3;
5626 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
5627 pipe_config->pipe_bpp);
5628 needs_recompute = true;
5629 pipe_config->bw_constrained = true;
5630
5631 goto retry;
5632 }
5633
5634 if (needs_recompute)
5635 return RETRY;
5636
5637 return setup_ok ? 0 : -EINVAL;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005638}
5639
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005640static void hsw_compute_ips_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005641 struct intel_crtc_state *pipe_config)
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005642{
Jani Nikulad330a952014-01-21 11:24:25 +02005643 pipe_config->ips_enabled = i915.enable_ips &&
Paulo Zanoni3c4ca582013-05-31 16:33:23 -03005644 hsw_crtc_supports_ips(crtc) &&
Jesse Barnesb6dfdc92013-07-25 10:06:50 -07005645 pipe_config->pipe_bpp <= 24;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005646}
5647
Daniel Vettera43f6e02013-06-07 23:10:32 +02005648static int intel_crtc_compute_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005649 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08005650{
Daniel Vettera43f6e02013-06-07 23:10:32 +02005651 struct drm_device *dev = crtc->base.dev;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02005652 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02005653 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Chris Wilson89749352010-09-12 18:25:19 +01005654
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005655 /* FIXME should check pixel clock limits on all platforms */
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005656 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005657 int clock_limit =
5658 dev_priv->display.get_display_clock_speed(dev);
5659
5660 /*
5661 * Enable pixel doubling when the dot clock
5662 * is > 90% of the (display) core speed.
5663 *
Ville Syrjäläb397c962013-09-04 18:30:06 +03005664 * GDG double wide on either pipe,
5665 * otherwise pipe A only.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005666 */
Ville Syrjäläb397c962013-09-04 18:30:06 +03005667 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
Damien Lespiau241bfc32013-09-25 16:45:37 +01005668 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005669 clock_limit *= 2;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005670 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005671 }
5672
Damien Lespiau241bfc32013-09-25 16:45:37 +01005673 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005674 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08005675 }
Chris Wilson89749352010-09-12 18:25:19 +01005676
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03005677 /*
5678 * Pipe horizontal size must be even in:
5679 * - DVO ganged mode
5680 * - LVDS dual channel mode
5681 * - Double wide pipe
5682 */
Ander Conselvan de Oliveirab4f2bf42015-02-26 09:44:45 +02005683 if ((intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03005684 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
5685 pipe_config->pipe_src_w &= ~1;
5686
Damien Lespiau8693a822013-05-03 18:48:11 +01005687 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
5688 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03005689 */
5690 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
5691 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005692 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03005693
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005694 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005695 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005696 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005697 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
5698 * for lvds. */
5699 pipe_config->pipe_bpp = 8*3;
5700 }
5701
Damien Lespiauf5adf942013-06-24 18:29:34 +01005702 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02005703 hsw_compute_ips_config(crtc, pipe_config);
5704
Daniel Vetter877d48d2013-04-19 11:24:43 +02005705 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02005706 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02005707
Daniel Vettere29c22c2013-02-21 00:00:16 +01005708 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005709}
5710
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07005711static int valleyview_get_display_clock_speed(struct drm_device *dev)
5712{
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005713 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005714 u32 val;
5715 int divider;
5716
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005717 if (dev_priv->hpll_freq == 0)
5718 dev_priv->hpll_freq = valleyview_get_vco(dev_priv);
5719
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005720 mutex_lock(&dev_priv->dpio_lock);
5721 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
5722 mutex_unlock(&dev_priv->dpio_lock);
5723
5724 divider = val & DISPLAY_FREQUENCY_VALUES;
5725
Ville Syrjälä7d007f42014-06-13 13:37:53 +03005726 WARN((val & DISPLAY_FREQUENCY_STATUS) !=
5727 (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
5728 "cdclk change in progress\n");
5729
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005730 return DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, divider + 1);
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07005731}
5732
Jesse Barnese70236a2009-09-21 10:42:27 -07005733static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08005734{
Jesse Barnese70236a2009-09-21 10:42:27 -07005735 return 400000;
5736}
Jesse Barnes79e53942008-11-07 14:24:08 -08005737
Jesse Barnese70236a2009-09-21 10:42:27 -07005738static int i915_get_display_clock_speed(struct drm_device *dev)
5739{
5740 return 333000;
5741}
Jesse Barnes79e53942008-11-07 14:24:08 -08005742
Jesse Barnese70236a2009-09-21 10:42:27 -07005743static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
5744{
5745 return 200000;
5746}
Jesse Barnes79e53942008-11-07 14:24:08 -08005747
Daniel Vetter257a7ff2013-07-26 08:35:42 +02005748static int pnv_get_display_clock_speed(struct drm_device *dev)
5749{
5750 u16 gcfgc = 0;
5751
5752 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5753
5754 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5755 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
5756 return 267000;
5757 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
5758 return 333000;
5759 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
5760 return 444000;
5761 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
5762 return 200000;
5763 default:
5764 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
5765 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
5766 return 133000;
5767 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
5768 return 167000;
5769 }
5770}
5771
Jesse Barnese70236a2009-09-21 10:42:27 -07005772static int i915gm_get_display_clock_speed(struct drm_device *dev)
5773{
5774 u16 gcfgc = 0;
5775
5776 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5777
5778 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08005779 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07005780 else {
5781 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5782 case GC_DISPLAY_CLOCK_333_MHZ:
5783 return 333000;
5784 default:
5785 case GC_DISPLAY_CLOCK_190_200_MHZ:
5786 return 190000;
5787 }
5788 }
5789}
Jesse Barnes79e53942008-11-07 14:24:08 -08005790
Jesse Barnese70236a2009-09-21 10:42:27 -07005791static int i865_get_display_clock_speed(struct drm_device *dev)
5792{
5793 return 266000;
5794}
5795
5796static int i855_get_display_clock_speed(struct drm_device *dev)
5797{
5798 u16 hpllcc = 0;
5799 /* Assume that the hardware is in the high speed state. This
5800 * should be the default.
5801 */
5802 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
5803 case GC_CLOCK_133_200:
5804 case GC_CLOCK_100_200:
5805 return 200000;
5806 case GC_CLOCK_166_250:
5807 return 250000;
5808 case GC_CLOCK_100_133:
5809 return 133000;
5810 }
5811
5812 /* Shouldn't happen */
5813 return 0;
5814}
5815
5816static int i830_get_display_clock_speed(struct drm_device *dev)
5817{
5818 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08005819}
5820
Zhenyu Wang2c072452009-06-05 15:38:42 +08005821static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005822intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005823{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005824 while (*num > DATA_LINK_M_N_MASK ||
5825 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08005826 *num >>= 1;
5827 *den >>= 1;
5828 }
5829}
5830
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005831static void compute_m_n(unsigned int m, unsigned int n,
5832 uint32_t *ret_m, uint32_t *ret_n)
5833{
5834 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
5835 *ret_m = div_u64((uint64_t) m * *ret_n, n);
5836 intel_reduce_m_n_ratio(ret_m, ret_n);
5837}
5838
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005839void
5840intel_link_compute_m_n(int bits_per_pixel, int nlanes,
5841 int pixel_clock, int link_clock,
5842 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005843{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005844 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005845
5846 compute_m_n(bits_per_pixel * pixel_clock,
5847 link_clock * nlanes * 8,
5848 &m_n->gmch_m, &m_n->gmch_n);
5849
5850 compute_m_n(pixel_clock, link_clock,
5851 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005852}
5853
Chris Wilsona7615032011-01-12 17:04:08 +00005854static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
5855{
Jani Nikulad330a952014-01-21 11:24:25 +02005856 if (i915.panel_use_ssc >= 0)
5857 return i915.panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005858 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07005859 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00005860}
5861
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005862static int i9xx_get_refclk(struct intel_crtc *crtc, int num_connectors)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005863{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005864 struct drm_device *dev = crtc->base.dev;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005865 struct drm_i915_private *dev_priv = dev->dev_private;
5866 int refclk;
5867
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005868 if (IS_VALLEYVIEW(dev)) {
Daniel Vetter9a0ea492013-09-16 11:29:34 +02005869 refclk = 100000;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02005870 } else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005871 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02005872 refclk = dev_priv->vbt.lvds_ssc_freq;
5873 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005874 } else if (!IS_GEN2(dev)) {
5875 refclk = 96000;
5876 } else {
5877 refclk = 48000;
5878 }
5879
5880 return refclk;
5881}
5882
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005883static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005884{
Daniel Vetter7df00d72013-05-21 21:54:55 +02005885 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005886}
Daniel Vetterf47709a2013-03-28 10:42:02 +01005887
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005888static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
5889{
5890 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005891}
5892
Daniel Vetterf47709a2013-03-28 10:42:02 +01005893static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005894 struct intel_crtc_state *crtc_state,
Jesse Barnesa7516a02011-12-15 12:30:37 -08005895 intel_clock_t *reduced_clock)
5896{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005897 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005898 u32 fp, fp2 = 0;
5899
5900 if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005901 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005902 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005903 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005904 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005905 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005906 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005907 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005908 }
5909
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005910 crtc_state->dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005911
Daniel Vetterf47709a2013-03-28 10:42:02 +01005912 crtc->lowfreq_avail = false;
Bob Paauwee1f234b2014-11-11 09:29:18 -08005913 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Jani Nikulad330a952014-01-21 11:24:25 +02005914 reduced_clock && i915.powersave) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005915 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005916 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005917 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005918 crtc_state->dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005919 }
5920}
5921
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005922static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
5923 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07005924{
5925 u32 reg_val;
5926
5927 /*
5928 * PLLB opamp always calibrates to max value of 0x3f, force enable it
5929 * and set it to a reasonable value instead.
5930 */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005931 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005932 reg_val &= 0xffffff00;
5933 reg_val |= 0x00000030;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005934 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005935
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005936 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005937 reg_val &= 0x8cffffff;
5938 reg_val = 0x8c000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005939 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005940
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005941 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005942 reg_val &= 0xffffff00;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005943 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005944
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005945 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005946 reg_val &= 0x00ffffff;
5947 reg_val |= 0xb0000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005948 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005949}
5950
Daniel Vetterb5518422013-05-03 11:49:48 +02005951static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
5952 struct intel_link_m_n *m_n)
5953{
5954 struct drm_device *dev = crtc->base.dev;
5955 struct drm_i915_private *dev_priv = dev->dev_private;
5956 int pipe = crtc->pipe;
5957
Daniel Vettere3b95f12013-05-03 11:49:49 +02005958 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5959 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
5960 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
5961 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005962}
5963
5964static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -07005965 struct intel_link_m_n *m_n,
5966 struct intel_link_m_n *m2_n2)
Daniel Vetterb5518422013-05-03 11:49:48 +02005967{
5968 struct drm_device *dev = crtc->base.dev;
5969 struct drm_i915_private *dev_priv = dev->dev_private;
5970 int pipe = crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005971 enum transcoder transcoder = crtc->config->cpu_transcoder;
Daniel Vetterb5518422013-05-03 11:49:48 +02005972
5973 if (INTEL_INFO(dev)->gen >= 5) {
5974 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
5975 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
5976 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
5977 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
Vandana Kannanf769cd22014-08-05 07:51:22 -07005978 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
5979 * for gen < 8) and if DRRS is supported (to make sure the
5980 * registers are not unnecessarily accessed).
5981 */
Durgadoss R44395bf2015-02-13 15:33:02 +05305982 if (m2_n2 && (IS_CHERRYVIEW(dev) || INTEL_INFO(dev)->gen < 8) &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005983 crtc->config->has_drrs) {
Vandana Kannanf769cd22014-08-05 07:51:22 -07005984 I915_WRITE(PIPE_DATA_M2(transcoder),
5985 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
5986 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
5987 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
5988 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
5989 }
Daniel Vetterb5518422013-05-03 11:49:48 +02005990 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02005991 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5992 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
5993 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
5994 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005995 }
5996}
5997
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05305998void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n)
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005999{
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05306000 struct intel_link_m_n *dp_m_n, *dp_m2_n2 = NULL;
6001
6002 if (m_n == M1_N1) {
6003 dp_m_n = &crtc->config->dp_m_n;
6004 dp_m2_n2 = &crtc->config->dp_m2_n2;
6005 } else if (m_n == M2_N2) {
6006
6007 /*
6008 * M2_N2 registers are not supported. Hence m2_n2 divider value
6009 * needs to be programmed into M1_N1.
6010 */
6011 dp_m_n = &crtc->config->dp_m2_n2;
6012 } else {
6013 DRM_ERROR("Unsupported divider value\n");
6014 return;
6015 }
6016
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006017 if (crtc->config->has_pch_encoder)
6018 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02006019 else
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05306020 intel_cpu_transcoder_set_m_n(crtc, dp_m_n, dp_m2_n2);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02006021}
6022
Ville Syrjäläd288f652014-10-28 13:20:22 +02006023static void vlv_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006024 struct intel_crtc_state *pipe_config)
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006025{
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006026 u32 dpll, dpll_md;
6027
6028 /*
6029 * Enable DPIO clock input. We should never disable the reference
6030 * clock for pipe B, since VGA hotplug / manual detection depends
6031 * on it.
6032 */
6033 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
6034 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
6035 /* We should never disable this, set it here for state tracking */
6036 if (crtc->pipe == PIPE_B)
6037 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
6038 dpll |= DPLL_VCO_ENABLE;
Ville Syrjäläd288f652014-10-28 13:20:22 +02006039 pipe_config->dpll_hw_state.dpll = dpll;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006040
Ville Syrjäläd288f652014-10-28 13:20:22 +02006041 dpll_md = (pipe_config->pixel_multiplier - 1)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006042 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjäläd288f652014-10-28 13:20:22 +02006043 pipe_config->dpll_hw_state.dpll_md = dpll_md;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006044}
6045
Ville Syrjäläd288f652014-10-28 13:20:22 +02006046static void vlv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006047 const struct intel_crtc_state *pipe_config)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006048{
Daniel Vetterf47709a2013-03-28 10:42:02 +01006049 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006050 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01006051 int pipe = crtc->pipe;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006052 u32 mdiv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006053 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006054 u32 coreclk, reg_val;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006055
Daniel Vetter09153002012-12-12 14:06:44 +01006056 mutex_lock(&dev_priv->dpio_lock);
6057
Ville Syrjäläd288f652014-10-28 13:20:22 +02006058 bestn = pipe_config->dpll.n;
6059 bestm1 = pipe_config->dpll.m1;
6060 bestm2 = pipe_config->dpll.m2;
6061 bestp1 = pipe_config->dpll.p1;
6062 bestp2 = pipe_config->dpll.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006063
Jesse Barnes89b667f2013-04-18 14:51:36 -07006064 /* See eDP HDMI DPIO driver vbios notes doc */
6065
6066 /* PLL B needs special handling */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006067 if (pipe == PIPE_B)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08006068 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006069
6070 /* Set up Tx target for periodic Rcomp update */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006071 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006072
6073 /* Disable target IRef on PLL */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006074 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07006075 reg_val &= 0x00ffffff;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006076 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006077
6078 /* Disable fast lock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006079 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006080
6081 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006082 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
6083 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
6084 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006085 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07006086
6087 /*
6088 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
6089 * but we don't support that).
6090 * Note: don't use the DAC post divider as it seems unstable.
6091 */
6092 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006093 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006094
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006095 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006096 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006097
Jesse Barnes89b667f2013-04-18 14:51:36 -07006098 /* Set HBR and RBR LPF coefficients */
Ville Syrjäläd288f652014-10-28 13:20:22 +02006099 if (pipe_config->port_clock == 162000 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006100 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG) ||
6101 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006102 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Ville Syrjälä885b0122013-07-05 19:21:38 +03006103 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006104 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006105 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006106 0x00d0000f);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006107
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02006108 if (pipe_config->has_dp_encoder) {
Jesse Barnes89b667f2013-04-18 14:51:36 -07006109 /* Use SSC source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006110 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006111 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006112 0x0df40000);
6113 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006114 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006115 0x0df70000);
6116 } else { /* HDMI or VGA */
6117 /* Use bend source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006118 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006119 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006120 0x0df70000);
6121 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006122 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006123 0x0df40000);
6124 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006125
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006126 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07006127 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006128 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
6129 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
Jesse Barnes89b667f2013-04-18 14:51:36 -07006130 coreclk |= 0x01000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006131 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006132
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006133 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
Daniel Vetter09153002012-12-12 14:06:44 +01006134 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006135}
6136
Ville Syrjäläd288f652014-10-28 13:20:22 +02006137static void chv_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006138 struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006139{
Ville Syrjäläd288f652014-10-28 13:20:22 +02006140 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLOCK_CHV |
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006141 DPLL_REFA_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
6142 DPLL_VCO_ENABLE;
6143 if (crtc->pipe != PIPE_A)
Ville Syrjäläd288f652014-10-28 13:20:22 +02006144 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006145
Ville Syrjäläd288f652014-10-28 13:20:22 +02006146 pipe_config->dpll_hw_state.dpll_md =
6147 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006148}
6149
Ville Syrjäläd288f652014-10-28 13:20:22 +02006150static void chv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006151 const struct intel_crtc_state *pipe_config)
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006152{
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006153 struct drm_device *dev = crtc->base.dev;
6154 struct drm_i915_private *dev_priv = dev->dev_private;
6155 int pipe = crtc->pipe;
6156 int dpll_reg = DPLL(crtc->pipe);
6157 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Ville Syrjälä580d3812014-04-09 13:29:00 +03006158 u32 loopfilter, intcoeff;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006159 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
6160 int refclk;
6161
Ville Syrjäläd288f652014-10-28 13:20:22 +02006162 bestn = pipe_config->dpll.n;
6163 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
6164 bestm1 = pipe_config->dpll.m1;
6165 bestm2 = pipe_config->dpll.m2 >> 22;
6166 bestp1 = pipe_config->dpll.p1;
6167 bestp2 = pipe_config->dpll.p2;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006168
6169 /*
6170 * Enable Refclk and SSC
6171 */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03006172 I915_WRITE(dpll_reg,
Ville Syrjäläd288f652014-10-28 13:20:22 +02006173 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03006174
6175 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006176
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006177 /* p1 and p2 divider */
6178 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
6179 5 << DPIO_CHV_S1_DIV_SHIFT |
6180 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
6181 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
6182 1 << DPIO_CHV_K_DIV_SHIFT);
6183
6184 /* Feedback post-divider - m2 */
6185 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
6186
6187 /* Feedback refclk divider - n and m1 */
6188 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
6189 DPIO_CHV_M1_DIV_BY_2 |
6190 1 << DPIO_CHV_N_DIV_SHIFT);
6191
6192 /* M2 fraction division */
6193 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
6194
6195 /* M2 fraction division enable */
6196 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port),
6197 DPIO_CHV_FRAC_DIV_EN |
6198 (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT));
6199
6200 /* Loop filter */
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006201 refclk = i9xx_get_refclk(crtc, 0);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006202 loopfilter = 5 << DPIO_CHV_PROP_COEFF_SHIFT |
6203 2 << DPIO_CHV_GAIN_CTRL_SHIFT;
6204 if (refclk == 100000)
6205 intcoeff = 11;
6206 else if (refclk == 38400)
6207 intcoeff = 10;
6208 else
6209 intcoeff = 9;
6210 loopfilter |= intcoeff << DPIO_CHV_INT_COEFF_SHIFT;
6211 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
6212
6213 /* AFC Recal */
6214 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
6215 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
6216 DPIO_AFC_RECAL);
6217
6218 mutex_unlock(&dev_priv->dpio_lock);
6219}
6220
Ville Syrjäläd288f652014-10-28 13:20:22 +02006221/**
6222 * vlv_force_pll_on - forcibly enable just the PLL
6223 * @dev_priv: i915 private structure
6224 * @pipe: pipe PLL to enable
6225 * @dpll: PLL configuration
6226 *
6227 * Enable the PLL for @pipe using the supplied @dpll config. To be used
6228 * in cases where we need the PLL enabled even when @pipe is not going to
6229 * be enabled.
6230 */
6231void vlv_force_pll_on(struct drm_device *dev, enum pipe pipe,
6232 const struct dpll *dpll)
6233{
6234 struct intel_crtc *crtc =
6235 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006236 struct intel_crtc_state pipe_config = {
Ville Syrjäläd288f652014-10-28 13:20:22 +02006237 .pixel_multiplier = 1,
6238 .dpll = *dpll,
6239 };
6240
6241 if (IS_CHERRYVIEW(dev)) {
6242 chv_update_pll(crtc, &pipe_config);
6243 chv_prepare_pll(crtc, &pipe_config);
6244 chv_enable_pll(crtc, &pipe_config);
6245 } else {
6246 vlv_update_pll(crtc, &pipe_config);
6247 vlv_prepare_pll(crtc, &pipe_config);
6248 vlv_enable_pll(crtc, &pipe_config);
6249 }
6250}
6251
6252/**
6253 * vlv_force_pll_off - forcibly disable just the PLL
6254 * @dev_priv: i915 private structure
6255 * @pipe: pipe PLL to disable
6256 *
6257 * Disable the PLL for @pipe. To be used in cases where we need
6258 * the PLL enabled even when @pipe is not going to be enabled.
6259 */
6260void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe)
6261{
6262 if (IS_CHERRYVIEW(dev))
6263 chv_disable_pll(to_i915(dev), pipe);
6264 else
6265 vlv_disable_pll(to_i915(dev), pipe);
6266}
6267
Daniel Vetterf47709a2013-03-28 10:42:02 +01006268static void i9xx_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006269 struct intel_crtc_state *crtc_state,
Daniel Vetterf47709a2013-03-28 10:42:02 +01006270 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006271 int num_connectors)
6272{
Daniel Vetterf47709a2013-03-28 10:42:02 +01006273 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006274 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006275 u32 dpll;
6276 bool is_sdvo;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006277 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006278
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006279 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05306280
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006281 is_sdvo = intel_pipe_will_have_type(crtc, INTEL_OUTPUT_SDVO) ||
6282 intel_pipe_will_have_type(crtc, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006283
6284 dpll = DPLL_VGA_MODE_DIS;
6285
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006286 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006287 dpll |= DPLLB_MODE_LVDS;
6288 else
6289 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01006290
Daniel Vetteref1b4602013-06-01 17:17:04 +02006291 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006292 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetter198a037f2013-04-19 11:14:37 +02006293 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006294 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02006295
6296 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006297 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02006298
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006299 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006300 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006301
6302 /* compute bitmask from p1 value */
6303 if (IS_PINEVIEW(dev))
6304 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
6305 else {
6306 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6307 if (IS_G4X(dev) && reduced_clock)
6308 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
6309 }
6310 switch (clock->p2) {
6311 case 5:
6312 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
6313 break;
6314 case 7:
6315 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
6316 break;
6317 case 10:
6318 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
6319 break;
6320 case 14:
6321 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
6322 break;
6323 }
6324 if (INTEL_INFO(dev)->gen >= 4)
6325 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
6326
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006327 if (crtc_state->sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006328 dpll |= PLL_REF_INPUT_TVCLKINBC;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006329 else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006330 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
6331 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
6332 else
6333 dpll |= PLL_REF_INPUT_DREFCLK;
6334
6335 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006336 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006337
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006338 if (INTEL_INFO(dev)->gen >= 4) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006339 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02006340 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006341 crtc_state->dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006342 }
6343}
6344
Daniel Vetterf47709a2013-03-28 10:42:02 +01006345static void i8xx_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006346 struct intel_crtc_state *crtc_state,
Daniel Vetterf47709a2013-03-28 10:42:02 +01006347 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006348 int num_connectors)
6349{
Daniel Vetterf47709a2013-03-28 10:42:02 +01006350 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006351 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006352 u32 dpll;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006353 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006354
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006355 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05306356
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006357 dpll = DPLL_VGA_MODE_DIS;
6358
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006359 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006360 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6361 } else {
6362 if (clock->p1 == 2)
6363 dpll |= PLL_P1_DIVIDE_BY_TWO;
6364 else
6365 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6366 if (clock->p2 == 4)
6367 dpll |= PLL_P2_DIVIDE_BY_4;
6368 }
6369
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006370 if (!IS_I830(dev) && intel_pipe_will_have_type(crtc, INTEL_OUTPUT_DVO))
Daniel Vetter4a33e482013-07-06 12:52:05 +02006371 dpll |= DPLL_DVO_2X_MODE;
6372
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006373 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006374 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
6375 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
6376 else
6377 dpll |= PLL_REF_INPUT_DREFCLK;
6378
6379 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006380 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006381}
6382
Daniel Vetter8a654f32013-06-01 17:16:22 +02006383static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006384{
6385 struct drm_device *dev = intel_crtc->base.dev;
6386 struct drm_i915_private *dev_priv = dev->dev_private;
6387 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006388 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Daniel Vetter8a654f32013-06-01 17:16:22 +02006389 struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006390 &intel_crtc->config->base.adjusted_mode;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02006391 uint32_t crtc_vtotal, crtc_vblank_end;
6392 int vsyncshift = 0;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006393
6394 /* We need to be careful not to changed the adjusted mode, for otherwise
6395 * the hw state checker will get angry at the mismatch. */
6396 crtc_vtotal = adjusted_mode->crtc_vtotal;
6397 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006398
Ville Syrjälä609aeac2014-03-28 23:29:30 +02006399 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006400 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006401 crtc_vtotal -= 1;
6402 crtc_vblank_end -= 1;
Ville Syrjälä609aeac2014-03-28 23:29:30 +02006403
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006404 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjälä609aeac2014-03-28 23:29:30 +02006405 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
6406 else
6407 vsyncshift = adjusted_mode->crtc_hsync_start -
6408 adjusted_mode->crtc_htotal / 2;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02006409 if (vsyncshift < 0)
6410 vsyncshift += adjusted_mode->crtc_htotal;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006411 }
6412
6413 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006414 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006415
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006416 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006417 (adjusted_mode->crtc_hdisplay - 1) |
6418 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006419 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006420 (adjusted_mode->crtc_hblank_start - 1) |
6421 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006422 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006423 (adjusted_mode->crtc_hsync_start - 1) |
6424 ((adjusted_mode->crtc_hsync_end - 1) << 16));
6425
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006426 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006427 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006428 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006429 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006430 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006431 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006432 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006433 (adjusted_mode->crtc_vsync_start - 1) |
6434 ((adjusted_mode->crtc_vsync_end - 1) << 16));
6435
Paulo Zanonib5e508d2012-10-24 11:34:43 -02006436 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
6437 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
6438 * documented on the DDI_FUNC_CTL register description, EDP Input Select
6439 * bits. */
6440 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
6441 (pipe == PIPE_B || pipe == PIPE_C))
6442 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
6443
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006444 /* pipesrc controls the size that is scaled from, which should
6445 * always be the user's requested size.
6446 */
6447 I915_WRITE(PIPESRC(pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006448 ((intel_crtc->config->pipe_src_w - 1) << 16) |
6449 (intel_crtc->config->pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006450}
6451
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006452static void intel_get_pipe_timings(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006453 struct intel_crtc_state *pipe_config)
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006454{
6455 struct drm_device *dev = crtc->base.dev;
6456 struct drm_i915_private *dev_priv = dev->dev_private;
6457 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
6458 uint32_t tmp;
6459
6460 tmp = I915_READ(HTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006461 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
6462 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006463 tmp = I915_READ(HBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006464 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
6465 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006466 tmp = I915_READ(HSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006467 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
6468 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006469
6470 tmp = I915_READ(VTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006471 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
6472 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006473 tmp = I915_READ(VBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006474 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
6475 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006476 tmp = I915_READ(VSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006477 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
6478 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006479
6480 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006481 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
6482 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
6483 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006484 }
6485
6486 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03006487 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
6488 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
6489
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006490 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
6491 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006492}
6493
Daniel Vetterf6a83282014-02-11 15:28:57 -08006494void intel_mode_from_pipe_config(struct drm_display_mode *mode,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006495 struct intel_crtc_state *pipe_config)
Jesse Barnesbabea612013-06-26 18:57:38 +03006496{
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006497 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
6498 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
6499 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
6500 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03006501
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006502 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
6503 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
6504 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
6505 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03006506
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006507 mode->flags = pipe_config->base.adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03006508
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006509 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
6510 mode->flags |= pipe_config->base.adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03006511}
6512
Daniel Vetter84b046f2013-02-19 18:48:54 +01006513static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
6514{
6515 struct drm_device *dev = intel_crtc->base.dev;
6516 struct drm_i915_private *dev_priv = dev->dev_private;
6517 uint32_t pipeconf;
6518
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02006519 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01006520
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03006521 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
6522 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
6523 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
Daniel Vetter67c72a12013-09-24 11:46:14 +02006524
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006525 if (intel_crtc->config->double_wide)
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006526 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01006527
Daniel Vetterff9ce462013-04-24 14:57:17 +02006528 /* only g4x and later have fancy bpc/dither controls */
6529 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02006530 /* Bspec claims that we can't use dithering for 30bpp pipes. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006531 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
Daniel Vetterff9ce462013-04-24 14:57:17 +02006532 pipeconf |= PIPECONF_DITHER_EN |
6533 PIPECONF_DITHER_TYPE_SP;
6534
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006535 switch (intel_crtc->config->pipe_bpp) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02006536 case 18:
6537 pipeconf |= PIPECONF_6BPC;
6538 break;
6539 case 24:
6540 pipeconf |= PIPECONF_8BPC;
6541 break;
6542 case 30:
6543 pipeconf |= PIPECONF_10BPC;
6544 break;
6545 default:
6546 /* Case prevented by intel_choose_pipe_bpp_dither. */
6547 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01006548 }
6549 }
6550
6551 if (HAS_PIPE_CXSR(dev)) {
6552 if (intel_crtc->lowfreq_avail) {
6553 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
6554 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
6555 } else {
6556 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01006557 }
6558 }
6559
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006560 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02006561 if (INTEL_INFO(dev)->gen < 4 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006562 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02006563 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
6564 else
6565 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
6566 } else
Daniel Vetter84b046f2013-02-19 18:48:54 +01006567 pipeconf |= PIPECONF_PROGRESSIVE;
6568
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006569 if (IS_VALLEYVIEW(dev) && intel_crtc->config->limited_color_range)
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02006570 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03006571
Daniel Vetter84b046f2013-02-19 18:48:54 +01006572 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
6573 POSTING_READ(PIPECONF(intel_crtc->pipe));
6574}
6575
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006576static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
6577 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08006578{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03006579 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08006580 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholtc751ce42010-03-25 11:48:48 -07006581 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07006582 intel_clock_t clock, reduced_clock;
Daniel Vettera16af722013-04-30 14:01:44 +02006583 bool ok, has_reduced_clock = false;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006584 bool is_lvds = false, is_dsi = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01006585 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08006586 const intel_limit_t *limit;
Jesse Barnes79e53942008-11-07 14:24:08 -08006587
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006588 for_each_intel_encoder(dev, encoder) {
6589 if (encoder->new_crtc != crtc)
6590 continue;
6591
Chris Wilson5eddb702010-09-11 13:48:45 +01006592 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006593 case INTEL_OUTPUT_LVDS:
6594 is_lvds = true;
6595 break;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006596 case INTEL_OUTPUT_DSI:
6597 is_dsi = true;
6598 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02006599 default:
6600 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08006601 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05006602
Eric Anholtc751ce42010-03-25 11:48:48 -07006603 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08006604 }
6605
Jani Nikulaf2335332013-09-13 11:03:09 +03006606 if (is_dsi)
Daniel Vetter5b18e572014-04-24 23:55:06 +02006607 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006608
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006609 if (!crtc_state->clock_set) {
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006610 refclk = i9xx_get_refclk(crtc, num_connectors);
Jani Nikulaf2335332013-09-13 11:03:09 +03006611
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006612 /*
6613 * Returns a set of divisors for the desired target clock with
6614 * the given refclk, or FALSE. The returned values represent
6615 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
6616 * 2) / p1 / p2.
6617 */
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006618 limit = intel_limit(crtc, refclk);
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03006619 ok = dev_priv->display.find_dpll(limit, crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006620 crtc_state->port_clock,
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006621 refclk, NULL, &clock);
Jani Nikulaf2335332013-09-13 11:03:09 +03006622 if (!ok) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006623 DRM_ERROR("Couldn't find PLL settings for mode!\n");
6624 return -EINVAL;
6625 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006626
Jani Nikulaf2335332013-09-13 11:03:09 +03006627 if (is_lvds && dev_priv->lvds_downclock_avail) {
6628 /*
6629 * Ensure we match the reduced clock's P to the target
6630 * clock. If the clocks don't match, we can't switch
6631 * the display clock by using the FP0/FP1. In such case
6632 * we will disable the LVDS downclock feature.
6633 */
6634 has_reduced_clock =
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03006635 dev_priv->display.find_dpll(limit, crtc,
Jani Nikulaf2335332013-09-13 11:03:09 +03006636 dev_priv->lvds_downclock,
6637 refclk, &clock,
6638 &reduced_clock);
6639 }
6640 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006641 crtc_state->dpll.n = clock.n;
6642 crtc_state->dpll.m1 = clock.m1;
6643 crtc_state->dpll.m2 = clock.m2;
6644 crtc_state->dpll.p1 = clock.p1;
6645 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01006646 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006647
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006648 if (IS_GEN2(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006649 i8xx_update_pll(crtc, crtc_state,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05306650 has_reduced_clock ? &reduced_clock : NULL,
6651 num_connectors);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006652 } else if (IS_CHERRYVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006653 chv_update_pll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006654 } else if (IS_VALLEYVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006655 vlv_update_pll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006656 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006657 i9xx_update_pll(crtc, crtc_state,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006658 has_reduced_clock ? &reduced_clock : NULL,
Robin Schroereba905b2014-05-18 02:24:50 +02006659 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006660 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006661
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02006662 return 0;
Eric Anholtf564048e2011-03-30 13:01:02 -07006663}
6664
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006665static void i9xx_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006666 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006667{
6668 struct drm_device *dev = crtc->base.dev;
6669 struct drm_i915_private *dev_priv = dev->dev_private;
6670 uint32_t tmp;
6671
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02006672 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
6673 return;
6674
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006675 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02006676 if (!(tmp & PFIT_ENABLE))
6677 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006678
Daniel Vetter06922822013-07-11 13:35:40 +02006679 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006680 if (INTEL_INFO(dev)->gen < 4) {
6681 if (crtc->pipe != PIPE_B)
6682 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006683 } else {
6684 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
6685 return;
6686 }
6687
Daniel Vetter06922822013-07-11 13:35:40 +02006688 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006689 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
6690 if (INTEL_INFO(dev)->gen < 5)
6691 pipe_config->gmch_pfit.lvds_border_bits =
6692 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
6693}
6694
Jesse Barnesacbec812013-09-20 11:29:32 -07006695static void vlv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006696 struct intel_crtc_state *pipe_config)
Jesse Barnesacbec812013-09-20 11:29:32 -07006697{
6698 struct drm_device *dev = crtc->base.dev;
6699 struct drm_i915_private *dev_priv = dev->dev_private;
6700 int pipe = pipe_config->cpu_transcoder;
6701 intel_clock_t clock;
6702 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07006703 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07006704
Shobhit Kumarf573de52014-07-30 20:32:37 +05306705 /* In case of MIPI DPLL will not even be used */
6706 if (!(pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE))
6707 return;
6708
Jesse Barnesacbec812013-09-20 11:29:32 -07006709 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006710 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
Jesse Barnesacbec812013-09-20 11:29:32 -07006711 mutex_unlock(&dev_priv->dpio_lock);
6712
6713 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
6714 clock.m2 = mdiv & DPIO_M2DIV_MASK;
6715 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
6716 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
6717 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
6718
Ville Syrjäläf6466282013-10-14 14:50:31 +03006719 vlv_clock(refclk, &clock);
Jesse Barnesacbec812013-09-20 11:29:32 -07006720
Ville Syrjäläf6466282013-10-14 14:50:31 +03006721 /* clock.dot is the fast clock */
6722 pipe_config->port_clock = clock.dot / 5;
Jesse Barnesacbec812013-09-20 11:29:32 -07006723}
6724
Damien Lespiau5724dbd2015-01-20 12:51:52 +00006725static void
6726i9xx_get_initial_plane_config(struct intel_crtc *crtc,
6727 struct intel_initial_plane_config *plane_config)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006728{
6729 struct drm_device *dev = crtc->base.dev;
6730 struct drm_i915_private *dev_priv = dev->dev_private;
6731 u32 val, base, offset;
6732 int pipe = crtc->pipe, plane = crtc->plane;
6733 int fourcc, pixel_format;
6734 int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006735 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00006736 struct intel_framebuffer *intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006737
Damien Lespiau42a7b082015-02-05 19:35:13 +00006738 val = I915_READ(DSPCNTR(plane));
6739 if (!(val & DISPLAY_PLANE_ENABLE))
6740 return;
6741
Damien Lespiaud9806c92015-01-21 14:07:19 +00006742 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00006743 if (!intel_fb) {
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006744 DRM_DEBUG_KMS("failed to alloc fb\n");
6745 return;
6746 }
6747
Damien Lespiau1b842c82015-01-21 13:50:54 +00006748 fb = &intel_fb->base;
6749
Daniel Vetter18c52472015-02-10 17:16:09 +00006750 if (INTEL_INFO(dev)->gen >= 4) {
6751 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00006752 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00006753 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
6754 }
6755 }
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006756
6757 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00006758 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006759 fb->pixel_format = fourcc;
6760 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006761
6762 if (INTEL_INFO(dev)->gen >= 4) {
Damien Lespiau49af4492015-01-20 12:51:44 +00006763 if (plane_config->tiling)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006764 offset = I915_READ(DSPTILEOFF(plane));
6765 else
6766 offset = I915_READ(DSPLINOFF(plane));
6767 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
6768 } else {
6769 base = I915_READ(DSPADDR(plane));
6770 }
6771 plane_config->base = base;
6772
6773 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006774 fb->width = ((val >> 16) & 0xfff) + 1;
6775 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006776
6777 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006778 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006779
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006780 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00006781 fb->pixel_format,
6782 fb->modifier[0]);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006783
Daniel Vetterf37b5c22015-02-10 23:12:27 +01006784 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006785
Damien Lespiau2844a922015-01-20 12:51:48 +00006786 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
6787 pipe_name(pipe), plane, fb->width, fb->height,
6788 fb->bits_per_pixel, base, fb->pitches[0],
6789 plane_config->size);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006790
Damien Lespiau2d140302015-02-05 17:22:18 +00006791 plane_config->fb = intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006792}
6793
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006794static void chv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006795 struct intel_crtc_state *pipe_config)
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006796{
6797 struct drm_device *dev = crtc->base.dev;
6798 struct drm_i915_private *dev_priv = dev->dev_private;
6799 int pipe = pipe_config->cpu_transcoder;
6800 enum dpio_channel port = vlv_pipe_to_channel(pipe);
6801 intel_clock_t clock;
6802 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2;
6803 int refclk = 100000;
6804
6805 mutex_lock(&dev_priv->dpio_lock);
6806 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
6807 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
6808 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
6809 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
6810 mutex_unlock(&dev_priv->dpio_lock);
6811
6812 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
6813 clock.m2 = ((pll_dw0 & 0xff) << 22) | (pll_dw2 & 0x3fffff);
6814 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
6815 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
6816 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
6817
6818 chv_clock(refclk, &clock);
6819
6820 /* clock.dot is the fast clock */
6821 pipe_config->port_clock = clock.dot / 5;
6822}
6823
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006824static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006825 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006826{
6827 struct drm_device *dev = crtc->base.dev;
6828 struct drm_i915_private *dev_priv = dev->dev_private;
6829 uint32_t tmp;
6830
Daniel Vetterf458ebb2014-09-30 10:56:39 +02006831 if (!intel_display_power_is_enabled(dev_priv,
6832 POWER_DOMAIN_PIPE(crtc->pipe)))
Imre Deakb5482bd2014-03-05 16:20:55 +02006833 return false;
6834
Daniel Vettere143a212013-07-04 12:01:15 +02006835 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02006836 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02006837
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006838 tmp = I915_READ(PIPECONF(crtc->pipe));
6839 if (!(tmp & PIPECONF_ENABLE))
6840 return false;
6841
Ville Syrjälä42571ae2013-09-06 23:29:00 +03006842 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
6843 switch (tmp & PIPECONF_BPC_MASK) {
6844 case PIPECONF_6BPC:
6845 pipe_config->pipe_bpp = 18;
6846 break;
6847 case PIPECONF_8BPC:
6848 pipe_config->pipe_bpp = 24;
6849 break;
6850 case PIPECONF_10BPC:
6851 pipe_config->pipe_bpp = 30;
6852 break;
6853 default:
6854 break;
6855 }
6856 }
6857
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02006858 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
6859 pipe_config->limited_color_range = true;
6860
Ville Syrjälä282740f2013-09-04 18:30:03 +03006861 if (INTEL_INFO(dev)->gen < 4)
6862 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
6863
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006864 intel_get_pipe_timings(crtc, pipe_config);
6865
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006866 i9xx_get_pfit_config(crtc, pipe_config);
6867
Daniel Vetter6c49f242013-06-06 12:45:25 +02006868 if (INTEL_INFO(dev)->gen >= 4) {
6869 tmp = I915_READ(DPLL_MD(crtc->pipe));
6870 pipe_config->pixel_multiplier =
6871 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
6872 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006873 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02006874 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
6875 tmp = I915_READ(DPLL(crtc->pipe));
6876 pipe_config->pixel_multiplier =
6877 ((tmp & SDVO_MULTIPLIER_MASK)
6878 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
6879 } else {
6880 /* Note that on i915G/GM the pixel multiplier is in the sdvo
6881 * port and will be fixed up in the encoder->get_config
6882 * function. */
6883 pipe_config->pixel_multiplier = 1;
6884 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006885 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
6886 if (!IS_VALLEYVIEW(dev)) {
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03006887 /*
6888 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
6889 * on 830. Filter it out here so that we don't
6890 * report errors due to that.
6891 */
6892 if (IS_I830(dev))
6893 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
6894
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006895 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
6896 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03006897 } else {
6898 /* Mask out read-only status bits. */
6899 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
6900 DPLL_PORTC_READY_MASK |
6901 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006902 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02006903
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006904 if (IS_CHERRYVIEW(dev))
6905 chv_crtc_clock_get(crtc, pipe_config);
6906 else if (IS_VALLEYVIEW(dev))
Jesse Barnesacbec812013-09-20 11:29:32 -07006907 vlv_crtc_clock_get(crtc, pipe_config);
6908 else
6909 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03006910
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006911 return true;
6912}
6913
Paulo Zanonidde86e22012-12-01 12:04:25 -02006914static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07006915{
6916 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006917 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006918 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006919 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006920 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006921 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07006922 bool has_ck505 = false;
6923 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006924
6925 /* We need to take the global config into account */
Damien Lespiaub2784e12014-08-05 11:29:37 +01006926 for_each_intel_encoder(dev, encoder) {
Keith Packard199e5d72011-09-22 12:01:57 -07006927 switch (encoder->type) {
6928 case INTEL_OUTPUT_LVDS:
6929 has_panel = true;
6930 has_lvds = true;
6931 break;
6932 case INTEL_OUTPUT_EDP:
6933 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03006934 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07006935 has_cpu_edp = true;
6936 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02006937 default:
6938 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006939 }
6940 }
6941
Keith Packard99eb6a02011-09-26 14:29:12 -07006942 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006943 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07006944 can_ssc = has_ck505;
6945 } else {
6946 has_ck505 = false;
6947 can_ssc = true;
6948 }
6949
Imre Deak2de69052013-05-08 13:14:04 +03006950 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
6951 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006952
6953 /* Ironlake: try to setup display ref clock before DPLL
6954 * enabling. This is only under driver's control after
6955 * PCH B stepping, previous chipset stepping should be
6956 * ignoring this setting.
6957 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006958 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006959
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006960 /* As we must carefully and slowly disable/enable each source in turn,
6961 * compute the final state we want first and check if we need to
6962 * make any changes at all.
6963 */
6964 final = val;
6965 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07006966 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006967 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07006968 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006969 final |= DREF_NONSPREAD_SOURCE_ENABLE;
6970
6971 final &= ~DREF_SSC_SOURCE_MASK;
6972 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
6973 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006974
Keith Packard199e5d72011-09-22 12:01:57 -07006975 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006976 final |= DREF_SSC_SOURCE_ENABLE;
6977
6978 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6979 final |= DREF_SSC1_ENABLE;
6980
6981 if (has_cpu_edp) {
6982 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6983 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
6984 else
6985 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
6986 } else
6987 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6988 } else {
6989 final |= DREF_SSC_SOURCE_DISABLE;
6990 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6991 }
6992
6993 if (final == val)
6994 return;
6995
6996 /* Always enable nonspread source */
6997 val &= ~DREF_NONSPREAD_SOURCE_MASK;
6998
6999 if (has_ck505)
7000 val |= DREF_NONSPREAD_CK505_ENABLE;
7001 else
7002 val |= DREF_NONSPREAD_SOURCE_ENABLE;
7003
7004 if (has_panel) {
7005 val &= ~DREF_SSC_SOURCE_MASK;
7006 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007007
Keith Packard199e5d72011-09-22 12:01:57 -07007008 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07007009 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07007010 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007011 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02007012 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007013 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007014
7015 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007016 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07007017 POSTING_READ(PCH_DREF_CONTROL);
7018 udelay(200);
7019
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007020 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007021
7022 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07007023 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07007024 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07007025 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007026 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Robin Schroereba905b2014-05-18 02:24:50 +02007027 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007028 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07007029 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007030 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007031
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007032 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07007033 POSTING_READ(PCH_DREF_CONTROL);
7034 udelay(200);
7035 } else {
7036 DRM_DEBUG_KMS("Disabling SSC entirely\n");
7037
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007038 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07007039
7040 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007041 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007042
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007043 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07007044 POSTING_READ(PCH_DREF_CONTROL);
7045 udelay(200);
7046
7047 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007048 val &= ~DREF_SSC_SOURCE_MASK;
7049 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007050
7051 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007052 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007053
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007054 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07007055 POSTING_READ(PCH_DREF_CONTROL);
7056 udelay(200);
7057 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007058
7059 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07007060}
7061
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007062static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02007063{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007064 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02007065
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007066 tmp = I915_READ(SOUTH_CHICKEN2);
7067 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
7068 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007069
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007070 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
7071 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
7072 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02007073
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007074 tmp = I915_READ(SOUTH_CHICKEN2);
7075 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
7076 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007077
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007078 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
7079 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
7080 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007081}
7082
7083/* WaMPhyProgramming:hsw */
7084static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
7085{
7086 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02007087
7088 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
7089 tmp &= ~(0xFF << 24);
7090 tmp |= (0x12 << 24);
7091 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
7092
Paulo Zanonidde86e22012-12-01 12:04:25 -02007093 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
7094 tmp |= (1 << 11);
7095 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
7096
7097 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
7098 tmp |= (1 << 11);
7099 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
7100
Paulo Zanonidde86e22012-12-01 12:04:25 -02007101 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
7102 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
7103 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
7104
7105 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
7106 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
7107 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
7108
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007109 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
7110 tmp &= ~(7 << 13);
7111 tmp |= (5 << 13);
7112 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007113
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007114 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
7115 tmp &= ~(7 << 13);
7116 tmp |= (5 << 13);
7117 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007118
7119 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
7120 tmp &= ~0xFF;
7121 tmp |= 0x1C;
7122 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
7123
7124 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
7125 tmp &= ~0xFF;
7126 tmp |= 0x1C;
7127 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
7128
7129 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
7130 tmp &= ~(0xFF << 16);
7131 tmp |= (0x1C << 16);
7132 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
7133
7134 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
7135 tmp &= ~(0xFF << 16);
7136 tmp |= (0x1C << 16);
7137 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
7138
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007139 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
7140 tmp |= (1 << 27);
7141 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007142
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007143 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
7144 tmp |= (1 << 27);
7145 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007146
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007147 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
7148 tmp &= ~(0xF << 28);
7149 tmp |= (4 << 28);
7150 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007151
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007152 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
7153 tmp &= ~(0xF << 28);
7154 tmp |= (4 << 28);
7155 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007156}
7157
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007158/* Implements 3 different sequences from BSpec chapter "Display iCLK
7159 * Programming" based on the parameters passed:
7160 * - Sequence to enable CLKOUT_DP
7161 * - Sequence to enable CLKOUT_DP without spread
7162 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
7163 */
7164static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
7165 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007166{
7167 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007168 uint32_t reg, tmp;
7169
7170 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
7171 with_spread = true;
7172 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
7173 with_fdi, "LP PCH doesn't have FDI\n"))
7174 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007175
7176 mutex_lock(&dev_priv->dpio_lock);
7177
7178 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7179 tmp &= ~SBI_SSCCTL_DISABLE;
7180 tmp |= SBI_SSCCTL_PATHALT;
7181 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7182
7183 udelay(24);
7184
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007185 if (with_spread) {
7186 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7187 tmp &= ~SBI_SSCCTL_PATHALT;
7188 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007189
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007190 if (with_fdi) {
7191 lpt_reset_fdi_mphy(dev_priv);
7192 lpt_program_fdi_mphy(dev_priv);
7193 }
7194 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02007195
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007196 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
7197 SBI_GEN0 : SBI_DBUFF0;
7198 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
7199 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
7200 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01007201
7202 mutex_unlock(&dev_priv->dpio_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007203}
7204
Paulo Zanoni47701c32013-07-23 11:19:25 -03007205/* Sequence to disable CLKOUT_DP */
7206static void lpt_disable_clkout_dp(struct drm_device *dev)
7207{
7208 struct drm_i915_private *dev_priv = dev->dev_private;
7209 uint32_t reg, tmp;
7210
7211 mutex_lock(&dev_priv->dpio_lock);
7212
7213 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
7214 SBI_GEN0 : SBI_DBUFF0;
7215 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
7216 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
7217 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
7218
7219 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7220 if (!(tmp & SBI_SSCCTL_DISABLE)) {
7221 if (!(tmp & SBI_SSCCTL_PATHALT)) {
7222 tmp |= SBI_SSCCTL_PATHALT;
7223 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7224 udelay(32);
7225 }
7226 tmp |= SBI_SSCCTL_DISABLE;
7227 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7228 }
7229
7230 mutex_unlock(&dev_priv->dpio_lock);
7231}
7232
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007233static void lpt_init_pch_refclk(struct drm_device *dev)
7234{
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007235 struct intel_encoder *encoder;
7236 bool has_vga = false;
7237
Damien Lespiaub2784e12014-08-05 11:29:37 +01007238 for_each_intel_encoder(dev, encoder) {
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007239 switch (encoder->type) {
7240 case INTEL_OUTPUT_ANALOG:
7241 has_vga = true;
7242 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007243 default:
7244 break;
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007245 }
7246 }
7247
Paulo Zanoni47701c32013-07-23 11:19:25 -03007248 if (has_vga)
7249 lpt_enable_clkout_dp(dev, true, true);
7250 else
7251 lpt_disable_clkout_dp(dev);
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007252}
7253
Paulo Zanonidde86e22012-12-01 12:04:25 -02007254/*
7255 * Initialize reference clocks when the driver loads
7256 */
7257void intel_init_pch_refclk(struct drm_device *dev)
7258{
7259 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
7260 ironlake_init_pch_refclk(dev);
7261 else if (HAS_PCH_LPT(dev))
7262 lpt_init_pch_refclk(dev);
7263}
7264
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007265static int ironlake_get_refclk(struct drm_crtc *crtc)
7266{
7267 struct drm_device *dev = crtc->dev;
7268 struct drm_i915_private *dev_priv = dev->dev_private;
7269 struct intel_encoder *encoder;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007270 int num_connectors = 0;
7271 bool is_lvds = false;
7272
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02007273 for_each_intel_encoder(dev, encoder) {
7274 if (encoder->new_crtc != to_intel_crtc(crtc))
7275 continue;
7276
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007277 switch (encoder->type) {
7278 case INTEL_OUTPUT_LVDS:
7279 is_lvds = true;
7280 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007281 default:
7282 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007283 }
7284 num_connectors++;
7285 }
7286
7287 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007288 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03007289 dev_priv->vbt.lvds_ssc_freq);
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007290 return dev_priv->vbt.lvds_ssc_freq;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007291 }
7292
7293 return 120000;
7294}
7295
Daniel Vetter6ff93602013-04-19 11:24:36 +02007296static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03007297{
7298 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
7299 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7300 int pipe = intel_crtc->pipe;
7301 uint32_t val;
7302
Daniel Vetter78114072013-06-13 00:54:57 +02007303 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03007304
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007305 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03007306 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007307 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007308 break;
7309 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007310 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007311 break;
7312 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007313 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007314 break;
7315 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007316 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007317 break;
7318 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03007319 /* Case prevented by intel_choose_pipe_bpp_dither. */
7320 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03007321 }
7322
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007323 if (intel_crtc->config->dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03007324 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
7325
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007326 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03007327 val |= PIPECONF_INTERLACED_ILK;
7328 else
7329 val |= PIPECONF_PROGRESSIVE;
7330
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007331 if (intel_crtc->config->limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02007332 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02007333
Paulo Zanonic8203562012-09-12 10:06:29 -03007334 I915_WRITE(PIPECONF(pipe), val);
7335 POSTING_READ(PIPECONF(pipe));
7336}
7337
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007338/*
7339 * Set up the pipe CSC unit.
7340 *
7341 * Currently only full range RGB to limited range RGB conversion
7342 * is supported, but eventually this should handle various
7343 * RGB<->YCbCr scenarios as well.
7344 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01007345static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007346{
7347 struct drm_device *dev = crtc->dev;
7348 struct drm_i915_private *dev_priv = dev->dev_private;
7349 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7350 int pipe = intel_crtc->pipe;
7351 uint16_t coeff = 0x7800; /* 1.0 */
7352
7353 /*
7354 * TODO: Check what kind of values actually come out of the pipe
7355 * with these coeff/postoff values and adjust to get the best
7356 * accuracy. Perhaps we even need to take the bpc value into
7357 * consideration.
7358 */
7359
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007360 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007361 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
7362
7363 /*
7364 * GY/GU and RY/RU should be the other way around according
7365 * to BSpec, but reality doesn't agree. Just set them up in
7366 * a way that results in the correct picture.
7367 */
7368 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
7369 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
7370
7371 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
7372 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
7373
7374 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
7375 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
7376
7377 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
7378 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
7379 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
7380
7381 if (INTEL_INFO(dev)->gen > 6) {
7382 uint16_t postoff = 0;
7383
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007384 if (intel_crtc->config->limited_color_range)
Ville Syrjälä32cf0cb2013-11-28 22:10:38 +02007385 postoff = (16 * (1 << 12) / 255) & 0x1fff;
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007386
7387 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
7388 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
7389 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
7390
7391 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
7392 } else {
7393 uint32_t mode = CSC_MODE_YUV_TO_RGB;
7394
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007395 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007396 mode |= CSC_BLACK_SCREEN_OFFSET;
7397
7398 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
7399 }
7400}
7401
Daniel Vetter6ff93602013-04-19 11:24:36 +02007402static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007403{
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007404 struct drm_device *dev = crtc->dev;
7405 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007406 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007407 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007408 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007409 uint32_t val;
7410
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02007411 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007412
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007413 if (IS_HASWELL(dev) && intel_crtc->config->dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007414 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
7415
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007416 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007417 val |= PIPECONF_INTERLACED_ILK;
7418 else
7419 val |= PIPECONF_PROGRESSIVE;
7420
Paulo Zanoni702e7a52012-10-23 18:29:59 -02007421 I915_WRITE(PIPECONF(cpu_transcoder), val);
7422 POSTING_READ(PIPECONF(cpu_transcoder));
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02007423
7424 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
7425 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007426
Satheeshakrishna M3cdf1222014-04-08 15:46:53 +05307427 if (IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007428 val = 0;
7429
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007430 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007431 case 18:
7432 val |= PIPEMISC_DITHER_6_BPC;
7433 break;
7434 case 24:
7435 val |= PIPEMISC_DITHER_8_BPC;
7436 break;
7437 case 30:
7438 val |= PIPEMISC_DITHER_10_BPC;
7439 break;
7440 case 36:
7441 val |= PIPEMISC_DITHER_12_BPC;
7442 break;
7443 default:
7444 /* Case prevented by pipe_config_set_bpp. */
7445 BUG();
7446 }
7447
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007448 if (intel_crtc->config->dither)
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007449 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
7450
7451 I915_WRITE(PIPEMISC(pipe), val);
7452 }
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007453}
7454
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007455static bool ironlake_compute_clocks(struct drm_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007456 struct intel_crtc_state *crtc_state,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007457 intel_clock_t *clock,
7458 bool *has_reduced_clock,
7459 intel_clock_t *reduced_clock)
7460{
7461 struct drm_device *dev = crtc->dev;
7462 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +03007463 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007464 int refclk;
7465 const intel_limit_t *limit;
Daniel Vettera16af722013-04-30 14:01:44 +02007466 bool ret, is_lvds = false;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007467
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02007468 is_lvds = intel_pipe_will_have_type(intel_crtc, INTEL_OUTPUT_LVDS);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007469
7470 refclk = ironlake_get_refclk(crtc);
7471
7472 /*
7473 * Returns a set of divisors for the desired target clock with the given
7474 * refclk, or FALSE. The returned values represent the clock equation:
7475 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
7476 */
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007477 limit = intel_limit(intel_crtc, refclk);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +03007478 ret = dev_priv->display.find_dpll(limit, intel_crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007479 crtc_state->port_clock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02007480 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007481 if (!ret)
7482 return false;
7483
7484 if (is_lvds && dev_priv->lvds_downclock_avail) {
7485 /*
7486 * Ensure we match the reduced clock's P to the target clock.
7487 * If the clocks don't match, we can't switch the display clock
7488 * by using the FP0/FP1. In such case we will disable the LVDS
7489 * downclock feature.
7490 */
Daniel Vetteree9300b2013-06-03 22:40:22 +02007491 *has_reduced_clock =
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +03007492 dev_priv->display.find_dpll(limit, intel_crtc,
Daniel Vetteree9300b2013-06-03 22:40:22 +02007493 dev_priv->lvds_downclock,
7494 refclk, clock,
7495 reduced_clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007496 }
7497
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007498 return true;
7499}
7500
Paulo Zanonid4b19312012-11-29 11:29:32 -02007501int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
7502{
7503 /*
7504 * Account for spread spectrum to avoid
7505 * oversubscribing the link. Max center spread
7506 * is 2.5%; use 5% for safety's sake.
7507 */
7508 u32 bps = target_clock * bpp * 21 / 20;
Ville Syrjälä619d4d02014-02-27 14:23:14 +02007509 return DIV_ROUND_UP(bps, link_bw * 8);
Paulo Zanonid4b19312012-11-29 11:29:32 -02007510}
7511
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007512static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02007513{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007514 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03007515}
7516
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007517static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007518 struct intel_crtc_state *crtc_state,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007519 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02007520 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007521{
7522 struct drm_crtc *crtc = &intel_crtc->base;
7523 struct drm_device *dev = crtc->dev;
7524 struct drm_i915_private *dev_priv = dev->dev_private;
7525 struct intel_encoder *intel_encoder;
7526 uint32_t dpll;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01007527 int factor, num_connectors = 0;
Daniel Vetter09ede542013-04-30 14:01:45 +02007528 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007529
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02007530 for_each_intel_encoder(dev, intel_encoder) {
7531 if (intel_encoder->new_crtc != to_intel_crtc(crtc))
7532 continue;
7533
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007534 switch (intel_encoder->type) {
7535 case INTEL_OUTPUT_LVDS:
7536 is_lvds = true;
7537 break;
7538 case INTEL_OUTPUT_SDVO:
7539 case INTEL_OUTPUT_HDMI:
7540 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007541 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007542 default:
7543 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007544 }
7545
7546 num_connectors++;
7547 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007548
Chris Wilsonc1858122010-12-03 21:35:48 +00007549 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07007550 factor = 21;
7551 if (is_lvds) {
7552 if ((intel_panel_use_ssc(dev_priv) &&
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007553 dev_priv->vbt.lvds_ssc_freq == 100000) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02007554 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07007555 factor = 25;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007556 } else if (crtc_state->sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07007557 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00007558
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007559 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02007560 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00007561
Daniel Vetter9a7c7892013-04-04 22:20:34 +02007562 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
7563 *fp2 |= FP_CB_TUNE;
7564
Chris Wilson5eddb702010-09-11 13:48:45 +01007565 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08007566
Eric Anholta07d6782011-03-30 13:01:08 -07007567 if (is_lvds)
7568 dpll |= DPLLB_MODE_LVDS;
7569 else
7570 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007571
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007572 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02007573 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007574
7575 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007576 dpll |= DPLL_SDVO_HIGH_SPEED;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007577 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007578 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08007579
Eric Anholta07d6782011-03-30 13:01:08 -07007580 /* compute bitmask from p1 value */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007581 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07007582 /* also FPA1 */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007583 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07007584
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007585 switch (crtc_state->dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07007586 case 5:
7587 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
7588 break;
7589 case 7:
7590 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
7591 break;
7592 case 10:
7593 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
7594 break;
7595 case 14:
7596 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
7597 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08007598 }
7599
Daniel Vetterb4c09f32013-04-30 14:01:42 +02007600 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05007601 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08007602 else
7603 dpll |= PLL_REF_INPUT_DREFCLK;
7604
Daniel Vetter959e16d2013-06-05 13:34:21 +02007605 return dpll | DPLL_VCO_ENABLE;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007606}
7607
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007608static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
7609 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08007610{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007611 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08007612 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007613 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03007614 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01007615 bool is_lvds = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02007616 struct intel_shared_dpll *pll;
Jesse Barnes79e53942008-11-07 14:24:08 -08007617
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007618 is_lvds = intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS);
Jesse Barnes79e53942008-11-07 14:24:08 -08007619
Paulo Zanoni5dc52982012-10-05 12:05:56 -03007620 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
7621 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
7622
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007623 ok = ironlake_compute_clocks(&crtc->base, crtc_state, &clock,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007624 &has_reduced_clock, &reduced_clock);
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007625 if (!ok && !crtc_state->clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08007626 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7627 return -EINVAL;
7628 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01007629 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007630 if (!crtc_state->clock_set) {
7631 crtc_state->dpll.n = clock.n;
7632 crtc_state->dpll.m1 = clock.m1;
7633 crtc_state->dpll.m2 = clock.m2;
7634 crtc_state->dpll.p1 = clock.p1;
7635 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01007636 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007637
Paulo Zanoni5dc52982012-10-05 12:05:56 -03007638 /* 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 +02007639 if (crtc_state->has_pch_encoder) {
7640 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007641 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007642 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007643
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007644 dpll = ironlake_compute_dpll(crtc, crtc_state,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007645 &fp, &reduced_clock,
7646 has_reduced_clock ? &fp2 : NULL);
7647
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007648 crtc_state->dpll_hw_state.dpll = dpll;
7649 crtc_state->dpll_hw_state.fp0 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02007650 if (has_reduced_clock)
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007651 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetter66e985c2013-06-05 13:34:20 +02007652 else
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007653 crtc_state->dpll_hw_state.fp1 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02007654
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007655 pll = intel_get_shared_dpll(crtc, crtc_state);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01007656 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03007657 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007658 pipe_name(crtc->pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07007659 return -EINVAL;
7660 }
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +02007661 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007662
Jani Nikulad330a952014-01-21 11:24:25 +02007663 if (is_lvds && has_reduced_clock && i915.powersave)
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007664 crtc->lowfreq_avail = true;
Daniel Vetterbcd644e2013-06-05 13:34:22 +02007665 else
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007666 crtc->lowfreq_avail = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02007667
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007668 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007669}
7670
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007671static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
7672 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02007673{
7674 struct drm_device *dev = crtc->base.dev;
7675 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007676 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02007677
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007678 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
7679 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
7680 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
7681 & ~TU_SIZE_MASK;
7682 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
7683 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
7684 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7685}
7686
7687static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
7688 enum transcoder transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007689 struct intel_link_m_n *m_n,
7690 struct intel_link_m_n *m2_n2)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007691{
7692 struct drm_device *dev = crtc->base.dev;
7693 struct drm_i915_private *dev_priv = dev->dev_private;
7694 enum pipe pipe = crtc->pipe;
7695
7696 if (INTEL_INFO(dev)->gen >= 5) {
7697 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
7698 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
7699 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
7700 & ~TU_SIZE_MASK;
7701 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
7702 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
7703 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007704 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
7705 * gen < 8) and if DRRS is supported (to make sure the
7706 * registers are not unnecessarily read).
7707 */
7708 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007709 crtc->config->has_drrs) {
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007710 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
7711 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
7712 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
7713 & ~TU_SIZE_MASK;
7714 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
7715 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
7716 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7717 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007718 } else {
7719 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
7720 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
7721 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
7722 & ~TU_SIZE_MASK;
7723 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
7724 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
7725 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7726 }
7727}
7728
7729void intel_dp_get_m_n(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007730 struct intel_crtc_state *pipe_config)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007731{
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02007732 if (pipe_config->has_pch_encoder)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007733 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
7734 else
7735 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007736 &pipe_config->dp_m_n,
7737 &pipe_config->dp_m2_n2);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007738}
7739
Daniel Vetter72419202013-04-04 13:28:53 +02007740static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007741 struct intel_crtc_state *pipe_config)
Daniel Vetter72419202013-04-04 13:28:53 +02007742{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007743 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007744 &pipe_config->fdi_m_n, NULL);
Daniel Vetter72419202013-04-04 13:28:53 +02007745}
7746
Jesse Barnesbd2e2442014-11-13 17:51:47 +00007747static void skylake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007748 struct intel_crtc_state *pipe_config)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00007749{
7750 struct drm_device *dev = crtc->base.dev;
7751 struct drm_i915_private *dev_priv = dev->dev_private;
7752 uint32_t tmp;
7753
7754 tmp = I915_READ(PS_CTL(crtc->pipe));
7755
7756 if (tmp & PS_ENABLE) {
7757 pipe_config->pch_pfit.enabled = true;
7758 pipe_config->pch_pfit.pos = I915_READ(PS_WIN_POS(crtc->pipe));
7759 pipe_config->pch_pfit.size = I915_READ(PS_WIN_SZ(crtc->pipe));
7760 }
7761}
7762
Damien Lespiau5724dbd2015-01-20 12:51:52 +00007763static void
7764skylake_get_initial_plane_config(struct intel_crtc *crtc,
7765 struct intel_initial_plane_config *plane_config)
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007766{
7767 struct drm_device *dev = crtc->base.dev;
7768 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau40f46282015-02-27 11:15:21 +00007769 u32 val, base, offset, stride_mult, tiling;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007770 int pipe = crtc->pipe;
7771 int fourcc, pixel_format;
7772 int aligned_height;
7773 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00007774 struct intel_framebuffer *intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007775
Damien Lespiaud9806c92015-01-21 14:07:19 +00007776 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00007777 if (!intel_fb) {
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007778 DRM_DEBUG_KMS("failed to alloc fb\n");
7779 return;
7780 }
7781
Damien Lespiau1b842c82015-01-21 13:50:54 +00007782 fb = &intel_fb->base;
7783
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007784 val = I915_READ(PLANE_CTL(pipe, 0));
Damien Lespiau42a7b082015-02-05 19:35:13 +00007785 if (!(val & PLANE_CTL_ENABLE))
7786 goto error;
7787
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007788 pixel_format = val & PLANE_CTL_FORMAT_MASK;
7789 fourcc = skl_format_to_fourcc(pixel_format,
7790 val & PLANE_CTL_ORDER_RGBX,
7791 val & PLANE_CTL_ALPHA_MASK);
7792 fb->pixel_format = fourcc;
7793 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
7794
Damien Lespiau40f46282015-02-27 11:15:21 +00007795 tiling = val & PLANE_CTL_TILED_MASK;
7796 switch (tiling) {
7797 case PLANE_CTL_TILED_LINEAR:
7798 fb->modifier[0] = DRM_FORMAT_MOD_NONE;
7799 break;
7800 case PLANE_CTL_TILED_X:
7801 plane_config->tiling = I915_TILING_X;
7802 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
7803 break;
7804 case PLANE_CTL_TILED_Y:
7805 fb->modifier[0] = I915_FORMAT_MOD_Y_TILED;
7806 break;
7807 case PLANE_CTL_TILED_YF:
7808 fb->modifier[0] = I915_FORMAT_MOD_Yf_TILED;
7809 break;
7810 default:
7811 MISSING_CASE(tiling);
7812 goto error;
7813 }
7814
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007815 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
7816 plane_config->base = base;
7817
7818 offset = I915_READ(PLANE_OFFSET(pipe, 0));
7819
7820 val = I915_READ(PLANE_SIZE(pipe, 0));
7821 fb->height = ((val >> 16) & 0xfff) + 1;
7822 fb->width = ((val >> 0) & 0x1fff) + 1;
7823
7824 val = I915_READ(PLANE_STRIDE(pipe, 0));
Damien Lespiau40f46282015-02-27 11:15:21 +00007825 stride_mult = intel_fb_stride_alignment(dev, fb->modifier[0],
7826 fb->pixel_format);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007827 fb->pitches[0] = (val & 0x3ff) * stride_mult;
7828
7829 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00007830 fb->pixel_format,
7831 fb->modifier[0]);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007832
Daniel Vetterf37b5c22015-02-10 23:12:27 +01007833 plane_config->size = fb->pitches[0] * aligned_height;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007834
7835 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
7836 pipe_name(pipe), fb->width, fb->height,
7837 fb->bits_per_pixel, base, fb->pitches[0],
7838 plane_config->size);
7839
Damien Lespiau2d140302015-02-05 17:22:18 +00007840 plane_config->fb = intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007841 return;
7842
7843error:
7844 kfree(fb);
7845}
7846
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007847static void ironlake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007848 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007849{
7850 struct drm_device *dev = crtc->base.dev;
7851 struct drm_i915_private *dev_priv = dev->dev_private;
7852 uint32_t tmp;
7853
7854 tmp = I915_READ(PF_CTL(crtc->pipe));
7855
7856 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01007857 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007858 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
7859 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02007860
7861 /* We currently do not free assignements of panel fitters on
7862 * ivb/hsw (since we don't use the higher upscaling modes which
7863 * differentiates them) so just WARN about this case for now. */
7864 if (IS_GEN7(dev)) {
7865 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
7866 PF_PIPE_SEL_IVB(crtc->pipe));
7867 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007868 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007869}
7870
Damien Lespiau5724dbd2015-01-20 12:51:52 +00007871static void
7872ironlake_get_initial_plane_config(struct intel_crtc *crtc,
7873 struct intel_initial_plane_config *plane_config)
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007874{
7875 struct drm_device *dev = crtc->base.dev;
7876 struct drm_i915_private *dev_priv = dev->dev_private;
7877 u32 val, base, offset;
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007878 int pipe = crtc->pipe;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007879 int fourcc, pixel_format;
7880 int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007881 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00007882 struct intel_framebuffer *intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007883
Damien Lespiau42a7b082015-02-05 19:35:13 +00007884 val = I915_READ(DSPCNTR(pipe));
7885 if (!(val & DISPLAY_PLANE_ENABLE))
7886 return;
7887
Damien Lespiaud9806c92015-01-21 14:07:19 +00007888 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00007889 if (!intel_fb) {
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007890 DRM_DEBUG_KMS("failed to alloc fb\n");
7891 return;
7892 }
7893
Damien Lespiau1b842c82015-01-21 13:50:54 +00007894 fb = &intel_fb->base;
7895
Daniel Vetter18c52472015-02-10 17:16:09 +00007896 if (INTEL_INFO(dev)->gen >= 4) {
7897 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00007898 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00007899 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
7900 }
7901 }
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007902
7903 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00007904 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007905 fb->pixel_format = fourcc;
7906 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007907
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007908 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007909 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007910 offset = I915_READ(DSPOFFSET(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007911 } else {
Damien Lespiau49af4492015-01-20 12:51:44 +00007912 if (plane_config->tiling)
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007913 offset = I915_READ(DSPTILEOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007914 else
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007915 offset = I915_READ(DSPLINOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007916 }
7917 plane_config->base = base;
7918
7919 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007920 fb->width = ((val >> 16) & 0xfff) + 1;
7921 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007922
7923 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007924 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007925
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007926 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00007927 fb->pixel_format,
7928 fb->modifier[0]);
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007929
Daniel Vetterf37b5c22015-02-10 23:12:27 +01007930 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007931
Damien Lespiau2844a922015-01-20 12:51:48 +00007932 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
7933 pipe_name(pipe), fb->width, fb->height,
7934 fb->bits_per_pixel, base, fb->pitches[0],
7935 plane_config->size);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007936
Damien Lespiau2d140302015-02-05 17:22:18 +00007937 plane_config->fb = intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007938}
7939
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007940static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007941 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007942{
7943 struct drm_device *dev = crtc->base.dev;
7944 struct drm_i915_private *dev_priv = dev->dev_private;
7945 uint32_t tmp;
7946
Daniel Vetterf458ebb2014-09-30 10:56:39 +02007947 if (!intel_display_power_is_enabled(dev_priv,
7948 POWER_DOMAIN_PIPE(crtc->pipe)))
Paulo Zanoni930e8c92014-07-04 13:38:34 -03007949 return false;
7950
Daniel Vettere143a212013-07-04 12:01:15 +02007951 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007952 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02007953
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007954 tmp = I915_READ(PIPECONF(crtc->pipe));
7955 if (!(tmp & PIPECONF_ENABLE))
7956 return false;
7957
Ville Syrjälä42571ae2013-09-06 23:29:00 +03007958 switch (tmp & PIPECONF_BPC_MASK) {
7959 case PIPECONF_6BPC:
7960 pipe_config->pipe_bpp = 18;
7961 break;
7962 case PIPECONF_8BPC:
7963 pipe_config->pipe_bpp = 24;
7964 break;
7965 case PIPECONF_10BPC:
7966 pipe_config->pipe_bpp = 30;
7967 break;
7968 case PIPECONF_12BPC:
7969 pipe_config->pipe_bpp = 36;
7970 break;
7971 default:
7972 break;
7973 }
7974
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02007975 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
7976 pipe_config->limited_color_range = true;
7977
Daniel Vetterab9412b2013-05-03 11:49:46 +02007978 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02007979 struct intel_shared_dpll *pll;
7980
Daniel Vetter88adfff2013-03-28 10:42:01 +01007981 pipe_config->has_pch_encoder = true;
7982
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007983 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
7984 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7985 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02007986
7987 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007988
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007989 if (HAS_PCH_IBX(dev_priv->dev)) {
Daniel Vetterd94ab062013-07-04 12:01:16 +02007990 pipe_config->shared_dpll =
7991 (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007992 } else {
7993 tmp = I915_READ(PCH_DPLL_SEL);
7994 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
7995 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
7996 else
7997 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
7998 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02007999
8000 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
8001
8002 WARN_ON(!pll->get_hw_state(dev_priv, pll,
8003 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02008004
8005 tmp = pipe_config->dpll_hw_state.dpll;
8006 pipe_config->pixel_multiplier =
8007 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
8008 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03008009
8010 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02008011 } else {
8012 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02008013 }
8014
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008015 intel_get_pipe_timings(crtc, pipe_config);
8016
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008017 ironlake_get_pfit_config(crtc, pipe_config);
8018
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008019 return true;
8020}
8021
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008022static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
8023{
8024 struct drm_device *dev = dev_priv->dev;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008025 struct intel_crtc *crtc;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008026
Damien Lespiaud3fcc802014-05-13 23:32:22 +01008027 for_each_intel_crtc(dev, crtc)
Rob Clarke2c719b2014-12-15 13:56:32 -05008028 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008029 pipe_name(crtc->pipe));
8030
Rob Clarke2c719b2014-12-15 13:56:32 -05008031 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
8032 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
8033 I915_STATE_WARN(I915_READ(WRPLL_CTL1) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
8034 I915_STATE_WARN(I915_READ(WRPLL_CTL2) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
8035 I915_STATE_WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
8036 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008037 "CPU PWM1 enabled\n");
Paulo Zanonic5107b82014-07-04 11:50:30 -03008038 if (IS_HASWELL(dev))
Rob Clarke2c719b2014-12-15 13:56:32 -05008039 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
Paulo Zanonic5107b82014-07-04 11:50:30 -03008040 "CPU PWM2 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05008041 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008042 "PCH PWM1 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05008043 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008044 "Utility pin enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05008045 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008046
Paulo Zanoni9926ada2014-04-01 19:39:47 -03008047 /*
8048 * In theory we can still leave IRQs enabled, as long as only the HPD
8049 * interrupts remain enabled. We used to check for that, but since it's
8050 * gen-specific and since we only disable LCPLL after we fully disable
8051 * the interrupts, the check below should be enough.
8052 */
Rob Clarke2c719b2014-12-15 13:56:32 -05008053 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008054}
8055
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03008056static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
8057{
8058 struct drm_device *dev = dev_priv->dev;
8059
8060 if (IS_HASWELL(dev))
8061 return I915_READ(D_COMP_HSW);
8062 else
8063 return I915_READ(D_COMP_BDW);
8064}
8065
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03008066static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
8067{
8068 struct drm_device *dev = dev_priv->dev;
8069
8070 if (IS_HASWELL(dev)) {
8071 mutex_lock(&dev_priv->rps.hw_lock);
8072 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
8073 val))
Paulo Zanonif475dad2014-07-04 11:59:57 -03008074 DRM_ERROR("Failed to write to D_COMP\n");
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03008075 mutex_unlock(&dev_priv->rps.hw_lock);
8076 } else {
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03008077 I915_WRITE(D_COMP_BDW, val);
8078 POSTING_READ(D_COMP_BDW);
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03008079 }
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008080}
8081
8082/*
8083 * This function implements pieces of two sequences from BSpec:
8084 * - Sequence for display software to disable LCPLL
8085 * - Sequence for display software to allow package C8+
8086 * The steps implemented here are just the steps that actually touch the LCPLL
8087 * register. Callers should take care of disabling all the display engine
8088 * functions, doing the mode unset, fixing interrupts, etc.
8089 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03008090static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
8091 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008092{
8093 uint32_t val;
8094
8095 assert_can_disable_lcpll(dev_priv);
8096
8097 val = I915_READ(LCPLL_CTL);
8098
8099 if (switch_to_fclk) {
8100 val |= LCPLL_CD_SOURCE_FCLK;
8101 I915_WRITE(LCPLL_CTL, val);
8102
8103 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
8104 LCPLL_CD_SOURCE_FCLK_DONE, 1))
8105 DRM_ERROR("Switching to FCLK failed\n");
8106
8107 val = I915_READ(LCPLL_CTL);
8108 }
8109
8110 val |= LCPLL_PLL_DISABLE;
8111 I915_WRITE(LCPLL_CTL, val);
8112 POSTING_READ(LCPLL_CTL);
8113
8114 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
8115 DRM_ERROR("LCPLL still locked\n");
8116
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03008117 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008118 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03008119 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008120 ndelay(100);
8121
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03008122 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
8123 1))
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008124 DRM_ERROR("D_COMP RCOMP still in progress\n");
8125
8126 if (allow_power_down) {
8127 val = I915_READ(LCPLL_CTL);
8128 val |= LCPLL_POWER_DOWN_ALLOW;
8129 I915_WRITE(LCPLL_CTL, val);
8130 POSTING_READ(LCPLL_CTL);
8131 }
8132}
8133
8134/*
8135 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
8136 * source.
8137 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03008138static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008139{
8140 uint32_t val;
8141
8142 val = I915_READ(LCPLL_CTL);
8143
8144 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
8145 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
8146 return;
8147
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03008148 /*
8149 * Make sure we're not on PC8 state before disabling PC8, otherwise
8150 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03008151 */
Mika Kuoppala59bad942015-01-16 11:34:40 +02008152 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Paulo Zanoni215733f2013-08-19 13:18:07 -03008153
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008154 if (val & LCPLL_POWER_DOWN_ALLOW) {
8155 val &= ~LCPLL_POWER_DOWN_ALLOW;
8156 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02008157 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008158 }
8159
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03008160 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008161 val |= D_COMP_COMP_FORCE;
8162 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03008163 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008164
8165 val = I915_READ(LCPLL_CTL);
8166 val &= ~LCPLL_PLL_DISABLE;
8167 I915_WRITE(LCPLL_CTL, val);
8168
8169 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
8170 DRM_ERROR("LCPLL not locked yet\n");
8171
8172 if (val & LCPLL_CD_SOURCE_FCLK) {
8173 val = I915_READ(LCPLL_CTL);
8174 val &= ~LCPLL_CD_SOURCE_FCLK;
8175 I915_WRITE(LCPLL_CTL, val);
8176
8177 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
8178 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
8179 DRM_ERROR("Switching back to LCPLL failed\n");
8180 }
Paulo Zanoni215733f2013-08-19 13:18:07 -03008181
Mika Kuoppala59bad942015-01-16 11:34:40 +02008182 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008183}
8184
Paulo Zanoni765dab672014-03-07 20:08:18 -03008185/*
8186 * Package states C8 and deeper are really deep PC states that can only be
8187 * reached when all the devices on the system allow it, so even if the graphics
8188 * device allows PC8+, it doesn't mean the system will actually get to these
8189 * states. Our driver only allows PC8+ when going into runtime PM.
8190 *
8191 * The requirements for PC8+ are that all the outputs are disabled, the power
8192 * well is disabled and most interrupts are disabled, and these are also
8193 * requirements for runtime PM. When these conditions are met, we manually do
8194 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
8195 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
8196 * hang the machine.
8197 *
8198 * When we really reach PC8 or deeper states (not just when we allow it) we lose
8199 * the state of some registers, so when we come back from PC8+ we need to
8200 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
8201 * need to take care of the registers kept by RC6. Notice that this happens even
8202 * if we don't put the device in PCI D3 state (which is what currently happens
8203 * because of the runtime PM support).
8204 *
8205 * For more, read "Display Sequences for Package C8" on the hardware
8206 * documentation.
8207 */
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03008208void hsw_enable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03008209{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008210 struct drm_device *dev = dev_priv->dev;
8211 uint32_t val;
8212
Paulo Zanonic67a4702013-08-19 13:18:09 -03008213 DRM_DEBUG_KMS("Enabling package C8+\n");
8214
Paulo Zanonic67a4702013-08-19 13:18:09 -03008215 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
8216 val = I915_READ(SOUTH_DSPCLK_GATE_D);
8217 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
8218 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
8219 }
8220
8221 lpt_disable_clkout_dp(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008222 hsw_disable_lcpll(dev_priv, true, true);
8223}
8224
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03008225void hsw_disable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03008226{
8227 struct drm_device *dev = dev_priv->dev;
8228 uint32_t val;
8229
Paulo Zanonic67a4702013-08-19 13:18:09 -03008230 DRM_DEBUG_KMS("Disabling package C8+\n");
8231
8232 hsw_restore_lcpll(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008233 lpt_init_pch_refclk(dev);
8234
8235 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
8236 val = I915_READ(SOUTH_DSPCLK_GATE_D);
8237 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
8238 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
8239 }
8240
8241 intel_prepare_ddi(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008242}
8243
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008244static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
8245 struct intel_crtc_state *crtc_state)
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03008246{
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008247 if (!intel_ddi_pll_select(crtc, crtc_state))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03008248 return -EINVAL;
Daniel Vetter716c2e52014-06-25 22:02:02 +03008249
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008250 crtc->lowfreq_avail = false;
Daniel Vetter644cef32014-04-24 23:55:07 +02008251
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02008252 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008253}
8254
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008255static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
8256 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008257 struct intel_crtc_state *pipe_config)
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008258{
Damien Lespiau3148ade2014-11-21 16:14:56 +00008259 u32 temp, dpll_ctl1;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008260
8261 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
8262 pipe_config->ddi_pll_sel = temp >> (port * 3 + 1);
8263
8264 switch (pipe_config->ddi_pll_sel) {
Damien Lespiau3148ade2014-11-21 16:14:56 +00008265 case SKL_DPLL0:
8266 /*
8267 * On SKL the eDP DPLL (DPLL0 as we don't use SSC) is not part
8268 * of the shared DPLL framework and thus needs to be read out
8269 * separately
8270 */
8271 dpll_ctl1 = I915_READ(DPLL_CTRL1);
8272 pipe_config->dpll_hw_state.ctrl1 = dpll_ctl1 & 0x3f;
8273 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008274 case SKL_DPLL1:
8275 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
8276 break;
8277 case SKL_DPLL2:
8278 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
8279 break;
8280 case SKL_DPLL3:
8281 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
8282 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008283 }
8284}
8285
Damien Lespiau7d2c8172014-07-29 18:06:18 +01008286static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
8287 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008288 struct intel_crtc_state *pipe_config)
Damien Lespiau7d2c8172014-07-29 18:06:18 +01008289{
8290 pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
8291
8292 switch (pipe_config->ddi_pll_sel) {
8293 case PORT_CLK_SEL_WRPLL1:
8294 pipe_config->shared_dpll = DPLL_ID_WRPLL1;
8295 break;
8296 case PORT_CLK_SEL_WRPLL2:
8297 pipe_config->shared_dpll = DPLL_ID_WRPLL2;
8298 break;
8299 }
8300}
8301
Daniel Vetter26804af2014-06-25 22:01:55 +03008302static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008303 struct intel_crtc_state *pipe_config)
Daniel Vetter26804af2014-06-25 22:01:55 +03008304{
8305 struct drm_device *dev = crtc->base.dev;
8306 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterd452c5b2014-07-04 11:27:39 -03008307 struct intel_shared_dpll *pll;
Daniel Vetter26804af2014-06-25 22:01:55 +03008308 enum port port;
8309 uint32_t tmp;
8310
8311 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
8312
8313 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
8314
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008315 if (IS_SKYLAKE(dev))
8316 skylake_get_ddi_pll(dev_priv, port, pipe_config);
8317 else
8318 haswell_get_ddi_pll(dev_priv, port, pipe_config);
Daniel Vetter9cd86932014-06-25 22:01:57 +03008319
Daniel Vetterd452c5b2014-07-04 11:27:39 -03008320 if (pipe_config->shared_dpll >= 0) {
8321 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
8322
8323 WARN_ON(!pll->get_hw_state(dev_priv, pll,
8324 &pipe_config->dpll_hw_state));
8325 }
8326
Daniel Vetter26804af2014-06-25 22:01:55 +03008327 /*
8328 * Haswell has only FDI/PCH transcoder A. It is which is connected to
8329 * DDI E. So just check whether this pipe is wired to DDI E and whether
8330 * the PCH transcoder is on.
8331 */
Damien Lespiauca370452013-12-03 13:56:24 +00008332 if (INTEL_INFO(dev)->gen < 9 &&
8333 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
Daniel Vetter26804af2014-06-25 22:01:55 +03008334 pipe_config->has_pch_encoder = true;
8335
8336 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
8337 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
8338 FDI_DP_PORT_WIDTH_SHIFT) + 1;
8339
8340 ironlake_get_fdi_m_n_config(crtc, pipe_config);
8341 }
8342}
8343
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008344static bool haswell_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008345 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008346{
8347 struct drm_device *dev = crtc->base.dev;
8348 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008349 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008350 uint32_t tmp;
8351
Daniel Vetterf458ebb2014-09-30 10:56:39 +02008352 if (!intel_display_power_is_enabled(dev_priv,
Imre Deakb5482bd2014-03-05 16:20:55 +02008353 POWER_DOMAIN_PIPE(crtc->pipe)))
8354 return false;
8355
Daniel Vettere143a212013-07-04 12:01:15 +02008356 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008357 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
8358
Daniel Vettereccb1402013-05-22 00:50:22 +02008359 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
8360 if (tmp & TRANS_DDI_FUNC_ENABLE) {
8361 enum pipe trans_edp_pipe;
8362 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
8363 default:
8364 WARN(1, "unknown pipe linked to edp transcoder\n");
8365 case TRANS_DDI_EDP_INPUT_A_ONOFF:
8366 case TRANS_DDI_EDP_INPUT_A_ON:
8367 trans_edp_pipe = PIPE_A;
8368 break;
8369 case TRANS_DDI_EDP_INPUT_B_ONOFF:
8370 trans_edp_pipe = PIPE_B;
8371 break;
8372 case TRANS_DDI_EDP_INPUT_C_ONOFF:
8373 trans_edp_pipe = PIPE_C;
8374 break;
8375 }
8376
8377 if (trans_edp_pipe == crtc->pipe)
8378 pipe_config->cpu_transcoder = TRANSCODER_EDP;
8379 }
8380
Daniel Vetterf458ebb2014-09-30 10:56:39 +02008381 if (!intel_display_power_is_enabled(dev_priv,
Daniel Vettereccb1402013-05-22 00:50:22 +02008382 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -03008383 return false;
8384
Daniel Vettereccb1402013-05-22 00:50:22 +02008385 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008386 if (!(tmp & PIPECONF_ENABLE))
8387 return false;
8388
Daniel Vetter26804af2014-06-25 22:01:55 +03008389 haswell_get_ddi_port_state(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02008390
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008391 intel_get_pipe_timings(crtc, pipe_config);
8392
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008393 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00008394 if (intel_display_power_is_enabled(dev_priv, pfit_domain)) {
8395 if (IS_SKYLAKE(dev))
8396 skylake_get_pfit_config(crtc, pipe_config);
8397 else
8398 ironlake_get_pfit_config(crtc, pipe_config);
8399 }
Daniel Vetter88adfff2013-03-28 10:42:01 +01008400
Jesse Barnese59150d2014-01-07 13:30:45 -08008401 if (IS_HASWELL(dev))
8402 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
8403 (I915_READ(IPS_CTL) & IPS_ENABLE);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03008404
Clint Taylorebb69c92014-09-30 10:30:22 -07008405 if (pipe_config->cpu_transcoder != TRANSCODER_EDP) {
8406 pipe_config->pixel_multiplier =
8407 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
8408 } else {
8409 pipe_config->pixel_multiplier = 1;
8410 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02008411
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008412 return true;
8413}
8414
Chris Wilson560b85b2010-08-07 11:01:38 +01008415static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
8416{
8417 struct drm_device *dev = crtc->dev;
8418 struct drm_i915_private *dev_priv = dev->dev_private;
8419 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälädc41c152014-08-13 11:57:05 +03008420 uint32_t cntl = 0, size = 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01008421
Ville Syrjälädc41c152014-08-13 11:57:05 +03008422 if (base) {
Matt Roper3dd512f2015-02-27 10:12:00 -08008423 unsigned int width = intel_crtc->base.cursor->state->crtc_w;
8424 unsigned int height = intel_crtc->base.cursor->state->crtc_h;
Ville Syrjälädc41c152014-08-13 11:57:05 +03008425 unsigned int stride = roundup_pow_of_two(width) * 4;
8426
8427 switch (stride) {
8428 default:
8429 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
8430 width, stride);
8431 stride = 256;
8432 /* fallthrough */
8433 case 256:
8434 case 512:
8435 case 1024:
8436 case 2048:
8437 break;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008438 }
8439
Ville Syrjälädc41c152014-08-13 11:57:05 +03008440 cntl |= CURSOR_ENABLE |
8441 CURSOR_GAMMA_ENABLE |
8442 CURSOR_FORMAT_ARGB |
8443 CURSOR_STRIDE(stride);
8444
8445 size = (height << 12) | width;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008446 }
Chris Wilson560b85b2010-08-07 11:01:38 +01008447
Ville Syrjälädc41c152014-08-13 11:57:05 +03008448 if (intel_crtc->cursor_cntl != 0 &&
8449 (intel_crtc->cursor_base != base ||
8450 intel_crtc->cursor_size != size ||
8451 intel_crtc->cursor_cntl != cntl)) {
8452 /* On these chipsets we can only modify the base/size/stride
8453 * whilst the cursor is disabled.
8454 */
8455 I915_WRITE(_CURACNTR, 0);
8456 POSTING_READ(_CURACNTR);
8457 intel_crtc->cursor_cntl = 0;
8458 }
8459
Ville Syrjälä99d1f382014-09-12 20:53:32 +03008460 if (intel_crtc->cursor_base != base) {
Ville Syrjälädc41c152014-08-13 11:57:05 +03008461 I915_WRITE(_CURABASE, base);
Ville Syrjälä99d1f382014-09-12 20:53:32 +03008462 intel_crtc->cursor_base = base;
8463 }
Ville Syrjälädc41c152014-08-13 11:57:05 +03008464
8465 if (intel_crtc->cursor_size != size) {
8466 I915_WRITE(CURSIZE, size);
8467 intel_crtc->cursor_size = size;
8468 }
8469
Chris Wilson4b0e3332014-05-30 16:35:26 +03008470 if (intel_crtc->cursor_cntl != cntl) {
8471 I915_WRITE(_CURACNTR, cntl);
8472 POSTING_READ(_CURACNTR);
8473 intel_crtc->cursor_cntl = cntl;
8474 }
Chris Wilson560b85b2010-08-07 11:01:38 +01008475}
8476
8477static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
8478{
8479 struct drm_device *dev = crtc->dev;
8480 struct drm_i915_private *dev_priv = dev->dev_private;
8481 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8482 int pipe = intel_crtc->pipe;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008483 uint32_t cntl;
Chris Wilson560b85b2010-08-07 11:01:38 +01008484
Chris Wilson4b0e3332014-05-30 16:35:26 +03008485 cntl = 0;
8486 if (base) {
8487 cntl = MCURSOR_GAMMA_ENABLE;
Matt Roper3dd512f2015-02-27 10:12:00 -08008488 switch (intel_crtc->base.cursor->state->crtc_w) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308489 case 64:
8490 cntl |= CURSOR_MODE_64_ARGB_AX;
8491 break;
8492 case 128:
8493 cntl |= CURSOR_MODE_128_ARGB_AX;
8494 break;
8495 case 256:
8496 cntl |= CURSOR_MODE_256_ARGB_AX;
8497 break;
8498 default:
Matt Roper3dd512f2015-02-27 10:12:00 -08008499 MISSING_CASE(intel_crtc->base.cursor->state->crtc_w);
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308500 return;
Chris Wilson560b85b2010-08-07 11:01:38 +01008501 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03008502 cntl |= pipe << 28; /* Connect to correct pipe */
Ville Syrjälä47bf17a2014-09-12 20:53:33 +03008503
8504 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
8505 cntl |= CURSOR_PIPE_CSC_ENABLE;
Chris Wilson560b85b2010-08-07 11:01:38 +01008506 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03008507
Matt Roper8e7d6882015-01-21 16:35:41 -08008508 if (crtc->cursor->state->rotation == BIT(DRM_ROTATE_180))
Ville Syrjälä4398ad42014-10-23 07:41:34 -07008509 cntl |= CURSOR_ROTATE_180;
8510
Chris Wilson4b0e3332014-05-30 16:35:26 +03008511 if (intel_crtc->cursor_cntl != cntl) {
8512 I915_WRITE(CURCNTR(pipe), cntl);
8513 POSTING_READ(CURCNTR(pipe));
8514 intel_crtc->cursor_cntl = cntl;
8515 }
8516
Jesse Barnes65a21cd2011-10-12 11:10:21 -07008517 /* and commit changes on next vblank */
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008518 I915_WRITE(CURBASE(pipe), base);
8519 POSTING_READ(CURBASE(pipe));
Ville Syrjälä99d1f382014-09-12 20:53:32 +03008520
8521 intel_crtc->cursor_base = base;
Jesse Barnes65a21cd2011-10-12 11:10:21 -07008522}
8523
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008524/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01008525static void intel_crtc_update_cursor(struct drm_crtc *crtc,
8526 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008527{
8528 struct drm_device *dev = crtc->dev;
8529 struct drm_i915_private *dev_priv = dev->dev_private;
8530 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8531 int pipe = intel_crtc->pipe;
Matt Roper3d7d6512014-06-10 08:28:13 -07008532 int x = crtc->cursor_x;
8533 int y = crtc->cursor_y;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008534 u32 base = 0, pos = 0;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008535
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008536 if (on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008537 base = intel_crtc->cursor_addr;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008538
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008539 if (x >= intel_crtc->config->pipe_src_w)
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008540 base = 0;
8541
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008542 if (y >= intel_crtc->config->pipe_src_h)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008543 base = 0;
8544
8545 if (x < 0) {
Matt Roper3dd512f2015-02-27 10:12:00 -08008546 if (x + intel_crtc->base.cursor->state->crtc_w <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008547 base = 0;
8548
8549 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
8550 x = -x;
8551 }
8552 pos |= x << CURSOR_X_SHIFT;
8553
8554 if (y < 0) {
Matt Roper3dd512f2015-02-27 10:12:00 -08008555 if (y + intel_crtc->base.cursor->state->crtc_h <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008556 base = 0;
8557
8558 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
8559 y = -y;
8560 }
8561 pos |= y << CURSOR_Y_SHIFT;
8562
Chris Wilson4b0e3332014-05-30 16:35:26 +03008563 if (base == 0 && intel_crtc->cursor_base == 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008564 return;
8565
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008566 I915_WRITE(CURPOS(pipe), pos);
8567
Ville Syrjälä4398ad42014-10-23 07:41:34 -07008568 /* ILK+ do this automagically */
8569 if (HAS_GMCH_DISPLAY(dev) &&
Matt Roper8e7d6882015-01-21 16:35:41 -08008570 crtc->cursor->state->rotation == BIT(DRM_ROTATE_180)) {
Matt Roper3dd512f2015-02-27 10:12:00 -08008571 base += (intel_crtc->base.cursor->state->crtc_h *
8572 intel_crtc->base.cursor->state->crtc_w - 1) * 4;
Ville Syrjälä4398ad42014-10-23 07:41:34 -07008573 }
8574
Ville Syrjälä8ac54662014-08-12 19:39:54 +03008575 if (IS_845G(dev) || IS_I865G(dev))
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008576 i845_update_cursor(crtc, base);
8577 else
8578 i9xx_update_cursor(crtc, base);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008579}
8580
Ville Syrjälädc41c152014-08-13 11:57:05 +03008581static bool cursor_size_ok(struct drm_device *dev,
8582 uint32_t width, uint32_t height)
8583{
8584 if (width == 0 || height == 0)
8585 return false;
8586
8587 /*
8588 * 845g/865g are special in that they are only limited by
8589 * the width of their cursors, the height is arbitrary up to
8590 * the precision of the register. Everything else requires
8591 * square cursors, limited to a few power-of-two sizes.
8592 */
8593 if (IS_845G(dev) || IS_I865G(dev)) {
8594 if ((width & 63) != 0)
8595 return false;
8596
8597 if (width > (IS_845G(dev) ? 64 : 512))
8598 return false;
8599
8600 if (height > 1023)
8601 return false;
8602 } else {
8603 switch (width | height) {
8604 case 256:
8605 case 128:
8606 if (IS_GEN2(dev))
8607 return false;
8608 case 64:
8609 break;
8610 default:
8611 return false;
8612 }
8613 }
8614
8615 return true;
8616}
8617
Jesse Barnes79e53942008-11-07 14:24:08 -08008618static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01008619 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08008620{
James Simmons72034252010-08-03 01:33:19 +01008621 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08008622 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008623
James Simmons72034252010-08-03 01:33:19 +01008624 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008625 intel_crtc->lut_r[i] = red[i] >> 8;
8626 intel_crtc->lut_g[i] = green[i] >> 8;
8627 intel_crtc->lut_b[i] = blue[i] >> 8;
8628 }
8629
8630 intel_crtc_load_lut(crtc);
8631}
8632
Jesse Barnes79e53942008-11-07 14:24:08 -08008633/* VESA 640x480x72Hz mode to set on the pipe */
8634static struct drm_display_mode load_detect_mode = {
8635 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
8636 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
8637};
8638
Daniel Vettera8bb6812014-02-10 18:00:39 +01008639struct drm_framebuffer *
8640__intel_framebuffer_create(struct drm_device *dev,
8641 struct drm_mode_fb_cmd2 *mode_cmd,
8642 struct drm_i915_gem_object *obj)
Chris Wilsond2dff872011-04-19 08:36:26 +01008643{
8644 struct intel_framebuffer *intel_fb;
8645 int ret;
8646
8647 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
8648 if (!intel_fb) {
Alexey Khoroshilov6ccb81f2014-11-08 01:41:23 +03008649 drm_gem_object_unreference(&obj->base);
Chris Wilsond2dff872011-04-19 08:36:26 +01008650 return ERR_PTR(-ENOMEM);
8651 }
8652
8653 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008654 if (ret)
8655 goto err;
Chris Wilsond2dff872011-04-19 08:36:26 +01008656
8657 return &intel_fb->base;
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008658err:
Alexey Khoroshilov6ccb81f2014-11-08 01:41:23 +03008659 drm_gem_object_unreference(&obj->base);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008660 kfree(intel_fb);
8661
8662 return ERR_PTR(ret);
Chris Wilsond2dff872011-04-19 08:36:26 +01008663}
8664
Daniel Vetterb5ea6422014-03-02 21:18:00 +01008665static struct drm_framebuffer *
Daniel Vettera8bb6812014-02-10 18:00:39 +01008666intel_framebuffer_create(struct drm_device *dev,
8667 struct drm_mode_fb_cmd2 *mode_cmd,
8668 struct drm_i915_gem_object *obj)
8669{
8670 struct drm_framebuffer *fb;
8671 int ret;
8672
8673 ret = i915_mutex_lock_interruptible(dev);
8674 if (ret)
8675 return ERR_PTR(ret);
8676 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
8677 mutex_unlock(&dev->struct_mutex);
8678
8679 return fb;
8680}
8681
Chris Wilsond2dff872011-04-19 08:36:26 +01008682static u32
8683intel_framebuffer_pitch_for_width(int width, int bpp)
8684{
8685 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
8686 return ALIGN(pitch, 64);
8687}
8688
8689static u32
8690intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
8691{
8692 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
Fabian Frederick1267a262014-07-01 20:39:41 +02008693 return PAGE_ALIGN(pitch * mode->vdisplay);
Chris Wilsond2dff872011-04-19 08:36:26 +01008694}
8695
8696static struct drm_framebuffer *
8697intel_framebuffer_create_for_mode(struct drm_device *dev,
8698 struct drm_display_mode *mode,
8699 int depth, int bpp)
8700{
8701 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +00008702 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +01008703
8704 obj = i915_gem_alloc_object(dev,
8705 intel_framebuffer_size_for_mode(mode, bpp));
8706 if (obj == NULL)
8707 return ERR_PTR(-ENOMEM);
8708
8709 mode_cmd.width = mode->hdisplay;
8710 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008711 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
8712 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00008713 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01008714
8715 return intel_framebuffer_create(dev, &mode_cmd, obj);
8716}
8717
8718static struct drm_framebuffer *
8719mode_fits_in_fbdev(struct drm_device *dev,
8720 struct drm_display_mode *mode)
8721{
Daniel Vetter4520f532013-10-09 09:18:51 +02008722#ifdef CONFIG_DRM_I915_FBDEV
Chris Wilsond2dff872011-04-19 08:36:26 +01008723 struct drm_i915_private *dev_priv = dev->dev_private;
8724 struct drm_i915_gem_object *obj;
8725 struct drm_framebuffer *fb;
8726
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008727 if (!dev_priv->fbdev)
8728 return NULL;
8729
8730 if (!dev_priv->fbdev->fb)
Chris Wilsond2dff872011-04-19 08:36:26 +01008731 return NULL;
8732
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008733 obj = dev_priv->fbdev->fb->obj;
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008734 BUG_ON(!obj);
Chris Wilsond2dff872011-04-19 08:36:26 +01008735
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008736 fb = &dev_priv->fbdev->fb->base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008737 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
8738 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01008739 return NULL;
8740
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008741 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01008742 return NULL;
8743
8744 return fb;
Daniel Vetter4520f532013-10-09 09:18:51 +02008745#else
8746 return NULL;
8747#endif
Chris Wilsond2dff872011-04-19 08:36:26 +01008748}
8749
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008750bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01008751 struct drm_display_mode *mode,
Rob Clark51fd3712013-11-19 12:10:12 -05008752 struct intel_load_detect_pipe *old,
8753 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -08008754{
8755 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008756 struct intel_encoder *intel_encoder =
8757 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08008758 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01008759 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08008760 struct drm_crtc *crtc = NULL;
8761 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02008762 struct drm_framebuffer *fb;
Rob Clark51fd3712013-11-19 12:10:12 -05008763 struct drm_mode_config *config = &dev->mode_config;
8764 int ret, i = -1;
Jesse Barnes79e53942008-11-07 14:24:08 -08008765
Chris Wilsond2dff872011-04-19 08:36:26 +01008766 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03008767 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +03008768 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +01008769
Rob Clark51fd3712013-11-19 12:10:12 -05008770retry:
8771 ret = drm_modeset_lock(&config->connection_mutex, ctx);
8772 if (ret)
8773 goto fail_unlock;
Daniel Vetter6e9f7982014-05-29 23:54:47 +02008774
Jesse Barnes79e53942008-11-07 14:24:08 -08008775 /*
8776 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01008777 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008778 * - if the connector already has an assigned crtc, use it (but make
8779 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01008780 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008781 * - try to find the first unused crtc that can drive this connector,
8782 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08008783 */
8784
8785 /* See if we already have a CRTC for this connector */
8786 if (encoder->crtc) {
8787 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01008788
Rob Clark51fd3712013-11-19 12:10:12 -05008789 ret = drm_modeset_lock(&crtc->mutex, ctx);
8790 if (ret)
8791 goto fail_unlock;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01008792 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
8793 if (ret)
8794 goto fail_unlock;
Daniel Vetter7b240562012-12-12 00:35:33 +01008795
Daniel Vetter24218aa2012-08-12 19:27:11 +02008796 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008797 old->load_detect_temp = false;
8798
8799 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008800 if (connector->dpms != DRM_MODE_DPMS_ON)
8801 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01008802
Chris Wilson71731882011-04-19 23:10:58 +01008803 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08008804 }
8805
8806 /* Find an unused one (if possible) */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008807 for_each_crtc(dev, possible_crtc) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008808 i++;
8809 if (!(encoder->possible_crtcs & (1 << i)))
8810 continue;
Matt Roper83d65732015-02-25 13:12:16 -08008811 if (possible_crtc->state->enable)
Ville Syrjäläa4592492014-08-11 13:15:36 +03008812 continue;
8813 /* This can occur when applying the pipe A quirk on resume. */
8814 if (to_intel_crtc(possible_crtc)->new_enabled)
8815 continue;
8816
8817 crtc = possible_crtc;
8818 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08008819 }
8820
8821 /*
8822 * If we didn't find an unused CRTC, don't use any.
8823 */
8824 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01008825 DRM_DEBUG_KMS("no pipe available for load-detect\n");
Rob Clark51fd3712013-11-19 12:10:12 -05008826 goto fail_unlock;
Jesse Barnes79e53942008-11-07 14:24:08 -08008827 }
8828
Rob Clark51fd3712013-11-19 12:10:12 -05008829 ret = drm_modeset_lock(&crtc->mutex, ctx);
8830 if (ret)
8831 goto fail_unlock;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01008832 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
8833 if (ret)
8834 goto fail_unlock;
Daniel Vetterfc303102012-07-09 10:40:58 +02008835 intel_encoder->new_crtc = to_intel_crtc(crtc);
8836 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008837
8838 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008839 intel_crtc->new_enabled = true;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008840 intel_crtc->new_config = intel_crtc->config;
Daniel Vetter24218aa2012-08-12 19:27:11 +02008841 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008842 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01008843 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08008844
Chris Wilson64927112011-04-20 07:25:26 +01008845 if (!mode)
8846 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08008847
Chris Wilsond2dff872011-04-19 08:36:26 +01008848 /* We need a framebuffer large enough to accommodate all accesses
8849 * that the plane may generate whilst we perform load detection.
8850 * We can not rely on the fbcon either being present (we get called
8851 * during its initialisation to detect all boot displays, or it may
8852 * not even exist) or that it is large enough to satisfy the
8853 * requested mode.
8854 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02008855 fb = mode_fits_in_fbdev(dev, mode);
8856 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008857 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008858 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
8859 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01008860 } else
8861 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008862 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008863 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008864 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008865 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008866
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008867 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01008868 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01008869 if (old->release_fb)
8870 old->release_fb->funcs->destroy(old->release_fb);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008871 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008872 }
Daniel Vetter9128b042015-03-03 17:31:21 +01008873 crtc->primary->crtc = crtc;
Chris Wilson71731882011-04-19 23:10:58 +01008874
Jesse Barnes79e53942008-11-07 14:24:08 -08008875 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008876 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +01008877 return true;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008878
8879 fail:
Matt Roper83d65732015-02-25 13:12:16 -08008880 intel_crtc->new_enabled = crtc->state->enable;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008881 if (intel_crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008882 intel_crtc->new_config = intel_crtc->config;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008883 else
8884 intel_crtc->new_config = NULL;
Rob Clark51fd3712013-11-19 12:10:12 -05008885fail_unlock:
8886 if (ret == -EDEADLK) {
8887 drm_modeset_backoff(ctx);
8888 goto retry;
8889 }
8890
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008891 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08008892}
8893
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008894void intel_release_load_detect_pipe(struct drm_connector *connector,
Ville Syrjälä208bf9f2014-08-11 13:15:35 +03008895 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08008896{
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008897 struct intel_encoder *intel_encoder =
8898 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01008899 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +01008900 struct drm_crtc *crtc = encoder->crtc;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008901 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008902
Chris Wilsond2dff872011-04-19 08:36:26 +01008903 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03008904 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +03008905 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +01008906
Chris Wilson8261b192011-04-19 23:18:09 +01008907 if (old->load_detect_temp) {
Daniel Vetterfc303102012-07-09 10:40:58 +02008908 to_intel_connector(connector)->new_encoder = NULL;
8909 intel_encoder->new_crtc = NULL;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008910 intel_crtc->new_enabled = false;
8911 intel_crtc->new_config = NULL;
Daniel Vetterfc303102012-07-09 10:40:58 +02008912 intel_set_mode(crtc, NULL, 0, 0, NULL);
Chris Wilsond2dff872011-04-19 08:36:26 +01008913
Daniel Vetter36206362012-12-10 20:42:17 +01008914 if (old->release_fb) {
8915 drm_framebuffer_unregister_private(old->release_fb);
8916 drm_framebuffer_unreference(old->release_fb);
8917 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008918
Chris Wilson0622a532011-04-21 09:32:11 +01008919 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008920 }
8921
Eric Anholtc751ce42010-03-25 11:48:48 -07008922 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008923 if (old->dpms_mode != DRM_MODE_DPMS_ON)
8924 connector->funcs->dpms(connector, old->dpms_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08008925}
8926
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008927static int i9xx_pll_refclk(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008928 const struct intel_crtc_state *pipe_config)
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008929{
8930 struct drm_i915_private *dev_priv = dev->dev_private;
8931 u32 dpll = pipe_config->dpll_hw_state.dpll;
8932
8933 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008934 return dev_priv->vbt.lvds_ssc_freq;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008935 else if (HAS_PCH_SPLIT(dev))
8936 return 120000;
8937 else if (!IS_GEN2(dev))
8938 return 96000;
8939 else
8940 return 48000;
8941}
8942
Jesse Barnes79e53942008-11-07 14:24:08 -08008943/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008944static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008945 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08008946{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008947 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08008948 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008949 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008950 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -08008951 u32 fp;
8952 intel_clock_t clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008953 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -08008954
8955 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +03008956 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008957 else
Ville Syrjälä293623f2013-09-13 16:18:46 +03008958 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -08008959
8960 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008961 if (IS_PINEVIEW(dev)) {
8962 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
8963 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08008964 } else {
8965 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
8966 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
8967 }
8968
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008969 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008970 if (IS_PINEVIEW(dev))
8971 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
8972 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08008973 else
8974 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08008975 DPLL_FPA01_P1_POST_DIV_SHIFT);
8976
8977 switch (dpll & DPLL_MODE_MASK) {
8978 case DPLLB_MODE_DAC_SERIAL:
8979 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
8980 5 : 10;
8981 break;
8982 case DPLLB_MODE_LVDS:
8983 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
8984 7 : 14;
8985 break;
8986 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08008987 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08008988 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008989 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008990 }
8991
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008992 if (IS_PINEVIEW(dev))
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008993 pineview_clock(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008994 else
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008995 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008996 } else {
Ville Syrjälä0fb58222014-01-10 14:06:46 +02008997 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008998 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
Jesse Barnes79e53942008-11-07 14:24:08 -08008999
9000 if (is_lvds) {
9001 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
9002 DPLL_FPA01_P1_POST_DIV_SHIFT);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02009003
9004 if (lvds & LVDS_CLKB_POWER_UP)
9005 clock.p2 = 7;
9006 else
9007 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -08009008 } else {
9009 if (dpll & PLL_P1_DIVIDE_BY_TWO)
9010 clock.p1 = 2;
9011 else {
9012 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
9013 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
9014 }
9015 if (dpll & PLL_P2_DIVIDE_BY_4)
9016 clock.p2 = 4;
9017 else
9018 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -08009019 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03009020
9021 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08009022 }
9023
Ville Syrjälä18442d02013-09-13 16:00:08 +03009024 /*
9025 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +01009026 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +03009027 * encoder's get_config() function.
9028 */
9029 pipe_config->port_clock = clock.dot;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009030}
9031
Ville Syrjälä6878da02013-09-13 15:59:11 +03009032int intel_dotclock_calculate(int link_freq,
9033 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009034{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009035 /*
9036 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +03009037 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009038 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +03009039 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009040 *
9041 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +03009042 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -08009043 */
9044
Ville Syrjälä6878da02013-09-13 15:59:11 +03009045 if (!m_n->link_n)
9046 return 0;
9047
9048 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
9049}
9050
Ville Syrjälä18442d02013-09-13 16:00:08 +03009051static void ironlake_pch_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009052 struct intel_crtc_state *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +03009053{
9054 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä18442d02013-09-13 16:00:08 +03009055
9056 /* read out port_clock from the DPLL */
9057 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +03009058
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009059 /*
Ville Syrjälä18442d02013-09-13 16:00:08 +03009060 * This value does not include pixel_multiplier.
Damien Lespiau241bfc32013-09-25 16:45:37 +01009061 * We will check that port_clock and adjusted_mode.crtc_clock
Ville Syrjälä18442d02013-09-13 16:00:08 +03009062 * agree once we know their relationship in the encoder's
9063 * get_config() function.
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009064 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02009065 pipe_config->base.adjusted_mode.crtc_clock =
Ville Syrjälä18442d02013-09-13 16:00:08 +03009066 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
9067 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -08009068}
9069
9070/** Returns the currently programmed mode of the given pipe. */
9071struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
9072 struct drm_crtc *crtc)
9073{
Jesse Barnes548f2452011-02-17 10:40:53 -08009074 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08009075 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009076 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08009077 struct drm_display_mode *mode;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009078 struct intel_crtc_state pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -02009079 int htot = I915_READ(HTOTAL(cpu_transcoder));
9080 int hsync = I915_READ(HSYNC(cpu_transcoder));
9081 int vtot = I915_READ(VTOTAL(cpu_transcoder));
9082 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +03009083 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08009084
9085 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
9086 if (!mode)
9087 return NULL;
9088
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009089 /*
9090 * Construct a pipe_config sufficient for getting the clock info
9091 * back out of crtc_clock_get.
9092 *
9093 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
9094 * to use a real value here instead.
9095 */
Ville Syrjälä293623f2013-09-13 16:18:46 +03009096 pipe_config.cpu_transcoder = (enum transcoder) pipe;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009097 pipe_config.pixel_multiplier = 1;
Ville Syrjälä293623f2013-09-13 16:18:46 +03009098 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
9099 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
9100 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009101 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
9102
Ville Syrjälä773ae032013-09-23 17:48:20 +03009103 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -08009104 mode->hdisplay = (htot & 0xffff) + 1;
9105 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
9106 mode->hsync_start = (hsync & 0xffff) + 1;
9107 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
9108 mode->vdisplay = (vtot & 0xffff) + 1;
9109 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
9110 mode->vsync_start = (vsync & 0xffff) + 1;
9111 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
9112
9113 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08009114
9115 return mode;
9116}
9117
Jesse Barnes652c3932009-08-17 13:31:43 -07009118static void intel_decrease_pllclock(struct drm_crtc *crtc)
9119{
9120 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +03009121 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -07009122 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07009123
Sonika Jindalbaff2962014-07-22 11:16:35 +05309124 if (!HAS_GMCH_DISPLAY(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07009125 return;
9126
9127 if (!dev_priv->lvds_downclock_avail)
9128 return;
9129
9130 /*
9131 * Since this is called by a timer, we should never get here in
9132 * the manual case.
9133 */
9134 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01009135 int pipe = intel_crtc->pipe;
9136 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02009137 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01009138
Zhao Yakui44d98a62009-10-09 11:39:40 +08009139 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07009140
Sean Paul8ac5a6d2012-02-13 13:14:51 -05009141 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07009142
Chris Wilson074b5e12012-05-02 12:07:06 +01009143 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07009144 dpll |= DISPLAY_RATE_SELECT_FPA1;
9145 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07009146 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07009147 dpll = I915_READ(dpll_reg);
9148 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08009149 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07009150 }
9151
9152}
9153
Chris Wilsonf047e392012-07-21 12:31:41 +01009154void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07009155{
Paulo Zanonic67a4702013-08-19 13:18:09 -03009156 struct drm_i915_private *dev_priv = dev->dev_private;
9157
Chris Wilsonf62a0072014-02-21 17:55:39 +00009158 if (dev_priv->mm.busy)
9159 return;
9160
Paulo Zanoni43694d62014-03-07 20:08:08 -03009161 intel_runtime_pm_get(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009162 i915_update_gfx_val(dev_priv);
Chris Wilsonf62a0072014-02-21 17:55:39 +00009163 dev_priv->mm.busy = true;
Chris Wilsonf047e392012-07-21 12:31:41 +01009164}
9165
9166void intel_mark_idle(struct drm_device *dev)
9167{
Paulo Zanonic67a4702013-08-19 13:18:09 -03009168 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson725a5b52013-01-08 11:02:57 +00009169 struct drm_crtc *crtc;
9170
Chris Wilsonf62a0072014-02-21 17:55:39 +00009171 if (!dev_priv->mm.busy)
9172 return;
9173
9174 dev_priv->mm.busy = false;
9175
Jani Nikulad330a952014-01-21 11:24:25 +02009176 if (!i915.powersave)
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03009177 goto out;
Chris Wilson725a5b52013-01-08 11:02:57 +00009178
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01009179 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -07009180 if (!crtc->primary->fb)
Chris Wilson725a5b52013-01-08 11:02:57 +00009181 continue;
9182
9183 intel_decrease_pllclock(crtc);
9184 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01009185
Damien Lespiau3d13ef22014-02-07 19:12:47 +00009186 if (INTEL_INFO(dev)->gen >= 6)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01009187 gen6_rps_idle(dev->dev_private);
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03009188
9189out:
Paulo Zanoni43694d62014-03-07 20:08:08 -03009190 intel_runtime_pm_put(dev_priv);
Chris Wilsonf047e392012-07-21 12:31:41 +01009191}
9192
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +02009193static void intel_crtc_set_state(struct intel_crtc *crtc,
9194 struct intel_crtc_state *crtc_state)
9195{
9196 kfree(crtc->config);
9197 crtc->config = crtc_state;
Ander Conselvan de Oliveira16f3f652015-01-15 14:55:27 +02009198 crtc->base.state = &crtc_state->base;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +02009199}
9200
Jesse Barnes79e53942008-11-07 14:24:08 -08009201static void intel_crtc_destroy(struct drm_crtc *crtc)
9202{
9203 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009204 struct drm_device *dev = crtc->dev;
9205 struct intel_unpin_work *work;
Daniel Vetter67e77c52010-08-20 22:26:30 +02009206
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009207 spin_lock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009208 work = intel_crtc->unpin_work;
9209 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009210 spin_unlock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009211
9212 if (work) {
9213 cancel_work_sync(&work->work);
9214 kfree(work);
9215 }
Jesse Barnes79e53942008-11-07 14:24:08 -08009216
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +02009217 intel_crtc_set_state(intel_crtc, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08009218 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009219
Jesse Barnes79e53942008-11-07 14:24:08 -08009220 kfree(intel_crtc);
9221}
9222
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009223static void intel_unpin_work_fn(struct work_struct *__work)
9224{
9225 struct intel_unpin_work *work =
9226 container_of(__work, struct intel_unpin_work, work);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009227 struct drm_device *dev = work->crtc->dev;
Daniel Vetterf99d7062014-06-19 16:01:59 +02009228 enum pipe pipe = to_intel_crtc(work->crtc)->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009229
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009230 mutex_lock(&dev->struct_mutex);
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +00009231 intel_unpin_fb_obj(intel_fb_obj(work->old_fb));
Chris Wilson05394f32010-11-08 19:18:58 +00009232 drm_gem_object_unreference(&work->pending_flip_obj->base);
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +00009233 drm_framebuffer_unreference(work->old_fb);
Chris Wilsond9e86c02010-11-10 16:40:20 +00009234
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02009235 intel_fbc_update(dev);
John Harrisonf06cc1b2014-11-24 18:49:37 +00009236
9237 if (work->flip_queued_req)
John Harrison146d84f2014-12-05 13:49:33 +00009238 i915_gem_request_assign(&work->flip_queued_req, NULL);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009239 mutex_unlock(&dev->struct_mutex);
9240
Daniel Vetterf99d7062014-06-19 16:01:59 +02009241 intel_frontbuffer_flip_complete(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
9242
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009243 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
9244 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
9245
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009246 kfree(work);
9247}
9248
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009249static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01009250 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009251{
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009252 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9253 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009254 unsigned long flags;
9255
9256 /* Ignore early vblank irqs */
9257 if (intel_crtc == NULL)
9258 return;
9259
Daniel Vetterf3260382014-09-15 14:55:23 +02009260 /*
9261 * This is called both by irq handlers and the reset code (to complete
9262 * lost pageflips) so needs the full irqsave spinlocks.
9263 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009264 spin_lock_irqsave(&dev->event_lock, flags);
9265 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +00009266
9267 /* Ensure we don't miss a work->pending update ... */
9268 smp_rmb();
9269
9270 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009271 spin_unlock_irqrestore(&dev->event_lock, flags);
9272 return;
9273 }
9274
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009275 page_flip_completed(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01009276
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009277 spin_unlock_irqrestore(&dev->event_lock, flags);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009278}
9279
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009280void intel_finish_page_flip(struct drm_device *dev, int pipe)
9281{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009282 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009283 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
9284
Mario Kleiner49b14a52010-12-09 07:00:07 +01009285 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009286}
9287
9288void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
9289{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009290 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009291 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
9292
Mario Kleiner49b14a52010-12-09 07:00:07 +01009293 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009294}
9295
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009296/* Is 'a' after or equal to 'b'? */
9297static bool g4x_flip_count_after_eq(u32 a, u32 b)
9298{
9299 return !((a - b) & 0x80000000);
9300}
9301
9302static bool page_flip_finished(struct intel_crtc *crtc)
9303{
9304 struct drm_device *dev = crtc->base.dev;
9305 struct drm_i915_private *dev_priv = dev->dev_private;
9306
Ville Syrjäläbdfa7542014-05-27 21:33:09 +03009307 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
9308 crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
9309 return true;
9310
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009311 /*
9312 * The relevant registers doen't exist on pre-ctg.
9313 * As the flip done interrupt doesn't trigger for mmio
9314 * flips on gmch platforms, a flip count check isn't
9315 * really needed there. But since ctg has the registers,
9316 * include it in the check anyway.
9317 */
9318 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
9319 return true;
9320
9321 /*
9322 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
9323 * used the same base address. In that case the mmio flip might
9324 * have completed, but the CS hasn't even executed the flip yet.
9325 *
9326 * A flip count check isn't enough as the CS might have updated
9327 * the base address just after start of vblank, but before we
9328 * managed to process the interrupt. This means we'd complete the
9329 * CS flip too soon.
9330 *
9331 * Combining both checks should get us a good enough result. It may
9332 * still happen that the CS flip has been executed, but has not
9333 * yet actually completed. But in case the base address is the same
9334 * anyway, we don't really care.
9335 */
9336 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
9337 crtc->unpin_work->gtt_offset &&
9338 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_GM45(crtc->pipe)),
9339 crtc->unpin_work->flip_count);
9340}
9341
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009342void intel_prepare_page_flip(struct drm_device *dev, int plane)
9343{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009344 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009345 struct intel_crtc *intel_crtc =
9346 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
9347 unsigned long flags;
9348
Daniel Vetterf3260382014-09-15 14:55:23 +02009349
9350 /*
9351 * This is called both by irq handlers and the reset code (to complete
9352 * lost pageflips) so needs the full irqsave spinlocks.
9353 *
9354 * NB: An MMIO update of the plane base pointer will also
Chris Wilsone7d841c2012-12-03 11:36:30 +00009355 * generate a page-flip completion irq, i.e. every modeset
9356 * is also accompanied by a spurious intel_prepare_page_flip().
9357 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009358 spin_lock_irqsave(&dev->event_lock, flags);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009359 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
Chris Wilsone7d841c2012-12-03 11:36:30 +00009360 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009361 spin_unlock_irqrestore(&dev->event_lock, flags);
9362}
9363
Robin Schroereba905b2014-05-18 02:24:50 +02009364static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
Chris Wilsone7d841c2012-12-03 11:36:30 +00009365{
9366 /* Ensure that the work item is consistent when activating it ... */
9367 smp_wmb();
9368 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
9369 /* and that it is marked active as soon as the irq could fire. */
9370 smp_wmb();
9371}
9372
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009373static int intel_gen2_queue_flip(struct drm_device *dev,
9374 struct drm_crtc *crtc,
9375 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009376 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009377 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009378 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009379{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009380 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009381 u32 flip_mask;
9382 int ret;
9383
Daniel Vetter6d90c952012-04-26 23:28:05 +02009384 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009385 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009386 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009387
9388 /* Can't queue multiple flips, so wait for the previous
9389 * one to finish before executing the next.
9390 */
9391 if (intel_crtc->plane)
9392 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
9393 else
9394 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009395 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
9396 intel_ring_emit(ring, MI_NOOP);
9397 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9398 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9399 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009400 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02009401 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +00009402
9403 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009404 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009405 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009406}
9407
9408static int intel_gen3_queue_flip(struct drm_device *dev,
9409 struct drm_crtc *crtc,
9410 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009411 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009412 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009413 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009414{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009415 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009416 u32 flip_mask;
9417 int ret;
9418
Daniel Vetter6d90c952012-04-26 23:28:05 +02009419 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009420 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009421 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009422
9423 if (intel_crtc->plane)
9424 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
9425 else
9426 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009427 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
9428 intel_ring_emit(ring, MI_NOOP);
9429 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
9430 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9431 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009432 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02009433 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009434
Chris Wilsone7d841c2012-12-03 11:36:30 +00009435 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009436 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009437 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009438}
9439
9440static int intel_gen4_queue_flip(struct drm_device *dev,
9441 struct drm_crtc *crtc,
9442 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009443 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009444 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009445 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009446{
9447 struct drm_i915_private *dev_priv = dev->dev_private;
9448 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9449 uint32_t pf, pipesrc;
9450 int ret;
9451
Daniel Vetter6d90c952012-04-26 23:28:05 +02009452 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009453 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009454 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009455
9456 /* i965+ uses the linear or tiled offsets from the
9457 * Display Registers (which do not change across a page-flip)
9458 * so we need only reprogram the base address.
9459 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02009460 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9461 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9462 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009463 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
Daniel Vetterc2c75132012-07-05 12:17:30 +02009464 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009465
9466 /* XXX Enabling the panel-fitter across page-flip is so far
9467 * untested on non-native modes, so ignore it for now.
9468 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
9469 */
9470 pf = 0;
9471 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009472 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009473
9474 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009475 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009476 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009477}
9478
9479static int intel_gen6_queue_flip(struct drm_device *dev,
9480 struct drm_crtc *crtc,
9481 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009482 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009483 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009484 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009485{
9486 struct drm_i915_private *dev_priv = dev->dev_private;
9487 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9488 uint32_t pf, pipesrc;
9489 int ret;
9490
Daniel Vetter6d90c952012-04-26 23:28:05 +02009491 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009492 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009493 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009494
Daniel Vetter6d90c952012-04-26 23:28:05 +02009495 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9496 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9497 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009498 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009499
Chris Wilson99d9acd2012-04-17 20:37:00 +01009500 /* Contrary to the suggestions in the documentation,
9501 * "Enable Panel Fitter" does not seem to be required when page
9502 * flipping with a non-native mode, and worse causes a normal
9503 * modeset to fail.
9504 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
9505 */
9506 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009507 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009508 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009509
9510 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009511 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009512 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009513}
9514
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009515static int intel_gen7_queue_flip(struct drm_device *dev,
9516 struct drm_crtc *crtc,
9517 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009518 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009519 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009520 uint32_t flags)
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009521{
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009522 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009523 uint32_t plane_bit = 0;
Chris Wilsonffe74d72013-08-26 20:58:12 +01009524 int len, ret;
9525
Robin Schroereba905b2014-05-18 02:24:50 +02009526 switch (intel_crtc->plane) {
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009527 case PLANE_A:
9528 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
9529 break;
9530 case PLANE_B:
9531 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
9532 break;
9533 case PLANE_C:
9534 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
9535 break;
9536 default:
9537 WARN_ONCE(1, "unknown plane in flip command\n");
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009538 return -ENODEV;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009539 }
9540
Chris Wilsonffe74d72013-08-26 20:58:12 +01009541 len = 4;
Damien Lespiauf4768282014-04-07 20:24:34 +01009542 if (ring->id == RCS) {
Chris Wilsonffe74d72013-08-26 20:58:12 +01009543 len += 6;
Damien Lespiauf4768282014-04-07 20:24:34 +01009544 /*
9545 * On Gen 8, SRM is now taking an extra dword to accommodate
9546 * 48bits addresses, and we need a NOOP for the batch size to
9547 * stay even.
9548 */
9549 if (IS_GEN8(dev))
9550 len += 2;
9551 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009552
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009553 /*
9554 * BSpec MI_DISPLAY_FLIP for IVB:
9555 * "The full packet must be contained within the same cache line."
9556 *
9557 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
9558 * cacheline, if we ever start emitting more commands before
9559 * the MI_DISPLAY_FLIP we may need to first emit everything else,
9560 * then do the cacheline alignment, and finally emit the
9561 * MI_DISPLAY_FLIP.
9562 */
9563 ret = intel_ring_cacheline_align(ring);
9564 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009565 return ret;
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009566
Chris Wilsonffe74d72013-08-26 20:58:12 +01009567 ret = intel_ring_begin(ring, len);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009568 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009569 return ret;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009570
Chris Wilsonffe74d72013-08-26 20:58:12 +01009571 /* Unmask the flip-done completion message. Note that the bspec says that
9572 * we should do this for both the BCS and RCS, and that we must not unmask
9573 * more than one flip event at any time (or ensure that one flip message
9574 * can be sent by waiting for flip-done prior to queueing new flips).
9575 * Experimentation says that BCS works despite DERRMR masking all
9576 * flip-done completion events and that unmasking all planes at once
9577 * for the RCS also doesn't appear to drop events. Setting the DERRMR
9578 * to zero does lead to lockups within MI_DISPLAY_FLIP.
9579 */
9580 if (ring->id == RCS) {
9581 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9582 intel_ring_emit(ring, DERRMR);
9583 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9584 DERRMR_PIPEB_PRI_FLIP_DONE |
9585 DERRMR_PIPEC_PRI_FLIP_DONE));
Damien Lespiauf4768282014-04-07 20:24:34 +01009586 if (IS_GEN8(dev))
9587 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9588 MI_SRM_LRM_GLOBAL_GTT);
9589 else
9590 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) |
9591 MI_SRM_LRM_GLOBAL_GTT);
Chris Wilsonffe74d72013-08-26 20:58:12 +01009592 intel_ring_emit(ring, DERRMR);
9593 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Damien Lespiauf4768282014-04-07 20:24:34 +01009594 if (IS_GEN8(dev)) {
9595 intel_ring_emit(ring, 0);
9596 intel_ring_emit(ring, MI_NOOP);
9597 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009598 }
9599
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009600 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02009601 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009602 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009603 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +00009604
9605 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009606 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009607 return 0;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009608}
9609
Sourab Gupta84c33a62014-06-02 16:47:17 +05309610static bool use_mmio_flip(struct intel_engine_cs *ring,
9611 struct drm_i915_gem_object *obj)
9612{
9613 /*
9614 * This is not being used for older platforms, because
9615 * non-availability of flip done interrupt forces us to use
9616 * CS flips. Older platforms derive flip done using some clever
9617 * tricks involving the flip_pending status bits and vblank irqs.
9618 * So using MMIO flips there would disrupt this mechanism.
9619 */
9620
Chris Wilson8e09bf82014-07-08 10:40:30 +01009621 if (ring == NULL)
9622 return true;
9623
Sourab Gupta84c33a62014-06-02 16:47:17 +05309624 if (INTEL_INFO(ring->dev)->gen < 5)
9625 return false;
9626
9627 if (i915.use_mmio_flip < 0)
9628 return false;
9629 else if (i915.use_mmio_flip > 0)
9630 return true;
Oscar Mateo14bf9932014-07-24 17:04:34 +01009631 else if (i915.enable_execlists)
9632 return true;
Sourab Gupta84c33a62014-06-02 16:47:17 +05309633 else
John Harrison41c52412014-11-24 18:49:43 +00009634 return ring != i915_gem_request_get_ring(obj->last_read_req);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309635}
9636
Damien Lespiauff944562014-11-20 14:58:16 +00009637static void skl_do_mmio_flip(struct intel_crtc *intel_crtc)
9638{
9639 struct drm_device *dev = intel_crtc->base.dev;
9640 struct drm_i915_private *dev_priv = dev->dev_private;
9641 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
9642 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
9643 struct drm_i915_gem_object *obj = intel_fb->obj;
9644 const enum pipe pipe = intel_crtc->pipe;
9645 u32 ctl, stride;
9646
9647 ctl = I915_READ(PLANE_CTL(pipe, 0));
9648 ctl &= ~PLANE_CTL_TILED_MASK;
9649 if (obj->tiling_mode == I915_TILING_X)
9650 ctl |= PLANE_CTL_TILED_X;
9651
9652 /*
9653 * The stride is either expressed as a multiple of 64 bytes chunks for
9654 * linear buffers or in number of tiles for tiled buffers.
9655 */
9656 stride = fb->pitches[0] >> 6;
9657 if (obj->tiling_mode == I915_TILING_X)
9658 stride = fb->pitches[0] >> 9; /* X tiles are 512 bytes wide */
9659
9660 /*
9661 * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on
9662 * PLANE_SURF updates, the update is then guaranteed to be atomic.
9663 */
9664 I915_WRITE(PLANE_CTL(pipe, 0), ctl);
9665 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
9666
9667 I915_WRITE(PLANE_SURF(pipe, 0), intel_crtc->unpin_work->gtt_offset);
9668 POSTING_READ(PLANE_SURF(pipe, 0));
9669}
9670
9671static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc)
Sourab Gupta84c33a62014-06-02 16:47:17 +05309672{
9673 struct drm_device *dev = intel_crtc->base.dev;
9674 struct drm_i915_private *dev_priv = dev->dev_private;
9675 struct intel_framebuffer *intel_fb =
9676 to_intel_framebuffer(intel_crtc->base.primary->fb);
9677 struct drm_i915_gem_object *obj = intel_fb->obj;
9678 u32 dspcntr;
9679 u32 reg;
9680
Sourab Gupta84c33a62014-06-02 16:47:17 +05309681 reg = DSPCNTR(intel_crtc->plane);
9682 dspcntr = I915_READ(reg);
9683
Damien Lespiauc5d97472014-10-25 00:11:11 +01009684 if (obj->tiling_mode != I915_TILING_NONE)
9685 dspcntr |= DISPPLANE_TILED;
9686 else
9687 dspcntr &= ~DISPPLANE_TILED;
9688
Sourab Gupta84c33a62014-06-02 16:47:17 +05309689 I915_WRITE(reg, dspcntr);
9690
9691 I915_WRITE(DSPSURF(intel_crtc->plane),
9692 intel_crtc->unpin_work->gtt_offset);
9693 POSTING_READ(DSPSURF(intel_crtc->plane));
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009694
Damien Lespiauff944562014-11-20 14:58:16 +00009695}
9696
9697/*
9698 * XXX: This is the temporary way to update the plane registers until we get
9699 * around to using the usual plane update functions for MMIO flips
9700 */
9701static void intel_do_mmio_flip(struct intel_crtc *intel_crtc)
9702{
9703 struct drm_device *dev = intel_crtc->base.dev;
9704 bool atomic_update;
9705 u32 start_vbl_count;
9706
9707 intel_mark_page_flip_active(intel_crtc);
9708
9709 atomic_update = intel_pipe_update_start(intel_crtc, &start_vbl_count);
9710
9711 if (INTEL_INFO(dev)->gen >= 9)
9712 skl_do_mmio_flip(intel_crtc);
9713 else
9714 /* use_mmio_flip() retricts MMIO flips to ilk+ */
9715 ilk_do_mmio_flip(intel_crtc);
9716
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009717 if (atomic_update)
9718 intel_pipe_update_end(intel_crtc, start_vbl_count);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309719}
9720
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009721static void intel_mmio_flip_work_func(struct work_struct *work)
Sourab Gupta84c33a62014-06-02 16:47:17 +05309722{
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009723 struct intel_crtc *crtc =
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009724 container_of(work, struct intel_crtc, mmio_flip.work);
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009725 struct intel_mmio_flip *mmio_flip;
Sourab Gupta84c33a62014-06-02 16:47:17 +05309726
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009727 mmio_flip = &crtc->mmio_flip;
9728 if (mmio_flip->req)
John Harrison9c654812014-11-24 18:49:35 +00009729 WARN_ON(__i915_wait_request(mmio_flip->req,
9730 crtc->reset_counter,
9731 false, NULL, NULL) != 0);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309732
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009733 intel_do_mmio_flip(crtc);
9734 if (mmio_flip->req) {
9735 mutex_lock(&crtc->base.dev->struct_mutex);
John Harrison146d84f2014-12-05 13:49:33 +00009736 i915_gem_request_assign(&mmio_flip->req, NULL);
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009737 mutex_unlock(&crtc->base.dev->struct_mutex);
9738 }
Sourab Gupta84c33a62014-06-02 16:47:17 +05309739}
9740
9741static int intel_queue_mmio_flip(struct drm_device *dev,
9742 struct drm_crtc *crtc,
9743 struct drm_framebuffer *fb,
9744 struct drm_i915_gem_object *obj,
9745 struct intel_engine_cs *ring,
9746 uint32_t flags)
9747{
Sourab Gupta84c33a62014-06-02 16:47:17 +05309748 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309749
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009750 i915_gem_request_assign(&intel_crtc->mmio_flip.req,
9751 obj->last_write_req);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309752
Ander Conselvan de Oliveira536f5b52014-11-06 11:03:40 +02009753 schedule_work(&intel_crtc->mmio_flip.work);
9754
Sourab Gupta84c33a62014-06-02 16:47:17 +05309755 return 0;
9756}
9757
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009758static int intel_default_queue_flip(struct drm_device *dev,
9759 struct drm_crtc *crtc,
9760 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009761 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009762 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009763 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009764{
9765 return -ENODEV;
9766}
9767
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009768static bool __intel_pageflip_stall_check(struct drm_device *dev,
9769 struct drm_crtc *crtc)
9770{
9771 struct drm_i915_private *dev_priv = dev->dev_private;
9772 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9773 struct intel_unpin_work *work = intel_crtc->unpin_work;
9774 u32 addr;
9775
9776 if (atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE)
9777 return true;
9778
9779 if (!work->enable_stall_check)
9780 return false;
9781
9782 if (work->flip_ready_vblank == 0) {
Daniel Vetter3a8a9462014-11-26 14:39:48 +01009783 if (work->flip_queued_req &&
9784 !i915_gem_request_completed(work->flip_queued_req, true))
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009785 return false;
9786
Daniel Vetter1e3feef2015-02-13 21:03:45 +01009787 work->flip_ready_vblank = drm_crtc_vblank_count(crtc);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009788 }
9789
Daniel Vetter1e3feef2015-02-13 21:03:45 +01009790 if (drm_crtc_vblank_count(crtc) - work->flip_ready_vblank < 3)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009791 return false;
9792
9793 /* Potential stall - if we see that the flip has happened,
9794 * assume a missed interrupt. */
9795 if (INTEL_INFO(dev)->gen >= 4)
9796 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane)));
9797 else
9798 addr = I915_READ(DSPADDR(intel_crtc->plane));
9799
9800 /* There is a potential issue here with a false positive after a flip
9801 * to the same address. We could address this by checking for a
9802 * non-incrementing frame counter.
9803 */
9804 return addr == work->gtt_offset;
9805}
9806
9807void intel_check_page_flip(struct drm_device *dev, int pipe)
9808{
9809 struct drm_i915_private *dev_priv = dev->dev_private;
9810 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
9811 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetterf3260382014-09-15 14:55:23 +02009812
9813 WARN_ON(!in_irq());
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009814
9815 if (crtc == NULL)
9816 return;
9817
Daniel Vetterf3260382014-09-15 14:55:23 +02009818 spin_lock(&dev->event_lock);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009819 if (intel_crtc->unpin_work && __intel_pageflip_stall_check(dev, crtc)) {
9820 WARN_ONCE(1, "Kicking stuck page flip: queued at %d, now %d\n",
Daniel Vetter1e3feef2015-02-13 21:03:45 +01009821 intel_crtc->unpin_work->flip_queued_vblank,
9822 drm_vblank_count(dev, pipe));
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009823 page_flip_completed(intel_crtc);
9824 }
Daniel Vetterf3260382014-09-15 14:55:23 +02009825 spin_unlock(&dev->event_lock);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009826}
9827
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009828static int intel_crtc_page_flip(struct drm_crtc *crtc,
9829 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009830 struct drm_pending_vblank_event *event,
9831 uint32_t page_flip_flags)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009832{
9833 struct drm_device *dev = crtc->dev;
9834 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperf4510a22014-04-01 15:22:40 -07009835 struct drm_framebuffer *old_fb = crtc->primary->fb;
Matt Roper2ff8fde2014-07-08 07:50:07 -07009836 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009837 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Gustavo Padovan455a6802014-12-01 15:40:11 -08009838 struct drm_plane *primary = crtc->primary;
Daniel Vettera071fa02014-06-18 23:28:09 +02009839 enum pipe pipe = intel_crtc->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009840 struct intel_unpin_work *work;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009841 struct intel_engine_cs *ring;
Chris Wilson52e68632010-08-08 10:15:59 +01009842 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009843
Matt Roper2ff8fde2014-07-08 07:50:07 -07009844 /*
9845 * drm_mode_page_flip_ioctl() should already catch this, but double
9846 * check to be safe. In the future we may enable pageflipping from
9847 * a disabled primary plane.
9848 */
9849 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
9850 return -EBUSY;
9851
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009852 /* Can't change pixel format via MI display flips. */
Matt Roperf4510a22014-04-01 15:22:40 -07009853 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009854 return -EINVAL;
9855
9856 /*
9857 * TILEOFF/LINOFF registers can't be changed via MI display flips.
9858 * Note that pitch changes could also affect these register.
9859 */
9860 if (INTEL_INFO(dev)->gen > 3 &&
Matt Roperf4510a22014-04-01 15:22:40 -07009861 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
9862 fb->pitches[0] != crtc->primary->fb->pitches[0]))
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009863 return -EINVAL;
9864
Chris Wilsonf900db42014-02-20 09:26:13 +00009865 if (i915_terminally_wedged(&dev_priv->gpu_error))
9866 goto out_hang;
9867
Daniel Vetterb14c5672013-09-19 12:18:32 +02009868 work = kzalloc(sizeof(*work), GFP_KERNEL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009869 if (work == NULL)
9870 return -ENOMEM;
9871
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009872 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009873 work->crtc = crtc;
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +00009874 work->old_fb = old_fb;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009875 INIT_WORK(&work->work, intel_unpin_work_fn);
9876
Daniel Vetter87b6b102014-05-15 15:33:46 +02009877 ret = drm_crtc_vblank_get(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009878 if (ret)
9879 goto free_work;
9880
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009881 /* We borrow the event spin lock for protecting unpin_work */
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009882 spin_lock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009883 if (intel_crtc->unpin_work) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009884 /* Before declaring the flip queue wedged, check if
9885 * the hardware completed the operation behind our backs.
9886 */
9887 if (__intel_pageflip_stall_check(dev, crtc)) {
9888 DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n");
9889 page_flip_completed(intel_crtc);
9890 } else {
9891 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009892 spin_unlock_irq(&dev->event_lock);
Chris Wilson468f0b42010-05-27 13:18:13 +01009893
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009894 drm_crtc_vblank_put(crtc);
9895 kfree(work);
9896 return -EBUSY;
9897 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009898 }
9899 intel_crtc->unpin_work = work;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009900 spin_unlock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009901
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009902 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
9903 flush_workqueue(dev_priv->wq);
9904
Chris Wilson79158102012-05-23 11:13:58 +01009905 ret = i915_mutex_lock_interruptible(dev);
9906 if (ret)
9907 goto cleanup;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009908
Jesse Barnes75dfca82010-02-10 15:09:44 -08009909 /* Reference the objects for the scheduled work. */
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +00009910 drm_framebuffer_reference(work->old_fb);
Chris Wilson05394f32010-11-08 19:18:58 +00009911 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009912
Matt Roperf4510a22014-04-01 15:22:40 -07009913 crtc->primary->fb = fb;
Matt Roperafd65eb2015-02-03 13:10:04 -08009914 update_state_fb(crtc->primary);
Matt Roper1ed1f962015-01-30 16:22:36 -08009915
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009916 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009917
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009918 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +02009919 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009920
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009921 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
Daniel Vettera071fa02014-06-18 23:28:09 +02009922 work->flip_count = I915_READ(PIPE_FLIPCOUNT_GM45(pipe)) + 1;
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009923
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009924 if (IS_VALLEYVIEW(dev)) {
9925 ring = &dev_priv->ring[BCS];
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +00009926 if (obj->tiling_mode != intel_fb_obj(work->old_fb)->tiling_mode)
Chris Wilson8e09bf82014-07-08 10:40:30 +01009927 /* vlv: DISPLAY_FLIP fails to change tiling */
9928 ring = NULL;
Chris Wilson48bf5b22014-12-27 09:48:28 +00009929 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Chris Wilson2a92d5b2014-07-08 10:40:29 +01009930 ring = &dev_priv->ring[BCS];
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009931 } else if (INTEL_INFO(dev)->gen >= 7) {
John Harrison41c52412014-11-24 18:49:43 +00009932 ring = i915_gem_request_get_ring(obj->last_read_req);
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009933 if (ring == NULL || ring->id != RCS)
9934 ring = &dev_priv->ring[BCS];
9935 } else {
9936 ring = &dev_priv->ring[RCS];
9937 }
9938
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00009939 ret = intel_pin_and_fence_fb_obj(crtc->primary, fb, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009940 if (ret)
9941 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009942
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009943 work->gtt_offset =
9944 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset;
9945
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009946 if (use_mmio_flip(ring, obj)) {
Sourab Gupta84c33a62014-06-02 16:47:17 +05309947 ret = intel_queue_mmio_flip(dev, crtc, fb, obj, ring,
9948 page_flip_flags);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009949 if (ret)
9950 goto cleanup_unpin;
9951
John Harrisonf06cc1b2014-11-24 18:49:37 +00009952 i915_gem_request_assign(&work->flip_queued_req,
9953 obj->last_write_req);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009954 } else {
Sourab Gupta84c33a62014-06-02 16:47:17 +05309955 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, ring,
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009956 page_flip_flags);
9957 if (ret)
9958 goto cleanup_unpin;
9959
John Harrisonf06cc1b2014-11-24 18:49:37 +00009960 i915_gem_request_assign(&work->flip_queued_req,
9961 intel_ring_get_request(ring));
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009962 }
9963
Daniel Vetter1e3feef2015-02-13 21:03:45 +01009964 work->flip_queued_vblank = drm_crtc_vblank_count(crtc);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009965 work->enable_stall_check = true;
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009966
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +00009967 i915_gem_track_fb(intel_fb_obj(work->old_fb), obj,
Daniel Vettera071fa02014-06-18 23:28:09 +02009968 INTEL_FRONTBUFFER_PRIMARY(pipe));
9969
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02009970 intel_fbc_disable(dev);
Daniel Vetterf99d7062014-06-19 16:01:59 +02009971 intel_frontbuffer_flip_prepare(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009972 mutex_unlock(&dev->struct_mutex);
9973
Jesse Barnese5510fa2010-07-01 16:48:37 -07009974 trace_i915_flip_request(intel_crtc->plane, obj);
9975
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009976 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01009977
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009978cleanup_unpin:
9979 intel_unpin_fb_obj(obj);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009980cleanup_pending:
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009981 atomic_dec(&intel_crtc->unpin_work_count);
Matt Roperf4510a22014-04-01 15:22:40 -07009982 crtc->primary->fb = old_fb;
Matt Roperafd65eb2015-02-03 13:10:04 -08009983 update_state_fb(crtc->primary);
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +00009984 drm_framebuffer_unreference(work->old_fb);
Chris Wilson05394f32010-11-08 19:18:58 +00009985 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01009986 mutex_unlock(&dev->struct_mutex);
9987
Chris Wilson79158102012-05-23 11:13:58 +01009988cleanup:
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009989 spin_lock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +01009990 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009991 spin_unlock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +01009992
Daniel Vetter87b6b102014-05-15 15:33:46 +02009993 drm_crtc_vblank_put(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009994free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01009995 kfree(work);
9996
Chris Wilsonf900db42014-02-20 09:26:13 +00009997 if (ret == -EIO) {
9998out_hang:
Matt Roper53a366b2014-12-23 10:41:53 -08009999 ret = intel_plane_restore(primary);
Chris Wilsonf0d3dad2014-09-07 16:51:12 +010010000 if (ret == 0 && event) {
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010001 spin_lock_irq(&dev->event_lock);
Daniel Vettera071fa02014-06-18 23:28:09 +020010002 drm_send_vblank_event(dev, pipe, event);
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010003 spin_unlock_irq(&dev->event_lock);
Chris Wilsonf0d3dad2014-09-07 16:51:12 +010010004 }
Chris Wilsonf900db42014-02-20 09:26:13 +000010005 }
Chris Wilson96b099f2010-06-07 14:03:04 +010010006 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010007}
10008
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010009static struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010010 .mode_set_base_atomic = intel_pipe_set_base_atomic,
10011 .load_lut = intel_crtc_load_lut,
Matt Roperea2c67b2014-12-23 10:41:52 -080010012 .atomic_begin = intel_begin_crtc_commit,
10013 .atomic_flush = intel_finish_crtc_commit,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010014};
10015
Daniel Vetter9a935852012-07-05 22:34:27 +020010016/**
10017 * intel_modeset_update_staged_output_state
10018 *
10019 * Updates the staged output configuration state, e.g. after we've read out the
10020 * current hw state.
10021 */
10022static void intel_modeset_update_staged_output_state(struct drm_device *dev)
10023{
Ville Syrjälä76688512014-01-10 11:28:06 +020010024 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020010025 struct intel_encoder *encoder;
10026 struct intel_connector *connector;
10027
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020010028 for_each_intel_connector(dev, connector) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010029 connector->new_encoder =
10030 to_intel_encoder(connector->base.encoder);
10031 }
10032
Damien Lespiaub2784e12014-08-05 11:29:37 +010010033 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010034 encoder->new_crtc =
10035 to_intel_crtc(encoder->base.crtc);
10036 }
Ville Syrjälä76688512014-01-10 11:28:06 +020010037
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010038 for_each_intel_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080010039 crtc->new_enabled = crtc->base.state->enable;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010040
10041 if (crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010042 crtc->new_config = crtc->config;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010043 else
10044 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020010045 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010046}
10047
10048/**
10049 * intel_modeset_commit_output_state
10050 *
10051 * This function copies the stage display pipe configuration to the real one.
10052 */
10053static void intel_modeset_commit_output_state(struct drm_device *dev)
10054{
Ville Syrjälä76688512014-01-10 11:28:06 +020010055 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020010056 struct intel_encoder *encoder;
10057 struct intel_connector *connector;
10058
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020010059 for_each_intel_connector(dev, connector) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010060 connector->base.encoder = &connector->new_encoder->base;
10061 }
10062
Damien Lespiaub2784e12014-08-05 11:29:37 +010010063 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010064 encoder->base.crtc = &encoder->new_crtc->base;
10065 }
Ville Syrjälä76688512014-01-10 11:28:06 +020010066
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010067 for_each_intel_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080010068 crtc->base.state->enable = crtc->new_enabled;
Ville Syrjälä76688512014-01-10 11:28:06 +020010069 crtc->base.enabled = crtc->new_enabled;
10070 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010071}
10072
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010073static void
Robin Schroereba905b2014-05-18 02:24:50 +020010074connected_sink_compute_bpp(struct intel_connector *connector,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010075 struct intel_crtc_state *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010076{
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010077 int bpp = pipe_config->pipe_bpp;
10078
10079 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
10080 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030010081 connector->base.name);
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010082
10083 /* Don't use an invalid EDID bpc value */
10084 if (connector->base.display_info.bpc &&
10085 connector->base.display_info.bpc * 3 < bpp) {
10086 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
10087 bpp, connector->base.display_info.bpc*3);
10088 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
10089 }
10090
10091 /* Clamp bpp to 8 on screens without EDID 1.4 */
10092 if (connector->base.display_info.bpc == 0 && bpp > 24) {
10093 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
10094 bpp);
10095 pipe_config->pipe_bpp = 24;
10096 }
10097}
10098
10099static int
10100compute_baseline_pipe_bpp(struct intel_crtc *crtc,
10101 struct drm_framebuffer *fb,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010102 struct intel_crtc_state *pipe_config)
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010103{
10104 struct drm_device *dev = crtc->base.dev;
10105 struct intel_connector *connector;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010106 int bpp;
10107
Daniel Vetterd42264b2013-03-28 16:38:08 +010010108 switch (fb->pixel_format) {
10109 case DRM_FORMAT_C8:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010110 bpp = 8*3; /* since we go through a colormap */
10111 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +010010112 case DRM_FORMAT_XRGB1555:
10113 case DRM_FORMAT_ARGB1555:
10114 /* checked in intel_framebuffer_init already */
10115 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
10116 return -EINVAL;
10117 case DRM_FORMAT_RGB565:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010118 bpp = 6*3; /* min is 18bpp */
10119 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +010010120 case DRM_FORMAT_XBGR8888:
10121 case DRM_FORMAT_ABGR8888:
10122 /* checked in intel_framebuffer_init already */
10123 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
10124 return -EINVAL;
10125 case DRM_FORMAT_XRGB8888:
10126 case DRM_FORMAT_ARGB8888:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010127 bpp = 8*3;
10128 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +010010129 case DRM_FORMAT_XRGB2101010:
10130 case DRM_FORMAT_ARGB2101010:
10131 case DRM_FORMAT_XBGR2101010:
10132 case DRM_FORMAT_ABGR2101010:
10133 /* checked in intel_framebuffer_init already */
10134 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
Daniel Vetterbaba1332013-03-27 00:45:00 +010010135 return -EINVAL;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010136 bpp = 10*3;
10137 break;
Daniel Vetterbaba1332013-03-27 00:45:00 +010010138 /* TODO: gen4+ supports 16 bpc floating point, too. */
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010139 default:
10140 DRM_DEBUG_KMS("unsupported depth\n");
10141 return -EINVAL;
10142 }
10143
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010144 pipe_config->pipe_bpp = bpp;
10145
10146 /* Clamp display bpp to EDID value */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020010147 for_each_intel_connector(dev, connector) {
Daniel Vetter1b829e02013-06-02 13:26:24 +020010148 if (!connector->new_encoder ||
10149 connector->new_encoder->new_crtc != crtc)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010150 continue;
10151
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010152 connected_sink_compute_bpp(connector, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010153 }
10154
10155 return bpp;
10156}
10157
Daniel Vetter644db712013-09-19 14:53:58 +020010158static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
10159{
10160 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
10161 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +010010162 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +020010163 mode->crtc_hdisplay, mode->crtc_hsync_start,
10164 mode->crtc_hsync_end, mode->crtc_htotal,
10165 mode->crtc_vdisplay, mode->crtc_vsync_start,
10166 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
10167}
10168
Daniel Vetterc0b03412013-05-28 12:05:54 +020010169static void intel_dump_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010170 struct intel_crtc_state *pipe_config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020010171 const char *context)
10172{
10173 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
10174 context, pipe_name(crtc->pipe));
10175
10176 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
10177 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
10178 pipe_config->pipe_bpp, pipe_config->dither);
10179 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
10180 pipe_config->has_pch_encoder,
10181 pipe_config->fdi_lanes,
10182 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
10183 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
10184 pipe_config->fdi_m_n.tu);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010185 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
10186 pipe_config->has_dp_encoder,
10187 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
10188 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
10189 pipe_config->dp_m_n.tu);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010190
10191 DRM_DEBUG_KMS("dp: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n",
10192 pipe_config->has_dp_encoder,
10193 pipe_config->dp_m2_n2.gmch_m,
10194 pipe_config->dp_m2_n2.gmch_n,
10195 pipe_config->dp_m2_n2.link_m,
10196 pipe_config->dp_m2_n2.link_n,
10197 pipe_config->dp_m2_n2.tu);
10198
Daniel Vetter55072d12014-11-20 16:10:28 +010010199 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
10200 pipe_config->has_audio,
10201 pipe_config->has_infoframe);
10202
Daniel Vetterc0b03412013-05-28 12:05:54 +020010203 DRM_DEBUG_KMS("requested mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010204 drm_mode_debug_printmodeline(&pipe_config->base.mode);
Daniel Vetterc0b03412013-05-28 12:05:54 +020010205 DRM_DEBUG_KMS("adjusted mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010206 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
10207 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +030010208 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010209 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
10210 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Daniel Vetterc0b03412013-05-28 12:05:54 +020010211 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
10212 pipe_config->gmch_pfit.control,
10213 pipe_config->gmch_pfit.pgm_ratios,
10214 pipe_config->gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010215 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
Daniel Vetterc0b03412013-05-28 12:05:54 +020010216 pipe_config->pch_pfit.pos,
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010217 pipe_config->pch_pfit.size,
10218 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
Paulo Zanoni42db64e2013-05-31 16:33:22 -030010219 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Ville Syrjäläcf532bb2013-09-04 18:30:02 +030010220 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
Daniel Vetterc0b03412013-05-28 12:05:54 +020010221}
10222
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010223static bool encoders_cloneable(const struct intel_encoder *a,
10224 const struct intel_encoder *b)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010225{
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010226 /* masks could be asymmetric, so check both ways */
10227 return a == b || (a->cloneable & (1 << b->type) &&
10228 b->cloneable & (1 << a->type));
10229}
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010230
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010231static bool check_single_encoder_cloning(struct intel_crtc *crtc,
10232 struct intel_encoder *encoder)
10233{
10234 struct drm_device *dev = crtc->base.dev;
10235 struct intel_encoder *source_encoder;
10236
Damien Lespiaub2784e12014-08-05 11:29:37 +010010237 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010238 if (source_encoder->new_crtc != crtc)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010239 continue;
10240
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010241 if (!encoders_cloneable(encoder, source_encoder))
10242 return false;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010243 }
10244
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010245 return true;
10246}
10247
10248static bool check_encoder_cloning(struct intel_crtc *crtc)
10249{
10250 struct drm_device *dev = crtc->base.dev;
10251 struct intel_encoder *encoder;
10252
Damien Lespiaub2784e12014-08-05 11:29:37 +010010253 for_each_intel_encoder(dev, encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010254 if (encoder->new_crtc != crtc)
10255 continue;
10256
10257 if (!check_single_encoder_cloning(crtc, encoder))
10258 return false;
10259 }
10260
10261 return true;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010262}
10263
Ville Syrjälä00f0b372014-12-02 14:10:46 +020010264static bool check_digital_port_conflicts(struct drm_device *dev)
10265{
10266 struct intel_connector *connector;
10267 unsigned int used_ports = 0;
10268
10269 /*
10270 * Walk the connector list instead of the encoder
10271 * list to detect the problem on ddi platforms
10272 * where there's just one encoder per digital port.
10273 */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020010274 for_each_intel_connector(dev, connector) {
Ville Syrjälä00f0b372014-12-02 14:10:46 +020010275 struct intel_encoder *encoder = connector->new_encoder;
10276
10277 if (!encoder)
10278 continue;
10279
10280 WARN_ON(!encoder->new_crtc);
10281
10282 switch (encoder->type) {
10283 unsigned int port_mask;
10284 case INTEL_OUTPUT_UNKNOWN:
10285 if (WARN_ON(!HAS_DDI(dev)))
10286 break;
10287 case INTEL_OUTPUT_DISPLAYPORT:
10288 case INTEL_OUTPUT_HDMI:
10289 case INTEL_OUTPUT_EDP:
10290 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
10291
10292 /* the same port mustn't appear more than once */
10293 if (used_ports & port_mask)
10294 return false;
10295
10296 used_ports |= port_mask;
10297 default:
10298 break;
10299 }
10300 }
10301
10302 return true;
10303}
10304
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010305static struct intel_crtc_state *
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010306intel_modeset_pipe_config(struct drm_crtc *crtc,
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010307 struct drm_framebuffer *fb,
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010308 struct drm_display_mode *mode)
Daniel Vetter7758a112012-07-08 19:40:39 +020010309{
10310 struct drm_device *dev = crtc->dev;
Daniel Vetter7758a112012-07-08 19:40:39 +020010311 struct intel_encoder *encoder;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010312 struct intel_crtc_state *pipe_config;
Daniel Vettere29c22c2013-02-21 00:00:16 +010010313 int plane_bpp, ret = -EINVAL;
10314 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +020010315
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010316 if (!check_encoder_cloning(to_intel_crtc(crtc))) {
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010317 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
10318 return ERR_PTR(-EINVAL);
10319 }
10320
Ville Syrjälä00f0b372014-12-02 14:10:46 +020010321 if (!check_digital_port_conflicts(dev)) {
10322 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
10323 return ERR_PTR(-EINVAL);
10324 }
10325
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010326 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
10327 if (!pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +020010328 return ERR_PTR(-ENOMEM);
10329
Matt Roper07878242015-02-25 11:43:26 -080010330 pipe_config->base.crtc = crtc;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010331 drm_mode_copy(&pipe_config->base.adjusted_mode, mode);
10332 drm_mode_copy(&pipe_config->base.mode, mode);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010333
Daniel Vettere143a212013-07-04 12:01:15 +020010334 pipe_config->cpu_transcoder =
10335 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010336 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010337
Imre Deak2960bc92013-07-30 13:36:32 +030010338 /*
10339 * Sanitize sync polarity flags based on requested ones. If neither
10340 * positive or negative polarity is requested, treat this as meaning
10341 * negative polarity.
10342 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010343 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030010344 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010345 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030010346
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010347 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030010348 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010349 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030010350
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010351 /* Compute a starting value for pipe_config->pipe_bpp taking the source
10352 * plane pixel format and any sink constraints into account. Returns the
10353 * source plane bpp so that dithering can be selected on mismatches
10354 * after encoders and crtc also have had their say. */
10355 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
10356 fb, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010357 if (plane_bpp < 0)
10358 goto fail;
10359
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030010360 /*
10361 * Determine the real pipe dimensions. Note that stereo modes can
10362 * increase the actual pipe size due to the frame doubling and
10363 * insertion of additional space for blanks between the frame. This
10364 * is stored in the crtc timings. We use the requested mode to do this
10365 * computation to clearly distinguish it from the adjusted mode, which
10366 * can be changed by the connectors in the below retry loop.
10367 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010368 drm_crtc_get_hv_timing(&pipe_config->base.mode,
Gustavo Padovanecb7e162014-12-01 15:40:09 -080010369 &pipe_config->pipe_src_w,
10370 &pipe_config->pipe_src_h);
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030010371
Daniel Vettere29c22c2013-02-21 00:00:16 +010010372encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +020010373 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +020010374 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +020010375 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +020010376
Daniel Vetter135c81b2013-07-21 21:37:09 +020010377 /* Fill in default crtc timings, allow encoders to overwrite them. */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010378 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
10379 CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +020010380
Daniel Vetter7758a112012-07-08 19:40:39 +020010381 /* Pass our mode to the connectors and the CRTC to give them a chance to
10382 * adjust it according to limitations or connector properties, and also
10383 * a chance to reject the mode entirely.
10384 */
Damien Lespiaub2784e12014-08-05 11:29:37 +010010385 for_each_intel_encoder(dev, encoder) {
Daniel Vetter7758a112012-07-08 19:40:39 +020010386
10387 if (&encoder->new_crtc->base != crtc)
10388 continue;
Daniel Vetter7ae89232013-03-27 00:44:52 +010010389
Daniel Vetterefea6e82013-07-21 21:36:59 +020010390 if (!(encoder->compute_config(encoder, pipe_config))) {
10391 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +020010392 goto fail;
10393 }
10394 }
10395
Daniel Vetterff9a6752013-06-01 17:16:21 +020010396 /* Set default port clock if not overwritten by the encoder. Needs to be
10397 * done afterwards in case the encoder adjusts the mode. */
10398 if (!pipe_config->port_clock)
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010399 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
Damien Lespiau241bfc32013-09-25 16:45:37 +010010400 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +020010401
Daniel Vettera43f6e02013-06-07 23:10:32 +020010402 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010010403 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +020010404 DRM_DEBUG_KMS("CRTC fixup failed\n");
10405 goto fail;
10406 }
Daniel Vettere29c22c2013-02-21 00:00:16 +010010407
10408 if (ret == RETRY) {
10409 if (WARN(!retry, "loop in pipe configuration computation\n")) {
10410 ret = -EINVAL;
10411 goto fail;
10412 }
10413
10414 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
10415 retry = false;
10416 goto encoder_retry;
10417 }
10418
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010419 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
10420 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
10421 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
10422
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010423 return pipe_config;
Daniel Vetter7758a112012-07-08 19:40:39 +020010424fail:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010425 kfree(pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010010426 return ERR_PTR(ret);
Daniel Vetter7758a112012-07-08 19:40:39 +020010427}
10428
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010429/* Computes which crtcs are affected and sets the relevant bits in the mask. For
10430 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
10431static void
10432intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
10433 unsigned *prepare_pipes, unsigned *disable_pipes)
10434{
10435 struct intel_crtc *intel_crtc;
10436 struct drm_device *dev = crtc->dev;
10437 struct intel_encoder *encoder;
10438 struct intel_connector *connector;
10439 struct drm_crtc *tmp_crtc;
10440
10441 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
10442
10443 /* Check which crtcs have changed outputs connected to them, these need
10444 * to be part of the prepare_pipes mask. We don't (yet) support global
10445 * modeset across multiple crtcs, so modeset_pipes will only have one
10446 * bit set at most. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020010447 for_each_intel_connector(dev, connector) {
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010448 if (connector->base.encoder == &connector->new_encoder->base)
10449 continue;
10450
10451 if (connector->base.encoder) {
10452 tmp_crtc = connector->base.encoder->crtc;
10453
10454 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
10455 }
10456
10457 if (connector->new_encoder)
10458 *prepare_pipes |=
10459 1 << connector->new_encoder->new_crtc->pipe;
10460 }
10461
Damien Lespiaub2784e12014-08-05 11:29:37 +010010462 for_each_intel_encoder(dev, encoder) {
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010463 if (encoder->base.crtc == &encoder->new_crtc->base)
10464 continue;
10465
10466 if (encoder->base.crtc) {
10467 tmp_crtc = encoder->base.crtc;
10468
10469 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
10470 }
10471
10472 if (encoder->new_crtc)
10473 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
10474 }
10475
Ville Syrjälä76688512014-01-10 11:28:06 +020010476 /* Check for pipes that will be enabled/disabled ... */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010477 for_each_intel_crtc(dev, intel_crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080010478 if (intel_crtc->base.state->enable == intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010479 continue;
10480
Ville Syrjälä76688512014-01-10 11:28:06 +020010481 if (!intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010482 *disable_pipes |= 1 << intel_crtc->pipe;
Ville Syrjälä76688512014-01-10 11:28:06 +020010483 else
10484 *prepare_pipes |= 1 << intel_crtc->pipe;
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010485 }
10486
10487
10488 /* set_mode is also used to update properties on life display pipes. */
10489 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä76688512014-01-10 11:28:06 +020010490 if (intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010491 *prepare_pipes |= 1 << intel_crtc->pipe;
10492
Daniel Vetterb6c51642013-04-12 18:48:43 +020010493 /*
10494 * For simplicity do a full modeset on any pipe where the output routing
10495 * changed. We could be more clever, but that would require us to be
10496 * more careful with calling the relevant encoder->mode_set functions.
10497 */
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010498 if (*prepare_pipes)
10499 *modeset_pipes = *prepare_pipes;
10500
10501 /* ... and mask these out. */
10502 *modeset_pipes &= ~(*disable_pipes);
10503 *prepare_pipes &= ~(*disable_pipes);
Daniel Vetterb6c51642013-04-12 18:48:43 +020010504
10505 /*
10506 * HACK: We don't (yet) fully support global modesets. intel_set_config
10507 * obies this rule, but the modeset restore mode of
10508 * intel_modeset_setup_hw_state does not.
10509 */
10510 *modeset_pipes &= 1 << intel_crtc->pipe;
10511 *prepare_pipes &= 1 << intel_crtc->pipe;
Daniel Vettere3641d32013-04-11 19:49:07 +020010512
10513 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
10514 *modeset_pipes, *prepare_pipes, *disable_pipes);
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010515}
10516
Daniel Vetterea9d7582012-07-10 10:42:52 +020010517static bool intel_crtc_in_use(struct drm_crtc *crtc)
10518{
10519 struct drm_encoder *encoder;
10520 struct drm_device *dev = crtc->dev;
10521
10522 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
10523 if (encoder->crtc == crtc)
10524 return true;
10525
10526 return false;
10527}
10528
10529static void
10530intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
10531{
Daniel Vetterba41c0de2014-11-03 15:04:55 +010010532 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterea9d7582012-07-10 10:42:52 +020010533 struct intel_encoder *intel_encoder;
10534 struct intel_crtc *intel_crtc;
10535 struct drm_connector *connector;
10536
Daniel Vetterba41c0de2014-11-03 15:04:55 +010010537 intel_shared_dpll_commit(dev_priv);
10538
Damien Lespiaub2784e12014-08-05 11:29:37 +010010539 for_each_intel_encoder(dev, intel_encoder) {
Daniel Vetterea9d7582012-07-10 10:42:52 +020010540 if (!intel_encoder->base.crtc)
10541 continue;
10542
10543 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
10544
10545 if (prepare_pipes & (1 << intel_crtc->pipe))
10546 intel_encoder->connectors_active = false;
10547 }
10548
10549 intel_modeset_commit_output_state(dev);
10550
Ville Syrjälä76688512014-01-10 11:28:06 +020010551 /* Double check state. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010552 for_each_intel_crtc(dev, intel_crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080010553 WARN_ON(intel_crtc->base.state->enable != intel_crtc_in_use(&intel_crtc->base));
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010554 WARN_ON(intel_crtc->new_config &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010555 intel_crtc->new_config != intel_crtc->config);
Matt Roper83d65732015-02-25 13:12:16 -080010556 WARN_ON(intel_crtc->base.state->enable != !!intel_crtc->new_config);
Daniel Vetterea9d7582012-07-10 10:42:52 +020010557 }
10558
10559 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
10560 if (!connector->encoder || !connector->encoder->crtc)
10561 continue;
10562
10563 intel_crtc = to_intel_crtc(connector->encoder->crtc);
10564
10565 if (prepare_pipes & (1 << intel_crtc->pipe)) {
Daniel Vetter68d34722012-09-06 22:08:35 +020010566 struct drm_property *dpms_property =
10567 dev->mode_config.dpms_property;
10568
Daniel Vetterea9d7582012-07-10 10:42:52 +020010569 connector->dpms = DRM_MODE_DPMS_ON;
Rob Clark662595d2012-10-11 20:36:04 -050010570 drm_object_property_set_value(&connector->base,
Daniel Vetter68d34722012-09-06 22:08:35 +020010571 dpms_property,
10572 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +020010573
10574 intel_encoder = to_intel_encoder(connector->encoder);
10575 intel_encoder->connectors_active = true;
10576 }
10577 }
10578
10579}
10580
Ville Syrjälä3bd26262013-09-06 23:29:02 +030010581static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010582{
Ville Syrjälä3bd26262013-09-06 23:29:02 +030010583 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010584
10585 if (clock1 == clock2)
10586 return true;
10587
10588 if (!clock1 || !clock2)
10589 return false;
10590
10591 diff = abs(clock1 - clock2);
10592
10593 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
10594 return true;
10595
10596 return false;
10597}
10598
Daniel Vetter25c5b262012-07-08 22:08:04 +020010599#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
10600 list_for_each_entry((intel_crtc), \
10601 &(dev)->mode_config.crtc_list, \
10602 base.head) \
Daniel Vetter0973f182013-04-19 11:25:33 +020010603 if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +020010604
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010605static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020010606intel_pipe_config_compare(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010607 struct intel_crtc_state *current_config,
10608 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010609{
Daniel Vetter66e985c2013-06-05 13:34:20 +020010610#define PIPE_CONF_CHECK_X(name) \
10611 if (current_config->name != pipe_config->name) { \
10612 DRM_ERROR("mismatch in " #name " " \
10613 "(expected 0x%08x, found 0x%08x)\n", \
10614 current_config->name, \
10615 pipe_config->name); \
10616 return false; \
10617 }
10618
Daniel Vetter08a24032013-04-19 11:25:34 +020010619#define PIPE_CONF_CHECK_I(name) \
10620 if (current_config->name != pipe_config->name) { \
10621 DRM_ERROR("mismatch in " #name " " \
10622 "(expected %i, found %i)\n", \
10623 current_config->name, \
10624 pipe_config->name); \
10625 return false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +010010626 }
10627
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010628/* This is required for BDW+ where there is only one set of registers for
10629 * switching between high and low RR.
10630 * This macro can be used whenever a comparison has to be made between one
10631 * hw state and multiple sw state variables.
10632 */
10633#define PIPE_CONF_CHECK_I_ALT(name, alt_name) \
10634 if ((current_config->name != pipe_config->name) && \
10635 (current_config->alt_name != pipe_config->name)) { \
10636 DRM_ERROR("mismatch in " #name " " \
10637 "(expected %i or %i, found %i)\n", \
10638 current_config->name, \
10639 current_config->alt_name, \
10640 pipe_config->name); \
10641 return false; \
10642 }
10643
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010644#define PIPE_CONF_CHECK_FLAGS(name, mask) \
10645 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Jesse Barnes6f024882013-07-01 10:19:09 -070010646 DRM_ERROR("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010647 "(expected %i, found %i)\n", \
10648 current_config->name & (mask), \
10649 pipe_config->name & (mask)); \
10650 return false; \
10651 }
10652
Ville Syrjälä5e550652013-09-06 23:29:07 +030010653#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
10654 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
10655 DRM_ERROR("mismatch in " #name " " \
10656 "(expected %i, found %i)\n", \
10657 current_config->name, \
10658 pipe_config->name); \
10659 return false; \
10660 }
10661
Daniel Vetterbb760062013-06-06 14:55:52 +020010662#define PIPE_CONF_QUIRK(quirk) \
10663 ((current_config->quirks | pipe_config->quirks) & (quirk))
10664
Daniel Vettereccb1402013-05-22 00:50:22 +020010665 PIPE_CONF_CHECK_I(cpu_transcoder);
10666
Daniel Vetter08a24032013-04-19 11:25:34 +020010667 PIPE_CONF_CHECK_I(has_pch_encoder);
10668 PIPE_CONF_CHECK_I(fdi_lanes);
Daniel Vetter72419202013-04-04 13:28:53 +020010669 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
10670 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
10671 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
10672 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
10673 PIPE_CONF_CHECK_I(fdi_m_n.tu);
Daniel Vetter08a24032013-04-19 11:25:34 +020010674
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010675 PIPE_CONF_CHECK_I(has_dp_encoder);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010676
10677 if (INTEL_INFO(dev)->gen < 8) {
10678 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
10679 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
10680 PIPE_CONF_CHECK_I(dp_m_n.link_m);
10681 PIPE_CONF_CHECK_I(dp_m_n.link_n);
10682 PIPE_CONF_CHECK_I(dp_m_n.tu);
10683
10684 if (current_config->has_drrs) {
10685 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_m);
10686 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_n);
10687 PIPE_CONF_CHECK_I(dp_m2_n2.link_m);
10688 PIPE_CONF_CHECK_I(dp_m2_n2.link_n);
10689 PIPE_CONF_CHECK_I(dp_m2_n2.tu);
10690 }
10691 } else {
10692 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_m, dp_m2_n2.gmch_m);
10693 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_n, dp_m2_n2.gmch_n);
10694 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_m, dp_m2_n2.link_m);
10695 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_n, dp_m2_n2.link_n);
10696 PIPE_CONF_CHECK_I_ALT(dp_m_n.tu, dp_m2_n2.tu);
10697 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010698
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010699 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
10700 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
10701 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
10702 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
10703 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
10704 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010705
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010706 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
10707 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
10708 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
10709 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
10710 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
10711 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010712
Daniel Vetterc93f54c2013-06-27 19:47:19 +020010713 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6897b4b2014-04-24 23:54:47 +020010714 PIPE_CONF_CHECK_I(has_hdmi_sink);
Daniel Vetterb5a9fa02014-04-24 23:54:49 +020010715 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
10716 IS_VALLEYVIEW(dev))
10717 PIPE_CONF_CHECK_I(limited_color_range);
Jesse Barnese43823e2014-11-05 14:26:08 -080010718 PIPE_CONF_CHECK_I(has_infoframe);
Daniel Vetter6c49f242013-06-06 12:45:25 +020010719
Daniel Vetter9ed109a2014-04-24 23:54:52 +020010720 PIPE_CONF_CHECK_I(has_audio);
10721
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010722 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010723 DRM_MODE_FLAG_INTERLACE);
10724
Daniel Vetterbb760062013-06-06 14:55:52 +020010725 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010726 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010727 DRM_MODE_FLAG_PHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010728 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010729 DRM_MODE_FLAG_NHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010730 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010731 DRM_MODE_FLAG_PVSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010732 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010733 DRM_MODE_FLAG_NVSYNC);
10734 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010735
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010736 PIPE_CONF_CHECK_I(pipe_src_w);
10737 PIPE_CONF_CHECK_I(pipe_src_h);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010738
Daniel Vetter99535992014-04-13 12:00:33 +020010739 /*
10740 * FIXME: BIOS likes to set up a cloned config with lvds+external
10741 * screen. Since we don't yet re-compute the pipe config when moving
10742 * just the lvds port away to another pipe the sw tracking won't match.
10743 *
10744 * Proper atomic modesets with recomputed global state will fix this.
10745 * Until then just don't check gmch state for inherited modes.
10746 */
10747 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE)) {
10748 PIPE_CONF_CHECK_I(gmch_pfit.control);
10749 /* pfit ratios are autocomputed by the hw on gen4+ */
10750 if (INTEL_INFO(dev)->gen < 4)
10751 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
10752 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
10753 }
10754
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010755 PIPE_CONF_CHECK_I(pch_pfit.enabled);
10756 if (current_config->pch_pfit.enabled) {
10757 PIPE_CONF_CHECK_I(pch_pfit.pos);
10758 PIPE_CONF_CHECK_I(pch_pfit.size);
10759 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020010760
Jesse Barnese59150d2014-01-07 13:30:45 -080010761 /* BDW+ don't expose a synchronous way to read the state */
10762 if (IS_HASWELL(dev))
10763 PIPE_CONF_CHECK_I(ips_enabled);
Paulo Zanoni42db64e2013-05-31 16:33:22 -030010764
Ville Syrjälä282740f2013-09-04 18:30:03 +030010765 PIPE_CONF_CHECK_I(double_wide);
10766
Daniel Vetter26804af2014-06-25 22:01:55 +030010767 PIPE_CONF_CHECK_X(ddi_pll_sel);
10768
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010769 PIPE_CONF_CHECK_I(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010770 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +020010771 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010772 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
10773 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterd452c5b2014-07-04 11:27:39 -030010774 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
Damien Lespiau3f4cd192014-11-13 14:55:21 +000010775 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
10776 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
10777 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010778
Ville Syrjälä42571ae2013-09-06 23:29:00 +030010779 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
10780 PIPE_CONF_CHECK_I(pipe_bpp);
10781
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010782 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
Jesse Barnesa9a7e982014-01-20 14:18:04 -080010783 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
Ville Syrjälä5e550652013-09-06 23:29:07 +030010784
Daniel Vetter66e985c2013-06-05 13:34:20 +020010785#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +020010786#undef PIPE_CONF_CHECK_I
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010787#undef PIPE_CONF_CHECK_I_ALT
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010788#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +030010789#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +020010790#undef PIPE_CONF_QUIRK
Daniel Vetter627eb5a2013-04-29 19:33:42 +020010791
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010792 return true;
10793}
10794
Damien Lespiau08db6652014-11-04 17:06:52 +000010795static void check_wm_state(struct drm_device *dev)
10796{
10797 struct drm_i915_private *dev_priv = dev->dev_private;
10798 struct skl_ddb_allocation hw_ddb, *sw_ddb;
10799 struct intel_crtc *intel_crtc;
10800 int plane;
10801
10802 if (INTEL_INFO(dev)->gen < 9)
10803 return;
10804
10805 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
10806 sw_ddb = &dev_priv->wm.skl_hw.ddb;
10807
10808 for_each_intel_crtc(dev, intel_crtc) {
10809 struct skl_ddb_entry *hw_entry, *sw_entry;
10810 const enum pipe pipe = intel_crtc->pipe;
10811
10812 if (!intel_crtc->active)
10813 continue;
10814
10815 /* planes */
Damien Lespiaudd740782015-02-28 14:54:08 +000010816 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau08db6652014-11-04 17:06:52 +000010817 hw_entry = &hw_ddb.plane[pipe][plane];
10818 sw_entry = &sw_ddb->plane[pipe][plane];
10819
10820 if (skl_ddb_entry_equal(hw_entry, sw_entry))
10821 continue;
10822
10823 DRM_ERROR("mismatch in DDB state pipe %c plane %d "
10824 "(expected (%u,%u), found (%u,%u))\n",
10825 pipe_name(pipe), plane + 1,
10826 sw_entry->start, sw_entry->end,
10827 hw_entry->start, hw_entry->end);
10828 }
10829
10830 /* cursor */
10831 hw_entry = &hw_ddb.cursor[pipe];
10832 sw_entry = &sw_ddb->cursor[pipe];
10833
10834 if (skl_ddb_entry_equal(hw_entry, sw_entry))
10835 continue;
10836
10837 DRM_ERROR("mismatch in DDB state pipe %c cursor "
10838 "(expected (%u,%u), found (%u,%u))\n",
10839 pipe_name(pipe),
10840 sw_entry->start, sw_entry->end,
10841 hw_entry->start, hw_entry->end);
10842 }
10843}
10844
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010845static void
10846check_connector_state(struct drm_device *dev)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010847{
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010848 struct intel_connector *connector;
10849
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020010850 for_each_intel_connector(dev, connector) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010851 /* This also checks the encoder/connector hw state with the
10852 * ->get_hw_state callbacks. */
10853 intel_connector_check_state(connector);
10854
Rob Clarke2c719b2014-12-15 13:56:32 -050010855 I915_STATE_WARN(&connector->new_encoder->base != connector->base.encoder,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010856 "connector's staged encoder doesn't match current encoder\n");
10857 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010858}
10859
10860static void
10861check_encoder_state(struct drm_device *dev)
10862{
10863 struct intel_encoder *encoder;
10864 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010865
Damien Lespiaub2784e12014-08-05 11:29:37 +010010866 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010867 bool enabled = false;
10868 bool active = false;
10869 enum pipe pipe, tracked_pipe;
10870
10871 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
10872 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030010873 encoder->base.name);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010874
Rob Clarke2c719b2014-12-15 13:56:32 -050010875 I915_STATE_WARN(&encoder->new_crtc->base != encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010876 "encoder's stage crtc doesn't match current crtc\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050010877 I915_STATE_WARN(encoder->connectors_active && !encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010878 "encoder's active_connectors set, but no crtc\n");
10879
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020010880 for_each_intel_connector(dev, connector) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010881 if (connector->base.encoder != &encoder->base)
10882 continue;
10883 enabled = true;
10884 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
10885 active = true;
10886 }
Dave Airlie0e32b392014-05-02 14:02:48 +100010887 /*
10888 * for MST connectors if we unplug the connector is gone
10889 * away but the encoder is still connected to a crtc
10890 * until a modeset happens in response to the hotplug.
10891 */
10892 if (!enabled && encoder->base.encoder_type == DRM_MODE_ENCODER_DPMST)
10893 continue;
10894
Rob Clarke2c719b2014-12-15 13:56:32 -050010895 I915_STATE_WARN(!!encoder->base.crtc != enabled,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010896 "encoder's enabled state mismatch "
10897 "(expected %i, found %i)\n",
10898 !!encoder->base.crtc, enabled);
Rob Clarke2c719b2014-12-15 13:56:32 -050010899 I915_STATE_WARN(active && !encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010900 "active encoder with no crtc\n");
10901
Rob Clarke2c719b2014-12-15 13:56:32 -050010902 I915_STATE_WARN(encoder->connectors_active != active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010903 "encoder's computed active state doesn't match tracked active state "
10904 "(expected %i, found %i)\n", active, encoder->connectors_active);
10905
10906 active = encoder->get_hw_state(encoder, &pipe);
Rob Clarke2c719b2014-12-15 13:56:32 -050010907 I915_STATE_WARN(active != encoder->connectors_active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010908 "encoder's hw state doesn't match sw tracking "
10909 "(expected %i, found %i)\n",
10910 encoder->connectors_active, active);
10911
10912 if (!encoder->base.crtc)
10913 continue;
10914
10915 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
Rob Clarke2c719b2014-12-15 13:56:32 -050010916 I915_STATE_WARN(active && pipe != tracked_pipe,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010917 "active encoder's pipe doesn't match"
10918 "(expected %i, found %i)\n",
10919 tracked_pipe, pipe);
10920
10921 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010922}
10923
10924static void
10925check_crtc_state(struct drm_device *dev)
10926{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010927 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010928 struct intel_crtc *crtc;
10929 struct intel_encoder *encoder;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010930 struct intel_crtc_state pipe_config;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010931
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010932 for_each_intel_crtc(dev, crtc) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010933 bool enabled = false;
10934 bool active = false;
10935
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010936 memset(&pipe_config, 0, sizeof(pipe_config));
10937
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010938 DRM_DEBUG_KMS("[CRTC:%d]\n",
10939 crtc->base.base.id);
10940
Matt Roper83d65732015-02-25 13:12:16 -080010941 I915_STATE_WARN(crtc->active && !crtc->base.state->enable,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010942 "active crtc, but not enabled in sw tracking\n");
10943
Damien Lespiaub2784e12014-08-05 11:29:37 +010010944 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010945 if (encoder->base.crtc != &crtc->base)
10946 continue;
10947 enabled = true;
10948 if (encoder->connectors_active)
10949 active = true;
10950 }
Daniel Vetter6c49f242013-06-06 12:45:25 +020010951
Rob Clarke2c719b2014-12-15 13:56:32 -050010952 I915_STATE_WARN(active != crtc->active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010953 "crtc's computed active state doesn't match tracked active state "
10954 "(expected %i, found %i)\n", active, crtc->active);
Matt Roper83d65732015-02-25 13:12:16 -080010955 I915_STATE_WARN(enabled != crtc->base.state->enable,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010956 "crtc's computed enabled state doesn't match tracked enabled state "
Matt Roper83d65732015-02-25 13:12:16 -080010957 "(expected %i, found %i)\n", enabled,
10958 crtc->base.state->enable);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010959
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010960 active = dev_priv->display.get_pipe_config(crtc,
10961 &pipe_config);
Daniel Vetterd62cf622013-05-29 10:41:29 +020010962
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030010963 /* hw state is inconsistent with the pipe quirk */
10964 if ((crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
10965 (crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Daniel Vetterd62cf622013-05-29 10:41:29 +020010966 active = crtc->active;
10967
Damien Lespiaub2784e12014-08-05 11:29:37 +010010968 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä3eaba512013-08-05 17:57:48 +030010969 enum pipe pipe;
Daniel Vetter6c49f242013-06-06 12:45:25 +020010970 if (encoder->base.crtc != &crtc->base)
10971 continue;
Daniel Vetter1d37b682013-11-18 09:00:59 +010010972 if (encoder->get_hw_state(encoder, &pipe))
Daniel Vetter6c49f242013-06-06 12:45:25 +020010973 encoder->get_config(encoder, &pipe_config);
10974 }
10975
Rob Clarke2c719b2014-12-15 13:56:32 -050010976 I915_STATE_WARN(crtc->active != active,
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010977 "crtc active state doesn't match with hw state "
10978 "(expected %i, found %i)\n", crtc->active, active);
10979
Daniel Vetterc0b03412013-05-28 12:05:54 +020010980 if (active &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010981 !intel_pipe_config_compare(dev, crtc->config, &pipe_config)) {
Rob Clarke2c719b2014-12-15 13:56:32 -050010982 I915_STATE_WARN(1, "pipe state doesn't match!\n");
Daniel Vetterc0b03412013-05-28 12:05:54 +020010983 intel_dump_pipe_config(crtc, &pipe_config,
10984 "[hw state]");
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010985 intel_dump_pipe_config(crtc, crtc->config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020010986 "[sw state]");
10987 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010988 }
10989}
10990
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010991static void
10992check_shared_dpll_state(struct drm_device *dev)
10993{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010994 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010995 struct intel_crtc *crtc;
10996 struct intel_dpll_hw_state dpll_hw_state;
10997 int i;
Daniel Vetter53589012013-06-05 13:34:16 +020010998
10999 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
11000 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
11001 int enabled_crtcs = 0, active_crtcs = 0;
11002 bool active;
11003
11004 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
11005
11006 DRM_DEBUG_KMS("%s\n", pll->name);
11007
11008 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
11009
Rob Clarke2c719b2014-12-15 13:56:32 -050011010 I915_STATE_WARN(pll->active > hweight32(pll->config.crtc_mask),
Daniel Vetter53589012013-06-05 13:34:16 +020011011 "more active pll users than references: %i vs %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011012 pll->active, hweight32(pll->config.crtc_mask));
Rob Clarke2c719b2014-12-15 13:56:32 -050011013 I915_STATE_WARN(pll->active && !pll->on,
Daniel Vetter53589012013-06-05 13:34:16 +020011014 "pll in active use but not on in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050011015 I915_STATE_WARN(pll->on && !pll->active,
Daniel Vetter35c95372013-07-17 06:55:04 +020011016 "pll in on but not on in use in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050011017 I915_STATE_WARN(pll->on != active,
Daniel Vetter53589012013-06-05 13:34:16 +020011018 "pll on state mismatch (expected %i, found %i)\n",
11019 pll->on, active);
11020
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011021 for_each_intel_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080011022 if (crtc->base.state->enable && intel_crtc_to_shared_dpll(crtc) == pll)
Daniel Vetter53589012013-06-05 13:34:16 +020011023 enabled_crtcs++;
11024 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
11025 active_crtcs++;
11026 }
Rob Clarke2c719b2014-12-15 13:56:32 -050011027 I915_STATE_WARN(pll->active != active_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020011028 "pll active crtcs mismatch (expected %i, found %i)\n",
11029 pll->active, active_crtcs);
Rob Clarke2c719b2014-12-15 13:56:32 -050011030 I915_STATE_WARN(hweight32(pll->config.crtc_mask) != enabled_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020011031 "pll enabled crtcs mismatch (expected %i, found %i)\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011032 hweight32(pll->config.crtc_mask), enabled_crtcs);
Daniel Vetter66e985c2013-06-05 13:34:20 +020011033
Rob Clarke2c719b2014-12-15 13:56:32 -050011034 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state, &dpll_hw_state,
Daniel Vetter66e985c2013-06-05 13:34:20 +020011035 sizeof(dpll_hw_state)),
11036 "pll hw state mismatch\n");
Daniel Vetter53589012013-06-05 13:34:16 +020011037 }
Daniel Vettera6778b32012-07-02 09:56:42 +020011038}
11039
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020011040void
11041intel_modeset_check_state(struct drm_device *dev)
11042{
Damien Lespiau08db6652014-11-04 17:06:52 +000011043 check_wm_state(dev);
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020011044 check_connector_state(dev);
11045 check_encoder_state(dev);
11046 check_crtc_state(dev);
11047 check_shared_dpll_state(dev);
11048}
11049
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011050void ironlake_check_encoder_dotclock(const struct intel_crtc_state *pipe_config,
Ville Syrjälä18442d02013-09-13 16:00:08 +030011051 int dotclock)
11052{
11053 /*
11054 * FDI already provided one idea for the dotclock.
11055 * Yell if the encoder disagrees.
11056 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011057 WARN(!intel_fuzzy_clock_check(pipe_config->base.adjusted_mode.crtc_clock, dotclock),
Ville Syrjälä18442d02013-09-13 16:00:08 +030011058 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011059 pipe_config->base.adjusted_mode.crtc_clock, dotclock);
Ville Syrjälä18442d02013-09-13 16:00:08 +030011060}
11061
Ville Syrjälä80715b22014-05-15 20:23:23 +030011062static void update_scanline_offset(struct intel_crtc *crtc)
11063{
11064 struct drm_device *dev = crtc->base.dev;
11065
11066 /*
11067 * The scanline counter increments at the leading edge of hsync.
11068 *
11069 * On most platforms it starts counting from vtotal-1 on the
11070 * first active line. That means the scanline counter value is
11071 * always one less than what we would expect. Ie. just after
11072 * start of vblank, which also occurs at start of hsync (on the
11073 * last active line), the scanline counter will read vblank_start-1.
11074 *
11075 * On gen2 the scanline counter starts counting from 1 instead
11076 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
11077 * to keep the value positive), instead of adding one.
11078 *
11079 * On HSW+ the behaviour of the scanline counter depends on the output
11080 * type. For DP ports it behaves like most other platforms, but on HDMI
11081 * there's an extra 1 line difference. So we need to add two instead of
11082 * one to the value.
11083 */
11084 if (IS_GEN2(dev)) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011085 const struct drm_display_mode *mode = &crtc->config->base.adjusted_mode;
Ville Syrjälä80715b22014-05-15 20:23:23 +030011086 int vtotal;
11087
11088 vtotal = mode->crtc_vtotal;
11089 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
11090 vtotal /= 2;
11091
11092 crtc->scanline_offset = vtotal - 1;
11093 } else if (HAS_DDI(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +030011094 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) {
Ville Syrjälä80715b22014-05-15 20:23:23 +030011095 crtc->scanline_offset = 2;
11096 } else
11097 crtc->scanline_offset = 1;
11098}
11099
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011100static struct intel_crtc_state *
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011101intel_modeset_compute_config(struct drm_crtc *crtc,
11102 struct drm_display_mode *mode,
11103 struct drm_framebuffer *fb,
11104 unsigned *modeset_pipes,
11105 unsigned *prepare_pipes,
11106 unsigned *disable_pipes)
11107{
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011108 struct intel_crtc_state *pipe_config = NULL;
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011109
11110 intel_modeset_affected_pipes(crtc, modeset_pipes,
11111 prepare_pipes, disable_pipes);
11112
11113 if ((*modeset_pipes) == 0)
11114 goto out;
11115
11116 /*
11117 * Note this needs changes when we start tracking multiple modes
11118 * and crtcs. At that point we'll need to compute the whole config
11119 * (i.e. one pipe_config for each crtc) rather than just the one
11120 * for this crtc.
11121 */
11122 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
11123 if (IS_ERR(pipe_config)) {
11124 goto out;
11125 }
11126 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
11127 "[modeset]");
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011128
11129out:
11130 return pipe_config;
11131}
11132
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020011133static int __intel_set_mode_setup_plls(struct drm_device *dev,
11134 unsigned modeset_pipes,
11135 unsigned disable_pipes)
11136{
11137 struct drm_i915_private *dev_priv = to_i915(dev);
11138 unsigned clear_pipes = modeset_pipes | disable_pipes;
11139 struct intel_crtc *intel_crtc;
11140 int ret = 0;
11141
11142 if (!dev_priv->display.crtc_compute_clock)
11143 return 0;
11144
11145 ret = intel_shared_dpll_start_config(dev_priv, clear_pipes);
11146 if (ret)
11147 goto done;
11148
11149 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
11150 struct intel_crtc_state *state = intel_crtc->new_config;
11151 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
11152 state);
11153 if (ret) {
11154 intel_shared_dpll_abort_config(dev_priv);
11155 goto done;
11156 }
11157 }
11158
11159done:
11160 return ret;
11161}
11162
Daniel Vetterf30da182013-04-11 20:22:50 +020011163static int __intel_set_mode(struct drm_crtc *crtc,
11164 struct drm_display_mode *mode,
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011165 int x, int y, struct drm_framebuffer *fb,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011166 struct intel_crtc_state *pipe_config,
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011167 unsigned modeset_pipes,
11168 unsigned prepare_pipes,
11169 unsigned disable_pipes)
Daniel Vettera6778b32012-07-02 09:56:42 +020011170{
11171 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +030011172 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030011173 struct drm_display_mode *saved_mode;
Daniel Vetter25c5b262012-07-08 22:08:04 +020011174 struct intel_crtc *intel_crtc;
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011175 int ret = 0;
Daniel Vettera6778b32012-07-02 09:56:42 +020011176
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030011177 saved_mode = kmalloc(sizeof(*saved_mode), GFP_KERNEL);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011178 if (!saved_mode)
11179 return -ENOMEM;
Daniel Vettera6778b32012-07-02 09:56:42 +020011180
Tim Gardner3ac18232012-12-07 07:54:26 -070011181 *saved_mode = crtc->mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020011182
Ville Syrjäläb9950a12014-11-21 21:00:36 +020011183 if (modeset_pipes)
11184 to_intel_crtc(crtc)->new_config = pipe_config;
11185
Jesse Barnes30a970c2013-11-04 13:48:12 -080011186 /*
11187 * See if the config requires any additional preparation, e.g.
11188 * to adjust global state with pipes off. We need to do this
11189 * here so we can get the modeset_pipe updated config for the new
11190 * mode set on this crtc. For other crtcs we need to use the
11191 * adjusted_mode bits in the crtc directly.
11192 */
Ville Syrjäläc164f832013-11-05 22:34:12 +020011193 if (IS_VALLEYVIEW(dev)) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +020011194 valleyview_modeset_global_pipes(dev, &prepare_pipes);
Jesse Barnes30a970c2013-11-04 13:48:12 -080011195
Ville Syrjäläc164f832013-11-05 22:34:12 +020011196 /* may have added more to prepare_pipes than we should */
11197 prepare_pipes &= ~disable_pipes;
11198 }
11199
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020011200 ret = __intel_set_mode_setup_plls(dev, modeset_pipes, disable_pipes);
11201 if (ret)
11202 goto done;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +020011203
Daniel Vetter460da9162013-03-27 00:44:51 +010011204 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
11205 intel_crtc_disable(&intel_crtc->base);
11206
Daniel Vetterea9d7582012-07-10 10:42:52 +020011207 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080011208 if (intel_crtc->base.state->enable)
Daniel Vetterea9d7582012-07-10 10:42:52 +020011209 dev_priv->display.crtc_disable(&intel_crtc->base);
11210 }
Daniel Vettera6778b32012-07-02 09:56:42 +020011211
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020011212 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
11213 * to set it here already despite that we pass it down the callchain.
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011214 *
11215 * Note we'll need to fix this up when we start tracking multiple
11216 * pipes; here we assume a single modeset_pipe and only track the
11217 * single crtc and mode.
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020011218 */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011219 if (modeset_pipes) {
Daniel Vetter25c5b262012-07-08 22:08:04 +020011220 crtc->mode = *mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011221 /* mode_set/enable/disable functions rely on a correct pipe
11222 * config. */
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020011223 intel_crtc_set_state(to_intel_crtc(crtc), pipe_config);
Ville Syrjäläc326c0a2013-10-28 12:53:41 +020011224
11225 /*
11226 * Calculate and store various constants which
11227 * are later needed by vblank and swap-completion
11228 * timestamping. They are derived from true hwmode.
11229 */
11230 drm_calc_timestamping_constants(crtc,
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011231 &pipe_config->base.adjusted_mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011232 }
Daniel Vetter7758a112012-07-08 19:40:39 +020011233
Daniel Vetterea9d7582012-07-10 10:42:52 +020011234 /* Only after disabling all output pipelines that will be changed can we
11235 * update the the output configuration. */
11236 intel_modeset_update_state(dev, prepare_pipes);
11237
Ville Syrjälä50f6e502014-11-06 14:49:12 +020011238 modeset_update_crtc_power_domains(dev);
Daniel Vetter47fab732012-10-26 10:58:18 +020011239
Daniel Vettera6778b32012-07-02 09:56:42 +020011240 /* Set up the DPLL and any encoders state that needs to adjust or depend
11241 * on the DPLL.
11242 */
Daniel Vetter25c5b262012-07-08 22:08:04 +020011243 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
Gustavo Padovan455a6802014-12-01 15:40:11 -080011244 struct drm_plane *primary = intel_crtc->base.primary;
11245 int vdisplay, hdisplay;
Daniel Vetter4c107942014-04-24 23:55:05 +020011246
Gustavo Padovan455a6802014-12-01 15:40:11 -080011247 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
11248 ret = primary->funcs->update_plane(primary, &intel_crtc->base,
11249 fb, 0, 0,
11250 hdisplay, vdisplay,
11251 x << 16, y << 16,
11252 hdisplay << 16, vdisplay << 16);
Daniel Vettera6778b32012-07-02 09:56:42 +020011253 }
11254
11255 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Ville Syrjälä80715b22014-05-15 20:23:23 +030011256 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
11257 update_scanline_offset(intel_crtc);
11258
Daniel Vetter25c5b262012-07-08 22:08:04 +020011259 dev_priv->display.crtc_enable(&intel_crtc->base);
Ville Syrjälä80715b22014-05-15 20:23:23 +030011260 }
Daniel Vettera6778b32012-07-02 09:56:42 +020011261
Daniel Vettera6778b32012-07-02 09:56:42 +020011262 /* FIXME: add subpixel order */
11263done:
Matt Roper83d65732015-02-25 13:12:16 -080011264 if (ret && crtc->state->enable)
Tim Gardner3ac18232012-12-07 07:54:26 -070011265 crtc->mode = *saved_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020011266
Tim Gardner3ac18232012-12-07 07:54:26 -070011267 kfree(saved_mode);
Daniel Vettera6778b32012-07-02 09:56:42 +020011268 return ret;
11269}
11270
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011271static int intel_set_mode_pipes(struct drm_crtc *crtc,
11272 struct drm_display_mode *mode,
11273 int x, int y, struct drm_framebuffer *fb,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011274 struct intel_crtc_state *pipe_config,
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011275 unsigned modeset_pipes,
11276 unsigned prepare_pipes,
11277 unsigned disable_pipes)
11278{
11279 int ret;
11280
11281 ret = __intel_set_mode(crtc, mode, x, y, fb, pipe_config, modeset_pipes,
11282 prepare_pipes, disable_pipes);
11283
11284 if (ret == 0)
11285 intel_modeset_check_state(crtc->dev);
11286
11287 return ret;
11288}
11289
Damien Lespiaue7457a92013-08-08 22:28:59 +010011290static int intel_set_mode(struct drm_crtc *crtc,
11291 struct drm_display_mode *mode,
11292 int x, int y, struct drm_framebuffer *fb)
Daniel Vetterf30da182013-04-11 20:22:50 +020011293{
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011294 struct intel_crtc_state *pipe_config;
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011295 unsigned modeset_pipes, prepare_pipes, disable_pipes;
Daniel Vetterf30da182013-04-11 20:22:50 +020011296
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011297 pipe_config = intel_modeset_compute_config(crtc, mode, fb,
11298 &modeset_pipes,
11299 &prepare_pipes,
11300 &disable_pipes);
Daniel Vetterf30da182013-04-11 20:22:50 +020011301
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011302 if (IS_ERR(pipe_config))
11303 return PTR_ERR(pipe_config);
Daniel Vetterf30da182013-04-11 20:22:50 +020011304
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011305 return intel_set_mode_pipes(crtc, mode, x, y, fb, pipe_config,
11306 modeset_pipes, prepare_pipes,
11307 disable_pipes);
Daniel Vetterf30da182013-04-11 20:22:50 +020011308}
11309
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011310void intel_crtc_restore_mode(struct drm_crtc *crtc)
11311{
Matt Roperf4510a22014-04-01 15:22:40 -070011312 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->primary->fb);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011313}
11314
Daniel Vetter25c5b262012-07-08 22:08:04 +020011315#undef for_each_intel_crtc_masked
11316
Daniel Vetterd9e55602012-07-04 22:16:09 +020011317static void intel_set_config_free(struct intel_set_config *config)
11318{
11319 if (!config)
11320 return;
11321
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011322 kfree(config->save_connector_encoders);
11323 kfree(config->save_encoder_crtcs);
Ville Syrjälä76688512014-01-10 11:28:06 +020011324 kfree(config->save_crtc_enabled);
Daniel Vetterd9e55602012-07-04 22:16:09 +020011325 kfree(config);
11326}
11327
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011328static int intel_set_config_save_state(struct drm_device *dev,
11329 struct intel_set_config *config)
11330{
Ville Syrjälä76688512014-01-10 11:28:06 +020011331 struct drm_crtc *crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011332 struct drm_encoder *encoder;
11333 struct drm_connector *connector;
11334 int count;
11335
Ville Syrjälä76688512014-01-10 11:28:06 +020011336 config->save_crtc_enabled =
11337 kcalloc(dev->mode_config.num_crtc,
11338 sizeof(bool), GFP_KERNEL);
11339 if (!config->save_crtc_enabled)
11340 return -ENOMEM;
11341
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011342 config->save_encoder_crtcs =
11343 kcalloc(dev->mode_config.num_encoder,
11344 sizeof(struct drm_crtc *), GFP_KERNEL);
11345 if (!config->save_encoder_crtcs)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011346 return -ENOMEM;
11347
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011348 config->save_connector_encoders =
11349 kcalloc(dev->mode_config.num_connector,
11350 sizeof(struct drm_encoder *), GFP_KERNEL);
11351 if (!config->save_connector_encoders)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011352 return -ENOMEM;
11353
11354 /* Copy data. Note that driver private data is not affected.
11355 * Should anything bad happen only the expected state is
11356 * restored, not the drivers personal bookkeeping.
11357 */
11358 count = 0;
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010011359 for_each_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080011360 config->save_crtc_enabled[count++] = crtc->state->enable;
Ville Syrjälä76688512014-01-10 11:28:06 +020011361 }
11362
11363 count = 0;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011364 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011365 config->save_encoder_crtcs[count++] = encoder->crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011366 }
11367
11368 count = 0;
11369 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011370 config->save_connector_encoders[count++] = connector->encoder;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011371 }
11372
11373 return 0;
11374}
11375
11376static void intel_set_config_restore_state(struct drm_device *dev,
11377 struct intel_set_config *config)
11378{
Ville Syrjälä76688512014-01-10 11:28:06 +020011379 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020011380 struct intel_encoder *encoder;
11381 struct intel_connector *connector;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011382 int count;
11383
11384 count = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011385 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011386 crtc->new_enabled = config->save_crtc_enabled[count++];
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011387
11388 if (crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011389 crtc->new_config = crtc->config;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011390 else
11391 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020011392 }
11393
11394 count = 0;
Damien Lespiaub2784e12014-08-05 11:29:37 +010011395 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011396 encoder->new_crtc =
11397 to_intel_crtc(config->save_encoder_crtcs[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011398 }
11399
11400 count = 0;
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011401 for_each_intel_connector(dev, connector) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011402 connector->new_encoder =
11403 to_intel_encoder(config->save_connector_encoders[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011404 }
11405}
11406
Imre Deake3de42b2013-05-03 19:44:07 +020011407static bool
Chris Wilson2e57f472013-07-17 12:14:40 +010011408is_crtc_connector_off(struct drm_mode_set *set)
Imre Deake3de42b2013-05-03 19:44:07 +020011409{
11410 int i;
11411
Chris Wilson2e57f472013-07-17 12:14:40 +010011412 if (set->num_connectors == 0)
11413 return false;
11414
11415 if (WARN_ON(set->connectors == NULL))
11416 return false;
11417
11418 for (i = 0; i < set->num_connectors; i++)
11419 if (set->connectors[i]->encoder &&
11420 set->connectors[i]->encoder->crtc == set->crtc &&
11421 set->connectors[i]->dpms != DRM_MODE_DPMS_ON)
Imre Deake3de42b2013-05-03 19:44:07 +020011422 return true;
11423
11424 return false;
11425}
11426
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011427static void
11428intel_set_config_compute_mode_changes(struct drm_mode_set *set,
11429 struct intel_set_config *config)
11430{
11431
11432 /* We should be able to check here if the fb has the same properties
11433 * and then just flip_or_move it */
Chris Wilson2e57f472013-07-17 12:14:40 +010011434 if (is_crtc_connector_off(set)) {
11435 config->mode_changed = true;
Matt Roperf4510a22014-04-01 15:22:40 -070011436 } else if (set->crtc->primary->fb != set->fb) {
Matt Roper3b150f02014-05-29 08:06:53 -070011437 /*
11438 * If we have no fb, we can only flip as long as the crtc is
11439 * active, otherwise we need a full mode set. The crtc may
11440 * be active if we've only disabled the primary plane, or
11441 * in fastboot situations.
11442 */
Matt Roperf4510a22014-04-01 15:22:40 -070011443 if (set->crtc->primary->fb == NULL) {
Jesse Barnes319d9822013-06-26 01:38:19 +030011444 struct intel_crtc *intel_crtc =
11445 to_intel_crtc(set->crtc);
11446
Matt Roper3b150f02014-05-29 08:06:53 -070011447 if (intel_crtc->active) {
Jesse Barnes319d9822013-06-26 01:38:19 +030011448 DRM_DEBUG_KMS("crtc has no fb, will flip\n");
11449 config->fb_changed = true;
11450 } else {
11451 DRM_DEBUG_KMS("inactive crtc, full mode set\n");
11452 config->mode_changed = true;
11453 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011454 } else if (set->fb == NULL) {
11455 config->mode_changed = true;
Daniel Vetter72f49012013-03-28 16:01:35 +010011456 } else if (set->fb->pixel_format !=
Matt Roperf4510a22014-04-01 15:22:40 -070011457 set->crtc->primary->fb->pixel_format) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011458 config->mode_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020011459 } else {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011460 config->fb_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020011461 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011462 }
11463
Daniel Vetter835c5872012-07-10 18:11:08 +020011464 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011465 config->fb_changed = true;
11466
11467 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
11468 DRM_DEBUG_KMS("modes are different, full mode set\n");
11469 drm_mode_debug_printmodeline(&set->crtc->mode);
11470 drm_mode_debug_printmodeline(set->mode);
11471 config->mode_changed = true;
11472 }
Chris Wilsona1d95702013-08-13 18:48:47 +010011473
11474 DRM_DEBUG_KMS("computed changes for [CRTC:%d], mode_changed=%d, fb_changed=%d\n",
11475 set->crtc->base.id, config->mode_changed, config->fb_changed);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011476}
11477
Daniel Vetter2e431052012-07-04 22:42:15 +020011478static int
Daniel Vetter9a935852012-07-05 22:34:27 +020011479intel_modeset_stage_output_state(struct drm_device *dev,
11480 struct drm_mode_set *set,
11481 struct intel_set_config *config)
Daniel Vetter50f56112012-07-02 09:35:43 +020011482{
Daniel Vetter9a935852012-07-05 22:34:27 +020011483 struct intel_connector *connector;
11484 struct intel_encoder *encoder;
Ville Syrjälä76688512014-01-10 11:28:06 +020011485 struct intel_crtc *crtc;
Paulo Zanonif3f08572013-08-12 14:56:53 -030011486 int ro;
Daniel Vetter50f56112012-07-02 09:35:43 +020011487
Damien Lespiau9abdda72013-02-13 13:29:23 +000011488 /* The upper layers ensure that we either disable a crtc or have a list
Daniel Vetter9a935852012-07-05 22:34:27 +020011489 * of connectors. For paranoia, double-check this. */
11490 WARN_ON(!set->fb && (set->num_connectors != 0));
11491 WARN_ON(set->fb && (set->num_connectors == 0));
11492
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011493 for_each_intel_connector(dev, connector) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011494 /* Otherwise traverse passed in connector list and get encoders
11495 * for them. */
Daniel Vetter50f56112012-07-02 09:35:43 +020011496 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011497 if (set->connectors[ro] == &connector->base) {
Dave Airlie0e32b392014-05-02 14:02:48 +100011498 connector->new_encoder = intel_find_encoder(connector, to_intel_crtc(set->crtc)->pipe);
Daniel Vetter50f56112012-07-02 09:35:43 +020011499 break;
11500 }
11501 }
11502
Daniel Vetter9a935852012-07-05 22:34:27 +020011503 /* If we disable the crtc, disable all its connectors. Also, if
11504 * the connector is on the changing crtc but not on the new
11505 * connector list, disable it. */
11506 if ((!set->fb || ro == set->num_connectors) &&
11507 connector->base.encoder &&
11508 connector->base.encoder->crtc == set->crtc) {
11509 connector->new_encoder = NULL;
11510
11511 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
11512 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030011513 connector->base.name);
Daniel Vetter9a935852012-07-05 22:34:27 +020011514 }
11515
11516
11517 if (&connector->new_encoder->base != connector->base.encoder) {
Ander Conselvan de Oliveira10634182015-03-03 15:21:57 +020011518 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] encoder changed, full mode switch\n",
11519 connector->base.base.id,
11520 connector->base.name);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011521 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020011522 }
Daniel Vetter9a935852012-07-05 22:34:27 +020011523 }
11524 /* connector->new_encoder is now updated for all connectors. */
11525
11526 /* Update crtc of enabled connectors. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011527 for_each_intel_connector(dev, connector) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011528 struct drm_crtc *new_crtc;
11529
Daniel Vetter9a935852012-07-05 22:34:27 +020011530 if (!connector->new_encoder)
Daniel Vetter50f56112012-07-02 09:35:43 +020011531 continue;
11532
Daniel Vetter9a935852012-07-05 22:34:27 +020011533 new_crtc = connector->new_encoder->base.crtc;
Daniel Vetter50f56112012-07-02 09:35:43 +020011534
11535 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011536 if (set->connectors[ro] == &connector->base)
Daniel Vetter50f56112012-07-02 09:35:43 +020011537 new_crtc = set->crtc;
11538 }
11539
11540 /* Make sure the new CRTC will work with the encoder */
Thierry Reding14509912014-01-13 12:00:22 +010011541 if (!drm_encoder_crtc_ok(&connector->new_encoder->base,
11542 new_crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011543 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +020011544 }
Dave Airlie0e32b392014-05-02 14:02:48 +100011545 connector->new_encoder->new_crtc = to_intel_crtc(new_crtc);
Daniel Vetter9a935852012-07-05 22:34:27 +020011546
11547 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
11548 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030011549 connector->base.name,
Daniel Vetter9a935852012-07-05 22:34:27 +020011550 new_crtc->base.id);
11551 }
11552
11553 /* Check for any encoders that needs to be disabled. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010011554 for_each_intel_encoder(dev, encoder) {
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011555 int num_connectors = 0;
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011556 for_each_intel_connector(dev, connector) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011557 if (connector->new_encoder == encoder) {
11558 WARN_ON(!connector->new_encoder->new_crtc);
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011559 num_connectors++;
Daniel Vetter9a935852012-07-05 22:34:27 +020011560 }
11561 }
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011562
11563 if (num_connectors == 0)
11564 encoder->new_crtc = NULL;
11565 else if (num_connectors > 1)
11566 return -EINVAL;
11567
Daniel Vetter9a935852012-07-05 22:34:27 +020011568 /* Only now check for crtc changes so we don't miss encoders
11569 * that will be disabled. */
11570 if (&encoder->new_crtc->base != encoder->base.crtc) {
Ander Conselvan de Oliveira10634182015-03-03 15:21:57 +020011571 DRM_DEBUG_KMS("[ENCODER:%d:%s] crtc changed, full mode switch\n",
11572 encoder->base.base.id,
11573 encoder->base.name);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011574 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020011575 }
11576 }
Daniel Vetter9a935852012-07-05 22:34:27 +020011577 /* Now we've also updated encoder->new_crtc for all encoders. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011578 for_each_intel_connector(dev, connector) {
Dave Airlie0e32b392014-05-02 14:02:48 +100011579 if (connector->new_encoder)
11580 if (connector->new_encoder != connector->encoder)
11581 connector->encoder = connector->new_encoder;
11582 }
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011583 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011584 crtc->new_enabled = false;
11585
Damien Lespiaub2784e12014-08-05 11:29:37 +010011586 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011587 if (encoder->new_crtc == crtc) {
11588 crtc->new_enabled = true;
11589 break;
11590 }
11591 }
11592
Matt Roper83d65732015-02-25 13:12:16 -080011593 if (crtc->new_enabled != crtc->base.state->enable) {
Ander Conselvan de Oliveira10634182015-03-03 15:21:57 +020011594 DRM_DEBUG_KMS("[CRTC:%d] %sabled, full mode switch\n",
11595 crtc->base.base.id,
Ville Syrjälä76688512014-01-10 11:28:06 +020011596 crtc->new_enabled ? "en" : "dis");
11597 config->mode_changed = true;
11598 }
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011599
11600 if (crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011601 crtc->new_config = crtc->config;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011602 else
11603 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020011604 }
11605
Daniel Vetter2e431052012-07-04 22:42:15 +020011606 return 0;
11607}
11608
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011609static void disable_crtc_nofb(struct intel_crtc *crtc)
11610{
11611 struct drm_device *dev = crtc->base.dev;
11612 struct intel_encoder *encoder;
11613 struct intel_connector *connector;
11614
11615 DRM_DEBUG_KMS("Trying to restore without FB -> disabling pipe %c\n",
11616 pipe_name(crtc->pipe));
11617
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011618 for_each_intel_connector(dev, connector) {
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011619 if (connector->new_encoder &&
11620 connector->new_encoder->new_crtc == crtc)
11621 connector->new_encoder = NULL;
11622 }
11623
Damien Lespiaub2784e12014-08-05 11:29:37 +010011624 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011625 if (encoder->new_crtc == crtc)
11626 encoder->new_crtc = NULL;
11627 }
11628
11629 crtc->new_enabled = false;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011630 crtc->new_config = NULL;
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011631}
11632
Daniel Vetter2e431052012-07-04 22:42:15 +020011633static int intel_crtc_set_config(struct drm_mode_set *set)
11634{
11635 struct drm_device *dev;
Daniel Vetter2e431052012-07-04 22:42:15 +020011636 struct drm_mode_set save_set;
11637 struct intel_set_config *config;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011638 struct intel_crtc_state *pipe_config;
Jesse Barnes50f52752014-11-07 13:11:00 -080011639 unsigned modeset_pipes, prepare_pipes, disable_pipes;
Daniel Vetter2e431052012-07-04 22:42:15 +020011640 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +020011641
Daniel Vetter8d3e3752012-07-05 16:09:09 +020011642 BUG_ON(!set);
11643 BUG_ON(!set->crtc);
11644 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +020011645
Daniel Vetter7e53f3a2013-01-21 10:52:17 +010011646 /* Enforce sane interface api - has been abused by the fb helper. */
11647 BUG_ON(!set->mode && set->fb);
11648 BUG_ON(set->fb && set->num_connectors == 0);
Daniel Vetter431e50f2012-07-10 17:53:42 +020011649
Daniel Vetter2e431052012-07-04 22:42:15 +020011650 if (set->fb) {
11651 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
11652 set->crtc->base.id, set->fb->base.id,
11653 (int)set->num_connectors, set->x, set->y);
11654 } else {
11655 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +020011656 }
11657
11658 dev = set->crtc->dev;
11659
11660 ret = -ENOMEM;
11661 config = kzalloc(sizeof(*config), GFP_KERNEL);
11662 if (!config)
11663 goto out_config;
11664
11665 ret = intel_set_config_save_state(dev, config);
11666 if (ret)
11667 goto out_config;
11668
11669 save_set.crtc = set->crtc;
11670 save_set.mode = &set->crtc->mode;
11671 save_set.x = set->crtc->x;
11672 save_set.y = set->crtc->y;
Matt Roperf4510a22014-04-01 15:22:40 -070011673 save_set.fb = set->crtc->primary->fb;
Daniel Vetter2e431052012-07-04 22:42:15 +020011674
11675 /* Compute whether we need a full modeset, only an fb base update or no
11676 * change at all. In the future we might also check whether only the
11677 * mode changed, e.g. for LVDS where we only change the panel fitter in
11678 * such cases. */
11679 intel_set_config_compute_mode_changes(set, config);
11680
Daniel Vetter9a935852012-07-05 22:34:27 +020011681 ret = intel_modeset_stage_output_state(dev, set, config);
Daniel Vetter2e431052012-07-04 22:42:15 +020011682 if (ret)
11683 goto fail;
11684
Jesse Barnes50f52752014-11-07 13:11:00 -080011685 pipe_config = intel_modeset_compute_config(set->crtc, set->mode,
11686 set->fb,
11687 &modeset_pipes,
11688 &prepare_pipes,
11689 &disable_pipes);
Jesse Barnes20664592014-11-05 14:26:09 -080011690 if (IS_ERR(pipe_config)) {
Matt Roper6ac04832014-11-17 09:59:28 -080011691 ret = PTR_ERR(pipe_config);
Jesse Barnes50f52752014-11-07 13:11:00 -080011692 goto fail;
Jesse Barnes20664592014-11-05 14:26:09 -080011693 } else if (pipe_config) {
Ville Syrjäläb9950a12014-11-21 21:00:36 +020011694 if (pipe_config->has_audio !=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011695 to_intel_crtc(set->crtc)->config->has_audio)
Jesse Barnes20664592014-11-05 14:26:09 -080011696 config->mode_changed = true;
11697
Jesse Barnesaf15d2c2014-12-01 09:54:28 -080011698 /*
11699 * Note we have an issue here with infoframes: current code
11700 * only updates them on the full mode set path per hw
11701 * requirements. So here we should be checking for any
11702 * required changes and forcing a mode set.
11703 */
Jesse Barnes20664592014-11-05 14:26:09 -080011704 }
Jesse Barnes50f52752014-11-07 13:11:00 -080011705
11706 /* set_mode will free it in the mode_changed case */
11707 if (!config->mode_changed)
11708 kfree(pipe_config);
11709
Jesse Barnes1f9954d2014-11-05 14:26:10 -080011710 intel_update_pipe_size(to_intel_crtc(set->crtc));
11711
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011712 if (config->mode_changed) {
Jesse Barnes50f52752014-11-07 13:11:00 -080011713 ret = intel_set_mode_pipes(set->crtc, set->mode,
11714 set->x, set->y, set->fb, pipe_config,
11715 modeset_pipes, prepare_pipes,
11716 disable_pipes);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011717 } else if (config->fb_changed) {
Matt Roper3b150f02014-05-29 08:06:53 -070011718 struct intel_crtc *intel_crtc = to_intel_crtc(set->crtc);
Gustavo Padovan455a6802014-12-01 15:40:11 -080011719 struct drm_plane *primary = set->crtc->primary;
11720 int vdisplay, hdisplay;
Matt Roper3b150f02014-05-29 08:06:53 -070011721
Gustavo Padovan455a6802014-12-01 15:40:11 -080011722 drm_crtc_get_hv_timing(set->mode, &hdisplay, &vdisplay);
11723 ret = primary->funcs->update_plane(primary, set->crtc, set->fb,
11724 0, 0, hdisplay, vdisplay,
11725 set->x << 16, set->y << 16,
11726 hdisplay << 16, vdisplay << 16);
Matt Roper3b150f02014-05-29 08:06:53 -070011727
11728 /*
11729 * We need to make sure the primary plane is re-enabled if it
11730 * has previously been turned off.
11731 */
11732 if (!intel_crtc->primary_enabled && ret == 0) {
11733 WARN_ON(!intel_crtc->active);
Ville Syrjäläfdd508a2014-08-08 21:51:11 +030011734 intel_enable_primary_hw_plane(set->crtc->primary, set->crtc);
Matt Roper3b150f02014-05-29 08:06:53 -070011735 }
11736
Jesse Barnes7ca51a32014-01-07 13:50:49 -080011737 /*
11738 * In the fastboot case this may be our only check of the
11739 * state after boot. It would be better to only do it on
11740 * the first update, but we don't have a nice way of doing that
11741 * (and really, set_config isn't used much for high freq page
11742 * flipping, so increasing its cost here shouldn't be a big
11743 * deal).
11744 */
Jani Nikulad330a952014-01-21 11:24:25 +020011745 if (i915.fastboot && ret == 0)
Jesse Barnes7ca51a32014-01-07 13:50:49 -080011746 intel_modeset_check_state(set->crtc->dev);
Daniel Vetter50f56112012-07-02 09:35:43 +020011747 }
11748
Chris Wilson2d05eae2013-05-03 17:36:25 +010011749 if (ret) {
Daniel Vetterbf67dfe2013-06-25 11:06:52 +020011750 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
11751 set->crtc->base.id, ret);
Daniel Vetter50f56112012-07-02 09:35:43 +020011752fail:
Chris Wilson2d05eae2013-05-03 17:36:25 +010011753 intel_set_config_restore_state(dev, config);
Daniel Vetter50f56112012-07-02 09:35:43 +020011754
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011755 /*
11756 * HACK: if the pipe was on, but we didn't have a framebuffer,
11757 * force the pipe off to avoid oopsing in the modeset code
11758 * due to fb==NULL. This should only happen during boot since
11759 * we don't yet reconstruct the FB from the hardware state.
11760 */
11761 if (to_intel_crtc(save_set.crtc)->new_enabled && !save_set.fb)
11762 disable_crtc_nofb(to_intel_crtc(save_set.crtc));
11763
Chris Wilson2d05eae2013-05-03 17:36:25 +010011764 /* Try to restore the config */
11765 if (config->mode_changed &&
11766 intel_set_mode(save_set.crtc, save_set.mode,
11767 save_set.x, save_set.y, save_set.fb))
11768 DRM_ERROR("failed to restore config after modeset failure\n");
11769 }
Daniel Vetter50f56112012-07-02 09:35:43 +020011770
Daniel Vetterd9e55602012-07-04 22:16:09 +020011771out_config:
11772 intel_set_config_free(config);
Daniel Vetter50f56112012-07-02 09:35:43 +020011773 return ret;
11774}
11775
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011776static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011777 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +020011778 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011779 .destroy = intel_crtc_destroy,
11780 .page_flip = intel_crtc_page_flip,
Matt Roper13568372015-01-21 16:35:47 -080011781 .atomic_duplicate_state = intel_crtc_duplicate_state,
11782 .atomic_destroy_state = intel_crtc_destroy_state,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011783};
11784
Daniel Vetter53589012013-06-05 13:34:16 +020011785static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
11786 struct intel_shared_dpll *pll,
11787 struct intel_dpll_hw_state *hw_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011788{
Daniel Vetter53589012013-06-05 13:34:16 +020011789 uint32_t val;
11790
Daniel Vetterf458ebb2014-09-30 10:56:39 +020011791 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_PLLS))
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030011792 return false;
11793
Daniel Vetter53589012013-06-05 13:34:16 +020011794 val = I915_READ(PCH_DPLL(pll->id));
Daniel Vetter66e985c2013-06-05 13:34:20 +020011795 hw_state->dpll = val;
11796 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
11797 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
Daniel Vetter53589012013-06-05 13:34:16 +020011798
11799 return val & DPLL_VCO_ENABLE;
11800}
11801
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011802static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
11803 struct intel_shared_dpll *pll)
11804{
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011805 I915_WRITE(PCH_FP0(pll->id), pll->config.hw_state.fp0);
11806 I915_WRITE(PCH_FP1(pll->id), pll->config.hw_state.fp1);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011807}
11808
Daniel Vettere7b903d2013-06-05 13:34:14 +020011809static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
11810 struct intel_shared_dpll *pll)
11811{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011812 /* PCH refclock must be enabled first */
Paulo Zanoni89eff4b2014-01-08 11:12:28 -020011813 ibx_assert_pch_refclk_enabled(dev_priv);
Daniel Vettere7b903d2013-06-05 13:34:14 +020011814
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011815 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011816
11817 /* Wait for the clocks to stabilize. */
11818 POSTING_READ(PCH_DPLL(pll->id));
11819 udelay(150);
11820
11821 /* The pixel multiplier can only be updated once the
11822 * DPLL is enabled and the clocks are stable.
11823 *
11824 * So write it again.
11825 */
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011826 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011827 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020011828 udelay(200);
11829}
11830
11831static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
11832 struct intel_shared_dpll *pll)
11833{
11834 struct drm_device *dev = dev_priv->dev;
11835 struct intel_crtc *crtc;
Daniel Vettere7b903d2013-06-05 13:34:14 +020011836
11837 /* Make sure no transcoder isn't still depending on us. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011838 for_each_intel_crtc(dev, crtc) {
Daniel Vettere7b903d2013-06-05 13:34:14 +020011839 if (intel_crtc_to_shared_dpll(crtc) == pll)
11840 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
11841 }
11842
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011843 I915_WRITE(PCH_DPLL(pll->id), 0);
11844 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020011845 udelay(200);
11846}
11847
Daniel Vetter46edb022013-06-05 13:34:12 +020011848static char *ibx_pch_dpll_names[] = {
11849 "PCH DPLL A",
11850 "PCH DPLL B",
11851};
11852
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011853static void ibx_pch_dpll_init(struct drm_device *dev)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011854{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011855 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011856 int i;
11857
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011858 dev_priv->num_shared_dpll = 2;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011859
Daniel Vettere72f9fb2013-06-05 13:34:06 +020011860 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
Daniel Vetter46edb022013-06-05 13:34:12 +020011861 dev_priv->shared_dplls[i].id = i;
11862 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011863 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
Daniel Vettere7b903d2013-06-05 13:34:14 +020011864 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
11865 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
Daniel Vetter53589012013-06-05 13:34:16 +020011866 dev_priv->shared_dplls[i].get_hw_state =
11867 ibx_pch_dpll_get_hw_state;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011868 }
11869}
11870
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011871static void intel_shared_dpll_init(struct drm_device *dev)
11872{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011873 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011874
Daniel Vetter9cd86932014-06-25 22:01:57 +030011875 if (HAS_DDI(dev))
11876 intel_ddi_pll_init(dev);
11877 else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011878 ibx_pch_dpll_init(dev);
11879 else
11880 dev_priv->num_shared_dpll = 0;
11881
11882 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011883}
11884
Matt Roper6beb8c232014-12-01 15:40:14 -080011885/**
11886 * intel_prepare_plane_fb - Prepare fb for usage on plane
11887 * @plane: drm plane to prepare for
11888 * @fb: framebuffer to prepare for presentation
11889 *
11890 * Prepares a framebuffer for usage on a display plane. Generally this
11891 * involves pinning the underlying object and updating the frontbuffer tracking
11892 * bits. Some older platforms need special physical address handling for
11893 * cursor planes.
11894 *
11895 * Returns 0 on success, negative error code on failure.
11896 */
11897int
11898intel_prepare_plane_fb(struct drm_plane *plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +000011899 struct drm_framebuffer *fb,
11900 const struct drm_plane_state *new_state)
Matt Roper465c1202014-05-29 08:06:54 -070011901{
11902 struct drm_device *dev = plane->dev;
Matt Roper6beb8c232014-12-01 15:40:14 -080011903 struct intel_plane *intel_plane = to_intel_plane(plane);
11904 enum pipe pipe = intel_plane->pipe;
11905 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
11906 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->fb);
11907 unsigned frontbuffer_bits = 0;
11908 int ret = 0;
Matt Roper465c1202014-05-29 08:06:54 -070011909
Matt Roperea2c67b2014-12-23 10:41:52 -080011910 if (!obj)
Matt Roper465c1202014-05-29 08:06:54 -070011911 return 0;
11912
Matt Roper6beb8c232014-12-01 15:40:14 -080011913 switch (plane->type) {
11914 case DRM_PLANE_TYPE_PRIMARY:
11915 frontbuffer_bits = INTEL_FRONTBUFFER_PRIMARY(pipe);
11916 break;
11917 case DRM_PLANE_TYPE_CURSOR:
11918 frontbuffer_bits = INTEL_FRONTBUFFER_CURSOR(pipe);
11919 break;
11920 case DRM_PLANE_TYPE_OVERLAY:
11921 frontbuffer_bits = INTEL_FRONTBUFFER_SPRITE(pipe);
11922 break;
11923 }
Matt Roper465c1202014-05-29 08:06:54 -070011924
Matt Roper4c345742014-07-09 16:22:10 -070011925 mutex_lock(&dev->struct_mutex);
Matt Roper465c1202014-05-29 08:06:54 -070011926
Matt Roper6beb8c232014-12-01 15:40:14 -080011927 if (plane->type == DRM_PLANE_TYPE_CURSOR &&
11928 INTEL_INFO(dev)->cursor_needs_physical) {
11929 int align = IS_I830(dev) ? 16 * 1024 : 256;
11930 ret = i915_gem_object_attach_phys(obj, align);
11931 if (ret)
11932 DRM_DEBUG_KMS("failed to attach phys object\n");
11933 } else {
11934 ret = intel_pin_and_fence_fb_obj(plane, fb, NULL);
11935 }
11936
11937 if (ret == 0)
11938 i915_gem_track_fb(old_obj, obj, frontbuffer_bits);
11939
11940 mutex_unlock(&dev->struct_mutex);
11941
11942 return ret;
11943}
11944
Matt Roper38f3ce32014-12-02 07:45:25 -080011945/**
11946 * intel_cleanup_plane_fb - Cleans up an fb after plane use
11947 * @plane: drm plane to clean up for
11948 * @fb: old framebuffer that was on plane
11949 *
11950 * Cleans up a framebuffer that has just been removed from a plane.
11951 */
11952void
11953intel_cleanup_plane_fb(struct drm_plane *plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +000011954 struct drm_framebuffer *fb,
11955 const struct drm_plane_state *old_state)
Matt Roper38f3ce32014-12-02 07:45:25 -080011956{
11957 struct drm_device *dev = plane->dev;
11958 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
11959
11960 if (WARN_ON(!obj))
11961 return;
11962
11963 if (plane->type != DRM_PLANE_TYPE_CURSOR ||
11964 !INTEL_INFO(dev)->cursor_needs_physical) {
11965 mutex_lock(&dev->struct_mutex);
11966 intel_unpin_fb_obj(obj);
11967 mutex_unlock(&dev->struct_mutex);
11968 }
Matt Roper465c1202014-05-29 08:06:54 -070011969}
11970
11971static int
Gustavo Padovan3c692a42014-09-05 17:04:49 -030011972intel_check_primary_plane(struct drm_plane *plane,
11973 struct intel_plane_state *state)
Matt Roper465c1202014-05-29 08:06:54 -070011974{
Matt Roper32b7eee2014-12-24 07:59:06 -080011975 struct drm_device *dev = plane->dev;
11976 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roper2b875c22014-12-01 15:40:13 -080011977 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080011978 struct intel_crtc *intel_crtc;
Matt Roper2b875c22014-12-01 15:40:13 -080011979 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030011980 struct drm_rect *dest = &state->dst;
11981 struct drm_rect *src = &state->src;
11982 const struct drm_rect *clip = &state->clip;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011983 int ret;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030011984
Matt Roperea2c67b2014-12-23 10:41:52 -080011985 crtc = crtc ? crtc : plane->crtc;
11986 intel_crtc = to_intel_crtc(crtc);
11987
Matt Roperc59cb172014-12-01 15:40:16 -080011988 ret = drm_plane_helper_check_update(plane, crtc, fb,
11989 src, dest, clip,
11990 DRM_PLANE_HELPER_NO_SCALING,
11991 DRM_PLANE_HELPER_NO_SCALING,
11992 false, true, &state->visible);
11993 if (ret)
11994 return ret;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011995
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011996 if (intel_crtc->active) {
Matt Roper32b7eee2014-12-24 07:59:06 -080011997 intel_crtc->atomic.wait_for_flips = true;
11998
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011999 /*
12000 * FBC does not work on some platforms for rotated
12001 * planes, so disable it when rotation is not 0 and
12002 * update it when rotation is set back to 0.
12003 *
12004 * FIXME: This is redundant with the fbc update done in
12005 * the primary plane enable function except that that
12006 * one is done too late. We eventually need to unify
12007 * this.
12008 */
12009 if (intel_crtc->primary_enabled &&
12010 INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev) &&
Paulo Zanonie35fef22015-02-09 14:46:29 -020012011 dev_priv->fbc.crtc == intel_crtc &&
Matt Roper8e7d6882015-01-21 16:35:41 -080012012 state->base.rotation != BIT(DRM_ROTATE_0)) {
Matt Roper32b7eee2014-12-24 07:59:06 -080012013 intel_crtc->atomic.disable_fbc = true;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012014 }
12015
12016 if (state->visible) {
Matt Roper32b7eee2014-12-24 07:59:06 -080012017 /*
12018 * BDW signals flip done immediately if the plane
12019 * is disabled, even if the plane enable is already
12020 * armed to occur at the next vblank :(
12021 */
12022 if (IS_BROADWELL(dev) && !intel_crtc->primary_enabled)
12023 intel_crtc->atomic.wait_vblank = true;
12024 }
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012025
Matt Roper32b7eee2014-12-24 07:59:06 -080012026 intel_crtc->atomic.fb_bits |=
12027 INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
12028
12029 intel_crtc->atomic.update_fbc = true;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +000012030
12031 /* Update watermarks on tiling changes. */
12032 if (!plane->state->fb || !state->base.fb ||
12033 plane->state->fb->modifier[0] !=
12034 state->base.fb->modifier[0])
12035 intel_crtc->atomic.update_wm = true;
Matt Roperc59cb172014-12-01 15:40:16 -080012036 }
12037
12038 return 0;
Matt Roper465c1202014-05-29 08:06:54 -070012039}
12040
Sonika Jindal48404c12014-08-22 14:06:04 +053012041static void
12042intel_commit_primary_plane(struct drm_plane *plane,
12043 struct intel_plane_state *state)
12044{
Matt Roper2b875c22014-12-01 15:40:13 -080012045 struct drm_crtc *crtc = state->base.crtc;
12046 struct drm_framebuffer *fb = state->base.fb;
12047 struct drm_device *dev = plane->dev;
Sonika Jindal48404c12014-08-22 14:06:04 +053012048 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperea2c67b2014-12-23 10:41:52 -080012049 struct intel_crtc *intel_crtc;
Sonika Jindal48404c12014-08-22 14:06:04 +053012050 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Sonika Jindalce54d852014-08-21 11:44:39 +053012051 struct intel_plane *intel_plane = to_intel_plane(plane);
12052 struct drm_rect *src = &state->src;
Matt Ropercf4c7c12014-12-04 10:27:42 -080012053
Matt Roperea2c67b2014-12-23 10:41:52 -080012054 crtc = crtc ? crtc : plane->crtc;
12055 intel_crtc = to_intel_crtc(crtc);
12056
Matt Ropercf4c7c12014-12-04 10:27:42 -080012057 plane->fb = fb;
Sonika Jindalce54d852014-08-21 11:44:39 +053012058 crtc->x = src->x1 >> 16;
Matt Roper465c1202014-05-29 08:06:54 -070012059 crtc->y = src->y1 >> 16;
12060
Sonika Jindalce54d852014-08-21 11:44:39 +053012061 intel_plane->obj = obj;
Matt Roper465c1202014-05-29 08:06:54 -070012062
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012063 if (intel_crtc->active) {
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012064 if (state->visible) {
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012065 /* FIXME: kill this fastboot hack */
12066 intel_update_pipe_size(intel_crtc);
12067
12068 intel_crtc->primary_enabled = true;
12069
12070 dev_priv->display.update_primary_plane(crtc, plane->fb,
12071 crtc->x, crtc->y);
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012072 } else {
12073 /*
12074 * If clipping results in a non-visible primary plane,
12075 * we'll disable the primary plane. Note that this is
12076 * a bit different than what happens if userspace
12077 * explicitly disables the plane by passing fb=0
12078 * because plane->fb still gets set and pinned.
12079 */
12080 intel_disable_primary_hw_plane(plane, crtc);
12081 }
Matt Roper32b7eee2014-12-24 07:59:06 -080012082 }
12083}
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012084
Matt Roper32b7eee2014-12-24 07:59:06 -080012085static void intel_begin_crtc_commit(struct drm_crtc *crtc)
12086{
12087 struct drm_device *dev = crtc->dev;
12088 struct drm_i915_private *dev_priv = dev->dev_private;
12089 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roperea2c67b2014-12-23 10:41:52 -080012090 struct intel_plane *intel_plane;
12091 struct drm_plane *p;
12092 unsigned fb_bits = 0;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012093
Matt Roperea2c67b2014-12-23 10:41:52 -080012094 /* Track fb's for any planes being disabled */
12095 list_for_each_entry(p, &dev->mode_config.plane_list, head) {
12096 intel_plane = to_intel_plane(p);
12097
12098 if (intel_crtc->atomic.disabled_planes &
12099 (1 << drm_plane_index(p))) {
12100 switch (p->type) {
12101 case DRM_PLANE_TYPE_PRIMARY:
12102 fb_bits = INTEL_FRONTBUFFER_PRIMARY(intel_plane->pipe);
12103 break;
12104 case DRM_PLANE_TYPE_CURSOR:
12105 fb_bits = INTEL_FRONTBUFFER_CURSOR(intel_plane->pipe);
12106 break;
12107 case DRM_PLANE_TYPE_OVERLAY:
12108 fb_bits = INTEL_FRONTBUFFER_SPRITE(intel_plane->pipe);
12109 break;
12110 }
12111
12112 mutex_lock(&dev->struct_mutex);
12113 i915_gem_track_fb(intel_fb_obj(p->fb), NULL, fb_bits);
12114 mutex_unlock(&dev->struct_mutex);
12115 }
12116 }
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012117
Matt Roper32b7eee2014-12-24 07:59:06 -080012118 if (intel_crtc->atomic.wait_for_flips)
12119 intel_crtc_wait_for_pending_flips(crtc);
12120
12121 if (intel_crtc->atomic.disable_fbc)
12122 intel_fbc_disable(dev);
12123
12124 if (intel_crtc->atomic.pre_disable_primary)
12125 intel_pre_disable_primary(crtc);
12126
12127 if (intel_crtc->atomic.update_wm)
12128 intel_update_watermarks(crtc);
12129
12130 intel_runtime_pm_get(dev_priv);
Matt Roperc34c9ee2014-12-23 10:41:50 -080012131
12132 /* Perform vblank evasion around commit operation */
12133 if (intel_crtc->active)
12134 intel_crtc->atomic.evade =
12135 intel_pipe_update_start(intel_crtc,
12136 &intel_crtc->atomic.start_vbl_count);
Matt Roper32b7eee2014-12-24 07:59:06 -080012137}
12138
12139static void intel_finish_crtc_commit(struct drm_crtc *crtc)
12140{
12141 struct drm_device *dev = crtc->dev;
12142 struct drm_i915_private *dev_priv = dev->dev_private;
12143 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12144 struct drm_plane *p;
12145
Matt Roperc34c9ee2014-12-23 10:41:50 -080012146 if (intel_crtc->atomic.evade)
12147 intel_pipe_update_end(intel_crtc,
12148 intel_crtc->atomic.start_vbl_count);
12149
Matt Roper32b7eee2014-12-24 07:59:06 -080012150 intel_runtime_pm_put(dev_priv);
12151
12152 if (intel_crtc->atomic.wait_vblank)
12153 intel_wait_for_vblank(dev, intel_crtc->pipe);
12154
12155 intel_frontbuffer_flip(dev, intel_crtc->atomic.fb_bits);
12156
12157 if (intel_crtc->atomic.update_fbc) {
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012158 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020012159 intel_fbc_update(dev);
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012160 mutex_unlock(&dev->struct_mutex);
12161 }
Matt Roper465c1202014-05-29 08:06:54 -070012162
Matt Roper32b7eee2014-12-24 07:59:06 -080012163 if (intel_crtc->atomic.post_enable_primary)
12164 intel_post_enable_primary(crtc);
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012165
Matt Roper32b7eee2014-12-24 07:59:06 -080012166 drm_for_each_legacy_plane(p, &dev->mode_config.plane_list)
12167 if (intel_crtc->atomic.update_sprite_watermarks & drm_plane_index(p))
12168 intel_update_sprite_watermarks(p, crtc, 0, 0, 0,
12169 false, false);
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012170
Matt Roper32b7eee2014-12-24 07:59:06 -080012171 memset(&intel_crtc->atomic, 0, sizeof(intel_crtc->atomic));
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012172}
12173
Matt Ropercf4c7c12014-12-04 10:27:42 -080012174/**
Matt Roper4a3b8762014-12-23 10:41:51 -080012175 * intel_plane_destroy - destroy a plane
12176 * @plane: plane to destroy
Matt Ropercf4c7c12014-12-04 10:27:42 -080012177 *
Matt Roper4a3b8762014-12-23 10:41:51 -080012178 * Common destruction function for all types of planes (primary, cursor,
12179 * sprite).
Matt Ropercf4c7c12014-12-04 10:27:42 -080012180 */
Matt Roper4a3b8762014-12-23 10:41:51 -080012181void intel_plane_destroy(struct drm_plane *plane)
Matt Roper465c1202014-05-29 08:06:54 -070012182{
12183 struct intel_plane *intel_plane = to_intel_plane(plane);
12184 drm_plane_cleanup(plane);
12185 kfree(intel_plane);
12186}
12187
Matt Roper65a3fea2015-01-21 16:35:42 -080012188const struct drm_plane_funcs intel_plane_funcs = {
Daniel Vetterff42e092015-03-02 16:35:20 +010012189 .update_plane = drm_plane_helper_update,
12190 .disable_plane = drm_plane_helper_disable,
Matt Roper3d7d6512014-06-10 08:28:13 -070012191 .destroy = intel_plane_destroy,
Matt Roperc196e1d2015-01-21 16:35:48 -080012192 .set_property = drm_atomic_helper_plane_set_property,
Matt Ropera98b3432015-01-21 16:35:43 -080012193 .atomic_get_property = intel_plane_atomic_get_property,
12194 .atomic_set_property = intel_plane_atomic_set_property,
Matt Roperea2c67b2014-12-23 10:41:52 -080012195 .atomic_duplicate_state = intel_plane_duplicate_state,
12196 .atomic_destroy_state = intel_plane_destroy_state,
12197
Matt Roper465c1202014-05-29 08:06:54 -070012198};
12199
12200static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
12201 int pipe)
12202{
12203 struct intel_plane *primary;
Matt Roper8e7d6882015-01-21 16:35:41 -080012204 struct intel_plane_state *state;
Matt Roper465c1202014-05-29 08:06:54 -070012205 const uint32_t *intel_primary_formats;
12206 int num_formats;
12207
12208 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
12209 if (primary == NULL)
12210 return NULL;
12211
Matt Roper8e7d6882015-01-21 16:35:41 -080012212 state = intel_create_plane_state(&primary->base);
12213 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080012214 kfree(primary);
12215 return NULL;
12216 }
Matt Roper8e7d6882015-01-21 16:35:41 -080012217 primary->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080012218
Matt Roper465c1202014-05-29 08:06:54 -070012219 primary->can_scale = false;
12220 primary->max_downscale = 1;
12221 primary->pipe = pipe;
12222 primary->plane = pipe;
Matt Roperc59cb172014-12-01 15:40:16 -080012223 primary->check_plane = intel_check_primary_plane;
12224 primary->commit_plane = intel_commit_primary_plane;
Matt Roper465c1202014-05-29 08:06:54 -070012225 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
12226 primary->plane = !pipe;
12227
12228 if (INTEL_INFO(dev)->gen <= 3) {
12229 intel_primary_formats = intel_primary_formats_gen2;
12230 num_formats = ARRAY_SIZE(intel_primary_formats_gen2);
12231 } else {
12232 intel_primary_formats = intel_primary_formats_gen4;
12233 num_formats = ARRAY_SIZE(intel_primary_formats_gen4);
12234 }
12235
12236 drm_universal_plane_init(dev, &primary->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080012237 &intel_plane_funcs,
Matt Roper465c1202014-05-29 08:06:54 -070012238 intel_primary_formats, num_formats,
12239 DRM_PLANE_TYPE_PRIMARY);
Sonika Jindal48404c12014-08-22 14:06:04 +053012240
12241 if (INTEL_INFO(dev)->gen >= 4) {
12242 if (!dev->mode_config.rotation_property)
12243 dev->mode_config.rotation_property =
12244 drm_mode_create_rotation_property(dev,
12245 BIT(DRM_ROTATE_0) |
12246 BIT(DRM_ROTATE_180));
12247 if (dev->mode_config.rotation_property)
12248 drm_object_attach_property(&primary->base.base,
12249 dev->mode_config.rotation_property,
Matt Roper8e7d6882015-01-21 16:35:41 -080012250 state->base.rotation);
Sonika Jindal48404c12014-08-22 14:06:04 +053012251 }
12252
Matt Roperea2c67b2014-12-23 10:41:52 -080012253 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
12254
Matt Roper465c1202014-05-29 08:06:54 -070012255 return &primary->base;
12256}
12257
Matt Roper3d7d6512014-06-10 08:28:13 -070012258static int
Gustavo Padovan852e7872014-09-05 17:22:31 -030012259intel_check_cursor_plane(struct drm_plane *plane,
12260 struct intel_plane_state *state)
Matt Roper3d7d6512014-06-10 08:28:13 -070012261{
Matt Roper2b875c22014-12-01 15:40:13 -080012262 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080012263 struct drm_device *dev = plane->dev;
Matt Roper2b875c22014-12-01 15:40:13 -080012264 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan852e7872014-09-05 17:22:31 -030012265 struct drm_rect *dest = &state->dst;
12266 struct drm_rect *src = &state->src;
12267 const struct drm_rect *clip = &state->clip;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012268 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Matt Roperea2c67b2014-12-23 10:41:52 -080012269 struct intel_crtc *intel_crtc;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012270 unsigned stride;
12271 int ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030012272
Matt Roperea2c67b2014-12-23 10:41:52 -080012273 crtc = crtc ? crtc : plane->crtc;
12274 intel_crtc = to_intel_crtc(crtc);
12275
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012276 ret = drm_plane_helper_check_update(plane, crtc, fb,
Gustavo Padovan852e7872014-09-05 17:22:31 -030012277 src, dest, clip,
12278 DRM_PLANE_HELPER_NO_SCALING,
12279 DRM_PLANE_HELPER_NO_SCALING,
12280 true, true, &state->visible);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012281 if (ret)
12282 return ret;
12283
12284
12285 /* if we want to turn off the cursor ignore width and height */
12286 if (!obj)
Matt Roper32b7eee2014-12-24 07:59:06 -080012287 goto finish;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012288
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012289 /* Check for which cursor types we support */
Matt Roperea2c67b2014-12-23 10:41:52 -080012290 if (!cursor_size_ok(dev, state->base.crtc_w, state->base.crtc_h)) {
12291 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
12292 state->base.crtc_w, state->base.crtc_h);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012293 return -EINVAL;
12294 }
12295
Matt Roperea2c67b2014-12-23 10:41:52 -080012296 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
12297 if (obj->base.size < stride * state->base.crtc_h) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012298 DRM_DEBUG_KMS("buffer is too small\n");
12299 return -ENOMEM;
12300 }
12301
Ville Syrjälä3a656b52015-03-09 21:08:37 +020012302 if (fb->modifier[0] != DRM_FORMAT_MOD_NONE) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012303 DRM_DEBUG_KMS("cursor cannot be tiled\n");
12304 ret = -EINVAL;
12305 }
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012306
Matt Roper32b7eee2014-12-24 07:59:06 -080012307finish:
12308 if (intel_crtc->active) {
Matt Roper3dd512f2015-02-27 10:12:00 -080012309 if (intel_crtc->base.cursor->state->crtc_w != state->base.crtc_w)
Matt Roper32b7eee2014-12-24 07:59:06 -080012310 intel_crtc->atomic.update_wm = true;
12311
12312 intel_crtc->atomic.fb_bits |=
12313 INTEL_FRONTBUFFER_CURSOR(intel_crtc->pipe);
12314 }
12315
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012316 return ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030012317}
12318
Matt Roperf4a2cf22014-12-01 15:40:12 -080012319static void
Gustavo Padovan852e7872014-09-05 17:22:31 -030012320intel_commit_cursor_plane(struct drm_plane *plane,
12321 struct intel_plane_state *state)
12322{
Matt Roper2b875c22014-12-01 15:40:13 -080012323 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080012324 struct drm_device *dev = plane->dev;
12325 struct intel_crtc *intel_crtc;
Sonika Jindala919db92014-10-23 07:41:33 -070012326 struct intel_plane *intel_plane = to_intel_plane(plane);
Matt Roper2b875c22014-12-01 15:40:13 -080012327 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
Gustavo Padovana912f122014-12-01 15:40:10 -080012328 uint32_t addr;
Matt Roper3d7d6512014-06-10 08:28:13 -070012329
Matt Roperea2c67b2014-12-23 10:41:52 -080012330 crtc = crtc ? crtc : plane->crtc;
12331 intel_crtc = to_intel_crtc(crtc);
Sonika Jindala919db92014-10-23 07:41:33 -070012332
Matt Roperea2c67b2014-12-23 10:41:52 -080012333 plane->fb = state->base.fb;
12334 crtc->cursor_x = state->base.crtc_x;
12335 crtc->cursor_y = state->base.crtc_y;
12336
Sonika Jindala919db92014-10-23 07:41:33 -070012337 intel_plane->obj = obj;
12338
Gustavo Padovana912f122014-12-01 15:40:10 -080012339 if (intel_crtc->cursor_bo == obj)
12340 goto update;
12341
Matt Roperf4a2cf22014-12-01 15:40:12 -080012342 if (!obj)
Gustavo Padovana912f122014-12-01 15:40:10 -080012343 addr = 0;
Matt Roperf4a2cf22014-12-01 15:40:12 -080012344 else if (!INTEL_INFO(dev)->cursor_needs_physical)
Gustavo Padovana912f122014-12-01 15:40:10 -080012345 addr = i915_gem_obj_ggtt_offset(obj);
Matt Roperf4a2cf22014-12-01 15:40:12 -080012346 else
Gustavo Padovana912f122014-12-01 15:40:10 -080012347 addr = obj->phys_handle->busaddr;
Gustavo Padovana912f122014-12-01 15:40:10 -080012348
Gustavo Padovana912f122014-12-01 15:40:10 -080012349 intel_crtc->cursor_addr = addr;
12350 intel_crtc->cursor_bo = obj;
12351update:
Gustavo Padovana912f122014-12-01 15:40:10 -080012352
Matt Roper32b7eee2014-12-24 07:59:06 -080012353 if (intel_crtc->active)
Gustavo Padovan852e7872014-09-05 17:22:31 -030012354 intel_crtc_update_cursor(crtc, state->visible);
Matt Roper3d7d6512014-06-10 08:28:13 -070012355}
Gustavo Padovan852e7872014-09-05 17:22:31 -030012356
Matt Roper3d7d6512014-06-10 08:28:13 -070012357static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
12358 int pipe)
12359{
12360 struct intel_plane *cursor;
Matt Roper8e7d6882015-01-21 16:35:41 -080012361 struct intel_plane_state *state;
Matt Roper3d7d6512014-06-10 08:28:13 -070012362
12363 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
12364 if (cursor == NULL)
12365 return NULL;
12366
Matt Roper8e7d6882015-01-21 16:35:41 -080012367 state = intel_create_plane_state(&cursor->base);
12368 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080012369 kfree(cursor);
12370 return NULL;
12371 }
Matt Roper8e7d6882015-01-21 16:35:41 -080012372 cursor->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080012373
Matt Roper3d7d6512014-06-10 08:28:13 -070012374 cursor->can_scale = false;
12375 cursor->max_downscale = 1;
12376 cursor->pipe = pipe;
12377 cursor->plane = pipe;
Matt Roperc59cb172014-12-01 15:40:16 -080012378 cursor->check_plane = intel_check_cursor_plane;
12379 cursor->commit_plane = intel_commit_cursor_plane;
Matt Roper3d7d6512014-06-10 08:28:13 -070012380
12381 drm_universal_plane_init(dev, &cursor->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080012382 &intel_plane_funcs,
Matt Roper3d7d6512014-06-10 08:28:13 -070012383 intel_cursor_formats,
12384 ARRAY_SIZE(intel_cursor_formats),
12385 DRM_PLANE_TYPE_CURSOR);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070012386
12387 if (INTEL_INFO(dev)->gen >= 4) {
12388 if (!dev->mode_config.rotation_property)
12389 dev->mode_config.rotation_property =
12390 drm_mode_create_rotation_property(dev,
12391 BIT(DRM_ROTATE_0) |
12392 BIT(DRM_ROTATE_180));
12393 if (dev->mode_config.rotation_property)
12394 drm_object_attach_property(&cursor->base.base,
12395 dev->mode_config.rotation_property,
Matt Roper8e7d6882015-01-21 16:35:41 -080012396 state->base.rotation);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070012397 }
12398
Matt Roperea2c67b2014-12-23 10:41:52 -080012399 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
12400
Matt Roper3d7d6512014-06-10 08:28:13 -070012401 return &cursor->base;
12402}
12403
Hannes Ederb358d0a2008-12-18 21:18:47 +010012404static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -080012405{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012406 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080012407 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020012408 struct intel_crtc_state *crtc_state = NULL;
Matt Roper3d7d6512014-06-10 08:28:13 -070012409 struct drm_plane *primary = NULL;
12410 struct drm_plane *cursor = NULL;
Matt Roper465c1202014-05-29 08:06:54 -070012411 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080012412
Daniel Vetter955382f2013-09-19 14:05:45 +020012413 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -080012414 if (intel_crtc == NULL)
12415 return;
12416
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020012417 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
12418 if (!crtc_state)
12419 goto fail;
12420 intel_crtc_set_state(intel_crtc, crtc_state);
Matt Roper07878242015-02-25 11:43:26 -080012421 crtc_state->base.crtc = &intel_crtc->base;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020012422
Matt Roper465c1202014-05-29 08:06:54 -070012423 primary = intel_primary_plane_create(dev, pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070012424 if (!primary)
12425 goto fail;
12426
12427 cursor = intel_cursor_plane_create(dev, pipe);
12428 if (!cursor)
12429 goto fail;
12430
Matt Roper465c1202014-05-29 08:06:54 -070012431 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
Matt Roper3d7d6512014-06-10 08:28:13 -070012432 cursor, &intel_crtc_funcs);
12433 if (ret)
12434 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080012435
12436 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -080012437 for (i = 0; i < 256; i++) {
12438 intel_crtc->lut_r[i] = i;
12439 intel_crtc->lut_g[i] = i;
12440 intel_crtc->lut_b[i] = i;
12441 }
12442
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020012443 /*
12444 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
Daniel Vetter8c0f92e2014-06-16 02:08:26 +020012445 * is hooked to pipe B. Hence we want plane A feeding pipe B.
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020012446 */
Jesse Barnes80824002009-09-10 15:28:06 -070012447 intel_crtc->pipe = pipe;
12448 intel_crtc->plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +010012449 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
Zhao Yakui28c97732009-10-09 11:39:41 +080012450 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +010012451 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -070012452 }
12453
Chris Wilson4b0e3332014-05-30 16:35:26 +030012454 intel_crtc->cursor_base = ~0;
12455 intel_crtc->cursor_cntl = ~0;
Ville Syrjälädc41c152014-08-13 11:57:05 +030012456 intel_crtc->cursor_size = ~0;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030012457
Jesse Barnes22fd0fa2009-12-02 13:42:53 -080012458 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
12459 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
12460 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
12461 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
12462
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020012463 INIT_WORK(&intel_crtc->mmio_flip.work, intel_mmio_flip_work_func);
12464
Jesse Barnes79e53942008-11-07 14:24:08 -080012465 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Daniel Vetter87b6b102014-05-15 15:33:46 +020012466
12467 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070012468 return;
12469
12470fail:
12471 if (primary)
12472 drm_plane_cleanup(primary);
12473 if (cursor)
12474 drm_plane_cleanup(cursor);
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020012475 kfree(crtc_state);
Matt Roper3d7d6512014-06-10 08:28:13 -070012476 kfree(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -080012477}
12478
Jesse Barnes752aa882013-10-31 18:55:49 +020012479enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
12480{
12481 struct drm_encoder *encoder = connector->base.encoder;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020012482 struct drm_device *dev = connector->base.dev;
Jesse Barnes752aa882013-10-31 18:55:49 +020012483
Rob Clark51fd3712013-11-19 12:10:12 -050012484 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Jesse Barnes752aa882013-10-31 18:55:49 +020012485
Ville Syrjäläd3babd32014-11-07 11:16:01 +020012486 if (!encoder || WARN_ON(!encoder->crtc))
Jesse Barnes752aa882013-10-31 18:55:49 +020012487 return INVALID_PIPE;
12488
12489 return to_intel_crtc(encoder->crtc)->pipe;
12490}
12491
Carl Worth08d7b3d2009-04-29 14:43:54 -070012492int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +000012493 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -070012494{
Carl Worth08d7b3d2009-04-29 14:43:54 -070012495 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Rob Clark7707e652014-07-17 23:30:04 -040012496 struct drm_crtc *drmmode_crtc;
Daniel Vetterc05422d2009-08-11 16:05:30 +020012497 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012498
Rob Clark7707e652014-07-17 23:30:04 -040012499 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
Carl Worth08d7b3d2009-04-29 14:43:54 -070012500
Rob Clark7707e652014-07-17 23:30:04 -040012501 if (!drmmode_crtc) {
Carl Worth08d7b3d2009-04-29 14:43:54 -070012502 DRM_ERROR("no such CRTC id\n");
Ville Syrjälä3f2c2052013-10-17 13:35:03 +030012503 return -ENOENT;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012504 }
12505
Rob Clark7707e652014-07-17 23:30:04 -040012506 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetterc05422d2009-08-11 16:05:30 +020012507 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012508
Daniel Vetterc05422d2009-08-11 16:05:30 +020012509 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012510}
12511
Daniel Vetter66a92782012-07-12 20:08:18 +020012512static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080012513{
Daniel Vetter66a92782012-07-12 20:08:18 +020012514 struct drm_device *dev = encoder->base.dev;
12515 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080012516 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080012517 int entry = 0;
12518
Damien Lespiaub2784e12014-08-05 11:29:37 +010012519 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020012520 if (encoders_cloneable(encoder, source_encoder))
Daniel Vetter66a92782012-07-12 20:08:18 +020012521 index_mask |= (1 << entry);
12522
Jesse Barnes79e53942008-11-07 14:24:08 -080012523 entry++;
12524 }
Chris Wilson4ef69c72010-09-09 15:14:28 +010012525
Jesse Barnes79e53942008-11-07 14:24:08 -080012526 return index_mask;
12527}
12528
Chris Wilson4d302442010-12-14 19:21:29 +000012529static bool has_edp_a(struct drm_device *dev)
12530{
12531 struct drm_i915_private *dev_priv = dev->dev_private;
12532
12533 if (!IS_MOBILE(dev))
12534 return false;
12535
12536 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
12537 return false;
12538
Damien Lespiaue3589902014-02-07 19:12:50 +000012539 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
Chris Wilson4d302442010-12-14 19:21:29 +000012540 return false;
12541
12542 return true;
12543}
12544
Jesse Barnes84b4e042014-06-25 08:24:29 -070012545static bool intel_crt_present(struct drm_device *dev)
12546{
12547 struct drm_i915_private *dev_priv = dev->dev_private;
12548
Damien Lespiau884497e2013-12-03 13:56:23 +000012549 if (INTEL_INFO(dev)->gen >= 9)
12550 return false;
12551
Damien Lespiaucf404ce2014-10-01 20:04:15 +010012552 if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
Jesse Barnes84b4e042014-06-25 08:24:29 -070012553 return false;
12554
12555 if (IS_CHERRYVIEW(dev))
12556 return false;
12557
12558 if (IS_VALLEYVIEW(dev) && !dev_priv->vbt.int_crt_support)
12559 return false;
12560
12561 return true;
12562}
12563
Jesse Barnes79e53942008-11-07 14:24:08 -080012564static void intel_setup_outputs(struct drm_device *dev)
12565{
Eric Anholt725e30a2009-01-22 13:01:02 -080012566 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +010012567 struct intel_encoder *encoder;
Matt Roperc6f95f22015-01-22 16:50:32 -080012568 struct drm_connector *connector;
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012569 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -080012570
Daniel Vetterc9093352013-06-06 22:22:47 +020012571 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080012572
Jesse Barnes84b4e042014-06-25 08:24:29 -070012573 if (intel_crt_present(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -020012574 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012575
Paulo Zanoniaffa9352012-11-23 15:30:39 -020012576 if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030012577 int found;
12578
Jesse Barnesde31fac2015-03-06 15:53:32 -080012579 /*
12580 * Haswell uses DDI functions to detect digital outputs.
12581 * On SKL pre-D0 the strap isn't connected, so we assume
12582 * it's there.
12583 */
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030012584 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
Jesse Barnesde31fac2015-03-06 15:53:32 -080012585 /* WaIgnoreDDIAStrap: skl */
12586 if (found ||
12587 (IS_SKYLAKE(dev) && INTEL_REVID(dev) < SKL_REVID_D0))
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030012588 intel_ddi_init(dev, PORT_A);
12589
12590 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
12591 * register */
12592 found = I915_READ(SFUSE_STRAP);
12593
12594 if (found & SFUSE_STRAP_DDIB_DETECTED)
12595 intel_ddi_init(dev, PORT_B);
12596 if (found & SFUSE_STRAP_DDIC_DETECTED)
12597 intel_ddi_init(dev, PORT_C);
12598 if (found & SFUSE_STRAP_DDID_DETECTED)
12599 intel_ddi_init(dev, PORT_D);
12600 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012601 int found;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020012602 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
Daniel Vetter270b3042012-10-27 15:52:05 +020012603
12604 if (has_edp_a(dev))
12605 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012606
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012607 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +080012608 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +010012609 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012610 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012611 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012612 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012613 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012614 }
12615
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012616 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012617 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012618
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012619 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012620 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012621
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012622 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012623 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012624
Daniel Vetter270b3042012-10-27 15:52:05 +020012625 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012626 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -070012627 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012628 /*
12629 * The DP_DETECTED bit is the latched state of the DDC
12630 * SDA pin at boot. However since eDP doesn't require DDC
12631 * (no way to plug in a DP->HDMI dongle) the DDC pins for
12632 * eDP ports may have been muxed to an alternate function.
12633 * Thus we can't rely on the DP_DETECTED bit alone to detect
12634 * eDP ports. Consult the VBT as well as DP_DETECTED to
12635 * detect eDP ports.
12636 */
Ville Syrjäläd2182a62015-01-09 14:21:14 +020012637 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED &&
12638 !intel_dp_is_edp(dev, PORT_B))
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030012639 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
12640 PORT_B);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012641 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED ||
12642 intel_dp_is_edp(dev, PORT_B))
12643 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030012644
Ville Syrjäläd2182a62015-01-09 14:21:14 +020012645 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED &&
12646 !intel_dp_is_edp(dev, PORT_C))
Jesse Barnes6f6005a2013-08-09 09:34:35 -070012647 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
12648 PORT_C);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012649 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED ||
12650 intel_dp_is_edp(dev, PORT_C))
12651 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
Gajanan Bhat19c03922012-09-27 19:13:07 +053012652
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030012653 if (IS_CHERRYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012654 if (I915_READ(VLV_DISPLAY_BASE + CHV_HDMID) & SDVO_DETECTED)
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030012655 intel_hdmi_init(dev, VLV_DISPLAY_BASE + CHV_HDMID,
12656 PORT_D);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012657 /* eDP not supported on port D, so don't check VBT */
12658 if (I915_READ(VLV_DISPLAY_BASE + DP_D) & DP_DETECTED)
12659 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_D, PORT_D);
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030012660 }
12661
Jani Nikula3cfca972013-08-27 15:12:26 +030012662 intel_dsi_init(dev);
Zhenyu Wang103a1962009-11-27 11:44:36 +080012663 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +080012664 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -080012665
Paulo Zanonie2debe92013-02-18 19:00:27 -030012666 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012667 DRM_DEBUG_KMS("probing SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012668 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012669 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
12670 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012671 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012672 }
Ma Ling27185ae2009-08-24 13:50:23 +080012673
Imre Deake7281ea2013-05-08 13:14:08 +030012674 if (!found && SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012675 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -080012676 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -040012677
12678 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -040012679
Paulo Zanonie2debe92013-02-18 19:00:27 -030012680 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012681 DRM_DEBUG_KMS("probing SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012682 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012683 }
Ma Ling27185ae2009-08-24 13:50:23 +080012684
Paulo Zanonie2debe92013-02-18 19:00:27 -030012685 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +080012686
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012687 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
12688 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012689 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012690 }
Imre Deake7281ea2013-05-08 13:14:08 +030012691 if (SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012692 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -080012693 }
Ma Ling27185ae2009-08-24 13:50:23 +080012694
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012695 if (SUPPORTS_INTEGRATED_DP(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +030012696 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012697 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -070012698 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080012699 intel_dvo_init(dev);
12700
Zhenyu Wang103a1962009-11-27 11:44:36 +080012701 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080012702 intel_tv_init(dev);
12703
Matt Roperc6f95f22015-01-22 16:50:32 -080012704 /*
12705 * FIXME: We don't have full atomic support yet, but we want to be
12706 * able to enable/test plane updates via the atomic interface in the
12707 * meantime. However as soon as we flip DRIVER_ATOMIC on, the DRM core
12708 * will take some atomic codepaths to lookup properties during
12709 * drmModeGetConnector() that unconditionally dereference
12710 * connector->state.
12711 *
12712 * We create a dummy connector state here for each connector to ensure
12713 * the DRM core doesn't try to dereference a NULL connector->state.
12714 * The actual connector properties will never be updated or contain
12715 * useful information, but since we're doing this specifically for
12716 * testing/debug of the plane operations (and only when a specific
12717 * kernel module option is given), that shouldn't really matter.
12718 *
12719 * Once atomic support for crtc's + connectors lands, this loop should
12720 * be removed since we'll be setting up real connector state, which
12721 * will contain Intel-specific properties.
12722 */
12723 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
12724 list_for_each_entry(connector,
12725 &dev->mode_config.connector_list,
12726 head) {
12727 if (!WARN_ON(connector->state)) {
12728 connector->state =
12729 kzalloc(sizeof(*connector->state),
12730 GFP_KERNEL);
12731 }
12732 }
12733 }
12734
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -080012735 intel_psr_init(dev);
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -070012736
Damien Lespiaub2784e12014-08-05 11:29:37 +010012737 for_each_intel_encoder(dev, encoder) {
Chris Wilson4ef69c72010-09-09 15:14:28 +010012738 encoder->base.possible_crtcs = encoder->crtc_mask;
12739 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +020012740 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -080012741 }
Chris Wilson47356eb2011-01-11 17:06:04 +000012742
Paulo Zanonidde86e22012-12-01 12:04:25 -020012743 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +020012744
12745 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080012746}
12747
12748static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
12749{
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012750 struct drm_device *dev = fb->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -080012751 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -080012752
Daniel Vetteref2d6332014-02-10 18:00:38 +010012753 drm_framebuffer_cleanup(fb);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012754 mutex_lock(&dev->struct_mutex);
Daniel Vetteref2d6332014-02-10 18:00:38 +010012755 WARN_ON(!intel_fb->obj->framebuffer_references--);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012756 drm_gem_object_unreference(&intel_fb->obj->base);
12757 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080012758 kfree(intel_fb);
12759}
12760
12761static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +000012762 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -080012763 unsigned int *handle)
12764{
12765 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +000012766 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080012767
Chris Wilson05394f32010-11-08 19:18:58 +000012768 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -080012769}
12770
12771static const struct drm_framebuffer_funcs intel_fb_funcs = {
12772 .destroy = intel_user_framebuffer_destroy,
12773 .create_handle = intel_user_framebuffer_create_handle,
12774};
12775
Damien Lespiaub3218032015-02-27 11:15:18 +000012776static
12777u32 intel_fb_pitch_limit(struct drm_device *dev, uint64_t fb_modifier,
12778 uint32_t pixel_format)
12779{
12780 u32 gen = INTEL_INFO(dev)->gen;
12781
12782 if (gen >= 9) {
12783 /* "The stride in bytes must not exceed the of the size of 8K
12784 * pixels and 32K bytes."
12785 */
12786 return min(8192*drm_format_plane_cpp(pixel_format, 0), 32768);
12787 } else if (gen >= 5 && !IS_VALLEYVIEW(dev)) {
12788 return 32*1024;
12789 } else if (gen >= 4) {
12790 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
12791 return 16*1024;
12792 else
12793 return 32*1024;
12794 } else if (gen >= 3) {
12795 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
12796 return 8*1024;
12797 else
12798 return 16*1024;
12799 } else {
12800 /* XXX DSPC is limited to 4k tiled */
12801 return 8*1024;
12802 }
12803}
12804
Daniel Vetterb5ea6422014-03-02 21:18:00 +010012805static int intel_framebuffer_init(struct drm_device *dev,
12806 struct intel_framebuffer *intel_fb,
12807 struct drm_mode_fb_cmd2 *mode_cmd,
12808 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -080012809{
Jesse Barnesa57ce0b2014-02-07 12:10:35 -080012810 int aligned_height;
Jesse Barnes79e53942008-11-07 14:24:08 -080012811 int ret;
Damien Lespiaub3218032015-02-27 11:15:18 +000012812 u32 pitch_limit, stride_alignment;
Jesse Barnes79e53942008-11-07 14:24:08 -080012813
Daniel Vetterdd4916c2013-10-09 21:23:51 +020012814 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
12815
Daniel Vetter2a80ead2015-02-10 17:16:06 +000012816 if (mode_cmd->flags & DRM_MODE_FB_MODIFIERS) {
12817 /* Enforce that fb modifier and tiling mode match, but only for
12818 * X-tiled. This is needed for FBC. */
12819 if (!!(obj->tiling_mode == I915_TILING_X) !=
12820 !!(mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED)) {
12821 DRM_DEBUG("tiling_mode doesn't match fb modifier\n");
12822 return -EINVAL;
12823 }
12824 } else {
12825 if (obj->tiling_mode == I915_TILING_X)
12826 mode_cmd->modifier[0] = I915_FORMAT_MOD_X_TILED;
12827 else if (obj->tiling_mode == I915_TILING_Y) {
12828 DRM_DEBUG("No Y tiling for legacy addfb\n");
12829 return -EINVAL;
12830 }
12831 }
12832
Tvrtko Ursulin9a8f0a12015-02-27 11:15:24 +000012833 /* Passed in modifier sanity checking. */
12834 switch (mode_cmd->modifier[0]) {
12835 case I915_FORMAT_MOD_Y_TILED:
12836 case I915_FORMAT_MOD_Yf_TILED:
12837 if (INTEL_INFO(dev)->gen < 9) {
12838 DRM_DEBUG("Unsupported tiling 0x%llx!\n",
12839 mode_cmd->modifier[0]);
12840 return -EINVAL;
12841 }
12842 case DRM_FORMAT_MOD_NONE:
12843 case I915_FORMAT_MOD_X_TILED:
12844 break;
12845 default:
12846 DRM_ERROR("Unsupported fb modifier 0x%llx!\n",
12847 mode_cmd->modifier[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +010012848 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012849 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012850
Damien Lespiaub3218032015-02-27 11:15:18 +000012851 stride_alignment = intel_fb_stride_alignment(dev, mode_cmd->modifier[0],
12852 mode_cmd->pixel_format);
12853 if (mode_cmd->pitches[0] & (stride_alignment - 1)) {
12854 DRM_DEBUG("pitch (%d) must be at least %u byte aligned\n",
12855 mode_cmd->pitches[0], stride_alignment);
Chris Wilson57cd6502010-08-08 12:34:44 +010012856 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012857 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012858
Damien Lespiaub3218032015-02-27 11:15:18 +000012859 pitch_limit = intel_fb_pitch_limit(dev, mode_cmd->modifier[0],
12860 mode_cmd->pixel_format);
Chris Wilsona35cdaa2013-06-25 17:26:45 +010012861 if (mode_cmd->pitches[0] > pitch_limit) {
Damien Lespiaub3218032015-02-27 11:15:18 +000012862 DRM_DEBUG("%s pitch (%u) must be at less than %d\n",
12863 mode_cmd->modifier[0] != DRM_FORMAT_MOD_NONE ?
Daniel Vetter2a80ead2015-02-10 17:16:06 +000012864 "tiled" : "linear",
Chris Wilsona35cdaa2013-06-25 17:26:45 +010012865 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012866 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012867 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012868
Daniel Vetter2a80ead2015-02-10 17:16:06 +000012869 if (mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012870 mode_cmd->pitches[0] != obj->stride) {
12871 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
12872 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012873 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012874 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012875
Ville Syrjälä57779d02012-10-31 17:50:14 +020012876 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080012877 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020012878 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020012879 case DRM_FORMAT_RGB565:
12880 case DRM_FORMAT_XRGB8888:
12881 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020012882 break;
12883 case DRM_FORMAT_XRGB1555:
12884 case DRM_FORMAT_ARGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012885 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012886 DRM_DEBUG("unsupported pixel format: %s\n",
12887 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012888 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012889 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020012890 break;
12891 case DRM_FORMAT_XBGR8888:
12892 case DRM_FORMAT_ABGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020012893 case DRM_FORMAT_XRGB2101010:
12894 case DRM_FORMAT_ARGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020012895 case DRM_FORMAT_XBGR2101010:
12896 case DRM_FORMAT_ABGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012897 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012898 DRM_DEBUG("unsupported pixel format: %s\n",
12899 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012900 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012901 }
Jesse Barnesb5626742011-06-24 12:19:27 -070012902 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020012903 case DRM_FORMAT_YUYV:
12904 case DRM_FORMAT_UYVY:
12905 case DRM_FORMAT_YVYU:
12906 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012907 if (INTEL_INFO(dev)->gen < 5) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012908 DRM_DEBUG("unsupported pixel format: %s\n",
12909 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012910 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012911 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012912 break;
12913 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012914 DRM_DEBUG("unsupported pixel format: %s\n",
12915 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010012916 return -EINVAL;
12917 }
12918
Ville Syrjälä90f9a332012-10-31 17:50:19 +020012919 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
12920 if (mode_cmd->offsets[0] != 0)
12921 return -EINVAL;
12922
Damien Lespiauec2c9812015-01-20 12:51:45 +000012923 aligned_height = intel_fb_align_height(dev, mode_cmd->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +000012924 mode_cmd->pixel_format,
12925 mode_cmd->modifier[0]);
Daniel Vetter53155c02013-10-09 21:55:33 +020012926 /* FIXME drm helper for size checks (especially planar formats)? */
12927 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
12928 return -EINVAL;
12929
Daniel Vetterc7d73f62012-12-13 23:38:38 +010012930 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
12931 intel_fb->obj = obj;
Daniel Vetter80075d42013-10-09 21:23:52 +020012932 intel_fb->obj->framebuffer_references++;
Daniel Vetterc7d73f62012-12-13 23:38:38 +010012933
Jesse Barnes79e53942008-11-07 14:24:08 -080012934 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
12935 if (ret) {
12936 DRM_ERROR("framebuffer init failed %d\n", ret);
12937 return ret;
12938 }
12939
Jesse Barnes79e53942008-11-07 14:24:08 -080012940 return 0;
12941}
12942
Jesse Barnes79e53942008-11-07 14:24:08 -080012943static struct drm_framebuffer *
12944intel_user_framebuffer_create(struct drm_device *dev,
12945 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -080012946 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080012947{
Chris Wilson05394f32010-11-08 19:18:58 +000012948 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080012949
Jesse Barnes308e5bc2011-11-14 14:51:28 -080012950 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
12951 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +000012952 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010012953 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080012954
Chris Wilsond2dff872011-04-19 08:36:26 +010012955 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -080012956}
12957
Daniel Vetter4520f532013-10-09 09:18:51 +020012958#ifndef CONFIG_DRM_I915_FBDEV
Daniel Vetter0632fef2013-10-08 17:44:49 +020012959static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
Daniel Vetter4520f532013-10-09 09:18:51 +020012960{
12961}
12962#endif
12963
Jesse Barnes79e53942008-11-07 14:24:08 -080012964static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080012965 .fb_create = intel_user_framebuffer_create,
Daniel Vetter0632fef2013-10-08 17:44:49 +020012966 .output_poll_changed = intel_fbdev_output_poll_changed,
Matt Roper5ee67f12015-01-21 16:35:44 -080012967 .atomic_check = intel_atomic_check,
12968 .atomic_commit = intel_atomic_commit,
Jesse Barnes79e53942008-11-07 14:24:08 -080012969};
12970
Jesse Barnese70236a2009-09-21 10:42:27 -070012971/* Set up chip specific display functions */
12972static void intel_init_display(struct drm_device *dev)
12973{
12974 struct drm_i915_private *dev_priv = dev->dev_private;
12975
Daniel Vetteree9300b2013-06-03 22:40:22 +020012976 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
12977 dev_priv->display.find_dpll = g4x_find_best_dpll;
Chon Ming Leeef9348c2014-04-09 13:28:18 +030012978 else if (IS_CHERRYVIEW(dev))
12979 dev_priv->display.find_dpll = chv_find_best_dpll;
Daniel Vetteree9300b2013-06-03 22:40:22 +020012980 else if (IS_VALLEYVIEW(dev))
12981 dev_priv->display.find_dpll = vlv_find_best_dpll;
12982 else if (IS_PINEVIEW(dev))
12983 dev_priv->display.find_dpll = pnv_find_best_dpll;
12984 else
12985 dev_priv->display.find_dpll = i9xx_find_best_dpll;
12986
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000012987 if (INTEL_INFO(dev)->gen >= 9) {
12988 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000012989 dev_priv->display.get_initial_plane_config =
12990 skylake_get_initial_plane_config;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000012991 dev_priv->display.crtc_compute_clock =
12992 haswell_crtc_compute_clock;
12993 dev_priv->display.crtc_enable = haswell_crtc_enable;
12994 dev_priv->display.crtc_disable = haswell_crtc_disable;
12995 dev_priv->display.off = ironlake_crtc_off;
12996 dev_priv->display.update_primary_plane =
12997 skylake_update_primary_plane;
12998 } else if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012999 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000013000 dev_priv->display.get_initial_plane_config =
13001 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira797d0252014-10-29 11:32:34 +020013002 dev_priv->display.crtc_compute_clock =
13003 haswell_crtc_compute_clock;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020013004 dev_priv->display.crtc_enable = haswell_crtc_enable;
13005 dev_priv->display.crtc_disable = haswell_crtc_disable;
Daniel Vetterdf8ad702014-06-25 22:02:03 +030013006 dev_priv->display.off = ironlake_crtc_off;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000013007 dev_priv->display.update_primary_plane =
13008 ironlake_update_primary_plane;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030013009 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010013010 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000013011 dev_priv->display.get_initial_plane_config =
13012 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +020013013 dev_priv->display.crtc_compute_clock =
13014 ironlake_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020013015 dev_priv->display.crtc_enable = ironlake_crtc_enable;
13016 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013017 dev_priv->display.off = ironlake_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070013018 dev_priv->display.update_primary_plane =
13019 ironlake_update_primary_plane;
Jesse Barnes89b667f2013-04-18 14:51:36 -070013020 } else if (IS_VALLEYVIEW(dev)) {
13021 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000013022 dev_priv->display.get_initial_plane_config =
13023 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020013024 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Jesse Barnes89b667f2013-04-18 14:51:36 -070013025 dev_priv->display.crtc_enable = valleyview_crtc_enable;
13026 dev_priv->display.crtc_disable = i9xx_crtc_disable;
13027 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070013028 dev_priv->display.update_primary_plane =
13029 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070013030 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010013031 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000013032 dev_priv->display.get_initial_plane_config =
13033 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020013034 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020013035 dev_priv->display.crtc_enable = i9xx_crtc_enable;
13036 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013037 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070013038 dev_priv->display.update_primary_plane =
13039 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070013040 }
Jesse Barnese70236a2009-09-21 10:42:27 -070013041
Jesse Barnese70236a2009-09-21 10:42:27 -070013042 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070013043 if (IS_VALLEYVIEW(dev))
13044 dev_priv->display.get_display_clock_speed =
13045 valleyview_get_display_clock_speed;
13046 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -070013047 dev_priv->display.get_display_clock_speed =
13048 i945_get_display_clock_speed;
13049 else if (IS_I915G(dev))
13050 dev_priv->display.get_display_clock_speed =
13051 i915_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020013052 else if (IS_I945GM(dev) || IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070013053 dev_priv->display.get_display_clock_speed =
13054 i9xx_misc_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020013055 else if (IS_PINEVIEW(dev))
13056 dev_priv->display.get_display_clock_speed =
13057 pnv_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070013058 else if (IS_I915GM(dev))
13059 dev_priv->display.get_display_clock_speed =
13060 i915gm_get_display_clock_speed;
13061 else if (IS_I865G(dev))
13062 dev_priv->display.get_display_clock_speed =
13063 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +020013064 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070013065 dev_priv->display.get_display_clock_speed =
13066 i855_get_display_clock_speed;
13067 else /* 852, 830 */
13068 dev_priv->display.get_display_clock_speed =
13069 i830_get_display_clock_speed;
13070
Jani Nikula7c10a2b2014-10-27 16:26:43 +020013071 if (IS_GEN5(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053013072 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053013073 } else if (IS_GEN6(dev)) {
13074 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053013075 } else if (IS_IVYBRIDGE(dev)) {
13076 /* FIXME: detect B0+ stepping and use auto training */
13077 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053013078 dev_priv->display.modeset_global_resources =
13079 ivb_modeset_global_resources;
Paulo Zanoni059b2fe2014-09-02 16:53:57 -030013080 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053013081 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Jesse Barnes30a970c2013-11-04 13:48:12 -080013082 } else if (IS_VALLEYVIEW(dev)) {
13083 dev_priv->display.modeset_global_resources =
13084 valleyview_modeset_global_resources;
Jesse Barnese70236a2009-09-21 10:42:27 -070013085 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070013086
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070013087 switch (INTEL_INFO(dev)->gen) {
13088 case 2:
13089 dev_priv->display.queue_flip = intel_gen2_queue_flip;
13090 break;
13091
13092 case 3:
13093 dev_priv->display.queue_flip = intel_gen3_queue_flip;
13094 break;
13095
13096 case 4:
13097 case 5:
13098 dev_priv->display.queue_flip = intel_gen4_queue_flip;
13099 break;
13100
13101 case 6:
13102 dev_priv->display.queue_flip = intel_gen6_queue_flip;
13103 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070013104 case 7:
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070013105 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
Jesse Barnes7c9017e2011-06-16 12:18:54 -070013106 dev_priv->display.queue_flip = intel_gen7_queue_flip;
13107 break;
Damien Lespiau830c81d2014-11-13 17:51:46 +000013108 case 9:
Tvrtko Ursulinba343e02015-02-10 17:16:12 +000013109 /* Drop through - unsupported since execlist only. */
13110 default:
13111 /* Default just returns -ENODEV to indicate unsupported */
13112 dev_priv->display.queue_flip = intel_default_queue_flip;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070013113 }
Jani Nikula7bd688c2013-11-08 16:48:56 +020013114
13115 intel_panel_init_backlight_funcs(dev);
Ville Syrjäläe39b9992014-09-04 14:53:14 +030013116
13117 mutex_init(&dev_priv->pps_mutex);
Jesse Barnese70236a2009-09-21 10:42:27 -070013118}
13119
Jesse Barnesb690e962010-07-19 13:53:12 -070013120/*
13121 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
13122 * resume, or other times. This quirk makes sure that's the case for
13123 * affected systems.
13124 */
Akshay Joshi0206e352011-08-16 15:34:10 -040013125static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070013126{
13127 struct drm_i915_private *dev_priv = dev->dev_private;
13128
13129 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020013130 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070013131}
13132
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030013133static void quirk_pipeb_force(struct drm_device *dev)
13134{
13135 struct drm_i915_private *dev_priv = dev->dev_private;
13136
13137 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
13138 DRM_INFO("applying pipe b force quirk\n");
13139}
13140
Keith Packard435793d2011-07-12 14:56:22 -070013141/*
13142 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
13143 */
13144static void quirk_ssc_force_disable(struct drm_device *dev)
13145{
13146 struct drm_i915_private *dev_priv = dev->dev_private;
13147 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020013148 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070013149}
13150
Carsten Emde4dca20e2012-03-15 15:56:26 +010013151/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010013152 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
13153 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010013154 */
13155static void quirk_invert_brightness(struct drm_device *dev)
13156{
13157 struct drm_i915_private *dev_priv = dev->dev_private;
13158 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020013159 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070013160}
13161
Scot Doyle9c72cc62014-07-03 23:27:50 +000013162/* Some VBT's incorrectly indicate no backlight is present */
13163static void quirk_backlight_present(struct drm_device *dev)
13164{
13165 struct drm_i915_private *dev_priv = dev->dev_private;
13166 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
13167 DRM_INFO("applying backlight present quirk\n");
13168}
13169
Jesse Barnesb690e962010-07-19 13:53:12 -070013170struct intel_quirk {
13171 int device;
13172 int subsystem_vendor;
13173 int subsystem_device;
13174 void (*hook)(struct drm_device *dev);
13175};
13176
Egbert Eich5f85f172012-10-14 15:46:38 +020013177/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
13178struct intel_dmi_quirk {
13179 void (*hook)(struct drm_device *dev);
13180 const struct dmi_system_id (*dmi_id_list)[];
13181};
13182
13183static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
13184{
13185 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
13186 return 1;
13187}
13188
13189static const struct intel_dmi_quirk intel_dmi_quirks[] = {
13190 {
13191 .dmi_id_list = &(const struct dmi_system_id[]) {
13192 {
13193 .callback = intel_dmi_reverse_brightness,
13194 .ident = "NCR Corporation",
13195 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
13196 DMI_MATCH(DMI_PRODUCT_NAME, ""),
13197 },
13198 },
13199 { } /* terminating entry */
13200 },
13201 .hook = quirk_invert_brightness,
13202 },
13203};
13204
Ben Widawskyc43b5632012-04-16 14:07:40 -070013205static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070013206 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -040013207 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -070013208
Jesse Barnesb690e962010-07-19 13:53:12 -070013209 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
13210 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
13211
Jesse Barnesb690e962010-07-19 13:53:12 -070013212 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
13213 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
13214
Ville Syrjälä5f080c02014-08-15 01:22:06 +030013215 /* 830 needs to leave pipe A & dpll A up */
13216 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
13217
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030013218 /* 830 needs to leave pipe B & dpll B up */
13219 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
13220
Keith Packard435793d2011-07-12 14:56:22 -070013221 /* Lenovo U160 cannot use SSC on LVDS */
13222 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020013223
13224 /* Sony Vaio Y cannot use SSC on LVDS */
13225 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010013226
Alexander van Heukelumbe505f62013-12-28 21:00:39 +010013227 /* Acer Aspire 5734Z must invert backlight brightness */
13228 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
13229
13230 /* Acer/eMachines G725 */
13231 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
13232
13233 /* Acer/eMachines e725 */
13234 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
13235
13236 /* Acer/Packard Bell NCL20 */
13237 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
13238
13239 /* Acer Aspire 4736Z */
13240 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jani Nikula0f540c32014-01-13 17:30:34 +020013241
13242 /* Acer Aspire 5336 */
13243 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
Scot Doyle2e93a1a2014-07-03 23:27:51 +000013244
13245 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
13246 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
Scot Doyled4967d82014-07-03 23:27:52 +000013247
Scot Doyledfb3d47b2014-08-21 16:08:02 +000013248 /* Acer C720 Chromebook (Core i3 4005U) */
13249 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
13250
jens steinb2a96012014-10-28 20:25:53 +010013251 /* Apple Macbook 2,1 (Core 2 T7400) */
13252 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
13253
Scot Doyled4967d82014-07-03 23:27:52 +000013254 /* Toshiba CB35 Chromebook (Celeron 2955U) */
13255 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
Scot Doyle724cb062014-07-11 22:16:30 +000013256
13257 /* HP Chromebook 14 (Celeron 2955U) */
13258 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
Jani Nikulacf6f0af2015-02-19 10:53:39 +020013259
13260 /* Dell Chromebook 11 */
13261 { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present },
Jesse Barnesb690e962010-07-19 13:53:12 -070013262};
13263
13264static void intel_init_quirks(struct drm_device *dev)
13265{
13266 struct pci_dev *d = dev->pdev;
13267 int i;
13268
13269 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
13270 struct intel_quirk *q = &intel_quirks[i];
13271
13272 if (d->device == q->device &&
13273 (d->subsystem_vendor == q->subsystem_vendor ||
13274 q->subsystem_vendor == PCI_ANY_ID) &&
13275 (d->subsystem_device == q->subsystem_device ||
13276 q->subsystem_device == PCI_ANY_ID))
13277 q->hook(dev);
13278 }
Egbert Eich5f85f172012-10-14 15:46:38 +020013279 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
13280 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
13281 intel_dmi_quirks[i].hook(dev);
13282 }
Jesse Barnesb690e962010-07-19 13:53:12 -070013283}
13284
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013285/* Disable the VGA plane that we never use */
13286static void i915_disable_vga(struct drm_device *dev)
13287{
13288 struct drm_i915_private *dev_priv = dev->dev_private;
13289 u8 sr1;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020013290 u32 vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013291
Ville Syrjälä2b37c612014-01-22 21:32:38 +020013292 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013293 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070013294 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013295 sr1 = inb(VGA_SR_DATA);
13296 outb(sr1 | 1<<5, VGA_SR_DATA);
13297 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
13298 udelay(300);
13299
Ville Syrjälä01f5a622014-12-16 18:38:37 +020013300 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013301 POSTING_READ(vga_reg);
13302}
13303
Daniel Vetterf8175862012-04-10 15:50:11 +020013304void intel_modeset_init_hw(struct drm_device *dev)
13305{
Eugeni Dodonova8f78b52012-06-28 15:55:35 -030013306 intel_prepare_ddi(dev);
13307
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +030013308 if (IS_VALLEYVIEW(dev))
13309 vlv_update_cdclk(dev);
13310
Daniel Vetterf8175862012-04-10 15:50:11 +020013311 intel_init_clock_gating(dev);
13312
Daniel Vetter8090c6b2012-06-24 16:42:32 +020013313 intel_enable_gt_powersave(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020013314}
13315
Jesse Barnes79e53942008-11-07 14:24:08 -080013316void intel_modeset_init(struct drm_device *dev)
13317{
Jesse Barnes652c3932009-08-17 13:31:43 -070013318 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau1fe47782014-03-03 17:31:47 +000013319 int sprite, ret;
Damien Lespiau8cc87b72014-03-03 17:31:44 +000013320 enum pipe pipe;
Jesse Barnes46f297f2014-03-07 08:57:48 -080013321 struct intel_crtc *crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -080013322
13323 drm_mode_config_init(dev);
13324
13325 dev->mode_config.min_width = 0;
13326 dev->mode_config.min_height = 0;
13327
Dave Airlie019d96c2011-09-29 16:20:42 +010013328 dev->mode_config.preferred_depth = 24;
13329 dev->mode_config.prefer_shadow = 1;
13330
Tvrtko Ursulin25bab382015-02-10 17:16:16 +000013331 dev->mode_config.allow_fb_modifiers = true;
13332
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020013333 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080013334
Jesse Barnesb690e962010-07-19 13:53:12 -070013335 intel_init_quirks(dev);
13336
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030013337 intel_init_pm(dev);
13338
Ben Widawskye3c74752013-04-05 13:12:39 -070013339 if (INTEL_INFO(dev)->num_pipes == 0)
13340 return;
13341
Jesse Barnese70236a2009-09-21 10:42:27 -070013342 intel_init_display(dev);
Jani Nikula7c10a2b2014-10-27 16:26:43 +020013343 intel_init_audio(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070013344
Chris Wilsona6c45cf2010-09-17 00:32:17 +010013345 if (IS_GEN2(dev)) {
13346 dev->mode_config.max_width = 2048;
13347 dev->mode_config.max_height = 2048;
13348 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070013349 dev->mode_config.max_width = 4096;
13350 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080013351 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010013352 dev->mode_config.max_width = 8192;
13353 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080013354 }
Damien Lespiau068be562014-03-28 14:17:49 +000013355
Ville Syrjälädc41c152014-08-13 11:57:05 +030013356 if (IS_845G(dev) || IS_I865G(dev)) {
13357 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
13358 dev->mode_config.cursor_height = 1023;
13359 } else if (IS_GEN2(dev)) {
Damien Lespiau068be562014-03-28 14:17:49 +000013360 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
13361 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
13362 } else {
13363 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
13364 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
13365 }
13366
Ben Widawsky5d4545a2013-01-17 12:45:15 -080013367 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080013368
Zhao Yakui28c97732009-10-09 11:39:41 +080013369 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070013370 INTEL_INFO(dev)->num_pipes,
13371 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080013372
Damien Lespiau055e3932014-08-18 13:49:10 +010013373 for_each_pipe(dev_priv, pipe) {
Damien Lespiau8cc87b72014-03-03 17:31:44 +000013374 intel_crtc_init(dev, pipe);
Damien Lespiau3bdcfc02015-02-28 14:54:09 +000013375 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau1fe47782014-03-03 17:31:47 +000013376 ret = intel_plane_init(dev, pipe, sprite);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070013377 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030013378 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +000013379 pipe_name(pipe), sprite_name(pipe, sprite), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070013380 }
Jesse Barnes79e53942008-11-07 14:24:08 -080013381 }
13382
Jesse Barnesf42bb702013-12-16 16:34:23 -080013383 intel_init_dpio(dev);
13384
Daniel Vettere72f9fb2013-06-05 13:34:06 +020013385 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013386
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013387 /* Just disable it once at startup */
13388 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080013389 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000013390
13391 /* Just in case the BIOS is doing something questionable. */
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020013392 intel_fbc_disable(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080013393
Daniel Vetter6e9f7982014-05-29 23:54:47 +020013394 drm_modeset_lock_all(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080013395 intel_modeset_setup_hw_state(dev, false);
Daniel Vetter6e9f7982014-05-29 23:54:47 +020013396 drm_modeset_unlock_all(dev);
Jesse Barnes46f297f2014-03-07 08:57:48 -080013397
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013398 for_each_intel_crtc(dev, crtc) {
Jesse Barnes46f297f2014-03-07 08:57:48 -080013399 if (!crtc->active)
13400 continue;
13401
Jesse Barnes46f297f2014-03-07 08:57:48 -080013402 /*
Jesse Barnes46f297f2014-03-07 08:57:48 -080013403 * Note that reserving the BIOS fb up front prevents us
13404 * from stuffing other stolen allocations like the ring
13405 * on top. This prevents some ugliness at boot time, and
13406 * can even allow for smooth boot transitions if the BIOS
13407 * fb is large enough for the active pipe configuration.
13408 */
Damien Lespiau5724dbd2015-01-20 12:51:52 +000013409 if (dev_priv->display.get_initial_plane_config) {
13410 dev_priv->display.get_initial_plane_config(crtc,
Jesse Barnes46f297f2014-03-07 08:57:48 -080013411 &crtc->plane_config);
13412 /*
13413 * If the fb is shared between multiple heads, we'll
13414 * just get the first one.
13415 */
Jesse Barnes484b41d2014-03-07 08:57:55 -080013416 intel_find_plane_obj(crtc, &crtc->plane_config);
Jesse Barnes46f297f2014-03-07 08:57:48 -080013417 }
Jesse Barnes46f297f2014-03-07 08:57:48 -080013418 }
Chris Wilson2c7111d2011-03-29 10:40:27 +010013419}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080013420
Daniel Vetter7fad7982012-07-04 17:51:47 +020013421static void intel_enable_pipe_a(struct drm_device *dev)
13422{
13423 struct intel_connector *connector;
13424 struct drm_connector *crt = NULL;
13425 struct intel_load_detect_pipe load_detect_temp;
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030013426 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
Daniel Vetter7fad7982012-07-04 17:51:47 +020013427
13428 /* We can't just switch on the pipe A, we need to set things up with a
13429 * proper mode and output configuration. As a gross hack, enable pipe A
13430 * by enabling the load detect pipe once. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020013431 for_each_intel_connector(dev, connector) {
Daniel Vetter7fad7982012-07-04 17:51:47 +020013432 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
13433 crt = &connector->base;
13434 break;
13435 }
13436 }
13437
13438 if (!crt)
13439 return;
13440
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030013441 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
13442 intel_release_load_detect_pipe(crt, &load_detect_temp);
Daniel Vetter7fad7982012-07-04 17:51:47 +020013443}
13444
Daniel Vetterfa555832012-10-10 23:14:00 +020013445static bool
13446intel_check_plane_mapping(struct intel_crtc *crtc)
13447{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070013448 struct drm_device *dev = crtc->base.dev;
13449 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020013450 u32 reg, val;
13451
Ben Widawsky7eb552a2013-03-13 14:05:41 -070013452 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020013453 return true;
13454
13455 reg = DSPCNTR(!crtc->plane);
13456 val = I915_READ(reg);
13457
13458 if ((val & DISPLAY_PLANE_ENABLE) &&
13459 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
13460 return false;
13461
13462 return true;
13463}
13464
Daniel Vetter24929352012-07-02 20:28:59 +020013465static void intel_sanitize_crtc(struct intel_crtc *crtc)
13466{
13467 struct drm_device *dev = crtc->base.dev;
13468 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020013469 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +020013470
Daniel Vetter24929352012-07-02 20:28:59 +020013471 /* Clear any frame start delays used for debugging left by the BIOS */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013472 reg = PIPECONF(crtc->config->cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +020013473 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
13474
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030013475 /* restore vblank interrupts to correct state */
Daniel Vetter96256042015-02-13 21:03:42 +010013476 drm_crtc_vblank_reset(&crtc->base);
Ville Syrjäläd297e102014-08-06 14:50:01 +030013477 if (crtc->active) {
13478 update_scanline_offset(crtc);
Daniel Vetter96256042015-02-13 21:03:42 +010013479 drm_crtc_vblank_on(&crtc->base);
13480 }
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030013481
Daniel Vetter24929352012-07-02 20:28:59 +020013482 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020013483 * disable the crtc (and hence change the state) if it is wrong. Note
13484 * that gen4+ has a fixed plane -> pipe mapping. */
13485 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020013486 struct intel_connector *connector;
13487 bool plane;
13488
Daniel Vetter24929352012-07-02 20:28:59 +020013489 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
13490 crtc->base.base.id);
13491
13492 /* Pipe has the wrong plane attached and the plane is active.
13493 * Temporarily change the plane mapping and disable everything
13494 * ... */
13495 plane = crtc->plane;
13496 crtc->plane = !plane;
Daniel Vetter9c8958b2014-07-14 19:35:31 +020013497 crtc->primary_enabled = true;
Daniel Vetter24929352012-07-02 20:28:59 +020013498 dev_priv->display.crtc_disable(&crtc->base);
13499 crtc->plane = plane;
13500
13501 /* ... and break all links. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020013502 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020013503 if (connector->encoder->base.crtc != &crtc->base)
13504 continue;
13505
Egbert Eich7f1950f2014-04-25 10:56:22 +020013506 connector->base.dpms = DRM_MODE_DPMS_OFF;
13507 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020013508 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020013509 /* multiple connectors may have the same encoder:
13510 * handle them and break crtc link separately */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020013511 for_each_intel_connector(dev, connector)
Egbert Eich7f1950f2014-04-25 10:56:22 +020013512 if (connector->encoder->base.crtc == &crtc->base) {
13513 connector->encoder->base.crtc = NULL;
13514 connector->encoder->connectors_active = false;
13515 }
Daniel Vetter24929352012-07-02 20:28:59 +020013516
13517 WARN_ON(crtc->active);
Matt Roper83d65732015-02-25 13:12:16 -080013518 crtc->base.state->enable = false;
Daniel Vetter24929352012-07-02 20:28:59 +020013519 crtc->base.enabled = false;
13520 }
Daniel Vetter24929352012-07-02 20:28:59 +020013521
Daniel Vetter7fad7982012-07-04 17:51:47 +020013522 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
13523 crtc->pipe == PIPE_A && !crtc->active) {
13524 /* BIOS forgot to enable pipe A, this mostly happens after
13525 * resume. Force-enable the pipe to fix this, the update_dpms
13526 * call below we restore the pipe to the right state, but leave
13527 * the required bits on. */
13528 intel_enable_pipe_a(dev);
13529 }
13530
Daniel Vetter24929352012-07-02 20:28:59 +020013531 /* Adjust the state of the output pipe according to whether we
13532 * have active connectors/encoders. */
13533 intel_crtc_update_dpms(&crtc->base);
13534
Matt Roper83d65732015-02-25 13:12:16 -080013535 if (crtc->active != crtc->base.state->enable) {
Daniel Vetter24929352012-07-02 20:28:59 +020013536 struct intel_encoder *encoder;
13537
13538 /* This can happen either due to bugs in the get_hw_state
13539 * functions or because the pipe is force-enabled due to the
13540 * pipe A quirk. */
13541 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
13542 crtc->base.base.id,
Matt Roper83d65732015-02-25 13:12:16 -080013543 crtc->base.state->enable ? "enabled" : "disabled",
Daniel Vetter24929352012-07-02 20:28:59 +020013544 crtc->active ? "enabled" : "disabled");
13545
Matt Roper83d65732015-02-25 13:12:16 -080013546 crtc->base.state->enable = crtc->active;
Daniel Vetter24929352012-07-02 20:28:59 +020013547 crtc->base.enabled = crtc->active;
13548
13549 /* Because we only establish the connector -> encoder ->
13550 * crtc links if something is active, this means the
13551 * crtc is now deactivated. Break the links. connector
13552 * -> encoder links are only establish when things are
13553 * actually up, hence no need to break them. */
13554 WARN_ON(crtc->active);
13555
13556 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
13557 WARN_ON(encoder->connectors_active);
13558 encoder->base.crtc = NULL;
13559 }
13560 }
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020013561
Ville Syrjäläa3ed6aa2014-09-03 14:09:52 +030013562 if (crtc->active || HAS_GMCH_DISPLAY(dev)) {
Daniel Vetter4cc31482014-03-24 00:01:41 +010013563 /*
13564 * We start out with underrun reporting disabled to avoid races.
13565 * For correct bookkeeping mark this on active crtcs.
13566 *
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020013567 * Also on gmch platforms we dont have any hardware bits to
13568 * disable the underrun reporting. Which means we need to start
13569 * out with underrun reporting disabled also on inactive pipes,
13570 * since otherwise we'll complain about the garbage we read when
13571 * e.g. coming up after runtime pm.
13572 *
Daniel Vetter4cc31482014-03-24 00:01:41 +010013573 * No protection against concurrent access is required - at
13574 * worst a fifo underrun happens which also sets this to false.
13575 */
13576 crtc->cpu_fifo_underrun_disabled = true;
13577 crtc->pch_fifo_underrun_disabled = true;
13578 }
Daniel Vetter24929352012-07-02 20:28:59 +020013579}
13580
13581static void intel_sanitize_encoder(struct intel_encoder *encoder)
13582{
13583 struct intel_connector *connector;
13584 struct drm_device *dev = encoder->base.dev;
13585
13586 /* We need to check both for a crtc link (meaning that the
13587 * encoder is active and trying to read from a pipe) and the
13588 * pipe itself being active. */
13589 bool has_active_crtc = encoder->base.crtc &&
13590 to_intel_crtc(encoder->base.crtc)->active;
13591
13592 if (encoder->connectors_active && !has_active_crtc) {
13593 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
13594 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030013595 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020013596
13597 /* Connector is active, but has no active pipe. This is
13598 * fallout from our resume register restoring. Disable
13599 * the encoder manually again. */
13600 if (encoder->base.crtc) {
13601 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
13602 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030013603 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020013604 encoder->disable(encoder);
Ville Syrjäläa62d1492014-06-28 02:04:01 +030013605 if (encoder->post_disable)
13606 encoder->post_disable(encoder);
Daniel Vetter24929352012-07-02 20:28:59 +020013607 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020013608 encoder->base.crtc = NULL;
13609 encoder->connectors_active = false;
Daniel Vetter24929352012-07-02 20:28:59 +020013610
13611 /* Inconsistent output/port/pipe state happens presumably due to
13612 * a bug in one of the get_hw_state functions. Or someplace else
13613 * in our code, like the register restore mess on resume. Clamp
13614 * things to off as a safer default. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020013615 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020013616 if (connector->encoder != encoder)
13617 continue;
Egbert Eich7f1950f2014-04-25 10:56:22 +020013618 connector->base.dpms = DRM_MODE_DPMS_OFF;
13619 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020013620 }
13621 }
13622 /* Enabled encoders without active connectors will be fixed in
13623 * the crtc fixup. */
13624}
13625
Imre Deak04098752014-02-18 00:02:16 +020013626void i915_redisable_vga_power_on(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013627{
13628 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020013629 u32 vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013630
Imre Deak04098752014-02-18 00:02:16 +020013631 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
13632 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
13633 i915_disable_vga(dev);
13634 }
13635}
13636
13637void i915_redisable_vga(struct drm_device *dev)
13638{
13639 struct drm_i915_private *dev_priv = dev->dev_private;
13640
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030013641 /* This function can be called both from intel_modeset_setup_hw_state or
13642 * at a very early point in our resume sequence, where the power well
13643 * structures are not yet restored. Since this function is at a very
13644 * paranoid "someone might have enabled VGA while we were not looking"
13645 * level, just check if the power well is enabled instead of trying to
13646 * follow the "don't touch the power well if we don't need it" policy
13647 * the rest of the driver uses. */
Daniel Vetterf458ebb2014-09-30 10:56:39 +020013648 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_VGA))
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030013649 return;
13650
Imre Deak04098752014-02-18 00:02:16 +020013651 i915_redisable_vga_power_on(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013652}
13653
Ville Syrjälä98ec7732014-04-30 17:43:01 +030013654static bool primary_get_hw_state(struct intel_crtc *crtc)
13655{
13656 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
13657
13658 if (!crtc->active)
13659 return false;
13660
13661 return I915_READ(DSPCNTR(crtc->plane)) & DISPLAY_PLANE_ENABLE;
13662}
13663
Daniel Vetter30e984d2013-06-05 13:34:17 +020013664static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020013665{
13666 struct drm_i915_private *dev_priv = dev->dev_private;
13667 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020013668 struct intel_crtc *crtc;
13669 struct intel_encoder *encoder;
13670 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020013671 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020013672
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013673 for_each_intel_crtc(dev, crtc) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013674 memset(crtc->config, 0, sizeof(*crtc->config));
Daniel Vetter3b117c82013-04-17 20:15:07 +020013675
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013676 crtc->config->quirks |= PIPE_CONFIG_QUIRK_INHERITED_MODE;
Daniel Vetter99535992014-04-13 12:00:33 +020013677
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010013678 crtc->active = dev_priv->display.get_pipe_config(crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013679 crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020013680
Matt Roper83d65732015-02-25 13:12:16 -080013681 crtc->base.state->enable = crtc->active;
Daniel Vetter24929352012-07-02 20:28:59 +020013682 crtc->base.enabled = crtc->active;
Ville Syrjälä98ec7732014-04-30 17:43:01 +030013683 crtc->primary_enabled = primary_get_hw_state(crtc);
Daniel Vetter24929352012-07-02 20:28:59 +020013684
13685 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
13686 crtc->base.base.id,
13687 crtc->active ? "enabled" : "disabled");
13688 }
13689
Daniel Vetter53589012013-06-05 13:34:16 +020013690 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13691 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13692
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013693 pll->on = pll->get_hw_state(dev_priv, pll,
13694 &pll->config.hw_state);
Daniel Vetter53589012013-06-05 13:34:16 +020013695 pll->active = 0;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013696 pll->config.crtc_mask = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013697 for_each_intel_crtc(dev, crtc) {
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020013698 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll) {
Daniel Vetter53589012013-06-05 13:34:16 +020013699 pll->active++;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013700 pll->config.crtc_mask |= 1 << crtc->pipe;
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020013701 }
Daniel Vetter53589012013-06-05 13:34:16 +020013702 }
Daniel Vetter53589012013-06-05 13:34:16 +020013703
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020013704 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013705 pll->name, pll->config.crtc_mask, pll->on);
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030013706
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013707 if (pll->config.crtc_mask)
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030013708 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
Daniel Vetter53589012013-06-05 13:34:16 +020013709 }
13710
Damien Lespiaub2784e12014-08-05 11:29:37 +010013711 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020013712 pipe = 0;
13713
13714 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -070013715 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
13716 encoder->base.crtc = &crtc->base;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013717 encoder->get_config(encoder, crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020013718 } else {
13719 encoder->base.crtc = NULL;
13720 }
13721
13722 encoder->connectors_active = false;
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010013723 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
Daniel Vetter24929352012-07-02 20:28:59 +020013724 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030013725 encoder->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020013726 encoder->base.crtc ? "enabled" : "disabled",
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010013727 pipe_name(pipe));
Daniel Vetter24929352012-07-02 20:28:59 +020013728 }
13729
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020013730 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020013731 if (connector->get_hw_state(connector)) {
13732 connector->base.dpms = DRM_MODE_DPMS_ON;
13733 connector->encoder->connectors_active = true;
13734 connector->base.encoder = &connector->encoder->base;
13735 } else {
13736 connector->base.dpms = DRM_MODE_DPMS_OFF;
13737 connector->base.encoder = NULL;
13738 }
13739 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
13740 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030013741 connector->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020013742 connector->base.encoder ? "enabled" : "disabled");
13743 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020013744}
13745
13746/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
13747 * and i915 state tracking structures. */
13748void intel_modeset_setup_hw_state(struct drm_device *dev,
13749 bool force_restore)
13750{
13751 struct drm_i915_private *dev_priv = dev->dev_private;
13752 enum pipe pipe;
Daniel Vetter30e984d2013-06-05 13:34:17 +020013753 struct intel_crtc *crtc;
13754 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020013755 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020013756
13757 intel_modeset_readout_hw_state(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020013758
Jesse Barnesbabea612013-06-26 18:57:38 +030013759 /*
13760 * Now that we have the config, copy it to each CRTC struct
13761 * Note that this could go away if we move to using crtc_config
13762 * checking everywhere.
13763 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013764 for_each_intel_crtc(dev, crtc) {
Jani Nikulad330a952014-01-21 11:24:25 +020013765 if (crtc->active && i915.fastboot) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013766 intel_mode_from_pipe_config(&crtc->base.mode,
13767 crtc->config);
Jesse Barnesbabea612013-06-26 18:57:38 +030013768 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
13769 crtc->base.base.id);
13770 drm_mode_debug_printmodeline(&crtc->base.mode);
13771 }
13772 }
13773
Daniel Vetter24929352012-07-02 20:28:59 +020013774 /* HW state is read out, now we need to sanitize this mess. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010013775 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020013776 intel_sanitize_encoder(encoder);
13777 }
13778
Damien Lespiau055e3932014-08-18 13:49:10 +010013779 for_each_pipe(dev_priv, pipe) {
Daniel Vetter24929352012-07-02 20:28:59 +020013780 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
13781 intel_sanitize_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013782 intel_dump_pipe_config(crtc, crtc->config,
13783 "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020013784 }
Daniel Vetter9a935852012-07-05 22:34:27 +020013785
Daniel Vetter35c95372013-07-17 06:55:04 +020013786 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13787 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13788
13789 if (!pll->on || pll->active)
13790 continue;
13791
13792 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
13793
13794 pll->disable(dev_priv, pll);
13795 pll->on = false;
13796 }
13797
Pradeep Bhat30789992014-11-04 17:06:45 +000013798 if (IS_GEN9(dev))
13799 skl_wm_get_hw_state(dev);
13800 else if (HAS_PCH_SPLIT(dev))
Ville Syrjälä243e6a42013-10-14 14:55:24 +030013801 ilk_wm_get_hw_state(dev);
13802
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010013803 if (force_restore) {
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030013804 i915_redisable_vga(dev);
13805
Daniel Vetterf30da182013-04-11 20:22:50 +020013806 /*
13807 * We need to use raw interfaces for restoring state to avoid
13808 * checking (bogus) intermediate states.
13809 */
Damien Lespiau055e3932014-08-18 13:49:10 +010013810 for_each_pipe(dev_priv, pipe) {
Jesse Barnesb5644d02013-03-26 13:25:27 -070013811 struct drm_crtc *crtc =
13812 dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vetterf30da182013-04-11 20:22:50 +020013813
Jesse Barnes7f27126e2014-11-05 14:26:06 -080013814 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
13815 crtc->primary->fb);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010013816 }
13817 } else {
13818 intel_modeset_update_staged_output_state(dev);
13819 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013820
13821 intel_modeset_check_state(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +010013822}
13823
13824void intel_modeset_gem_init(struct drm_device *dev)
13825{
Jesse Barnes92122782014-10-09 12:57:42 -070013826 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes484b41d2014-03-07 08:57:55 -080013827 struct drm_crtc *c;
Matt Roper2ff8fde2014-07-08 07:50:07 -070013828 struct drm_i915_gem_object *obj;
Jesse Barnes484b41d2014-03-07 08:57:55 -080013829
Imre Deakae484342014-03-31 15:10:44 +030013830 mutex_lock(&dev->struct_mutex);
13831 intel_init_gt_powersave(dev);
13832 mutex_unlock(&dev->struct_mutex);
13833
Jesse Barnes92122782014-10-09 12:57:42 -070013834 /*
13835 * There may be no VBT; and if the BIOS enabled SSC we can
13836 * just keep using it to avoid unnecessary flicker. Whereas if the
13837 * BIOS isn't using it, don't assume it will work even if the VBT
13838 * indicates as much.
13839 */
13840 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
13841 dev_priv->vbt.lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
13842 DREF_SSC1_ENABLE);
13843
Chris Wilson1833b132012-05-09 11:56:28 +010013844 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020013845
13846 intel_setup_overlay(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -080013847
13848 /*
13849 * Make sure any fbs we allocated at startup are properly
13850 * pinned & fenced. When we do the allocation it's too early
13851 * for this.
13852 */
13853 mutex_lock(&dev->struct_mutex);
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010013854 for_each_crtc(dev, c) {
Matt Roper2ff8fde2014-07-08 07:50:07 -070013855 obj = intel_fb_obj(c->primary->fb);
13856 if (obj == NULL)
Jesse Barnes484b41d2014-03-07 08:57:55 -080013857 continue;
13858
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +000013859 if (intel_pin_and_fence_fb_obj(c->primary,
13860 c->primary->fb,
13861 NULL)) {
Jesse Barnes484b41d2014-03-07 08:57:55 -080013862 DRM_ERROR("failed to pin boot fb on pipe %d\n",
13863 to_intel_crtc(c)->pipe);
Dave Airlie66e514c2014-04-03 07:51:54 +100013864 drm_framebuffer_unreference(c->primary->fb);
13865 c->primary->fb = NULL;
Matt Roperafd65eb2015-02-03 13:10:04 -080013866 update_state_fb(c->primary);
Jesse Barnes484b41d2014-03-07 08:57:55 -080013867 }
13868 }
13869 mutex_unlock(&dev->struct_mutex);
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020013870
13871 intel_backlight_register(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080013872}
13873
Imre Deak4932e2c2014-02-11 17:12:48 +020013874void intel_connector_unregister(struct intel_connector *intel_connector)
13875{
13876 struct drm_connector *connector = &intel_connector->base;
13877
13878 intel_panel_destroy_backlight(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +010013879 drm_connector_unregister(connector);
Imre Deak4932e2c2014-02-11 17:12:48 +020013880}
13881
Jesse Barnes79e53942008-11-07 14:24:08 -080013882void intel_modeset_cleanup(struct drm_device *dev)
13883{
Jesse Barnes652c3932009-08-17 13:31:43 -070013884 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid9255d52013-09-26 20:05:59 -030013885 struct drm_connector *connector;
Jesse Barnes652c3932009-08-17 13:31:43 -070013886
Imre Deak2eb52522014-11-19 15:30:05 +020013887 intel_disable_gt_powersave(dev);
13888
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020013889 intel_backlight_unregister(dev);
13890
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013891 /*
13892 * Interrupts and polling as the first thing to avoid creating havoc.
Imre Deak2eb52522014-11-19 15:30:05 +020013893 * Too much stuff here (turning of connectors, ...) would
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013894 * experience fancy races otherwise.
13895 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +020013896 intel_irq_uninstall(dev_priv);
Jesse Barneseb21b922014-06-20 11:57:33 -070013897
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013898 /*
13899 * Due to the hpd irq storm handling the hotplug work can re-arm the
13900 * poll handlers. Hence disable polling after hpd handling is shut down.
13901 */
Keith Packardf87ea762010-10-03 19:36:26 -070013902 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013903
Jesse Barnes652c3932009-08-17 13:31:43 -070013904 mutex_lock(&dev->struct_mutex);
13905
Jesse Barnes723bfd72010-10-07 16:01:13 -070013906 intel_unregister_dsm_handler();
13907
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020013908 intel_fbc_disable(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070013909
Kristian Høgsberg69341a52009-11-11 12:19:17 -050013910 mutex_unlock(&dev->struct_mutex);
13911
Chris Wilson1630fe72011-07-08 12:22:42 +010013912 /* flush any delayed tasks or pending work */
13913 flush_scheduled_work();
13914
Jani Nikuladb31af1d2013-11-08 16:48:53 +020013915 /* destroy the backlight and sysfs files before encoders/connectors */
13916 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Imre Deak4932e2c2014-02-11 17:12:48 +020013917 struct intel_connector *intel_connector;
13918
13919 intel_connector = to_intel_connector(connector);
13920 intel_connector->unregister(intel_connector);
Jani Nikuladb31af1d2013-11-08 16:48:53 +020013921 }
Paulo Zanonid9255d52013-09-26 20:05:59 -030013922
Jesse Barnes79e53942008-11-07 14:24:08 -080013923 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010013924
13925 intel_cleanup_overlay(dev);
Imre Deakae484342014-03-31 15:10:44 +030013926
13927 mutex_lock(&dev->struct_mutex);
13928 intel_cleanup_gt_powersave(dev);
13929 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080013930}
13931
Dave Airlie28d52042009-09-21 14:33:58 +100013932/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +080013933 * Return which encoder is currently attached for connector.
13934 */
Chris Wilsondf0e9242010-09-09 16:20:55 +010013935struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -080013936{
Chris Wilsondf0e9242010-09-09 16:20:55 +010013937 return &intel_attached_encoder(connector)->base;
13938}
Jesse Barnes79e53942008-11-07 14:24:08 -080013939
Chris Wilsondf0e9242010-09-09 16:20:55 +010013940void intel_connector_attach_encoder(struct intel_connector *connector,
13941 struct intel_encoder *encoder)
13942{
13943 connector->encoder = encoder;
13944 drm_mode_connector_attach_encoder(&connector->base,
13945 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080013946}
Dave Airlie28d52042009-09-21 14:33:58 +100013947
13948/*
13949 * set vga decode state - true == enable VGA decode
13950 */
13951int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
13952{
13953 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona885b3c2013-12-17 14:34:50 +000013954 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
Dave Airlie28d52042009-09-21 14:33:58 +100013955 u16 gmch_ctrl;
13956
Chris Wilson75fa0412014-02-07 18:37:02 -020013957 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
13958 DRM_ERROR("failed to read control word\n");
13959 return -EIO;
13960 }
13961
Chris Wilsonc0cc8a52014-02-07 18:37:03 -020013962 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
13963 return 0;
13964
Dave Airlie28d52042009-09-21 14:33:58 +100013965 if (state)
13966 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
13967 else
13968 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
Chris Wilson75fa0412014-02-07 18:37:02 -020013969
13970 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
13971 DRM_ERROR("failed to write control word\n");
13972 return -EIO;
13973 }
13974
Dave Airlie28d52042009-09-21 14:33:58 +100013975 return 0;
13976}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013977
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013978struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030013979
13980 u32 power_well_driver;
13981
Chris Wilson63b66e52013-08-08 15:12:06 +020013982 int num_transcoders;
13983
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013984 struct intel_cursor_error_state {
13985 u32 control;
13986 u32 position;
13987 u32 base;
13988 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010013989 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013990
13991 struct intel_pipe_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020013992 bool power_domain_on;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013993 u32 source;
Imre Deakf301b1e2014-04-18 15:55:04 +030013994 u32 stat;
Damien Lespiau52331302012-08-15 19:23:25 +010013995 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013996
13997 struct intel_plane_error_state {
13998 u32 control;
13999 u32 stride;
14000 u32 size;
14001 u32 pos;
14002 u32 addr;
14003 u32 surface;
14004 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010014005 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020014006
14007 struct intel_transcoder_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020014008 bool power_domain_on;
Chris Wilson63b66e52013-08-08 15:12:06 +020014009 enum transcoder cpu_transcoder;
14010
14011 u32 conf;
14012
14013 u32 htotal;
14014 u32 hblank;
14015 u32 hsync;
14016 u32 vtotal;
14017 u32 vblank;
14018 u32 vsync;
14019 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014020};
14021
14022struct intel_display_error_state *
14023intel_display_capture_error_state(struct drm_device *dev)
14024{
Jani Nikulafbee40d2014-03-31 14:27:18 +030014025 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014026 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020014027 int transcoders[] = {
14028 TRANSCODER_A,
14029 TRANSCODER_B,
14030 TRANSCODER_C,
14031 TRANSCODER_EDP,
14032 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014033 int i;
14034
Chris Wilson63b66e52013-08-08 15:12:06 +020014035 if (INTEL_INFO(dev)->num_pipes == 0)
14036 return NULL;
14037
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020014038 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014039 if (error == NULL)
14040 return NULL;
14041
Imre Deak190be112013-11-25 17:15:31 +020014042 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030014043 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
14044
Damien Lespiau055e3932014-08-18 13:49:10 +010014045 for_each_pipe(dev_priv, i) {
Imre Deakddf9c532013-11-27 22:02:02 +020014046 error->pipe[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020014047 __intel_display_power_is_enabled(dev_priv,
14048 POWER_DOMAIN_PIPE(i));
Imre Deakddf9c532013-11-27 22:02:02 +020014049 if (!error->pipe[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020014050 continue;
14051
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030014052 error->cursor[i].control = I915_READ(CURCNTR(i));
14053 error->cursor[i].position = I915_READ(CURPOS(i));
14054 error->cursor[i].base = I915_READ(CURBASE(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014055
14056 error->plane[i].control = I915_READ(DSPCNTR(i));
14057 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030014058 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030014059 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030014060 error->plane[i].pos = I915_READ(DSPPOS(i));
14061 }
Paulo Zanonica291362013-03-06 20:03:14 -030014062 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
14063 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014064 if (INTEL_INFO(dev)->gen >= 4) {
14065 error->plane[i].surface = I915_READ(DSPSURF(i));
14066 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
14067 }
14068
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014069 error->pipe[i].source = I915_READ(PIPESRC(i));
Imre Deakf301b1e2014-04-18 15:55:04 +030014070
Sonika Jindal3abfce72014-07-21 15:23:43 +053014071 if (HAS_GMCH_DISPLAY(dev))
Imre Deakf301b1e2014-04-18 15:55:04 +030014072 error->pipe[i].stat = I915_READ(PIPESTAT(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020014073 }
14074
14075 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
14076 if (HAS_DDI(dev_priv->dev))
14077 error->num_transcoders++; /* Account for eDP. */
14078
14079 for (i = 0; i < error->num_transcoders; i++) {
14080 enum transcoder cpu_transcoder = transcoders[i];
14081
Imre Deakddf9c532013-11-27 22:02:02 +020014082 error->transcoder[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020014083 __intel_display_power_is_enabled(dev_priv,
Paulo Zanoni38cc1da2013-12-20 15:09:41 -020014084 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020014085 if (!error->transcoder[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020014086 continue;
14087
Chris Wilson63b66e52013-08-08 15:12:06 +020014088 error->transcoder[i].cpu_transcoder = cpu_transcoder;
14089
14090 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
14091 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
14092 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
14093 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
14094 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
14095 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
14096 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014097 }
14098
14099 return error;
14100}
14101
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014102#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
14103
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014104void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014105intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014106 struct drm_device *dev,
14107 struct intel_display_error_state *error)
14108{
Damien Lespiau055e3932014-08-18 13:49:10 +010014109 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014110 int i;
14111
Chris Wilson63b66e52013-08-08 15:12:06 +020014112 if (!error)
14113 return;
14114
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014115 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Imre Deak190be112013-11-25 17:15:31 +020014116 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014117 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030014118 error->power_well_driver);
Damien Lespiau055e3932014-08-18 13:49:10 +010014119 for_each_pipe(dev_priv, i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014120 err_printf(m, "Pipe [%d]:\n", i);
Imre Deakddf9c532013-11-27 22:02:02 +020014121 err_printf(m, " Power: %s\n",
14122 error->pipe[i].power_domain_on ? "on" : "off");
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014123 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Imre Deakf301b1e2014-04-18 15:55:04 +030014124 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014125
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014126 err_printf(m, "Plane [%d]:\n", i);
14127 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
14128 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030014129 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014130 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
14131 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030014132 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030014133 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014134 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014135 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014136 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
14137 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014138 }
14139
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014140 err_printf(m, "Cursor [%d]:\n", i);
14141 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
14142 err_printf(m, " POS: %08x\n", error->cursor[i].position);
14143 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014144 }
Chris Wilson63b66e52013-08-08 15:12:06 +020014145
14146 for (i = 0; i < error->num_transcoders; i++) {
Chris Wilson1cf84bb2013-10-21 09:10:33 +010014147 err_printf(m, "CPU transcoder: %c\n",
Chris Wilson63b66e52013-08-08 15:12:06 +020014148 transcoder_name(error->transcoder[i].cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020014149 err_printf(m, " Power: %s\n",
14150 error->transcoder[i].power_domain_on ? "on" : "off");
Chris Wilson63b66e52013-08-08 15:12:06 +020014151 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
14152 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
14153 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
14154 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
14155 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
14156 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
14157 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
14158 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014159}
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014160
14161void intel_modeset_preclose(struct drm_device *dev, struct drm_file *file)
14162{
14163 struct intel_crtc *crtc;
14164
14165 for_each_intel_crtc(dev, crtc) {
14166 struct intel_unpin_work *work;
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014167
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020014168 spin_lock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014169
14170 work = crtc->unpin_work;
14171
14172 if (work && work->event &&
14173 work->event->base.file_priv == file) {
14174 kfree(work->event);
14175 work->event = NULL;
14176 }
14177
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020014178 spin_unlock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014179 }
14180}