blob: 70c95d363aa968176effaeb2505852294d01de1c [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.
Matt Roperc3d1f432015-03-09 10:19:23 -0700899 *
900 * FIXME: The intel_crtc->active here should be switched to
901 * crtc->state->active once we have proper CRTC states wired up
902 * for atomic.
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300903 */
Matt Roperc3d1f432015-03-09 10:19:23 -0700904 return intel_crtc->active && crtc->primary->state->fb &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200905 intel_crtc->config->base.adjusted_mode.crtc_clock;
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300906}
907
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200908enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
909 enum pipe pipe)
910{
911 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
912 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
913
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200914 return intel_crtc->config->cpu_transcoder;
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200915}
916
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +0300917static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
918{
919 struct drm_i915_private *dev_priv = dev->dev_private;
920 u32 reg = PIPEDSL(pipe);
921 u32 line1, line2;
922 u32 line_mask;
923
924 if (IS_GEN2(dev))
925 line_mask = DSL_LINEMASK_GEN2;
926 else
927 line_mask = DSL_LINEMASK_GEN3;
928
929 line1 = I915_READ(reg) & line_mask;
930 mdelay(5);
931 line2 = I915_READ(reg) & line_mask;
932
933 return line1 == line2;
934}
935
Keith Packardab7ad7f2010-10-03 00:33:06 -0700936/*
937 * intel_wait_for_pipe_off - wait for pipe to turn off
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300938 * @crtc: crtc whose pipe to wait for
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700939 *
940 * After disabling a pipe, we can't wait for vblank in the usual way,
941 * spinning on the vblank interrupt status bit, since we won't actually
942 * see an interrupt when the pipe is disabled.
943 *
Keith Packardab7ad7f2010-10-03 00:33:06 -0700944 * On Gen4 and above:
945 * wait for the pipe register state bit to turn off
946 *
947 * Otherwise:
948 * wait for the display line value to settle (it usually
949 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +0100950 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700951 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300952static void intel_wait_for_pipe_off(struct intel_crtc *crtc)
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700953{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300954 struct drm_device *dev = crtc->base.dev;
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700955 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200956 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300957 enum pipe pipe = crtc->pipe;
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700958
Keith Packardab7ad7f2010-10-03 00:33:06 -0700959 if (INTEL_INFO(dev)->gen >= 4) {
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200960 int reg = PIPECONF(cpu_transcoder);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700961
Keith Packardab7ad7f2010-10-03 00:33:06 -0700962 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100963 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
964 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 } else {
Keith Packardab7ad7f2010-10-03 00:33:06 -0700967 /* Wait for the display line to settle */
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +0300968 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
Daniel Vetter284637d2012-07-09 09:51:57 +0200969 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700970 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800971}
972
Damien Lespiaub0ea7d32012-12-13 16:09:00 +0000973/*
974 * ibx_digital_port_connected - is the specified port connected?
975 * @dev_priv: i915 private structure
976 * @port: the port to test
977 *
978 * Returns true if @port is connected, false otherwise.
979 */
980bool ibx_digital_port_connected(struct drm_i915_private *dev_priv,
981 struct intel_digital_port *port)
982{
983 u32 bit;
984
Damien Lespiauc36346e2012-12-13 16:09:03 +0000985 if (HAS_PCH_IBX(dev_priv->dev)) {
Robin Schroereba905b2014-05-18 02:24:50 +0200986 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +0000987 case PORT_B:
988 bit = SDE_PORTB_HOTPLUG;
989 break;
990 case PORT_C:
991 bit = SDE_PORTC_HOTPLUG;
992 break;
993 case PORT_D:
994 bit = SDE_PORTD_HOTPLUG;
995 break;
996 default:
997 return true;
998 }
999 } else {
Robin Schroereba905b2014-05-18 02:24:50 +02001000 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +00001001 case PORT_B:
1002 bit = SDE_PORTB_HOTPLUG_CPT;
1003 break;
1004 case PORT_C:
1005 bit = SDE_PORTC_HOTPLUG_CPT;
1006 break;
1007 case PORT_D:
1008 bit = SDE_PORTD_HOTPLUG_CPT;
1009 break;
1010 default:
1011 return true;
1012 }
Damien Lespiaub0ea7d32012-12-13 16:09:00 +00001013 }
1014
1015 return I915_READ(SDEISR) & bit;
1016}
1017
Jesse Barnesb24e7172011-01-04 15:09:30 -08001018static const char *state_string(bool enabled)
1019{
1020 return enabled ? "on" : "off";
1021}
1022
1023/* Only for pre-ILK configs */
Daniel Vetter55607e82013-06-16 21:42:39 +02001024void assert_pll(struct drm_i915_private *dev_priv,
1025 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001026{
1027 int reg;
1028 u32 val;
1029 bool cur_state;
1030
1031 reg = DPLL(pipe);
1032 val = I915_READ(reg);
1033 cur_state = !!(val & DPLL_VCO_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001034 I915_STATE_WARN(cur_state != state,
Jesse Barnesb24e7172011-01-04 15:09:30 -08001035 "PLL state assertion failure (expected %s, current %s)\n",
1036 state_string(state), state_string(cur_state));
1037}
Jesse Barnesb24e7172011-01-04 15:09:30 -08001038
Jani Nikula23538ef2013-08-27 15:12:22 +03001039/* XXX: the dsi pll is shared between MIPI DSI ports */
1040static void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
1041{
1042 u32 val;
1043 bool cur_state;
1044
1045 mutex_lock(&dev_priv->dpio_lock);
1046 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
1047 mutex_unlock(&dev_priv->dpio_lock);
1048
1049 cur_state = val & DSI_PLL_VCO_EN;
Rob Clarke2c719b2014-12-15 13:56:32 -05001050 I915_STATE_WARN(cur_state != state,
Jani Nikula23538ef2013-08-27 15:12:22 +03001051 "DSI PLL state assertion failure (expected %s, current %s)\n",
1052 state_string(state), state_string(cur_state));
1053}
1054#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1055#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1056
Daniel Vetter55607e82013-06-16 21:42:39 +02001057struct intel_shared_dpll *
Daniel Vettere2b78262013-06-07 23:10:03 +02001058intel_crtc_to_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes040484a2011-01-03 12:14:26 -08001059{
Daniel Vettere2b78262013-06-07 23:10:03 +02001060 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1061
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001062 if (crtc->config->shared_dpll < 0)
Daniel Vettere2b78262013-06-07 23:10:03 +02001063 return NULL;
1064
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001065 return &dev_priv->shared_dplls[crtc->config->shared_dpll];
Daniel Vettere2b78262013-06-07 23:10:03 +02001066}
1067
Jesse Barnesb24e7172011-01-04 15:09:30 -08001068/* For ILK+ */
Daniel Vetter55607e82013-06-16 21:42:39 +02001069void assert_shared_dpll(struct drm_i915_private *dev_priv,
1070 struct intel_shared_dpll *pll,
1071 bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001072{
Jesse Barnes040484a2011-01-03 12:14:26 -08001073 bool cur_state;
Daniel Vetter53589012013-06-05 13:34:16 +02001074 struct intel_dpll_hw_state hw_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001075
Chris Wilson92b27b02012-05-20 18:10:50 +01001076 if (WARN (!pll,
Daniel Vetter46edb022013-06-05 13:34:12 +02001077 "asserting DPLL %s with no DPLL\n", state_string(state)))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001078 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001079
Daniel Vetter53589012013-06-05 13:34:16 +02001080 cur_state = pll->get_hw_state(dev_priv, pll, &hw_state);
Rob Clarke2c719b2014-12-15 13:56:32 -05001081 I915_STATE_WARN(cur_state != state,
Daniel Vetter53589012013-06-05 13:34:16 +02001082 "%s assertion failure (expected %s, current %s)\n",
1083 pll->name, state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001084}
Jesse Barnes040484a2011-01-03 12:14:26 -08001085
1086static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1087 enum pipe pipe, bool state)
1088{
1089 int reg;
1090 u32 val;
1091 bool cur_state;
Paulo Zanoniad80a812012-10-24 16:06:19 -02001092 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1093 pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001094
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001095 if (HAS_DDI(dev_priv->dev)) {
1096 /* DDI does not have a specific FDI_TX register */
Paulo Zanoniad80a812012-10-24 16:06:19 -02001097 reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001098 val = I915_READ(reg);
Paulo Zanoniad80a812012-10-24 16:06:19 -02001099 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001100 } else {
1101 reg = FDI_TX_CTL(pipe);
1102 val = I915_READ(reg);
1103 cur_state = !!(val & FDI_TX_ENABLE);
1104 }
Rob Clarke2c719b2014-12-15 13:56:32 -05001105 I915_STATE_WARN(cur_state != state,
Jesse Barnes040484a2011-01-03 12:14:26 -08001106 "FDI TX state assertion failure (expected %s, current %s)\n",
1107 state_string(state), state_string(cur_state));
1108}
1109#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1110#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1111
1112static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1113 enum pipe pipe, bool state)
1114{
1115 int reg;
1116 u32 val;
1117 bool cur_state;
1118
Paulo Zanonid63fa0d2012-11-20 13:27:35 -02001119 reg = FDI_RX_CTL(pipe);
1120 val = I915_READ(reg);
1121 cur_state = !!(val & FDI_RX_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001122 I915_STATE_WARN(cur_state != state,
Jesse Barnes040484a2011-01-03 12:14:26 -08001123 "FDI RX state assertion failure (expected %s, current %s)\n",
1124 state_string(state), state_string(cur_state));
1125}
1126#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1127#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1128
1129static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1130 enum pipe pipe)
1131{
1132 int reg;
1133 u32 val;
1134
1135 /* ILK FDI PLL is always enabled */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001136 if (INTEL_INFO(dev_priv->dev)->gen == 5)
Jesse Barnes040484a2011-01-03 12:14:26 -08001137 return;
1138
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001139 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001140 if (HAS_DDI(dev_priv->dev))
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001141 return;
1142
Jesse Barnes040484a2011-01-03 12:14:26 -08001143 reg = FDI_TX_CTL(pipe);
1144 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001145 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 -08001146}
1147
Daniel Vetter55607e82013-06-16 21:42:39 +02001148void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1149 enum pipe pipe, bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001150{
1151 int reg;
1152 u32 val;
Daniel Vetter55607e82013-06-16 21:42:39 +02001153 bool cur_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001154
1155 reg = FDI_RX_CTL(pipe);
1156 val = I915_READ(reg);
Daniel Vetter55607e82013-06-16 21:42:39 +02001157 cur_state = !!(val & FDI_RX_PLL_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001158 I915_STATE_WARN(cur_state != state,
Daniel Vetter55607e82013-06-16 21:42:39 +02001159 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1160 state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001161}
1162
Daniel Vetterb680c372014-09-19 18:27:27 +02001163void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1164 enum pipe pipe)
Jesse Barnesea0760c2011-01-04 15:09:32 -08001165{
Jani Nikulabedd4db2014-08-22 15:04:13 +03001166 struct drm_device *dev = dev_priv->dev;
1167 int pp_reg;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001168 u32 val;
1169 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001170 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001171
Jani Nikulabedd4db2014-08-22 15:04:13 +03001172 if (WARN_ON(HAS_DDI(dev)))
1173 return;
1174
1175 if (HAS_PCH_SPLIT(dev)) {
1176 u32 port_sel;
1177
Jesse Barnesea0760c2011-01-04 15:09:32 -08001178 pp_reg = PCH_PP_CONTROL;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001179 port_sel = I915_READ(PCH_PP_ON_DELAYS) & PANEL_PORT_SELECT_MASK;
1180
1181 if (port_sel == PANEL_PORT_SELECT_LVDS &&
1182 I915_READ(PCH_LVDS) & LVDS_PIPEB_SELECT)
1183 panel_pipe = PIPE_B;
1184 /* XXX: else fix for eDP */
1185 } else if (IS_VALLEYVIEW(dev)) {
1186 /* presumably write lock depends on pipe, not port select */
1187 pp_reg = VLV_PIPE_PP_CONTROL(pipe);
1188 panel_pipe = pipe;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001189 } else {
1190 pp_reg = PP_CONTROL;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001191 if (I915_READ(LVDS) & LVDS_PIPEB_SELECT)
1192 panel_pipe = PIPE_B;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001193 }
1194
1195 val = I915_READ(pp_reg);
1196 if (!(val & PANEL_POWER_ON) ||
Jani Nikulaec49ba22014-08-21 15:06:25 +03001197 ((val & PANEL_UNLOCK_MASK) == PANEL_UNLOCK_REGS))
Jesse Barnesea0760c2011-01-04 15:09:32 -08001198 locked = false;
1199
Rob Clarke2c719b2014-12-15 13:56:32 -05001200 I915_STATE_WARN(panel_pipe == pipe && locked,
Jesse Barnesea0760c2011-01-04 15:09:32 -08001201 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001202 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001203}
1204
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001205static void assert_cursor(struct drm_i915_private *dev_priv,
1206 enum pipe pipe, bool state)
1207{
1208 struct drm_device *dev = dev_priv->dev;
1209 bool cur_state;
1210
Paulo Zanonid9d82082014-02-27 16:30:56 -03001211 if (IS_845G(dev) || IS_I865G(dev))
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001212 cur_state = I915_READ(_CURACNTR) & CURSOR_ENABLE;
Paulo Zanonid9d82082014-02-27 16:30:56 -03001213 else
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03001214 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001215
Rob Clarke2c719b2014-12-15 13:56:32 -05001216 I915_STATE_WARN(cur_state != state,
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001217 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
1218 pipe_name(pipe), state_string(state), state_string(cur_state));
1219}
1220#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1221#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1222
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001223void assert_pipe(struct drm_i915_private *dev_priv,
1224 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001225{
1226 int reg;
1227 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001228 bool cur_state;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001229 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1230 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001231
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001232 /* if we need the pipe quirk it must be always on */
1233 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1234 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Daniel Vetter8e636782012-01-22 01:36:48 +01001235 state = true;
1236
Daniel Vetterf458ebb2014-09-30 10:56:39 +02001237 if (!intel_display_power_is_enabled(dev_priv,
Paulo Zanonib97186f2013-05-03 12:15:36 -03001238 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
Paulo Zanoni69310162013-01-29 16:35:19 -02001239 cur_state = false;
1240 } else {
1241 reg = PIPECONF(cpu_transcoder);
1242 val = I915_READ(reg);
1243 cur_state = !!(val & PIPECONF_ENABLE);
1244 }
1245
Rob Clarke2c719b2014-12-15 13:56:32 -05001246 I915_STATE_WARN(cur_state != state,
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001247 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001248 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001249}
1250
Chris Wilson931872f2012-01-16 23:01:13 +00001251static void assert_plane(struct drm_i915_private *dev_priv,
1252 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001253{
1254 int reg;
1255 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001256 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001257
1258 reg = DSPCNTR(plane);
1259 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001260 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001261 I915_STATE_WARN(cur_state != state,
Chris Wilson931872f2012-01-16 23:01:13 +00001262 "plane %c assertion failure (expected %s, current %s)\n",
1263 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001264}
1265
Chris Wilson931872f2012-01-16 23:01:13 +00001266#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1267#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1268
Jesse Barnesb24e7172011-01-04 15:09:30 -08001269static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1270 enum pipe pipe)
1271{
Ville Syrjälä653e1022013-06-04 13:49:05 +03001272 struct drm_device *dev = dev_priv->dev;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001273 int reg, i;
1274 u32 val;
1275 int cur_pipe;
1276
Ville Syrjälä653e1022013-06-04 13:49:05 +03001277 /* Primary planes are fixed to pipes on gen4+ */
1278 if (INTEL_INFO(dev)->gen >= 4) {
Adam Jackson28c057942011-10-07 14:38:42 -04001279 reg = DSPCNTR(pipe);
1280 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001281 I915_STATE_WARN(val & DISPLAY_PLANE_ENABLE,
Adam Jackson28c057942011-10-07 14:38:42 -04001282 "plane %c assertion failure, should be disabled but not\n",
1283 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001284 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001285 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001286
Jesse Barnesb24e7172011-01-04 15:09:30 -08001287 /* Need to check both planes against the pipe */
Damien Lespiau055e3932014-08-18 13:49:10 +01001288 for_each_pipe(dev_priv, i) {
Jesse Barnesb24e7172011-01-04 15:09:30 -08001289 reg = DSPCNTR(i);
1290 val = I915_READ(reg);
1291 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1292 DISPPLANE_SEL_PIPE_SHIFT;
Rob Clarke2c719b2014-12-15 13:56:32 -05001293 I915_STATE_WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001294 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1295 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001296 }
1297}
1298
Jesse Barnes19332d72013-03-28 09:55:38 -07001299static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1300 enum pipe pipe)
1301{
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001302 struct drm_device *dev = dev_priv->dev;
Damien Lespiau1fe47782014-03-03 17:31:47 +00001303 int reg, sprite;
Jesse Barnes19332d72013-03-28 09:55:38 -07001304 u32 val;
1305
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001306 if (INTEL_INFO(dev)->gen >= 9) {
Damien Lespiau3bdcfc02015-02-28 14:54:09 +00001307 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001308 val = I915_READ(PLANE_CTL(pipe, sprite));
Rob Clarke2c719b2014-12-15 13:56:32 -05001309 I915_STATE_WARN(val & PLANE_CTL_ENABLE,
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001310 "plane %d assertion failure, should be off on pipe %c but is still active\n",
1311 sprite, pipe_name(pipe));
1312 }
1313 } else if (IS_VALLEYVIEW(dev)) {
Damien Lespiau3bdcfc02015-02-28 14:54:09 +00001314 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau1fe47782014-03-03 17:31:47 +00001315 reg = SPCNTR(pipe, sprite);
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001316 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001317 I915_STATE_WARN(val & SP_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001318 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +00001319 sprite_name(pipe, sprite), pipe_name(pipe));
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001320 }
1321 } else if (INTEL_INFO(dev)->gen >= 7) {
1322 reg = SPRCTL(pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07001323 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001324 I915_STATE_WARN(val & SPRITE_ENABLE,
Ville Syrjälä06da8da2013-04-17 17:48:51 +03001325 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001326 plane_name(pipe), pipe_name(pipe));
1327 } else if (INTEL_INFO(dev)->gen >= 5) {
1328 reg = DVSCNTR(pipe);
1329 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001330 I915_STATE_WARN(val & DVS_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001331 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1332 plane_name(pipe), pipe_name(pipe));
Jesse Barnes19332d72013-03-28 09:55:38 -07001333 }
1334}
1335
Ville Syrjälä08c71e52014-08-06 14:49:45 +03001336static void assert_vblank_disabled(struct drm_crtc *crtc)
1337{
Rob Clarke2c719b2014-12-15 13:56:32 -05001338 if (I915_STATE_WARN_ON(drm_crtc_vblank_get(crtc) == 0))
Ville Syrjälä08c71e52014-08-06 14:49:45 +03001339 drm_crtc_vblank_put(crtc);
1340}
1341
Paulo Zanoni89eff4b2014-01-08 11:12:28 -02001342static void ibx_assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
Jesse Barnes92f25842011-01-04 15:09:34 -08001343{
1344 u32 val;
1345 bool enabled;
1346
Rob Clarke2c719b2014-12-15 13:56:32 -05001347 I915_STATE_WARN_ON(!(HAS_PCH_IBX(dev_priv->dev) || HAS_PCH_CPT(dev_priv->dev)));
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001348
Jesse Barnes92f25842011-01-04 15:09:34 -08001349 val = I915_READ(PCH_DREF_CONTROL);
1350 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1351 DREF_SUPERSPREAD_SOURCE_MASK));
Rob Clarke2c719b2014-12-15 13:56:32 -05001352 I915_STATE_WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
Jesse Barnes92f25842011-01-04 15:09:34 -08001353}
1354
Daniel Vetterab9412b2013-05-03 11:49:46 +02001355static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1356 enum pipe pipe)
Jesse Barnes92f25842011-01-04 15:09:34 -08001357{
1358 int reg;
1359 u32 val;
1360 bool enabled;
1361
Daniel Vetterab9412b2013-05-03 11:49:46 +02001362 reg = PCH_TRANSCONF(pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001363 val = I915_READ(reg);
1364 enabled = !!(val & TRANS_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001365 I915_STATE_WARN(enabled,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001366 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1367 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001368}
1369
Keith Packard4e634382011-08-06 10:39:45 -07001370static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1371 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001372{
1373 if ((val & DP_PORT_EN) == 0)
1374 return false;
1375
1376 if (HAS_PCH_CPT(dev_priv->dev)) {
1377 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1378 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1379 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1380 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001381 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1382 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1383 return false;
Keith Packardf0575e92011-07-25 22:12:43 -07001384 } else {
1385 if ((val & DP_PIPE_MASK) != (pipe << 30))
1386 return false;
1387 }
1388 return true;
1389}
1390
Keith Packard1519b992011-08-06 10:35:34 -07001391static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1392 enum pipe pipe, u32 val)
1393{
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001394 if ((val & SDVO_ENABLE) == 0)
Keith Packard1519b992011-08-06 10:35:34 -07001395 return false;
1396
1397 if (HAS_PCH_CPT(dev_priv->dev)) {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001398 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001399 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001400 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1401 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1402 return false;
Keith Packard1519b992011-08-06 10:35:34 -07001403 } else {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001404 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001405 return false;
1406 }
1407 return true;
1408}
1409
1410static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1411 enum pipe pipe, u32 val)
1412{
1413 if ((val & LVDS_PORT_EN) == 0)
1414 return false;
1415
1416 if (HAS_PCH_CPT(dev_priv->dev)) {
1417 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1418 return false;
1419 } else {
1420 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1421 return false;
1422 }
1423 return true;
1424}
1425
1426static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1427 enum pipe pipe, u32 val)
1428{
1429 if ((val & ADPA_DAC_ENABLE) == 0)
1430 return false;
1431 if (HAS_PCH_CPT(dev_priv->dev)) {
1432 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1433 return false;
1434 } else {
1435 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1436 return false;
1437 }
1438 return true;
1439}
1440
Jesse Barnes291906f2011-02-02 12:28:03 -08001441static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001442 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001443{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001444 u32 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001445 I915_STATE_WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001446 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001447 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001448
Rob Clarke2c719b2014-12-15 13:56:32 -05001449 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001450 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001451 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001452}
1453
1454static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1455 enum pipe pipe, int reg)
1456{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001457 u32 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001458 I915_STATE_WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001459 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001460 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001461
Rob Clarke2c719b2014-12-15 13:56:32 -05001462 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001463 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001464 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001465}
1466
1467static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1468 enum pipe pipe)
1469{
1470 int reg;
1471 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001472
Keith Packardf0575e92011-07-25 22:12:43 -07001473 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1474 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1475 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001476
1477 reg = PCH_ADPA;
1478 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001479 I915_STATE_WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001480 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001481 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001482
1483 reg = PCH_LVDS;
1484 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001485 I915_STATE_WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001486 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001487 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001488
Paulo Zanonie2debe92013-02-18 19:00:27 -03001489 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1490 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1491 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
Jesse Barnes291906f2011-02-02 12:28:03 -08001492}
1493
Jesse Barnes40e9cf62013-10-03 11:35:46 -07001494static void intel_init_dpio(struct drm_device *dev)
1495{
1496 struct drm_i915_private *dev_priv = dev->dev_private;
1497
1498 if (!IS_VALLEYVIEW(dev))
1499 return;
1500
Chon Ming Leea09cadd2014-04-09 13:28:14 +03001501 /*
1502 * IOSF_PORT_DPIO is used for VLV x2 PHY (DP/HDMI B and C),
1503 * CHV x1 PHY (DP/HDMI D)
1504 * IOSF_PORT_DPIO_2 is used for CHV x2 PHY (DP/HDMI B and C)
1505 */
1506 if (IS_CHERRYVIEW(dev)) {
1507 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO_2;
1508 DPIO_PHY_IOSF_PORT(DPIO_PHY1) = IOSF_PORT_DPIO;
1509 } else {
1510 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO;
1511 }
Jesse Barnes5382f5f352013-12-16 16:34:24 -08001512}
1513
Ville Syrjäläd288f652014-10-28 13:20:22 +02001514static void vlv_enable_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001515 const struct intel_crtc_state *pipe_config)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001516{
Daniel Vetter426115c2013-07-11 22:13:42 +02001517 struct drm_device *dev = crtc->base.dev;
1518 struct drm_i915_private *dev_priv = dev->dev_private;
1519 int reg = DPLL(crtc->pipe);
Ville Syrjäläd288f652014-10-28 13:20:22 +02001520 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001521
Daniel Vetter426115c2013-07-11 22:13:42 +02001522 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001523
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001524 /* No really, not for ILK+ */
Daniel Vetter87442f72013-06-06 00:52:17 +02001525 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev));
1526
1527 /* PLL is protected by panel, make sure we can write it */
Jani Nikula6a9e7362014-08-22 15:06:35 +03001528 if (IS_MOBILE(dev_priv->dev))
Daniel Vetter426115c2013-07-11 22:13:42 +02001529 assert_panel_unlocked(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001530
Daniel Vetter426115c2013-07-11 22:13:42 +02001531 I915_WRITE(reg, dpll);
1532 POSTING_READ(reg);
1533 udelay(150);
1534
1535 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1536 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1537
Ville Syrjäläd288f652014-10-28 13:20:22 +02001538 I915_WRITE(DPLL_MD(crtc->pipe), pipe_config->dpll_hw_state.dpll_md);
Daniel Vetter426115c2013-07-11 22:13:42 +02001539 POSTING_READ(DPLL_MD(crtc->pipe));
Daniel Vetter87442f72013-06-06 00:52:17 +02001540
1541 /* We do this three times for luck */
Daniel Vetter426115c2013-07-11 22:13:42 +02001542 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001543 POSTING_READ(reg);
1544 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001545 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001546 POSTING_READ(reg);
1547 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001548 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001549 POSTING_READ(reg);
1550 udelay(150); /* wait for warmup */
1551}
1552
Ville Syrjäläd288f652014-10-28 13:20:22 +02001553static void chv_enable_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001554 const struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001555{
1556 struct drm_device *dev = crtc->base.dev;
1557 struct drm_i915_private *dev_priv = dev->dev_private;
1558 int pipe = crtc->pipe;
1559 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001560 u32 tmp;
1561
1562 assert_pipe_disabled(dev_priv, crtc->pipe);
1563
1564 BUG_ON(!IS_CHERRYVIEW(dev_priv->dev));
1565
1566 mutex_lock(&dev_priv->dpio_lock);
1567
1568 /* Enable back the 10bit clock to display controller */
1569 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1570 tmp |= DPIO_DCLKP_EN;
1571 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1572
1573 /*
1574 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1575 */
1576 udelay(1);
1577
1578 /* Enable PLL */
Ville Syrjäläd288f652014-10-28 13:20:22 +02001579 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001580
1581 /* Check PLL is locked */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001582 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001583 DRM_ERROR("PLL %d failed to lock\n", pipe);
1584
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001585 /* not sure when this should be written */
Ville Syrjäläd288f652014-10-28 13:20:22 +02001586 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001587 POSTING_READ(DPLL_MD(pipe));
1588
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001589 mutex_unlock(&dev_priv->dpio_lock);
1590}
1591
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001592static int intel_num_dvo_pipes(struct drm_device *dev)
1593{
1594 struct intel_crtc *crtc;
1595 int count = 0;
1596
1597 for_each_intel_crtc(dev, crtc)
1598 count += crtc->active &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001599 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO);
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001600
1601 return count;
1602}
1603
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001604static void i9xx_enable_pll(struct intel_crtc *crtc)
Daniel Vetter87442f72013-06-06 00:52:17 +02001605{
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001606 struct drm_device *dev = crtc->base.dev;
1607 struct drm_i915_private *dev_priv = dev->dev_private;
1608 int reg = DPLL(crtc->pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001609 u32 dpll = crtc->config->dpll_hw_state.dpll;
Daniel Vetter87442f72013-06-06 00:52:17 +02001610
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001611 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001612
1613 /* No really, not for ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001614 BUG_ON(INTEL_INFO(dev)->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001615
1616 /* PLL is protected by panel, make sure we can write it */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001617 if (IS_MOBILE(dev) && !IS_I830(dev))
1618 assert_panel_unlocked(dev_priv, crtc->pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001619
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001620 /* Enable DVO 2x clock on both PLLs if necessary */
1621 if (IS_I830(dev) && intel_num_dvo_pipes(dev) > 0) {
1622 /*
1623 * It appears to be important that we don't enable this
1624 * for the current pipe before otherwise configuring the
1625 * PLL. No idea how this should be handled if multiple
1626 * DVO outputs are enabled simultaneosly.
1627 */
1628 dpll |= DPLL_DVO_2X_MODE;
1629 I915_WRITE(DPLL(!crtc->pipe),
1630 I915_READ(DPLL(!crtc->pipe)) | DPLL_DVO_2X_MODE);
1631 }
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001632
1633 /* Wait for the clocks to stabilize. */
1634 POSTING_READ(reg);
1635 udelay(150);
1636
1637 if (INTEL_INFO(dev)->gen >= 4) {
1638 I915_WRITE(DPLL_MD(crtc->pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001639 crtc->config->dpll_hw_state.dpll_md);
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001640 } else {
1641 /* The pixel multiplier can only be updated once the
1642 * DPLL is enabled and the clocks are stable.
1643 *
1644 * So write it again.
1645 */
1646 I915_WRITE(reg, dpll);
1647 }
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001648
1649 /* We do this three times for luck */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001650 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001651 POSTING_READ(reg);
1652 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001653 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001654 POSTING_READ(reg);
1655 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001656 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001657 POSTING_READ(reg);
1658 udelay(150); /* wait for warmup */
1659}
1660
1661/**
Daniel Vetter50b44a42013-06-05 13:34:33 +02001662 * i9xx_disable_pll - disable a PLL
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001663 * @dev_priv: i915 private structure
1664 * @pipe: pipe PLL to disable
1665 *
1666 * Disable the PLL for @pipe, making sure the pipe is off first.
1667 *
1668 * Note! This is for pre-ILK only.
1669 */
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001670static void i9xx_disable_pll(struct intel_crtc *crtc)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001671{
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001672 struct drm_device *dev = crtc->base.dev;
1673 struct drm_i915_private *dev_priv = dev->dev_private;
1674 enum pipe pipe = crtc->pipe;
1675
1676 /* Disable DVO 2x clock on both PLLs if necessary */
1677 if (IS_I830(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001678 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO) &&
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001679 intel_num_dvo_pipes(dev) == 1) {
1680 I915_WRITE(DPLL(PIPE_B),
1681 I915_READ(DPLL(PIPE_B)) & ~DPLL_DVO_2X_MODE);
1682 I915_WRITE(DPLL(PIPE_A),
1683 I915_READ(DPLL(PIPE_A)) & ~DPLL_DVO_2X_MODE);
1684 }
1685
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001686 /* Don't disable pipe or pipe PLLs if needed */
1687 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1688 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001689 return;
1690
1691 /* Make sure the pipe isn't still relying on us */
1692 assert_pipe_disabled(dev_priv, pipe);
1693
Daniel Vetter50b44a42013-06-05 13:34:33 +02001694 I915_WRITE(DPLL(pipe), 0);
1695 POSTING_READ(DPLL(pipe));
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001696}
1697
Jesse Barnesf6071162013-10-01 10:41:38 -07001698static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1699{
1700 u32 val = 0;
1701
1702 /* Make sure the pipe isn't still relying on us */
1703 assert_pipe_disabled(dev_priv, pipe);
1704
Imre Deake5cbfbf2014-01-09 17:08:16 +02001705 /*
1706 * Leave integrated clock source and reference clock enabled for pipe B.
1707 * The latter is needed for VGA hotplug / manual detection.
1708 */
Jesse Barnesf6071162013-10-01 10:41:38 -07001709 if (pipe == PIPE_B)
Imre Deake5cbfbf2014-01-09 17:08:16 +02001710 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REFA_CLK_ENABLE_VLV;
Jesse Barnesf6071162013-10-01 10:41:38 -07001711 I915_WRITE(DPLL(pipe), val);
1712 POSTING_READ(DPLL(pipe));
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001713
1714}
1715
1716static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1717{
Ville Syrjäläd7520482014-04-09 13:28:59 +03001718 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001719 u32 val;
1720
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001721 /* Make sure the pipe isn't still relying on us */
1722 assert_pipe_disabled(dev_priv, pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001723
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001724 /* Set PLL en = 0 */
Ville Syrjäläd17ec4c2014-06-28 02:03:59 +03001725 val = DPLL_SSC_REF_CLOCK_CHV | DPLL_REFA_CLK_ENABLE_VLV;
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001726 if (pipe != PIPE_A)
1727 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1728 I915_WRITE(DPLL(pipe), val);
1729 POSTING_READ(DPLL(pipe));
Ville Syrjäläd7520482014-04-09 13:28:59 +03001730
1731 mutex_lock(&dev_priv->dpio_lock);
1732
1733 /* Disable 10bit clock to display controller */
1734 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1735 val &= ~DPIO_DCLKP_EN;
1736 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1737
Ville Syrjälä61407f62014-05-27 16:32:55 +03001738 /* disable left/right clock distribution */
1739 if (pipe != PIPE_B) {
1740 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1741 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1742 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1743 } else {
1744 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1745 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1746 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1747 }
1748
Ville Syrjäläd7520482014-04-09 13:28:59 +03001749 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesf6071162013-10-01 10:41:38 -07001750}
1751
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001752void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
1753 struct intel_digital_port *dport)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001754{
1755 u32 port_mask;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001756 int dpll_reg;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001757
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001758 switch (dport->port) {
1759 case PORT_B:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001760 port_mask = DPLL_PORTB_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001761 dpll_reg = DPLL(0);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001762 break;
1763 case PORT_C:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001764 port_mask = DPLL_PORTC_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001765 dpll_reg = DPLL(0);
1766 break;
1767 case PORT_D:
1768 port_mask = DPLL_PORTD_READY_MASK;
1769 dpll_reg = DPIO_PHY_STATUS;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001770 break;
1771 default:
1772 BUG();
1773 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07001774
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001775 if (wait_for((I915_READ(dpll_reg) & port_mask) == 0, 1000))
Jesse Barnes89b667f2013-04-18 14:51:36 -07001776 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001777 port_name(dport->port), I915_READ(dpll_reg));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001778}
1779
Daniel Vetterb14b1052014-04-24 23:55:13 +02001780static void intel_prepare_shared_dpll(struct intel_crtc *crtc)
1781{
1782 struct drm_device *dev = crtc->base.dev;
1783 struct drm_i915_private *dev_priv = dev->dev_private;
1784 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
1785
Chris Wilsonbe19f0f2014-05-28 16:16:42 +01001786 if (WARN_ON(pll == NULL))
1787 return;
1788
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001789 WARN_ON(!pll->config.crtc_mask);
Daniel Vetterb14b1052014-04-24 23:55:13 +02001790 if (pll->active == 0) {
1791 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
1792 WARN_ON(pll->on);
1793 assert_shared_dpll_disabled(dev_priv, pll);
1794
1795 pll->mode_set(dev_priv, pll);
1796 }
1797}
1798
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001799/**
Daniel Vetter85b38942014-04-24 23:55:14 +02001800 * intel_enable_shared_dpll - enable PCH PLL
Jesse Barnes92f25842011-01-04 15:09:34 -08001801 * @dev_priv: i915 private structure
1802 * @pipe: pipe PLL to enable
1803 *
1804 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1805 * drives the transcoder clock.
1806 */
Daniel Vetter85b38942014-04-24 23:55:14 +02001807static void intel_enable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001808{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001809 struct drm_device *dev = crtc->base.dev;
1810 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001811 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes92f25842011-01-04 15:09:34 -08001812
Daniel Vetter87a875b2013-06-05 13:34:19 +02001813 if (WARN_ON(pll == NULL))
Chris Wilson48da64a2012-05-13 20:16:12 +01001814 return;
1815
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001816 if (WARN_ON(pll->config.crtc_mask == 0))
Chris Wilson48da64a2012-05-13 20:16:12 +01001817 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001818
Damien Lespiau74dd6922014-07-29 18:06:17 +01001819 DRM_DEBUG_KMS("enable %s (active %d, on? %d) for crtc %d\n",
Daniel Vetter46edb022013-06-05 13:34:12 +02001820 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001821 crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001822
Daniel Vettercdbd2312013-06-05 13:34:03 +02001823 if (pll->active++) {
1824 WARN_ON(!pll->on);
Daniel Vettere9d69442013-06-05 13:34:15 +02001825 assert_shared_dpll_enabled(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001826 return;
1827 }
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001828 WARN_ON(pll->on);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001829
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001830 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
1831
Daniel Vetter46edb022013-06-05 13:34:12 +02001832 DRM_DEBUG_KMS("enabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001833 pll->enable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001834 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001835}
1836
Damien Lespiauf6daaec2014-08-09 23:00:56 +01001837static void intel_disable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001838{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001839 struct drm_device *dev = crtc->base.dev;
1840 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001841 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001842
Jesse Barnes92f25842011-01-04 15:09:34 -08001843 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001844 BUG_ON(INTEL_INFO(dev)->gen < 5);
Daniel Vetter87a875b2013-06-05 13:34:19 +02001845 if (WARN_ON(pll == NULL))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001846 return;
1847
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001848 if (WARN_ON(pll->config.crtc_mask == 0))
Chris Wilson48da64a2012-05-13 20:16:12 +01001849 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001850
Daniel Vetter46edb022013-06-05 13:34:12 +02001851 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1852 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001853 crtc->base.base.id);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001854
Chris Wilson48da64a2012-05-13 20:16:12 +01001855 if (WARN_ON(pll->active == 0)) {
Daniel Vettere9d69442013-06-05 13:34:15 +02001856 assert_shared_dpll_disabled(dev_priv, pll);
Chris Wilson48da64a2012-05-13 20:16:12 +01001857 return;
1858 }
1859
Daniel Vettere9d69442013-06-05 13:34:15 +02001860 assert_shared_dpll_enabled(dev_priv, pll);
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001861 WARN_ON(!pll->on);
Daniel Vettercdbd2312013-06-05 13:34:03 +02001862 if (--pll->active)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001863 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001864
Daniel Vetter46edb022013-06-05 13:34:12 +02001865 DRM_DEBUG_KMS("disabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001866 pll->disable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001867 pll->on = false;
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001868
1869 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
Jesse Barnes92f25842011-01-04 15:09:34 -08001870}
1871
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001872static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1873 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001874{
Daniel Vetter23670b322012-11-01 09:15:30 +01001875 struct drm_device *dev = dev_priv->dev;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001876 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vettere2b78262013-06-07 23:10:03 +02001877 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter23670b322012-11-01 09:15:30 +01001878 uint32_t reg, val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001879
1880 /* PCH only available on ILK+ */
Ville Syrjälä55522f32014-09-03 14:09:53 +03001881 BUG_ON(!HAS_PCH_SPLIT(dev));
Jesse Barnes040484a2011-01-03 12:14:26 -08001882
1883 /* Make sure PCH DPLL is enabled */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02001884 assert_shared_dpll_enabled(dev_priv,
Daniel Vettere9d69442013-06-05 13:34:15 +02001885 intel_crtc_to_shared_dpll(intel_crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001886
1887 /* FDI must be feeding us bits for PCH ports */
1888 assert_fdi_tx_enabled(dev_priv, pipe);
1889 assert_fdi_rx_enabled(dev_priv, pipe);
1890
Daniel Vetter23670b322012-11-01 09:15:30 +01001891 if (HAS_PCH_CPT(dev)) {
1892 /* Workaround: Set the timing override bit before enabling the
1893 * pch transcoder. */
1894 reg = TRANS_CHICKEN2(pipe);
1895 val = I915_READ(reg);
1896 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1897 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001898 }
Daniel Vetter23670b322012-11-01 09:15:30 +01001899
Daniel Vetterab9412b2013-05-03 11:49:46 +02001900 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001901 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001902 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001903
1904 if (HAS_PCH_IBX(dev_priv->dev)) {
1905 /*
1906 * make the BPC in transcoder be consistent with
1907 * that in pipeconf reg.
1908 */
Daniel Vetterdfd07d72012-12-17 11:21:38 +01001909 val &= ~PIPECONF_BPC_MASK;
1910 val |= pipeconf_val & PIPECONF_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001911 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001912
1913 val &= ~TRANS_INTERLACE_MASK;
1914 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001915 if (HAS_PCH_IBX(dev_priv->dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001916 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001917 val |= TRANS_LEGACY_INTERLACED_ILK;
1918 else
1919 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001920 else
1921 val |= TRANS_PROGRESSIVE;
1922
Jesse Barnes040484a2011-01-03 12:14:26 -08001923 I915_WRITE(reg, val | TRANS_ENABLE);
1924 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001925 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
Jesse Barnes040484a2011-01-03 12:14:26 -08001926}
1927
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001928static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02001929 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08001930{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001931 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001932
1933 /* PCH only available on ILK+ */
Ville Syrjälä55522f32014-09-03 14:09:53 +03001934 BUG_ON(!HAS_PCH_SPLIT(dev_priv->dev));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001935
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001936 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01001937 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02001938 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001939
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001940 /* Workaround: set timing override bit. */
1941 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001942 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001943 I915_WRITE(_TRANSA_CHICKEN2, val);
1944
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02001945 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02001946 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001947
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02001948 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1949 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02001950 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001951 else
1952 val |= TRANS_PROGRESSIVE;
1953
Daniel Vetterab9412b2013-05-03 11:49:46 +02001954 I915_WRITE(LPT_TRANSCONF, val);
1955 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
Paulo Zanoni937bb612012-10-31 18:12:47 -02001956 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001957}
1958
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001959static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1960 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001961{
Daniel Vetter23670b322012-11-01 09:15:30 +01001962 struct drm_device *dev = dev_priv->dev;
1963 uint32_t reg, val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001964
1965 /* FDI relies on the transcoder */
1966 assert_fdi_tx_disabled(dev_priv, pipe);
1967 assert_fdi_rx_disabled(dev_priv, pipe);
1968
Jesse Barnes291906f2011-02-02 12:28:03 -08001969 /* Ports must be off as well */
1970 assert_pch_ports_disabled(dev_priv, pipe);
1971
Daniel Vetterab9412b2013-05-03 11:49:46 +02001972 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001973 val = I915_READ(reg);
1974 val &= ~TRANS_ENABLE;
1975 I915_WRITE(reg, val);
1976 /* wait for PCH transcoder off, transcoder state */
1977 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001978 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
Daniel Vetter23670b322012-11-01 09:15:30 +01001979
1980 if (!HAS_PCH_IBX(dev)) {
1981 /* Workaround: Clear the timing override chicken bit again. */
1982 reg = TRANS_CHICKEN2(pipe);
1983 val = I915_READ(reg);
1984 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1985 I915_WRITE(reg, val);
1986 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001987}
1988
Paulo Zanoniab4d9662012-10-31 18:12:55 -02001989static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001990{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001991 u32 val;
1992
Daniel Vetterab9412b2013-05-03 11:49:46 +02001993 val = I915_READ(LPT_TRANSCONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001994 val &= ~TRANS_ENABLE;
Daniel Vetterab9412b2013-05-03 11:49:46 +02001995 I915_WRITE(LPT_TRANSCONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001996 /* wait for PCH transcoder off, transcoder state */
Daniel Vetterab9412b2013-05-03 11:49:46 +02001997 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02001998 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001999
2000 /* Workaround: clear timing override bit. */
2001 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01002002 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002003 I915_WRITE(_TRANSA_CHICKEN2, val);
Jesse Barnes92f25842011-01-04 15:09:34 -08002004}
2005
2006/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002007 * intel_enable_pipe - enable a pipe, asserting requirements
Paulo Zanoni03722642014-01-17 13:51:09 -02002008 * @crtc: crtc responsible for the pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08002009 *
Paulo Zanoni03722642014-01-17 13:51:09 -02002010 * Enable @crtc's pipe, making sure that various hardware specific requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08002011 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002012 */
Paulo Zanonie1fdc472014-01-17 13:51:12 -02002013static void intel_enable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002014{
Paulo Zanoni03722642014-01-17 13:51:09 -02002015 struct drm_device *dev = crtc->base.dev;
2016 struct drm_i915_private *dev_priv = dev->dev_private;
2017 enum pipe pipe = crtc->pipe;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002018 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
2019 pipe);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002020 enum pipe pch_transcoder;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002021 int reg;
2022 u32 val;
2023
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002024 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002025 assert_cursor_disabled(dev_priv, pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002026 assert_sprites_disabled(dev_priv, pipe);
2027
Paulo Zanoni681e5812012-12-06 11:12:38 -02002028 if (HAS_PCH_LPT(dev_priv->dev))
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002029 pch_transcoder = TRANSCODER_A;
2030 else
2031 pch_transcoder = pipe;
2032
Jesse Barnesb24e7172011-01-04 15:09:30 -08002033 /*
2034 * A pipe without a PLL won't actually be able to drive bits from
2035 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
2036 * need the check.
2037 */
2038 if (!HAS_PCH_SPLIT(dev_priv->dev))
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03002039 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
Jani Nikula23538ef2013-08-27 15:12:22 +03002040 assert_dsi_pll_enabled(dev_priv);
2041 else
2042 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002043 else {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002044 if (crtc->config->has_pch_encoder) {
Jesse Barnes040484a2011-01-03 12:14:26 -08002045 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002046 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002047 assert_fdi_tx_pll_enabled(dev_priv,
2048 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08002049 }
2050 /* FIXME: assert CPU port conditions for SNB+ */
2051 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08002052
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002053 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002054 val = I915_READ(reg);
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002055 if (val & PIPECONF_ENABLE) {
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002056 WARN_ON(!((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
2057 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)));
Chris Wilson00d70b12011-03-17 07:18:29 +00002058 return;
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002059 }
Chris Wilson00d70b12011-03-17 07:18:29 +00002060
2061 I915_WRITE(reg, val | PIPECONF_ENABLE);
Paulo Zanoni851855d2013-12-19 19:12:29 -02002062 POSTING_READ(reg);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002063}
2064
2065/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002066 * intel_disable_pipe - disable a pipe, asserting requirements
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002067 * @crtc: crtc whose pipes is to be disabled
Jesse Barnesb24e7172011-01-04 15:09:30 -08002068 *
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002069 * Disable the pipe of @crtc, making sure that various hardware
2070 * specific requirements are met, if applicable, e.g. plane
2071 * disabled, panel fitter off, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002072 *
2073 * Will wait until the pipe has shut down before returning.
2074 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002075static void intel_disable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002076{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002077 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002078 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002079 enum pipe pipe = crtc->pipe;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002080 int reg;
2081 u32 val;
2082
2083 /*
2084 * Make sure planes won't keep trying to pump pixels to us,
2085 * or we might hang the display.
2086 */
2087 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002088 assert_cursor_disabled(dev_priv, pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07002089 assert_sprites_disabled(dev_priv, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002090
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002091 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002092 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00002093 if ((val & PIPECONF_ENABLE) == 0)
2094 return;
2095
Ville Syrjälä67adc642014-08-15 01:21:57 +03002096 /*
2097 * Double wide has implications for planes
2098 * so best keep it disabled when not needed.
2099 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002100 if (crtc->config->double_wide)
Ville Syrjälä67adc642014-08-15 01:21:57 +03002101 val &= ~PIPECONF_DOUBLE_WIDE;
2102
2103 /* Don't disable pipe or pipe PLLs if needed */
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002104 if (!(pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) &&
2105 !(pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Ville Syrjälä67adc642014-08-15 01:21:57 +03002106 val &= ~PIPECONF_ENABLE;
2107
2108 I915_WRITE(reg, val);
2109 if ((val & PIPECONF_ENABLE) == 0)
2110 intel_wait_for_pipe_off(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002111}
2112
Keith Packardd74362c2011-07-28 14:47:14 -07002113/*
2114 * Plane regs are double buffered, going from enabled->disabled needs a
2115 * trigger in order to latch. The display address reg provides this.
2116 */
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002117void intel_flush_primary_plane(struct drm_i915_private *dev_priv,
2118 enum plane plane)
Keith Packardd74362c2011-07-28 14:47:14 -07002119{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00002120 struct drm_device *dev = dev_priv->dev;
2121 u32 reg = INTEL_INFO(dev)->gen >= 4 ? DSPSURF(plane) : DSPADDR(plane);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002122
2123 I915_WRITE(reg, I915_READ(reg));
2124 POSTING_READ(reg);
Keith Packardd74362c2011-07-28 14:47:14 -07002125}
2126
Jesse Barnesb24e7172011-01-04 15:09:30 -08002127/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002128 * intel_enable_primary_hw_plane - enable the primary plane on a given pipe
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002129 * @plane: plane to be enabled
2130 * @crtc: crtc for the plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002131 *
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002132 * Enable @plane on @crtc, making sure that the pipe is running first.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002133 */
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002134static void intel_enable_primary_hw_plane(struct drm_plane *plane,
2135 struct drm_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002136{
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002137 struct drm_device *dev = plane->dev;
2138 struct drm_i915_private *dev_priv = dev->dev_private;
2139 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002140
2141 /* If the pipe isn't enabled, we can't pump pixels and may hang */
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002142 assert_pipe_enabled(dev_priv, intel_crtc->pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002143
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002144 if (intel_crtc->primary_enabled)
2145 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002146
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002147 intel_crtc->primary_enabled = true;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002148
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002149 dev_priv->display.update_primary_plane(crtc, plane->fb,
2150 crtc->x, crtc->y);
Ville Syrjälä33c3b0d2014-06-24 13:59:28 +03002151
2152 /*
2153 * BDW signals flip done immediately if the plane
2154 * is disabled, even if the plane enable is already
2155 * armed to occur at the next vblank :(
2156 */
2157 if (IS_BROADWELL(dev))
2158 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002159}
2160
Jesse Barnesb24e7172011-01-04 15:09:30 -08002161/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002162 * intel_disable_primary_hw_plane - disable the primary hardware plane
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002163 * @plane: plane to be disabled
2164 * @crtc: crtc for the plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002165 *
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002166 * Disable @plane on @crtc, making sure that the pipe is running first.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002167 */
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002168static void intel_disable_primary_hw_plane(struct drm_plane *plane,
2169 struct drm_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002170{
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002171 struct drm_device *dev = plane->dev;
2172 struct drm_i915_private *dev_priv = dev->dev_private;
2173 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2174
Matt Roper32b7eee2014-12-24 07:59:06 -08002175 if (WARN_ON(!intel_crtc->active))
2176 return;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002177
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002178 if (!intel_crtc->primary_enabled)
2179 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002180
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002181 intel_crtc->primary_enabled = false;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002182
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002183 dev_priv->display.update_primary_plane(crtc, plane->fb,
2184 crtc->x, crtc->y);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002185}
2186
Chris Wilson693db182013-03-05 14:52:39 +00002187static bool need_vtd_wa(struct drm_device *dev)
2188{
2189#ifdef CONFIG_INTEL_IOMMU
2190 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2191 return true;
2192#endif
2193 return false;
2194}
2195
Damien Lespiauec2c9812015-01-20 12:51:45 +00002196int
Daniel Vetter091df6c2015-02-10 17:16:10 +00002197intel_fb_align_height(struct drm_device *dev, int height,
2198 uint32_t pixel_format,
2199 uint64_t fb_format_modifier)
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002200{
2201 int tile_height;
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002202 uint32_t bits_per_pixel;
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002203
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002204 switch (fb_format_modifier) {
2205 case DRM_FORMAT_MOD_NONE:
2206 tile_height = 1;
2207 break;
2208 case I915_FORMAT_MOD_X_TILED:
2209 tile_height = IS_GEN2(dev) ? 16 : 8;
2210 break;
2211 case I915_FORMAT_MOD_Y_TILED:
2212 tile_height = 32;
2213 break;
2214 case I915_FORMAT_MOD_Yf_TILED:
2215 bits_per_pixel = drm_format_plane_cpp(pixel_format, 0) * 8;
2216 switch (bits_per_pixel) {
2217 default:
2218 case 8:
2219 tile_height = 64;
2220 break;
2221 case 16:
2222 case 32:
2223 tile_height = 32;
2224 break;
2225 case 64:
2226 tile_height = 16;
2227 break;
2228 case 128:
2229 WARN_ONCE(1,
2230 "128-bit pixels are not supported for display!");
2231 tile_height = 16;
2232 break;
2233 }
2234 break;
2235 default:
2236 MISSING_CASE(fb_format_modifier);
2237 tile_height = 1;
2238 break;
2239 }
Daniel Vetter091df6c2015-02-10 17:16:10 +00002240
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002241 return ALIGN(height, tile_height);
2242}
2243
Chris Wilson127bd2a2010-07-23 23:32:05 +01002244int
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002245intel_pin_and_fence_fb_obj(struct drm_plane *plane,
2246 struct drm_framebuffer *fb,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002247 struct intel_engine_cs *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002248{
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002249 struct drm_device *dev = fb->dev;
Chris Wilsonce453d82011-02-21 14:43:56 +00002250 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002251 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002252 u32 alignment;
2253 int ret;
2254
Matt Roperebcdd392014-07-09 16:22:11 -07002255 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
2256
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002257 switch (fb->modifier[0]) {
2258 case DRM_FORMAT_MOD_NONE:
Damien Lespiau1fada4c2013-07-03 21:06:02 +01002259 if (INTEL_INFO(dev)->gen >= 9)
2260 alignment = 256 * 1024;
2261 else if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
Chris Wilson534843d2010-07-05 18:01:46 +01002262 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002263 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01002264 alignment = 4 * 1024;
2265 else
2266 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002267 break;
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002268 case I915_FORMAT_MOD_X_TILED:
Damien Lespiau1fada4c2013-07-03 21:06:02 +01002269 if (INTEL_INFO(dev)->gen >= 9)
2270 alignment = 256 * 1024;
2271 else {
2272 /* pin() will align the object as required by fence */
2273 alignment = 0;
2274 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002275 break;
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002276 case I915_FORMAT_MOD_Y_TILED:
Damien Lespiau1327b9a2015-02-27 11:15:20 +00002277 case I915_FORMAT_MOD_Yf_TILED:
2278 if (WARN_ONCE(INTEL_INFO(dev)->gen < 9,
2279 "Y tiling bo slipped through, driver bug!\n"))
2280 return -EINVAL;
2281 alignment = 1 * 1024 * 1024;
2282 break;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002283 default:
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002284 MISSING_CASE(fb->modifier[0]);
2285 return -EINVAL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002286 }
2287
Chris Wilson693db182013-03-05 14:52:39 +00002288 /* Note that the w/a also requires 64 PTE of padding following the
2289 * bo. We currently fill all unused PTE with the shadow page and so
2290 * we should always have valid PTE following the scanout preventing
2291 * the VT-d warning.
2292 */
2293 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2294 alignment = 256 * 1024;
2295
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002296 /*
2297 * Global gtt pte registers are special registers which actually forward
2298 * writes to a chunk of system memory. Which means that there is no risk
2299 * that the register values disappear as soon as we call
2300 * intel_runtime_pm_put(), so it is correct to wrap only the
2301 * pin/unpin/fence and not more.
2302 */
2303 intel_runtime_pm_get(dev_priv);
2304
Chris Wilsonce453d82011-02-21 14:43:56 +00002305 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002306 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01002307 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00002308 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002309
2310 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2311 * fence, whereas 965+ only requires a fence if using
2312 * framebuffer compression. For simplicity, we always install
2313 * a fence as the cost is not that onerous.
2314 */
Chris Wilson06d98132012-04-17 15:31:24 +01002315 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002316 if (ret)
2317 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002318
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002319 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002320
Chris Wilsonce453d82011-02-21 14:43:56 +00002321 dev_priv->mm.interruptible = true;
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002322 intel_runtime_pm_put(dev_priv);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002323 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01002324
2325err_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01002326 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00002327err_interruptible:
2328 dev_priv->mm.interruptible = true;
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002329 intel_runtime_pm_put(dev_priv);
Chris Wilson48b956c2010-09-14 12:50:34 +01002330 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002331}
2332
Damien Lespiauf63bdb52015-02-10 19:32:24 +00002333static void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
Chris Wilson1690e1e2011-12-14 13:57:08 +01002334{
Matt Roperebcdd392014-07-09 16:22:11 -07002335 WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex));
2336
Chris Wilson1690e1e2011-12-14 13:57:08 +01002337 i915_gem_object_unpin_fence(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01002338 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002339}
2340
Daniel Vetterc2c75132012-07-05 12:17:30 +02002341/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2342 * is assumed to be a power-of-two. */
Chris Wilsonbc752862013-02-21 20:04:31 +00002343unsigned long intel_gen4_compute_page_offset(int *x, int *y,
2344 unsigned int tiling_mode,
2345 unsigned int cpp,
2346 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02002347{
Chris Wilsonbc752862013-02-21 20:04:31 +00002348 if (tiling_mode != I915_TILING_NONE) {
2349 unsigned int tile_rows, tiles;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002350
Chris Wilsonbc752862013-02-21 20:04:31 +00002351 tile_rows = *y / 8;
2352 *y %= 8;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002353
Chris Wilsonbc752862013-02-21 20:04:31 +00002354 tiles = *x / (512/cpp);
2355 *x %= 512/cpp;
2356
2357 return tile_rows * pitch * 8 + tiles * 4096;
2358 } else {
2359 unsigned int offset;
2360
2361 offset = *y * pitch + *x * cpp;
2362 *y = 0;
2363 *x = (offset & 4095) / cpp;
2364 return offset & -4096;
2365 }
Daniel Vetterc2c75132012-07-05 12:17:30 +02002366}
2367
Damien Lespiaub35d63f2015-01-20 12:51:50 +00002368static int i9xx_format_to_fourcc(int format)
Jesse Barnes46f297f2014-03-07 08:57:48 -08002369{
2370 switch (format) {
2371 case DISPPLANE_8BPP:
2372 return DRM_FORMAT_C8;
2373 case DISPPLANE_BGRX555:
2374 return DRM_FORMAT_XRGB1555;
2375 case DISPPLANE_BGRX565:
2376 return DRM_FORMAT_RGB565;
2377 default:
2378 case DISPPLANE_BGRX888:
2379 return DRM_FORMAT_XRGB8888;
2380 case DISPPLANE_RGBX888:
2381 return DRM_FORMAT_XBGR8888;
2382 case DISPPLANE_BGRX101010:
2383 return DRM_FORMAT_XRGB2101010;
2384 case DISPPLANE_RGBX101010:
2385 return DRM_FORMAT_XBGR2101010;
2386 }
2387}
2388
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00002389static int skl_format_to_fourcc(int format, bool rgb_order, bool alpha)
2390{
2391 switch (format) {
2392 case PLANE_CTL_FORMAT_RGB_565:
2393 return DRM_FORMAT_RGB565;
2394 default:
2395 case PLANE_CTL_FORMAT_XRGB_8888:
2396 if (rgb_order) {
2397 if (alpha)
2398 return DRM_FORMAT_ABGR8888;
2399 else
2400 return DRM_FORMAT_XBGR8888;
2401 } else {
2402 if (alpha)
2403 return DRM_FORMAT_ARGB8888;
2404 else
2405 return DRM_FORMAT_XRGB8888;
2406 }
2407 case PLANE_CTL_FORMAT_XRGB_2101010:
2408 if (rgb_order)
2409 return DRM_FORMAT_XBGR2101010;
2410 else
2411 return DRM_FORMAT_XRGB2101010;
2412 }
2413}
2414
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002415static bool
2416intel_alloc_plane_obj(struct intel_crtc *crtc,
2417 struct intel_initial_plane_config *plane_config)
Jesse Barnes46f297f2014-03-07 08:57:48 -08002418{
2419 struct drm_device *dev = crtc->base.dev;
2420 struct drm_i915_gem_object *obj = NULL;
2421 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Damien Lespiau2d140302015-02-05 17:22:18 +00002422 struct drm_framebuffer *fb = &plane_config->fb->base;
Daniel Vetterf37b5c22015-02-10 23:12:27 +01002423 u32 base_aligned = round_down(plane_config->base, PAGE_SIZE);
2424 u32 size_aligned = round_up(plane_config->base + plane_config->size,
2425 PAGE_SIZE);
2426
2427 size_aligned -= base_aligned;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002428
Chris Wilsonff2652e2014-03-10 08:07:02 +00002429 if (plane_config->size == 0)
2430 return false;
2431
Daniel Vetterf37b5c22015-02-10 23:12:27 +01002432 obj = i915_gem_object_create_stolen_for_preallocated(dev,
2433 base_aligned,
2434 base_aligned,
2435 size_aligned);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002436 if (!obj)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002437 return false;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002438
Damien Lespiau49af4492015-01-20 12:51:44 +00002439 obj->tiling_mode = plane_config->tiling;
2440 if (obj->tiling_mode == I915_TILING_X)
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002441 obj->stride = fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002442
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002443 mode_cmd.pixel_format = fb->pixel_format;
2444 mode_cmd.width = fb->width;
2445 mode_cmd.height = fb->height;
2446 mode_cmd.pitches[0] = fb->pitches[0];
Daniel Vetter18c52472015-02-10 17:16:09 +00002447 mode_cmd.modifier[0] = fb->modifier[0];
2448 mode_cmd.flags = DRM_MODE_FB_MODIFIERS;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002449
2450 mutex_lock(&dev->struct_mutex);
2451
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002452 if (intel_framebuffer_init(dev, to_intel_framebuffer(fb),
Jesse Barnes484b41d2014-03-07 08:57:55 -08002453 &mode_cmd, obj)) {
Jesse Barnes46f297f2014-03-07 08:57:48 -08002454 DRM_DEBUG_KMS("intel fb init failed\n");
2455 goto out_unref_obj;
2456 }
2457
Daniel Vettera071fa02014-06-18 23:28:09 +02002458 obj->frontbuffer_bits = INTEL_FRONTBUFFER_PRIMARY(crtc->pipe);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002459 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002460
2461 DRM_DEBUG_KMS("plane fb obj %p\n", obj);
2462 return true;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002463
2464out_unref_obj:
2465 drm_gem_object_unreference(&obj->base);
2466 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002467 return false;
2468}
2469
Matt Roperafd65eb2015-02-03 13:10:04 -08002470/* Update plane->state->fb to match plane->fb after driver-internal updates */
2471static void
2472update_state_fb(struct drm_plane *plane)
2473{
2474 if (plane->fb == plane->state->fb)
2475 return;
2476
2477 if (plane->state->fb)
2478 drm_framebuffer_unreference(plane->state->fb);
2479 plane->state->fb = plane->fb;
2480 if (plane->state->fb)
2481 drm_framebuffer_reference(plane->state->fb);
2482}
2483
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002484static void
2485intel_find_plane_obj(struct intel_crtc *intel_crtc,
2486 struct intel_initial_plane_config *plane_config)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002487{
2488 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnesd9ceb812014-10-09 12:57:43 -07002489 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002490 struct drm_crtc *c;
2491 struct intel_crtc *i;
Matt Roper2ff8fde2014-07-08 07:50:07 -07002492 struct drm_i915_gem_object *obj;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002493
Damien Lespiau2d140302015-02-05 17:22:18 +00002494 if (!plane_config->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002495 return;
2496
Damien Lespiauf55548b2015-02-05 18:30:20 +00002497 if (intel_alloc_plane_obj(intel_crtc, plane_config)) {
Damien Lespiaufb9981a2015-02-05 19:24:25 +00002498 struct drm_plane *primary = intel_crtc->base.primary;
2499
2500 primary->fb = &plane_config->fb->base;
2501 primary->state->crtc = &intel_crtc->base;
2502 update_state_fb(primary);
2503
Jesse Barnes484b41d2014-03-07 08:57:55 -08002504 return;
Damien Lespiauf55548b2015-02-05 18:30:20 +00002505 }
Jesse Barnes484b41d2014-03-07 08:57:55 -08002506
Damien Lespiau2d140302015-02-05 17:22:18 +00002507 kfree(plane_config->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002508
2509 /*
2510 * Failed to alloc the obj, check to see if we should share
2511 * an fb with another CRTC instead
2512 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002513 for_each_crtc(dev, c) {
Jesse Barnes484b41d2014-03-07 08:57:55 -08002514 i = to_intel_crtc(c);
2515
2516 if (c == &intel_crtc->base)
2517 continue;
2518
Matt Roper2ff8fde2014-07-08 07:50:07 -07002519 if (!i->active)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002520 continue;
2521
Matt Roper2ff8fde2014-07-08 07:50:07 -07002522 obj = intel_fb_obj(c->primary->fb);
2523 if (obj == NULL)
2524 continue;
2525
2526 if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) {
Damien Lespiaufb9981a2015-02-05 19:24:25 +00002527 struct drm_plane *primary = intel_crtc->base.primary;
2528
Jesse Barnesd9ceb812014-10-09 12:57:43 -07002529 if (obj->tiling_mode != I915_TILING_NONE)
2530 dev_priv->preserve_bios_swizzle = true;
2531
Dave Airlie66e514c2014-04-03 07:51:54 +10002532 drm_framebuffer_reference(c->primary->fb);
Damien Lespiaufb9981a2015-02-05 19:24:25 +00002533 primary->fb = c->primary->fb;
2534 primary->state->crtc = &intel_crtc->base;
Damien Lespiau5ba76c42015-02-05 17:22:15 +00002535 update_state_fb(intel_crtc->base.primary);
Matt Roper2ff8fde2014-07-08 07:50:07 -07002536 obj->frontbuffer_bits |= INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002537 break;
2538 }
2539 }
Matt Roperafd65eb2015-02-03 13:10:04 -08002540
Jesse Barnes46f297f2014-03-07 08:57:48 -08002541}
2542
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002543static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2544 struct drm_framebuffer *fb,
2545 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07002546{
2547 struct drm_device *dev = crtc->dev;
2548 struct drm_i915_private *dev_priv = dev->dev_private;
2549 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002550 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002551 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002552 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002553 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002554 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302555 int pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002556
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002557 if (!intel_crtc->primary_enabled) {
2558 I915_WRITE(reg, 0);
2559 if (INTEL_INFO(dev)->gen >= 4)
2560 I915_WRITE(DSPSURF(plane), 0);
2561 else
2562 I915_WRITE(DSPADDR(plane), 0);
2563 POSTING_READ(reg);
2564 return;
2565 }
2566
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002567 obj = intel_fb_obj(fb);
2568 if (WARN_ON(obj == NULL))
2569 return;
2570
2571 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2572
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002573 dspcntr = DISPPLANE_GAMMA_ENABLE;
2574
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002575 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002576
2577 if (INTEL_INFO(dev)->gen < 4) {
2578 if (intel_crtc->pipe == PIPE_B)
2579 dspcntr |= DISPPLANE_SEL_PIPE_B;
2580
2581 /* pipesrc and dspsize control the size that is scaled from,
2582 * which should always be the user's requested size.
2583 */
2584 I915_WRITE(DSPSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002585 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2586 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002587 I915_WRITE(DSPPOS(plane), 0);
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002588 } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) {
2589 I915_WRITE(PRIMSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002590 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2591 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002592 I915_WRITE(PRIMPOS(plane), 0);
2593 I915_WRITE(PRIMCNSTALPHA(plane), 0);
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002594 }
2595
Ville Syrjälä57779d02012-10-31 17:50:14 +02002596 switch (fb->pixel_format) {
2597 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002598 dspcntr |= DISPPLANE_8BPP;
2599 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002600 case DRM_FORMAT_XRGB1555:
2601 case DRM_FORMAT_ARGB1555:
2602 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002603 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002604 case DRM_FORMAT_RGB565:
2605 dspcntr |= DISPPLANE_BGRX565;
2606 break;
2607 case DRM_FORMAT_XRGB8888:
2608 case DRM_FORMAT_ARGB8888:
2609 dspcntr |= DISPPLANE_BGRX888;
2610 break;
2611 case DRM_FORMAT_XBGR8888:
2612 case DRM_FORMAT_ABGR8888:
2613 dspcntr |= DISPPLANE_RGBX888;
2614 break;
2615 case DRM_FORMAT_XRGB2101010:
2616 case DRM_FORMAT_ARGB2101010:
2617 dspcntr |= DISPPLANE_BGRX101010;
2618 break;
2619 case DRM_FORMAT_XBGR2101010:
2620 case DRM_FORMAT_ABGR2101010:
2621 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002622 break;
2623 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002624 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07002625 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002626
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002627 if (INTEL_INFO(dev)->gen >= 4 &&
2628 obj->tiling_mode != I915_TILING_NONE)
2629 dspcntr |= DISPPLANE_TILED;
Jesse Barnes81255562010-08-02 12:07:50 -07002630
Ville Syrjäläde1aa622013-06-07 10:47:01 +03002631 if (IS_G4X(dev))
2632 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2633
Ville Syrjäläb98971272014-08-27 16:51:22 +03002634 linear_offset = y * fb->pitches[0] + x * pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002635
Daniel Vetterc2c75132012-07-05 12:17:30 +02002636 if (INTEL_INFO(dev)->gen >= 4) {
2637 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002638 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002639 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002640 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002641 linear_offset -= intel_crtc->dspaddr_offset;
2642 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002643 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002644 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002645
Matt Roper8e7d6882015-01-21 16:35:41 -08002646 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302647 dspcntr |= DISPPLANE_ROTATE_180;
2648
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002649 x += (intel_crtc->config->pipe_src_w - 1);
2650 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302651
2652 /* Finding the last pixel of the last line of the display
2653 data and adding to linear_offset*/
2654 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002655 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2656 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302657 }
2658
2659 I915_WRITE(reg, dspcntr);
2660
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002661 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2662 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2663 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002664 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002665 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002666 I915_WRITE(DSPSURF(plane),
2667 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002668 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002669 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002670 } else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002671 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002672 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002673}
2674
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002675static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2676 struct drm_framebuffer *fb,
2677 int x, int y)
Jesse Barnes17638cd2011-06-24 12:19:23 -07002678{
2679 struct drm_device *dev = crtc->dev;
2680 struct drm_i915_private *dev_priv = dev->dev_private;
2681 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002682 struct drm_i915_gem_object *obj;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002683 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002684 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002685 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002686 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302687 int pixel_size;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002688
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002689 if (!intel_crtc->primary_enabled) {
2690 I915_WRITE(reg, 0);
2691 I915_WRITE(DSPSURF(plane), 0);
2692 POSTING_READ(reg);
2693 return;
2694 }
2695
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002696 obj = intel_fb_obj(fb);
2697 if (WARN_ON(obj == NULL))
2698 return;
2699
2700 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2701
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002702 dspcntr = DISPPLANE_GAMMA_ENABLE;
2703
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002704 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002705
2706 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
2707 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
2708
Ville Syrjälä57779d02012-10-31 17:50:14 +02002709 switch (fb->pixel_format) {
2710 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002711 dspcntr |= DISPPLANE_8BPP;
2712 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002713 case DRM_FORMAT_RGB565:
2714 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002715 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002716 case DRM_FORMAT_XRGB8888:
2717 case DRM_FORMAT_ARGB8888:
2718 dspcntr |= DISPPLANE_BGRX888;
2719 break;
2720 case DRM_FORMAT_XBGR8888:
2721 case DRM_FORMAT_ABGR8888:
2722 dspcntr |= DISPPLANE_RGBX888;
2723 break;
2724 case DRM_FORMAT_XRGB2101010:
2725 case DRM_FORMAT_ARGB2101010:
2726 dspcntr |= DISPPLANE_BGRX101010;
2727 break;
2728 case DRM_FORMAT_XBGR2101010:
2729 case DRM_FORMAT_ABGR2101010:
2730 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002731 break;
2732 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002733 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002734 }
2735
2736 if (obj->tiling_mode != I915_TILING_NONE)
2737 dspcntr |= DISPPLANE_TILED;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002738
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002739 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03002740 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002741
Ville Syrjäläb98971272014-08-27 16:51:22 +03002742 linear_offset = y * fb->pitches[0] + x * pixel_size;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002743 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002744 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002745 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002746 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002747 linear_offset -= intel_crtc->dspaddr_offset;
Matt Roper8e7d6882015-01-21 16:35:41 -08002748 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302749 dspcntr |= DISPPLANE_ROTATE_180;
2750
2751 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002752 x += (intel_crtc->config->pipe_src_w - 1);
2753 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302754
2755 /* Finding the last pixel of the last line of the display
2756 data and adding to linear_offset*/
2757 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002758 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2759 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302760 }
2761 }
2762
2763 I915_WRITE(reg, dspcntr);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002764
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002765 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2766 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2767 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002768 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002769 I915_WRITE(DSPSURF(plane),
2770 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Paulo Zanonib3dc6852013-11-02 21:07:33 -07002771 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002772 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2773 } else {
2774 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2775 I915_WRITE(DSPLINOFF(plane), linear_offset);
2776 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002777 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002778}
2779
Damien Lespiaub3218032015-02-27 11:15:18 +00002780u32 intel_fb_stride_alignment(struct drm_device *dev, uint64_t fb_modifier,
2781 uint32_t pixel_format)
2782{
2783 u32 bits_per_pixel = drm_format_plane_cpp(pixel_format, 0) * 8;
2784
2785 /*
2786 * The stride is either expressed as a multiple of 64 bytes
2787 * chunks for linear buffers or in number of tiles for tiled
2788 * buffers.
2789 */
2790 switch (fb_modifier) {
2791 case DRM_FORMAT_MOD_NONE:
2792 return 64;
2793 case I915_FORMAT_MOD_X_TILED:
2794 if (INTEL_INFO(dev)->gen == 2)
2795 return 128;
2796 return 512;
2797 case I915_FORMAT_MOD_Y_TILED:
2798 /* No need to check for old gens and Y tiling since this is
2799 * about the display engine and those will be blocked before
2800 * we get here.
2801 */
2802 return 128;
2803 case I915_FORMAT_MOD_Yf_TILED:
2804 if (bits_per_pixel == 8)
2805 return 64;
2806 else
2807 return 128;
2808 default:
2809 MISSING_CASE(fb_modifier);
2810 return 64;
2811 }
2812}
2813
Damien Lespiau70d21f02013-07-03 21:06:04 +01002814static void skylake_update_primary_plane(struct drm_crtc *crtc,
2815 struct drm_framebuffer *fb,
2816 int x, int y)
2817{
2818 struct drm_device *dev = crtc->dev;
2819 struct drm_i915_private *dev_priv = dev->dev_private;
2820 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Damien Lespiau70d21f02013-07-03 21:06:04 +01002821 struct drm_i915_gem_object *obj;
2822 int pipe = intel_crtc->pipe;
Damien Lespiaub3218032015-02-27 11:15:18 +00002823 u32 plane_ctl, stride_div;
Damien Lespiau70d21f02013-07-03 21:06:04 +01002824
2825 if (!intel_crtc->primary_enabled) {
2826 I915_WRITE(PLANE_CTL(pipe, 0), 0);
2827 I915_WRITE(PLANE_SURF(pipe, 0), 0);
2828 POSTING_READ(PLANE_CTL(pipe, 0));
2829 return;
2830 }
2831
2832 plane_ctl = PLANE_CTL_ENABLE |
2833 PLANE_CTL_PIPE_GAMMA_ENABLE |
2834 PLANE_CTL_PIPE_CSC_ENABLE;
2835
2836 switch (fb->pixel_format) {
2837 case DRM_FORMAT_RGB565:
2838 plane_ctl |= PLANE_CTL_FORMAT_RGB_565;
2839 break;
2840 case DRM_FORMAT_XRGB8888:
2841 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2842 break;
Jani Nikulaf75fb422015-02-10 13:15:49 +02002843 case DRM_FORMAT_ARGB8888:
2844 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2845 plane_ctl |= PLANE_CTL_ALPHA_SW_PREMULTIPLY;
2846 break;
Damien Lespiau70d21f02013-07-03 21:06:04 +01002847 case DRM_FORMAT_XBGR8888:
2848 plane_ctl |= PLANE_CTL_ORDER_RGBX;
2849 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2850 break;
Jani Nikulaf75fb422015-02-10 13:15:49 +02002851 case DRM_FORMAT_ABGR8888:
2852 plane_ctl |= PLANE_CTL_ORDER_RGBX;
2853 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2854 plane_ctl |= PLANE_CTL_ALPHA_SW_PREMULTIPLY;
2855 break;
Damien Lespiau70d21f02013-07-03 21:06:04 +01002856 case DRM_FORMAT_XRGB2101010:
2857 plane_ctl |= PLANE_CTL_FORMAT_XRGB_2101010;
2858 break;
2859 case DRM_FORMAT_XBGR2101010:
2860 plane_ctl |= PLANE_CTL_ORDER_RGBX;
2861 plane_ctl |= PLANE_CTL_FORMAT_XRGB_2101010;
2862 break;
2863 default:
2864 BUG();
2865 }
2866
Daniel Vetter30af77c2015-02-10 17:16:11 +00002867 switch (fb->modifier[0]) {
2868 case DRM_FORMAT_MOD_NONE:
Damien Lespiau70d21f02013-07-03 21:06:04 +01002869 break;
Daniel Vetter30af77c2015-02-10 17:16:11 +00002870 case I915_FORMAT_MOD_X_TILED:
Damien Lespiau70d21f02013-07-03 21:06:04 +01002871 plane_ctl |= PLANE_CTL_TILED_X;
Damien Lespiaub3218032015-02-27 11:15:18 +00002872 break;
2873 case I915_FORMAT_MOD_Y_TILED:
2874 plane_ctl |= PLANE_CTL_TILED_Y;
2875 break;
2876 case I915_FORMAT_MOD_Yf_TILED:
2877 plane_ctl |= PLANE_CTL_TILED_YF;
Damien Lespiau70d21f02013-07-03 21:06:04 +01002878 break;
2879 default:
Damien Lespiaub3218032015-02-27 11:15:18 +00002880 MISSING_CASE(fb->modifier[0]);
Damien Lespiau70d21f02013-07-03 21:06:04 +01002881 }
2882
2883 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
Matt Roper8e7d6882015-01-21 16:35:41 -08002884 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180))
Sonika Jindal1447dde2014-10-04 10:53:31 +01002885 plane_ctl |= PLANE_CTL_ROTATE_180;
Damien Lespiau70d21f02013-07-03 21:06:04 +01002886
Damien Lespiaub3218032015-02-27 11:15:18 +00002887 obj = intel_fb_obj(fb);
2888 stride_div = intel_fb_stride_alignment(dev, fb->modifier[0],
2889 fb->pixel_format);
2890
Damien Lespiau70d21f02013-07-03 21:06:04 +01002891 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
2892
2893 DRM_DEBUG_KMS("Writing base %08lX %d,%d,%d,%d pitch=%d\n",
2894 i915_gem_obj_ggtt_offset(obj),
2895 x, y, fb->width, fb->height,
2896 fb->pitches[0]);
2897
2898 I915_WRITE(PLANE_POS(pipe, 0), 0);
2899 I915_WRITE(PLANE_OFFSET(pipe, 0), (y << 16) | x);
2900 I915_WRITE(PLANE_SIZE(pipe, 0),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002901 (intel_crtc->config->pipe_src_h - 1) << 16 |
2902 (intel_crtc->config->pipe_src_w - 1));
Damien Lespiaub3218032015-02-27 11:15:18 +00002903 I915_WRITE(PLANE_STRIDE(pipe, 0), fb->pitches[0] / stride_div);
Damien Lespiau70d21f02013-07-03 21:06:04 +01002904 I915_WRITE(PLANE_SURF(pipe, 0), i915_gem_obj_ggtt_offset(obj));
2905
2906 POSTING_READ(PLANE_SURF(pipe, 0));
2907}
2908
Jesse Barnes17638cd2011-06-24 12:19:23 -07002909/* Assume fb object is pinned & idle & fenced and just update base pointers */
2910static int
2911intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2912 int x, int y, enum mode_set_atomic state)
2913{
2914 struct drm_device *dev = crtc->dev;
2915 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002916
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002917 if (dev_priv->display.disable_fbc)
2918 dev_priv->display.disable_fbc(dev);
Jesse Barnes81255562010-08-02 12:07:50 -07002919
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002920 dev_priv->display.update_primary_plane(crtc, fb, x, y);
2921
2922 return 0;
Jesse Barnes81255562010-08-02 12:07:50 -07002923}
2924
Ville Syrjälä75147472014-11-24 18:28:11 +02002925static void intel_complete_page_flips(struct drm_device *dev)
Ville Syrjälä96a02912013-02-18 19:08:49 +02002926{
Ville Syrjälä96a02912013-02-18 19:08:49 +02002927 struct drm_crtc *crtc;
2928
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002929 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002930 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2931 enum plane plane = intel_crtc->plane;
2932
2933 intel_prepare_page_flip(dev, plane);
2934 intel_finish_page_flip_plane(dev, plane);
2935 }
Ville Syrjälä75147472014-11-24 18:28:11 +02002936}
2937
2938static void intel_update_primary_planes(struct drm_device *dev)
2939{
2940 struct drm_i915_private *dev_priv = dev->dev_private;
2941 struct drm_crtc *crtc;
Ville Syrjälä96a02912013-02-18 19:08:49 +02002942
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002943 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002944 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2945
Rob Clark51fd3712013-11-19 12:10:12 -05002946 drm_modeset_lock(&crtc->mutex, NULL);
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002947 /*
2948 * FIXME: Once we have proper support for primary planes (and
2949 * disabling them without disabling the entire crtc) allow again
Dave Airlie66e514c2014-04-03 07:51:54 +10002950 * a NULL crtc->primary->fb.
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002951 */
Matt Roperf4510a22014-04-01 15:22:40 -07002952 if (intel_crtc->active && crtc->primary->fb)
Matt Roper262ca2b2014-03-18 17:22:55 -07002953 dev_priv->display.update_primary_plane(crtc,
Dave Airlie66e514c2014-04-03 07:51:54 +10002954 crtc->primary->fb,
Matt Roper262ca2b2014-03-18 17:22:55 -07002955 crtc->x,
2956 crtc->y);
Rob Clark51fd3712013-11-19 12:10:12 -05002957 drm_modeset_unlock(&crtc->mutex);
Ville Syrjälä96a02912013-02-18 19:08:49 +02002958 }
2959}
2960
Ville Syrjälä75147472014-11-24 18:28:11 +02002961void intel_prepare_reset(struct drm_device *dev)
2962{
Ville Syrjäläf98ce922014-11-21 21:54:30 +02002963 struct drm_i915_private *dev_priv = to_i915(dev);
2964 struct intel_crtc *crtc;
2965
Ville Syrjälä75147472014-11-24 18:28:11 +02002966 /* no reset support for gen2 */
2967 if (IS_GEN2(dev))
2968 return;
2969
2970 /* reset doesn't touch the display */
2971 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
2972 return;
2973
2974 drm_modeset_lock_all(dev);
Ville Syrjäläf98ce922014-11-21 21:54:30 +02002975
2976 /*
2977 * Disabling the crtcs gracefully seems nicer. Also the
2978 * g33 docs say we should at least disable all the planes.
2979 */
2980 for_each_intel_crtc(dev, crtc) {
2981 if (crtc->active)
2982 dev_priv->display.crtc_disable(&crtc->base);
2983 }
Ville Syrjälä75147472014-11-24 18:28:11 +02002984}
2985
2986void intel_finish_reset(struct drm_device *dev)
2987{
2988 struct drm_i915_private *dev_priv = to_i915(dev);
2989
2990 /*
2991 * Flips in the rings will be nuked by the reset,
2992 * so complete all pending flips so that user space
2993 * will get its events and not get stuck.
2994 */
2995 intel_complete_page_flips(dev);
2996
2997 /* no reset support for gen2 */
2998 if (IS_GEN2(dev))
2999 return;
3000
3001 /* reset doesn't touch the display */
3002 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) {
3003 /*
3004 * Flips in the rings have been nuked by the reset,
3005 * so update the base address of all primary
3006 * planes to the the last fb to make sure we're
3007 * showing the correct fb after a reset.
3008 */
3009 intel_update_primary_planes(dev);
3010 return;
3011 }
3012
3013 /*
3014 * The display has been reset as well,
3015 * so need a full re-initialization.
3016 */
3017 intel_runtime_pm_disable_interrupts(dev_priv);
3018 intel_runtime_pm_enable_interrupts(dev_priv);
3019
3020 intel_modeset_init_hw(dev);
3021
3022 spin_lock_irq(&dev_priv->irq_lock);
3023 if (dev_priv->display.hpd_irq_setup)
3024 dev_priv->display.hpd_irq_setup(dev);
3025 spin_unlock_irq(&dev_priv->irq_lock);
3026
3027 intel_modeset_setup_hw_state(dev, true);
3028
3029 intel_hpd_init(dev_priv);
3030
3031 drm_modeset_unlock_all(dev);
3032}
3033
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003034static int
Chris Wilson14667a42012-04-03 17:58:35 +01003035intel_finish_fb(struct drm_framebuffer *old_fb)
3036{
Matt Roper2ff8fde2014-07-08 07:50:07 -07003037 struct drm_i915_gem_object *obj = intel_fb_obj(old_fb);
Chris Wilson14667a42012-04-03 17:58:35 +01003038 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
3039 bool was_interruptible = dev_priv->mm.interruptible;
3040 int ret;
3041
Chris Wilson14667a42012-04-03 17:58:35 +01003042 /* Big Hammer, we also need to ensure that any pending
3043 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
3044 * current scanout is retired before unpinning the old
3045 * framebuffer.
3046 *
3047 * This should only fail upon a hung GPU, in which case we
3048 * can safely continue.
3049 */
3050 dev_priv->mm.interruptible = false;
3051 ret = i915_gem_object_finish_gpu(obj);
3052 dev_priv->mm.interruptible = was_interruptible;
3053
3054 return ret;
3055}
3056
Chris Wilson7d5e3792014-03-04 13:15:08 +00003057static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
3058{
3059 struct drm_device *dev = crtc->dev;
3060 struct drm_i915_private *dev_priv = dev->dev_private;
3061 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003062 bool pending;
3063
3064 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
3065 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
3066 return false;
3067
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003068 spin_lock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003069 pending = to_intel_crtc(crtc)->unpin_work != NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003070 spin_unlock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003071
3072 return pending;
3073}
3074
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003075static void intel_update_pipe_size(struct intel_crtc *crtc)
3076{
3077 struct drm_device *dev = crtc->base.dev;
3078 struct drm_i915_private *dev_priv = dev->dev_private;
3079 const struct drm_display_mode *adjusted_mode;
3080
3081 if (!i915.fastboot)
3082 return;
3083
3084 /*
3085 * Update pipe size and adjust fitter if needed: the reason for this is
3086 * that in compute_mode_changes we check the native mode (not the pfit
3087 * mode) to see if we can flip rather than do a full mode set. In the
3088 * fastboot case, we'll flip, but if we don't update the pipesrc and
3089 * pfit state, we'll end up with a big fb scanned out into the wrong
3090 * sized surface.
3091 *
3092 * To fix this properly, we need to hoist the checks up into
3093 * compute_mode_changes (or above), check the actual pfit state and
3094 * whether the platform allows pfit disable with pipe active, and only
3095 * then update the pipesrc and pfit state, even on the flip path.
3096 */
3097
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003098 adjusted_mode = &crtc->config->base.adjusted_mode;
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003099
3100 I915_WRITE(PIPESRC(crtc->pipe),
3101 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
3102 (adjusted_mode->crtc_vdisplay - 1));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003103 if (!crtc->config->pch_pfit.enabled &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03003104 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
3105 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003106 I915_WRITE(PF_CTL(crtc->pipe), 0);
3107 I915_WRITE(PF_WIN_POS(crtc->pipe), 0);
3108 I915_WRITE(PF_WIN_SZ(crtc->pipe), 0);
3109 }
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003110 crtc->config->pipe_src_w = adjusted_mode->crtc_hdisplay;
3111 crtc->config->pipe_src_h = adjusted_mode->crtc_vdisplay;
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003112}
3113
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003114static void intel_fdi_normal_train(struct drm_crtc *crtc)
3115{
3116 struct drm_device *dev = crtc->dev;
3117 struct drm_i915_private *dev_priv = dev->dev_private;
3118 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3119 int pipe = intel_crtc->pipe;
3120 u32 reg, temp;
3121
3122 /* enable normal train */
3123 reg = FDI_TX_CTL(pipe);
3124 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07003125 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07003126 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3127 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07003128 } else {
3129 temp &= ~FDI_LINK_TRAIN_NONE;
3130 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07003131 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003132 I915_WRITE(reg, temp);
3133
3134 reg = FDI_RX_CTL(pipe);
3135 temp = I915_READ(reg);
3136 if (HAS_PCH_CPT(dev)) {
3137 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3138 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3139 } else {
3140 temp &= ~FDI_LINK_TRAIN_NONE;
3141 temp |= FDI_LINK_TRAIN_NONE;
3142 }
3143 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3144
3145 /* wait one idle pattern time */
3146 POSTING_READ(reg);
3147 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07003148
3149 /* IVB wants error correction enabled */
3150 if (IS_IVYBRIDGE(dev))
3151 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3152 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003153}
3154
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003155static bool pipe_has_enabled_pch(struct intel_crtc *crtc)
Daniel Vetter1e833f42013-02-19 22:31:57 +01003156{
Matt Roper83d65732015-02-25 13:12:16 -08003157 return crtc->base.state->enable && crtc->active &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003158 crtc->config->has_pch_encoder;
Daniel Vetter1e833f42013-02-19 22:31:57 +01003159}
3160
Daniel Vetter01a415f2012-10-27 15:58:40 +02003161static void ivb_modeset_global_resources(struct drm_device *dev)
3162{
3163 struct drm_i915_private *dev_priv = dev->dev_private;
3164 struct intel_crtc *pipe_B_crtc =
3165 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
3166 struct intel_crtc *pipe_C_crtc =
3167 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
3168 uint32_t temp;
3169
Daniel Vetter1e833f42013-02-19 22:31:57 +01003170 /*
3171 * When everything is off disable fdi C so that we could enable fdi B
3172 * with all lanes. Note that we don't care about enabled pipes without
3173 * an enabled pch encoder.
3174 */
3175 if (!pipe_has_enabled_pch(pipe_B_crtc) &&
3176 !pipe_has_enabled_pch(pipe_C_crtc)) {
Daniel Vetter01a415f2012-10-27 15:58:40 +02003177 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3178 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3179
3180 temp = I915_READ(SOUTH_CHICKEN1);
3181 temp &= ~FDI_BC_BIFURCATION_SELECT;
3182 DRM_DEBUG_KMS("disabling fdi C rx\n");
3183 I915_WRITE(SOUTH_CHICKEN1, temp);
3184 }
3185}
3186
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003187/* The FDI link training functions for ILK/Ibexpeak. */
3188static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3189{
3190 struct drm_device *dev = crtc->dev;
3191 struct drm_i915_private *dev_priv = dev->dev_private;
3192 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3193 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003194 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003195
Ville Syrjälä1c8562f2014-04-25 22:12:07 +03003196 /* FDI needs bits from pipe first */
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003197 assert_pipe_enabled(dev_priv, pipe);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003198
Adam Jacksone1a44742010-06-25 15:32:14 -04003199 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3200 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003201 reg = FDI_RX_IMR(pipe);
3202 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003203 temp &= ~FDI_RX_SYMBOL_LOCK;
3204 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003205 I915_WRITE(reg, temp);
3206 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003207 udelay(150);
3208
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003209 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003210 reg = FDI_TX_CTL(pipe);
3211 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003212 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003213 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003214 temp &= ~FDI_LINK_TRAIN_NONE;
3215 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003216 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003217
Chris Wilson5eddb702010-09-11 13:48:45 +01003218 reg = FDI_RX_CTL(pipe);
3219 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003220 temp &= ~FDI_LINK_TRAIN_NONE;
3221 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003222 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3223
3224 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003225 udelay(150);
3226
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003227 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01003228 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3229 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3230 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003231
Chris Wilson5eddb702010-09-11 13:48:45 +01003232 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003233 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003234 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003235 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3236
3237 if ((temp & FDI_RX_BIT_LOCK)) {
3238 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01003239 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003240 break;
3241 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003242 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003243 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003244 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003245
3246 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003247 reg = FDI_TX_CTL(pipe);
3248 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003249 temp &= ~FDI_LINK_TRAIN_NONE;
3250 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003251 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003252
Chris Wilson5eddb702010-09-11 13:48:45 +01003253 reg = FDI_RX_CTL(pipe);
3254 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003255 temp &= ~FDI_LINK_TRAIN_NONE;
3256 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003257 I915_WRITE(reg, temp);
3258
3259 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003260 udelay(150);
3261
Chris Wilson5eddb702010-09-11 13:48:45 +01003262 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003263 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003264 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003265 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3266
3267 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003268 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003269 DRM_DEBUG_KMS("FDI train 2 done.\n");
3270 break;
3271 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003272 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003273 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003274 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003275
3276 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07003277
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003278}
3279
Akshay Joshi0206e352011-08-16 15:34:10 -04003280static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003281 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3282 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3283 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3284 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3285};
3286
3287/* The FDI link training functions for SNB/Cougarpoint. */
3288static void gen6_fdi_link_train(struct drm_crtc *crtc)
3289{
3290 struct drm_device *dev = crtc->dev;
3291 struct drm_i915_private *dev_priv = dev->dev_private;
3292 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3293 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05003294 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003295
Adam Jacksone1a44742010-06-25 15:32:14 -04003296 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3297 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003298 reg = FDI_RX_IMR(pipe);
3299 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003300 temp &= ~FDI_RX_SYMBOL_LOCK;
3301 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003302 I915_WRITE(reg, temp);
3303
3304 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003305 udelay(150);
3306
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003307 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003308 reg = FDI_TX_CTL(pipe);
3309 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003310 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003311 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003312 temp &= ~FDI_LINK_TRAIN_NONE;
3313 temp |= FDI_LINK_TRAIN_PATTERN_1;
3314 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3315 /* SNB-B */
3316 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01003317 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003318
Daniel Vetterd74cf322012-10-26 10:58:13 +02003319 I915_WRITE(FDI_RX_MISC(pipe),
3320 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3321
Chris Wilson5eddb702010-09-11 13:48:45 +01003322 reg = FDI_RX_CTL(pipe);
3323 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003324 if (HAS_PCH_CPT(dev)) {
3325 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3326 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3327 } else {
3328 temp &= ~FDI_LINK_TRAIN_NONE;
3329 temp |= FDI_LINK_TRAIN_PATTERN_1;
3330 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003331 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3332
3333 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003334 udelay(150);
3335
Akshay Joshi0206e352011-08-16 15:34:10 -04003336 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003337 reg = FDI_TX_CTL(pipe);
3338 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003339 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3340 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003341 I915_WRITE(reg, temp);
3342
3343 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003344 udelay(500);
3345
Sean Paulfa37d392012-03-02 12:53:39 -05003346 for (retry = 0; retry < 5; retry++) {
3347 reg = FDI_RX_IIR(pipe);
3348 temp = I915_READ(reg);
3349 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3350 if (temp & FDI_RX_BIT_LOCK) {
3351 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3352 DRM_DEBUG_KMS("FDI train 1 done.\n");
3353 break;
3354 }
3355 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003356 }
Sean Paulfa37d392012-03-02 12:53:39 -05003357 if (retry < 5)
3358 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003359 }
3360 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003361 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003362
3363 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003364 reg = FDI_TX_CTL(pipe);
3365 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003366 temp &= ~FDI_LINK_TRAIN_NONE;
3367 temp |= FDI_LINK_TRAIN_PATTERN_2;
3368 if (IS_GEN6(dev)) {
3369 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3370 /* SNB-B */
3371 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3372 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003373 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003374
Chris Wilson5eddb702010-09-11 13:48:45 +01003375 reg = FDI_RX_CTL(pipe);
3376 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003377 if (HAS_PCH_CPT(dev)) {
3378 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3379 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3380 } else {
3381 temp &= ~FDI_LINK_TRAIN_NONE;
3382 temp |= FDI_LINK_TRAIN_PATTERN_2;
3383 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003384 I915_WRITE(reg, temp);
3385
3386 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003387 udelay(150);
3388
Akshay Joshi0206e352011-08-16 15:34:10 -04003389 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003390 reg = FDI_TX_CTL(pipe);
3391 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003392 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3393 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003394 I915_WRITE(reg, temp);
3395
3396 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003397 udelay(500);
3398
Sean Paulfa37d392012-03-02 12:53:39 -05003399 for (retry = 0; retry < 5; retry++) {
3400 reg = FDI_RX_IIR(pipe);
3401 temp = I915_READ(reg);
3402 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3403 if (temp & FDI_RX_SYMBOL_LOCK) {
3404 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3405 DRM_DEBUG_KMS("FDI train 2 done.\n");
3406 break;
3407 }
3408 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003409 }
Sean Paulfa37d392012-03-02 12:53:39 -05003410 if (retry < 5)
3411 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003412 }
3413 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003414 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003415
3416 DRM_DEBUG_KMS("FDI train done.\n");
3417}
3418
Jesse Barnes357555c2011-04-28 15:09:55 -07003419/* Manual link training for Ivy Bridge A0 parts */
3420static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3421{
3422 struct drm_device *dev = crtc->dev;
3423 struct drm_i915_private *dev_priv = dev->dev_private;
3424 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3425 int pipe = intel_crtc->pipe;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003426 u32 reg, temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07003427
3428 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3429 for train result */
3430 reg = FDI_RX_IMR(pipe);
3431 temp = I915_READ(reg);
3432 temp &= ~FDI_RX_SYMBOL_LOCK;
3433 temp &= ~FDI_RX_BIT_LOCK;
3434 I915_WRITE(reg, temp);
3435
3436 POSTING_READ(reg);
3437 udelay(150);
3438
Daniel Vetter01a415f2012-10-27 15:58:40 +02003439 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3440 I915_READ(FDI_RX_IIR(pipe)));
3441
Jesse Barnes139ccd32013-08-19 11:04:55 -07003442 /* Try each vswing and preemphasis setting twice before moving on */
3443 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3444 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07003445 reg = FDI_TX_CTL(pipe);
3446 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003447 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3448 temp &= ~FDI_TX_ENABLE;
3449 I915_WRITE(reg, temp);
3450
3451 reg = FDI_RX_CTL(pipe);
3452 temp = I915_READ(reg);
3453 temp &= ~FDI_LINK_TRAIN_AUTO;
3454 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3455 temp &= ~FDI_RX_ENABLE;
3456 I915_WRITE(reg, temp);
3457
3458 /* enable CPU FDI TX and PCH FDI RX */
3459 reg = FDI_TX_CTL(pipe);
3460 temp = I915_READ(reg);
3461 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003462 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003463 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07003464 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003465 temp |= snb_b_fdi_train_param[j/2];
3466 temp |= FDI_COMPOSITE_SYNC;
3467 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3468
3469 I915_WRITE(FDI_RX_MISC(pipe),
3470 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3471
3472 reg = FDI_RX_CTL(pipe);
3473 temp = I915_READ(reg);
3474 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3475 temp |= FDI_COMPOSITE_SYNC;
3476 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3477
3478 POSTING_READ(reg);
3479 udelay(1); /* should be 0.5us */
3480
3481 for (i = 0; i < 4; i++) {
3482 reg = FDI_RX_IIR(pipe);
3483 temp = I915_READ(reg);
3484 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3485
3486 if (temp & FDI_RX_BIT_LOCK ||
3487 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3488 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3489 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3490 i);
3491 break;
3492 }
3493 udelay(1); /* should be 0.5us */
3494 }
3495 if (i == 4) {
3496 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3497 continue;
3498 }
3499
3500 /* Train 2 */
3501 reg = FDI_TX_CTL(pipe);
3502 temp = I915_READ(reg);
3503 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3504 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3505 I915_WRITE(reg, temp);
3506
3507 reg = FDI_RX_CTL(pipe);
3508 temp = I915_READ(reg);
3509 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3510 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07003511 I915_WRITE(reg, temp);
3512
3513 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003514 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003515
Jesse Barnes139ccd32013-08-19 11:04:55 -07003516 for (i = 0; i < 4; i++) {
3517 reg = FDI_RX_IIR(pipe);
3518 temp = I915_READ(reg);
3519 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07003520
Jesse Barnes139ccd32013-08-19 11:04:55 -07003521 if (temp & FDI_RX_SYMBOL_LOCK ||
3522 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3523 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3524 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3525 i);
3526 goto train_done;
3527 }
3528 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003529 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07003530 if (i == 4)
3531 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07003532 }
Jesse Barnes357555c2011-04-28 15:09:55 -07003533
Jesse Barnes139ccd32013-08-19 11:04:55 -07003534train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07003535 DRM_DEBUG_KMS("FDI train done.\n");
3536}
3537
Daniel Vetter88cefb62012-08-12 19:27:14 +02003538static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07003539{
Daniel Vetter88cefb62012-08-12 19:27:14 +02003540 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003541 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003542 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003543 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003544
Jesse Barnesc64e3112010-09-10 11:27:03 -07003545
Jesse Barnes0e23b992010-09-10 11:10:00 -07003546 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01003547 reg = FDI_RX_CTL(pipe);
3548 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003549 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003550 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003551 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01003552 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3553
3554 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003555 udelay(200);
3556
3557 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003558 temp = I915_READ(reg);
3559 I915_WRITE(reg, temp | FDI_PCDCLK);
3560
3561 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003562 udelay(200);
3563
Paulo Zanoni20749732012-11-23 15:30:38 -02003564 /* Enable CPU FDI TX PLL, always on for Ironlake */
3565 reg = FDI_TX_CTL(pipe);
3566 temp = I915_READ(reg);
3567 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3568 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01003569
Paulo Zanoni20749732012-11-23 15:30:38 -02003570 POSTING_READ(reg);
3571 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003572 }
3573}
3574
Daniel Vetter88cefb62012-08-12 19:27:14 +02003575static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3576{
3577 struct drm_device *dev = intel_crtc->base.dev;
3578 struct drm_i915_private *dev_priv = dev->dev_private;
3579 int pipe = intel_crtc->pipe;
3580 u32 reg, temp;
3581
3582 /* Switch from PCDclk to Rawclk */
3583 reg = FDI_RX_CTL(pipe);
3584 temp = I915_READ(reg);
3585 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3586
3587 /* Disable CPU FDI TX PLL */
3588 reg = FDI_TX_CTL(pipe);
3589 temp = I915_READ(reg);
3590 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3591
3592 POSTING_READ(reg);
3593 udelay(100);
3594
3595 reg = FDI_RX_CTL(pipe);
3596 temp = I915_READ(reg);
3597 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3598
3599 /* Wait for the clocks to turn off. */
3600 POSTING_READ(reg);
3601 udelay(100);
3602}
3603
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003604static void ironlake_fdi_disable(struct drm_crtc *crtc)
3605{
3606 struct drm_device *dev = crtc->dev;
3607 struct drm_i915_private *dev_priv = dev->dev_private;
3608 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3609 int pipe = intel_crtc->pipe;
3610 u32 reg, temp;
3611
3612 /* disable CPU FDI tx and PCH FDI rx */
3613 reg = FDI_TX_CTL(pipe);
3614 temp = I915_READ(reg);
3615 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3616 POSTING_READ(reg);
3617
3618 reg = FDI_RX_CTL(pipe);
3619 temp = I915_READ(reg);
3620 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003621 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003622 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3623
3624 POSTING_READ(reg);
3625 udelay(100);
3626
3627 /* Ironlake workaround, disable clock pointer after downing FDI */
Robin Schroereba905b2014-05-18 02:24:50 +02003628 if (HAS_PCH_IBX(dev))
Jesse Barnes6f06ce12011-01-04 15:09:38 -08003629 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003630
3631 /* still set train pattern 1 */
3632 reg = FDI_TX_CTL(pipe);
3633 temp = I915_READ(reg);
3634 temp &= ~FDI_LINK_TRAIN_NONE;
3635 temp |= FDI_LINK_TRAIN_PATTERN_1;
3636 I915_WRITE(reg, temp);
3637
3638 reg = FDI_RX_CTL(pipe);
3639 temp = I915_READ(reg);
3640 if (HAS_PCH_CPT(dev)) {
3641 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3642 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3643 } else {
3644 temp &= ~FDI_LINK_TRAIN_NONE;
3645 temp |= FDI_LINK_TRAIN_PATTERN_1;
3646 }
3647 /* BPC in FDI rx is consistent with that in PIPECONF */
3648 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003649 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003650 I915_WRITE(reg, temp);
3651
3652 POSTING_READ(reg);
3653 udelay(100);
3654}
3655
Chris Wilson5dce5b932014-01-20 10:17:36 +00003656bool intel_has_pending_fb_unpin(struct drm_device *dev)
3657{
3658 struct intel_crtc *crtc;
3659
3660 /* Note that we don't need to be called with mode_config.lock here
3661 * as our list of CRTC objects is static for the lifetime of the
3662 * device and so cannot disappear as we iterate. Similarly, we can
3663 * happily treat the predicates as racy, atomic checks as userspace
3664 * cannot claim and pin a new fb without at least acquring the
3665 * struct_mutex and so serialising with us.
3666 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003667 for_each_intel_crtc(dev, crtc) {
Chris Wilson5dce5b932014-01-20 10:17:36 +00003668 if (atomic_read(&crtc->unpin_work_count) == 0)
3669 continue;
3670
3671 if (crtc->unpin_work)
3672 intel_wait_for_vblank(dev, crtc->pipe);
3673
3674 return true;
3675 }
3676
3677 return false;
3678}
3679
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003680static void page_flip_completed(struct intel_crtc *intel_crtc)
3681{
3682 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
3683 struct intel_unpin_work *work = intel_crtc->unpin_work;
3684
3685 /* ensure that the unpin work is consistent wrt ->pending. */
3686 smp_rmb();
3687 intel_crtc->unpin_work = NULL;
3688
3689 if (work->event)
3690 drm_send_vblank_event(intel_crtc->base.dev,
3691 intel_crtc->pipe,
3692 work->event);
3693
3694 drm_crtc_vblank_put(&intel_crtc->base);
3695
3696 wake_up_all(&dev_priv->pending_flip_queue);
3697 queue_work(dev_priv->wq, &work->work);
3698
3699 trace_i915_flip_complete(intel_crtc->plane,
3700 work->pending_flip_obj);
3701}
3702
Ville Syrjälä46a55d32014-05-21 14:04:46 +03003703void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003704{
Chris Wilson0f911282012-04-17 10:05:38 +01003705 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01003706 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003707
Daniel Vetter2c10d572012-12-20 21:24:07 +01003708 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
Chris Wilson9c787942014-09-05 07:13:25 +01003709 if (WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3710 !intel_crtc_has_pending_flip(crtc),
3711 60*HZ) == 0)) {
3712 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter2c10d572012-12-20 21:24:07 +01003713
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003714 spin_lock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003715 if (intel_crtc->unpin_work) {
3716 WARN_ONCE(1, "Removing stuck page flip\n");
3717 page_flip_completed(intel_crtc);
3718 }
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003719 spin_unlock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003720 }
Chris Wilson5bb61642012-09-27 21:25:58 +01003721
Chris Wilson975d5682014-08-20 13:13:34 +01003722 if (crtc->primary->fb) {
3723 mutex_lock(&dev->struct_mutex);
3724 intel_finish_fb(crtc->primary->fb);
3725 mutex_unlock(&dev->struct_mutex);
3726 }
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003727}
3728
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003729/* Program iCLKIP clock to the desired frequency */
3730static void lpt_program_iclkip(struct drm_crtc *crtc)
3731{
3732 struct drm_device *dev = crtc->dev;
3733 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003734 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003735 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3736 u32 temp;
3737
Daniel Vetter09153002012-12-12 14:06:44 +01003738 mutex_lock(&dev_priv->dpio_lock);
3739
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003740 /* It is necessary to ungate the pixclk gate prior to programming
3741 * the divisors, and gate it back when it is done.
3742 */
3743 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3744
3745 /* Disable SSCCTL */
3746 intel_sbi_write(dev_priv, SBI_SSCCTL6,
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003747 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
3748 SBI_SSCCTL_DISABLE,
3749 SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003750
3751 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003752 if (clock == 20000) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003753 auxdiv = 1;
3754 divsel = 0x41;
3755 phaseinc = 0x20;
3756 } else {
3757 /* The iCLK virtual clock root frequency is in MHz,
Damien Lespiau241bfc32013-09-25 16:45:37 +01003758 * but the adjusted_mode->crtc_clock in in KHz. To get the
3759 * divisors, it is necessary to divide one by another, so we
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003760 * convert the virtual clock precision to KHz here for higher
3761 * precision.
3762 */
3763 u32 iclk_virtual_root_freq = 172800 * 1000;
3764 u32 iclk_pi_range = 64;
3765 u32 desired_divisor, msb_divisor_value, pi_value;
3766
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003767 desired_divisor = (iclk_virtual_root_freq / clock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003768 msb_divisor_value = desired_divisor / iclk_pi_range;
3769 pi_value = desired_divisor % iclk_pi_range;
3770
3771 auxdiv = 0;
3772 divsel = msb_divisor_value - 2;
3773 phaseinc = pi_value;
3774 }
3775
3776 /* This should not happen with any sane values */
3777 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3778 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3779 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3780 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3781
3782 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 +03003783 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003784 auxdiv,
3785 divsel,
3786 phasedir,
3787 phaseinc);
3788
3789 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003790 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003791 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3792 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3793 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3794 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3795 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3796 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003797 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003798
3799 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003800 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003801 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3802 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003803 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003804
3805 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003806 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003807 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003808 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003809
3810 /* Wait for initialization time */
3811 udelay(24);
3812
3813 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
Daniel Vetter09153002012-12-12 14:06:44 +01003814
3815 mutex_unlock(&dev_priv->dpio_lock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003816}
3817
Daniel Vetter275f01b22013-05-03 11:49:47 +02003818static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3819 enum pipe pch_transcoder)
3820{
3821 struct drm_device *dev = crtc->base.dev;
3822 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003823 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Daniel Vetter275f01b22013-05-03 11:49:47 +02003824
3825 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
3826 I915_READ(HTOTAL(cpu_transcoder)));
3827 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
3828 I915_READ(HBLANK(cpu_transcoder)));
3829 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
3830 I915_READ(HSYNC(cpu_transcoder)));
3831
3832 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
3833 I915_READ(VTOTAL(cpu_transcoder)));
3834 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
3835 I915_READ(VBLANK(cpu_transcoder)));
3836 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
3837 I915_READ(VSYNC(cpu_transcoder)));
3838 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
3839 I915_READ(VSYNCSHIFT(cpu_transcoder)));
3840}
3841
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003842static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
3843{
3844 struct drm_i915_private *dev_priv = dev->dev_private;
3845 uint32_t temp;
3846
3847 temp = I915_READ(SOUTH_CHICKEN1);
3848 if (temp & FDI_BC_BIFURCATION_SELECT)
3849 return;
3850
3851 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3852 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3853
3854 temp |= FDI_BC_BIFURCATION_SELECT;
3855 DRM_DEBUG_KMS("enabling fdi C rx\n");
3856 I915_WRITE(SOUTH_CHICKEN1, temp);
3857 POSTING_READ(SOUTH_CHICKEN1);
3858}
3859
3860static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
3861{
3862 struct drm_device *dev = intel_crtc->base.dev;
3863 struct drm_i915_private *dev_priv = dev->dev_private;
3864
3865 switch (intel_crtc->pipe) {
3866 case PIPE_A:
3867 break;
3868 case PIPE_B:
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003869 if (intel_crtc->config->fdi_lanes > 2)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003870 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
3871 else
3872 cpt_enable_fdi_bc_bifurcation(dev);
3873
3874 break;
3875 case PIPE_C:
3876 cpt_enable_fdi_bc_bifurcation(dev);
3877
3878 break;
3879 default:
3880 BUG();
3881 }
3882}
3883
Jesse Barnesf67a5592011-01-05 10:31:48 -08003884/*
3885 * Enable PCH resources required for PCH ports:
3886 * - PCH PLLs
3887 * - FDI training & RX/TX
3888 * - update transcoder timings
3889 * - DP transcoding bits
3890 * - transcoder
3891 */
3892static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003893{
3894 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003895 struct drm_i915_private *dev_priv = dev->dev_private;
3896 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3897 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003898 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003899
Daniel Vetterab9412b2013-05-03 11:49:46 +02003900 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01003901
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003902 if (IS_IVYBRIDGE(dev))
3903 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
3904
Daniel Vettercd986ab2012-10-26 10:58:12 +02003905 /* Write the TU size bits before fdi link training, so that error
3906 * detection works. */
3907 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3908 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3909
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003910 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07003911 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003912
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003913 /* We need to program the right clock selection before writing the pixel
3914 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003915 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003916 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07003917
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003918 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02003919 temp |= TRANS_DPLL_ENABLE(pipe);
3920 sel = TRANS_DPLLB_SEL(pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003921 if (intel_crtc->config->shared_dpll == DPLL_ID_PCH_PLL_B)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003922 temp |= sel;
3923 else
3924 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003925 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003926 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003927
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003928 /* XXX: pch pll's can be enabled any time before we enable the PCH
3929 * transcoder, and we actually should do this to not upset any PCH
3930 * transcoder that already use the clock when we share it.
3931 *
3932 * Note that enable_shared_dpll tries to do the right thing, but
3933 * get_shared_dpll unconditionally resets the pll - we need that to have
3934 * the right LVDS enable sequence. */
Daniel Vetter85b38942014-04-24 23:55:14 +02003935 intel_enable_shared_dpll(intel_crtc);
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003936
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08003937 /* set transcoder timing, panel must allow it */
3938 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02003939 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003940
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003941 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003942
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003943 /* For PCH DP, enable TRANS_DP_CTL */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003944 if (HAS_PCH_CPT(dev) && intel_crtc->config->has_dp_encoder) {
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003945 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01003946 reg = TRANS_DP_CTL(pipe);
3947 temp = I915_READ(reg);
3948 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08003949 TRANS_DP_SYNC_MASK |
3950 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01003951 temp |= (TRANS_DP_OUTPUT_ENABLE |
3952 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003953 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003954
3955 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003956 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003957 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003958 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003959
3960 switch (intel_trans_dp_port_sel(crtc)) {
3961 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01003962 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003963 break;
3964 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01003965 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003966 break;
3967 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01003968 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003969 break;
3970 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02003971 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003972 }
3973
Chris Wilson5eddb702010-09-11 13:48:45 +01003974 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003975 }
3976
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003977 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003978}
3979
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003980static void lpt_pch_enable(struct drm_crtc *crtc)
3981{
3982 struct drm_device *dev = crtc->dev;
3983 struct drm_i915_private *dev_priv = dev->dev_private;
3984 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003985 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003986
Daniel Vetterab9412b2013-05-03 11:49:46 +02003987 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003988
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02003989 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003990
Paulo Zanoni0540e482012-10-31 18:12:40 -02003991 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02003992 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003993
Paulo Zanoni937bb612012-10-31 18:12:47 -02003994 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003995}
3996
Daniel Vetter716c2e52014-06-25 22:02:02 +03003997void intel_put_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003998{
Daniel Vettere2b78262013-06-07 23:10:03 +02003999 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004000
4001 if (pll == NULL)
4002 return;
4003
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02004004 if (!(pll->config.crtc_mask & (1 << crtc->pipe))) {
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +02004005 WARN(1, "bad %s crtc mask\n", pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004006 return;
4007 }
4008
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02004009 pll->config.crtc_mask &= ~(1 << crtc->pipe);
4010 if (pll->config.crtc_mask == 0) {
Daniel Vetterf4a091c2013-06-10 17:28:22 +02004011 WARN_ON(pll->on);
4012 WARN_ON(pll->active);
4013 }
4014
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004015 crtc->config->shared_dpll = DPLL_ID_PRIVATE;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004016}
4017
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004018struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc,
4019 struct intel_crtc_state *crtc_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004020{
Daniel Vettere2b78262013-06-07 23:10:03 +02004021 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004022 struct intel_shared_dpll *pll;
Daniel Vettere2b78262013-06-07 23:10:03 +02004023 enum intel_dpll_id i;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004024
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004025 if (HAS_PCH_IBX(dev_priv->dev)) {
4026 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
Daniel Vetterd94ab062013-07-04 12:01:16 +02004027 i = (enum intel_dpll_id) crtc->pipe;
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004028 pll = &dev_priv->shared_dplls[i];
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004029
Daniel Vetter46edb022013-06-05 13:34:12 +02004030 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
4031 crtc->base.base.id, pll->name);
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004032
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004033 WARN_ON(pll->new_config->crtc_mask);
Daniel Vetterf2a69f42014-05-20 15:19:19 +02004034
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004035 goto found;
4036 }
4037
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004038 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4039 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004040
4041 /* Only want to check enabled timings first */
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004042 if (pll->new_config->crtc_mask == 0)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004043 continue;
4044
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004045 if (memcmp(&crtc_state->dpll_hw_state,
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004046 &pll->new_config->hw_state,
4047 sizeof(pll->new_config->hw_state)) == 0) {
4048 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (crtc mask 0x%08x, ative %d)\n",
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +02004049 crtc->base.base.id, pll->name,
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004050 pll->new_config->crtc_mask,
4051 pll->active);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004052 goto found;
4053 }
4054 }
4055
4056 /* Ok no matching timings, maybe there's a free one? */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004057 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4058 pll = &dev_priv->shared_dplls[i];
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004059 if (pll->new_config->crtc_mask == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02004060 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
4061 crtc->base.base.id, pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004062 goto found;
4063 }
4064 }
4065
4066 return NULL;
4067
4068found:
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004069 if (pll->new_config->crtc_mask == 0)
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004070 pll->new_config->hw_state = crtc_state->dpll_hw_state;
Daniel Vetterf2a69f42014-05-20 15:19:19 +02004071
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004072 crtc_state->shared_dpll = i;
Daniel Vetter46edb022013-06-05 13:34:12 +02004073 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
4074 pipe_name(crtc->pipe));
Daniel Vetter66e985c2013-06-05 13:34:20 +02004075
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004076 pll->new_config->crtc_mask |= 1 << crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004077
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004078 return pll;
4079}
4080
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004081/**
4082 * intel_shared_dpll_start_config - start a new PLL staged config
4083 * @dev_priv: DRM device
4084 * @clear_pipes: mask of pipes that will have their PLLs freed
4085 *
4086 * Starts a new PLL staged config, copying the current config but
4087 * releasing the references of pipes specified in clear_pipes.
4088 */
4089static int intel_shared_dpll_start_config(struct drm_i915_private *dev_priv,
4090 unsigned clear_pipes)
4091{
4092 struct intel_shared_dpll *pll;
4093 enum intel_dpll_id i;
4094
4095 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4096 pll = &dev_priv->shared_dplls[i];
4097
4098 pll->new_config = kmemdup(&pll->config, sizeof pll->config,
4099 GFP_KERNEL);
4100 if (!pll->new_config)
4101 goto cleanup;
4102
4103 pll->new_config->crtc_mask &= ~clear_pipes;
4104 }
4105
4106 return 0;
4107
4108cleanup:
4109 while (--i >= 0) {
4110 pll = &dev_priv->shared_dplls[i];
Ander Conselvan de Oliveiraf354d732014-11-07 14:07:41 +02004111 kfree(pll->new_config);
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004112 pll->new_config = NULL;
4113 }
4114
4115 return -ENOMEM;
4116}
4117
4118static void intel_shared_dpll_commit(struct drm_i915_private *dev_priv)
4119{
4120 struct intel_shared_dpll *pll;
4121 enum intel_dpll_id i;
4122
4123 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4124 pll = &dev_priv->shared_dplls[i];
4125
4126 WARN_ON(pll->new_config == &pll->config);
4127
4128 pll->config = *pll->new_config;
4129 kfree(pll->new_config);
4130 pll->new_config = NULL;
4131 }
4132}
4133
4134static void intel_shared_dpll_abort_config(struct drm_i915_private *dev_priv)
4135{
4136 struct intel_shared_dpll *pll;
4137 enum intel_dpll_id i;
4138
4139 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4140 pll = &dev_priv->shared_dplls[i];
4141
4142 WARN_ON(pll->new_config == &pll->config);
4143
4144 kfree(pll->new_config);
4145 pll->new_config = NULL;
4146 }
4147}
4148
Daniel Vettera1520312013-05-03 11:49:50 +02004149static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07004150{
4151 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01004152 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07004153 u32 temp;
4154
4155 temp = I915_READ(dslreg);
4156 udelay(500);
4157 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07004158 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03004159 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07004160 }
4161}
4162
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004163static void skylake_pfit_enable(struct intel_crtc *crtc)
4164{
4165 struct drm_device *dev = crtc->base.dev;
4166 struct drm_i915_private *dev_priv = dev->dev_private;
4167 int pipe = crtc->pipe;
4168
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004169 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004170 I915_WRITE(PS_CTL(pipe), PS_ENABLE);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004171 I915_WRITE(PS_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4172 I915_WRITE(PS_WIN_SZ(pipe), crtc->config->pch_pfit.size);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004173 }
4174}
4175
Jesse Barnesb074cec2013-04-25 12:55:02 -07004176static void ironlake_pfit_enable(struct intel_crtc *crtc)
4177{
4178 struct drm_device *dev = crtc->base.dev;
4179 struct drm_i915_private *dev_priv = dev->dev_private;
4180 int pipe = crtc->pipe;
4181
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004182 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07004183 /* Force use of hard-coded filter coefficients
4184 * as some pre-programmed values are broken,
4185 * e.g. x201.
4186 */
4187 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
4188 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4189 PF_PIPE_SEL_IVB(pipe));
4190 else
4191 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004192 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4193 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08004194 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004195}
4196
Matt Roper4a3b8762014-12-23 10:41:51 -08004197static void intel_enable_sprite_planes(struct drm_crtc *crtc)
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004198{
4199 struct drm_device *dev = crtc->dev;
4200 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07004201 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004202 struct intel_plane *intel_plane;
4203
Matt Roperaf2b6532014-04-01 15:22:32 -07004204 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
4205 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004206 if (intel_plane->pipe == pipe)
4207 intel_plane_restore(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07004208 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004209}
4210
Matt Roper0d703d42015-03-04 10:49:04 -08004211/*
4212 * Disable a plane internally without actually modifying the plane's state.
4213 * This will allow us to easily restore the plane later by just reprogramming
4214 * its state.
4215 */
4216static void disable_plane_internal(struct drm_plane *plane)
4217{
4218 struct intel_plane *intel_plane = to_intel_plane(plane);
4219 struct drm_plane_state *state =
4220 plane->funcs->atomic_duplicate_state(plane);
4221 struct intel_plane_state *intel_state = to_intel_plane_state(state);
4222
4223 intel_state->visible = false;
4224 intel_plane->commit_plane(plane, intel_state);
4225
4226 intel_plane_destroy_state(plane, state);
4227}
4228
Matt Roper4a3b8762014-12-23 10:41:51 -08004229static void intel_disable_sprite_planes(struct drm_crtc *crtc)
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004230{
4231 struct drm_device *dev = crtc->dev;
4232 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07004233 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004234 struct intel_plane *intel_plane;
4235
Matt Roperaf2b6532014-04-01 15:22:32 -07004236 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
4237 intel_plane = to_intel_plane(plane);
Matt Roper0d703d42015-03-04 10:49:04 -08004238 if (plane->fb && intel_plane->pipe == pipe)
4239 disable_plane_internal(plane);
Matt Roperaf2b6532014-04-01 15:22:32 -07004240 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004241}
4242
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004243void hsw_enable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004244{
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004245 struct drm_device *dev = crtc->base.dev;
4246 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid77e4532013-09-24 13:52:55 -03004247
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004248 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004249 return;
4250
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004251 /* We can only enable IPS after we enable a plane and wait for a vblank */
4252 intel_wait_for_vblank(dev, crtc->pipe);
4253
Paulo Zanonid77e4532013-09-24 13:52:55 -03004254 assert_plane_enabled(dev_priv, crtc->plane);
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004255 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004256 mutex_lock(&dev_priv->rps.hw_lock);
4257 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4258 mutex_unlock(&dev_priv->rps.hw_lock);
4259 /* Quoting Art Runyan: "its not safe to expect any particular
4260 * value in IPS_CTL bit 31 after enabling IPS through the
Jesse Barnese59150d2014-01-07 13:30:45 -08004261 * mailbox." Moreover, the mailbox may return a bogus state,
4262 * so we need to just enable it and continue on.
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004263 */
4264 } else {
4265 I915_WRITE(IPS_CTL, IPS_ENABLE);
4266 /* The bit only becomes 1 in the next vblank, so this wait here
4267 * is essentially intel_wait_for_vblank. If we don't have this
4268 * and don't wait for vblanks until the end of crtc_enable, then
4269 * the HW state readout code will complain that the expected
4270 * IPS_CTL value is not the one we read. */
4271 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
4272 DRM_ERROR("Timed out waiting for IPS enable\n");
4273 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004274}
4275
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004276void hsw_disable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004277{
4278 struct drm_device *dev = crtc->base.dev;
4279 struct drm_i915_private *dev_priv = dev->dev_private;
4280
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004281 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004282 return;
4283
4284 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004285 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004286 mutex_lock(&dev_priv->rps.hw_lock);
4287 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4288 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004289 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
4290 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
4291 DRM_ERROR("Timed out waiting for IPS disable\n");
Jesse Barnese59150d2014-01-07 13:30:45 -08004292 } else {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004293 I915_WRITE(IPS_CTL, 0);
Jesse Barnese59150d2014-01-07 13:30:45 -08004294 POSTING_READ(IPS_CTL);
4295 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004296
4297 /* We need to wait for a vblank before we can disable the plane. */
4298 intel_wait_for_vblank(dev, crtc->pipe);
4299}
4300
4301/** Loads the palette/gamma unit for the CRTC with the prepared values */
4302static void intel_crtc_load_lut(struct drm_crtc *crtc)
4303{
4304 struct drm_device *dev = crtc->dev;
4305 struct drm_i915_private *dev_priv = dev->dev_private;
4306 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4307 enum pipe pipe = intel_crtc->pipe;
4308 int palreg = PALETTE(pipe);
4309 int i;
4310 bool reenable_ips = false;
4311
4312 /* The clocks have to be on to load the palette. */
Matt Roper83d65732015-02-25 13:12:16 -08004313 if (!crtc->state->enable || !intel_crtc->active)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004314 return;
4315
4316 if (!HAS_PCH_SPLIT(dev_priv->dev)) {
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03004317 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI))
Paulo Zanonid77e4532013-09-24 13:52:55 -03004318 assert_dsi_pll_enabled(dev_priv);
4319 else
4320 assert_pll_enabled(dev_priv, pipe);
4321 }
4322
4323 /* use legacy palette for Ironlake */
Sonika Jindal7a1db492014-07-22 11:18:27 +05304324 if (!HAS_GMCH_DISPLAY(dev))
Paulo Zanonid77e4532013-09-24 13:52:55 -03004325 palreg = LGC_PALETTE(pipe);
4326
4327 /* Workaround : Do not read or write the pipe palette/gamma data while
4328 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
4329 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004330 if (IS_HASWELL(dev) && intel_crtc->config->ips_enabled &&
Paulo Zanonid77e4532013-09-24 13:52:55 -03004331 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
4332 GAMMA_MODE_MODE_SPLIT)) {
4333 hsw_disable_ips(intel_crtc);
4334 reenable_ips = true;
4335 }
4336
4337 for (i = 0; i < 256; i++) {
4338 I915_WRITE(palreg + 4 * i,
4339 (intel_crtc->lut_r[i] << 16) |
4340 (intel_crtc->lut_g[i] << 8) |
4341 intel_crtc->lut_b[i]);
4342 }
4343
4344 if (reenable_ips)
4345 hsw_enable_ips(intel_crtc);
4346}
4347
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004348static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
4349{
4350 if (!enable && intel_crtc->overlay) {
4351 struct drm_device *dev = intel_crtc->base.dev;
4352 struct drm_i915_private *dev_priv = dev->dev_private;
4353
4354 mutex_lock(&dev->struct_mutex);
4355 dev_priv->mm.interruptible = false;
4356 (void) intel_overlay_switch_off(intel_crtc->overlay);
4357 dev_priv->mm.interruptible = true;
4358 mutex_unlock(&dev->struct_mutex);
4359 }
4360
4361 /* Let userspace switch the overlay on again. In most cases userspace
4362 * has to recompute where to put it anyway.
4363 */
4364}
4365
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004366static void intel_crtc_enable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004367{
4368 struct drm_device *dev = crtc->dev;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004369 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4370 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004371
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03004372 intel_enable_primary_hw_plane(crtc->primary, crtc);
Matt Roper4a3b8762014-12-23 10:41:51 -08004373 intel_enable_sprite_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004374 intel_crtc_update_cursor(crtc, true);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004375 intel_crtc_dpms_overlay(intel_crtc, true);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004376
4377 hsw_enable_ips(intel_crtc);
4378
4379 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004380 intel_fbc_update(dev);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004381 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf99d7062014-06-19 16:01:59 +02004382
4383 /*
4384 * FIXME: Once we grow proper nuclear flip support out of this we need
4385 * to compute the mask of flip planes precisely. For the time being
4386 * consider this a flip from a NULL plane.
4387 */
4388 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004389}
4390
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004391static void intel_crtc_disable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004392{
4393 struct drm_device *dev = crtc->dev;
4394 struct drm_i915_private *dev_priv = dev->dev_private;
4395 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4396 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004397
4398 intel_crtc_wait_for_pending_flips(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004399
Paulo Zanonie35fef22015-02-09 14:46:29 -02004400 if (dev_priv->fbc.crtc == intel_crtc)
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004401 intel_fbc_disable(dev);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004402
4403 hsw_disable_ips(intel_crtc);
4404
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004405 intel_crtc_dpms_overlay(intel_crtc, false);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004406 intel_crtc_update_cursor(crtc, false);
Matt Roper4a3b8762014-12-23 10:41:51 -08004407 intel_disable_sprite_planes(crtc);
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03004408 intel_disable_primary_hw_plane(crtc->primary, crtc);
Ville Syrjäläf98551a2014-05-22 17:48:06 +03004409
Daniel Vetterf99d7062014-06-19 16:01:59 +02004410 /*
4411 * FIXME: Once we grow proper nuclear flip support out of this we need
4412 * to compute the mask of flip planes precisely. For the time being
4413 * consider this a flip to a NULL plane.
4414 */
4415 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004416}
4417
Jesse Barnesf67a5592011-01-05 10:31:48 -08004418static void ironlake_crtc_enable(struct drm_crtc *crtc)
4419{
4420 struct drm_device *dev = crtc->dev;
4421 struct drm_i915_private *dev_priv = dev->dev_private;
4422 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004423 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004424 int pipe = intel_crtc->pipe;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004425
Matt Roper83d65732015-02-25 13:12:16 -08004426 WARN_ON(!crtc->state->enable);
Daniel Vetter08a48462012-07-02 11:43:47 +02004427
Jesse Barnesf67a5592011-01-05 10:31:48 -08004428 if (intel_crtc->active)
4429 return;
4430
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004431 if (intel_crtc->config->has_pch_encoder)
Daniel Vetterb14b1052014-04-24 23:55:13 +02004432 intel_prepare_shared_dpll(intel_crtc);
4433
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004434 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05304435 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004436
4437 intel_set_pipe_timings(intel_crtc);
4438
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004439 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter29407aa2014-04-24 23:55:08 +02004440 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004441 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004442 }
4443
4444 ironlake_set_pipeconf(crtc);
4445
Jesse Barnesf67a5592011-01-05 10:31:48 -08004446 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004447
Daniel Vettera72e4c92014-09-30 10:56:47 +02004448 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4449 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni86642812013-04-12 17:57:57 -03004450
Daniel Vetterf6736a12013-06-05 13:34:30 +02004451 for_each_encoder_on_crtc(dev, crtc, encoder)
Daniel Vetter952735e2013-06-05 13:34:27 +02004452 if (encoder->pre_enable)
4453 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004454
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004455 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02004456 /* Note: FDI PLL enabling _must_ be done before we enable the
4457 * cpu pipes, hence this is separate from all the other fdi/pch
4458 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02004459 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02004460 } else {
4461 assert_fdi_tx_disabled(dev_priv, pipe);
4462 assert_fdi_rx_disabled(dev_priv, pipe);
4463 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004464
Jesse Barnesb074cec2013-04-25 12:55:02 -07004465 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004466
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02004467 /*
4468 * On ILK+ LUT must be loaded before the pipe is running but with
4469 * clocks enabled
4470 */
4471 intel_crtc_load_lut(crtc);
4472
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004473 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004474 intel_enable_pipe(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004475
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004476 if (intel_crtc->config->has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08004477 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004478
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004479 assert_vblank_disabled(crtc);
4480 drm_crtc_vblank_on(crtc);
4481
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004482 for_each_encoder_on_crtc(dev, crtc, encoder)
4483 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02004484
4485 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02004486 cpt_verify_modeset(dev, intel_crtc->pipe);
Daniel Vetter6ce94102012-10-04 19:20:03 +02004487
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004488 intel_crtc_enable_planes(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004489}
4490
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004491/* IPS only exists on ULT machines and is tied to pipe A. */
4492static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4493{
Damien Lespiauf5adf942013-06-24 18:29:34 +01004494 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004495}
4496
Paulo Zanonie4916942013-09-20 16:21:19 -03004497/*
4498 * This implements the workaround described in the "notes" section of the mode
4499 * set sequence documentation. When going from no pipes or single pipe to
4500 * multiple pipes, and planes are enabled after the pipe, we need to wait at
4501 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
4502 */
4503static void haswell_mode_set_planes_workaround(struct intel_crtc *crtc)
4504{
4505 struct drm_device *dev = crtc->base.dev;
4506 struct intel_crtc *crtc_it, *other_active_crtc = NULL;
4507
4508 /* We want to get the other_active_crtc only if there's only 1 other
4509 * active crtc. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004510 for_each_intel_crtc(dev, crtc_it) {
Paulo Zanonie4916942013-09-20 16:21:19 -03004511 if (!crtc_it->active || crtc_it == crtc)
4512 continue;
4513
4514 if (other_active_crtc)
4515 return;
4516
4517 other_active_crtc = crtc_it;
4518 }
4519 if (!other_active_crtc)
4520 return;
4521
4522 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4523 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4524}
4525
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004526static void haswell_crtc_enable(struct drm_crtc *crtc)
4527{
4528 struct drm_device *dev = crtc->dev;
4529 struct drm_i915_private *dev_priv = dev->dev_private;
4530 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4531 struct intel_encoder *encoder;
4532 int pipe = intel_crtc->pipe;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004533
Matt Roper83d65732015-02-25 13:12:16 -08004534 WARN_ON(!crtc->state->enable);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004535
4536 if (intel_crtc->active)
4537 return;
4538
Daniel Vetterdf8ad702014-06-25 22:02:03 +03004539 if (intel_crtc_to_shared_dpll(intel_crtc))
4540 intel_enable_shared_dpll(intel_crtc);
4541
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004542 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05304543 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter229fca92014-04-24 23:55:09 +02004544
4545 intel_set_pipe_timings(intel_crtc);
4546
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004547 if (intel_crtc->config->cpu_transcoder != TRANSCODER_EDP) {
4548 I915_WRITE(PIPE_MULT(intel_crtc->config->cpu_transcoder),
4549 intel_crtc->config->pixel_multiplier - 1);
Clint Taylorebb69c92014-09-30 10:30:22 -07004550 }
4551
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004552 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter229fca92014-04-24 23:55:09 +02004553 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004554 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter229fca92014-04-24 23:55:09 +02004555 }
4556
4557 haswell_set_pipeconf(crtc);
4558
4559 intel_set_pipe_csc(crtc);
4560
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004561 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004562
Daniel Vettera72e4c92014-09-30 10:56:47 +02004563 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004564 for_each_encoder_on_crtc(dev, crtc, encoder)
4565 if (encoder->pre_enable)
4566 encoder->pre_enable(encoder);
4567
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004568 if (intel_crtc->config->has_pch_encoder) {
Daniel Vettera72e4c92014-09-30 10:56:47 +02004569 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4570 true);
Imre Deak4fe94672014-06-25 22:01:49 +03004571 dev_priv->display.fdi_link_train(crtc);
4572 }
4573
Paulo Zanoni1f544382012-10-24 11:32:00 -02004574 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004575
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004576 if (IS_SKYLAKE(dev))
4577 skylake_pfit_enable(intel_crtc);
4578 else
4579 ironlake_pfit_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004580
4581 /*
4582 * On ILK+ LUT must be loaded before the pipe is running but with
4583 * clocks enabled
4584 */
4585 intel_crtc_load_lut(crtc);
4586
Paulo Zanoni1f544382012-10-24 11:32:00 -02004587 intel_ddi_set_pipe_settings(crtc);
Damien Lespiau8228c252013-03-07 15:30:27 +00004588 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004589
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004590 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004591 intel_enable_pipe(intel_crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004592
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004593 if (intel_crtc->config->has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004594 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004595
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004596 if (intel_crtc->config->dp_encoder_is_mst)
Dave Airlie0e32b392014-05-02 14:02:48 +10004597 intel_ddi_set_vc_payload_alloc(crtc, true);
4598
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004599 assert_vblank_disabled(crtc);
4600 drm_crtc_vblank_on(crtc);
4601
Jani Nikula8807e552013-08-30 19:40:32 +03004602 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004603 encoder->enable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004604 intel_opregion_notify_encoder(encoder, true);
4605 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004606
Paulo Zanonie4916942013-09-20 16:21:19 -03004607 /* If we change the relative order between pipe/planes enabling, we need
4608 * to change the workaround. */
4609 haswell_mode_set_planes_workaround(intel_crtc);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004610 intel_crtc_enable_planes(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004611}
4612
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004613static void skylake_pfit_disable(struct intel_crtc *crtc)
4614{
4615 struct drm_device *dev = crtc->base.dev;
4616 struct drm_i915_private *dev_priv = dev->dev_private;
4617 int pipe = crtc->pipe;
4618
4619 /* To avoid upsetting the power well on haswell only disable the pfit if
4620 * it's in use. The hw state code will make sure we get this right. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004621 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004622 I915_WRITE(PS_CTL(pipe), 0);
4623 I915_WRITE(PS_WIN_POS(pipe), 0);
4624 I915_WRITE(PS_WIN_SZ(pipe), 0);
4625 }
4626}
4627
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004628static void ironlake_pfit_disable(struct intel_crtc *crtc)
4629{
4630 struct drm_device *dev = crtc->base.dev;
4631 struct drm_i915_private *dev_priv = dev->dev_private;
4632 int pipe = crtc->pipe;
4633
4634 /* To avoid upsetting the power well on haswell only disable the pfit if
4635 * it's in use. The hw state code will make sure we get this right. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004636 if (crtc->config->pch_pfit.enabled) {
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004637 I915_WRITE(PF_CTL(pipe), 0);
4638 I915_WRITE(PF_WIN_POS(pipe), 0);
4639 I915_WRITE(PF_WIN_SZ(pipe), 0);
4640 }
4641}
4642
Jesse Barnes6be4a602010-09-10 10:26:01 -07004643static void ironlake_crtc_disable(struct drm_crtc *crtc)
4644{
4645 struct drm_device *dev = crtc->dev;
4646 struct drm_i915_private *dev_priv = dev->dev_private;
4647 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004648 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004649 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01004650 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004651
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004652 if (!intel_crtc->active)
4653 return;
4654
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004655 intel_crtc_disable_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004656
Daniel Vetterea9d7582012-07-10 10:42:52 +02004657 for_each_encoder_on_crtc(dev, crtc, encoder)
4658 encoder->disable(encoder);
4659
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004660 drm_crtc_vblank_off(crtc);
4661 assert_vblank_disabled(crtc);
4662
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004663 if (intel_crtc->config->has_pch_encoder)
Daniel Vettera72e4c92014-09-30 10:56:47 +02004664 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
Daniel Vetterd925c592013-06-05 13:34:04 +02004665
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03004666 intel_disable_pipe(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004667
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004668 ironlake_pfit_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004669
Daniel Vetterbf49ec82012-09-06 22:15:40 +02004670 for_each_encoder_on_crtc(dev, crtc, encoder)
4671 if (encoder->post_disable)
4672 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004673
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004674 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterd925c592013-06-05 13:34:04 +02004675 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004676
Daniel Vetterd925c592013-06-05 13:34:04 +02004677 ironlake_disable_pch_transcoder(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004678
Daniel Vetterd925c592013-06-05 13:34:04 +02004679 if (HAS_PCH_CPT(dev)) {
4680 /* disable TRANS_DP_CTL */
4681 reg = TRANS_DP_CTL(pipe);
4682 temp = I915_READ(reg);
4683 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
4684 TRANS_DP_PORT_SEL_MASK);
4685 temp |= TRANS_DP_PORT_SEL_NONE;
4686 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004687
Daniel Vetterd925c592013-06-05 13:34:04 +02004688 /* disable DPLL_SEL */
4689 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02004690 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
Daniel Vetterd925c592013-06-05 13:34:04 +02004691 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004692 }
Daniel Vetterd925c592013-06-05 13:34:04 +02004693
4694 /* disable PCH DPLL */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004695 intel_disable_shared_dpll(intel_crtc);
Daniel Vetterd925c592013-06-05 13:34:04 +02004696
4697 ironlake_fdi_pll_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004698 }
4699
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004700 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004701 intel_update_watermarks(crtc);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004702
4703 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004704 intel_fbc_update(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004705 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004706}
4707
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004708static void haswell_crtc_disable(struct drm_crtc *crtc)
4709{
4710 struct drm_device *dev = crtc->dev;
4711 struct drm_i915_private *dev_priv = dev->dev_private;
4712 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4713 struct intel_encoder *encoder;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004714 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004715
4716 if (!intel_crtc->active)
4717 return;
4718
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004719 intel_crtc_disable_planes(crtc);
Ville Syrjälädda9a662013-09-19 17:00:37 -03004720
Jani Nikula8807e552013-08-30 19:40:32 +03004721 for_each_encoder_on_crtc(dev, crtc, encoder) {
4722 intel_opregion_notify_encoder(encoder, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004723 encoder->disable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004724 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004725
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004726 drm_crtc_vblank_off(crtc);
4727 assert_vblank_disabled(crtc);
4728
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004729 if (intel_crtc->config->has_pch_encoder)
Daniel Vettera72e4c92014-09-30 10:56:47 +02004730 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4731 false);
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03004732 intel_disable_pipe(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004733
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004734 if (intel_crtc->config->dp_encoder_is_mst)
Ville Syrjäläa4bf2142014-08-18 21:27:34 +03004735 intel_ddi_set_vc_payload_alloc(crtc, false);
4736
Paulo Zanoniad80a812012-10-24 16:06:19 -02004737 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004738
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004739 if (IS_SKYLAKE(dev))
4740 skylake_pfit_disable(intel_crtc);
4741 else
4742 ironlake_pfit_disable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004743
Paulo Zanoni1f544382012-10-24 11:32:00 -02004744 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004745
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004746 if (intel_crtc->config->has_pch_encoder) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02004747 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02004748 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02004749 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004750
Imre Deak97b040a2014-06-25 22:01:50 +03004751 for_each_encoder_on_crtc(dev, crtc, encoder)
4752 if (encoder->post_disable)
4753 encoder->post_disable(encoder);
4754
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004755 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004756 intel_update_watermarks(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004757
4758 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004759 intel_fbc_update(dev);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004760 mutex_unlock(&dev->struct_mutex);
Daniel Vetterdf8ad702014-06-25 22:02:03 +03004761
4762 if (intel_crtc_to_shared_dpll(intel_crtc))
4763 intel_disable_shared_dpll(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004764}
4765
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004766static void ironlake_crtc_off(struct drm_crtc *crtc)
4767{
4768 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004769 intel_put_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004770}
4771
Paulo Zanoni6441ab52012-10-05 12:05:58 -03004772
Jesse Barnes2dd24552013-04-25 12:55:01 -07004773static void i9xx_pfit_enable(struct intel_crtc *crtc)
4774{
4775 struct drm_device *dev = crtc->base.dev;
4776 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004777 struct intel_crtc_state *pipe_config = crtc->config;
Jesse Barnes2dd24552013-04-25 12:55:01 -07004778
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02004779 if (!pipe_config->gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07004780 return;
4781
Daniel Vetterc0b03412013-05-28 12:05:54 +02004782 /*
4783 * The panel fitter should only be adjusted whilst the pipe is disabled,
4784 * according to register description and PRM.
4785 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07004786 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
4787 assert_pipe_disabled(dev_priv, crtc->pipe);
4788
Jesse Barnesb074cec2013-04-25 12:55:02 -07004789 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
4790 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02004791
4792 /* Border color in case we don't scale up to the full screen. Black by
4793 * default, change to something else for debugging. */
4794 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07004795}
4796
Dave Airlied05410f2014-06-05 13:22:59 +10004797static enum intel_display_power_domain port_to_power_domain(enum port port)
4798{
4799 switch (port) {
4800 case PORT_A:
4801 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
4802 case PORT_B:
4803 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
4804 case PORT_C:
4805 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
4806 case PORT_D:
4807 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
4808 default:
4809 WARN_ON_ONCE(1);
4810 return POWER_DOMAIN_PORT_OTHER;
4811 }
4812}
4813
Imre Deak77d22dc2014-03-05 16:20:52 +02004814#define for_each_power_domain(domain, mask) \
4815 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
4816 if ((1 << (domain)) & (mask))
4817
Imre Deak319be8a2014-03-04 19:22:57 +02004818enum intel_display_power_domain
4819intel_display_port_power_domain(struct intel_encoder *intel_encoder)
Imre Deak77d22dc2014-03-05 16:20:52 +02004820{
Imre Deak319be8a2014-03-04 19:22:57 +02004821 struct drm_device *dev = intel_encoder->base.dev;
4822 struct intel_digital_port *intel_dig_port;
4823
4824 switch (intel_encoder->type) {
4825 case INTEL_OUTPUT_UNKNOWN:
4826 /* Only DDI platforms should ever use this output type */
4827 WARN_ON_ONCE(!HAS_DDI(dev));
4828 case INTEL_OUTPUT_DISPLAYPORT:
4829 case INTEL_OUTPUT_HDMI:
4830 case INTEL_OUTPUT_EDP:
4831 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
Dave Airlied05410f2014-06-05 13:22:59 +10004832 return port_to_power_domain(intel_dig_port->port);
Dave Airlie0e32b392014-05-02 14:02:48 +10004833 case INTEL_OUTPUT_DP_MST:
4834 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
4835 return port_to_power_domain(intel_dig_port->port);
Imre Deak319be8a2014-03-04 19:22:57 +02004836 case INTEL_OUTPUT_ANALOG:
4837 return POWER_DOMAIN_PORT_CRT;
4838 case INTEL_OUTPUT_DSI:
4839 return POWER_DOMAIN_PORT_DSI;
4840 default:
4841 return POWER_DOMAIN_PORT_OTHER;
4842 }
4843}
4844
4845static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
4846{
4847 struct drm_device *dev = crtc->dev;
4848 struct intel_encoder *intel_encoder;
4849 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4850 enum pipe pipe = intel_crtc->pipe;
Imre Deak77d22dc2014-03-05 16:20:52 +02004851 unsigned long mask;
4852 enum transcoder transcoder;
4853
4854 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
4855
4856 mask = BIT(POWER_DOMAIN_PIPE(pipe));
4857 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004858 if (intel_crtc->config->pch_pfit.enabled ||
4859 intel_crtc->config->pch_pfit.force_thru)
Imre Deak77d22dc2014-03-05 16:20:52 +02004860 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
4861
Imre Deak319be8a2014-03-04 19:22:57 +02004862 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4863 mask |= BIT(intel_display_port_power_domain(intel_encoder));
4864
Imre Deak77d22dc2014-03-05 16:20:52 +02004865 return mask;
4866}
4867
Imre Deak77d22dc2014-03-05 16:20:52 +02004868static void modeset_update_crtc_power_domains(struct drm_device *dev)
4869{
4870 struct drm_i915_private *dev_priv = dev->dev_private;
4871 unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
4872 struct intel_crtc *crtc;
4873
4874 /*
4875 * First get all needed power domains, then put all unneeded, to avoid
4876 * any unnecessary toggling of the power wells.
4877 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004878 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004879 enum intel_display_power_domain domain;
4880
Matt Roper83d65732015-02-25 13:12:16 -08004881 if (!crtc->base.state->enable)
Imre Deak77d22dc2014-03-05 16:20:52 +02004882 continue;
4883
Imre Deak319be8a2014-03-04 19:22:57 +02004884 pipe_domains[crtc->pipe] = get_crtc_power_domains(&crtc->base);
Imre Deak77d22dc2014-03-05 16:20:52 +02004885
4886 for_each_power_domain(domain, pipe_domains[crtc->pipe])
4887 intel_display_power_get(dev_priv, domain);
4888 }
4889
Ville Syrjälä50f6e502014-11-06 14:49:12 +02004890 if (dev_priv->display.modeset_global_resources)
4891 dev_priv->display.modeset_global_resources(dev);
4892
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004893 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004894 enum intel_display_power_domain domain;
4895
4896 for_each_power_domain(domain, crtc->enabled_power_domains)
4897 intel_display_power_put(dev_priv, domain);
4898
4899 crtc->enabled_power_domains = pipe_domains[crtc->pipe];
4900 }
4901
4902 intel_display_set_init_power(dev_priv, false);
4903}
4904
Ville Syrjälädfcab172014-06-13 13:37:47 +03004905/* returns HPLL frequency in kHz */
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004906static int valleyview_get_vco(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004907{
Jesse Barnes586f49d2013-11-04 16:06:59 -08004908 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
Jesse Barnes30a970c2013-11-04 13:48:12 -08004909
Jesse Barnes586f49d2013-11-04 16:06:59 -08004910 /* Obtain SKU information */
4911 mutex_lock(&dev_priv->dpio_lock);
4912 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
4913 CCK_FUSE_HPLL_FREQ_MASK;
4914 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004915
Ville Syrjälädfcab172014-06-13 13:37:47 +03004916 return vco_freq[hpll_freq] * 1000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004917}
4918
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004919static void vlv_update_cdclk(struct drm_device *dev)
4920{
4921 struct drm_i915_private *dev_priv = dev->dev_private;
4922
4923 dev_priv->vlv_cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
Ville Syrjälä43dc52c2014-10-07 17:41:20 +03004924 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004925 dev_priv->vlv_cdclk_freq);
4926
4927 /*
4928 * Program the gmbus_freq based on the cdclk frequency.
4929 * BSpec erroneously claims we should aim for 4MHz, but
4930 * in fact 1MHz is the correct frequency.
4931 */
Ville Syrjälä6be1e3d2014-10-16 20:52:31 +03004932 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->vlv_cdclk_freq, 1000));
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004933}
4934
Jesse Barnes30a970c2013-11-04 13:48:12 -08004935/* Adjust CDclk dividers to allow high res or save power if possible */
4936static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
4937{
4938 struct drm_i915_private *dev_priv = dev->dev_private;
4939 u32 val, cmd;
4940
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03004941 WARN_ON(dev_priv->display.get_display_clock_speed(dev) != dev_priv->vlv_cdclk_freq);
Imre Deakd60c4472014-03-27 17:45:10 +02004942
Ville Syrjälädfcab172014-06-13 13:37:47 +03004943 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
Jesse Barnes30a970c2013-11-04 13:48:12 -08004944 cmd = 2;
Ville Syrjälädfcab172014-06-13 13:37:47 +03004945 else if (cdclk == 266667)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004946 cmd = 1;
4947 else
4948 cmd = 0;
4949
4950 mutex_lock(&dev_priv->rps.hw_lock);
4951 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4952 val &= ~DSPFREQGUAR_MASK;
4953 val |= (cmd << DSPFREQGUAR_SHIFT);
4954 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4955 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4956 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
4957 50)) {
4958 DRM_ERROR("timed out waiting for CDclk change\n");
4959 }
4960 mutex_unlock(&dev_priv->rps.hw_lock);
4961
Ville Syrjälädfcab172014-06-13 13:37:47 +03004962 if (cdclk == 400000) {
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03004963 u32 divider;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004964
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03004965 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004966
4967 mutex_lock(&dev_priv->dpio_lock);
4968 /* adjust cdclk divider */
4969 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
Ville Syrjälä9cf33db2014-06-13 13:37:48 +03004970 val &= ~DISPLAY_FREQUENCY_VALUES;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004971 val |= divider;
4972 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
Ville Syrjäläa877e802014-06-13 13:37:52 +03004973
4974 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
4975 DISPLAY_FREQUENCY_STATUS) == (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
4976 50))
4977 DRM_ERROR("timed out waiting for CDclk change\n");
Jesse Barnes30a970c2013-11-04 13:48:12 -08004978 mutex_unlock(&dev_priv->dpio_lock);
4979 }
4980
4981 mutex_lock(&dev_priv->dpio_lock);
4982 /* adjust self-refresh exit latency value */
4983 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
4984 val &= ~0x7f;
4985
4986 /*
4987 * For high bandwidth configs, we set a higher latency in the bunit
4988 * so that the core display fetch happens in time to avoid underruns.
4989 */
Ville Syrjälädfcab172014-06-13 13:37:47 +03004990 if (cdclk == 400000)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004991 val |= 4500 / 250; /* 4.5 usec */
4992 else
4993 val |= 3000 / 250; /* 3.0 usec */
4994 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
4995 mutex_unlock(&dev_priv->dpio_lock);
4996
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004997 vlv_update_cdclk(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004998}
4999
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005000static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
5001{
5002 struct drm_i915_private *dev_priv = dev->dev_private;
5003 u32 val, cmd;
5004
5005 WARN_ON(dev_priv->display.get_display_clock_speed(dev) != dev_priv->vlv_cdclk_freq);
5006
5007 switch (cdclk) {
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005008 case 333333:
5009 case 320000:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005010 case 266667:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005011 case 200000:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005012 break;
5013 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01005014 MISSING_CASE(cdclk);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005015 return;
5016 }
5017
Ville Syrjälä9d0d3fd2015-03-02 20:07:17 +02005018 /*
5019 * Specs are full of misinformation, but testing on actual
5020 * hardware has shown that we just need to write the desired
5021 * CCK divider into the Punit register.
5022 */
5023 cmd = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
5024
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005025 mutex_lock(&dev_priv->rps.hw_lock);
5026 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5027 val &= ~DSPFREQGUAR_MASK_CHV;
5028 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
5029 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5030 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5031 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
5032 50)) {
5033 DRM_ERROR("timed out waiting for CDclk change\n");
5034 }
5035 mutex_unlock(&dev_priv->rps.hw_lock);
5036
5037 vlv_update_cdclk(dev);
5038}
5039
Jesse Barnes30a970c2013-11-04 13:48:12 -08005040static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
5041 int max_pixclk)
5042{
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005043 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005044 int limit = IS_CHERRYVIEW(dev_priv) ? 95 : 90;
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005045
Jesse Barnes30a970c2013-11-04 13:48:12 -08005046 /*
5047 * Really only a few cases to deal with, as only 4 CDclks are supported:
5048 * 200MHz
5049 * 267MHz
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005050 * 320/333MHz (depends on HPLL freq)
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005051 * 400MHz (VLV only)
5052 * So we check to see whether we're above 90% (VLV) or 95% (CHV)
5053 * of the lower bin and adjust if needed.
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005054 *
5055 * We seem to get an unstable or solid color picture at 200MHz.
5056 * Not sure what's wrong. For now use 200MHz only when all pipes
5057 * are off.
Jesse Barnes30a970c2013-11-04 13:48:12 -08005058 */
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005059 if (!IS_CHERRYVIEW(dev_priv) &&
5060 max_pixclk > freq_320*limit/100)
Ville Syrjälädfcab172014-06-13 13:37:47 +03005061 return 400000;
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005062 else if (max_pixclk > 266667*limit/100)
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005063 return freq_320;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005064 else if (max_pixclk > 0)
Ville Syrjälädfcab172014-06-13 13:37:47 +03005065 return 266667;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005066 else
5067 return 200000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005068}
5069
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02005070/* compute the max pixel clock for new configuration */
5071static int intel_mode_max_pixclk(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005072{
5073 struct drm_device *dev = dev_priv->dev;
5074 struct intel_crtc *intel_crtc;
5075 int max_pixclk = 0;
5076
Damien Lespiaud3fcc802014-05-13 23:32:22 +01005077 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02005078 if (intel_crtc->new_enabled)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005079 max_pixclk = max(max_pixclk,
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02005080 intel_crtc->new_config->base.adjusted_mode.crtc_clock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005081 }
5082
5083 return max_pixclk;
5084}
5085
5086static void valleyview_modeset_global_pipes(struct drm_device *dev,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02005087 unsigned *prepare_pipes)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005088{
5089 struct drm_i915_private *dev_priv = dev->dev_private;
5090 struct intel_crtc *intel_crtc;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02005091 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005092
Imre Deakd60c4472014-03-27 17:45:10 +02005093 if (valleyview_calc_cdclk(dev_priv, max_pixclk) ==
5094 dev_priv->vlv_cdclk_freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005095 return;
5096
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02005097 /* disable/enable all currently active pipes while we change cdclk */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01005098 for_each_intel_crtc(dev, intel_crtc)
Matt Roper83d65732015-02-25 13:12:16 -08005099 if (intel_crtc->base.state->enable)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005100 *prepare_pipes |= (1 << intel_crtc->pipe);
5101}
5102
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02005103static void vlv_program_pfi_credits(struct drm_i915_private *dev_priv)
5104{
5105 unsigned int credits, default_credits;
5106
5107 if (IS_CHERRYVIEW(dev_priv))
5108 default_credits = PFI_CREDIT(12);
5109 else
5110 default_credits = PFI_CREDIT(8);
5111
5112 if (DIV_ROUND_CLOSEST(dev_priv->vlv_cdclk_freq, 1000) >= dev_priv->rps.cz_freq) {
5113 /* CHV suggested value is 31 or 63 */
5114 if (IS_CHERRYVIEW(dev_priv))
5115 credits = PFI_CREDIT_31;
5116 else
5117 credits = PFI_CREDIT(15);
5118 } else {
5119 credits = default_credits;
5120 }
5121
5122 /*
5123 * WA - write default credits before re-programming
5124 * FIXME: should we also set the resend bit here?
5125 */
5126 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
5127 default_credits);
5128
5129 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
5130 credits | PFI_CREDIT_RESEND);
5131
5132 /*
5133 * FIXME is this guaranteed to clear
5134 * immediately or should we poll for it?
5135 */
5136 WARN_ON(I915_READ(GCI_CONTROL) & PFI_CREDIT_RESEND);
5137}
5138
Jesse Barnes30a970c2013-11-04 13:48:12 -08005139static void valleyview_modeset_global_resources(struct drm_device *dev)
5140{
5141 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02005142 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005143 int req_cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
5144
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005145 if (req_cdclk != dev_priv->vlv_cdclk_freq) {
Imre Deak738c05c2014-11-19 16:25:37 +02005146 /*
5147 * FIXME: We can end up here with all power domains off, yet
5148 * with a CDCLK frequency other than the minimum. To account
5149 * for this take the PIPE-A power domain, which covers the HW
5150 * blocks needed for the following programming. This can be
5151 * removed once it's guaranteed that we get here either with
5152 * the minimum CDCLK set, or the required power domains
5153 * enabled.
5154 */
5155 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
5156
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005157 if (IS_CHERRYVIEW(dev))
5158 cherryview_set_cdclk(dev, req_cdclk);
5159 else
5160 valleyview_set_cdclk(dev, req_cdclk);
Imre Deak738c05c2014-11-19 16:25:37 +02005161
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02005162 vlv_program_pfi_credits(dev_priv);
5163
Imre Deak738c05c2014-11-19 16:25:37 +02005164 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005165 }
Jesse Barnes30a970c2013-11-04 13:48:12 -08005166}
5167
Jesse Barnes89b667f2013-04-18 14:51:36 -07005168static void valleyview_crtc_enable(struct drm_crtc *crtc)
5169{
5170 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02005171 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005172 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5173 struct intel_encoder *encoder;
5174 int pipe = intel_crtc->pipe;
Jani Nikula23538ef2013-08-27 15:12:22 +03005175 bool is_dsi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07005176
Matt Roper83d65732015-02-25 13:12:16 -08005177 WARN_ON(!crtc->state->enable);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005178
5179 if (intel_crtc->active)
5180 return;
5181
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005182 is_dsi = intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI);
Shobhit Kumar8525a232014-06-25 12:20:39 +05305183
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005184 if (!is_dsi) {
5185 if (IS_CHERRYVIEW(dev))
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005186 chv_prepare_pll(intel_crtc, intel_crtc->config);
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005187 else
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005188 vlv_prepare_pll(intel_crtc, intel_crtc->config);
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005189 }
Daniel Vetter5b18e572014-04-24 23:55:06 +02005190
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005191 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05305192 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter5b18e572014-04-24 23:55:06 +02005193
5194 intel_set_pipe_timings(intel_crtc);
5195
Ville Syrjäläc14b0482014-10-16 20:52:34 +03005196 if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) {
5197 struct drm_i915_private *dev_priv = dev->dev_private;
5198
5199 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
5200 I915_WRITE(CHV_CANVAS(pipe), 0);
5201 }
5202
Daniel Vetter5b18e572014-04-24 23:55:06 +02005203 i9xx_set_pipeconf(intel_crtc);
5204
Jesse Barnes89b667f2013-04-18 14:51:36 -07005205 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07005206
Daniel Vettera72e4c92014-09-30 10:56:47 +02005207 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005208
Jesse Barnes89b667f2013-04-18 14:51:36 -07005209 for_each_encoder_on_crtc(dev, crtc, encoder)
5210 if (encoder->pre_pll_enable)
5211 encoder->pre_pll_enable(encoder);
5212
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005213 if (!is_dsi) {
5214 if (IS_CHERRYVIEW(dev))
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005215 chv_enable_pll(intel_crtc, intel_crtc->config);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005216 else
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005217 vlv_enable_pll(intel_crtc, intel_crtc->config);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005218 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07005219
5220 for_each_encoder_on_crtc(dev, crtc, encoder)
5221 if (encoder->pre_enable)
5222 encoder->pre_enable(encoder);
5223
Jesse Barnes2dd24552013-04-25 12:55:01 -07005224 i9xx_pfit_enable(intel_crtc);
5225
Ville Syrjälä63cbb072013-06-04 13:48:59 +03005226 intel_crtc_load_lut(crtc);
5227
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005228 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02005229 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02005230
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03005231 assert_vblank_disabled(crtc);
5232 drm_crtc_vblank_on(crtc);
5233
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005234 for_each_encoder_on_crtc(dev, crtc, encoder)
5235 encoder->enable(encoder);
5236
Ville Syrjälä9ab04602014-05-08 19:23:14 +03005237 intel_crtc_enable_planes(crtc);
Daniel Vetterd40d9182014-05-21 11:45:40 +02005238
Ville Syrjälä56b80e12014-05-16 19:40:22 +03005239 /* Underruns don't raise interrupts, so check manually. */
Daniel Vettera72e4c92014-09-30 10:56:47 +02005240 i9xx_check_fifo_underruns(dev_priv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005241}
5242
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005243static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
5244{
5245 struct drm_device *dev = crtc->base.dev;
5246 struct drm_i915_private *dev_priv = dev->dev_private;
5247
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005248 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
5249 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005250}
5251
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005252static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005253{
5254 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02005255 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08005256 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005257 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08005258 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08005259
Matt Roper83d65732015-02-25 13:12:16 -08005260 WARN_ON(!crtc->state->enable);
Daniel Vetter08a48462012-07-02 11:43:47 +02005261
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005262 if (intel_crtc->active)
5263 return;
5264
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005265 i9xx_set_pll_dividers(intel_crtc);
5266
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005267 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05305268 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter5b18e572014-04-24 23:55:06 +02005269
5270 intel_set_pipe_timings(intel_crtc);
5271
Daniel Vetter5b18e572014-04-24 23:55:06 +02005272 i9xx_set_pipeconf(intel_crtc);
5273
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005274 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01005275
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005276 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005277 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005278
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02005279 for_each_encoder_on_crtc(dev, crtc, encoder)
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02005280 if (encoder->pre_enable)
5281 encoder->pre_enable(encoder);
5282
Daniel Vetterf6736a12013-06-05 13:34:30 +02005283 i9xx_enable_pll(intel_crtc);
5284
Jesse Barnes2dd24552013-04-25 12:55:01 -07005285 i9xx_pfit_enable(intel_crtc);
5286
Ville Syrjälä63cbb072013-06-04 13:48:59 +03005287 intel_crtc_load_lut(crtc);
5288
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005289 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02005290 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02005291
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03005292 assert_vblank_disabled(crtc);
5293 drm_crtc_vblank_on(crtc);
5294
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005295 for_each_encoder_on_crtc(dev, crtc, encoder)
5296 encoder->enable(encoder);
5297
Ville Syrjälä9ab04602014-05-08 19:23:14 +03005298 intel_crtc_enable_planes(crtc);
Daniel Vetterd40d9182014-05-21 11:45:40 +02005299
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005300 /*
5301 * Gen2 reports pipe underruns whenever all planes are disabled.
5302 * So don't enable underrun reporting before at least some planes
5303 * are enabled.
5304 * FIXME: Need to fix the logic to work when we turn off all planes
5305 * but leave the pipe running.
5306 */
5307 if (IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005308 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005309
Ville Syrjälä56b80e12014-05-16 19:40:22 +03005310 /* Underruns don't raise interrupts, so check manually. */
Daniel Vettera72e4c92014-09-30 10:56:47 +02005311 i9xx_check_fifo_underruns(dev_priv);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005312}
5313
Daniel Vetter87476d62013-04-11 16:29:06 +02005314static void i9xx_pfit_disable(struct intel_crtc *crtc)
5315{
5316 struct drm_device *dev = crtc->base.dev;
5317 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02005318
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005319 if (!crtc->config->gmch_pfit.control)
Daniel Vetter328d8e82013-05-08 10:36:31 +02005320 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02005321
5322 assert_pipe_disabled(dev_priv, crtc->pipe);
5323
Daniel Vetter328d8e82013-05-08 10:36:31 +02005324 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
5325 I915_READ(PFIT_CONTROL));
5326 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02005327}
5328
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005329static void i9xx_crtc_disable(struct drm_crtc *crtc)
5330{
5331 struct drm_device *dev = crtc->dev;
5332 struct drm_i915_private *dev_priv = dev->dev_private;
5333 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005334 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005335 int pipe = intel_crtc->pipe;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005336
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005337 if (!intel_crtc->active)
5338 return;
5339
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005340 /*
5341 * Gen2 reports pipe underruns whenever all planes are disabled.
5342 * So diasble underrun reporting before all the planes get disabled.
5343 * FIXME: Need to fix the logic to work when we turn off all planes
5344 * but leave the pipe running.
5345 */
5346 if (IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005347 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005348
Imre Deak564ed192014-06-13 14:54:21 +03005349 /*
5350 * Vblank time updates from the shadow to live plane control register
5351 * are blocked if the memory self-refresh mode is active at that
5352 * moment. So to make sure the plane gets truly disabled, disable
5353 * first the self-refresh mode. The self-refresh enable bit in turn
5354 * will be checked/applied by the HW only at the next frame start
5355 * event which is after the vblank start event, so we need to have a
5356 * wait-for-vblank between disabling the plane and the pipe.
5357 */
5358 intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03005359 intel_crtc_disable_planes(crtc);
5360
Ville Syrjälä6304cd92014-04-25 13:30:12 +03005361 /*
5362 * On gen2 planes are double buffered but the pipe isn't, so we must
5363 * wait for planes to fully turn off before disabling the pipe.
Imre Deak564ed192014-06-13 14:54:21 +03005364 * We also need to wait on all gmch platforms because of the
5365 * self-refresh mode constraint explained above.
Ville Syrjälä6304cd92014-04-25 13:30:12 +03005366 */
Imre Deak564ed192014-06-13 14:54:21 +03005367 intel_wait_for_vblank(dev, pipe);
Ville Syrjälä6304cd92014-04-25 13:30:12 +03005368
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03005369 for_each_encoder_on_crtc(dev, crtc, encoder)
5370 encoder->disable(encoder);
5371
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005372 drm_crtc_vblank_off(crtc);
5373 assert_vblank_disabled(crtc);
5374
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03005375 intel_disable_pipe(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02005376
Daniel Vetter87476d62013-04-11 16:29:06 +02005377 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02005378
Jesse Barnes89b667f2013-04-18 14:51:36 -07005379 for_each_encoder_on_crtc(dev, crtc, encoder)
5380 if (encoder->post_disable)
5381 encoder->post_disable(encoder);
5382
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005383 if (!intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI)) {
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03005384 if (IS_CHERRYVIEW(dev))
5385 chv_disable_pll(dev_priv, pipe);
5386 else if (IS_VALLEYVIEW(dev))
5387 vlv_disable_pll(dev_priv, pipe);
5388 else
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03005389 i9xx_disable_pll(intel_crtc);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03005390 }
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005391
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005392 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005393 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005394
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005395 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03005396 intel_update_watermarks(crtc);
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005397
Daniel Vetterefa96242014-04-24 23:55:02 +02005398 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02005399 intel_fbc_update(dev);
Daniel Vetterefa96242014-04-24 23:55:02 +02005400 mutex_unlock(&dev->struct_mutex);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005401}
5402
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005403static void i9xx_crtc_off(struct drm_crtc *crtc)
5404{
5405}
5406
Borun Fub04c5bd2014-07-12 10:02:27 +05305407/* Master function to enable/disable CRTC and corresponding power wells */
5408void intel_crtc_control(struct drm_crtc *crtc, bool enable)
Chris Wilsoncdd59982010-09-08 16:30:16 +01005409{
Chris Wilsoncdd59982010-09-08 16:30:16 +01005410 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005411 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005412 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005413 enum intel_display_power_domain domain;
5414 unsigned long domains;
Daniel Vetter976f8a22012-07-08 22:34:21 +02005415
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005416 if (enable) {
5417 if (!intel_crtc->active) {
Daniel Vettere1e9fb82014-06-25 22:02:04 +03005418 domains = get_crtc_power_domains(crtc);
5419 for_each_power_domain(domain, domains)
5420 intel_display_power_get(dev_priv, domain);
5421 intel_crtc->enabled_power_domains = domains;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005422
5423 dev_priv->display.crtc_enable(crtc);
5424 }
5425 } else {
5426 if (intel_crtc->active) {
5427 dev_priv->display.crtc_disable(crtc);
5428
Daniel Vettere1e9fb82014-06-25 22:02:04 +03005429 domains = intel_crtc->enabled_power_domains;
5430 for_each_power_domain(domain, domains)
5431 intel_display_power_put(dev_priv, domain);
5432 intel_crtc->enabled_power_domains = 0;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005433 }
5434 }
Borun Fub04c5bd2014-07-12 10:02:27 +05305435}
5436
5437/**
5438 * Sets the power management mode of the pipe and plane.
5439 */
5440void intel_crtc_update_dpms(struct drm_crtc *crtc)
5441{
5442 struct drm_device *dev = crtc->dev;
5443 struct intel_encoder *intel_encoder;
5444 bool enable = false;
5445
5446 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
5447 enable |= intel_encoder->connectors_active;
5448
5449 intel_crtc_control(crtc, enable);
Daniel Vetter976f8a22012-07-08 22:34:21 +02005450}
5451
Daniel Vetter976f8a22012-07-08 22:34:21 +02005452static void intel_crtc_disable(struct drm_crtc *crtc)
5453{
5454 struct drm_device *dev = crtc->dev;
5455 struct drm_connector *connector;
5456 struct drm_i915_private *dev_priv = dev->dev_private;
5457
5458 /* crtc should still be enabled when we disable it. */
Matt Roper83d65732015-02-25 13:12:16 -08005459 WARN_ON(!crtc->state->enable);
Daniel Vetter976f8a22012-07-08 22:34:21 +02005460
5461 dev_priv->display.crtc_disable(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005462 dev_priv->display.off(crtc);
5463
Gustavo Padovan455a6802014-12-01 15:40:11 -08005464 crtc->primary->funcs->disable_plane(crtc->primary);
Daniel Vetter976f8a22012-07-08 22:34:21 +02005465
5466 /* Update computed state. */
5467 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
5468 if (!connector->encoder || !connector->encoder->crtc)
5469 continue;
5470
5471 if (connector->encoder->crtc != crtc)
5472 continue;
5473
5474 connector->dpms = DRM_MODE_DPMS_OFF;
5475 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01005476 }
5477}
5478
Chris Wilsonea5b2132010-08-04 13:50:23 +01005479void intel_encoder_destroy(struct drm_encoder *encoder)
5480{
Chris Wilson4ef69c72010-09-09 15:14:28 +01005481 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01005482
Chris Wilsonea5b2132010-08-04 13:50:23 +01005483 drm_encoder_cleanup(encoder);
5484 kfree(intel_encoder);
5485}
5486
Damien Lespiau92373292013-08-08 22:28:57 +01005487/* Simple dpms helper for encoders with just one connector, no cloning and only
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005488 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
5489 * state of the entire output pipe. */
Damien Lespiau92373292013-08-08 22:28:57 +01005490static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005491{
5492 if (mode == DRM_MODE_DPMS_ON) {
5493 encoder->connectors_active = true;
5494
Daniel Vetterb2cabb02012-07-01 22:42:24 +02005495 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005496 } else {
5497 encoder->connectors_active = false;
5498
Daniel Vetterb2cabb02012-07-01 22:42:24 +02005499 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005500 }
5501}
5502
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005503/* Cross check the actual hw state with our own modeset state tracking (and it's
5504 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02005505static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005506{
5507 if (connector->get_hw_state(connector)) {
5508 struct intel_encoder *encoder = connector->encoder;
5509 struct drm_crtc *crtc;
5510 bool encoder_enabled;
5511 enum pipe pipe;
5512
5513 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
5514 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03005515 connector->base.name);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005516
Dave Airlie0e32b392014-05-02 14:02:48 +10005517 /* there is no real hw state for MST connectors */
5518 if (connector->mst_port)
5519 return;
5520
Rob Clarke2c719b2014-12-15 13:56:32 -05005521 I915_STATE_WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005522 "wrong connector dpms state\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05005523 I915_STATE_WARN(connector->base.encoder != &encoder->base,
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005524 "active connector not linked to encoder\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005525
Dave Airlie36cd7442014-05-02 13:44:18 +10005526 if (encoder) {
Rob Clarke2c719b2014-12-15 13:56:32 -05005527 I915_STATE_WARN(!encoder->connectors_active,
Dave Airlie36cd7442014-05-02 13:44:18 +10005528 "encoder->connectors_active not set\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005529
Dave Airlie36cd7442014-05-02 13:44:18 +10005530 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
Rob Clarke2c719b2014-12-15 13:56:32 -05005531 I915_STATE_WARN(!encoder_enabled, "encoder not enabled\n");
5532 if (I915_STATE_WARN_ON(!encoder->base.crtc))
Dave Airlie36cd7442014-05-02 13:44:18 +10005533 return;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005534
Dave Airlie36cd7442014-05-02 13:44:18 +10005535 crtc = encoder->base.crtc;
5536
Matt Roper83d65732015-02-25 13:12:16 -08005537 I915_STATE_WARN(!crtc->state->enable,
5538 "crtc not enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05005539 I915_STATE_WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
5540 I915_STATE_WARN(pipe != to_intel_crtc(crtc)->pipe,
Dave Airlie36cd7442014-05-02 13:44:18 +10005541 "encoder active on the wrong pipe\n");
5542 }
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005543 }
5544}
5545
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005546/* Even simpler default implementation, if there's really no special case to
5547 * consider. */
5548void intel_connector_dpms(struct drm_connector *connector, int mode)
5549{
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005550 /* All the simple cases only support two dpms states. */
5551 if (mode != DRM_MODE_DPMS_ON)
5552 mode = DRM_MODE_DPMS_OFF;
5553
5554 if (mode == connector->dpms)
5555 return;
5556
5557 connector->dpms = mode;
5558
5559 /* Only need to change hw state when actually enabled */
Chris Wilsonc9976dcf2013-09-29 19:15:07 +01005560 if (connector->encoder)
5561 intel_encoder_dpms(to_intel_encoder(connector->encoder), mode);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005562
Daniel Vetterb9805142012-08-31 17:37:33 +02005563 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005564}
5565
Daniel Vetterf0947c32012-07-02 13:10:34 +02005566/* Simple connector->get_hw_state implementation for encoders that support only
5567 * one connector and no cloning and hence the encoder state determines the state
5568 * of the connector. */
5569bool intel_connector_get_hw_state(struct intel_connector *connector)
5570{
Daniel Vetter24929352012-07-02 20:28:59 +02005571 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02005572 struct intel_encoder *encoder = connector->encoder;
5573
5574 return encoder->get_hw_state(encoder, &pipe);
5575}
5576
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005577static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005578 struct intel_crtc_state *pipe_config)
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005579{
5580 struct drm_i915_private *dev_priv = dev->dev_private;
5581 struct intel_crtc *pipe_B_crtc =
5582 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
5583
5584 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
5585 pipe_name(pipe), pipe_config->fdi_lanes);
5586 if (pipe_config->fdi_lanes > 4) {
5587 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
5588 pipe_name(pipe), pipe_config->fdi_lanes);
5589 return false;
5590 }
5591
Paulo Zanonibafb6552013-11-02 21:07:44 -07005592 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005593 if (pipe_config->fdi_lanes > 2) {
5594 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
5595 pipe_config->fdi_lanes);
5596 return false;
5597 } else {
5598 return true;
5599 }
5600 }
5601
5602 if (INTEL_INFO(dev)->num_pipes == 2)
5603 return true;
5604
5605 /* Ivybridge 3 pipe is really complicated */
5606 switch (pipe) {
5607 case PIPE_A:
5608 return true;
5609 case PIPE_B:
5610 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
5611 pipe_config->fdi_lanes > 2) {
5612 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5613 pipe_name(pipe), pipe_config->fdi_lanes);
5614 return false;
5615 }
5616 return true;
5617 case PIPE_C:
Daniel Vetter1e833f42013-02-19 22:31:57 +01005618 if (!pipe_has_enabled_pch(pipe_B_crtc) ||
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005619 pipe_B_crtc->config->fdi_lanes <= 2) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005620 if (pipe_config->fdi_lanes > 2) {
5621 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5622 pipe_name(pipe), pipe_config->fdi_lanes);
5623 return false;
5624 }
5625 } else {
5626 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
5627 return false;
5628 }
5629 return true;
5630 default:
5631 BUG();
5632 }
5633}
5634
Daniel Vettere29c22c2013-02-21 00:00:16 +01005635#define RETRY 1
5636static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005637 struct intel_crtc_state *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02005638{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005639 struct drm_device *dev = intel_crtc->base.dev;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02005640 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Daniel Vetterff9a6752013-06-01 17:16:21 +02005641 int lane, link_bw, fdi_dotclock;
Daniel Vettere29c22c2013-02-21 00:00:16 +01005642 bool setup_ok, needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005643
Daniel Vettere29c22c2013-02-21 00:00:16 +01005644retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02005645 /* FDI is a binary signal running at ~2.7GHz, encoding
5646 * each output octet as 10 bits. The actual frequency
5647 * is stored as a divider into a 100MHz clock, and the
5648 * mode pixel clock is stored in units of 1KHz.
5649 * Hence the bw of each lane in terms of the mode signal
5650 * is:
5651 */
5652 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
5653
Damien Lespiau241bfc32013-09-25 16:45:37 +01005654 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005655
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005656 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005657 pipe_config->pipe_bpp);
5658
5659 pipe_config->fdi_lanes = lane;
5660
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005661 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005662 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005663
Daniel Vettere29c22c2013-02-21 00:00:16 +01005664 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
5665 intel_crtc->pipe, pipe_config);
5666 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
5667 pipe_config->pipe_bpp -= 2*3;
5668 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
5669 pipe_config->pipe_bpp);
5670 needs_recompute = true;
5671 pipe_config->bw_constrained = true;
5672
5673 goto retry;
5674 }
5675
5676 if (needs_recompute)
5677 return RETRY;
5678
5679 return setup_ok ? 0 : -EINVAL;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005680}
5681
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005682static void hsw_compute_ips_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005683 struct intel_crtc_state *pipe_config)
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005684{
Jani Nikulad330a952014-01-21 11:24:25 +02005685 pipe_config->ips_enabled = i915.enable_ips &&
Paulo Zanoni3c4ca582013-05-31 16:33:23 -03005686 hsw_crtc_supports_ips(crtc) &&
Jesse Barnesb6dfdc92013-07-25 10:06:50 -07005687 pipe_config->pipe_bpp <= 24;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005688}
5689
Daniel Vettera43f6e02013-06-07 23:10:32 +02005690static int intel_crtc_compute_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005691 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08005692{
Daniel Vettera43f6e02013-06-07 23:10:32 +02005693 struct drm_device *dev = crtc->base.dev;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02005694 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02005695 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Chris Wilson89749352010-09-12 18:25:19 +01005696
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005697 /* FIXME should check pixel clock limits on all platforms */
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005698 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005699 int clock_limit =
5700 dev_priv->display.get_display_clock_speed(dev);
5701
5702 /*
5703 * Enable pixel doubling when the dot clock
5704 * is > 90% of the (display) core speed.
5705 *
Ville Syrjäläb397c962013-09-04 18:30:06 +03005706 * GDG double wide on either pipe,
5707 * otherwise pipe A only.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005708 */
Ville Syrjäläb397c962013-09-04 18:30:06 +03005709 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
Damien Lespiau241bfc32013-09-25 16:45:37 +01005710 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005711 clock_limit *= 2;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005712 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005713 }
5714
Damien Lespiau241bfc32013-09-25 16:45:37 +01005715 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005716 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08005717 }
Chris Wilson89749352010-09-12 18:25:19 +01005718
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03005719 /*
5720 * Pipe horizontal size must be even in:
5721 * - DVO ganged mode
5722 * - LVDS dual channel mode
5723 * - Double wide pipe
5724 */
Ander Conselvan de Oliveirab4f2bf42015-02-26 09:44:45 +02005725 if ((intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03005726 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
5727 pipe_config->pipe_src_w &= ~1;
5728
Damien Lespiau8693a822013-05-03 18:48:11 +01005729 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
5730 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03005731 */
5732 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
5733 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005734 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03005735
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005736 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005737 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005738 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005739 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
5740 * for lvds. */
5741 pipe_config->pipe_bpp = 8*3;
5742 }
5743
Damien Lespiauf5adf942013-06-24 18:29:34 +01005744 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02005745 hsw_compute_ips_config(crtc, pipe_config);
5746
Daniel Vetter877d48d2013-04-19 11:24:43 +02005747 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02005748 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02005749
Daniel Vettere29c22c2013-02-21 00:00:16 +01005750 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005751}
5752
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07005753static int valleyview_get_display_clock_speed(struct drm_device *dev)
5754{
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005755 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005756 u32 val;
5757 int divider;
5758
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005759 if (dev_priv->hpll_freq == 0)
5760 dev_priv->hpll_freq = valleyview_get_vco(dev_priv);
5761
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005762 mutex_lock(&dev_priv->dpio_lock);
5763 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
5764 mutex_unlock(&dev_priv->dpio_lock);
5765
5766 divider = val & DISPLAY_FREQUENCY_VALUES;
5767
Ville Syrjälä7d007f42014-06-13 13:37:53 +03005768 WARN((val & DISPLAY_FREQUENCY_STATUS) !=
5769 (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
5770 "cdclk change in progress\n");
5771
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005772 return DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, divider + 1);
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07005773}
5774
Jesse Barnese70236a2009-09-21 10:42:27 -07005775static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08005776{
Jesse Barnese70236a2009-09-21 10:42:27 -07005777 return 400000;
5778}
Jesse Barnes79e53942008-11-07 14:24:08 -08005779
Jesse Barnese70236a2009-09-21 10:42:27 -07005780static int i915_get_display_clock_speed(struct drm_device *dev)
5781{
5782 return 333000;
5783}
Jesse Barnes79e53942008-11-07 14:24:08 -08005784
Jesse Barnese70236a2009-09-21 10:42:27 -07005785static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
5786{
5787 return 200000;
5788}
Jesse Barnes79e53942008-11-07 14:24:08 -08005789
Daniel Vetter257a7ff2013-07-26 08:35:42 +02005790static int pnv_get_display_clock_speed(struct drm_device *dev)
5791{
5792 u16 gcfgc = 0;
5793
5794 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5795
5796 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5797 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
5798 return 267000;
5799 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
5800 return 333000;
5801 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
5802 return 444000;
5803 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
5804 return 200000;
5805 default:
5806 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
5807 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
5808 return 133000;
5809 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
5810 return 167000;
5811 }
5812}
5813
Jesse Barnese70236a2009-09-21 10:42:27 -07005814static int i915gm_get_display_clock_speed(struct drm_device *dev)
5815{
5816 u16 gcfgc = 0;
5817
5818 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5819
5820 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08005821 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07005822 else {
5823 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5824 case GC_DISPLAY_CLOCK_333_MHZ:
5825 return 333000;
5826 default:
5827 case GC_DISPLAY_CLOCK_190_200_MHZ:
5828 return 190000;
5829 }
5830 }
5831}
Jesse Barnes79e53942008-11-07 14:24:08 -08005832
Jesse Barnese70236a2009-09-21 10:42:27 -07005833static int i865_get_display_clock_speed(struct drm_device *dev)
5834{
5835 return 266000;
5836}
5837
5838static int i855_get_display_clock_speed(struct drm_device *dev)
5839{
5840 u16 hpllcc = 0;
5841 /* Assume that the hardware is in the high speed state. This
5842 * should be the default.
5843 */
5844 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
5845 case GC_CLOCK_133_200:
5846 case GC_CLOCK_100_200:
5847 return 200000;
5848 case GC_CLOCK_166_250:
5849 return 250000;
5850 case GC_CLOCK_100_133:
5851 return 133000;
5852 }
5853
5854 /* Shouldn't happen */
5855 return 0;
5856}
5857
5858static int i830_get_display_clock_speed(struct drm_device *dev)
5859{
5860 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08005861}
5862
Zhenyu Wang2c072452009-06-05 15:38:42 +08005863static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005864intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005865{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005866 while (*num > DATA_LINK_M_N_MASK ||
5867 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08005868 *num >>= 1;
5869 *den >>= 1;
5870 }
5871}
5872
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005873static void compute_m_n(unsigned int m, unsigned int n,
5874 uint32_t *ret_m, uint32_t *ret_n)
5875{
5876 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
5877 *ret_m = div_u64((uint64_t) m * *ret_n, n);
5878 intel_reduce_m_n_ratio(ret_m, ret_n);
5879}
5880
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005881void
5882intel_link_compute_m_n(int bits_per_pixel, int nlanes,
5883 int pixel_clock, int link_clock,
5884 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005885{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005886 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005887
5888 compute_m_n(bits_per_pixel * pixel_clock,
5889 link_clock * nlanes * 8,
5890 &m_n->gmch_m, &m_n->gmch_n);
5891
5892 compute_m_n(pixel_clock, link_clock,
5893 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005894}
5895
Chris Wilsona7615032011-01-12 17:04:08 +00005896static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
5897{
Jani Nikulad330a952014-01-21 11:24:25 +02005898 if (i915.panel_use_ssc >= 0)
5899 return i915.panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005900 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07005901 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00005902}
5903
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005904static int i9xx_get_refclk(struct intel_crtc *crtc, int num_connectors)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005905{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005906 struct drm_device *dev = crtc->base.dev;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005907 struct drm_i915_private *dev_priv = dev->dev_private;
5908 int refclk;
5909
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005910 if (IS_VALLEYVIEW(dev)) {
Daniel Vetter9a0ea492013-09-16 11:29:34 +02005911 refclk = 100000;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02005912 } else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005913 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02005914 refclk = dev_priv->vbt.lvds_ssc_freq;
5915 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005916 } else if (!IS_GEN2(dev)) {
5917 refclk = 96000;
5918 } else {
5919 refclk = 48000;
5920 }
5921
5922 return refclk;
5923}
5924
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005925static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005926{
Daniel Vetter7df00d72013-05-21 21:54:55 +02005927 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005928}
Daniel Vetterf47709a2013-03-28 10:42:02 +01005929
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005930static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
5931{
5932 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005933}
5934
Daniel Vetterf47709a2013-03-28 10:42:02 +01005935static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005936 struct intel_crtc_state *crtc_state,
Jesse Barnesa7516a02011-12-15 12:30:37 -08005937 intel_clock_t *reduced_clock)
5938{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005939 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005940 u32 fp, fp2 = 0;
5941
5942 if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005943 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005944 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005945 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005946 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005947 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005948 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005949 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005950 }
5951
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005952 crtc_state->dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005953
Daniel Vetterf47709a2013-03-28 10:42:02 +01005954 crtc->lowfreq_avail = false;
Bob Paauwee1f234b2014-11-11 09:29:18 -08005955 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Jani Nikulad330a952014-01-21 11:24:25 +02005956 reduced_clock && i915.powersave) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005957 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005958 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005959 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005960 crtc_state->dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005961 }
5962}
5963
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005964static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
5965 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07005966{
5967 u32 reg_val;
5968
5969 /*
5970 * PLLB opamp always calibrates to max value of 0x3f, force enable it
5971 * and set it to a reasonable value instead.
5972 */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005973 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005974 reg_val &= 0xffffff00;
5975 reg_val |= 0x00000030;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005976 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005977
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005978 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005979 reg_val &= 0x8cffffff;
5980 reg_val = 0x8c000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005981 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005982
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005983 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005984 reg_val &= 0xffffff00;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005985 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005986
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005987 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005988 reg_val &= 0x00ffffff;
5989 reg_val |= 0xb0000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005990 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005991}
5992
Daniel Vetterb5518422013-05-03 11:49:48 +02005993static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
5994 struct intel_link_m_n *m_n)
5995{
5996 struct drm_device *dev = crtc->base.dev;
5997 struct drm_i915_private *dev_priv = dev->dev_private;
5998 int pipe = crtc->pipe;
5999
Daniel Vettere3b95f12013-05-03 11:49:49 +02006000 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
6001 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
6002 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
6003 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02006004}
6005
6006static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -07006007 struct intel_link_m_n *m_n,
6008 struct intel_link_m_n *m2_n2)
Daniel Vetterb5518422013-05-03 11:49:48 +02006009{
6010 struct drm_device *dev = crtc->base.dev;
6011 struct drm_i915_private *dev_priv = dev->dev_private;
6012 int pipe = crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006013 enum transcoder transcoder = crtc->config->cpu_transcoder;
Daniel Vetterb5518422013-05-03 11:49:48 +02006014
6015 if (INTEL_INFO(dev)->gen >= 5) {
6016 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
6017 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
6018 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
6019 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
Vandana Kannanf769cd22014-08-05 07:51:22 -07006020 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
6021 * for gen < 8) and if DRRS is supported (to make sure the
6022 * registers are not unnecessarily accessed).
6023 */
Durgadoss R44395bf2015-02-13 15:33:02 +05306024 if (m2_n2 && (IS_CHERRYVIEW(dev) || INTEL_INFO(dev)->gen < 8) &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006025 crtc->config->has_drrs) {
Vandana Kannanf769cd22014-08-05 07:51:22 -07006026 I915_WRITE(PIPE_DATA_M2(transcoder),
6027 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
6028 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
6029 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
6030 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
6031 }
Daniel Vetterb5518422013-05-03 11:49:48 +02006032 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02006033 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
6034 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
6035 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
6036 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02006037 }
6038}
6039
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05306040void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n)
Daniel Vetter03afc4a2013-04-02 23:42:31 +02006041{
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05306042 struct intel_link_m_n *dp_m_n, *dp_m2_n2 = NULL;
6043
6044 if (m_n == M1_N1) {
6045 dp_m_n = &crtc->config->dp_m_n;
6046 dp_m2_n2 = &crtc->config->dp_m2_n2;
6047 } else if (m_n == M2_N2) {
6048
6049 /*
6050 * M2_N2 registers are not supported. Hence m2_n2 divider value
6051 * needs to be programmed into M1_N1.
6052 */
6053 dp_m_n = &crtc->config->dp_m2_n2;
6054 } else {
6055 DRM_ERROR("Unsupported divider value\n");
6056 return;
6057 }
6058
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006059 if (crtc->config->has_pch_encoder)
6060 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02006061 else
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05306062 intel_cpu_transcoder_set_m_n(crtc, dp_m_n, dp_m2_n2);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02006063}
6064
Ville Syrjäläd288f652014-10-28 13:20:22 +02006065static void vlv_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006066 struct intel_crtc_state *pipe_config)
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006067{
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006068 u32 dpll, dpll_md;
6069
6070 /*
6071 * Enable DPIO clock input. We should never disable the reference
6072 * clock for pipe B, since VGA hotplug / manual detection depends
6073 * on it.
6074 */
6075 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
6076 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
6077 /* We should never disable this, set it here for state tracking */
6078 if (crtc->pipe == PIPE_B)
6079 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
6080 dpll |= DPLL_VCO_ENABLE;
Ville Syrjäläd288f652014-10-28 13:20:22 +02006081 pipe_config->dpll_hw_state.dpll = dpll;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006082
Ville Syrjäläd288f652014-10-28 13:20:22 +02006083 dpll_md = (pipe_config->pixel_multiplier - 1)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006084 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjäläd288f652014-10-28 13:20:22 +02006085 pipe_config->dpll_hw_state.dpll_md = dpll_md;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006086}
6087
Ville Syrjäläd288f652014-10-28 13:20:22 +02006088static void vlv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006089 const struct intel_crtc_state *pipe_config)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006090{
Daniel Vetterf47709a2013-03-28 10:42:02 +01006091 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006092 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01006093 int pipe = crtc->pipe;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006094 u32 mdiv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006095 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006096 u32 coreclk, reg_val;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006097
Daniel Vetter09153002012-12-12 14:06:44 +01006098 mutex_lock(&dev_priv->dpio_lock);
6099
Ville Syrjäläd288f652014-10-28 13:20:22 +02006100 bestn = pipe_config->dpll.n;
6101 bestm1 = pipe_config->dpll.m1;
6102 bestm2 = pipe_config->dpll.m2;
6103 bestp1 = pipe_config->dpll.p1;
6104 bestp2 = pipe_config->dpll.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006105
Jesse Barnes89b667f2013-04-18 14:51:36 -07006106 /* See eDP HDMI DPIO driver vbios notes doc */
6107
6108 /* PLL B needs special handling */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006109 if (pipe == PIPE_B)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08006110 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006111
6112 /* Set up Tx target for periodic Rcomp update */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006113 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006114
6115 /* Disable target IRef on PLL */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006116 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07006117 reg_val &= 0x00ffffff;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006118 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006119
6120 /* Disable fast lock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006121 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006122
6123 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006124 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
6125 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
6126 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006127 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07006128
6129 /*
6130 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
6131 * but we don't support that).
6132 * Note: don't use the DAC post divider as it seems unstable.
6133 */
6134 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006135 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006136
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006137 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006138 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006139
Jesse Barnes89b667f2013-04-18 14:51:36 -07006140 /* Set HBR and RBR LPF coefficients */
Ville Syrjäläd288f652014-10-28 13:20:22 +02006141 if (pipe_config->port_clock == 162000 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006142 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG) ||
6143 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006144 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Ville Syrjälä885b0122013-07-05 19:21:38 +03006145 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006146 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006147 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006148 0x00d0000f);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006149
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02006150 if (pipe_config->has_dp_encoder) {
Jesse Barnes89b667f2013-04-18 14:51:36 -07006151 /* Use SSC source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006152 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006153 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006154 0x0df40000);
6155 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006156 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006157 0x0df70000);
6158 } else { /* HDMI or VGA */
6159 /* Use bend source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006160 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006161 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006162 0x0df70000);
6163 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006164 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006165 0x0df40000);
6166 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006167
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006168 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07006169 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006170 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
6171 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
Jesse Barnes89b667f2013-04-18 14:51:36 -07006172 coreclk |= 0x01000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006173 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006174
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006175 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
Daniel Vetter09153002012-12-12 14:06:44 +01006176 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006177}
6178
Ville Syrjäläd288f652014-10-28 13:20:22 +02006179static void chv_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006180 struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006181{
Ville Syrjäläd288f652014-10-28 13:20:22 +02006182 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLOCK_CHV |
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006183 DPLL_REFA_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
6184 DPLL_VCO_ENABLE;
6185 if (crtc->pipe != PIPE_A)
Ville Syrjäläd288f652014-10-28 13:20:22 +02006186 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006187
Ville Syrjäläd288f652014-10-28 13:20:22 +02006188 pipe_config->dpll_hw_state.dpll_md =
6189 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006190}
6191
Ville Syrjäläd288f652014-10-28 13:20:22 +02006192static void chv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006193 const struct intel_crtc_state *pipe_config)
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006194{
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006195 struct drm_device *dev = crtc->base.dev;
6196 struct drm_i915_private *dev_priv = dev->dev_private;
6197 int pipe = crtc->pipe;
6198 int dpll_reg = DPLL(crtc->pipe);
6199 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05306200 u32 loopfilter, tribuf_calcntr;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006201 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05306202 u32 dpio_val;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05306203 int vco;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006204
Ville Syrjäläd288f652014-10-28 13:20:22 +02006205 bestn = pipe_config->dpll.n;
6206 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
6207 bestm1 = pipe_config->dpll.m1;
6208 bestm2 = pipe_config->dpll.m2 >> 22;
6209 bestp1 = pipe_config->dpll.p1;
6210 bestp2 = pipe_config->dpll.p2;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05306211 vco = pipe_config->dpll.vco;
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05306212 dpio_val = 0;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05306213 loopfilter = 0;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006214
6215 /*
6216 * Enable Refclk and SSC
6217 */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03006218 I915_WRITE(dpll_reg,
Ville Syrjäläd288f652014-10-28 13:20:22 +02006219 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03006220
6221 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006222
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006223 /* p1 and p2 divider */
6224 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
6225 5 << DPIO_CHV_S1_DIV_SHIFT |
6226 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
6227 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
6228 1 << DPIO_CHV_K_DIV_SHIFT);
6229
6230 /* Feedback post-divider - m2 */
6231 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
6232
6233 /* Feedback refclk divider - n and m1 */
6234 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
6235 DPIO_CHV_M1_DIV_BY_2 |
6236 1 << DPIO_CHV_N_DIV_SHIFT);
6237
6238 /* M2 fraction division */
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05306239 if (bestm2_frac)
6240 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006241
6242 /* M2 fraction division enable */
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05306243 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
6244 dpio_val &= ~(DPIO_CHV_FEEDFWD_GAIN_MASK | DPIO_CHV_FRAC_DIV_EN);
6245 dpio_val |= (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT);
6246 if (bestm2_frac)
6247 dpio_val |= DPIO_CHV_FRAC_DIV_EN;
6248 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port), dpio_val);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006249
Vijay Purushothamande3a0fd2015-03-05 19:32:06 +05306250 /* Program digital lock detect threshold */
6251 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW9(port));
6252 dpio_val &= ~(DPIO_CHV_INT_LOCK_THRESHOLD_MASK |
6253 DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE);
6254 dpio_val |= (0x5 << DPIO_CHV_INT_LOCK_THRESHOLD_SHIFT);
6255 if (!bestm2_frac)
6256 dpio_val |= DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE;
6257 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW9(port), dpio_val);
6258
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006259 /* Loop filter */
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05306260 if (vco == 5400000) {
6261 loopfilter |= (0x3 << DPIO_CHV_PROP_COEFF_SHIFT);
6262 loopfilter |= (0x8 << DPIO_CHV_INT_COEFF_SHIFT);
6263 loopfilter |= (0x1 << DPIO_CHV_GAIN_CTRL_SHIFT);
6264 tribuf_calcntr = 0x9;
6265 } else if (vco <= 6200000) {
6266 loopfilter |= (0x5 << DPIO_CHV_PROP_COEFF_SHIFT);
6267 loopfilter |= (0xB << DPIO_CHV_INT_COEFF_SHIFT);
6268 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
6269 tribuf_calcntr = 0x9;
6270 } else if (vco <= 6480000) {
6271 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
6272 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
6273 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
6274 tribuf_calcntr = 0x8;
6275 } else {
6276 /* Not supported. Apply the same limits as in the max case */
6277 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
6278 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
6279 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
6280 tribuf_calcntr = 0;
6281 }
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006282 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
6283
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05306284 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW8(pipe));
6285 dpio_val &= ~DPIO_CHV_TDC_TARGET_CNT_MASK;
6286 dpio_val |= (tribuf_calcntr << DPIO_CHV_TDC_TARGET_CNT_SHIFT);
6287 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW8(port), dpio_val);
6288
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006289 /* AFC Recal */
6290 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
6291 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
6292 DPIO_AFC_RECAL);
6293
6294 mutex_unlock(&dev_priv->dpio_lock);
6295}
6296
Ville Syrjäläd288f652014-10-28 13:20:22 +02006297/**
6298 * vlv_force_pll_on - forcibly enable just the PLL
6299 * @dev_priv: i915 private structure
6300 * @pipe: pipe PLL to enable
6301 * @dpll: PLL configuration
6302 *
6303 * Enable the PLL for @pipe using the supplied @dpll config. To be used
6304 * in cases where we need the PLL enabled even when @pipe is not going to
6305 * be enabled.
6306 */
6307void vlv_force_pll_on(struct drm_device *dev, enum pipe pipe,
6308 const struct dpll *dpll)
6309{
6310 struct intel_crtc *crtc =
6311 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006312 struct intel_crtc_state pipe_config = {
Ville Syrjäläd288f652014-10-28 13:20:22 +02006313 .pixel_multiplier = 1,
6314 .dpll = *dpll,
6315 };
6316
6317 if (IS_CHERRYVIEW(dev)) {
6318 chv_update_pll(crtc, &pipe_config);
6319 chv_prepare_pll(crtc, &pipe_config);
6320 chv_enable_pll(crtc, &pipe_config);
6321 } else {
6322 vlv_update_pll(crtc, &pipe_config);
6323 vlv_prepare_pll(crtc, &pipe_config);
6324 vlv_enable_pll(crtc, &pipe_config);
6325 }
6326}
6327
6328/**
6329 * vlv_force_pll_off - forcibly disable just the PLL
6330 * @dev_priv: i915 private structure
6331 * @pipe: pipe PLL to disable
6332 *
6333 * Disable the PLL for @pipe. To be used in cases where we need
6334 * the PLL enabled even when @pipe is not going to be enabled.
6335 */
6336void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe)
6337{
6338 if (IS_CHERRYVIEW(dev))
6339 chv_disable_pll(to_i915(dev), pipe);
6340 else
6341 vlv_disable_pll(to_i915(dev), pipe);
6342}
6343
Daniel Vetterf47709a2013-03-28 10:42:02 +01006344static void i9xx_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006345 struct intel_crtc_state *crtc_state,
Daniel Vetterf47709a2013-03-28 10:42:02 +01006346 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006347 int num_connectors)
6348{
Daniel Vetterf47709a2013-03-28 10:42:02 +01006349 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006350 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006351 u32 dpll;
6352 bool is_sdvo;
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
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006357 is_sdvo = intel_pipe_will_have_type(crtc, INTEL_OUTPUT_SDVO) ||
6358 intel_pipe_will_have_type(crtc, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006359
6360 dpll = DPLL_VGA_MODE_DIS;
6361
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006362 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006363 dpll |= DPLLB_MODE_LVDS;
6364 else
6365 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01006366
Daniel Vetteref1b4602013-06-01 17:17:04 +02006367 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006368 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetter198a037f2013-04-19 11:14:37 +02006369 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006370 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02006371
6372 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006373 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02006374
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006375 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006376 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006377
6378 /* compute bitmask from p1 value */
6379 if (IS_PINEVIEW(dev))
6380 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
6381 else {
6382 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6383 if (IS_G4X(dev) && reduced_clock)
6384 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
6385 }
6386 switch (clock->p2) {
6387 case 5:
6388 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
6389 break;
6390 case 7:
6391 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
6392 break;
6393 case 10:
6394 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
6395 break;
6396 case 14:
6397 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
6398 break;
6399 }
6400 if (INTEL_INFO(dev)->gen >= 4)
6401 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
6402
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006403 if (crtc_state->sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006404 dpll |= PLL_REF_INPUT_TVCLKINBC;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006405 else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006406 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
6407 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
6408 else
6409 dpll |= PLL_REF_INPUT_DREFCLK;
6410
6411 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006412 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006413
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006414 if (INTEL_INFO(dev)->gen >= 4) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006415 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02006416 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006417 crtc_state->dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006418 }
6419}
6420
Daniel Vetterf47709a2013-03-28 10:42:02 +01006421static void i8xx_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006422 struct intel_crtc_state *crtc_state,
Daniel Vetterf47709a2013-03-28 10:42:02 +01006423 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006424 int num_connectors)
6425{
Daniel Vetterf47709a2013-03-28 10:42:02 +01006426 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006427 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006428 u32 dpll;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006429 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006430
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006431 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05306432
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006433 dpll = DPLL_VGA_MODE_DIS;
6434
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006435 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006436 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6437 } else {
6438 if (clock->p1 == 2)
6439 dpll |= PLL_P1_DIVIDE_BY_TWO;
6440 else
6441 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6442 if (clock->p2 == 4)
6443 dpll |= PLL_P2_DIVIDE_BY_4;
6444 }
6445
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006446 if (!IS_I830(dev) && intel_pipe_will_have_type(crtc, INTEL_OUTPUT_DVO))
Daniel Vetter4a33e482013-07-06 12:52:05 +02006447 dpll |= DPLL_DVO_2X_MODE;
6448
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006449 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006450 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
6451 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
6452 else
6453 dpll |= PLL_REF_INPUT_DREFCLK;
6454
6455 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006456 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006457}
6458
Daniel Vetter8a654f32013-06-01 17:16:22 +02006459static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006460{
6461 struct drm_device *dev = intel_crtc->base.dev;
6462 struct drm_i915_private *dev_priv = dev->dev_private;
6463 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006464 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Daniel Vetter8a654f32013-06-01 17:16:22 +02006465 struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006466 &intel_crtc->config->base.adjusted_mode;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02006467 uint32_t crtc_vtotal, crtc_vblank_end;
6468 int vsyncshift = 0;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006469
6470 /* We need to be careful not to changed the adjusted mode, for otherwise
6471 * the hw state checker will get angry at the mismatch. */
6472 crtc_vtotal = adjusted_mode->crtc_vtotal;
6473 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006474
Ville Syrjälä609aeac2014-03-28 23:29:30 +02006475 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006476 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006477 crtc_vtotal -= 1;
6478 crtc_vblank_end -= 1;
Ville Syrjälä609aeac2014-03-28 23:29:30 +02006479
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006480 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjälä609aeac2014-03-28 23:29:30 +02006481 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
6482 else
6483 vsyncshift = adjusted_mode->crtc_hsync_start -
6484 adjusted_mode->crtc_htotal / 2;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02006485 if (vsyncshift < 0)
6486 vsyncshift += adjusted_mode->crtc_htotal;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006487 }
6488
6489 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006490 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006491
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006492 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006493 (adjusted_mode->crtc_hdisplay - 1) |
6494 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006495 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006496 (adjusted_mode->crtc_hblank_start - 1) |
6497 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006498 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006499 (adjusted_mode->crtc_hsync_start - 1) |
6500 ((adjusted_mode->crtc_hsync_end - 1) << 16));
6501
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006502 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006503 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006504 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006505 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006506 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006507 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006508 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006509 (adjusted_mode->crtc_vsync_start - 1) |
6510 ((adjusted_mode->crtc_vsync_end - 1) << 16));
6511
Paulo Zanonib5e508d2012-10-24 11:34:43 -02006512 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
6513 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
6514 * documented on the DDI_FUNC_CTL register description, EDP Input Select
6515 * bits. */
6516 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
6517 (pipe == PIPE_B || pipe == PIPE_C))
6518 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
6519
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006520 /* pipesrc controls the size that is scaled from, which should
6521 * always be the user's requested size.
6522 */
6523 I915_WRITE(PIPESRC(pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006524 ((intel_crtc->config->pipe_src_w - 1) << 16) |
6525 (intel_crtc->config->pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006526}
6527
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006528static void intel_get_pipe_timings(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006529 struct intel_crtc_state *pipe_config)
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006530{
6531 struct drm_device *dev = crtc->base.dev;
6532 struct drm_i915_private *dev_priv = dev->dev_private;
6533 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
6534 uint32_t tmp;
6535
6536 tmp = I915_READ(HTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006537 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
6538 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006539 tmp = I915_READ(HBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006540 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
6541 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006542 tmp = I915_READ(HSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006543 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
6544 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006545
6546 tmp = I915_READ(VTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006547 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
6548 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006549 tmp = I915_READ(VBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006550 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
6551 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006552 tmp = I915_READ(VSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006553 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
6554 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006555
6556 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006557 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
6558 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
6559 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006560 }
6561
6562 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03006563 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
6564 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
6565
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006566 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
6567 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006568}
6569
Daniel Vetterf6a83282014-02-11 15:28:57 -08006570void intel_mode_from_pipe_config(struct drm_display_mode *mode,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006571 struct intel_crtc_state *pipe_config)
Jesse Barnesbabea612013-06-26 18:57:38 +03006572{
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006573 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
6574 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
6575 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
6576 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03006577
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006578 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
6579 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
6580 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
6581 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03006582
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006583 mode->flags = pipe_config->base.adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03006584
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006585 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
6586 mode->flags |= pipe_config->base.adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03006587}
6588
Daniel Vetter84b046f2013-02-19 18:48:54 +01006589static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
6590{
6591 struct drm_device *dev = intel_crtc->base.dev;
6592 struct drm_i915_private *dev_priv = dev->dev_private;
6593 uint32_t pipeconf;
6594
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02006595 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01006596
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03006597 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
6598 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
6599 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
Daniel Vetter67c72a12013-09-24 11:46:14 +02006600
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006601 if (intel_crtc->config->double_wide)
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006602 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01006603
Daniel Vetterff9ce462013-04-24 14:57:17 +02006604 /* only g4x and later have fancy bpc/dither controls */
6605 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02006606 /* Bspec claims that we can't use dithering for 30bpp pipes. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006607 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
Daniel Vetterff9ce462013-04-24 14:57:17 +02006608 pipeconf |= PIPECONF_DITHER_EN |
6609 PIPECONF_DITHER_TYPE_SP;
6610
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006611 switch (intel_crtc->config->pipe_bpp) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02006612 case 18:
6613 pipeconf |= PIPECONF_6BPC;
6614 break;
6615 case 24:
6616 pipeconf |= PIPECONF_8BPC;
6617 break;
6618 case 30:
6619 pipeconf |= PIPECONF_10BPC;
6620 break;
6621 default:
6622 /* Case prevented by intel_choose_pipe_bpp_dither. */
6623 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01006624 }
6625 }
6626
6627 if (HAS_PIPE_CXSR(dev)) {
6628 if (intel_crtc->lowfreq_avail) {
6629 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
6630 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
6631 } else {
6632 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01006633 }
6634 }
6635
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006636 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02006637 if (INTEL_INFO(dev)->gen < 4 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006638 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02006639 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
6640 else
6641 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
6642 } else
Daniel Vetter84b046f2013-02-19 18:48:54 +01006643 pipeconf |= PIPECONF_PROGRESSIVE;
6644
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006645 if (IS_VALLEYVIEW(dev) && intel_crtc->config->limited_color_range)
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02006646 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03006647
Daniel Vetter84b046f2013-02-19 18:48:54 +01006648 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
6649 POSTING_READ(PIPECONF(intel_crtc->pipe));
6650}
6651
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006652static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
6653 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08006654{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03006655 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08006656 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholtc751ce42010-03-25 11:48:48 -07006657 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07006658 intel_clock_t clock, reduced_clock;
Daniel Vettera16af722013-04-30 14:01:44 +02006659 bool ok, has_reduced_clock = false;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006660 bool is_lvds = false, is_dsi = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01006661 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08006662 const intel_limit_t *limit;
Jesse Barnes79e53942008-11-07 14:24:08 -08006663
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006664 for_each_intel_encoder(dev, encoder) {
6665 if (encoder->new_crtc != crtc)
6666 continue;
6667
Chris Wilson5eddb702010-09-11 13:48:45 +01006668 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006669 case INTEL_OUTPUT_LVDS:
6670 is_lvds = true;
6671 break;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006672 case INTEL_OUTPUT_DSI:
6673 is_dsi = true;
6674 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02006675 default:
6676 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08006677 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05006678
Eric Anholtc751ce42010-03-25 11:48:48 -07006679 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08006680 }
6681
Jani Nikulaf2335332013-09-13 11:03:09 +03006682 if (is_dsi)
Daniel Vetter5b18e572014-04-24 23:55:06 +02006683 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006684
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006685 if (!crtc_state->clock_set) {
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006686 refclk = i9xx_get_refclk(crtc, num_connectors);
Jani Nikulaf2335332013-09-13 11:03:09 +03006687
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006688 /*
6689 * Returns a set of divisors for the desired target clock with
6690 * the given refclk, or FALSE. The returned values represent
6691 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
6692 * 2) / p1 / p2.
6693 */
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006694 limit = intel_limit(crtc, refclk);
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03006695 ok = dev_priv->display.find_dpll(limit, crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006696 crtc_state->port_clock,
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006697 refclk, NULL, &clock);
Jani Nikulaf2335332013-09-13 11:03:09 +03006698 if (!ok) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006699 DRM_ERROR("Couldn't find PLL settings for mode!\n");
6700 return -EINVAL;
6701 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006702
Jani Nikulaf2335332013-09-13 11:03:09 +03006703 if (is_lvds && dev_priv->lvds_downclock_avail) {
6704 /*
6705 * Ensure we match the reduced clock's P to the target
6706 * clock. If the clocks don't match, we can't switch
6707 * the display clock by using the FP0/FP1. In such case
6708 * we will disable the LVDS downclock feature.
6709 */
6710 has_reduced_clock =
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03006711 dev_priv->display.find_dpll(limit, crtc,
Jani Nikulaf2335332013-09-13 11:03:09 +03006712 dev_priv->lvds_downclock,
6713 refclk, &clock,
6714 &reduced_clock);
6715 }
6716 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006717 crtc_state->dpll.n = clock.n;
6718 crtc_state->dpll.m1 = clock.m1;
6719 crtc_state->dpll.m2 = clock.m2;
6720 crtc_state->dpll.p1 = clock.p1;
6721 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01006722 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006723
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006724 if (IS_GEN2(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006725 i8xx_update_pll(crtc, crtc_state,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05306726 has_reduced_clock ? &reduced_clock : NULL,
6727 num_connectors);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006728 } else if (IS_CHERRYVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006729 chv_update_pll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006730 } else if (IS_VALLEYVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006731 vlv_update_pll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006732 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006733 i9xx_update_pll(crtc, crtc_state,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006734 has_reduced_clock ? &reduced_clock : NULL,
Robin Schroereba905b2014-05-18 02:24:50 +02006735 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006736 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006737
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02006738 return 0;
Eric Anholtf564048e2011-03-30 13:01:02 -07006739}
6740
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006741static void i9xx_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006742 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006743{
6744 struct drm_device *dev = crtc->base.dev;
6745 struct drm_i915_private *dev_priv = dev->dev_private;
6746 uint32_t tmp;
6747
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02006748 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
6749 return;
6750
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006751 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02006752 if (!(tmp & PFIT_ENABLE))
6753 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006754
Daniel Vetter06922822013-07-11 13:35:40 +02006755 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006756 if (INTEL_INFO(dev)->gen < 4) {
6757 if (crtc->pipe != PIPE_B)
6758 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006759 } else {
6760 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
6761 return;
6762 }
6763
Daniel Vetter06922822013-07-11 13:35:40 +02006764 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006765 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
6766 if (INTEL_INFO(dev)->gen < 5)
6767 pipe_config->gmch_pfit.lvds_border_bits =
6768 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
6769}
6770
Jesse Barnesacbec812013-09-20 11:29:32 -07006771static void vlv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006772 struct intel_crtc_state *pipe_config)
Jesse Barnesacbec812013-09-20 11:29:32 -07006773{
6774 struct drm_device *dev = crtc->base.dev;
6775 struct drm_i915_private *dev_priv = dev->dev_private;
6776 int pipe = pipe_config->cpu_transcoder;
6777 intel_clock_t clock;
6778 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07006779 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07006780
Shobhit Kumarf573de52014-07-30 20:32:37 +05306781 /* In case of MIPI DPLL will not even be used */
6782 if (!(pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE))
6783 return;
6784
Jesse Barnesacbec812013-09-20 11:29:32 -07006785 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006786 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
Jesse Barnesacbec812013-09-20 11:29:32 -07006787 mutex_unlock(&dev_priv->dpio_lock);
6788
6789 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
6790 clock.m2 = mdiv & DPIO_M2DIV_MASK;
6791 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
6792 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
6793 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
6794
Ville Syrjäläf6466282013-10-14 14:50:31 +03006795 vlv_clock(refclk, &clock);
Jesse Barnesacbec812013-09-20 11:29:32 -07006796
Ville Syrjäläf6466282013-10-14 14:50:31 +03006797 /* clock.dot is the fast clock */
6798 pipe_config->port_clock = clock.dot / 5;
Jesse Barnesacbec812013-09-20 11:29:32 -07006799}
6800
Damien Lespiau5724dbd2015-01-20 12:51:52 +00006801static void
6802i9xx_get_initial_plane_config(struct intel_crtc *crtc,
6803 struct intel_initial_plane_config *plane_config)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006804{
6805 struct drm_device *dev = crtc->base.dev;
6806 struct drm_i915_private *dev_priv = dev->dev_private;
6807 u32 val, base, offset;
6808 int pipe = crtc->pipe, plane = crtc->plane;
6809 int fourcc, pixel_format;
6810 int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006811 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00006812 struct intel_framebuffer *intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006813
Damien Lespiau42a7b082015-02-05 19:35:13 +00006814 val = I915_READ(DSPCNTR(plane));
6815 if (!(val & DISPLAY_PLANE_ENABLE))
6816 return;
6817
Damien Lespiaud9806c92015-01-21 14:07:19 +00006818 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00006819 if (!intel_fb) {
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006820 DRM_DEBUG_KMS("failed to alloc fb\n");
6821 return;
6822 }
6823
Damien Lespiau1b842c82015-01-21 13:50:54 +00006824 fb = &intel_fb->base;
6825
Daniel Vetter18c52472015-02-10 17:16:09 +00006826 if (INTEL_INFO(dev)->gen >= 4) {
6827 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00006828 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00006829 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
6830 }
6831 }
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006832
6833 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00006834 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006835 fb->pixel_format = fourcc;
6836 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006837
6838 if (INTEL_INFO(dev)->gen >= 4) {
Damien Lespiau49af4492015-01-20 12:51:44 +00006839 if (plane_config->tiling)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006840 offset = I915_READ(DSPTILEOFF(plane));
6841 else
6842 offset = I915_READ(DSPLINOFF(plane));
6843 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
6844 } else {
6845 base = I915_READ(DSPADDR(plane));
6846 }
6847 plane_config->base = base;
6848
6849 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006850 fb->width = ((val >> 16) & 0xfff) + 1;
6851 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006852
6853 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006854 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006855
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006856 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00006857 fb->pixel_format,
6858 fb->modifier[0]);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006859
Daniel Vetterf37b5c22015-02-10 23:12:27 +01006860 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006861
Damien Lespiau2844a922015-01-20 12:51:48 +00006862 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
6863 pipe_name(pipe), plane, fb->width, fb->height,
6864 fb->bits_per_pixel, base, fb->pitches[0],
6865 plane_config->size);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006866
Damien Lespiau2d140302015-02-05 17:22:18 +00006867 plane_config->fb = intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006868}
6869
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006870static void chv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006871 struct intel_crtc_state *pipe_config)
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006872{
6873 struct drm_device *dev = crtc->base.dev;
6874 struct drm_i915_private *dev_priv = dev->dev_private;
6875 int pipe = pipe_config->cpu_transcoder;
6876 enum dpio_channel port = vlv_pipe_to_channel(pipe);
6877 intel_clock_t clock;
6878 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2;
6879 int refclk = 100000;
6880
6881 mutex_lock(&dev_priv->dpio_lock);
6882 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
6883 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
6884 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
6885 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
6886 mutex_unlock(&dev_priv->dpio_lock);
6887
6888 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
6889 clock.m2 = ((pll_dw0 & 0xff) << 22) | (pll_dw2 & 0x3fffff);
6890 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
6891 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
6892 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
6893
6894 chv_clock(refclk, &clock);
6895
6896 /* clock.dot is the fast clock */
6897 pipe_config->port_clock = clock.dot / 5;
6898}
6899
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006900static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006901 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006902{
6903 struct drm_device *dev = crtc->base.dev;
6904 struct drm_i915_private *dev_priv = dev->dev_private;
6905 uint32_t tmp;
6906
Daniel Vetterf458ebb2014-09-30 10:56:39 +02006907 if (!intel_display_power_is_enabled(dev_priv,
6908 POWER_DOMAIN_PIPE(crtc->pipe)))
Imre Deakb5482bd2014-03-05 16:20:55 +02006909 return false;
6910
Daniel Vettere143a212013-07-04 12:01:15 +02006911 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02006912 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02006913
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006914 tmp = I915_READ(PIPECONF(crtc->pipe));
6915 if (!(tmp & PIPECONF_ENABLE))
6916 return false;
6917
Ville Syrjälä42571ae2013-09-06 23:29:00 +03006918 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
6919 switch (tmp & PIPECONF_BPC_MASK) {
6920 case PIPECONF_6BPC:
6921 pipe_config->pipe_bpp = 18;
6922 break;
6923 case PIPECONF_8BPC:
6924 pipe_config->pipe_bpp = 24;
6925 break;
6926 case PIPECONF_10BPC:
6927 pipe_config->pipe_bpp = 30;
6928 break;
6929 default:
6930 break;
6931 }
6932 }
6933
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02006934 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
6935 pipe_config->limited_color_range = true;
6936
Ville Syrjälä282740f2013-09-04 18:30:03 +03006937 if (INTEL_INFO(dev)->gen < 4)
6938 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
6939
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006940 intel_get_pipe_timings(crtc, pipe_config);
6941
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006942 i9xx_get_pfit_config(crtc, pipe_config);
6943
Daniel Vetter6c49f242013-06-06 12:45:25 +02006944 if (INTEL_INFO(dev)->gen >= 4) {
6945 tmp = I915_READ(DPLL_MD(crtc->pipe));
6946 pipe_config->pixel_multiplier =
6947 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
6948 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006949 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02006950 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
6951 tmp = I915_READ(DPLL(crtc->pipe));
6952 pipe_config->pixel_multiplier =
6953 ((tmp & SDVO_MULTIPLIER_MASK)
6954 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
6955 } else {
6956 /* Note that on i915G/GM the pixel multiplier is in the sdvo
6957 * port and will be fixed up in the encoder->get_config
6958 * function. */
6959 pipe_config->pixel_multiplier = 1;
6960 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006961 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
6962 if (!IS_VALLEYVIEW(dev)) {
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03006963 /*
6964 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
6965 * on 830. Filter it out here so that we don't
6966 * report errors due to that.
6967 */
6968 if (IS_I830(dev))
6969 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
6970
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006971 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
6972 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03006973 } else {
6974 /* Mask out read-only status bits. */
6975 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
6976 DPLL_PORTC_READY_MASK |
6977 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006978 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02006979
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006980 if (IS_CHERRYVIEW(dev))
6981 chv_crtc_clock_get(crtc, pipe_config);
6982 else if (IS_VALLEYVIEW(dev))
Jesse Barnesacbec812013-09-20 11:29:32 -07006983 vlv_crtc_clock_get(crtc, pipe_config);
6984 else
6985 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03006986
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006987 return true;
6988}
6989
Paulo Zanonidde86e22012-12-01 12:04:25 -02006990static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07006991{
6992 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006993 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006994 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006995 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006996 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006997 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07006998 bool has_ck505 = false;
6999 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007000
7001 /* We need to take the global config into account */
Damien Lespiaub2784e12014-08-05 11:29:37 +01007002 for_each_intel_encoder(dev, encoder) {
Keith Packard199e5d72011-09-22 12:01:57 -07007003 switch (encoder->type) {
7004 case INTEL_OUTPUT_LVDS:
7005 has_panel = true;
7006 has_lvds = true;
7007 break;
7008 case INTEL_OUTPUT_EDP:
7009 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03007010 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07007011 has_cpu_edp = true;
7012 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007013 default:
7014 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007015 }
7016 }
7017
Keith Packard99eb6a02011-09-26 14:29:12 -07007018 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03007019 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07007020 can_ssc = has_ck505;
7021 } else {
7022 has_ck505 = false;
7023 can_ssc = true;
7024 }
7025
Imre Deak2de69052013-05-08 13:14:04 +03007026 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
7027 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07007028
7029 /* Ironlake: try to setup display ref clock before DPLL
7030 * enabling. This is only under driver's control after
7031 * PCH B stepping, previous chipset stepping should be
7032 * ignoring this setting.
7033 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007034 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07007035
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007036 /* As we must carefully and slowly disable/enable each source in turn,
7037 * compute the final state we want first and check if we need to
7038 * make any changes at all.
7039 */
7040 final = val;
7041 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07007042 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007043 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07007044 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007045 final |= DREF_NONSPREAD_SOURCE_ENABLE;
7046
7047 final &= ~DREF_SSC_SOURCE_MASK;
7048 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
7049 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007050
Keith Packard199e5d72011-09-22 12:01:57 -07007051 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007052 final |= DREF_SSC_SOURCE_ENABLE;
7053
7054 if (intel_panel_use_ssc(dev_priv) && can_ssc)
7055 final |= DREF_SSC1_ENABLE;
7056
7057 if (has_cpu_edp) {
7058 if (intel_panel_use_ssc(dev_priv) && can_ssc)
7059 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
7060 else
7061 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
7062 } else
7063 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
7064 } else {
7065 final |= DREF_SSC_SOURCE_DISABLE;
7066 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
7067 }
7068
7069 if (final == val)
7070 return;
7071
7072 /* Always enable nonspread source */
7073 val &= ~DREF_NONSPREAD_SOURCE_MASK;
7074
7075 if (has_ck505)
7076 val |= DREF_NONSPREAD_CK505_ENABLE;
7077 else
7078 val |= DREF_NONSPREAD_SOURCE_ENABLE;
7079
7080 if (has_panel) {
7081 val &= ~DREF_SSC_SOURCE_MASK;
7082 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007083
Keith Packard199e5d72011-09-22 12:01:57 -07007084 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07007085 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07007086 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007087 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02007088 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007089 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007090
7091 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007092 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07007093 POSTING_READ(PCH_DREF_CONTROL);
7094 udelay(200);
7095
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007096 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007097
7098 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07007099 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07007100 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07007101 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007102 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Robin Schroereba905b2014-05-18 02:24:50 +02007103 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007104 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07007105 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007106 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007107
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007108 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07007109 POSTING_READ(PCH_DREF_CONTROL);
7110 udelay(200);
7111 } else {
7112 DRM_DEBUG_KMS("Disabling SSC entirely\n");
7113
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007114 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07007115
7116 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007117 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007118
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007119 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07007120 POSTING_READ(PCH_DREF_CONTROL);
7121 udelay(200);
7122
7123 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007124 val &= ~DREF_SSC_SOURCE_MASK;
7125 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007126
7127 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007128 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007129
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007130 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07007131 POSTING_READ(PCH_DREF_CONTROL);
7132 udelay(200);
7133 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007134
7135 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07007136}
7137
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007138static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02007139{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007140 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02007141
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007142 tmp = I915_READ(SOUTH_CHICKEN2);
7143 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
7144 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007145
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007146 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
7147 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
7148 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02007149
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007150 tmp = I915_READ(SOUTH_CHICKEN2);
7151 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
7152 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007153
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007154 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
7155 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
7156 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007157}
7158
7159/* WaMPhyProgramming:hsw */
7160static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
7161{
7162 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02007163
7164 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
7165 tmp &= ~(0xFF << 24);
7166 tmp |= (0x12 << 24);
7167 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
7168
Paulo Zanonidde86e22012-12-01 12:04:25 -02007169 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
7170 tmp |= (1 << 11);
7171 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
7172
7173 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
7174 tmp |= (1 << 11);
7175 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
7176
Paulo Zanonidde86e22012-12-01 12:04:25 -02007177 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
7178 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
7179 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
7180
7181 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
7182 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
7183 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
7184
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007185 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
7186 tmp &= ~(7 << 13);
7187 tmp |= (5 << 13);
7188 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007189
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007190 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
7191 tmp &= ~(7 << 13);
7192 tmp |= (5 << 13);
7193 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007194
7195 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
7196 tmp &= ~0xFF;
7197 tmp |= 0x1C;
7198 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
7199
7200 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
7201 tmp &= ~0xFF;
7202 tmp |= 0x1C;
7203 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
7204
7205 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
7206 tmp &= ~(0xFF << 16);
7207 tmp |= (0x1C << 16);
7208 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
7209
7210 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
7211 tmp &= ~(0xFF << 16);
7212 tmp |= (0x1C << 16);
7213 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
7214
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007215 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
7216 tmp |= (1 << 27);
7217 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007218
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007219 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
7220 tmp |= (1 << 27);
7221 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007222
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007223 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
7224 tmp &= ~(0xF << 28);
7225 tmp |= (4 << 28);
7226 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007227
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007228 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
7229 tmp &= ~(0xF << 28);
7230 tmp |= (4 << 28);
7231 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007232}
7233
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007234/* Implements 3 different sequences from BSpec chapter "Display iCLK
7235 * Programming" based on the parameters passed:
7236 * - Sequence to enable CLKOUT_DP
7237 * - Sequence to enable CLKOUT_DP without spread
7238 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
7239 */
7240static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
7241 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007242{
7243 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007244 uint32_t reg, tmp;
7245
7246 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
7247 with_spread = true;
7248 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
7249 with_fdi, "LP PCH doesn't have FDI\n"))
7250 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007251
7252 mutex_lock(&dev_priv->dpio_lock);
7253
7254 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7255 tmp &= ~SBI_SSCCTL_DISABLE;
7256 tmp |= SBI_SSCCTL_PATHALT;
7257 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7258
7259 udelay(24);
7260
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007261 if (with_spread) {
7262 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7263 tmp &= ~SBI_SSCCTL_PATHALT;
7264 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007265
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007266 if (with_fdi) {
7267 lpt_reset_fdi_mphy(dev_priv);
7268 lpt_program_fdi_mphy(dev_priv);
7269 }
7270 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02007271
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007272 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
7273 SBI_GEN0 : SBI_DBUFF0;
7274 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
7275 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
7276 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01007277
7278 mutex_unlock(&dev_priv->dpio_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007279}
7280
Paulo Zanoni47701c32013-07-23 11:19:25 -03007281/* Sequence to disable CLKOUT_DP */
7282static void lpt_disable_clkout_dp(struct drm_device *dev)
7283{
7284 struct drm_i915_private *dev_priv = dev->dev_private;
7285 uint32_t reg, tmp;
7286
7287 mutex_lock(&dev_priv->dpio_lock);
7288
7289 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
7290 SBI_GEN0 : SBI_DBUFF0;
7291 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
7292 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
7293 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
7294
7295 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7296 if (!(tmp & SBI_SSCCTL_DISABLE)) {
7297 if (!(tmp & SBI_SSCCTL_PATHALT)) {
7298 tmp |= SBI_SSCCTL_PATHALT;
7299 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7300 udelay(32);
7301 }
7302 tmp |= SBI_SSCCTL_DISABLE;
7303 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7304 }
7305
7306 mutex_unlock(&dev_priv->dpio_lock);
7307}
7308
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007309static void lpt_init_pch_refclk(struct drm_device *dev)
7310{
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007311 struct intel_encoder *encoder;
7312 bool has_vga = false;
7313
Damien Lespiaub2784e12014-08-05 11:29:37 +01007314 for_each_intel_encoder(dev, encoder) {
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007315 switch (encoder->type) {
7316 case INTEL_OUTPUT_ANALOG:
7317 has_vga = true;
7318 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007319 default:
7320 break;
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007321 }
7322 }
7323
Paulo Zanoni47701c32013-07-23 11:19:25 -03007324 if (has_vga)
7325 lpt_enable_clkout_dp(dev, true, true);
7326 else
7327 lpt_disable_clkout_dp(dev);
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007328}
7329
Paulo Zanonidde86e22012-12-01 12:04:25 -02007330/*
7331 * Initialize reference clocks when the driver loads
7332 */
7333void intel_init_pch_refclk(struct drm_device *dev)
7334{
7335 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
7336 ironlake_init_pch_refclk(dev);
7337 else if (HAS_PCH_LPT(dev))
7338 lpt_init_pch_refclk(dev);
7339}
7340
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007341static int ironlake_get_refclk(struct drm_crtc *crtc)
7342{
7343 struct drm_device *dev = crtc->dev;
7344 struct drm_i915_private *dev_priv = dev->dev_private;
7345 struct intel_encoder *encoder;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007346 int num_connectors = 0;
7347 bool is_lvds = false;
7348
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02007349 for_each_intel_encoder(dev, encoder) {
7350 if (encoder->new_crtc != to_intel_crtc(crtc))
7351 continue;
7352
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007353 switch (encoder->type) {
7354 case INTEL_OUTPUT_LVDS:
7355 is_lvds = true;
7356 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007357 default:
7358 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007359 }
7360 num_connectors++;
7361 }
7362
7363 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007364 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03007365 dev_priv->vbt.lvds_ssc_freq);
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007366 return dev_priv->vbt.lvds_ssc_freq;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007367 }
7368
7369 return 120000;
7370}
7371
Daniel Vetter6ff93602013-04-19 11:24:36 +02007372static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03007373{
7374 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
7375 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7376 int pipe = intel_crtc->pipe;
7377 uint32_t val;
7378
Daniel Vetter78114072013-06-13 00:54:57 +02007379 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03007380
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007381 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03007382 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007383 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007384 break;
7385 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007386 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007387 break;
7388 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007389 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007390 break;
7391 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007392 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007393 break;
7394 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03007395 /* Case prevented by intel_choose_pipe_bpp_dither. */
7396 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03007397 }
7398
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007399 if (intel_crtc->config->dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03007400 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
7401
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007402 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03007403 val |= PIPECONF_INTERLACED_ILK;
7404 else
7405 val |= PIPECONF_PROGRESSIVE;
7406
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007407 if (intel_crtc->config->limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02007408 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02007409
Paulo Zanonic8203562012-09-12 10:06:29 -03007410 I915_WRITE(PIPECONF(pipe), val);
7411 POSTING_READ(PIPECONF(pipe));
7412}
7413
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007414/*
7415 * Set up the pipe CSC unit.
7416 *
7417 * Currently only full range RGB to limited range RGB conversion
7418 * is supported, but eventually this should handle various
7419 * RGB<->YCbCr scenarios as well.
7420 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01007421static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007422{
7423 struct drm_device *dev = crtc->dev;
7424 struct drm_i915_private *dev_priv = dev->dev_private;
7425 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7426 int pipe = intel_crtc->pipe;
7427 uint16_t coeff = 0x7800; /* 1.0 */
7428
7429 /*
7430 * TODO: Check what kind of values actually come out of the pipe
7431 * with these coeff/postoff values and adjust to get the best
7432 * accuracy. Perhaps we even need to take the bpc value into
7433 * consideration.
7434 */
7435
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007436 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007437 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
7438
7439 /*
7440 * GY/GU and RY/RU should be the other way around according
7441 * to BSpec, but reality doesn't agree. Just set them up in
7442 * a way that results in the correct picture.
7443 */
7444 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
7445 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
7446
7447 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
7448 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
7449
7450 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
7451 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
7452
7453 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
7454 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
7455 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
7456
7457 if (INTEL_INFO(dev)->gen > 6) {
7458 uint16_t postoff = 0;
7459
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007460 if (intel_crtc->config->limited_color_range)
Ville Syrjälä32cf0cb2013-11-28 22:10:38 +02007461 postoff = (16 * (1 << 12) / 255) & 0x1fff;
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007462
7463 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
7464 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
7465 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
7466
7467 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
7468 } else {
7469 uint32_t mode = CSC_MODE_YUV_TO_RGB;
7470
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007471 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007472 mode |= CSC_BLACK_SCREEN_OFFSET;
7473
7474 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
7475 }
7476}
7477
Daniel Vetter6ff93602013-04-19 11:24:36 +02007478static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007479{
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007480 struct drm_device *dev = crtc->dev;
7481 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007482 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007483 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007484 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007485 uint32_t val;
7486
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02007487 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007488
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007489 if (IS_HASWELL(dev) && intel_crtc->config->dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007490 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
7491
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007492 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007493 val |= PIPECONF_INTERLACED_ILK;
7494 else
7495 val |= PIPECONF_PROGRESSIVE;
7496
Paulo Zanoni702e7a52012-10-23 18:29:59 -02007497 I915_WRITE(PIPECONF(cpu_transcoder), val);
7498 POSTING_READ(PIPECONF(cpu_transcoder));
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02007499
7500 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
7501 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007502
Satheeshakrishna M3cdf1222014-04-08 15:46:53 +05307503 if (IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007504 val = 0;
7505
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007506 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007507 case 18:
7508 val |= PIPEMISC_DITHER_6_BPC;
7509 break;
7510 case 24:
7511 val |= PIPEMISC_DITHER_8_BPC;
7512 break;
7513 case 30:
7514 val |= PIPEMISC_DITHER_10_BPC;
7515 break;
7516 case 36:
7517 val |= PIPEMISC_DITHER_12_BPC;
7518 break;
7519 default:
7520 /* Case prevented by pipe_config_set_bpp. */
7521 BUG();
7522 }
7523
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007524 if (intel_crtc->config->dither)
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007525 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
7526
7527 I915_WRITE(PIPEMISC(pipe), val);
7528 }
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007529}
7530
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007531static bool ironlake_compute_clocks(struct drm_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007532 struct intel_crtc_state *crtc_state,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007533 intel_clock_t *clock,
7534 bool *has_reduced_clock,
7535 intel_clock_t *reduced_clock)
7536{
7537 struct drm_device *dev = crtc->dev;
7538 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +03007539 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007540 int refclk;
7541 const intel_limit_t *limit;
Daniel Vettera16af722013-04-30 14:01:44 +02007542 bool ret, is_lvds = false;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007543
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02007544 is_lvds = intel_pipe_will_have_type(intel_crtc, INTEL_OUTPUT_LVDS);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007545
7546 refclk = ironlake_get_refclk(crtc);
7547
7548 /*
7549 * Returns a set of divisors for the desired target clock with the given
7550 * refclk, or FALSE. The returned values represent the clock equation:
7551 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
7552 */
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007553 limit = intel_limit(intel_crtc, refclk);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +03007554 ret = dev_priv->display.find_dpll(limit, intel_crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007555 crtc_state->port_clock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02007556 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007557 if (!ret)
7558 return false;
7559
7560 if (is_lvds && dev_priv->lvds_downclock_avail) {
7561 /*
7562 * Ensure we match the reduced clock's P to the target clock.
7563 * If the clocks don't match, we can't switch the display clock
7564 * by using the FP0/FP1. In such case we will disable the LVDS
7565 * downclock feature.
7566 */
Daniel Vetteree9300b2013-06-03 22:40:22 +02007567 *has_reduced_clock =
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +03007568 dev_priv->display.find_dpll(limit, intel_crtc,
Daniel Vetteree9300b2013-06-03 22:40:22 +02007569 dev_priv->lvds_downclock,
7570 refclk, clock,
7571 reduced_clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007572 }
7573
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007574 return true;
7575}
7576
Paulo Zanonid4b19312012-11-29 11:29:32 -02007577int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
7578{
7579 /*
7580 * Account for spread spectrum to avoid
7581 * oversubscribing the link. Max center spread
7582 * is 2.5%; use 5% for safety's sake.
7583 */
7584 u32 bps = target_clock * bpp * 21 / 20;
Ville Syrjälä619d4d02014-02-27 14:23:14 +02007585 return DIV_ROUND_UP(bps, link_bw * 8);
Paulo Zanonid4b19312012-11-29 11:29:32 -02007586}
7587
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007588static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02007589{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007590 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03007591}
7592
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007593static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007594 struct intel_crtc_state *crtc_state,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007595 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02007596 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007597{
7598 struct drm_crtc *crtc = &intel_crtc->base;
7599 struct drm_device *dev = crtc->dev;
7600 struct drm_i915_private *dev_priv = dev->dev_private;
7601 struct intel_encoder *intel_encoder;
7602 uint32_t dpll;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01007603 int factor, num_connectors = 0;
Daniel Vetter09ede542013-04-30 14:01:45 +02007604 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007605
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02007606 for_each_intel_encoder(dev, intel_encoder) {
7607 if (intel_encoder->new_crtc != to_intel_crtc(crtc))
7608 continue;
7609
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007610 switch (intel_encoder->type) {
7611 case INTEL_OUTPUT_LVDS:
7612 is_lvds = true;
7613 break;
7614 case INTEL_OUTPUT_SDVO:
7615 case INTEL_OUTPUT_HDMI:
7616 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007617 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007618 default:
7619 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007620 }
7621
7622 num_connectors++;
7623 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007624
Chris Wilsonc1858122010-12-03 21:35:48 +00007625 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07007626 factor = 21;
7627 if (is_lvds) {
7628 if ((intel_panel_use_ssc(dev_priv) &&
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007629 dev_priv->vbt.lvds_ssc_freq == 100000) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02007630 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07007631 factor = 25;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007632 } else if (crtc_state->sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07007633 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00007634
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007635 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02007636 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00007637
Daniel Vetter9a7c7892013-04-04 22:20:34 +02007638 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
7639 *fp2 |= FP_CB_TUNE;
7640
Chris Wilson5eddb702010-09-11 13:48:45 +01007641 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08007642
Eric Anholta07d6782011-03-30 13:01:08 -07007643 if (is_lvds)
7644 dpll |= DPLLB_MODE_LVDS;
7645 else
7646 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007647
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007648 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02007649 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007650
7651 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007652 dpll |= DPLL_SDVO_HIGH_SPEED;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007653 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007654 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08007655
Eric Anholta07d6782011-03-30 13:01:08 -07007656 /* compute bitmask from p1 value */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007657 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07007658 /* also FPA1 */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007659 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07007660
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007661 switch (crtc_state->dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07007662 case 5:
7663 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
7664 break;
7665 case 7:
7666 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
7667 break;
7668 case 10:
7669 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
7670 break;
7671 case 14:
7672 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
7673 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08007674 }
7675
Daniel Vetterb4c09f32013-04-30 14:01:42 +02007676 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05007677 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08007678 else
7679 dpll |= PLL_REF_INPUT_DREFCLK;
7680
Daniel Vetter959e16d2013-06-05 13:34:21 +02007681 return dpll | DPLL_VCO_ENABLE;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007682}
7683
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007684static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
7685 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08007686{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007687 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08007688 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007689 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03007690 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01007691 bool is_lvds = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02007692 struct intel_shared_dpll *pll;
Jesse Barnes79e53942008-11-07 14:24:08 -08007693
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007694 is_lvds = intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS);
Jesse Barnes79e53942008-11-07 14:24:08 -08007695
Paulo Zanoni5dc52982012-10-05 12:05:56 -03007696 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
7697 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
7698
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007699 ok = ironlake_compute_clocks(&crtc->base, crtc_state, &clock,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007700 &has_reduced_clock, &reduced_clock);
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007701 if (!ok && !crtc_state->clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08007702 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7703 return -EINVAL;
7704 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01007705 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007706 if (!crtc_state->clock_set) {
7707 crtc_state->dpll.n = clock.n;
7708 crtc_state->dpll.m1 = clock.m1;
7709 crtc_state->dpll.m2 = clock.m2;
7710 crtc_state->dpll.p1 = clock.p1;
7711 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01007712 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007713
Paulo Zanoni5dc52982012-10-05 12:05:56 -03007714 /* 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 +02007715 if (crtc_state->has_pch_encoder) {
7716 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007717 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007718 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007719
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007720 dpll = ironlake_compute_dpll(crtc, crtc_state,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007721 &fp, &reduced_clock,
7722 has_reduced_clock ? &fp2 : NULL);
7723
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007724 crtc_state->dpll_hw_state.dpll = dpll;
7725 crtc_state->dpll_hw_state.fp0 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02007726 if (has_reduced_clock)
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007727 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetter66e985c2013-06-05 13:34:20 +02007728 else
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007729 crtc_state->dpll_hw_state.fp1 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02007730
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007731 pll = intel_get_shared_dpll(crtc, crtc_state);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01007732 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03007733 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007734 pipe_name(crtc->pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07007735 return -EINVAL;
7736 }
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +02007737 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007738
Jani Nikulad330a952014-01-21 11:24:25 +02007739 if (is_lvds && has_reduced_clock && i915.powersave)
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007740 crtc->lowfreq_avail = true;
Daniel Vetterbcd644e2013-06-05 13:34:22 +02007741 else
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007742 crtc->lowfreq_avail = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02007743
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007744 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007745}
7746
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007747static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
7748 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02007749{
7750 struct drm_device *dev = crtc->base.dev;
7751 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007752 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02007753
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007754 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
7755 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
7756 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
7757 & ~TU_SIZE_MASK;
7758 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
7759 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
7760 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7761}
7762
7763static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
7764 enum transcoder transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007765 struct intel_link_m_n *m_n,
7766 struct intel_link_m_n *m2_n2)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007767{
7768 struct drm_device *dev = crtc->base.dev;
7769 struct drm_i915_private *dev_priv = dev->dev_private;
7770 enum pipe pipe = crtc->pipe;
7771
7772 if (INTEL_INFO(dev)->gen >= 5) {
7773 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
7774 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
7775 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
7776 & ~TU_SIZE_MASK;
7777 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
7778 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
7779 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007780 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
7781 * gen < 8) and if DRRS is supported (to make sure the
7782 * registers are not unnecessarily read).
7783 */
7784 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007785 crtc->config->has_drrs) {
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007786 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
7787 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
7788 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
7789 & ~TU_SIZE_MASK;
7790 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
7791 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
7792 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7793 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007794 } else {
7795 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
7796 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
7797 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
7798 & ~TU_SIZE_MASK;
7799 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
7800 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
7801 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7802 }
7803}
7804
7805void intel_dp_get_m_n(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007806 struct intel_crtc_state *pipe_config)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007807{
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02007808 if (pipe_config->has_pch_encoder)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007809 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
7810 else
7811 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007812 &pipe_config->dp_m_n,
7813 &pipe_config->dp_m2_n2);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007814}
7815
Daniel Vetter72419202013-04-04 13:28:53 +02007816static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007817 struct intel_crtc_state *pipe_config)
Daniel Vetter72419202013-04-04 13:28:53 +02007818{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007819 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007820 &pipe_config->fdi_m_n, NULL);
Daniel Vetter72419202013-04-04 13:28:53 +02007821}
7822
Jesse Barnesbd2e2442014-11-13 17:51:47 +00007823static void skylake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007824 struct intel_crtc_state *pipe_config)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00007825{
7826 struct drm_device *dev = crtc->base.dev;
7827 struct drm_i915_private *dev_priv = dev->dev_private;
7828 uint32_t tmp;
7829
7830 tmp = I915_READ(PS_CTL(crtc->pipe));
7831
7832 if (tmp & PS_ENABLE) {
7833 pipe_config->pch_pfit.enabled = true;
7834 pipe_config->pch_pfit.pos = I915_READ(PS_WIN_POS(crtc->pipe));
7835 pipe_config->pch_pfit.size = I915_READ(PS_WIN_SZ(crtc->pipe));
7836 }
7837}
7838
Damien Lespiau5724dbd2015-01-20 12:51:52 +00007839static void
7840skylake_get_initial_plane_config(struct intel_crtc *crtc,
7841 struct intel_initial_plane_config *plane_config)
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007842{
7843 struct drm_device *dev = crtc->base.dev;
7844 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau40f46282015-02-27 11:15:21 +00007845 u32 val, base, offset, stride_mult, tiling;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007846 int pipe = crtc->pipe;
7847 int fourcc, pixel_format;
7848 int aligned_height;
7849 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00007850 struct intel_framebuffer *intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007851
Damien Lespiaud9806c92015-01-21 14:07:19 +00007852 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00007853 if (!intel_fb) {
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007854 DRM_DEBUG_KMS("failed to alloc fb\n");
7855 return;
7856 }
7857
Damien Lespiau1b842c82015-01-21 13:50:54 +00007858 fb = &intel_fb->base;
7859
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007860 val = I915_READ(PLANE_CTL(pipe, 0));
Damien Lespiau42a7b082015-02-05 19:35:13 +00007861 if (!(val & PLANE_CTL_ENABLE))
7862 goto error;
7863
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007864 pixel_format = val & PLANE_CTL_FORMAT_MASK;
7865 fourcc = skl_format_to_fourcc(pixel_format,
7866 val & PLANE_CTL_ORDER_RGBX,
7867 val & PLANE_CTL_ALPHA_MASK);
7868 fb->pixel_format = fourcc;
7869 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
7870
Damien Lespiau40f46282015-02-27 11:15:21 +00007871 tiling = val & PLANE_CTL_TILED_MASK;
7872 switch (tiling) {
7873 case PLANE_CTL_TILED_LINEAR:
7874 fb->modifier[0] = DRM_FORMAT_MOD_NONE;
7875 break;
7876 case PLANE_CTL_TILED_X:
7877 plane_config->tiling = I915_TILING_X;
7878 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
7879 break;
7880 case PLANE_CTL_TILED_Y:
7881 fb->modifier[0] = I915_FORMAT_MOD_Y_TILED;
7882 break;
7883 case PLANE_CTL_TILED_YF:
7884 fb->modifier[0] = I915_FORMAT_MOD_Yf_TILED;
7885 break;
7886 default:
7887 MISSING_CASE(tiling);
7888 goto error;
7889 }
7890
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007891 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
7892 plane_config->base = base;
7893
7894 offset = I915_READ(PLANE_OFFSET(pipe, 0));
7895
7896 val = I915_READ(PLANE_SIZE(pipe, 0));
7897 fb->height = ((val >> 16) & 0xfff) + 1;
7898 fb->width = ((val >> 0) & 0x1fff) + 1;
7899
7900 val = I915_READ(PLANE_STRIDE(pipe, 0));
Damien Lespiau40f46282015-02-27 11:15:21 +00007901 stride_mult = intel_fb_stride_alignment(dev, fb->modifier[0],
7902 fb->pixel_format);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007903 fb->pitches[0] = (val & 0x3ff) * stride_mult;
7904
7905 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00007906 fb->pixel_format,
7907 fb->modifier[0]);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007908
Daniel Vetterf37b5c22015-02-10 23:12:27 +01007909 plane_config->size = fb->pitches[0] * aligned_height;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007910
7911 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
7912 pipe_name(pipe), fb->width, fb->height,
7913 fb->bits_per_pixel, base, fb->pitches[0],
7914 plane_config->size);
7915
Damien Lespiau2d140302015-02-05 17:22:18 +00007916 plane_config->fb = intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007917 return;
7918
7919error:
7920 kfree(fb);
7921}
7922
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007923static void ironlake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007924 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007925{
7926 struct drm_device *dev = crtc->base.dev;
7927 struct drm_i915_private *dev_priv = dev->dev_private;
7928 uint32_t tmp;
7929
7930 tmp = I915_READ(PF_CTL(crtc->pipe));
7931
7932 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01007933 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007934 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
7935 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02007936
7937 /* We currently do not free assignements of panel fitters on
7938 * ivb/hsw (since we don't use the higher upscaling modes which
7939 * differentiates them) so just WARN about this case for now. */
7940 if (IS_GEN7(dev)) {
7941 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
7942 PF_PIPE_SEL_IVB(crtc->pipe));
7943 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007944 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007945}
7946
Damien Lespiau5724dbd2015-01-20 12:51:52 +00007947static void
7948ironlake_get_initial_plane_config(struct intel_crtc *crtc,
7949 struct intel_initial_plane_config *plane_config)
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007950{
7951 struct drm_device *dev = crtc->base.dev;
7952 struct drm_i915_private *dev_priv = dev->dev_private;
7953 u32 val, base, offset;
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007954 int pipe = crtc->pipe;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007955 int fourcc, pixel_format;
7956 int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007957 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00007958 struct intel_framebuffer *intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007959
Damien Lespiau42a7b082015-02-05 19:35:13 +00007960 val = I915_READ(DSPCNTR(pipe));
7961 if (!(val & DISPLAY_PLANE_ENABLE))
7962 return;
7963
Damien Lespiaud9806c92015-01-21 14:07:19 +00007964 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00007965 if (!intel_fb) {
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007966 DRM_DEBUG_KMS("failed to alloc fb\n");
7967 return;
7968 }
7969
Damien Lespiau1b842c82015-01-21 13:50:54 +00007970 fb = &intel_fb->base;
7971
Daniel Vetter18c52472015-02-10 17:16:09 +00007972 if (INTEL_INFO(dev)->gen >= 4) {
7973 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00007974 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00007975 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
7976 }
7977 }
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007978
7979 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00007980 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007981 fb->pixel_format = fourcc;
7982 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007983
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007984 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007985 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007986 offset = I915_READ(DSPOFFSET(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007987 } else {
Damien Lespiau49af4492015-01-20 12:51:44 +00007988 if (plane_config->tiling)
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007989 offset = I915_READ(DSPTILEOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007990 else
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007991 offset = I915_READ(DSPLINOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007992 }
7993 plane_config->base = base;
7994
7995 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007996 fb->width = ((val >> 16) & 0xfff) + 1;
7997 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007998
7999 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008000 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008001
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008002 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00008003 fb->pixel_format,
8004 fb->modifier[0]);
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008005
Daniel Vetterf37b5c22015-02-10 23:12:27 +01008006 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008007
Damien Lespiau2844a922015-01-20 12:51:48 +00008008 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
8009 pipe_name(pipe), fb->width, fb->height,
8010 fb->bits_per_pixel, base, fb->pitches[0],
8011 plane_config->size);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008012
Damien Lespiau2d140302015-02-05 17:22:18 +00008013 plane_config->fb = intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008014}
8015
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008016static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008017 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008018{
8019 struct drm_device *dev = crtc->base.dev;
8020 struct drm_i915_private *dev_priv = dev->dev_private;
8021 uint32_t tmp;
8022
Daniel Vetterf458ebb2014-09-30 10:56:39 +02008023 if (!intel_display_power_is_enabled(dev_priv,
8024 POWER_DOMAIN_PIPE(crtc->pipe)))
Paulo Zanoni930e8c92014-07-04 13:38:34 -03008025 return false;
8026
Daniel Vettere143a212013-07-04 12:01:15 +02008027 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008028 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02008029
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008030 tmp = I915_READ(PIPECONF(crtc->pipe));
8031 if (!(tmp & PIPECONF_ENABLE))
8032 return false;
8033
Ville Syrjälä42571ae2013-09-06 23:29:00 +03008034 switch (tmp & PIPECONF_BPC_MASK) {
8035 case PIPECONF_6BPC:
8036 pipe_config->pipe_bpp = 18;
8037 break;
8038 case PIPECONF_8BPC:
8039 pipe_config->pipe_bpp = 24;
8040 break;
8041 case PIPECONF_10BPC:
8042 pipe_config->pipe_bpp = 30;
8043 break;
8044 case PIPECONF_12BPC:
8045 pipe_config->pipe_bpp = 36;
8046 break;
8047 default:
8048 break;
8049 }
8050
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02008051 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
8052 pipe_config->limited_color_range = true;
8053
Daniel Vetterab9412b2013-05-03 11:49:46 +02008054 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02008055 struct intel_shared_dpll *pll;
8056
Daniel Vetter88adfff2013-03-28 10:42:01 +01008057 pipe_config->has_pch_encoder = true;
8058
Daniel Vetter627eb5a2013-04-29 19:33:42 +02008059 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
8060 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
8061 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02008062
8063 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02008064
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008065 if (HAS_PCH_IBX(dev_priv->dev)) {
Daniel Vetterd94ab062013-07-04 12:01:16 +02008066 pipe_config->shared_dpll =
8067 (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008068 } else {
8069 tmp = I915_READ(PCH_DPLL_SEL);
8070 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
8071 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
8072 else
8073 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
8074 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02008075
8076 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
8077
8078 WARN_ON(!pll->get_hw_state(dev_priv, pll,
8079 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02008080
8081 tmp = pipe_config->dpll_hw_state.dpll;
8082 pipe_config->pixel_multiplier =
8083 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
8084 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03008085
8086 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02008087 } else {
8088 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02008089 }
8090
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008091 intel_get_pipe_timings(crtc, pipe_config);
8092
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008093 ironlake_get_pfit_config(crtc, pipe_config);
8094
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008095 return true;
8096}
8097
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008098static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
8099{
8100 struct drm_device *dev = dev_priv->dev;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008101 struct intel_crtc *crtc;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008102
Damien Lespiaud3fcc802014-05-13 23:32:22 +01008103 for_each_intel_crtc(dev, crtc)
Rob Clarke2c719b2014-12-15 13:56:32 -05008104 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008105 pipe_name(crtc->pipe));
8106
Rob Clarke2c719b2014-12-15 13:56:32 -05008107 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
8108 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
8109 I915_STATE_WARN(I915_READ(WRPLL_CTL1) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
8110 I915_STATE_WARN(I915_READ(WRPLL_CTL2) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
8111 I915_STATE_WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
8112 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008113 "CPU PWM1 enabled\n");
Paulo Zanonic5107b82014-07-04 11:50:30 -03008114 if (IS_HASWELL(dev))
Rob Clarke2c719b2014-12-15 13:56:32 -05008115 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
Paulo Zanonic5107b82014-07-04 11:50:30 -03008116 "CPU PWM2 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05008117 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008118 "PCH PWM1 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05008119 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008120 "Utility pin enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05008121 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008122
Paulo Zanoni9926ada2014-04-01 19:39:47 -03008123 /*
8124 * In theory we can still leave IRQs enabled, as long as only the HPD
8125 * interrupts remain enabled. We used to check for that, but since it's
8126 * gen-specific and since we only disable LCPLL after we fully disable
8127 * the interrupts, the check below should be enough.
8128 */
Rob Clarke2c719b2014-12-15 13:56:32 -05008129 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008130}
8131
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03008132static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
8133{
8134 struct drm_device *dev = dev_priv->dev;
8135
8136 if (IS_HASWELL(dev))
8137 return I915_READ(D_COMP_HSW);
8138 else
8139 return I915_READ(D_COMP_BDW);
8140}
8141
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03008142static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
8143{
8144 struct drm_device *dev = dev_priv->dev;
8145
8146 if (IS_HASWELL(dev)) {
8147 mutex_lock(&dev_priv->rps.hw_lock);
8148 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
8149 val))
Paulo Zanonif475dad2014-07-04 11:59:57 -03008150 DRM_ERROR("Failed to write to D_COMP\n");
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03008151 mutex_unlock(&dev_priv->rps.hw_lock);
8152 } else {
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03008153 I915_WRITE(D_COMP_BDW, val);
8154 POSTING_READ(D_COMP_BDW);
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03008155 }
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008156}
8157
8158/*
8159 * This function implements pieces of two sequences from BSpec:
8160 * - Sequence for display software to disable LCPLL
8161 * - Sequence for display software to allow package C8+
8162 * The steps implemented here are just the steps that actually touch the LCPLL
8163 * register. Callers should take care of disabling all the display engine
8164 * functions, doing the mode unset, fixing interrupts, etc.
8165 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03008166static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
8167 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008168{
8169 uint32_t val;
8170
8171 assert_can_disable_lcpll(dev_priv);
8172
8173 val = I915_READ(LCPLL_CTL);
8174
8175 if (switch_to_fclk) {
8176 val |= LCPLL_CD_SOURCE_FCLK;
8177 I915_WRITE(LCPLL_CTL, val);
8178
8179 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
8180 LCPLL_CD_SOURCE_FCLK_DONE, 1))
8181 DRM_ERROR("Switching to FCLK failed\n");
8182
8183 val = I915_READ(LCPLL_CTL);
8184 }
8185
8186 val |= LCPLL_PLL_DISABLE;
8187 I915_WRITE(LCPLL_CTL, val);
8188 POSTING_READ(LCPLL_CTL);
8189
8190 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
8191 DRM_ERROR("LCPLL still locked\n");
8192
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03008193 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008194 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03008195 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008196 ndelay(100);
8197
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03008198 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
8199 1))
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008200 DRM_ERROR("D_COMP RCOMP still in progress\n");
8201
8202 if (allow_power_down) {
8203 val = I915_READ(LCPLL_CTL);
8204 val |= LCPLL_POWER_DOWN_ALLOW;
8205 I915_WRITE(LCPLL_CTL, val);
8206 POSTING_READ(LCPLL_CTL);
8207 }
8208}
8209
8210/*
8211 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
8212 * source.
8213 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03008214static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008215{
8216 uint32_t val;
8217
8218 val = I915_READ(LCPLL_CTL);
8219
8220 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
8221 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
8222 return;
8223
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03008224 /*
8225 * Make sure we're not on PC8 state before disabling PC8, otherwise
8226 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03008227 */
Mika Kuoppala59bad942015-01-16 11:34:40 +02008228 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Paulo Zanoni215733f2013-08-19 13:18:07 -03008229
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008230 if (val & LCPLL_POWER_DOWN_ALLOW) {
8231 val &= ~LCPLL_POWER_DOWN_ALLOW;
8232 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02008233 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008234 }
8235
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03008236 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008237 val |= D_COMP_COMP_FORCE;
8238 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03008239 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008240
8241 val = I915_READ(LCPLL_CTL);
8242 val &= ~LCPLL_PLL_DISABLE;
8243 I915_WRITE(LCPLL_CTL, val);
8244
8245 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
8246 DRM_ERROR("LCPLL not locked yet\n");
8247
8248 if (val & LCPLL_CD_SOURCE_FCLK) {
8249 val = I915_READ(LCPLL_CTL);
8250 val &= ~LCPLL_CD_SOURCE_FCLK;
8251 I915_WRITE(LCPLL_CTL, val);
8252
8253 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
8254 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
8255 DRM_ERROR("Switching back to LCPLL failed\n");
8256 }
Paulo Zanoni215733f2013-08-19 13:18:07 -03008257
Mika Kuoppala59bad942015-01-16 11:34:40 +02008258 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008259}
8260
Paulo Zanoni765dab672014-03-07 20:08:18 -03008261/*
8262 * Package states C8 and deeper are really deep PC states that can only be
8263 * reached when all the devices on the system allow it, so even if the graphics
8264 * device allows PC8+, it doesn't mean the system will actually get to these
8265 * states. Our driver only allows PC8+ when going into runtime PM.
8266 *
8267 * The requirements for PC8+ are that all the outputs are disabled, the power
8268 * well is disabled and most interrupts are disabled, and these are also
8269 * requirements for runtime PM. When these conditions are met, we manually do
8270 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
8271 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
8272 * hang the machine.
8273 *
8274 * When we really reach PC8 or deeper states (not just when we allow it) we lose
8275 * the state of some registers, so when we come back from PC8+ we need to
8276 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
8277 * need to take care of the registers kept by RC6. Notice that this happens even
8278 * if we don't put the device in PCI D3 state (which is what currently happens
8279 * because of the runtime PM support).
8280 *
8281 * For more, read "Display Sequences for Package C8" on the hardware
8282 * documentation.
8283 */
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03008284void hsw_enable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03008285{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008286 struct drm_device *dev = dev_priv->dev;
8287 uint32_t val;
8288
Paulo Zanonic67a4702013-08-19 13:18:09 -03008289 DRM_DEBUG_KMS("Enabling package C8+\n");
8290
Paulo Zanonic67a4702013-08-19 13:18:09 -03008291 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
8292 val = I915_READ(SOUTH_DSPCLK_GATE_D);
8293 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
8294 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
8295 }
8296
8297 lpt_disable_clkout_dp(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008298 hsw_disable_lcpll(dev_priv, true, true);
8299}
8300
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03008301void hsw_disable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03008302{
8303 struct drm_device *dev = dev_priv->dev;
8304 uint32_t val;
8305
Paulo Zanonic67a4702013-08-19 13:18:09 -03008306 DRM_DEBUG_KMS("Disabling package C8+\n");
8307
8308 hsw_restore_lcpll(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008309 lpt_init_pch_refclk(dev);
8310
8311 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
8312 val = I915_READ(SOUTH_DSPCLK_GATE_D);
8313 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
8314 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
8315 }
8316
8317 intel_prepare_ddi(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008318}
8319
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008320static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
8321 struct intel_crtc_state *crtc_state)
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03008322{
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008323 if (!intel_ddi_pll_select(crtc, crtc_state))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03008324 return -EINVAL;
Daniel Vetter716c2e52014-06-25 22:02:02 +03008325
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008326 crtc->lowfreq_avail = false;
Daniel Vetter644cef32014-04-24 23:55:07 +02008327
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02008328 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008329}
8330
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008331static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
8332 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008333 struct intel_crtc_state *pipe_config)
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008334{
Damien Lespiau3148ade2014-11-21 16:14:56 +00008335 u32 temp, dpll_ctl1;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008336
8337 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
8338 pipe_config->ddi_pll_sel = temp >> (port * 3 + 1);
8339
8340 switch (pipe_config->ddi_pll_sel) {
Damien Lespiau3148ade2014-11-21 16:14:56 +00008341 case SKL_DPLL0:
8342 /*
8343 * On SKL the eDP DPLL (DPLL0 as we don't use SSC) is not part
8344 * of the shared DPLL framework and thus needs to be read out
8345 * separately
8346 */
8347 dpll_ctl1 = I915_READ(DPLL_CTRL1);
8348 pipe_config->dpll_hw_state.ctrl1 = dpll_ctl1 & 0x3f;
8349 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008350 case SKL_DPLL1:
8351 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
8352 break;
8353 case SKL_DPLL2:
8354 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
8355 break;
8356 case SKL_DPLL3:
8357 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
8358 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008359 }
8360}
8361
Damien Lespiau7d2c8172014-07-29 18:06:18 +01008362static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
8363 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008364 struct intel_crtc_state *pipe_config)
Damien Lespiau7d2c8172014-07-29 18:06:18 +01008365{
8366 pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
8367
8368 switch (pipe_config->ddi_pll_sel) {
8369 case PORT_CLK_SEL_WRPLL1:
8370 pipe_config->shared_dpll = DPLL_ID_WRPLL1;
8371 break;
8372 case PORT_CLK_SEL_WRPLL2:
8373 pipe_config->shared_dpll = DPLL_ID_WRPLL2;
8374 break;
8375 }
8376}
8377
Daniel Vetter26804af2014-06-25 22:01:55 +03008378static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008379 struct intel_crtc_state *pipe_config)
Daniel Vetter26804af2014-06-25 22:01:55 +03008380{
8381 struct drm_device *dev = crtc->base.dev;
8382 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterd452c5b2014-07-04 11:27:39 -03008383 struct intel_shared_dpll *pll;
Daniel Vetter26804af2014-06-25 22:01:55 +03008384 enum port port;
8385 uint32_t tmp;
8386
8387 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
8388
8389 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
8390
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008391 if (IS_SKYLAKE(dev))
8392 skylake_get_ddi_pll(dev_priv, port, pipe_config);
8393 else
8394 haswell_get_ddi_pll(dev_priv, port, pipe_config);
Daniel Vetter9cd86932014-06-25 22:01:57 +03008395
Daniel Vetterd452c5b2014-07-04 11:27:39 -03008396 if (pipe_config->shared_dpll >= 0) {
8397 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
8398
8399 WARN_ON(!pll->get_hw_state(dev_priv, pll,
8400 &pipe_config->dpll_hw_state));
8401 }
8402
Daniel Vetter26804af2014-06-25 22:01:55 +03008403 /*
8404 * Haswell has only FDI/PCH transcoder A. It is which is connected to
8405 * DDI E. So just check whether this pipe is wired to DDI E and whether
8406 * the PCH transcoder is on.
8407 */
Damien Lespiauca370452013-12-03 13:56:24 +00008408 if (INTEL_INFO(dev)->gen < 9 &&
8409 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
Daniel Vetter26804af2014-06-25 22:01:55 +03008410 pipe_config->has_pch_encoder = true;
8411
8412 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
8413 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
8414 FDI_DP_PORT_WIDTH_SHIFT) + 1;
8415
8416 ironlake_get_fdi_m_n_config(crtc, pipe_config);
8417 }
8418}
8419
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008420static bool haswell_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008421 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008422{
8423 struct drm_device *dev = crtc->base.dev;
8424 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008425 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008426 uint32_t tmp;
8427
Daniel Vetterf458ebb2014-09-30 10:56:39 +02008428 if (!intel_display_power_is_enabled(dev_priv,
Imre Deakb5482bd2014-03-05 16:20:55 +02008429 POWER_DOMAIN_PIPE(crtc->pipe)))
8430 return false;
8431
Daniel Vettere143a212013-07-04 12:01:15 +02008432 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008433 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
8434
Daniel Vettereccb1402013-05-22 00:50:22 +02008435 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
8436 if (tmp & TRANS_DDI_FUNC_ENABLE) {
8437 enum pipe trans_edp_pipe;
8438 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
8439 default:
8440 WARN(1, "unknown pipe linked to edp transcoder\n");
8441 case TRANS_DDI_EDP_INPUT_A_ONOFF:
8442 case TRANS_DDI_EDP_INPUT_A_ON:
8443 trans_edp_pipe = PIPE_A;
8444 break;
8445 case TRANS_DDI_EDP_INPUT_B_ONOFF:
8446 trans_edp_pipe = PIPE_B;
8447 break;
8448 case TRANS_DDI_EDP_INPUT_C_ONOFF:
8449 trans_edp_pipe = PIPE_C;
8450 break;
8451 }
8452
8453 if (trans_edp_pipe == crtc->pipe)
8454 pipe_config->cpu_transcoder = TRANSCODER_EDP;
8455 }
8456
Daniel Vetterf458ebb2014-09-30 10:56:39 +02008457 if (!intel_display_power_is_enabled(dev_priv,
Daniel Vettereccb1402013-05-22 00:50:22 +02008458 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -03008459 return false;
8460
Daniel Vettereccb1402013-05-22 00:50:22 +02008461 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008462 if (!(tmp & PIPECONF_ENABLE))
8463 return false;
8464
Daniel Vetter26804af2014-06-25 22:01:55 +03008465 haswell_get_ddi_port_state(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02008466
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008467 intel_get_pipe_timings(crtc, pipe_config);
8468
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008469 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00008470 if (intel_display_power_is_enabled(dev_priv, pfit_domain)) {
8471 if (IS_SKYLAKE(dev))
8472 skylake_get_pfit_config(crtc, pipe_config);
8473 else
8474 ironlake_get_pfit_config(crtc, pipe_config);
8475 }
Daniel Vetter88adfff2013-03-28 10:42:01 +01008476
Jesse Barnese59150d2014-01-07 13:30:45 -08008477 if (IS_HASWELL(dev))
8478 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
8479 (I915_READ(IPS_CTL) & IPS_ENABLE);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03008480
Clint Taylorebb69c92014-09-30 10:30:22 -07008481 if (pipe_config->cpu_transcoder != TRANSCODER_EDP) {
8482 pipe_config->pixel_multiplier =
8483 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
8484 } else {
8485 pipe_config->pixel_multiplier = 1;
8486 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02008487
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008488 return true;
8489}
8490
Chris Wilson560b85b2010-08-07 11:01:38 +01008491static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
8492{
8493 struct drm_device *dev = crtc->dev;
8494 struct drm_i915_private *dev_priv = dev->dev_private;
8495 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälädc41c152014-08-13 11:57:05 +03008496 uint32_t cntl = 0, size = 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01008497
Ville Syrjälädc41c152014-08-13 11:57:05 +03008498 if (base) {
Matt Roper3dd512f2015-02-27 10:12:00 -08008499 unsigned int width = intel_crtc->base.cursor->state->crtc_w;
8500 unsigned int height = intel_crtc->base.cursor->state->crtc_h;
Ville Syrjälädc41c152014-08-13 11:57:05 +03008501 unsigned int stride = roundup_pow_of_two(width) * 4;
8502
8503 switch (stride) {
8504 default:
8505 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
8506 width, stride);
8507 stride = 256;
8508 /* fallthrough */
8509 case 256:
8510 case 512:
8511 case 1024:
8512 case 2048:
8513 break;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008514 }
8515
Ville Syrjälädc41c152014-08-13 11:57:05 +03008516 cntl |= CURSOR_ENABLE |
8517 CURSOR_GAMMA_ENABLE |
8518 CURSOR_FORMAT_ARGB |
8519 CURSOR_STRIDE(stride);
8520
8521 size = (height << 12) | width;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008522 }
Chris Wilson560b85b2010-08-07 11:01:38 +01008523
Ville Syrjälädc41c152014-08-13 11:57:05 +03008524 if (intel_crtc->cursor_cntl != 0 &&
8525 (intel_crtc->cursor_base != base ||
8526 intel_crtc->cursor_size != size ||
8527 intel_crtc->cursor_cntl != cntl)) {
8528 /* On these chipsets we can only modify the base/size/stride
8529 * whilst the cursor is disabled.
8530 */
8531 I915_WRITE(_CURACNTR, 0);
8532 POSTING_READ(_CURACNTR);
8533 intel_crtc->cursor_cntl = 0;
8534 }
8535
Ville Syrjälä99d1f382014-09-12 20:53:32 +03008536 if (intel_crtc->cursor_base != base) {
Ville Syrjälädc41c152014-08-13 11:57:05 +03008537 I915_WRITE(_CURABASE, base);
Ville Syrjälä99d1f382014-09-12 20:53:32 +03008538 intel_crtc->cursor_base = base;
8539 }
Ville Syrjälädc41c152014-08-13 11:57:05 +03008540
8541 if (intel_crtc->cursor_size != size) {
8542 I915_WRITE(CURSIZE, size);
8543 intel_crtc->cursor_size = size;
8544 }
8545
Chris Wilson4b0e3332014-05-30 16:35:26 +03008546 if (intel_crtc->cursor_cntl != cntl) {
8547 I915_WRITE(_CURACNTR, cntl);
8548 POSTING_READ(_CURACNTR);
8549 intel_crtc->cursor_cntl = cntl;
8550 }
Chris Wilson560b85b2010-08-07 11:01:38 +01008551}
8552
8553static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
8554{
8555 struct drm_device *dev = crtc->dev;
8556 struct drm_i915_private *dev_priv = dev->dev_private;
8557 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8558 int pipe = intel_crtc->pipe;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008559 uint32_t cntl;
Chris Wilson560b85b2010-08-07 11:01:38 +01008560
Chris Wilson4b0e3332014-05-30 16:35:26 +03008561 cntl = 0;
8562 if (base) {
8563 cntl = MCURSOR_GAMMA_ENABLE;
Matt Roper3dd512f2015-02-27 10:12:00 -08008564 switch (intel_crtc->base.cursor->state->crtc_w) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308565 case 64:
8566 cntl |= CURSOR_MODE_64_ARGB_AX;
8567 break;
8568 case 128:
8569 cntl |= CURSOR_MODE_128_ARGB_AX;
8570 break;
8571 case 256:
8572 cntl |= CURSOR_MODE_256_ARGB_AX;
8573 break;
8574 default:
Matt Roper3dd512f2015-02-27 10:12:00 -08008575 MISSING_CASE(intel_crtc->base.cursor->state->crtc_w);
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308576 return;
Chris Wilson560b85b2010-08-07 11:01:38 +01008577 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03008578 cntl |= pipe << 28; /* Connect to correct pipe */
Ville Syrjälä47bf17a2014-09-12 20:53:33 +03008579
8580 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
8581 cntl |= CURSOR_PIPE_CSC_ENABLE;
Chris Wilson560b85b2010-08-07 11:01:38 +01008582 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03008583
Matt Roper8e7d6882015-01-21 16:35:41 -08008584 if (crtc->cursor->state->rotation == BIT(DRM_ROTATE_180))
Ville Syrjälä4398ad42014-10-23 07:41:34 -07008585 cntl |= CURSOR_ROTATE_180;
8586
Chris Wilson4b0e3332014-05-30 16:35:26 +03008587 if (intel_crtc->cursor_cntl != cntl) {
8588 I915_WRITE(CURCNTR(pipe), cntl);
8589 POSTING_READ(CURCNTR(pipe));
8590 intel_crtc->cursor_cntl = cntl;
8591 }
8592
Jesse Barnes65a21cd2011-10-12 11:10:21 -07008593 /* and commit changes on next vblank */
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008594 I915_WRITE(CURBASE(pipe), base);
8595 POSTING_READ(CURBASE(pipe));
Ville Syrjälä99d1f382014-09-12 20:53:32 +03008596
8597 intel_crtc->cursor_base = base;
Jesse Barnes65a21cd2011-10-12 11:10:21 -07008598}
8599
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008600/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01008601static void intel_crtc_update_cursor(struct drm_crtc *crtc,
8602 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008603{
8604 struct drm_device *dev = crtc->dev;
8605 struct drm_i915_private *dev_priv = dev->dev_private;
8606 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8607 int pipe = intel_crtc->pipe;
Matt Roper3d7d6512014-06-10 08:28:13 -07008608 int x = crtc->cursor_x;
8609 int y = crtc->cursor_y;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008610 u32 base = 0, pos = 0;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008611
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008612 if (on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008613 base = intel_crtc->cursor_addr;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008614
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008615 if (x >= intel_crtc->config->pipe_src_w)
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008616 base = 0;
8617
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008618 if (y >= intel_crtc->config->pipe_src_h)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008619 base = 0;
8620
8621 if (x < 0) {
Matt Roper3dd512f2015-02-27 10:12:00 -08008622 if (x + intel_crtc->base.cursor->state->crtc_w <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008623 base = 0;
8624
8625 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
8626 x = -x;
8627 }
8628 pos |= x << CURSOR_X_SHIFT;
8629
8630 if (y < 0) {
Matt Roper3dd512f2015-02-27 10:12:00 -08008631 if (y + intel_crtc->base.cursor->state->crtc_h <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008632 base = 0;
8633
8634 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
8635 y = -y;
8636 }
8637 pos |= y << CURSOR_Y_SHIFT;
8638
Chris Wilson4b0e3332014-05-30 16:35:26 +03008639 if (base == 0 && intel_crtc->cursor_base == 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008640 return;
8641
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008642 I915_WRITE(CURPOS(pipe), pos);
8643
Ville Syrjälä4398ad42014-10-23 07:41:34 -07008644 /* ILK+ do this automagically */
8645 if (HAS_GMCH_DISPLAY(dev) &&
Matt Roper8e7d6882015-01-21 16:35:41 -08008646 crtc->cursor->state->rotation == BIT(DRM_ROTATE_180)) {
Matt Roper3dd512f2015-02-27 10:12:00 -08008647 base += (intel_crtc->base.cursor->state->crtc_h *
8648 intel_crtc->base.cursor->state->crtc_w - 1) * 4;
Ville Syrjälä4398ad42014-10-23 07:41:34 -07008649 }
8650
Ville Syrjälä8ac54662014-08-12 19:39:54 +03008651 if (IS_845G(dev) || IS_I865G(dev))
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008652 i845_update_cursor(crtc, base);
8653 else
8654 i9xx_update_cursor(crtc, base);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008655}
8656
Ville Syrjälädc41c152014-08-13 11:57:05 +03008657static bool cursor_size_ok(struct drm_device *dev,
8658 uint32_t width, uint32_t height)
8659{
8660 if (width == 0 || height == 0)
8661 return false;
8662
8663 /*
8664 * 845g/865g are special in that they are only limited by
8665 * the width of their cursors, the height is arbitrary up to
8666 * the precision of the register. Everything else requires
8667 * square cursors, limited to a few power-of-two sizes.
8668 */
8669 if (IS_845G(dev) || IS_I865G(dev)) {
8670 if ((width & 63) != 0)
8671 return false;
8672
8673 if (width > (IS_845G(dev) ? 64 : 512))
8674 return false;
8675
8676 if (height > 1023)
8677 return false;
8678 } else {
8679 switch (width | height) {
8680 case 256:
8681 case 128:
8682 if (IS_GEN2(dev))
8683 return false;
8684 case 64:
8685 break;
8686 default:
8687 return false;
8688 }
8689 }
8690
8691 return true;
8692}
8693
Jesse Barnes79e53942008-11-07 14:24:08 -08008694static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01008695 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08008696{
James Simmons72034252010-08-03 01:33:19 +01008697 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08008698 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008699
James Simmons72034252010-08-03 01:33:19 +01008700 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008701 intel_crtc->lut_r[i] = red[i] >> 8;
8702 intel_crtc->lut_g[i] = green[i] >> 8;
8703 intel_crtc->lut_b[i] = blue[i] >> 8;
8704 }
8705
8706 intel_crtc_load_lut(crtc);
8707}
8708
Jesse Barnes79e53942008-11-07 14:24:08 -08008709/* VESA 640x480x72Hz mode to set on the pipe */
8710static struct drm_display_mode load_detect_mode = {
8711 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
8712 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
8713};
8714
Daniel Vettera8bb6812014-02-10 18:00:39 +01008715struct drm_framebuffer *
8716__intel_framebuffer_create(struct drm_device *dev,
8717 struct drm_mode_fb_cmd2 *mode_cmd,
8718 struct drm_i915_gem_object *obj)
Chris Wilsond2dff872011-04-19 08:36:26 +01008719{
8720 struct intel_framebuffer *intel_fb;
8721 int ret;
8722
8723 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
8724 if (!intel_fb) {
Alexey Khoroshilov6ccb81f2014-11-08 01:41:23 +03008725 drm_gem_object_unreference(&obj->base);
Chris Wilsond2dff872011-04-19 08:36:26 +01008726 return ERR_PTR(-ENOMEM);
8727 }
8728
8729 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008730 if (ret)
8731 goto err;
Chris Wilsond2dff872011-04-19 08:36:26 +01008732
8733 return &intel_fb->base;
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008734err:
Alexey Khoroshilov6ccb81f2014-11-08 01:41:23 +03008735 drm_gem_object_unreference(&obj->base);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008736 kfree(intel_fb);
8737
8738 return ERR_PTR(ret);
Chris Wilsond2dff872011-04-19 08:36:26 +01008739}
8740
Daniel Vetterb5ea6422014-03-02 21:18:00 +01008741static struct drm_framebuffer *
Daniel Vettera8bb6812014-02-10 18:00:39 +01008742intel_framebuffer_create(struct drm_device *dev,
8743 struct drm_mode_fb_cmd2 *mode_cmd,
8744 struct drm_i915_gem_object *obj)
8745{
8746 struct drm_framebuffer *fb;
8747 int ret;
8748
8749 ret = i915_mutex_lock_interruptible(dev);
8750 if (ret)
8751 return ERR_PTR(ret);
8752 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
8753 mutex_unlock(&dev->struct_mutex);
8754
8755 return fb;
8756}
8757
Chris Wilsond2dff872011-04-19 08:36:26 +01008758static u32
8759intel_framebuffer_pitch_for_width(int width, int bpp)
8760{
8761 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
8762 return ALIGN(pitch, 64);
8763}
8764
8765static u32
8766intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
8767{
8768 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
Fabian Frederick1267a262014-07-01 20:39:41 +02008769 return PAGE_ALIGN(pitch * mode->vdisplay);
Chris Wilsond2dff872011-04-19 08:36:26 +01008770}
8771
8772static struct drm_framebuffer *
8773intel_framebuffer_create_for_mode(struct drm_device *dev,
8774 struct drm_display_mode *mode,
8775 int depth, int bpp)
8776{
8777 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +00008778 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +01008779
8780 obj = i915_gem_alloc_object(dev,
8781 intel_framebuffer_size_for_mode(mode, bpp));
8782 if (obj == NULL)
8783 return ERR_PTR(-ENOMEM);
8784
8785 mode_cmd.width = mode->hdisplay;
8786 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008787 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
8788 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00008789 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01008790
8791 return intel_framebuffer_create(dev, &mode_cmd, obj);
8792}
8793
8794static struct drm_framebuffer *
8795mode_fits_in_fbdev(struct drm_device *dev,
8796 struct drm_display_mode *mode)
8797{
Daniel Vetter4520f532013-10-09 09:18:51 +02008798#ifdef CONFIG_DRM_I915_FBDEV
Chris Wilsond2dff872011-04-19 08:36:26 +01008799 struct drm_i915_private *dev_priv = dev->dev_private;
8800 struct drm_i915_gem_object *obj;
8801 struct drm_framebuffer *fb;
8802
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008803 if (!dev_priv->fbdev)
8804 return NULL;
8805
8806 if (!dev_priv->fbdev->fb)
Chris Wilsond2dff872011-04-19 08:36:26 +01008807 return NULL;
8808
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008809 obj = dev_priv->fbdev->fb->obj;
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008810 BUG_ON(!obj);
Chris Wilsond2dff872011-04-19 08:36:26 +01008811
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008812 fb = &dev_priv->fbdev->fb->base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008813 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
8814 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01008815 return NULL;
8816
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008817 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01008818 return NULL;
8819
8820 return fb;
Daniel Vetter4520f532013-10-09 09:18:51 +02008821#else
8822 return NULL;
8823#endif
Chris Wilsond2dff872011-04-19 08:36:26 +01008824}
8825
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008826bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01008827 struct drm_display_mode *mode,
Rob Clark51fd3712013-11-19 12:10:12 -05008828 struct intel_load_detect_pipe *old,
8829 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -08008830{
8831 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008832 struct intel_encoder *intel_encoder =
8833 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08008834 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01008835 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08008836 struct drm_crtc *crtc = NULL;
8837 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02008838 struct drm_framebuffer *fb;
Rob Clark51fd3712013-11-19 12:10:12 -05008839 struct drm_mode_config *config = &dev->mode_config;
8840 int ret, i = -1;
Jesse Barnes79e53942008-11-07 14:24:08 -08008841
Chris Wilsond2dff872011-04-19 08:36:26 +01008842 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03008843 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +03008844 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +01008845
Rob Clark51fd3712013-11-19 12:10:12 -05008846retry:
8847 ret = drm_modeset_lock(&config->connection_mutex, ctx);
8848 if (ret)
8849 goto fail_unlock;
Daniel Vetter6e9f7982014-05-29 23:54:47 +02008850
Jesse Barnes79e53942008-11-07 14:24:08 -08008851 /*
8852 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01008853 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008854 * - if the connector already has an assigned crtc, use it (but make
8855 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01008856 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008857 * - try to find the first unused crtc that can drive this connector,
8858 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08008859 */
8860
8861 /* See if we already have a CRTC for this connector */
8862 if (encoder->crtc) {
8863 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01008864
Rob Clark51fd3712013-11-19 12:10:12 -05008865 ret = drm_modeset_lock(&crtc->mutex, ctx);
8866 if (ret)
8867 goto fail_unlock;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01008868 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
8869 if (ret)
8870 goto fail_unlock;
Daniel Vetter7b240562012-12-12 00:35:33 +01008871
Daniel Vetter24218aa2012-08-12 19:27:11 +02008872 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008873 old->load_detect_temp = false;
8874
8875 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008876 if (connector->dpms != DRM_MODE_DPMS_ON)
8877 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01008878
Chris Wilson71731882011-04-19 23:10:58 +01008879 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08008880 }
8881
8882 /* Find an unused one (if possible) */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008883 for_each_crtc(dev, possible_crtc) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008884 i++;
8885 if (!(encoder->possible_crtcs & (1 << i)))
8886 continue;
Matt Roper83d65732015-02-25 13:12:16 -08008887 if (possible_crtc->state->enable)
Ville Syrjäläa4592492014-08-11 13:15:36 +03008888 continue;
8889 /* This can occur when applying the pipe A quirk on resume. */
8890 if (to_intel_crtc(possible_crtc)->new_enabled)
8891 continue;
8892
8893 crtc = possible_crtc;
8894 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08008895 }
8896
8897 /*
8898 * If we didn't find an unused CRTC, don't use any.
8899 */
8900 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01008901 DRM_DEBUG_KMS("no pipe available for load-detect\n");
Rob Clark51fd3712013-11-19 12:10:12 -05008902 goto fail_unlock;
Jesse Barnes79e53942008-11-07 14:24:08 -08008903 }
8904
Rob Clark51fd3712013-11-19 12:10:12 -05008905 ret = drm_modeset_lock(&crtc->mutex, ctx);
8906 if (ret)
8907 goto fail_unlock;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01008908 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
8909 if (ret)
8910 goto fail_unlock;
Daniel Vetterfc303102012-07-09 10:40:58 +02008911 intel_encoder->new_crtc = to_intel_crtc(crtc);
8912 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008913
8914 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008915 intel_crtc->new_enabled = true;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008916 intel_crtc->new_config = intel_crtc->config;
Daniel Vetter24218aa2012-08-12 19:27:11 +02008917 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008918 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01008919 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08008920
Chris Wilson64927112011-04-20 07:25:26 +01008921 if (!mode)
8922 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08008923
Chris Wilsond2dff872011-04-19 08:36:26 +01008924 /* We need a framebuffer large enough to accommodate all accesses
8925 * that the plane may generate whilst we perform load detection.
8926 * We can not rely on the fbcon either being present (we get called
8927 * during its initialisation to detect all boot displays, or it may
8928 * not even exist) or that it is large enough to satisfy the
8929 * requested mode.
8930 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02008931 fb = mode_fits_in_fbdev(dev, mode);
8932 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008933 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008934 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
8935 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01008936 } else
8937 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008938 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008939 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008940 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008941 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008942
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008943 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01008944 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01008945 if (old->release_fb)
8946 old->release_fb->funcs->destroy(old->release_fb);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008947 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008948 }
Daniel Vetter9128b042015-03-03 17:31:21 +01008949 crtc->primary->crtc = crtc;
Chris Wilson71731882011-04-19 23:10:58 +01008950
Jesse Barnes79e53942008-11-07 14:24:08 -08008951 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008952 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +01008953 return true;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008954
8955 fail:
Matt Roper83d65732015-02-25 13:12:16 -08008956 intel_crtc->new_enabled = crtc->state->enable;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008957 if (intel_crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008958 intel_crtc->new_config = intel_crtc->config;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008959 else
8960 intel_crtc->new_config = NULL;
Rob Clark51fd3712013-11-19 12:10:12 -05008961fail_unlock:
8962 if (ret == -EDEADLK) {
8963 drm_modeset_backoff(ctx);
8964 goto retry;
8965 }
8966
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008967 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08008968}
8969
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008970void intel_release_load_detect_pipe(struct drm_connector *connector,
Ville Syrjälä208bf9f2014-08-11 13:15:35 +03008971 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08008972{
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008973 struct intel_encoder *intel_encoder =
8974 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01008975 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +01008976 struct drm_crtc *crtc = encoder->crtc;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008977 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008978
Chris Wilsond2dff872011-04-19 08:36:26 +01008979 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03008980 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +03008981 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +01008982
Chris Wilson8261b192011-04-19 23:18:09 +01008983 if (old->load_detect_temp) {
Daniel Vetterfc303102012-07-09 10:40:58 +02008984 to_intel_connector(connector)->new_encoder = NULL;
8985 intel_encoder->new_crtc = NULL;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008986 intel_crtc->new_enabled = false;
8987 intel_crtc->new_config = NULL;
Daniel Vetterfc303102012-07-09 10:40:58 +02008988 intel_set_mode(crtc, NULL, 0, 0, NULL);
Chris Wilsond2dff872011-04-19 08:36:26 +01008989
Daniel Vetter36206362012-12-10 20:42:17 +01008990 if (old->release_fb) {
8991 drm_framebuffer_unregister_private(old->release_fb);
8992 drm_framebuffer_unreference(old->release_fb);
8993 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008994
Chris Wilson0622a532011-04-21 09:32:11 +01008995 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008996 }
8997
Eric Anholtc751ce42010-03-25 11:48:48 -07008998 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008999 if (old->dpms_mode != DRM_MODE_DPMS_ON)
9000 connector->funcs->dpms(connector, old->dpms_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08009001}
9002
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03009003static int i9xx_pll_refclk(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009004 const struct intel_crtc_state *pipe_config)
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03009005{
9006 struct drm_i915_private *dev_priv = dev->dev_private;
9007 u32 dpll = pipe_config->dpll_hw_state.dpll;
9008
9009 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
Ville Syrjäläe91e9412013-12-09 18:54:16 +02009010 return dev_priv->vbt.lvds_ssc_freq;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03009011 else if (HAS_PCH_SPLIT(dev))
9012 return 120000;
9013 else if (!IS_GEN2(dev))
9014 return 96000;
9015 else
9016 return 48000;
9017}
9018
Jesse Barnes79e53942008-11-07 14:24:08 -08009019/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009020static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009021 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08009022{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009023 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08009024 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009025 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +03009026 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -08009027 u32 fp;
9028 intel_clock_t clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03009029 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -08009030
9031 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +03009032 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -08009033 else
Ville Syrjälä293623f2013-09-13 16:18:46 +03009034 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -08009035
9036 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05009037 if (IS_PINEVIEW(dev)) {
9038 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
9039 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08009040 } else {
9041 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
9042 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
9043 }
9044
Chris Wilsona6c45cf2010-09-17 00:32:17 +01009045 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05009046 if (IS_PINEVIEW(dev))
9047 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
9048 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08009049 else
9050 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08009051 DPLL_FPA01_P1_POST_DIV_SHIFT);
9052
9053 switch (dpll & DPLL_MODE_MASK) {
9054 case DPLLB_MODE_DAC_SERIAL:
9055 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
9056 5 : 10;
9057 break;
9058 case DPLLB_MODE_LVDS:
9059 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
9060 7 : 14;
9061 break;
9062 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08009063 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08009064 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009065 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08009066 }
9067
Daniel Vetterac58c3f2013-06-01 17:16:17 +02009068 if (IS_PINEVIEW(dev))
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03009069 pineview_clock(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +02009070 else
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03009071 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08009072 } else {
Ville Syrjälä0fb58222014-01-10 14:06:46 +02009073 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02009074 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
Jesse Barnes79e53942008-11-07 14:24:08 -08009075
9076 if (is_lvds) {
9077 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
9078 DPLL_FPA01_P1_POST_DIV_SHIFT);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02009079
9080 if (lvds & LVDS_CLKB_POWER_UP)
9081 clock.p2 = 7;
9082 else
9083 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -08009084 } else {
9085 if (dpll & PLL_P1_DIVIDE_BY_TWO)
9086 clock.p1 = 2;
9087 else {
9088 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
9089 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
9090 }
9091 if (dpll & PLL_P2_DIVIDE_BY_4)
9092 clock.p2 = 4;
9093 else
9094 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -08009095 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03009096
9097 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08009098 }
9099
Ville Syrjälä18442d02013-09-13 16:00:08 +03009100 /*
9101 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +01009102 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +03009103 * encoder's get_config() function.
9104 */
9105 pipe_config->port_clock = clock.dot;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009106}
9107
Ville Syrjälä6878da02013-09-13 15:59:11 +03009108int intel_dotclock_calculate(int link_freq,
9109 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009110{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009111 /*
9112 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +03009113 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009114 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +03009115 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009116 *
9117 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +03009118 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -08009119 */
9120
Ville Syrjälä6878da02013-09-13 15:59:11 +03009121 if (!m_n->link_n)
9122 return 0;
9123
9124 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
9125}
9126
Ville Syrjälä18442d02013-09-13 16:00:08 +03009127static void ironlake_pch_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009128 struct intel_crtc_state *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +03009129{
9130 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä18442d02013-09-13 16:00:08 +03009131
9132 /* read out port_clock from the DPLL */
9133 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +03009134
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009135 /*
Ville Syrjälä18442d02013-09-13 16:00:08 +03009136 * This value does not include pixel_multiplier.
Damien Lespiau241bfc32013-09-25 16:45:37 +01009137 * We will check that port_clock and adjusted_mode.crtc_clock
Ville Syrjälä18442d02013-09-13 16:00:08 +03009138 * agree once we know their relationship in the encoder's
9139 * get_config() function.
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009140 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02009141 pipe_config->base.adjusted_mode.crtc_clock =
Ville Syrjälä18442d02013-09-13 16:00:08 +03009142 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
9143 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -08009144}
9145
9146/** Returns the currently programmed mode of the given pipe. */
9147struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
9148 struct drm_crtc *crtc)
9149{
Jesse Barnes548f2452011-02-17 10:40:53 -08009150 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08009151 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009152 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08009153 struct drm_display_mode *mode;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009154 struct intel_crtc_state pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -02009155 int htot = I915_READ(HTOTAL(cpu_transcoder));
9156 int hsync = I915_READ(HSYNC(cpu_transcoder));
9157 int vtot = I915_READ(VTOTAL(cpu_transcoder));
9158 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +03009159 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08009160
9161 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
9162 if (!mode)
9163 return NULL;
9164
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009165 /*
9166 * Construct a pipe_config sufficient for getting the clock info
9167 * back out of crtc_clock_get.
9168 *
9169 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
9170 * to use a real value here instead.
9171 */
Ville Syrjälä293623f2013-09-13 16:18:46 +03009172 pipe_config.cpu_transcoder = (enum transcoder) pipe;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009173 pipe_config.pixel_multiplier = 1;
Ville Syrjälä293623f2013-09-13 16:18:46 +03009174 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
9175 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
9176 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009177 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
9178
Ville Syrjälä773ae032013-09-23 17:48:20 +03009179 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -08009180 mode->hdisplay = (htot & 0xffff) + 1;
9181 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
9182 mode->hsync_start = (hsync & 0xffff) + 1;
9183 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
9184 mode->vdisplay = (vtot & 0xffff) + 1;
9185 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
9186 mode->vsync_start = (vsync & 0xffff) + 1;
9187 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
9188
9189 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08009190
9191 return mode;
9192}
9193
Jesse Barnes652c3932009-08-17 13:31:43 -07009194static void intel_decrease_pllclock(struct drm_crtc *crtc)
9195{
9196 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +03009197 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -07009198 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07009199
Sonika Jindalbaff2962014-07-22 11:16:35 +05309200 if (!HAS_GMCH_DISPLAY(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07009201 return;
9202
9203 if (!dev_priv->lvds_downclock_avail)
9204 return;
9205
9206 /*
9207 * Since this is called by a timer, we should never get here in
9208 * the manual case.
9209 */
9210 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01009211 int pipe = intel_crtc->pipe;
9212 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02009213 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01009214
Zhao Yakui44d98a62009-10-09 11:39:40 +08009215 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07009216
Sean Paul8ac5a6d2012-02-13 13:14:51 -05009217 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07009218
Chris Wilson074b5e12012-05-02 12:07:06 +01009219 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07009220 dpll |= DISPLAY_RATE_SELECT_FPA1;
9221 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07009222 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07009223 dpll = I915_READ(dpll_reg);
9224 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08009225 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07009226 }
9227
9228}
9229
Chris Wilsonf047e392012-07-21 12:31:41 +01009230void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07009231{
Paulo Zanonic67a4702013-08-19 13:18:09 -03009232 struct drm_i915_private *dev_priv = dev->dev_private;
9233
Chris Wilsonf62a0072014-02-21 17:55:39 +00009234 if (dev_priv->mm.busy)
9235 return;
9236
Paulo Zanoni43694d62014-03-07 20:08:08 -03009237 intel_runtime_pm_get(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009238 i915_update_gfx_val(dev_priv);
Chris Wilsonf62a0072014-02-21 17:55:39 +00009239 dev_priv->mm.busy = true;
Chris Wilsonf047e392012-07-21 12:31:41 +01009240}
9241
9242void intel_mark_idle(struct drm_device *dev)
9243{
Paulo Zanonic67a4702013-08-19 13:18:09 -03009244 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson725a5b52013-01-08 11:02:57 +00009245 struct drm_crtc *crtc;
9246
Chris Wilsonf62a0072014-02-21 17:55:39 +00009247 if (!dev_priv->mm.busy)
9248 return;
9249
9250 dev_priv->mm.busy = false;
9251
Jani Nikulad330a952014-01-21 11:24:25 +02009252 if (!i915.powersave)
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03009253 goto out;
Chris Wilson725a5b52013-01-08 11:02:57 +00009254
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01009255 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -07009256 if (!crtc->primary->fb)
Chris Wilson725a5b52013-01-08 11:02:57 +00009257 continue;
9258
9259 intel_decrease_pllclock(crtc);
9260 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01009261
Damien Lespiau3d13ef22014-02-07 19:12:47 +00009262 if (INTEL_INFO(dev)->gen >= 6)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01009263 gen6_rps_idle(dev->dev_private);
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03009264
9265out:
Paulo Zanoni43694d62014-03-07 20:08:08 -03009266 intel_runtime_pm_put(dev_priv);
Chris Wilsonf047e392012-07-21 12:31:41 +01009267}
9268
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +02009269static void intel_crtc_set_state(struct intel_crtc *crtc,
9270 struct intel_crtc_state *crtc_state)
9271{
9272 kfree(crtc->config);
9273 crtc->config = crtc_state;
Ander Conselvan de Oliveira16f3f652015-01-15 14:55:27 +02009274 crtc->base.state = &crtc_state->base;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +02009275}
9276
Jesse Barnes79e53942008-11-07 14:24:08 -08009277static void intel_crtc_destroy(struct drm_crtc *crtc)
9278{
9279 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009280 struct drm_device *dev = crtc->dev;
9281 struct intel_unpin_work *work;
Daniel Vetter67e77c52010-08-20 22:26:30 +02009282
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009283 spin_lock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009284 work = intel_crtc->unpin_work;
9285 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009286 spin_unlock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009287
9288 if (work) {
9289 cancel_work_sync(&work->work);
9290 kfree(work);
9291 }
Jesse Barnes79e53942008-11-07 14:24:08 -08009292
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +02009293 intel_crtc_set_state(intel_crtc, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08009294 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009295
Jesse Barnes79e53942008-11-07 14:24:08 -08009296 kfree(intel_crtc);
9297}
9298
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009299static void intel_unpin_work_fn(struct work_struct *__work)
9300{
9301 struct intel_unpin_work *work =
9302 container_of(__work, struct intel_unpin_work, work);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009303 struct drm_device *dev = work->crtc->dev;
Daniel Vetterf99d7062014-06-19 16:01:59 +02009304 enum pipe pipe = to_intel_crtc(work->crtc)->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009305
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009306 mutex_lock(&dev->struct_mutex);
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +00009307 intel_unpin_fb_obj(intel_fb_obj(work->old_fb));
Chris Wilson05394f32010-11-08 19:18:58 +00009308 drm_gem_object_unreference(&work->pending_flip_obj->base);
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +00009309 drm_framebuffer_unreference(work->old_fb);
Chris Wilsond9e86c02010-11-10 16:40:20 +00009310
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02009311 intel_fbc_update(dev);
John Harrisonf06cc1b2014-11-24 18:49:37 +00009312
9313 if (work->flip_queued_req)
John Harrison146d84f2014-12-05 13:49:33 +00009314 i915_gem_request_assign(&work->flip_queued_req, NULL);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009315 mutex_unlock(&dev->struct_mutex);
9316
Daniel Vetterf99d7062014-06-19 16:01:59 +02009317 intel_frontbuffer_flip_complete(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
9318
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009319 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
9320 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
9321
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009322 kfree(work);
9323}
9324
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009325static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01009326 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009327{
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009328 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9329 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009330 unsigned long flags;
9331
9332 /* Ignore early vblank irqs */
9333 if (intel_crtc == NULL)
9334 return;
9335
Daniel Vetterf3260382014-09-15 14:55:23 +02009336 /*
9337 * This is called both by irq handlers and the reset code (to complete
9338 * lost pageflips) so needs the full irqsave spinlocks.
9339 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009340 spin_lock_irqsave(&dev->event_lock, flags);
9341 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +00009342
9343 /* Ensure we don't miss a work->pending update ... */
9344 smp_rmb();
9345
9346 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009347 spin_unlock_irqrestore(&dev->event_lock, flags);
9348 return;
9349 }
9350
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009351 page_flip_completed(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01009352
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009353 spin_unlock_irqrestore(&dev->event_lock, flags);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009354}
9355
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009356void intel_finish_page_flip(struct drm_device *dev, int pipe)
9357{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009358 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009359 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
9360
Mario Kleiner49b14a52010-12-09 07:00:07 +01009361 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009362}
9363
9364void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
9365{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009366 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009367 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
9368
Mario Kleiner49b14a52010-12-09 07:00:07 +01009369 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009370}
9371
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009372/* Is 'a' after or equal to 'b'? */
9373static bool g4x_flip_count_after_eq(u32 a, u32 b)
9374{
9375 return !((a - b) & 0x80000000);
9376}
9377
9378static bool page_flip_finished(struct intel_crtc *crtc)
9379{
9380 struct drm_device *dev = crtc->base.dev;
9381 struct drm_i915_private *dev_priv = dev->dev_private;
9382
Ville Syrjäläbdfa7542014-05-27 21:33:09 +03009383 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
9384 crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
9385 return true;
9386
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009387 /*
9388 * The relevant registers doen't exist on pre-ctg.
9389 * As the flip done interrupt doesn't trigger for mmio
9390 * flips on gmch platforms, a flip count check isn't
9391 * really needed there. But since ctg has the registers,
9392 * include it in the check anyway.
9393 */
9394 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
9395 return true;
9396
9397 /*
9398 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
9399 * used the same base address. In that case the mmio flip might
9400 * have completed, but the CS hasn't even executed the flip yet.
9401 *
9402 * A flip count check isn't enough as the CS might have updated
9403 * the base address just after start of vblank, but before we
9404 * managed to process the interrupt. This means we'd complete the
9405 * CS flip too soon.
9406 *
9407 * Combining both checks should get us a good enough result. It may
9408 * still happen that the CS flip has been executed, but has not
9409 * yet actually completed. But in case the base address is the same
9410 * anyway, we don't really care.
9411 */
9412 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
9413 crtc->unpin_work->gtt_offset &&
9414 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_GM45(crtc->pipe)),
9415 crtc->unpin_work->flip_count);
9416}
9417
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009418void intel_prepare_page_flip(struct drm_device *dev, int plane)
9419{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009420 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009421 struct intel_crtc *intel_crtc =
9422 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
9423 unsigned long flags;
9424
Daniel Vetterf3260382014-09-15 14:55:23 +02009425
9426 /*
9427 * This is called both by irq handlers and the reset code (to complete
9428 * lost pageflips) so needs the full irqsave spinlocks.
9429 *
9430 * NB: An MMIO update of the plane base pointer will also
Chris Wilsone7d841c2012-12-03 11:36:30 +00009431 * generate a page-flip completion irq, i.e. every modeset
9432 * is also accompanied by a spurious intel_prepare_page_flip().
9433 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009434 spin_lock_irqsave(&dev->event_lock, flags);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009435 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
Chris Wilsone7d841c2012-12-03 11:36:30 +00009436 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009437 spin_unlock_irqrestore(&dev->event_lock, flags);
9438}
9439
Robin Schroereba905b2014-05-18 02:24:50 +02009440static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
Chris Wilsone7d841c2012-12-03 11:36:30 +00009441{
9442 /* Ensure that the work item is consistent when activating it ... */
9443 smp_wmb();
9444 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
9445 /* and that it is marked active as soon as the irq could fire. */
9446 smp_wmb();
9447}
9448
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009449static int intel_gen2_queue_flip(struct drm_device *dev,
9450 struct drm_crtc *crtc,
9451 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009452 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009453 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009454 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009455{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009456 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009457 u32 flip_mask;
9458 int ret;
9459
Daniel Vetter6d90c952012-04-26 23:28:05 +02009460 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009461 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009462 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009463
9464 /* Can't queue multiple flips, so wait for the previous
9465 * one to finish before executing the next.
9466 */
9467 if (intel_crtc->plane)
9468 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
9469 else
9470 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009471 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
9472 intel_ring_emit(ring, MI_NOOP);
9473 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9474 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9475 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009476 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02009477 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +00009478
9479 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009480 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009481 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009482}
9483
9484static int intel_gen3_queue_flip(struct drm_device *dev,
9485 struct drm_crtc *crtc,
9486 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009487 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009488 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009489 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009490{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009491 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009492 u32 flip_mask;
9493 int ret;
9494
Daniel Vetter6d90c952012-04-26 23:28:05 +02009495 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009496 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009497 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009498
9499 if (intel_crtc->plane)
9500 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
9501 else
9502 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009503 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
9504 intel_ring_emit(ring, MI_NOOP);
9505 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
9506 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9507 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009508 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02009509 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009510
Chris Wilsone7d841c2012-12-03 11:36:30 +00009511 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009512 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009513 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009514}
9515
9516static int intel_gen4_queue_flip(struct drm_device *dev,
9517 struct drm_crtc *crtc,
9518 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009519 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009520 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009521 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009522{
9523 struct drm_i915_private *dev_priv = dev->dev_private;
9524 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9525 uint32_t pf, pipesrc;
9526 int ret;
9527
Daniel Vetter6d90c952012-04-26 23:28:05 +02009528 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009529 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009530 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009531
9532 /* i965+ uses the linear or tiled offsets from the
9533 * Display Registers (which do not change across a page-flip)
9534 * so we need only reprogram the base address.
9535 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02009536 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9537 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9538 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009539 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
Daniel Vetterc2c75132012-07-05 12:17:30 +02009540 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009541
9542 /* XXX Enabling the panel-fitter across page-flip is so far
9543 * untested on non-native modes, so ignore it for now.
9544 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
9545 */
9546 pf = 0;
9547 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009548 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009549
9550 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009551 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009552 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009553}
9554
9555static int intel_gen6_queue_flip(struct drm_device *dev,
9556 struct drm_crtc *crtc,
9557 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009558 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009559 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009560 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009561{
9562 struct drm_i915_private *dev_priv = dev->dev_private;
9563 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9564 uint32_t pf, pipesrc;
9565 int ret;
9566
Daniel Vetter6d90c952012-04-26 23:28:05 +02009567 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009568 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009569 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009570
Daniel Vetter6d90c952012-04-26 23:28:05 +02009571 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9572 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9573 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009574 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009575
Chris Wilson99d9acd2012-04-17 20:37:00 +01009576 /* Contrary to the suggestions in the documentation,
9577 * "Enable Panel Fitter" does not seem to be required when page
9578 * flipping with a non-native mode, and worse causes a normal
9579 * modeset to fail.
9580 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
9581 */
9582 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009583 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009584 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009585
9586 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009587 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009588 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009589}
9590
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009591static int intel_gen7_queue_flip(struct drm_device *dev,
9592 struct drm_crtc *crtc,
9593 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009594 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009595 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009596 uint32_t flags)
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009597{
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009598 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009599 uint32_t plane_bit = 0;
Chris Wilsonffe74d72013-08-26 20:58:12 +01009600 int len, ret;
9601
Robin Schroereba905b2014-05-18 02:24:50 +02009602 switch (intel_crtc->plane) {
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009603 case PLANE_A:
9604 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
9605 break;
9606 case PLANE_B:
9607 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
9608 break;
9609 case PLANE_C:
9610 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
9611 break;
9612 default:
9613 WARN_ONCE(1, "unknown plane in flip command\n");
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009614 return -ENODEV;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009615 }
9616
Chris Wilsonffe74d72013-08-26 20:58:12 +01009617 len = 4;
Damien Lespiauf4768282014-04-07 20:24:34 +01009618 if (ring->id == RCS) {
Chris Wilsonffe74d72013-08-26 20:58:12 +01009619 len += 6;
Damien Lespiauf4768282014-04-07 20:24:34 +01009620 /*
9621 * On Gen 8, SRM is now taking an extra dword to accommodate
9622 * 48bits addresses, and we need a NOOP for the batch size to
9623 * stay even.
9624 */
9625 if (IS_GEN8(dev))
9626 len += 2;
9627 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009628
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009629 /*
9630 * BSpec MI_DISPLAY_FLIP for IVB:
9631 * "The full packet must be contained within the same cache line."
9632 *
9633 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
9634 * cacheline, if we ever start emitting more commands before
9635 * the MI_DISPLAY_FLIP we may need to first emit everything else,
9636 * then do the cacheline alignment, and finally emit the
9637 * MI_DISPLAY_FLIP.
9638 */
9639 ret = intel_ring_cacheline_align(ring);
9640 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009641 return ret;
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009642
Chris Wilsonffe74d72013-08-26 20:58:12 +01009643 ret = intel_ring_begin(ring, len);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009644 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009645 return ret;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009646
Chris Wilsonffe74d72013-08-26 20:58:12 +01009647 /* Unmask the flip-done completion message. Note that the bspec says that
9648 * we should do this for both the BCS and RCS, and that we must not unmask
9649 * more than one flip event at any time (or ensure that one flip message
9650 * can be sent by waiting for flip-done prior to queueing new flips).
9651 * Experimentation says that BCS works despite DERRMR masking all
9652 * flip-done completion events and that unmasking all planes at once
9653 * for the RCS also doesn't appear to drop events. Setting the DERRMR
9654 * to zero does lead to lockups within MI_DISPLAY_FLIP.
9655 */
9656 if (ring->id == RCS) {
9657 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9658 intel_ring_emit(ring, DERRMR);
9659 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9660 DERRMR_PIPEB_PRI_FLIP_DONE |
9661 DERRMR_PIPEC_PRI_FLIP_DONE));
Damien Lespiauf4768282014-04-07 20:24:34 +01009662 if (IS_GEN8(dev))
9663 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9664 MI_SRM_LRM_GLOBAL_GTT);
9665 else
9666 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) |
9667 MI_SRM_LRM_GLOBAL_GTT);
Chris Wilsonffe74d72013-08-26 20:58:12 +01009668 intel_ring_emit(ring, DERRMR);
9669 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Damien Lespiauf4768282014-04-07 20:24:34 +01009670 if (IS_GEN8(dev)) {
9671 intel_ring_emit(ring, 0);
9672 intel_ring_emit(ring, MI_NOOP);
9673 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009674 }
9675
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009676 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02009677 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009678 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009679 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +00009680
9681 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009682 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009683 return 0;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009684}
9685
Sourab Gupta84c33a62014-06-02 16:47:17 +05309686static bool use_mmio_flip(struct intel_engine_cs *ring,
9687 struct drm_i915_gem_object *obj)
9688{
9689 /*
9690 * This is not being used for older platforms, because
9691 * non-availability of flip done interrupt forces us to use
9692 * CS flips. Older platforms derive flip done using some clever
9693 * tricks involving the flip_pending status bits and vblank irqs.
9694 * So using MMIO flips there would disrupt this mechanism.
9695 */
9696
Chris Wilson8e09bf82014-07-08 10:40:30 +01009697 if (ring == NULL)
9698 return true;
9699
Sourab Gupta84c33a62014-06-02 16:47:17 +05309700 if (INTEL_INFO(ring->dev)->gen < 5)
9701 return false;
9702
9703 if (i915.use_mmio_flip < 0)
9704 return false;
9705 else if (i915.use_mmio_flip > 0)
9706 return true;
Oscar Mateo14bf9932014-07-24 17:04:34 +01009707 else if (i915.enable_execlists)
9708 return true;
Sourab Gupta84c33a62014-06-02 16:47:17 +05309709 else
John Harrison41c52412014-11-24 18:49:43 +00009710 return ring != i915_gem_request_get_ring(obj->last_read_req);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309711}
9712
Damien Lespiauff944562014-11-20 14:58:16 +00009713static void skl_do_mmio_flip(struct intel_crtc *intel_crtc)
9714{
9715 struct drm_device *dev = intel_crtc->base.dev;
9716 struct drm_i915_private *dev_priv = dev->dev_private;
9717 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
9718 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
9719 struct drm_i915_gem_object *obj = intel_fb->obj;
9720 const enum pipe pipe = intel_crtc->pipe;
9721 u32 ctl, stride;
9722
9723 ctl = I915_READ(PLANE_CTL(pipe, 0));
9724 ctl &= ~PLANE_CTL_TILED_MASK;
9725 if (obj->tiling_mode == I915_TILING_X)
9726 ctl |= PLANE_CTL_TILED_X;
9727
9728 /*
9729 * The stride is either expressed as a multiple of 64 bytes chunks for
9730 * linear buffers or in number of tiles for tiled buffers.
9731 */
9732 stride = fb->pitches[0] >> 6;
9733 if (obj->tiling_mode == I915_TILING_X)
9734 stride = fb->pitches[0] >> 9; /* X tiles are 512 bytes wide */
9735
9736 /*
9737 * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on
9738 * PLANE_SURF updates, the update is then guaranteed to be atomic.
9739 */
9740 I915_WRITE(PLANE_CTL(pipe, 0), ctl);
9741 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
9742
9743 I915_WRITE(PLANE_SURF(pipe, 0), intel_crtc->unpin_work->gtt_offset);
9744 POSTING_READ(PLANE_SURF(pipe, 0));
9745}
9746
9747static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc)
Sourab Gupta84c33a62014-06-02 16:47:17 +05309748{
9749 struct drm_device *dev = intel_crtc->base.dev;
9750 struct drm_i915_private *dev_priv = dev->dev_private;
9751 struct intel_framebuffer *intel_fb =
9752 to_intel_framebuffer(intel_crtc->base.primary->fb);
9753 struct drm_i915_gem_object *obj = intel_fb->obj;
9754 u32 dspcntr;
9755 u32 reg;
9756
Sourab Gupta84c33a62014-06-02 16:47:17 +05309757 reg = DSPCNTR(intel_crtc->plane);
9758 dspcntr = I915_READ(reg);
9759
Damien Lespiauc5d97472014-10-25 00:11:11 +01009760 if (obj->tiling_mode != I915_TILING_NONE)
9761 dspcntr |= DISPPLANE_TILED;
9762 else
9763 dspcntr &= ~DISPPLANE_TILED;
9764
Sourab Gupta84c33a62014-06-02 16:47:17 +05309765 I915_WRITE(reg, dspcntr);
9766
9767 I915_WRITE(DSPSURF(intel_crtc->plane),
9768 intel_crtc->unpin_work->gtt_offset);
9769 POSTING_READ(DSPSURF(intel_crtc->plane));
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009770
Damien Lespiauff944562014-11-20 14:58:16 +00009771}
9772
9773/*
9774 * XXX: This is the temporary way to update the plane registers until we get
9775 * around to using the usual plane update functions for MMIO flips
9776 */
9777static void intel_do_mmio_flip(struct intel_crtc *intel_crtc)
9778{
9779 struct drm_device *dev = intel_crtc->base.dev;
9780 bool atomic_update;
9781 u32 start_vbl_count;
9782
9783 intel_mark_page_flip_active(intel_crtc);
9784
9785 atomic_update = intel_pipe_update_start(intel_crtc, &start_vbl_count);
9786
9787 if (INTEL_INFO(dev)->gen >= 9)
9788 skl_do_mmio_flip(intel_crtc);
9789 else
9790 /* use_mmio_flip() retricts MMIO flips to ilk+ */
9791 ilk_do_mmio_flip(intel_crtc);
9792
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009793 if (atomic_update)
9794 intel_pipe_update_end(intel_crtc, start_vbl_count);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309795}
9796
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009797static void intel_mmio_flip_work_func(struct work_struct *work)
Sourab Gupta84c33a62014-06-02 16:47:17 +05309798{
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009799 struct intel_crtc *crtc =
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009800 container_of(work, struct intel_crtc, mmio_flip.work);
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009801 struct intel_mmio_flip *mmio_flip;
Sourab Gupta84c33a62014-06-02 16:47:17 +05309802
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009803 mmio_flip = &crtc->mmio_flip;
9804 if (mmio_flip->req)
John Harrison9c654812014-11-24 18:49:35 +00009805 WARN_ON(__i915_wait_request(mmio_flip->req,
9806 crtc->reset_counter,
9807 false, NULL, NULL) != 0);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309808
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009809 intel_do_mmio_flip(crtc);
9810 if (mmio_flip->req) {
9811 mutex_lock(&crtc->base.dev->struct_mutex);
John Harrison146d84f2014-12-05 13:49:33 +00009812 i915_gem_request_assign(&mmio_flip->req, NULL);
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009813 mutex_unlock(&crtc->base.dev->struct_mutex);
9814 }
Sourab Gupta84c33a62014-06-02 16:47:17 +05309815}
9816
9817static int intel_queue_mmio_flip(struct drm_device *dev,
9818 struct drm_crtc *crtc,
9819 struct drm_framebuffer *fb,
9820 struct drm_i915_gem_object *obj,
9821 struct intel_engine_cs *ring,
9822 uint32_t flags)
9823{
Sourab Gupta84c33a62014-06-02 16:47:17 +05309824 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309825
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009826 i915_gem_request_assign(&intel_crtc->mmio_flip.req,
9827 obj->last_write_req);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309828
Ander Conselvan de Oliveira536f5b52014-11-06 11:03:40 +02009829 schedule_work(&intel_crtc->mmio_flip.work);
9830
Sourab Gupta84c33a62014-06-02 16:47:17 +05309831 return 0;
9832}
9833
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009834static int intel_default_queue_flip(struct drm_device *dev,
9835 struct drm_crtc *crtc,
9836 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009837 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009838 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009839 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009840{
9841 return -ENODEV;
9842}
9843
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009844static bool __intel_pageflip_stall_check(struct drm_device *dev,
9845 struct drm_crtc *crtc)
9846{
9847 struct drm_i915_private *dev_priv = dev->dev_private;
9848 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9849 struct intel_unpin_work *work = intel_crtc->unpin_work;
9850 u32 addr;
9851
9852 if (atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE)
9853 return true;
9854
9855 if (!work->enable_stall_check)
9856 return false;
9857
9858 if (work->flip_ready_vblank == 0) {
Daniel Vetter3a8a9462014-11-26 14:39:48 +01009859 if (work->flip_queued_req &&
9860 !i915_gem_request_completed(work->flip_queued_req, true))
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009861 return false;
9862
Daniel Vetter1e3feef2015-02-13 21:03:45 +01009863 work->flip_ready_vblank = drm_crtc_vblank_count(crtc);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009864 }
9865
Daniel Vetter1e3feef2015-02-13 21:03:45 +01009866 if (drm_crtc_vblank_count(crtc) - work->flip_ready_vblank < 3)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009867 return false;
9868
9869 /* Potential stall - if we see that the flip has happened,
9870 * assume a missed interrupt. */
9871 if (INTEL_INFO(dev)->gen >= 4)
9872 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane)));
9873 else
9874 addr = I915_READ(DSPADDR(intel_crtc->plane));
9875
9876 /* There is a potential issue here with a false positive after a flip
9877 * to the same address. We could address this by checking for a
9878 * non-incrementing frame counter.
9879 */
9880 return addr == work->gtt_offset;
9881}
9882
9883void intel_check_page_flip(struct drm_device *dev, int pipe)
9884{
9885 struct drm_i915_private *dev_priv = dev->dev_private;
9886 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
9887 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetterf3260382014-09-15 14:55:23 +02009888
9889 WARN_ON(!in_irq());
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009890
9891 if (crtc == NULL)
9892 return;
9893
Daniel Vetterf3260382014-09-15 14:55:23 +02009894 spin_lock(&dev->event_lock);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009895 if (intel_crtc->unpin_work && __intel_pageflip_stall_check(dev, crtc)) {
9896 WARN_ONCE(1, "Kicking stuck page flip: queued at %d, now %d\n",
Daniel Vetter1e3feef2015-02-13 21:03:45 +01009897 intel_crtc->unpin_work->flip_queued_vblank,
9898 drm_vblank_count(dev, pipe));
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009899 page_flip_completed(intel_crtc);
9900 }
Daniel Vetterf3260382014-09-15 14:55:23 +02009901 spin_unlock(&dev->event_lock);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009902}
9903
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009904static int intel_crtc_page_flip(struct drm_crtc *crtc,
9905 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009906 struct drm_pending_vblank_event *event,
9907 uint32_t page_flip_flags)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009908{
9909 struct drm_device *dev = crtc->dev;
9910 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperf4510a22014-04-01 15:22:40 -07009911 struct drm_framebuffer *old_fb = crtc->primary->fb;
Matt Roper2ff8fde2014-07-08 07:50:07 -07009912 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009913 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Gustavo Padovan455a6802014-12-01 15:40:11 -08009914 struct drm_plane *primary = crtc->primary;
Daniel Vettera071fa02014-06-18 23:28:09 +02009915 enum pipe pipe = intel_crtc->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009916 struct intel_unpin_work *work;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009917 struct intel_engine_cs *ring;
Chris Wilson52e68632010-08-08 10:15:59 +01009918 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009919
Matt Roper2ff8fde2014-07-08 07:50:07 -07009920 /*
9921 * drm_mode_page_flip_ioctl() should already catch this, but double
9922 * check to be safe. In the future we may enable pageflipping from
9923 * a disabled primary plane.
9924 */
9925 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
9926 return -EBUSY;
9927
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009928 /* Can't change pixel format via MI display flips. */
Matt Roperf4510a22014-04-01 15:22:40 -07009929 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009930 return -EINVAL;
9931
9932 /*
9933 * TILEOFF/LINOFF registers can't be changed via MI display flips.
9934 * Note that pitch changes could also affect these register.
9935 */
9936 if (INTEL_INFO(dev)->gen > 3 &&
Matt Roperf4510a22014-04-01 15:22:40 -07009937 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
9938 fb->pitches[0] != crtc->primary->fb->pitches[0]))
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009939 return -EINVAL;
9940
Chris Wilsonf900db42014-02-20 09:26:13 +00009941 if (i915_terminally_wedged(&dev_priv->gpu_error))
9942 goto out_hang;
9943
Daniel Vetterb14c5672013-09-19 12:18:32 +02009944 work = kzalloc(sizeof(*work), GFP_KERNEL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009945 if (work == NULL)
9946 return -ENOMEM;
9947
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009948 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009949 work->crtc = crtc;
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +00009950 work->old_fb = old_fb;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009951 INIT_WORK(&work->work, intel_unpin_work_fn);
9952
Daniel Vetter87b6b102014-05-15 15:33:46 +02009953 ret = drm_crtc_vblank_get(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009954 if (ret)
9955 goto free_work;
9956
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009957 /* We borrow the event spin lock for protecting unpin_work */
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009958 spin_lock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009959 if (intel_crtc->unpin_work) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009960 /* Before declaring the flip queue wedged, check if
9961 * the hardware completed the operation behind our backs.
9962 */
9963 if (__intel_pageflip_stall_check(dev, crtc)) {
9964 DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n");
9965 page_flip_completed(intel_crtc);
9966 } else {
9967 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009968 spin_unlock_irq(&dev->event_lock);
Chris Wilson468f0b42010-05-27 13:18:13 +01009969
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009970 drm_crtc_vblank_put(crtc);
9971 kfree(work);
9972 return -EBUSY;
9973 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009974 }
9975 intel_crtc->unpin_work = work;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009976 spin_unlock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009977
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009978 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
9979 flush_workqueue(dev_priv->wq);
9980
Chris Wilson79158102012-05-23 11:13:58 +01009981 ret = i915_mutex_lock_interruptible(dev);
9982 if (ret)
9983 goto cleanup;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009984
Jesse Barnes75dfca82010-02-10 15:09:44 -08009985 /* Reference the objects for the scheduled work. */
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +00009986 drm_framebuffer_reference(work->old_fb);
Chris Wilson05394f32010-11-08 19:18:58 +00009987 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009988
Matt Roperf4510a22014-04-01 15:22:40 -07009989 crtc->primary->fb = fb;
Matt Roperafd65eb2015-02-03 13:10:04 -08009990 update_state_fb(crtc->primary);
Matt Roper1ed1f962015-01-30 16:22:36 -08009991
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009992 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009993
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009994 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +02009995 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009996
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009997 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
Daniel Vettera071fa02014-06-18 23:28:09 +02009998 work->flip_count = I915_READ(PIPE_FLIPCOUNT_GM45(pipe)) + 1;
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009999
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010000 if (IS_VALLEYVIEW(dev)) {
10001 ring = &dev_priv->ring[BCS];
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000010002 if (obj->tiling_mode != intel_fb_obj(work->old_fb)->tiling_mode)
Chris Wilson8e09bf82014-07-08 10:40:30 +010010003 /* vlv: DISPLAY_FLIP fails to change tiling */
10004 ring = NULL;
Chris Wilson48bf5b22014-12-27 09:48:28 +000010005 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Chris Wilson2a92d5b2014-07-08 10:40:29 +010010006 ring = &dev_priv->ring[BCS];
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010007 } else if (INTEL_INFO(dev)->gen >= 7) {
John Harrison41c52412014-11-24 18:49:43 +000010008 ring = i915_gem_request_get_ring(obj->last_read_req);
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010009 if (ring == NULL || ring->id != RCS)
10010 ring = &dev_priv->ring[BCS];
10011 } else {
10012 ring = &dev_priv->ring[RCS];
10013 }
10014
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +000010015 ret = intel_pin_and_fence_fb_obj(crtc->primary, fb, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010016 if (ret)
10017 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010018
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010019 work->gtt_offset =
10020 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset;
10021
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010022 if (use_mmio_flip(ring, obj)) {
Sourab Gupta84c33a62014-06-02 16:47:17 +053010023 ret = intel_queue_mmio_flip(dev, crtc, fb, obj, ring,
10024 page_flip_flags);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010025 if (ret)
10026 goto cleanup_unpin;
10027
John Harrisonf06cc1b2014-11-24 18:49:37 +000010028 i915_gem_request_assign(&work->flip_queued_req,
10029 obj->last_write_req);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010030 } else {
Sourab Gupta84c33a62014-06-02 16:47:17 +053010031 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, ring,
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010032 page_flip_flags);
10033 if (ret)
10034 goto cleanup_unpin;
10035
John Harrisonf06cc1b2014-11-24 18:49:37 +000010036 i915_gem_request_assign(&work->flip_queued_req,
10037 intel_ring_get_request(ring));
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010038 }
10039
Daniel Vetter1e3feef2015-02-13 21:03:45 +010010040 work->flip_queued_vblank = drm_crtc_vblank_count(crtc);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010041 work->enable_stall_check = true;
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010042
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000010043 i915_gem_track_fb(intel_fb_obj(work->old_fb), obj,
Daniel Vettera071fa02014-06-18 23:28:09 +020010044 INTEL_FRONTBUFFER_PRIMARY(pipe));
10045
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020010046 intel_fbc_disable(dev);
Daniel Vetterf99d7062014-06-19 16:01:59 +020010047 intel_frontbuffer_flip_prepare(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010048 mutex_unlock(&dev->struct_mutex);
10049
Jesse Barnese5510fa2010-07-01 16:48:37 -070010050 trace_i915_flip_request(intel_crtc->plane, obj);
10051
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010052 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +010010053
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010054cleanup_unpin:
10055 intel_unpin_fb_obj(obj);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010056cleanup_pending:
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010057 atomic_dec(&intel_crtc->unpin_work_count);
Matt Roperf4510a22014-04-01 15:22:40 -070010058 crtc->primary->fb = old_fb;
Matt Roperafd65eb2015-02-03 13:10:04 -080010059 update_state_fb(crtc->primary);
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000010060 drm_framebuffer_unreference(work->old_fb);
Chris Wilson05394f32010-11-08 19:18:58 +000010061 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +010010062 mutex_unlock(&dev->struct_mutex);
10063
Chris Wilson79158102012-05-23 11:13:58 +010010064cleanup:
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010065 spin_lock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +010010066 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010067 spin_unlock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +010010068
Daniel Vetter87b6b102014-05-15 15:33:46 +020010069 drm_crtc_vblank_put(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -070010070free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +010010071 kfree(work);
10072
Chris Wilsonf900db42014-02-20 09:26:13 +000010073 if (ret == -EIO) {
10074out_hang:
Matt Roper53a366b2014-12-23 10:41:53 -080010075 ret = intel_plane_restore(primary);
Chris Wilsonf0d3dad2014-09-07 16:51:12 +010010076 if (ret == 0 && event) {
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010077 spin_lock_irq(&dev->event_lock);
Daniel Vettera071fa02014-06-18 23:28:09 +020010078 drm_send_vblank_event(dev, pipe, event);
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010079 spin_unlock_irq(&dev->event_lock);
Chris Wilsonf0d3dad2014-09-07 16:51:12 +010010080 }
Chris Wilsonf900db42014-02-20 09:26:13 +000010081 }
Chris Wilson96b099f2010-06-07 14:03:04 +010010082 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010083}
10084
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010085static struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010086 .mode_set_base_atomic = intel_pipe_set_base_atomic,
10087 .load_lut = intel_crtc_load_lut,
Matt Roperea2c67b2014-12-23 10:41:52 -080010088 .atomic_begin = intel_begin_crtc_commit,
10089 .atomic_flush = intel_finish_crtc_commit,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010090};
10091
Daniel Vetter9a935852012-07-05 22:34:27 +020010092/**
10093 * intel_modeset_update_staged_output_state
10094 *
10095 * Updates the staged output configuration state, e.g. after we've read out the
10096 * current hw state.
10097 */
10098static void intel_modeset_update_staged_output_state(struct drm_device *dev)
10099{
Ville Syrjälä76688512014-01-10 11:28:06 +020010100 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020010101 struct intel_encoder *encoder;
10102 struct intel_connector *connector;
10103
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020010104 for_each_intel_connector(dev, connector) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010105 connector->new_encoder =
10106 to_intel_encoder(connector->base.encoder);
10107 }
10108
Damien Lespiaub2784e12014-08-05 11:29:37 +010010109 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010110 encoder->new_crtc =
10111 to_intel_crtc(encoder->base.crtc);
10112 }
Ville Syrjälä76688512014-01-10 11:28:06 +020010113
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010114 for_each_intel_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080010115 crtc->new_enabled = crtc->base.state->enable;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010116
10117 if (crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010118 crtc->new_config = crtc->config;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010119 else
10120 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020010121 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010122}
10123
10124/**
10125 * intel_modeset_commit_output_state
10126 *
10127 * This function copies the stage display pipe configuration to the real one.
10128 */
10129static void intel_modeset_commit_output_state(struct drm_device *dev)
10130{
Ville Syrjälä76688512014-01-10 11:28:06 +020010131 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020010132 struct intel_encoder *encoder;
10133 struct intel_connector *connector;
10134
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020010135 for_each_intel_connector(dev, connector) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010136 connector->base.encoder = &connector->new_encoder->base;
10137 }
10138
Damien Lespiaub2784e12014-08-05 11:29:37 +010010139 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010140 encoder->base.crtc = &encoder->new_crtc->base;
10141 }
Ville Syrjälä76688512014-01-10 11:28:06 +020010142
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010143 for_each_intel_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080010144 crtc->base.state->enable = crtc->new_enabled;
Ville Syrjälä76688512014-01-10 11:28:06 +020010145 crtc->base.enabled = crtc->new_enabled;
10146 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010147}
10148
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010149static void
Robin Schroereba905b2014-05-18 02:24:50 +020010150connected_sink_compute_bpp(struct intel_connector *connector,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010151 struct intel_crtc_state *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010152{
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010153 int bpp = pipe_config->pipe_bpp;
10154
10155 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
10156 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030010157 connector->base.name);
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010158
10159 /* Don't use an invalid EDID bpc value */
10160 if (connector->base.display_info.bpc &&
10161 connector->base.display_info.bpc * 3 < bpp) {
10162 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
10163 bpp, connector->base.display_info.bpc*3);
10164 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
10165 }
10166
10167 /* Clamp bpp to 8 on screens without EDID 1.4 */
10168 if (connector->base.display_info.bpc == 0 && bpp > 24) {
10169 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
10170 bpp);
10171 pipe_config->pipe_bpp = 24;
10172 }
10173}
10174
10175static int
10176compute_baseline_pipe_bpp(struct intel_crtc *crtc,
10177 struct drm_framebuffer *fb,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010178 struct intel_crtc_state *pipe_config)
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010179{
10180 struct drm_device *dev = crtc->base.dev;
10181 struct intel_connector *connector;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010182 int bpp;
10183
Daniel Vetterd42264b2013-03-28 16:38:08 +010010184 switch (fb->pixel_format) {
10185 case DRM_FORMAT_C8:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010186 bpp = 8*3; /* since we go through a colormap */
10187 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +010010188 case DRM_FORMAT_XRGB1555:
10189 case DRM_FORMAT_ARGB1555:
10190 /* checked in intel_framebuffer_init already */
10191 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
10192 return -EINVAL;
10193 case DRM_FORMAT_RGB565:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010194 bpp = 6*3; /* min is 18bpp */
10195 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +010010196 case DRM_FORMAT_XBGR8888:
10197 case DRM_FORMAT_ABGR8888:
10198 /* checked in intel_framebuffer_init already */
10199 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
10200 return -EINVAL;
10201 case DRM_FORMAT_XRGB8888:
10202 case DRM_FORMAT_ARGB8888:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010203 bpp = 8*3;
10204 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +010010205 case DRM_FORMAT_XRGB2101010:
10206 case DRM_FORMAT_ARGB2101010:
10207 case DRM_FORMAT_XBGR2101010:
10208 case DRM_FORMAT_ABGR2101010:
10209 /* checked in intel_framebuffer_init already */
10210 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
Daniel Vetterbaba1332013-03-27 00:45:00 +010010211 return -EINVAL;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010212 bpp = 10*3;
10213 break;
Daniel Vetterbaba1332013-03-27 00:45:00 +010010214 /* TODO: gen4+ supports 16 bpc floating point, too. */
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010215 default:
10216 DRM_DEBUG_KMS("unsupported depth\n");
10217 return -EINVAL;
10218 }
10219
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010220 pipe_config->pipe_bpp = bpp;
10221
10222 /* Clamp display bpp to EDID value */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020010223 for_each_intel_connector(dev, connector) {
Daniel Vetter1b829e02013-06-02 13:26:24 +020010224 if (!connector->new_encoder ||
10225 connector->new_encoder->new_crtc != crtc)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010226 continue;
10227
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010228 connected_sink_compute_bpp(connector, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010229 }
10230
10231 return bpp;
10232}
10233
Daniel Vetter644db712013-09-19 14:53:58 +020010234static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
10235{
10236 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
10237 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +010010238 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +020010239 mode->crtc_hdisplay, mode->crtc_hsync_start,
10240 mode->crtc_hsync_end, mode->crtc_htotal,
10241 mode->crtc_vdisplay, mode->crtc_vsync_start,
10242 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
10243}
10244
Daniel Vetterc0b03412013-05-28 12:05:54 +020010245static void intel_dump_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010246 struct intel_crtc_state *pipe_config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020010247 const char *context)
10248{
10249 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
10250 context, pipe_name(crtc->pipe));
10251
10252 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
10253 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
10254 pipe_config->pipe_bpp, pipe_config->dither);
10255 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
10256 pipe_config->has_pch_encoder,
10257 pipe_config->fdi_lanes,
10258 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
10259 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
10260 pipe_config->fdi_m_n.tu);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010261 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
10262 pipe_config->has_dp_encoder,
10263 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
10264 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
10265 pipe_config->dp_m_n.tu);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010266
10267 DRM_DEBUG_KMS("dp: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n",
10268 pipe_config->has_dp_encoder,
10269 pipe_config->dp_m2_n2.gmch_m,
10270 pipe_config->dp_m2_n2.gmch_n,
10271 pipe_config->dp_m2_n2.link_m,
10272 pipe_config->dp_m2_n2.link_n,
10273 pipe_config->dp_m2_n2.tu);
10274
Daniel Vetter55072d12014-11-20 16:10:28 +010010275 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
10276 pipe_config->has_audio,
10277 pipe_config->has_infoframe);
10278
Daniel Vetterc0b03412013-05-28 12:05:54 +020010279 DRM_DEBUG_KMS("requested mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010280 drm_mode_debug_printmodeline(&pipe_config->base.mode);
Daniel Vetterc0b03412013-05-28 12:05:54 +020010281 DRM_DEBUG_KMS("adjusted mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010282 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
10283 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +030010284 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010285 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
10286 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Daniel Vetterc0b03412013-05-28 12:05:54 +020010287 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
10288 pipe_config->gmch_pfit.control,
10289 pipe_config->gmch_pfit.pgm_ratios,
10290 pipe_config->gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010291 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
Daniel Vetterc0b03412013-05-28 12:05:54 +020010292 pipe_config->pch_pfit.pos,
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010293 pipe_config->pch_pfit.size,
10294 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
Paulo Zanoni42db64e2013-05-31 16:33:22 -030010295 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Ville Syrjäläcf532bb2013-09-04 18:30:02 +030010296 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
Daniel Vetterc0b03412013-05-28 12:05:54 +020010297}
10298
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010299static bool encoders_cloneable(const struct intel_encoder *a,
10300 const struct intel_encoder *b)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010301{
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010302 /* masks could be asymmetric, so check both ways */
10303 return a == b || (a->cloneable & (1 << b->type) &&
10304 b->cloneable & (1 << a->type));
10305}
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010306
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010307static bool check_single_encoder_cloning(struct intel_crtc *crtc,
10308 struct intel_encoder *encoder)
10309{
10310 struct drm_device *dev = crtc->base.dev;
10311 struct intel_encoder *source_encoder;
10312
Damien Lespiaub2784e12014-08-05 11:29:37 +010010313 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010314 if (source_encoder->new_crtc != crtc)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010315 continue;
10316
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010317 if (!encoders_cloneable(encoder, source_encoder))
10318 return false;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010319 }
10320
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010321 return true;
10322}
10323
10324static bool check_encoder_cloning(struct intel_crtc *crtc)
10325{
10326 struct drm_device *dev = crtc->base.dev;
10327 struct intel_encoder *encoder;
10328
Damien Lespiaub2784e12014-08-05 11:29:37 +010010329 for_each_intel_encoder(dev, encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010330 if (encoder->new_crtc != crtc)
10331 continue;
10332
10333 if (!check_single_encoder_cloning(crtc, encoder))
10334 return false;
10335 }
10336
10337 return true;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010338}
10339
Ville Syrjälä00f0b372014-12-02 14:10:46 +020010340static bool check_digital_port_conflicts(struct drm_device *dev)
10341{
10342 struct intel_connector *connector;
10343 unsigned int used_ports = 0;
10344
10345 /*
10346 * Walk the connector list instead of the encoder
10347 * list to detect the problem on ddi platforms
10348 * where there's just one encoder per digital port.
10349 */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020010350 for_each_intel_connector(dev, connector) {
Ville Syrjälä00f0b372014-12-02 14:10:46 +020010351 struct intel_encoder *encoder = connector->new_encoder;
10352
10353 if (!encoder)
10354 continue;
10355
10356 WARN_ON(!encoder->new_crtc);
10357
10358 switch (encoder->type) {
10359 unsigned int port_mask;
10360 case INTEL_OUTPUT_UNKNOWN:
10361 if (WARN_ON(!HAS_DDI(dev)))
10362 break;
10363 case INTEL_OUTPUT_DISPLAYPORT:
10364 case INTEL_OUTPUT_HDMI:
10365 case INTEL_OUTPUT_EDP:
10366 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
10367
10368 /* the same port mustn't appear more than once */
10369 if (used_ports & port_mask)
10370 return false;
10371
10372 used_ports |= port_mask;
10373 default:
10374 break;
10375 }
10376 }
10377
10378 return true;
10379}
10380
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010381static struct intel_crtc_state *
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010382intel_modeset_pipe_config(struct drm_crtc *crtc,
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010383 struct drm_framebuffer *fb,
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010384 struct drm_display_mode *mode)
Daniel Vetter7758a112012-07-08 19:40:39 +020010385{
10386 struct drm_device *dev = crtc->dev;
Daniel Vetter7758a112012-07-08 19:40:39 +020010387 struct intel_encoder *encoder;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010388 struct intel_crtc_state *pipe_config;
Daniel Vettere29c22c2013-02-21 00:00:16 +010010389 int plane_bpp, ret = -EINVAL;
10390 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +020010391
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010392 if (!check_encoder_cloning(to_intel_crtc(crtc))) {
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010393 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
10394 return ERR_PTR(-EINVAL);
10395 }
10396
Ville Syrjälä00f0b372014-12-02 14:10:46 +020010397 if (!check_digital_port_conflicts(dev)) {
10398 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
10399 return ERR_PTR(-EINVAL);
10400 }
10401
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010402 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
10403 if (!pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +020010404 return ERR_PTR(-ENOMEM);
10405
Matt Roper07878242015-02-25 11:43:26 -080010406 pipe_config->base.crtc = crtc;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010407 drm_mode_copy(&pipe_config->base.adjusted_mode, mode);
10408 drm_mode_copy(&pipe_config->base.mode, mode);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010409
Daniel Vettere143a212013-07-04 12:01:15 +020010410 pipe_config->cpu_transcoder =
10411 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010412 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010413
Imre Deak2960bc92013-07-30 13:36:32 +030010414 /*
10415 * Sanitize sync polarity flags based on requested ones. If neither
10416 * positive or negative polarity is requested, treat this as meaning
10417 * negative polarity.
10418 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010419 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030010420 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010421 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030010422
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010423 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030010424 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010425 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030010426
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010427 /* Compute a starting value for pipe_config->pipe_bpp taking the source
10428 * plane pixel format and any sink constraints into account. Returns the
10429 * source plane bpp so that dithering can be selected on mismatches
10430 * after encoders and crtc also have had their say. */
10431 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
10432 fb, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010433 if (plane_bpp < 0)
10434 goto fail;
10435
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030010436 /*
10437 * Determine the real pipe dimensions. Note that stereo modes can
10438 * increase the actual pipe size due to the frame doubling and
10439 * insertion of additional space for blanks between the frame. This
10440 * is stored in the crtc timings. We use the requested mode to do this
10441 * computation to clearly distinguish it from the adjusted mode, which
10442 * can be changed by the connectors in the below retry loop.
10443 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010444 drm_crtc_get_hv_timing(&pipe_config->base.mode,
Gustavo Padovanecb7e162014-12-01 15:40:09 -080010445 &pipe_config->pipe_src_w,
10446 &pipe_config->pipe_src_h);
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030010447
Daniel Vettere29c22c2013-02-21 00:00:16 +010010448encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +020010449 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +020010450 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +020010451 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +020010452
Daniel Vetter135c81b2013-07-21 21:37:09 +020010453 /* Fill in default crtc timings, allow encoders to overwrite them. */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010454 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
10455 CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +020010456
Daniel Vetter7758a112012-07-08 19:40:39 +020010457 /* Pass our mode to the connectors and the CRTC to give them a chance to
10458 * adjust it according to limitations or connector properties, and also
10459 * a chance to reject the mode entirely.
10460 */
Damien Lespiaub2784e12014-08-05 11:29:37 +010010461 for_each_intel_encoder(dev, encoder) {
Daniel Vetter7758a112012-07-08 19:40:39 +020010462
10463 if (&encoder->new_crtc->base != crtc)
10464 continue;
Daniel Vetter7ae89232013-03-27 00:44:52 +010010465
Daniel Vetterefea6e82013-07-21 21:36:59 +020010466 if (!(encoder->compute_config(encoder, pipe_config))) {
10467 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +020010468 goto fail;
10469 }
10470 }
10471
Daniel Vetterff9a6752013-06-01 17:16:21 +020010472 /* Set default port clock if not overwritten by the encoder. Needs to be
10473 * done afterwards in case the encoder adjusts the mode. */
10474 if (!pipe_config->port_clock)
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010475 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
Damien Lespiau241bfc32013-09-25 16:45:37 +010010476 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +020010477
Daniel Vettera43f6e02013-06-07 23:10:32 +020010478 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010010479 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +020010480 DRM_DEBUG_KMS("CRTC fixup failed\n");
10481 goto fail;
10482 }
Daniel Vettere29c22c2013-02-21 00:00:16 +010010483
10484 if (ret == RETRY) {
10485 if (WARN(!retry, "loop in pipe configuration computation\n")) {
10486 ret = -EINVAL;
10487 goto fail;
10488 }
10489
10490 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
10491 retry = false;
10492 goto encoder_retry;
10493 }
10494
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010495 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
10496 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
10497 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
10498
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010499 return pipe_config;
Daniel Vetter7758a112012-07-08 19:40:39 +020010500fail:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010501 kfree(pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010010502 return ERR_PTR(ret);
Daniel Vetter7758a112012-07-08 19:40:39 +020010503}
10504
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010505/* Computes which crtcs are affected and sets the relevant bits in the mask. For
10506 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
10507static void
10508intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
10509 unsigned *prepare_pipes, unsigned *disable_pipes)
10510{
10511 struct intel_crtc *intel_crtc;
10512 struct drm_device *dev = crtc->dev;
10513 struct intel_encoder *encoder;
10514 struct intel_connector *connector;
10515 struct drm_crtc *tmp_crtc;
10516
10517 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
10518
10519 /* Check which crtcs have changed outputs connected to them, these need
10520 * to be part of the prepare_pipes mask. We don't (yet) support global
10521 * modeset across multiple crtcs, so modeset_pipes will only have one
10522 * bit set at most. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020010523 for_each_intel_connector(dev, connector) {
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010524 if (connector->base.encoder == &connector->new_encoder->base)
10525 continue;
10526
10527 if (connector->base.encoder) {
10528 tmp_crtc = connector->base.encoder->crtc;
10529
10530 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
10531 }
10532
10533 if (connector->new_encoder)
10534 *prepare_pipes |=
10535 1 << connector->new_encoder->new_crtc->pipe;
10536 }
10537
Damien Lespiaub2784e12014-08-05 11:29:37 +010010538 for_each_intel_encoder(dev, encoder) {
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010539 if (encoder->base.crtc == &encoder->new_crtc->base)
10540 continue;
10541
10542 if (encoder->base.crtc) {
10543 tmp_crtc = encoder->base.crtc;
10544
10545 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
10546 }
10547
10548 if (encoder->new_crtc)
10549 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
10550 }
10551
Ville Syrjälä76688512014-01-10 11:28:06 +020010552 /* Check for pipes that will be enabled/disabled ... */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010553 for_each_intel_crtc(dev, intel_crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080010554 if (intel_crtc->base.state->enable == intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010555 continue;
10556
Ville Syrjälä76688512014-01-10 11:28:06 +020010557 if (!intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010558 *disable_pipes |= 1 << intel_crtc->pipe;
Ville Syrjälä76688512014-01-10 11:28:06 +020010559 else
10560 *prepare_pipes |= 1 << intel_crtc->pipe;
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010561 }
10562
10563
10564 /* set_mode is also used to update properties on life display pipes. */
10565 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä76688512014-01-10 11:28:06 +020010566 if (intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010567 *prepare_pipes |= 1 << intel_crtc->pipe;
10568
Daniel Vetterb6c51642013-04-12 18:48:43 +020010569 /*
10570 * For simplicity do a full modeset on any pipe where the output routing
10571 * changed. We could be more clever, but that would require us to be
10572 * more careful with calling the relevant encoder->mode_set functions.
10573 */
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010574 if (*prepare_pipes)
10575 *modeset_pipes = *prepare_pipes;
10576
10577 /* ... and mask these out. */
10578 *modeset_pipes &= ~(*disable_pipes);
10579 *prepare_pipes &= ~(*disable_pipes);
Daniel Vetterb6c51642013-04-12 18:48:43 +020010580
10581 /*
10582 * HACK: We don't (yet) fully support global modesets. intel_set_config
10583 * obies this rule, but the modeset restore mode of
10584 * intel_modeset_setup_hw_state does not.
10585 */
10586 *modeset_pipes &= 1 << intel_crtc->pipe;
10587 *prepare_pipes &= 1 << intel_crtc->pipe;
Daniel Vettere3641d32013-04-11 19:49:07 +020010588
10589 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
10590 *modeset_pipes, *prepare_pipes, *disable_pipes);
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010591}
10592
Daniel Vetterea9d7582012-07-10 10:42:52 +020010593static bool intel_crtc_in_use(struct drm_crtc *crtc)
10594{
10595 struct drm_encoder *encoder;
10596 struct drm_device *dev = crtc->dev;
10597
10598 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
10599 if (encoder->crtc == crtc)
10600 return true;
10601
10602 return false;
10603}
10604
10605static void
10606intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
10607{
Daniel Vetterba41c0de2014-11-03 15:04:55 +010010608 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterea9d7582012-07-10 10:42:52 +020010609 struct intel_encoder *intel_encoder;
10610 struct intel_crtc *intel_crtc;
10611 struct drm_connector *connector;
10612
Daniel Vetterba41c0de2014-11-03 15:04:55 +010010613 intel_shared_dpll_commit(dev_priv);
10614
Damien Lespiaub2784e12014-08-05 11:29:37 +010010615 for_each_intel_encoder(dev, intel_encoder) {
Daniel Vetterea9d7582012-07-10 10:42:52 +020010616 if (!intel_encoder->base.crtc)
10617 continue;
10618
10619 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
10620
10621 if (prepare_pipes & (1 << intel_crtc->pipe))
10622 intel_encoder->connectors_active = false;
10623 }
10624
10625 intel_modeset_commit_output_state(dev);
10626
Ville Syrjälä76688512014-01-10 11:28:06 +020010627 /* Double check state. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010628 for_each_intel_crtc(dev, intel_crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080010629 WARN_ON(intel_crtc->base.state->enable != intel_crtc_in_use(&intel_crtc->base));
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010630 WARN_ON(intel_crtc->new_config &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010631 intel_crtc->new_config != intel_crtc->config);
Matt Roper83d65732015-02-25 13:12:16 -080010632 WARN_ON(intel_crtc->base.state->enable != !!intel_crtc->new_config);
Daniel Vetterea9d7582012-07-10 10:42:52 +020010633 }
10634
10635 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
10636 if (!connector->encoder || !connector->encoder->crtc)
10637 continue;
10638
10639 intel_crtc = to_intel_crtc(connector->encoder->crtc);
10640
10641 if (prepare_pipes & (1 << intel_crtc->pipe)) {
Daniel Vetter68d34722012-09-06 22:08:35 +020010642 struct drm_property *dpms_property =
10643 dev->mode_config.dpms_property;
10644
Daniel Vetterea9d7582012-07-10 10:42:52 +020010645 connector->dpms = DRM_MODE_DPMS_ON;
Rob Clark662595d2012-10-11 20:36:04 -050010646 drm_object_property_set_value(&connector->base,
Daniel Vetter68d34722012-09-06 22:08:35 +020010647 dpms_property,
10648 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +020010649
10650 intel_encoder = to_intel_encoder(connector->encoder);
10651 intel_encoder->connectors_active = true;
10652 }
10653 }
10654
10655}
10656
Ville Syrjälä3bd26262013-09-06 23:29:02 +030010657static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010658{
Ville Syrjälä3bd26262013-09-06 23:29:02 +030010659 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010660
10661 if (clock1 == clock2)
10662 return true;
10663
10664 if (!clock1 || !clock2)
10665 return false;
10666
10667 diff = abs(clock1 - clock2);
10668
10669 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
10670 return true;
10671
10672 return false;
10673}
10674
Daniel Vetter25c5b262012-07-08 22:08:04 +020010675#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
10676 list_for_each_entry((intel_crtc), \
10677 &(dev)->mode_config.crtc_list, \
10678 base.head) \
Daniel Vetter0973f182013-04-19 11:25:33 +020010679 if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +020010680
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010681static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020010682intel_pipe_config_compare(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010683 struct intel_crtc_state *current_config,
10684 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010685{
Daniel Vetter66e985c2013-06-05 13:34:20 +020010686#define PIPE_CONF_CHECK_X(name) \
10687 if (current_config->name != pipe_config->name) { \
10688 DRM_ERROR("mismatch in " #name " " \
10689 "(expected 0x%08x, found 0x%08x)\n", \
10690 current_config->name, \
10691 pipe_config->name); \
10692 return false; \
10693 }
10694
Daniel Vetter08a24032013-04-19 11:25:34 +020010695#define PIPE_CONF_CHECK_I(name) \
10696 if (current_config->name != pipe_config->name) { \
10697 DRM_ERROR("mismatch in " #name " " \
10698 "(expected %i, found %i)\n", \
10699 current_config->name, \
10700 pipe_config->name); \
10701 return false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +010010702 }
10703
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010704/* This is required for BDW+ where there is only one set of registers for
10705 * switching between high and low RR.
10706 * This macro can be used whenever a comparison has to be made between one
10707 * hw state and multiple sw state variables.
10708 */
10709#define PIPE_CONF_CHECK_I_ALT(name, alt_name) \
10710 if ((current_config->name != pipe_config->name) && \
10711 (current_config->alt_name != pipe_config->name)) { \
10712 DRM_ERROR("mismatch in " #name " " \
10713 "(expected %i or %i, found %i)\n", \
10714 current_config->name, \
10715 current_config->alt_name, \
10716 pipe_config->name); \
10717 return false; \
10718 }
10719
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010720#define PIPE_CONF_CHECK_FLAGS(name, mask) \
10721 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Jesse Barnes6f024882013-07-01 10:19:09 -070010722 DRM_ERROR("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010723 "(expected %i, found %i)\n", \
10724 current_config->name & (mask), \
10725 pipe_config->name & (mask)); \
10726 return false; \
10727 }
10728
Ville Syrjälä5e550652013-09-06 23:29:07 +030010729#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
10730 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
10731 DRM_ERROR("mismatch in " #name " " \
10732 "(expected %i, found %i)\n", \
10733 current_config->name, \
10734 pipe_config->name); \
10735 return false; \
10736 }
10737
Daniel Vetterbb760062013-06-06 14:55:52 +020010738#define PIPE_CONF_QUIRK(quirk) \
10739 ((current_config->quirks | pipe_config->quirks) & (quirk))
10740
Daniel Vettereccb1402013-05-22 00:50:22 +020010741 PIPE_CONF_CHECK_I(cpu_transcoder);
10742
Daniel Vetter08a24032013-04-19 11:25:34 +020010743 PIPE_CONF_CHECK_I(has_pch_encoder);
10744 PIPE_CONF_CHECK_I(fdi_lanes);
Daniel Vetter72419202013-04-04 13:28:53 +020010745 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
10746 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
10747 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
10748 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
10749 PIPE_CONF_CHECK_I(fdi_m_n.tu);
Daniel Vetter08a24032013-04-19 11:25:34 +020010750
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010751 PIPE_CONF_CHECK_I(has_dp_encoder);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010752
10753 if (INTEL_INFO(dev)->gen < 8) {
10754 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
10755 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
10756 PIPE_CONF_CHECK_I(dp_m_n.link_m);
10757 PIPE_CONF_CHECK_I(dp_m_n.link_n);
10758 PIPE_CONF_CHECK_I(dp_m_n.tu);
10759
10760 if (current_config->has_drrs) {
10761 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_m);
10762 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_n);
10763 PIPE_CONF_CHECK_I(dp_m2_n2.link_m);
10764 PIPE_CONF_CHECK_I(dp_m2_n2.link_n);
10765 PIPE_CONF_CHECK_I(dp_m2_n2.tu);
10766 }
10767 } else {
10768 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_m, dp_m2_n2.gmch_m);
10769 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_n, dp_m2_n2.gmch_n);
10770 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_m, dp_m2_n2.link_m);
10771 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_n, dp_m2_n2.link_n);
10772 PIPE_CONF_CHECK_I_ALT(dp_m_n.tu, dp_m2_n2.tu);
10773 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010774
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010775 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
10776 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
10777 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
10778 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
10779 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
10780 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010781
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010782 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
10783 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
10784 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
10785 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
10786 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
10787 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010788
Daniel Vetterc93f54c2013-06-27 19:47:19 +020010789 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6897b4b2014-04-24 23:54:47 +020010790 PIPE_CONF_CHECK_I(has_hdmi_sink);
Daniel Vetterb5a9fa02014-04-24 23:54:49 +020010791 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
10792 IS_VALLEYVIEW(dev))
10793 PIPE_CONF_CHECK_I(limited_color_range);
Jesse Barnese43823e2014-11-05 14:26:08 -080010794 PIPE_CONF_CHECK_I(has_infoframe);
Daniel Vetter6c49f242013-06-06 12:45:25 +020010795
Daniel Vetter9ed109a2014-04-24 23:54:52 +020010796 PIPE_CONF_CHECK_I(has_audio);
10797
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010798 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010799 DRM_MODE_FLAG_INTERLACE);
10800
Daniel Vetterbb760062013-06-06 14:55:52 +020010801 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010802 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010803 DRM_MODE_FLAG_PHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010804 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010805 DRM_MODE_FLAG_NHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010806 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010807 DRM_MODE_FLAG_PVSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010808 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010809 DRM_MODE_FLAG_NVSYNC);
10810 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010811
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010812 PIPE_CONF_CHECK_I(pipe_src_w);
10813 PIPE_CONF_CHECK_I(pipe_src_h);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010814
Daniel Vetter99535992014-04-13 12:00:33 +020010815 /*
10816 * FIXME: BIOS likes to set up a cloned config with lvds+external
10817 * screen. Since we don't yet re-compute the pipe config when moving
10818 * just the lvds port away to another pipe the sw tracking won't match.
10819 *
10820 * Proper atomic modesets with recomputed global state will fix this.
10821 * Until then just don't check gmch state for inherited modes.
10822 */
10823 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE)) {
10824 PIPE_CONF_CHECK_I(gmch_pfit.control);
10825 /* pfit ratios are autocomputed by the hw on gen4+ */
10826 if (INTEL_INFO(dev)->gen < 4)
10827 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
10828 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
10829 }
10830
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010831 PIPE_CONF_CHECK_I(pch_pfit.enabled);
10832 if (current_config->pch_pfit.enabled) {
10833 PIPE_CONF_CHECK_I(pch_pfit.pos);
10834 PIPE_CONF_CHECK_I(pch_pfit.size);
10835 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020010836
Jesse Barnese59150d2014-01-07 13:30:45 -080010837 /* BDW+ don't expose a synchronous way to read the state */
10838 if (IS_HASWELL(dev))
10839 PIPE_CONF_CHECK_I(ips_enabled);
Paulo Zanoni42db64e2013-05-31 16:33:22 -030010840
Ville Syrjälä282740f2013-09-04 18:30:03 +030010841 PIPE_CONF_CHECK_I(double_wide);
10842
Daniel Vetter26804af2014-06-25 22:01:55 +030010843 PIPE_CONF_CHECK_X(ddi_pll_sel);
10844
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010845 PIPE_CONF_CHECK_I(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010846 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +020010847 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010848 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
10849 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterd452c5b2014-07-04 11:27:39 -030010850 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
Damien Lespiau3f4cd192014-11-13 14:55:21 +000010851 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
10852 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
10853 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010854
Ville Syrjälä42571ae2013-09-06 23:29:00 +030010855 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
10856 PIPE_CONF_CHECK_I(pipe_bpp);
10857
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010858 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
Jesse Barnesa9a7e982014-01-20 14:18:04 -080010859 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
Ville Syrjälä5e550652013-09-06 23:29:07 +030010860
Daniel Vetter66e985c2013-06-05 13:34:20 +020010861#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +020010862#undef PIPE_CONF_CHECK_I
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010863#undef PIPE_CONF_CHECK_I_ALT
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010864#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +030010865#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +020010866#undef PIPE_CONF_QUIRK
Daniel Vetter627eb5a2013-04-29 19:33:42 +020010867
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010868 return true;
10869}
10870
Damien Lespiau08db6652014-11-04 17:06:52 +000010871static void check_wm_state(struct drm_device *dev)
10872{
10873 struct drm_i915_private *dev_priv = dev->dev_private;
10874 struct skl_ddb_allocation hw_ddb, *sw_ddb;
10875 struct intel_crtc *intel_crtc;
10876 int plane;
10877
10878 if (INTEL_INFO(dev)->gen < 9)
10879 return;
10880
10881 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
10882 sw_ddb = &dev_priv->wm.skl_hw.ddb;
10883
10884 for_each_intel_crtc(dev, intel_crtc) {
10885 struct skl_ddb_entry *hw_entry, *sw_entry;
10886 const enum pipe pipe = intel_crtc->pipe;
10887
10888 if (!intel_crtc->active)
10889 continue;
10890
10891 /* planes */
Damien Lespiaudd740782015-02-28 14:54:08 +000010892 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau08db6652014-11-04 17:06:52 +000010893 hw_entry = &hw_ddb.plane[pipe][plane];
10894 sw_entry = &sw_ddb->plane[pipe][plane];
10895
10896 if (skl_ddb_entry_equal(hw_entry, sw_entry))
10897 continue;
10898
10899 DRM_ERROR("mismatch in DDB state pipe %c plane %d "
10900 "(expected (%u,%u), found (%u,%u))\n",
10901 pipe_name(pipe), plane + 1,
10902 sw_entry->start, sw_entry->end,
10903 hw_entry->start, hw_entry->end);
10904 }
10905
10906 /* cursor */
10907 hw_entry = &hw_ddb.cursor[pipe];
10908 sw_entry = &sw_ddb->cursor[pipe];
10909
10910 if (skl_ddb_entry_equal(hw_entry, sw_entry))
10911 continue;
10912
10913 DRM_ERROR("mismatch in DDB state pipe %c cursor "
10914 "(expected (%u,%u), found (%u,%u))\n",
10915 pipe_name(pipe),
10916 sw_entry->start, sw_entry->end,
10917 hw_entry->start, hw_entry->end);
10918 }
10919}
10920
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010921static void
10922check_connector_state(struct drm_device *dev)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010923{
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010924 struct intel_connector *connector;
10925
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020010926 for_each_intel_connector(dev, connector) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010927 /* This also checks the encoder/connector hw state with the
10928 * ->get_hw_state callbacks. */
10929 intel_connector_check_state(connector);
10930
Rob Clarke2c719b2014-12-15 13:56:32 -050010931 I915_STATE_WARN(&connector->new_encoder->base != connector->base.encoder,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010932 "connector's staged encoder doesn't match current encoder\n");
10933 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010934}
10935
10936static void
10937check_encoder_state(struct drm_device *dev)
10938{
10939 struct intel_encoder *encoder;
10940 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010941
Damien Lespiaub2784e12014-08-05 11:29:37 +010010942 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010943 bool enabled = false;
10944 bool active = false;
10945 enum pipe pipe, tracked_pipe;
10946
10947 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
10948 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030010949 encoder->base.name);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010950
Rob Clarke2c719b2014-12-15 13:56:32 -050010951 I915_STATE_WARN(&encoder->new_crtc->base != encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010952 "encoder's stage crtc doesn't match current crtc\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050010953 I915_STATE_WARN(encoder->connectors_active && !encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010954 "encoder's active_connectors set, but no crtc\n");
10955
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020010956 for_each_intel_connector(dev, connector) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010957 if (connector->base.encoder != &encoder->base)
10958 continue;
10959 enabled = true;
10960 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
10961 active = true;
10962 }
Dave Airlie0e32b392014-05-02 14:02:48 +100010963 /*
10964 * for MST connectors if we unplug the connector is gone
10965 * away but the encoder is still connected to a crtc
10966 * until a modeset happens in response to the hotplug.
10967 */
10968 if (!enabled && encoder->base.encoder_type == DRM_MODE_ENCODER_DPMST)
10969 continue;
10970
Rob Clarke2c719b2014-12-15 13:56:32 -050010971 I915_STATE_WARN(!!encoder->base.crtc != enabled,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010972 "encoder's enabled state mismatch "
10973 "(expected %i, found %i)\n",
10974 !!encoder->base.crtc, enabled);
Rob Clarke2c719b2014-12-15 13:56:32 -050010975 I915_STATE_WARN(active && !encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010976 "active encoder with no crtc\n");
10977
Rob Clarke2c719b2014-12-15 13:56:32 -050010978 I915_STATE_WARN(encoder->connectors_active != active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010979 "encoder's computed active state doesn't match tracked active state "
10980 "(expected %i, found %i)\n", active, encoder->connectors_active);
10981
10982 active = encoder->get_hw_state(encoder, &pipe);
Rob Clarke2c719b2014-12-15 13:56:32 -050010983 I915_STATE_WARN(active != encoder->connectors_active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010984 "encoder's hw state doesn't match sw tracking "
10985 "(expected %i, found %i)\n",
10986 encoder->connectors_active, active);
10987
10988 if (!encoder->base.crtc)
10989 continue;
10990
10991 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
Rob Clarke2c719b2014-12-15 13:56:32 -050010992 I915_STATE_WARN(active && pipe != tracked_pipe,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010993 "active encoder's pipe doesn't match"
10994 "(expected %i, found %i)\n",
10995 tracked_pipe, pipe);
10996
10997 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010998}
10999
11000static void
11001check_crtc_state(struct drm_device *dev)
11002{
Jani Nikulafbee40d2014-03-31 14:27:18 +030011003 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020011004 struct intel_crtc *crtc;
11005 struct intel_encoder *encoder;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011006 struct intel_crtc_state pipe_config;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011007
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011008 for_each_intel_crtc(dev, crtc) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011009 bool enabled = false;
11010 bool active = false;
11011
Jesse Barnes045ac3b2013-05-14 17:08:26 -070011012 memset(&pipe_config, 0, sizeof(pipe_config));
11013
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011014 DRM_DEBUG_KMS("[CRTC:%d]\n",
11015 crtc->base.base.id);
11016
Matt Roper83d65732015-02-25 13:12:16 -080011017 I915_STATE_WARN(crtc->active && !crtc->base.state->enable,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011018 "active crtc, but not enabled in sw tracking\n");
11019
Damien Lespiaub2784e12014-08-05 11:29:37 +010011020 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011021 if (encoder->base.crtc != &crtc->base)
11022 continue;
11023 enabled = true;
11024 if (encoder->connectors_active)
11025 active = true;
11026 }
Daniel Vetter6c49f242013-06-06 12:45:25 +020011027
Rob Clarke2c719b2014-12-15 13:56:32 -050011028 I915_STATE_WARN(active != crtc->active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011029 "crtc's computed active state doesn't match tracked active state "
11030 "(expected %i, found %i)\n", active, crtc->active);
Matt Roper83d65732015-02-25 13:12:16 -080011031 I915_STATE_WARN(enabled != crtc->base.state->enable,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011032 "crtc's computed enabled state doesn't match tracked enabled state "
Matt Roper83d65732015-02-25 13:12:16 -080011033 "(expected %i, found %i)\n", enabled,
11034 crtc->base.state->enable);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011035
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011036 active = dev_priv->display.get_pipe_config(crtc,
11037 &pipe_config);
Daniel Vetterd62cf622013-05-29 10:41:29 +020011038
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030011039 /* hw state is inconsistent with the pipe quirk */
11040 if ((crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
11041 (crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Daniel Vetterd62cf622013-05-29 10:41:29 +020011042 active = crtc->active;
11043
Damien Lespiaub2784e12014-08-05 11:29:37 +010011044 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä3eaba512013-08-05 17:57:48 +030011045 enum pipe pipe;
Daniel Vetter6c49f242013-06-06 12:45:25 +020011046 if (encoder->base.crtc != &crtc->base)
11047 continue;
Daniel Vetter1d37b682013-11-18 09:00:59 +010011048 if (encoder->get_hw_state(encoder, &pipe))
Daniel Vetter6c49f242013-06-06 12:45:25 +020011049 encoder->get_config(encoder, &pipe_config);
11050 }
11051
Rob Clarke2c719b2014-12-15 13:56:32 -050011052 I915_STATE_WARN(crtc->active != active,
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011053 "crtc active state doesn't match with hw state "
11054 "(expected %i, found %i)\n", crtc->active, active);
11055
Daniel Vetterc0b03412013-05-28 12:05:54 +020011056 if (active &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011057 !intel_pipe_config_compare(dev, crtc->config, &pipe_config)) {
Rob Clarke2c719b2014-12-15 13:56:32 -050011058 I915_STATE_WARN(1, "pipe state doesn't match!\n");
Daniel Vetterc0b03412013-05-28 12:05:54 +020011059 intel_dump_pipe_config(crtc, &pipe_config,
11060 "[hw state]");
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011061 intel_dump_pipe_config(crtc, crtc->config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020011062 "[sw state]");
11063 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011064 }
11065}
11066
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020011067static void
11068check_shared_dpll_state(struct drm_device *dev)
11069{
Jani Nikulafbee40d2014-03-31 14:27:18 +030011070 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020011071 struct intel_crtc *crtc;
11072 struct intel_dpll_hw_state dpll_hw_state;
11073 int i;
Daniel Vetter53589012013-06-05 13:34:16 +020011074
11075 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
11076 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
11077 int enabled_crtcs = 0, active_crtcs = 0;
11078 bool active;
11079
11080 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
11081
11082 DRM_DEBUG_KMS("%s\n", pll->name);
11083
11084 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
11085
Rob Clarke2c719b2014-12-15 13:56:32 -050011086 I915_STATE_WARN(pll->active > hweight32(pll->config.crtc_mask),
Daniel Vetter53589012013-06-05 13:34:16 +020011087 "more active pll users than references: %i vs %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011088 pll->active, hweight32(pll->config.crtc_mask));
Rob Clarke2c719b2014-12-15 13:56:32 -050011089 I915_STATE_WARN(pll->active && !pll->on,
Daniel Vetter53589012013-06-05 13:34:16 +020011090 "pll in active use but not on in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050011091 I915_STATE_WARN(pll->on && !pll->active,
Daniel Vetter35c95372013-07-17 06:55:04 +020011092 "pll in on but not on in use in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050011093 I915_STATE_WARN(pll->on != active,
Daniel Vetter53589012013-06-05 13:34:16 +020011094 "pll on state mismatch (expected %i, found %i)\n",
11095 pll->on, active);
11096
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011097 for_each_intel_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080011098 if (crtc->base.state->enable && intel_crtc_to_shared_dpll(crtc) == pll)
Daniel Vetter53589012013-06-05 13:34:16 +020011099 enabled_crtcs++;
11100 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
11101 active_crtcs++;
11102 }
Rob Clarke2c719b2014-12-15 13:56:32 -050011103 I915_STATE_WARN(pll->active != active_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020011104 "pll active crtcs mismatch (expected %i, found %i)\n",
11105 pll->active, active_crtcs);
Rob Clarke2c719b2014-12-15 13:56:32 -050011106 I915_STATE_WARN(hweight32(pll->config.crtc_mask) != enabled_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020011107 "pll enabled crtcs mismatch (expected %i, found %i)\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011108 hweight32(pll->config.crtc_mask), enabled_crtcs);
Daniel Vetter66e985c2013-06-05 13:34:20 +020011109
Rob Clarke2c719b2014-12-15 13:56:32 -050011110 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state, &dpll_hw_state,
Daniel Vetter66e985c2013-06-05 13:34:20 +020011111 sizeof(dpll_hw_state)),
11112 "pll hw state mismatch\n");
Daniel Vetter53589012013-06-05 13:34:16 +020011113 }
Daniel Vettera6778b32012-07-02 09:56:42 +020011114}
11115
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020011116void
11117intel_modeset_check_state(struct drm_device *dev)
11118{
Damien Lespiau08db6652014-11-04 17:06:52 +000011119 check_wm_state(dev);
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020011120 check_connector_state(dev);
11121 check_encoder_state(dev);
11122 check_crtc_state(dev);
11123 check_shared_dpll_state(dev);
11124}
11125
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011126void ironlake_check_encoder_dotclock(const struct intel_crtc_state *pipe_config,
Ville Syrjälä18442d02013-09-13 16:00:08 +030011127 int dotclock)
11128{
11129 /*
11130 * FDI already provided one idea for the dotclock.
11131 * Yell if the encoder disagrees.
11132 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011133 WARN(!intel_fuzzy_clock_check(pipe_config->base.adjusted_mode.crtc_clock, dotclock),
Ville Syrjälä18442d02013-09-13 16:00:08 +030011134 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011135 pipe_config->base.adjusted_mode.crtc_clock, dotclock);
Ville Syrjälä18442d02013-09-13 16:00:08 +030011136}
11137
Ville Syrjälä80715b22014-05-15 20:23:23 +030011138static void update_scanline_offset(struct intel_crtc *crtc)
11139{
11140 struct drm_device *dev = crtc->base.dev;
11141
11142 /*
11143 * The scanline counter increments at the leading edge of hsync.
11144 *
11145 * On most platforms it starts counting from vtotal-1 on the
11146 * first active line. That means the scanline counter value is
11147 * always one less than what we would expect. Ie. just after
11148 * start of vblank, which also occurs at start of hsync (on the
11149 * last active line), the scanline counter will read vblank_start-1.
11150 *
11151 * On gen2 the scanline counter starts counting from 1 instead
11152 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
11153 * to keep the value positive), instead of adding one.
11154 *
11155 * On HSW+ the behaviour of the scanline counter depends on the output
11156 * type. For DP ports it behaves like most other platforms, but on HDMI
11157 * there's an extra 1 line difference. So we need to add two instead of
11158 * one to the value.
11159 */
11160 if (IS_GEN2(dev)) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011161 const struct drm_display_mode *mode = &crtc->config->base.adjusted_mode;
Ville Syrjälä80715b22014-05-15 20:23:23 +030011162 int vtotal;
11163
11164 vtotal = mode->crtc_vtotal;
11165 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
11166 vtotal /= 2;
11167
11168 crtc->scanline_offset = vtotal - 1;
11169 } else if (HAS_DDI(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +030011170 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) {
Ville Syrjälä80715b22014-05-15 20:23:23 +030011171 crtc->scanline_offset = 2;
11172 } else
11173 crtc->scanline_offset = 1;
11174}
11175
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011176static struct intel_crtc_state *
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011177intel_modeset_compute_config(struct drm_crtc *crtc,
11178 struct drm_display_mode *mode,
11179 struct drm_framebuffer *fb,
11180 unsigned *modeset_pipes,
11181 unsigned *prepare_pipes,
11182 unsigned *disable_pipes)
11183{
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011184 struct intel_crtc_state *pipe_config = NULL;
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011185
11186 intel_modeset_affected_pipes(crtc, modeset_pipes,
11187 prepare_pipes, disable_pipes);
11188
11189 if ((*modeset_pipes) == 0)
11190 goto out;
11191
11192 /*
11193 * Note this needs changes when we start tracking multiple modes
11194 * and crtcs. At that point we'll need to compute the whole config
11195 * (i.e. one pipe_config for each crtc) rather than just the one
11196 * for this crtc.
11197 */
11198 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
11199 if (IS_ERR(pipe_config)) {
11200 goto out;
11201 }
11202 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
11203 "[modeset]");
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011204
11205out:
11206 return pipe_config;
11207}
11208
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020011209static int __intel_set_mode_setup_plls(struct drm_device *dev,
11210 unsigned modeset_pipes,
11211 unsigned disable_pipes)
11212{
11213 struct drm_i915_private *dev_priv = to_i915(dev);
11214 unsigned clear_pipes = modeset_pipes | disable_pipes;
11215 struct intel_crtc *intel_crtc;
11216 int ret = 0;
11217
11218 if (!dev_priv->display.crtc_compute_clock)
11219 return 0;
11220
11221 ret = intel_shared_dpll_start_config(dev_priv, clear_pipes);
11222 if (ret)
11223 goto done;
11224
11225 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
11226 struct intel_crtc_state *state = intel_crtc->new_config;
11227 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
11228 state);
11229 if (ret) {
11230 intel_shared_dpll_abort_config(dev_priv);
11231 goto done;
11232 }
11233 }
11234
11235done:
11236 return ret;
11237}
11238
Daniel Vetterf30da182013-04-11 20:22:50 +020011239static int __intel_set_mode(struct drm_crtc *crtc,
11240 struct drm_display_mode *mode,
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011241 int x, int y, struct drm_framebuffer *fb,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011242 struct intel_crtc_state *pipe_config,
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011243 unsigned modeset_pipes,
11244 unsigned prepare_pipes,
11245 unsigned disable_pipes)
Daniel Vettera6778b32012-07-02 09:56:42 +020011246{
11247 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +030011248 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030011249 struct drm_display_mode *saved_mode;
Daniel Vetter25c5b262012-07-08 22:08:04 +020011250 struct intel_crtc *intel_crtc;
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011251 int ret = 0;
Daniel Vettera6778b32012-07-02 09:56:42 +020011252
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030011253 saved_mode = kmalloc(sizeof(*saved_mode), GFP_KERNEL);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011254 if (!saved_mode)
11255 return -ENOMEM;
Daniel Vettera6778b32012-07-02 09:56:42 +020011256
Tim Gardner3ac18232012-12-07 07:54:26 -070011257 *saved_mode = crtc->mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020011258
Ville Syrjäläb9950a12014-11-21 21:00:36 +020011259 if (modeset_pipes)
11260 to_intel_crtc(crtc)->new_config = pipe_config;
11261
Jesse Barnes30a970c2013-11-04 13:48:12 -080011262 /*
11263 * See if the config requires any additional preparation, e.g.
11264 * to adjust global state with pipes off. We need to do this
11265 * here so we can get the modeset_pipe updated config for the new
11266 * mode set on this crtc. For other crtcs we need to use the
11267 * adjusted_mode bits in the crtc directly.
11268 */
Ville Syrjäläc164f832013-11-05 22:34:12 +020011269 if (IS_VALLEYVIEW(dev)) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +020011270 valleyview_modeset_global_pipes(dev, &prepare_pipes);
Jesse Barnes30a970c2013-11-04 13:48:12 -080011271
Ville Syrjäläc164f832013-11-05 22:34:12 +020011272 /* may have added more to prepare_pipes than we should */
11273 prepare_pipes &= ~disable_pipes;
11274 }
11275
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020011276 ret = __intel_set_mode_setup_plls(dev, modeset_pipes, disable_pipes);
11277 if (ret)
11278 goto done;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +020011279
Daniel Vetter460da9162013-03-27 00:44:51 +010011280 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
11281 intel_crtc_disable(&intel_crtc->base);
11282
Daniel Vetterea9d7582012-07-10 10:42:52 +020011283 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080011284 if (intel_crtc->base.state->enable)
Daniel Vetterea9d7582012-07-10 10:42:52 +020011285 dev_priv->display.crtc_disable(&intel_crtc->base);
11286 }
Daniel Vettera6778b32012-07-02 09:56:42 +020011287
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020011288 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
11289 * to set it here already despite that we pass it down the callchain.
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011290 *
11291 * Note we'll need to fix this up when we start tracking multiple
11292 * pipes; here we assume a single modeset_pipe and only track the
11293 * single crtc and mode.
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020011294 */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011295 if (modeset_pipes) {
Daniel Vetter25c5b262012-07-08 22:08:04 +020011296 crtc->mode = *mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011297 /* mode_set/enable/disable functions rely on a correct pipe
11298 * config. */
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020011299 intel_crtc_set_state(to_intel_crtc(crtc), pipe_config);
Ville Syrjäläc326c0a2013-10-28 12:53:41 +020011300
11301 /*
11302 * Calculate and store various constants which
11303 * are later needed by vblank and swap-completion
11304 * timestamping. They are derived from true hwmode.
11305 */
11306 drm_calc_timestamping_constants(crtc,
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011307 &pipe_config->base.adjusted_mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011308 }
Daniel Vetter7758a112012-07-08 19:40:39 +020011309
Daniel Vetterea9d7582012-07-10 10:42:52 +020011310 /* Only after disabling all output pipelines that will be changed can we
11311 * update the the output configuration. */
11312 intel_modeset_update_state(dev, prepare_pipes);
11313
Ville Syrjälä50f6e502014-11-06 14:49:12 +020011314 modeset_update_crtc_power_domains(dev);
Daniel Vetter47fab732012-10-26 10:58:18 +020011315
Daniel Vettera6778b32012-07-02 09:56:42 +020011316 /* Set up the DPLL and any encoders state that needs to adjust or depend
11317 * on the DPLL.
11318 */
Daniel Vetter25c5b262012-07-08 22:08:04 +020011319 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
Gustavo Padovan455a6802014-12-01 15:40:11 -080011320 struct drm_plane *primary = intel_crtc->base.primary;
11321 int vdisplay, hdisplay;
Daniel Vetter4c107942014-04-24 23:55:05 +020011322
Gustavo Padovan455a6802014-12-01 15:40:11 -080011323 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
11324 ret = primary->funcs->update_plane(primary, &intel_crtc->base,
11325 fb, 0, 0,
11326 hdisplay, vdisplay,
11327 x << 16, y << 16,
11328 hdisplay << 16, vdisplay << 16);
Daniel Vettera6778b32012-07-02 09:56:42 +020011329 }
11330
11331 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Ville Syrjälä80715b22014-05-15 20:23:23 +030011332 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
11333 update_scanline_offset(intel_crtc);
11334
Daniel Vetter25c5b262012-07-08 22:08:04 +020011335 dev_priv->display.crtc_enable(&intel_crtc->base);
Ville Syrjälä80715b22014-05-15 20:23:23 +030011336 }
Daniel Vettera6778b32012-07-02 09:56:42 +020011337
Daniel Vettera6778b32012-07-02 09:56:42 +020011338 /* FIXME: add subpixel order */
11339done:
Matt Roper83d65732015-02-25 13:12:16 -080011340 if (ret && crtc->state->enable)
Tim Gardner3ac18232012-12-07 07:54:26 -070011341 crtc->mode = *saved_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020011342
Tim Gardner3ac18232012-12-07 07:54:26 -070011343 kfree(saved_mode);
Daniel Vettera6778b32012-07-02 09:56:42 +020011344 return ret;
11345}
11346
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011347static int intel_set_mode_pipes(struct drm_crtc *crtc,
11348 struct drm_display_mode *mode,
11349 int x, int y, struct drm_framebuffer *fb,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011350 struct intel_crtc_state *pipe_config,
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011351 unsigned modeset_pipes,
11352 unsigned prepare_pipes,
11353 unsigned disable_pipes)
11354{
11355 int ret;
11356
11357 ret = __intel_set_mode(crtc, mode, x, y, fb, pipe_config, modeset_pipes,
11358 prepare_pipes, disable_pipes);
11359
11360 if (ret == 0)
11361 intel_modeset_check_state(crtc->dev);
11362
11363 return ret;
11364}
11365
Damien Lespiaue7457a92013-08-08 22:28:59 +010011366static int intel_set_mode(struct drm_crtc *crtc,
11367 struct drm_display_mode *mode,
11368 int x, int y, struct drm_framebuffer *fb)
Daniel Vetterf30da182013-04-11 20:22:50 +020011369{
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011370 struct intel_crtc_state *pipe_config;
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011371 unsigned modeset_pipes, prepare_pipes, disable_pipes;
Daniel Vetterf30da182013-04-11 20:22:50 +020011372
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011373 pipe_config = intel_modeset_compute_config(crtc, mode, fb,
11374 &modeset_pipes,
11375 &prepare_pipes,
11376 &disable_pipes);
Daniel Vetterf30da182013-04-11 20:22:50 +020011377
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011378 if (IS_ERR(pipe_config))
11379 return PTR_ERR(pipe_config);
Daniel Vetterf30da182013-04-11 20:22:50 +020011380
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011381 return intel_set_mode_pipes(crtc, mode, x, y, fb, pipe_config,
11382 modeset_pipes, prepare_pipes,
11383 disable_pipes);
Daniel Vetterf30da182013-04-11 20:22:50 +020011384}
11385
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011386void intel_crtc_restore_mode(struct drm_crtc *crtc)
11387{
Matt Roperf4510a22014-04-01 15:22:40 -070011388 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->primary->fb);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011389}
11390
Daniel Vetter25c5b262012-07-08 22:08:04 +020011391#undef for_each_intel_crtc_masked
11392
Daniel Vetterd9e55602012-07-04 22:16:09 +020011393static void intel_set_config_free(struct intel_set_config *config)
11394{
11395 if (!config)
11396 return;
11397
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011398 kfree(config->save_connector_encoders);
11399 kfree(config->save_encoder_crtcs);
Ville Syrjälä76688512014-01-10 11:28:06 +020011400 kfree(config->save_crtc_enabled);
Daniel Vetterd9e55602012-07-04 22:16:09 +020011401 kfree(config);
11402}
11403
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011404static int intel_set_config_save_state(struct drm_device *dev,
11405 struct intel_set_config *config)
11406{
Ville Syrjälä76688512014-01-10 11:28:06 +020011407 struct drm_crtc *crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011408 struct drm_encoder *encoder;
11409 struct drm_connector *connector;
11410 int count;
11411
Ville Syrjälä76688512014-01-10 11:28:06 +020011412 config->save_crtc_enabled =
11413 kcalloc(dev->mode_config.num_crtc,
11414 sizeof(bool), GFP_KERNEL);
11415 if (!config->save_crtc_enabled)
11416 return -ENOMEM;
11417
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011418 config->save_encoder_crtcs =
11419 kcalloc(dev->mode_config.num_encoder,
11420 sizeof(struct drm_crtc *), GFP_KERNEL);
11421 if (!config->save_encoder_crtcs)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011422 return -ENOMEM;
11423
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011424 config->save_connector_encoders =
11425 kcalloc(dev->mode_config.num_connector,
11426 sizeof(struct drm_encoder *), GFP_KERNEL);
11427 if (!config->save_connector_encoders)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011428 return -ENOMEM;
11429
11430 /* Copy data. Note that driver private data is not affected.
11431 * Should anything bad happen only the expected state is
11432 * restored, not the drivers personal bookkeeping.
11433 */
11434 count = 0;
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010011435 for_each_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080011436 config->save_crtc_enabled[count++] = crtc->state->enable;
Ville Syrjälä76688512014-01-10 11:28:06 +020011437 }
11438
11439 count = 0;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011440 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011441 config->save_encoder_crtcs[count++] = encoder->crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011442 }
11443
11444 count = 0;
11445 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011446 config->save_connector_encoders[count++] = connector->encoder;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011447 }
11448
11449 return 0;
11450}
11451
11452static void intel_set_config_restore_state(struct drm_device *dev,
11453 struct intel_set_config *config)
11454{
Ville Syrjälä76688512014-01-10 11:28:06 +020011455 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020011456 struct intel_encoder *encoder;
11457 struct intel_connector *connector;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011458 int count;
11459
11460 count = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011461 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011462 crtc->new_enabled = config->save_crtc_enabled[count++];
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011463
11464 if (crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011465 crtc->new_config = crtc->config;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011466 else
11467 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020011468 }
11469
11470 count = 0;
Damien Lespiaub2784e12014-08-05 11:29:37 +010011471 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011472 encoder->new_crtc =
11473 to_intel_crtc(config->save_encoder_crtcs[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011474 }
11475
11476 count = 0;
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011477 for_each_intel_connector(dev, connector) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011478 connector->new_encoder =
11479 to_intel_encoder(config->save_connector_encoders[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011480 }
11481}
11482
Imre Deake3de42b2013-05-03 19:44:07 +020011483static bool
Chris Wilson2e57f472013-07-17 12:14:40 +010011484is_crtc_connector_off(struct drm_mode_set *set)
Imre Deake3de42b2013-05-03 19:44:07 +020011485{
11486 int i;
11487
Chris Wilson2e57f472013-07-17 12:14:40 +010011488 if (set->num_connectors == 0)
11489 return false;
11490
11491 if (WARN_ON(set->connectors == NULL))
11492 return false;
11493
11494 for (i = 0; i < set->num_connectors; i++)
11495 if (set->connectors[i]->encoder &&
11496 set->connectors[i]->encoder->crtc == set->crtc &&
11497 set->connectors[i]->dpms != DRM_MODE_DPMS_ON)
Imre Deake3de42b2013-05-03 19:44:07 +020011498 return true;
11499
11500 return false;
11501}
11502
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011503static void
11504intel_set_config_compute_mode_changes(struct drm_mode_set *set,
11505 struct intel_set_config *config)
11506{
11507
11508 /* We should be able to check here if the fb has the same properties
11509 * and then just flip_or_move it */
Chris Wilson2e57f472013-07-17 12:14:40 +010011510 if (is_crtc_connector_off(set)) {
11511 config->mode_changed = true;
Matt Roperf4510a22014-04-01 15:22:40 -070011512 } else if (set->crtc->primary->fb != set->fb) {
Matt Roper3b150f02014-05-29 08:06:53 -070011513 /*
11514 * If we have no fb, we can only flip as long as the crtc is
11515 * active, otherwise we need a full mode set. The crtc may
11516 * be active if we've only disabled the primary plane, or
11517 * in fastboot situations.
11518 */
Matt Roperf4510a22014-04-01 15:22:40 -070011519 if (set->crtc->primary->fb == NULL) {
Jesse Barnes319d9822013-06-26 01:38:19 +030011520 struct intel_crtc *intel_crtc =
11521 to_intel_crtc(set->crtc);
11522
Matt Roper3b150f02014-05-29 08:06:53 -070011523 if (intel_crtc->active) {
Jesse Barnes319d9822013-06-26 01:38:19 +030011524 DRM_DEBUG_KMS("crtc has no fb, will flip\n");
11525 config->fb_changed = true;
11526 } else {
11527 DRM_DEBUG_KMS("inactive crtc, full mode set\n");
11528 config->mode_changed = true;
11529 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011530 } else if (set->fb == NULL) {
11531 config->mode_changed = true;
Daniel Vetter72f49012013-03-28 16:01:35 +010011532 } else if (set->fb->pixel_format !=
Matt Roperf4510a22014-04-01 15:22:40 -070011533 set->crtc->primary->fb->pixel_format) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011534 config->mode_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020011535 } else {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011536 config->fb_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020011537 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011538 }
11539
Daniel Vetter835c5872012-07-10 18:11:08 +020011540 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011541 config->fb_changed = true;
11542
11543 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
11544 DRM_DEBUG_KMS("modes are different, full mode set\n");
11545 drm_mode_debug_printmodeline(&set->crtc->mode);
11546 drm_mode_debug_printmodeline(set->mode);
11547 config->mode_changed = true;
11548 }
Chris Wilsona1d95702013-08-13 18:48:47 +010011549
11550 DRM_DEBUG_KMS("computed changes for [CRTC:%d], mode_changed=%d, fb_changed=%d\n",
11551 set->crtc->base.id, config->mode_changed, config->fb_changed);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011552}
11553
Daniel Vetter2e431052012-07-04 22:42:15 +020011554static int
Daniel Vetter9a935852012-07-05 22:34:27 +020011555intel_modeset_stage_output_state(struct drm_device *dev,
11556 struct drm_mode_set *set,
11557 struct intel_set_config *config)
Daniel Vetter50f56112012-07-02 09:35:43 +020011558{
Daniel Vetter9a935852012-07-05 22:34:27 +020011559 struct intel_connector *connector;
11560 struct intel_encoder *encoder;
Ville Syrjälä76688512014-01-10 11:28:06 +020011561 struct intel_crtc *crtc;
Paulo Zanonif3f08572013-08-12 14:56:53 -030011562 int ro;
Daniel Vetter50f56112012-07-02 09:35:43 +020011563
Damien Lespiau9abdda72013-02-13 13:29:23 +000011564 /* The upper layers ensure that we either disable a crtc or have a list
Daniel Vetter9a935852012-07-05 22:34:27 +020011565 * of connectors. For paranoia, double-check this. */
11566 WARN_ON(!set->fb && (set->num_connectors != 0));
11567 WARN_ON(set->fb && (set->num_connectors == 0));
11568
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011569 for_each_intel_connector(dev, connector) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011570 /* Otherwise traverse passed in connector list and get encoders
11571 * for them. */
Daniel Vetter50f56112012-07-02 09:35:43 +020011572 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011573 if (set->connectors[ro] == &connector->base) {
Dave Airlie0e32b392014-05-02 14:02:48 +100011574 connector->new_encoder = intel_find_encoder(connector, to_intel_crtc(set->crtc)->pipe);
Daniel Vetter50f56112012-07-02 09:35:43 +020011575 break;
11576 }
11577 }
11578
Daniel Vetter9a935852012-07-05 22:34:27 +020011579 /* If we disable the crtc, disable all its connectors. Also, if
11580 * the connector is on the changing crtc but not on the new
11581 * connector list, disable it. */
11582 if ((!set->fb || ro == set->num_connectors) &&
11583 connector->base.encoder &&
11584 connector->base.encoder->crtc == set->crtc) {
11585 connector->new_encoder = NULL;
11586
11587 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
11588 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030011589 connector->base.name);
Daniel Vetter9a935852012-07-05 22:34:27 +020011590 }
11591
11592
11593 if (&connector->new_encoder->base != connector->base.encoder) {
Ander Conselvan de Oliveira10634182015-03-03 15:21:57 +020011594 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] encoder changed, full mode switch\n",
11595 connector->base.base.id,
11596 connector->base.name);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011597 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020011598 }
Daniel Vetter9a935852012-07-05 22:34:27 +020011599 }
11600 /* connector->new_encoder is now updated for all connectors. */
11601
11602 /* Update crtc of enabled connectors. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011603 for_each_intel_connector(dev, connector) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011604 struct drm_crtc *new_crtc;
11605
Daniel Vetter9a935852012-07-05 22:34:27 +020011606 if (!connector->new_encoder)
Daniel Vetter50f56112012-07-02 09:35:43 +020011607 continue;
11608
Daniel Vetter9a935852012-07-05 22:34:27 +020011609 new_crtc = connector->new_encoder->base.crtc;
Daniel Vetter50f56112012-07-02 09:35:43 +020011610
11611 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011612 if (set->connectors[ro] == &connector->base)
Daniel Vetter50f56112012-07-02 09:35:43 +020011613 new_crtc = set->crtc;
11614 }
11615
11616 /* Make sure the new CRTC will work with the encoder */
Thierry Reding14509912014-01-13 12:00:22 +010011617 if (!drm_encoder_crtc_ok(&connector->new_encoder->base,
11618 new_crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011619 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +020011620 }
Dave Airlie0e32b392014-05-02 14:02:48 +100011621 connector->new_encoder->new_crtc = to_intel_crtc(new_crtc);
Daniel Vetter9a935852012-07-05 22:34:27 +020011622
11623 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
11624 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030011625 connector->base.name,
Daniel Vetter9a935852012-07-05 22:34:27 +020011626 new_crtc->base.id);
11627 }
11628
11629 /* Check for any encoders that needs to be disabled. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010011630 for_each_intel_encoder(dev, encoder) {
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011631 int num_connectors = 0;
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011632 for_each_intel_connector(dev, connector) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011633 if (connector->new_encoder == encoder) {
11634 WARN_ON(!connector->new_encoder->new_crtc);
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011635 num_connectors++;
Daniel Vetter9a935852012-07-05 22:34:27 +020011636 }
11637 }
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011638
11639 if (num_connectors == 0)
11640 encoder->new_crtc = NULL;
11641 else if (num_connectors > 1)
11642 return -EINVAL;
11643
Daniel Vetter9a935852012-07-05 22:34:27 +020011644 /* Only now check for crtc changes so we don't miss encoders
11645 * that will be disabled. */
11646 if (&encoder->new_crtc->base != encoder->base.crtc) {
Ander Conselvan de Oliveira10634182015-03-03 15:21:57 +020011647 DRM_DEBUG_KMS("[ENCODER:%d:%s] crtc changed, full mode switch\n",
11648 encoder->base.base.id,
11649 encoder->base.name);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011650 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020011651 }
11652 }
Daniel Vetter9a935852012-07-05 22:34:27 +020011653 /* Now we've also updated encoder->new_crtc for all encoders. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011654 for_each_intel_connector(dev, connector) {
Dave Airlie0e32b392014-05-02 14:02:48 +100011655 if (connector->new_encoder)
11656 if (connector->new_encoder != connector->encoder)
11657 connector->encoder = connector->new_encoder;
11658 }
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011659 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011660 crtc->new_enabled = false;
11661
Damien Lespiaub2784e12014-08-05 11:29:37 +010011662 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011663 if (encoder->new_crtc == crtc) {
11664 crtc->new_enabled = true;
11665 break;
11666 }
11667 }
11668
Matt Roper83d65732015-02-25 13:12:16 -080011669 if (crtc->new_enabled != crtc->base.state->enable) {
Ander Conselvan de Oliveira10634182015-03-03 15:21:57 +020011670 DRM_DEBUG_KMS("[CRTC:%d] %sabled, full mode switch\n",
11671 crtc->base.base.id,
Ville Syrjälä76688512014-01-10 11:28:06 +020011672 crtc->new_enabled ? "en" : "dis");
11673 config->mode_changed = true;
11674 }
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011675
11676 if (crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011677 crtc->new_config = crtc->config;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011678 else
11679 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020011680 }
11681
Daniel Vetter2e431052012-07-04 22:42:15 +020011682 return 0;
11683}
11684
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011685static void disable_crtc_nofb(struct intel_crtc *crtc)
11686{
11687 struct drm_device *dev = crtc->base.dev;
11688 struct intel_encoder *encoder;
11689 struct intel_connector *connector;
11690
11691 DRM_DEBUG_KMS("Trying to restore without FB -> disabling pipe %c\n",
11692 pipe_name(crtc->pipe));
11693
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011694 for_each_intel_connector(dev, connector) {
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011695 if (connector->new_encoder &&
11696 connector->new_encoder->new_crtc == crtc)
11697 connector->new_encoder = NULL;
11698 }
11699
Damien Lespiaub2784e12014-08-05 11:29:37 +010011700 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011701 if (encoder->new_crtc == crtc)
11702 encoder->new_crtc = NULL;
11703 }
11704
11705 crtc->new_enabled = false;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011706 crtc->new_config = NULL;
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011707}
11708
Daniel Vetter2e431052012-07-04 22:42:15 +020011709static int intel_crtc_set_config(struct drm_mode_set *set)
11710{
11711 struct drm_device *dev;
Daniel Vetter2e431052012-07-04 22:42:15 +020011712 struct drm_mode_set save_set;
11713 struct intel_set_config *config;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011714 struct intel_crtc_state *pipe_config;
Jesse Barnes50f52752014-11-07 13:11:00 -080011715 unsigned modeset_pipes, prepare_pipes, disable_pipes;
Daniel Vetter2e431052012-07-04 22:42:15 +020011716 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +020011717
Daniel Vetter8d3e3752012-07-05 16:09:09 +020011718 BUG_ON(!set);
11719 BUG_ON(!set->crtc);
11720 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +020011721
Daniel Vetter7e53f3a2013-01-21 10:52:17 +010011722 /* Enforce sane interface api - has been abused by the fb helper. */
11723 BUG_ON(!set->mode && set->fb);
11724 BUG_ON(set->fb && set->num_connectors == 0);
Daniel Vetter431e50f2012-07-10 17:53:42 +020011725
Daniel Vetter2e431052012-07-04 22:42:15 +020011726 if (set->fb) {
11727 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
11728 set->crtc->base.id, set->fb->base.id,
11729 (int)set->num_connectors, set->x, set->y);
11730 } else {
11731 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +020011732 }
11733
11734 dev = set->crtc->dev;
11735
11736 ret = -ENOMEM;
11737 config = kzalloc(sizeof(*config), GFP_KERNEL);
11738 if (!config)
11739 goto out_config;
11740
11741 ret = intel_set_config_save_state(dev, config);
11742 if (ret)
11743 goto out_config;
11744
11745 save_set.crtc = set->crtc;
11746 save_set.mode = &set->crtc->mode;
11747 save_set.x = set->crtc->x;
11748 save_set.y = set->crtc->y;
Matt Roperf4510a22014-04-01 15:22:40 -070011749 save_set.fb = set->crtc->primary->fb;
Daniel Vetter2e431052012-07-04 22:42:15 +020011750
11751 /* Compute whether we need a full modeset, only an fb base update or no
11752 * change at all. In the future we might also check whether only the
11753 * mode changed, e.g. for LVDS where we only change the panel fitter in
11754 * such cases. */
11755 intel_set_config_compute_mode_changes(set, config);
11756
Daniel Vetter9a935852012-07-05 22:34:27 +020011757 ret = intel_modeset_stage_output_state(dev, set, config);
Daniel Vetter2e431052012-07-04 22:42:15 +020011758 if (ret)
11759 goto fail;
11760
Jesse Barnes50f52752014-11-07 13:11:00 -080011761 pipe_config = intel_modeset_compute_config(set->crtc, set->mode,
11762 set->fb,
11763 &modeset_pipes,
11764 &prepare_pipes,
11765 &disable_pipes);
Jesse Barnes20664592014-11-05 14:26:09 -080011766 if (IS_ERR(pipe_config)) {
Matt Roper6ac04832014-11-17 09:59:28 -080011767 ret = PTR_ERR(pipe_config);
Jesse Barnes50f52752014-11-07 13:11:00 -080011768 goto fail;
Jesse Barnes20664592014-11-05 14:26:09 -080011769 } else if (pipe_config) {
Ville Syrjäläb9950a12014-11-21 21:00:36 +020011770 if (pipe_config->has_audio !=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011771 to_intel_crtc(set->crtc)->config->has_audio)
Jesse Barnes20664592014-11-05 14:26:09 -080011772 config->mode_changed = true;
11773
Jesse Barnesaf15d2c2014-12-01 09:54:28 -080011774 /*
11775 * Note we have an issue here with infoframes: current code
11776 * only updates them on the full mode set path per hw
11777 * requirements. So here we should be checking for any
11778 * required changes and forcing a mode set.
11779 */
Jesse Barnes20664592014-11-05 14:26:09 -080011780 }
Jesse Barnes50f52752014-11-07 13:11:00 -080011781
11782 /* set_mode will free it in the mode_changed case */
11783 if (!config->mode_changed)
11784 kfree(pipe_config);
11785
Jesse Barnes1f9954d2014-11-05 14:26:10 -080011786 intel_update_pipe_size(to_intel_crtc(set->crtc));
11787
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011788 if (config->mode_changed) {
Jesse Barnes50f52752014-11-07 13:11:00 -080011789 ret = intel_set_mode_pipes(set->crtc, set->mode,
11790 set->x, set->y, set->fb, pipe_config,
11791 modeset_pipes, prepare_pipes,
11792 disable_pipes);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011793 } else if (config->fb_changed) {
Matt Roper3b150f02014-05-29 08:06:53 -070011794 struct intel_crtc *intel_crtc = to_intel_crtc(set->crtc);
Gustavo Padovan455a6802014-12-01 15:40:11 -080011795 struct drm_plane *primary = set->crtc->primary;
11796 int vdisplay, hdisplay;
Matt Roper3b150f02014-05-29 08:06:53 -070011797
Gustavo Padovan455a6802014-12-01 15:40:11 -080011798 drm_crtc_get_hv_timing(set->mode, &hdisplay, &vdisplay);
11799 ret = primary->funcs->update_plane(primary, set->crtc, set->fb,
11800 0, 0, hdisplay, vdisplay,
11801 set->x << 16, set->y << 16,
11802 hdisplay << 16, vdisplay << 16);
Matt Roper3b150f02014-05-29 08:06:53 -070011803
11804 /*
11805 * We need to make sure the primary plane is re-enabled if it
11806 * has previously been turned off.
11807 */
11808 if (!intel_crtc->primary_enabled && ret == 0) {
11809 WARN_ON(!intel_crtc->active);
Ville Syrjäläfdd508a2014-08-08 21:51:11 +030011810 intel_enable_primary_hw_plane(set->crtc->primary, set->crtc);
Matt Roper3b150f02014-05-29 08:06:53 -070011811 }
11812
Jesse Barnes7ca51a32014-01-07 13:50:49 -080011813 /*
11814 * In the fastboot case this may be our only check of the
11815 * state after boot. It would be better to only do it on
11816 * the first update, but we don't have a nice way of doing that
11817 * (and really, set_config isn't used much for high freq page
11818 * flipping, so increasing its cost here shouldn't be a big
11819 * deal).
11820 */
Jani Nikulad330a952014-01-21 11:24:25 +020011821 if (i915.fastboot && ret == 0)
Jesse Barnes7ca51a32014-01-07 13:50:49 -080011822 intel_modeset_check_state(set->crtc->dev);
Daniel Vetter50f56112012-07-02 09:35:43 +020011823 }
11824
Chris Wilson2d05eae2013-05-03 17:36:25 +010011825 if (ret) {
Daniel Vetterbf67dfe2013-06-25 11:06:52 +020011826 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
11827 set->crtc->base.id, ret);
Daniel Vetter50f56112012-07-02 09:35:43 +020011828fail:
Chris Wilson2d05eae2013-05-03 17:36:25 +010011829 intel_set_config_restore_state(dev, config);
Daniel Vetter50f56112012-07-02 09:35:43 +020011830
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011831 /*
11832 * HACK: if the pipe was on, but we didn't have a framebuffer,
11833 * force the pipe off to avoid oopsing in the modeset code
11834 * due to fb==NULL. This should only happen during boot since
11835 * we don't yet reconstruct the FB from the hardware state.
11836 */
11837 if (to_intel_crtc(save_set.crtc)->new_enabled && !save_set.fb)
11838 disable_crtc_nofb(to_intel_crtc(save_set.crtc));
11839
Chris Wilson2d05eae2013-05-03 17:36:25 +010011840 /* Try to restore the config */
11841 if (config->mode_changed &&
11842 intel_set_mode(save_set.crtc, save_set.mode,
11843 save_set.x, save_set.y, save_set.fb))
11844 DRM_ERROR("failed to restore config after modeset failure\n");
11845 }
Daniel Vetter50f56112012-07-02 09:35:43 +020011846
Daniel Vetterd9e55602012-07-04 22:16:09 +020011847out_config:
11848 intel_set_config_free(config);
Daniel Vetter50f56112012-07-02 09:35:43 +020011849 return ret;
11850}
11851
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011852static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011853 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +020011854 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011855 .destroy = intel_crtc_destroy,
11856 .page_flip = intel_crtc_page_flip,
Matt Roper13568372015-01-21 16:35:47 -080011857 .atomic_duplicate_state = intel_crtc_duplicate_state,
11858 .atomic_destroy_state = intel_crtc_destroy_state,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011859};
11860
Daniel Vetter53589012013-06-05 13:34:16 +020011861static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
11862 struct intel_shared_dpll *pll,
11863 struct intel_dpll_hw_state *hw_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011864{
Daniel Vetter53589012013-06-05 13:34:16 +020011865 uint32_t val;
11866
Daniel Vetterf458ebb2014-09-30 10:56:39 +020011867 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_PLLS))
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030011868 return false;
11869
Daniel Vetter53589012013-06-05 13:34:16 +020011870 val = I915_READ(PCH_DPLL(pll->id));
Daniel Vetter66e985c2013-06-05 13:34:20 +020011871 hw_state->dpll = val;
11872 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
11873 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
Daniel Vetter53589012013-06-05 13:34:16 +020011874
11875 return val & DPLL_VCO_ENABLE;
11876}
11877
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011878static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
11879 struct intel_shared_dpll *pll)
11880{
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011881 I915_WRITE(PCH_FP0(pll->id), pll->config.hw_state.fp0);
11882 I915_WRITE(PCH_FP1(pll->id), pll->config.hw_state.fp1);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011883}
11884
Daniel Vettere7b903d2013-06-05 13:34:14 +020011885static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
11886 struct intel_shared_dpll *pll)
11887{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011888 /* PCH refclock must be enabled first */
Paulo Zanoni89eff4b2014-01-08 11:12:28 -020011889 ibx_assert_pch_refclk_enabled(dev_priv);
Daniel Vettere7b903d2013-06-05 13:34:14 +020011890
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011891 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011892
11893 /* Wait for the clocks to stabilize. */
11894 POSTING_READ(PCH_DPLL(pll->id));
11895 udelay(150);
11896
11897 /* The pixel multiplier can only be updated once the
11898 * DPLL is enabled and the clocks are stable.
11899 *
11900 * So write it again.
11901 */
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011902 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011903 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020011904 udelay(200);
11905}
11906
11907static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
11908 struct intel_shared_dpll *pll)
11909{
11910 struct drm_device *dev = dev_priv->dev;
11911 struct intel_crtc *crtc;
Daniel Vettere7b903d2013-06-05 13:34:14 +020011912
11913 /* Make sure no transcoder isn't still depending on us. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011914 for_each_intel_crtc(dev, crtc) {
Daniel Vettere7b903d2013-06-05 13:34:14 +020011915 if (intel_crtc_to_shared_dpll(crtc) == pll)
11916 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
11917 }
11918
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011919 I915_WRITE(PCH_DPLL(pll->id), 0);
11920 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020011921 udelay(200);
11922}
11923
Daniel Vetter46edb022013-06-05 13:34:12 +020011924static char *ibx_pch_dpll_names[] = {
11925 "PCH DPLL A",
11926 "PCH DPLL B",
11927};
11928
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011929static void ibx_pch_dpll_init(struct drm_device *dev)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011930{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011931 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011932 int i;
11933
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011934 dev_priv->num_shared_dpll = 2;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011935
Daniel Vettere72f9fb2013-06-05 13:34:06 +020011936 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
Daniel Vetter46edb022013-06-05 13:34:12 +020011937 dev_priv->shared_dplls[i].id = i;
11938 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011939 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
Daniel Vettere7b903d2013-06-05 13:34:14 +020011940 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
11941 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
Daniel Vetter53589012013-06-05 13:34:16 +020011942 dev_priv->shared_dplls[i].get_hw_state =
11943 ibx_pch_dpll_get_hw_state;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011944 }
11945}
11946
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011947static void intel_shared_dpll_init(struct drm_device *dev)
11948{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011949 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011950
Daniel Vetter9cd86932014-06-25 22:01:57 +030011951 if (HAS_DDI(dev))
11952 intel_ddi_pll_init(dev);
11953 else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011954 ibx_pch_dpll_init(dev);
11955 else
11956 dev_priv->num_shared_dpll = 0;
11957
11958 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011959}
11960
Matt Roper6beb8c232014-12-01 15:40:14 -080011961/**
11962 * intel_prepare_plane_fb - Prepare fb for usage on plane
11963 * @plane: drm plane to prepare for
11964 * @fb: framebuffer to prepare for presentation
11965 *
11966 * Prepares a framebuffer for usage on a display plane. Generally this
11967 * involves pinning the underlying object and updating the frontbuffer tracking
11968 * bits. Some older platforms need special physical address handling for
11969 * cursor planes.
11970 *
11971 * Returns 0 on success, negative error code on failure.
11972 */
11973int
11974intel_prepare_plane_fb(struct drm_plane *plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +000011975 struct drm_framebuffer *fb,
11976 const struct drm_plane_state *new_state)
Matt Roper465c1202014-05-29 08:06:54 -070011977{
11978 struct drm_device *dev = plane->dev;
Matt Roper6beb8c232014-12-01 15:40:14 -080011979 struct intel_plane *intel_plane = to_intel_plane(plane);
11980 enum pipe pipe = intel_plane->pipe;
11981 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
11982 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->fb);
11983 unsigned frontbuffer_bits = 0;
11984 int ret = 0;
Matt Roper465c1202014-05-29 08:06:54 -070011985
Matt Roperea2c67b2014-12-23 10:41:52 -080011986 if (!obj)
Matt Roper465c1202014-05-29 08:06:54 -070011987 return 0;
11988
Matt Roper6beb8c232014-12-01 15:40:14 -080011989 switch (plane->type) {
11990 case DRM_PLANE_TYPE_PRIMARY:
11991 frontbuffer_bits = INTEL_FRONTBUFFER_PRIMARY(pipe);
11992 break;
11993 case DRM_PLANE_TYPE_CURSOR:
11994 frontbuffer_bits = INTEL_FRONTBUFFER_CURSOR(pipe);
11995 break;
11996 case DRM_PLANE_TYPE_OVERLAY:
11997 frontbuffer_bits = INTEL_FRONTBUFFER_SPRITE(pipe);
11998 break;
11999 }
Matt Roper465c1202014-05-29 08:06:54 -070012000
Matt Roper4c345742014-07-09 16:22:10 -070012001 mutex_lock(&dev->struct_mutex);
Matt Roper465c1202014-05-29 08:06:54 -070012002
Matt Roper6beb8c232014-12-01 15:40:14 -080012003 if (plane->type == DRM_PLANE_TYPE_CURSOR &&
12004 INTEL_INFO(dev)->cursor_needs_physical) {
12005 int align = IS_I830(dev) ? 16 * 1024 : 256;
12006 ret = i915_gem_object_attach_phys(obj, align);
12007 if (ret)
12008 DRM_DEBUG_KMS("failed to attach phys object\n");
12009 } else {
12010 ret = intel_pin_and_fence_fb_obj(plane, fb, NULL);
12011 }
12012
12013 if (ret == 0)
12014 i915_gem_track_fb(old_obj, obj, frontbuffer_bits);
12015
12016 mutex_unlock(&dev->struct_mutex);
12017
12018 return ret;
12019}
12020
Matt Roper38f3ce32014-12-02 07:45:25 -080012021/**
12022 * intel_cleanup_plane_fb - Cleans up an fb after plane use
12023 * @plane: drm plane to clean up for
12024 * @fb: old framebuffer that was on plane
12025 *
12026 * Cleans up a framebuffer that has just been removed from a plane.
12027 */
12028void
12029intel_cleanup_plane_fb(struct drm_plane *plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +000012030 struct drm_framebuffer *fb,
12031 const struct drm_plane_state *old_state)
Matt Roper38f3ce32014-12-02 07:45:25 -080012032{
12033 struct drm_device *dev = plane->dev;
12034 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
12035
12036 if (WARN_ON(!obj))
12037 return;
12038
12039 if (plane->type != DRM_PLANE_TYPE_CURSOR ||
12040 !INTEL_INFO(dev)->cursor_needs_physical) {
12041 mutex_lock(&dev->struct_mutex);
12042 intel_unpin_fb_obj(obj);
12043 mutex_unlock(&dev->struct_mutex);
12044 }
Matt Roper465c1202014-05-29 08:06:54 -070012045}
12046
12047static int
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012048intel_check_primary_plane(struct drm_plane *plane,
12049 struct intel_plane_state *state)
Matt Roper465c1202014-05-29 08:06:54 -070012050{
Matt Roper32b7eee2014-12-24 07:59:06 -080012051 struct drm_device *dev = plane->dev;
12052 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roper2b875c22014-12-01 15:40:13 -080012053 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080012054 struct intel_crtc *intel_crtc;
Matt Roper2b875c22014-12-01 15:40:13 -080012055 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012056 struct drm_rect *dest = &state->dst;
12057 struct drm_rect *src = &state->src;
12058 const struct drm_rect *clip = &state->clip;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012059 int ret;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012060
Matt Roperea2c67b2014-12-23 10:41:52 -080012061 crtc = crtc ? crtc : plane->crtc;
12062 intel_crtc = to_intel_crtc(crtc);
12063
Matt Roperc59cb172014-12-01 15:40:16 -080012064 ret = drm_plane_helper_check_update(plane, crtc, fb,
12065 src, dest, clip,
12066 DRM_PLANE_HELPER_NO_SCALING,
12067 DRM_PLANE_HELPER_NO_SCALING,
12068 false, true, &state->visible);
12069 if (ret)
12070 return ret;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012071
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012072 if (intel_crtc->active) {
Matt Roper32b7eee2014-12-24 07:59:06 -080012073 intel_crtc->atomic.wait_for_flips = true;
12074
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012075 /*
12076 * FBC does not work on some platforms for rotated
12077 * planes, so disable it when rotation is not 0 and
12078 * update it when rotation is set back to 0.
12079 *
12080 * FIXME: This is redundant with the fbc update done in
12081 * the primary plane enable function except that that
12082 * one is done too late. We eventually need to unify
12083 * this.
12084 */
12085 if (intel_crtc->primary_enabled &&
12086 INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev) &&
Paulo Zanonie35fef22015-02-09 14:46:29 -020012087 dev_priv->fbc.crtc == intel_crtc &&
Matt Roper8e7d6882015-01-21 16:35:41 -080012088 state->base.rotation != BIT(DRM_ROTATE_0)) {
Matt Roper32b7eee2014-12-24 07:59:06 -080012089 intel_crtc->atomic.disable_fbc = true;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012090 }
12091
12092 if (state->visible) {
Matt Roper32b7eee2014-12-24 07:59:06 -080012093 /*
12094 * BDW signals flip done immediately if the plane
12095 * is disabled, even if the plane enable is already
12096 * armed to occur at the next vblank :(
12097 */
12098 if (IS_BROADWELL(dev) && !intel_crtc->primary_enabled)
12099 intel_crtc->atomic.wait_vblank = true;
12100 }
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012101
Matt Roper32b7eee2014-12-24 07:59:06 -080012102 intel_crtc->atomic.fb_bits |=
12103 INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
12104
12105 intel_crtc->atomic.update_fbc = true;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +000012106
12107 /* Update watermarks on tiling changes. */
12108 if (!plane->state->fb || !state->base.fb ||
12109 plane->state->fb->modifier[0] !=
12110 state->base.fb->modifier[0])
12111 intel_crtc->atomic.update_wm = true;
Matt Roperc59cb172014-12-01 15:40:16 -080012112 }
12113
12114 return 0;
Matt Roper465c1202014-05-29 08:06:54 -070012115}
12116
Sonika Jindal48404c12014-08-22 14:06:04 +053012117static void
12118intel_commit_primary_plane(struct drm_plane *plane,
12119 struct intel_plane_state *state)
12120{
Matt Roper2b875c22014-12-01 15:40:13 -080012121 struct drm_crtc *crtc = state->base.crtc;
12122 struct drm_framebuffer *fb = state->base.fb;
12123 struct drm_device *dev = plane->dev;
Sonika Jindal48404c12014-08-22 14:06:04 +053012124 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperea2c67b2014-12-23 10:41:52 -080012125 struct intel_crtc *intel_crtc;
Sonika Jindal48404c12014-08-22 14:06:04 +053012126 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Sonika Jindalce54d852014-08-21 11:44:39 +053012127 struct intel_plane *intel_plane = to_intel_plane(plane);
12128 struct drm_rect *src = &state->src;
Matt Ropercf4c7c12014-12-04 10:27:42 -080012129
Matt Roperea2c67b2014-12-23 10:41:52 -080012130 crtc = crtc ? crtc : plane->crtc;
12131 intel_crtc = to_intel_crtc(crtc);
12132
Matt Ropercf4c7c12014-12-04 10:27:42 -080012133 plane->fb = fb;
Sonika Jindalce54d852014-08-21 11:44:39 +053012134 crtc->x = src->x1 >> 16;
Matt Roper465c1202014-05-29 08:06:54 -070012135 crtc->y = src->y1 >> 16;
12136
Sonika Jindalce54d852014-08-21 11:44:39 +053012137 intel_plane->obj = obj;
Matt Roper465c1202014-05-29 08:06:54 -070012138
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012139 if (intel_crtc->active) {
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012140 if (state->visible) {
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012141 /* FIXME: kill this fastboot hack */
12142 intel_update_pipe_size(intel_crtc);
12143
12144 intel_crtc->primary_enabled = true;
12145
12146 dev_priv->display.update_primary_plane(crtc, plane->fb,
12147 crtc->x, crtc->y);
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012148 } else {
12149 /*
12150 * If clipping results in a non-visible primary plane,
12151 * we'll disable the primary plane. Note that this is
12152 * a bit different than what happens if userspace
12153 * explicitly disables the plane by passing fb=0
12154 * because plane->fb still gets set and pinned.
12155 */
12156 intel_disable_primary_hw_plane(plane, crtc);
12157 }
Matt Roper32b7eee2014-12-24 07:59:06 -080012158 }
12159}
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012160
Matt Roper32b7eee2014-12-24 07:59:06 -080012161static void intel_begin_crtc_commit(struct drm_crtc *crtc)
12162{
12163 struct drm_device *dev = crtc->dev;
12164 struct drm_i915_private *dev_priv = dev->dev_private;
12165 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roperea2c67b2014-12-23 10:41:52 -080012166 struct intel_plane *intel_plane;
12167 struct drm_plane *p;
12168 unsigned fb_bits = 0;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012169
Matt Roperea2c67b2014-12-23 10:41:52 -080012170 /* Track fb's for any planes being disabled */
12171 list_for_each_entry(p, &dev->mode_config.plane_list, head) {
12172 intel_plane = to_intel_plane(p);
12173
12174 if (intel_crtc->atomic.disabled_planes &
12175 (1 << drm_plane_index(p))) {
12176 switch (p->type) {
12177 case DRM_PLANE_TYPE_PRIMARY:
12178 fb_bits = INTEL_FRONTBUFFER_PRIMARY(intel_plane->pipe);
12179 break;
12180 case DRM_PLANE_TYPE_CURSOR:
12181 fb_bits = INTEL_FRONTBUFFER_CURSOR(intel_plane->pipe);
12182 break;
12183 case DRM_PLANE_TYPE_OVERLAY:
12184 fb_bits = INTEL_FRONTBUFFER_SPRITE(intel_plane->pipe);
12185 break;
12186 }
12187
12188 mutex_lock(&dev->struct_mutex);
12189 i915_gem_track_fb(intel_fb_obj(p->fb), NULL, fb_bits);
12190 mutex_unlock(&dev->struct_mutex);
12191 }
12192 }
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012193
Matt Roper32b7eee2014-12-24 07:59:06 -080012194 if (intel_crtc->atomic.wait_for_flips)
12195 intel_crtc_wait_for_pending_flips(crtc);
12196
12197 if (intel_crtc->atomic.disable_fbc)
12198 intel_fbc_disable(dev);
12199
12200 if (intel_crtc->atomic.pre_disable_primary)
12201 intel_pre_disable_primary(crtc);
12202
12203 if (intel_crtc->atomic.update_wm)
12204 intel_update_watermarks(crtc);
12205
12206 intel_runtime_pm_get(dev_priv);
Matt Roperc34c9ee2014-12-23 10:41:50 -080012207
12208 /* Perform vblank evasion around commit operation */
12209 if (intel_crtc->active)
12210 intel_crtc->atomic.evade =
12211 intel_pipe_update_start(intel_crtc,
12212 &intel_crtc->atomic.start_vbl_count);
Matt Roper32b7eee2014-12-24 07:59:06 -080012213}
12214
12215static void intel_finish_crtc_commit(struct drm_crtc *crtc)
12216{
12217 struct drm_device *dev = crtc->dev;
12218 struct drm_i915_private *dev_priv = dev->dev_private;
12219 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12220 struct drm_plane *p;
12221
Matt Roperc34c9ee2014-12-23 10:41:50 -080012222 if (intel_crtc->atomic.evade)
12223 intel_pipe_update_end(intel_crtc,
12224 intel_crtc->atomic.start_vbl_count);
12225
Matt Roper32b7eee2014-12-24 07:59:06 -080012226 intel_runtime_pm_put(dev_priv);
12227
12228 if (intel_crtc->atomic.wait_vblank)
12229 intel_wait_for_vblank(dev, intel_crtc->pipe);
12230
12231 intel_frontbuffer_flip(dev, intel_crtc->atomic.fb_bits);
12232
12233 if (intel_crtc->atomic.update_fbc) {
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012234 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020012235 intel_fbc_update(dev);
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012236 mutex_unlock(&dev->struct_mutex);
12237 }
Matt Roper465c1202014-05-29 08:06:54 -070012238
Matt Roper32b7eee2014-12-24 07:59:06 -080012239 if (intel_crtc->atomic.post_enable_primary)
12240 intel_post_enable_primary(crtc);
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012241
Matt Roper32b7eee2014-12-24 07:59:06 -080012242 drm_for_each_legacy_plane(p, &dev->mode_config.plane_list)
12243 if (intel_crtc->atomic.update_sprite_watermarks & drm_plane_index(p))
12244 intel_update_sprite_watermarks(p, crtc, 0, 0, 0,
12245 false, false);
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012246
Matt Roper32b7eee2014-12-24 07:59:06 -080012247 memset(&intel_crtc->atomic, 0, sizeof(intel_crtc->atomic));
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012248}
12249
Matt Ropercf4c7c12014-12-04 10:27:42 -080012250/**
Matt Roper4a3b8762014-12-23 10:41:51 -080012251 * intel_plane_destroy - destroy a plane
12252 * @plane: plane to destroy
Matt Ropercf4c7c12014-12-04 10:27:42 -080012253 *
Matt Roper4a3b8762014-12-23 10:41:51 -080012254 * Common destruction function for all types of planes (primary, cursor,
12255 * sprite).
Matt Ropercf4c7c12014-12-04 10:27:42 -080012256 */
Matt Roper4a3b8762014-12-23 10:41:51 -080012257void intel_plane_destroy(struct drm_plane *plane)
Matt Roper465c1202014-05-29 08:06:54 -070012258{
12259 struct intel_plane *intel_plane = to_intel_plane(plane);
12260 drm_plane_cleanup(plane);
12261 kfree(intel_plane);
12262}
12263
Matt Roper65a3fea2015-01-21 16:35:42 -080012264const struct drm_plane_funcs intel_plane_funcs = {
Daniel Vetterff42e092015-03-02 16:35:20 +010012265 .update_plane = drm_plane_helper_update,
12266 .disable_plane = drm_plane_helper_disable,
Matt Roper3d7d6512014-06-10 08:28:13 -070012267 .destroy = intel_plane_destroy,
Matt Roperc196e1d2015-01-21 16:35:48 -080012268 .set_property = drm_atomic_helper_plane_set_property,
Matt Ropera98b3432015-01-21 16:35:43 -080012269 .atomic_get_property = intel_plane_atomic_get_property,
12270 .atomic_set_property = intel_plane_atomic_set_property,
Matt Roperea2c67b2014-12-23 10:41:52 -080012271 .atomic_duplicate_state = intel_plane_duplicate_state,
12272 .atomic_destroy_state = intel_plane_destroy_state,
12273
Matt Roper465c1202014-05-29 08:06:54 -070012274};
12275
12276static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
12277 int pipe)
12278{
12279 struct intel_plane *primary;
Matt Roper8e7d6882015-01-21 16:35:41 -080012280 struct intel_plane_state *state;
Matt Roper465c1202014-05-29 08:06:54 -070012281 const uint32_t *intel_primary_formats;
12282 int num_formats;
12283
12284 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
12285 if (primary == NULL)
12286 return NULL;
12287
Matt Roper8e7d6882015-01-21 16:35:41 -080012288 state = intel_create_plane_state(&primary->base);
12289 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080012290 kfree(primary);
12291 return NULL;
12292 }
Matt Roper8e7d6882015-01-21 16:35:41 -080012293 primary->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080012294
Matt Roper465c1202014-05-29 08:06:54 -070012295 primary->can_scale = false;
12296 primary->max_downscale = 1;
12297 primary->pipe = pipe;
12298 primary->plane = pipe;
Matt Roperc59cb172014-12-01 15:40:16 -080012299 primary->check_plane = intel_check_primary_plane;
12300 primary->commit_plane = intel_commit_primary_plane;
Matt Roper465c1202014-05-29 08:06:54 -070012301 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
12302 primary->plane = !pipe;
12303
12304 if (INTEL_INFO(dev)->gen <= 3) {
12305 intel_primary_formats = intel_primary_formats_gen2;
12306 num_formats = ARRAY_SIZE(intel_primary_formats_gen2);
12307 } else {
12308 intel_primary_formats = intel_primary_formats_gen4;
12309 num_formats = ARRAY_SIZE(intel_primary_formats_gen4);
12310 }
12311
12312 drm_universal_plane_init(dev, &primary->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080012313 &intel_plane_funcs,
Matt Roper465c1202014-05-29 08:06:54 -070012314 intel_primary_formats, num_formats,
12315 DRM_PLANE_TYPE_PRIMARY);
Sonika Jindal48404c12014-08-22 14:06:04 +053012316
12317 if (INTEL_INFO(dev)->gen >= 4) {
12318 if (!dev->mode_config.rotation_property)
12319 dev->mode_config.rotation_property =
12320 drm_mode_create_rotation_property(dev,
12321 BIT(DRM_ROTATE_0) |
12322 BIT(DRM_ROTATE_180));
12323 if (dev->mode_config.rotation_property)
12324 drm_object_attach_property(&primary->base.base,
12325 dev->mode_config.rotation_property,
Matt Roper8e7d6882015-01-21 16:35:41 -080012326 state->base.rotation);
Sonika Jindal48404c12014-08-22 14:06:04 +053012327 }
12328
Matt Roperea2c67b2014-12-23 10:41:52 -080012329 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
12330
Matt Roper465c1202014-05-29 08:06:54 -070012331 return &primary->base;
12332}
12333
Matt Roper3d7d6512014-06-10 08:28:13 -070012334static int
Gustavo Padovan852e7872014-09-05 17:22:31 -030012335intel_check_cursor_plane(struct drm_plane *plane,
12336 struct intel_plane_state *state)
Matt Roper3d7d6512014-06-10 08:28:13 -070012337{
Matt Roper2b875c22014-12-01 15:40:13 -080012338 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080012339 struct drm_device *dev = plane->dev;
Matt Roper2b875c22014-12-01 15:40:13 -080012340 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan852e7872014-09-05 17:22:31 -030012341 struct drm_rect *dest = &state->dst;
12342 struct drm_rect *src = &state->src;
12343 const struct drm_rect *clip = &state->clip;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012344 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Matt Roperea2c67b2014-12-23 10:41:52 -080012345 struct intel_crtc *intel_crtc;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012346 unsigned stride;
12347 int ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030012348
Matt Roperea2c67b2014-12-23 10:41:52 -080012349 crtc = crtc ? crtc : plane->crtc;
12350 intel_crtc = to_intel_crtc(crtc);
12351
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012352 ret = drm_plane_helper_check_update(plane, crtc, fb,
Gustavo Padovan852e7872014-09-05 17:22:31 -030012353 src, dest, clip,
12354 DRM_PLANE_HELPER_NO_SCALING,
12355 DRM_PLANE_HELPER_NO_SCALING,
12356 true, true, &state->visible);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012357 if (ret)
12358 return ret;
12359
12360
12361 /* if we want to turn off the cursor ignore width and height */
12362 if (!obj)
Matt Roper32b7eee2014-12-24 07:59:06 -080012363 goto finish;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012364
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012365 /* Check for which cursor types we support */
Matt Roperea2c67b2014-12-23 10:41:52 -080012366 if (!cursor_size_ok(dev, state->base.crtc_w, state->base.crtc_h)) {
12367 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
12368 state->base.crtc_w, state->base.crtc_h);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012369 return -EINVAL;
12370 }
12371
Matt Roperea2c67b2014-12-23 10:41:52 -080012372 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
12373 if (obj->base.size < stride * state->base.crtc_h) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012374 DRM_DEBUG_KMS("buffer is too small\n");
12375 return -ENOMEM;
12376 }
12377
Ville Syrjälä3a656b52015-03-09 21:08:37 +020012378 if (fb->modifier[0] != DRM_FORMAT_MOD_NONE) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012379 DRM_DEBUG_KMS("cursor cannot be tiled\n");
12380 ret = -EINVAL;
12381 }
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012382
Matt Roper32b7eee2014-12-24 07:59:06 -080012383finish:
12384 if (intel_crtc->active) {
Matt Roper3dd512f2015-02-27 10:12:00 -080012385 if (intel_crtc->base.cursor->state->crtc_w != state->base.crtc_w)
Matt Roper32b7eee2014-12-24 07:59:06 -080012386 intel_crtc->atomic.update_wm = true;
12387
12388 intel_crtc->atomic.fb_bits |=
12389 INTEL_FRONTBUFFER_CURSOR(intel_crtc->pipe);
12390 }
12391
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012392 return ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030012393}
12394
Matt Roperf4a2cf22014-12-01 15:40:12 -080012395static void
Gustavo Padovan852e7872014-09-05 17:22:31 -030012396intel_commit_cursor_plane(struct drm_plane *plane,
12397 struct intel_plane_state *state)
12398{
Matt Roper2b875c22014-12-01 15:40:13 -080012399 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080012400 struct drm_device *dev = plane->dev;
12401 struct intel_crtc *intel_crtc;
Sonika Jindala919db92014-10-23 07:41:33 -070012402 struct intel_plane *intel_plane = to_intel_plane(plane);
Matt Roper2b875c22014-12-01 15:40:13 -080012403 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
Gustavo Padovana912f122014-12-01 15:40:10 -080012404 uint32_t addr;
Matt Roper3d7d6512014-06-10 08:28:13 -070012405
Matt Roperea2c67b2014-12-23 10:41:52 -080012406 crtc = crtc ? crtc : plane->crtc;
12407 intel_crtc = to_intel_crtc(crtc);
Sonika Jindala919db92014-10-23 07:41:33 -070012408
Matt Roperea2c67b2014-12-23 10:41:52 -080012409 plane->fb = state->base.fb;
12410 crtc->cursor_x = state->base.crtc_x;
12411 crtc->cursor_y = state->base.crtc_y;
12412
Sonika Jindala919db92014-10-23 07:41:33 -070012413 intel_plane->obj = obj;
12414
Gustavo Padovana912f122014-12-01 15:40:10 -080012415 if (intel_crtc->cursor_bo == obj)
12416 goto update;
12417
Matt Roperf4a2cf22014-12-01 15:40:12 -080012418 if (!obj)
Gustavo Padovana912f122014-12-01 15:40:10 -080012419 addr = 0;
Matt Roperf4a2cf22014-12-01 15:40:12 -080012420 else if (!INTEL_INFO(dev)->cursor_needs_physical)
Gustavo Padovana912f122014-12-01 15:40:10 -080012421 addr = i915_gem_obj_ggtt_offset(obj);
Matt Roperf4a2cf22014-12-01 15:40:12 -080012422 else
Gustavo Padovana912f122014-12-01 15:40:10 -080012423 addr = obj->phys_handle->busaddr;
Gustavo Padovana912f122014-12-01 15:40:10 -080012424
Gustavo Padovana912f122014-12-01 15:40:10 -080012425 intel_crtc->cursor_addr = addr;
12426 intel_crtc->cursor_bo = obj;
12427update:
Gustavo Padovana912f122014-12-01 15:40:10 -080012428
Matt Roper32b7eee2014-12-24 07:59:06 -080012429 if (intel_crtc->active)
Gustavo Padovan852e7872014-09-05 17:22:31 -030012430 intel_crtc_update_cursor(crtc, state->visible);
Matt Roper3d7d6512014-06-10 08:28:13 -070012431}
Gustavo Padovan852e7872014-09-05 17:22:31 -030012432
Matt Roper3d7d6512014-06-10 08:28:13 -070012433static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
12434 int pipe)
12435{
12436 struct intel_plane *cursor;
Matt Roper8e7d6882015-01-21 16:35:41 -080012437 struct intel_plane_state *state;
Matt Roper3d7d6512014-06-10 08:28:13 -070012438
12439 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
12440 if (cursor == NULL)
12441 return NULL;
12442
Matt Roper8e7d6882015-01-21 16:35:41 -080012443 state = intel_create_plane_state(&cursor->base);
12444 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080012445 kfree(cursor);
12446 return NULL;
12447 }
Matt Roper8e7d6882015-01-21 16:35:41 -080012448 cursor->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080012449
Matt Roper3d7d6512014-06-10 08:28:13 -070012450 cursor->can_scale = false;
12451 cursor->max_downscale = 1;
12452 cursor->pipe = pipe;
12453 cursor->plane = pipe;
Matt Roperc59cb172014-12-01 15:40:16 -080012454 cursor->check_plane = intel_check_cursor_plane;
12455 cursor->commit_plane = intel_commit_cursor_plane;
Matt Roper3d7d6512014-06-10 08:28:13 -070012456
12457 drm_universal_plane_init(dev, &cursor->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080012458 &intel_plane_funcs,
Matt Roper3d7d6512014-06-10 08:28:13 -070012459 intel_cursor_formats,
12460 ARRAY_SIZE(intel_cursor_formats),
12461 DRM_PLANE_TYPE_CURSOR);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070012462
12463 if (INTEL_INFO(dev)->gen >= 4) {
12464 if (!dev->mode_config.rotation_property)
12465 dev->mode_config.rotation_property =
12466 drm_mode_create_rotation_property(dev,
12467 BIT(DRM_ROTATE_0) |
12468 BIT(DRM_ROTATE_180));
12469 if (dev->mode_config.rotation_property)
12470 drm_object_attach_property(&cursor->base.base,
12471 dev->mode_config.rotation_property,
Matt Roper8e7d6882015-01-21 16:35:41 -080012472 state->base.rotation);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070012473 }
12474
Matt Roperea2c67b2014-12-23 10:41:52 -080012475 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
12476
Matt Roper3d7d6512014-06-10 08:28:13 -070012477 return &cursor->base;
12478}
12479
Hannes Ederb358d0a2008-12-18 21:18:47 +010012480static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -080012481{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012482 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080012483 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020012484 struct intel_crtc_state *crtc_state = NULL;
Matt Roper3d7d6512014-06-10 08:28:13 -070012485 struct drm_plane *primary = NULL;
12486 struct drm_plane *cursor = NULL;
Matt Roper465c1202014-05-29 08:06:54 -070012487 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080012488
Daniel Vetter955382f2013-09-19 14:05:45 +020012489 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -080012490 if (intel_crtc == NULL)
12491 return;
12492
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020012493 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
12494 if (!crtc_state)
12495 goto fail;
12496 intel_crtc_set_state(intel_crtc, crtc_state);
Matt Roper07878242015-02-25 11:43:26 -080012497 crtc_state->base.crtc = &intel_crtc->base;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020012498
Matt Roper465c1202014-05-29 08:06:54 -070012499 primary = intel_primary_plane_create(dev, pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070012500 if (!primary)
12501 goto fail;
12502
12503 cursor = intel_cursor_plane_create(dev, pipe);
12504 if (!cursor)
12505 goto fail;
12506
Matt Roper465c1202014-05-29 08:06:54 -070012507 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
Matt Roper3d7d6512014-06-10 08:28:13 -070012508 cursor, &intel_crtc_funcs);
12509 if (ret)
12510 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080012511
12512 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -080012513 for (i = 0; i < 256; i++) {
12514 intel_crtc->lut_r[i] = i;
12515 intel_crtc->lut_g[i] = i;
12516 intel_crtc->lut_b[i] = i;
12517 }
12518
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020012519 /*
12520 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
Daniel Vetter8c0f92e2014-06-16 02:08:26 +020012521 * is hooked to pipe B. Hence we want plane A feeding pipe B.
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020012522 */
Jesse Barnes80824002009-09-10 15:28:06 -070012523 intel_crtc->pipe = pipe;
12524 intel_crtc->plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +010012525 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
Zhao Yakui28c97732009-10-09 11:39:41 +080012526 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +010012527 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -070012528 }
12529
Chris Wilson4b0e3332014-05-30 16:35:26 +030012530 intel_crtc->cursor_base = ~0;
12531 intel_crtc->cursor_cntl = ~0;
Ville Syrjälädc41c152014-08-13 11:57:05 +030012532 intel_crtc->cursor_size = ~0;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030012533
Jesse Barnes22fd0fa2009-12-02 13:42:53 -080012534 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
12535 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
12536 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
12537 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
12538
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020012539 INIT_WORK(&intel_crtc->mmio_flip.work, intel_mmio_flip_work_func);
12540
Jesse Barnes79e53942008-11-07 14:24:08 -080012541 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Daniel Vetter87b6b102014-05-15 15:33:46 +020012542
12543 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070012544 return;
12545
12546fail:
12547 if (primary)
12548 drm_plane_cleanup(primary);
12549 if (cursor)
12550 drm_plane_cleanup(cursor);
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020012551 kfree(crtc_state);
Matt Roper3d7d6512014-06-10 08:28:13 -070012552 kfree(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -080012553}
12554
Jesse Barnes752aa882013-10-31 18:55:49 +020012555enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
12556{
12557 struct drm_encoder *encoder = connector->base.encoder;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020012558 struct drm_device *dev = connector->base.dev;
Jesse Barnes752aa882013-10-31 18:55:49 +020012559
Rob Clark51fd3712013-11-19 12:10:12 -050012560 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Jesse Barnes752aa882013-10-31 18:55:49 +020012561
Ville Syrjäläd3babd32014-11-07 11:16:01 +020012562 if (!encoder || WARN_ON(!encoder->crtc))
Jesse Barnes752aa882013-10-31 18:55:49 +020012563 return INVALID_PIPE;
12564
12565 return to_intel_crtc(encoder->crtc)->pipe;
12566}
12567
Carl Worth08d7b3d2009-04-29 14:43:54 -070012568int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +000012569 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -070012570{
Carl Worth08d7b3d2009-04-29 14:43:54 -070012571 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Rob Clark7707e652014-07-17 23:30:04 -040012572 struct drm_crtc *drmmode_crtc;
Daniel Vetterc05422d2009-08-11 16:05:30 +020012573 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012574
Rob Clark7707e652014-07-17 23:30:04 -040012575 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
Carl Worth08d7b3d2009-04-29 14:43:54 -070012576
Rob Clark7707e652014-07-17 23:30:04 -040012577 if (!drmmode_crtc) {
Carl Worth08d7b3d2009-04-29 14:43:54 -070012578 DRM_ERROR("no such CRTC id\n");
Ville Syrjälä3f2c2052013-10-17 13:35:03 +030012579 return -ENOENT;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012580 }
12581
Rob Clark7707e652014-07-17 23:30:04 -040012582 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetterc05422d2009-08-11 16:05:30 +020012583 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012584
Daniel Vetterc05422d2009-08-11 16:05:30 +020012585 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012586}
12587
Daniel Vetter66a92782012-07-12 20:08:18 +020012588static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080012589{
Daniel Vetter66a92782012-07-12 20:08:18 +020012590 struct drm_device *dev = encoder->base.dev;
12591 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080012592 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080012593 int entry = 0;
12594
Damien Lespiaub2784e12014-08-05 11:29:37 +010012595 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020012596 if (encoders_cloneable(encoder, source_encoder))
Daniel Vetter66a92782012-07-12 20:08:18 +020012597 index_mask |= (1 << entry);
12598
Jesse Barnes79e53942008-11-07 14:24:08 -080012599 entry++;
12600 }
Chris Wilson4ef69c72010-09-09 15:14:28 +010012601
Jesse Barnes79e53942008-11-07 14:24:08 -080012602 return index_mask;
12603}
12604
Chris Wilson4d302442010-12-14 19:21:29 +000012605static bool has_edp_a(struct drm_device *dev)
12606{
12607 struct drm_i915_private *dev_priv = dev->dev_private;
12608
12609 if (!IS_MOBILE(dev))
12610 return false;
12611
12612 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
12613 return false;
12614
Damien Lespiaue3589902014-02-07 19:12:50 +000012615 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
Chris Wilson4d302442010-12-14 19:21:29 +000012616 return false;
12617
12618 return true;
12619}
12620
Jesse Barnes84b4e042014-06-25 08:24:29 -070012621static bool intel_crt_present(struct drm_device *dev)
12622{
12623 struct drm_i915_private *dev_priv = dev->dev_private;
12624
Damien Lespiau884497e2013-12-03 13:56:23 +000012625 if (INTEL_INFO(dev)->gen >= 9)
12626 return false;
12627
Damien Lespiaucf404ce2014-10-01 20:04:15 +010012628 if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
Jesse Barnes84b4e042014-06-25 08:24:29 -070012629 return false;
12630
12631 if (IS_CHERRYVIEW(dev))
12632 return false;
12633
12634 if (IS_VALLEYVIEW(dev) && !dev_priv->vbt.int_crt_support)
12635 return false;
12636
12637 return true;
12638}
12639
Jesse Barnes79e53942008-11-07 14:24:08 -080012640static void intel_setup_outputs(struct drm_device *dev)
12641{
Eric Anholt725e30a2009-01-22 13:01:02 -080012642 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +010012643 struct intel_encoder *encoder;
Matt Roperc6f95f22015-01-22 16:50:32 -080012644 struct drm_connector *connector;
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012645 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -080012646
Daniel Vetterc9093352013-06-06 22:22:47 +020012647 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080012648
Jesse Barnes84b4e042014-06-25 08:24:29 -070012649 if (intel_crt_present(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -020012650 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012651
Paulo Zanoniaffa9352012-11-23 15:30:39 -020012652 if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030012653 int found;
12654
Jesse Barnesde31fac2015-03-06 15:53:32 -080012655 /*
12656 * Haswell uses DDI functions to detect digital outputs.
12657 * On SKL pre-D0 the strap isn't connected, so we assume
12658 * it's there.
12659 */
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030012660 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
Jesse Barnesde31fac2015-03-06 15:53:32 -080012661 /* WaIgnoreDDIAStrap: skl */
12662 if (found ||
12663 (IS_SKYLAKE(dev) && INTEL_REVID(dev) < SKL_REVID_D0))
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030012664 intel_ddi_init(dev, PORT_A);
12665
12666 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
12667 * register */
12668 found = I915_READ(SFUSE_STRAP);
12669
12670 if (found & SFUSE_STRAP_DDIB_DETECTED)
12671 intel_ddi_init(dev, PORT_B);
12672 if (found & SFUSE_STRAP_DDIC_DETECTED)
12673 intel_ddi_init(dev, PORT_C);
12674 if (found & SFUSE_STRAP_DDID_DETECTED)
12675 intel_ddi_init(dev, PORT_D);
12676 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012677 int found;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020012678 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
Daniel Vetter270b3042012-10-27 15:52:05 +020012679
12680 if (has_edp_a(dev))
12681 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012682
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012683 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +080012684 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +010012685 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012686 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012687 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012688 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012689 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012690 }
12691
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012692 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012693 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012694
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012695 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012696 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012697
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012698 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012699 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012700
Daniel Vetter270b3042012-10-27 15:52:05 +020012701 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012702 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -070012703 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012704 /*
12705 * The DP_DETECTED bit is the latched state of the DDC
12706 * SDA pin at boot. However since eDP doesn't require DDC
12707 * (no way to plug in a DP->HDMI dongle) the DDC pins for
12708 * eDP ports may have been muxed to an alternate function.
12709 * Thus we can't rely on the DP_DETECTED bit alone to detect
12710 * eDP ports. Consult the VBT as well as DP_DETECTED to
12711 * detect eDP ports.
12712 */
Ville Syrjäläd2182a62015-01-09 14:21:14 +020012713 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED &&
12714 !intel_dp_is_edp(dev, PORT_B))
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030012715 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
12716 PORT_B);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012717 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED ||
12718 intel_dp_is_edp(dev, PORT_B))
12719 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030012720
Ville Syrjäläd2182a62015-01-09 14:21:14 +020012721 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED &&
12722 !intel_dp_is_edp(dev, PORT_C))
Jesse Barnes6f6005a2013-08-09 09:34:35 -070012723 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
12724 PORT_C);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012725 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED ||
12726 intel_dp_is_edp(dev, PORT_C))
12727 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
Gajanan Bhat19c03922012-09-27 19:13:07 +053012728
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030012729 if (IS_CHERRYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012730 if (I915_READ(VLV_DISPLAY_BASE + CHV_HDMID) & SDVO_DETECTED)
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030012731 intel_hdmi_init(dev, VLV_DISPLAY_BASE + CHV_HDMID,
12732 PORT_D);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012733 /* eDP not supported on port D, so don't check VBT */
12734 if (I915_READ(VLV_DISPLAY_BASE + DP_D) & DP_DETECTED)
12735 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_D, PORT_D);
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030012736 }
12737
Jani Nikula3cfca972013-08-27 15:12:26 +030012738 intel_dsi_init(dev);
Zhenyu Wang103a1962009-11-27 11:44:36 +080012739 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +080012740 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -080012741
Paulo Zanonie2debe92013-02-18 19:00:27 -030012742 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012743 DRM_DEBUG_KMS("probing SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012744 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012745 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
12746 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012747 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012748 }
Ma Ling27185ae2009-08-24 13:50:23 +080012749
Imre Deake7281ea2013-05-08 13:14:08 +030012750 if (!found && SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012751 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -080012752 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -040012753
12754 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -040012755
Paulo Zanonie2debe92013-02-18 19:00:27 -030012756 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012757 DRM_DEBUG_KMS("probing SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012758 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012759 }
Ma Ling27185ae2009-08-24 13:50:23 +080012760
Paulo Zanonie2debe92013-02-18 19:00:27 -030012761 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +080012762
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012763 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
12764 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012765 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012766 }
Imre Deake7281ea2013-05-08 13:14:08 +030012767 if (SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012768 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -080012769 }
Ma Ling27185ae2009-08-24 13:50:23 +080012770
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012771 if (SUPPORTS_INTEGRATED_DP(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +030012772 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012773 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -070012774 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080012775 intel_dvo_init(dev);
12776
Zhenyu Wang103a1962009-11-27 11:44:36 +080012777 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080012778 intel_tv_init(dev);
12779
Matt Roperc6f95f22015-01-22 16:50:32 -080012780 /*
12781 * FIXME: We don't have full atomic support yet, but we want to be
12782 * able to enable/test plane updates via the atomic interface in the
12783 * meantime. However as soon as we flip DRIVER_ATOMIC on, the DRM core
12784 * will take some atomic codepaths to lookup properties during
12785 * drmModeGetConnector() that unconditionally dereference
12786 * connector->state.
12787 *
12788 * We create a dummy connector state here for each connector to ensure
12789 * the DRM core doesn't try to dereference a NULL connector->state.
12790 * The actual connector properties will never be updated or contain
12791 * useful information, but since we're doing this specifically for
12792 * testing/debug of the plane operations (and only when a specific
12793 * kernel module option is given), that shouldn't really matter.
12794 *
12795 * Once atomic support for crtc's + connectors lands, this loop should
12796 * be removed since we'll be setting up real connector state, which
12797 * will contain Intel-specific properties.
12798 */
12799 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
12800 list_for_each_entry(connector,
12801 &dev->mode_config.connector_list,
12802 head) {
12803 if (!WARN_ON(connector->state)) {
12804 connector->state =
12805 kzalloc(sizeof(*connector->state),
12806 GFP_KERNEL);
12807 }
12808 }
12809 }
12810
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -080012811 intel_psr_init(dev);
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -070012812
Damien Lespiaub2784e12014-08-05 11:29:37 +010012813 for_each_intel_encoder(dev, encoder) {
Chris Wilson4ef69c72010-09-09 15:14:28 +010012814 encoder->base.possible_crtcs = encoder->crtc_mask;
12815 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +020012816 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -080012817 }
Chris Wilson47356eb2011-01-11 17:06:04 +000012818
Paulo Zanonidde86e22012-12-01 12:04:25 -020012819 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +020012820
12821 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080012822}
12823
12824static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
12825{
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012826 struct drm_device *dev = fb->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -080012827 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -080012828
Daniel Vetteref2d6332014-02-10 18:00:38 +010012829 drm_framebuffer_cleanup(fb);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012830 mutex_lock(&dev->struct_mutex);
Daniel Vetteref2d6332014-02-10 18:00:38 +010012831 WARN_ON(!intel_fb->obj->framebuffer_references--);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012832 drm_gem_object_unreference(&intel_fb->obj->base);
12833 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080012834 kfree(intel_fb);
12835}
12836
12837static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +000012838 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -080012839 unsigned int *handle)
12840{
12841 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +000012842 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080012843
Chris Wilson05394f32010-11-08 19:18:58 +000012844 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -080012845}
12846
12847static const struct drm_framebuffer_funcs intel_fb_funcs = {
12848 .destroy = intel_user_framebuffer_destroy,
12849 .create_handle = intel_user_framebuffer_create_handle,
12850};
12851
Damien Lespiaub3218032015-02-27 11:15:18 +000012852static
12853u32 intel_fb_pitch_limit(struct drm_device *dev, uint64_t fb_modifier,
12854 uint32_t pixel_format)
12855{
12856 u32 gen = INTEL_INFO(dev)->gen;
12857
12858 if (gen >= 9) {
12859 /* "The stride in bytes must not exceed the of the size of 8K
12860 * pixels and 32K bytes."
12861 */
12862 return min(8192*drm_format_plane_cpp(pixel_format, 0), 32768);
12863 } else if (gen >= 5 && !IS_VALLEYVIEW(dev)) {
12864 return 32*1024;
12865 } else if (gen >= 4) {
12866 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
12867 return 16*1024;
12868 else
12869 return 32*1024;
12870 } else if (gen >= 3) {
12871 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
12872 return 8*1024;
12873 else
12874 return 16*1024;
12875 } else {
12876 /* XXX DSPC is limited to 4k tiled */
12877 return 8*1024;
12878 }
12879}
12880
Daniel Vetterb5ea6422014-03-02 21:18:00 +010012881static int intel_framebuffer_init(struct drm_device *dev,
12882 struct intel_framebuffer *intel_fb,
12883 struct drm_mode_fb_cmd2 *mode_cmd,
12884 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -080012885{
Jesse Barnesa57ce0b2014-02-07 12:10:35 -080012886 int aligned_height;
Jesse Barnes79e53942008-11-07 14:24:08 -080012887 int ret;
Damien Lespiaub3218032015-02-27 11:15:18 +000012888 u32 pitch_limit, stride_alignment;
Jesse Barnes79e53942008-11-07 14:24:08 -080012889
Daniel Vetterdd4916c2013-10-09 21:23:51 +020012890 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
12891
Daniel Vetter2a80ead2015-02-10 17:16:06 +000012892 if (mode_cmd->flags & DRM_MODE_FB_MODIFIERS) {
12893 /* Enforce that fb modifier and tiling mode match, but only for
12894 * X-tiled. This is needed for FBC. */
12895 if (!!(obj->tiling_mode == I915_TILING_X) !=
12896 !!(mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED)) {
12897 DRM_DEBUG("tiling_mode doesn't match fb modifier\n");
12898 return -EINVAL;
12899 }
12900 } else {
12901 if (obj->tiling_mode == I915_TILING_X)
12902 mode_cmd->modifier[0] = I915_FORMAT_MOD_X_TILED;
12903 else if (obj->tiling_mode == I915_TILING_Y) {
12904 DRM_DEBUG("No Y tiling for legacy addfb\n");
12905 return -EINVAL;
12906 }
12907 }
12908
Tvrtko Ursulin9a8f0a12015-02-27 11:15:24 +000012909 /* Passed in modifier sanity checking. */
12910 switch (mode_cmd->modifier[0]) {
12911 case I915_FORMAT_MOD_Y_TILED:
12912 case I915_FORMAT_MOD_Yf_TILED:
12913 if (INTEL_INFO(dev)->gen < 9) {
12914 DRM_DEBUG("Unsupported tiling 0x%llx!\n",
12915 mode_cmd->modifier[0]);
12916 return -EINVAL;
12917 }
12918 case DRM_FORMAT_MOD_NONE:
12919 case I915_FORMAT_MOD_X_TILED:
12920 break;
12921 default:
12922 DRM_ERROR("Unsupported fb modifier 0x%llx!\n",
12923 mode_cmd->modifier[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +010012924 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012925 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012926
Damien Lespiaub3218032015-02-27 11:15:18 +000012927 stride_alignment = intel_fb_stride_alignment(dev, mode_cmd->modifier[0],
12928 mode_cmd->pixel_format);
12929 if (mode_cmd->pitches[0] & (stride_alignment - 1)) {
12930 DRM_DEBUG("pitch (%d) must be at least %u byte aligned\n",
12931 mode_cmd->pitches[0], stride_alignment);
Chris Wilson57cd6502010-08-08 12:34:44 +010012932 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012933 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012934
Damien Lespiaub3218032015-02-27 11:15:18 +000012935 pitch_limit = intel_fb_pitch_limit(dev, mode_cmd->modifier[0],
12936 mode_cmd->pixel_format);
Chris Wilsona35cdaa2013-06-25 17:26:45 +010012937 if (mode_cmd->pitches[0] > pitch_limit) {
Damien Lespiaub3218032015-02-27 11:15:18 +000012938 DRM_DEBUG("%s pitch (%u) must be at less than %d\n",
12939 mode_cmd->modifier[0] != DRM_FORMAT_MOD_NONE ?
Daniel Vetter2a80ead2015-02-10 17:16:06 +000012940 "tiled" : "linear",
Chris Wilsona35cdaa2013-06-25 17:26:45 +010012941 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012942 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012943 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012944
Daniel Vetter2a80ead2015-02-10 17:16:06 +000012945 if (mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012946 mode_cmd->pitches[0] != obj->stride) {
12947 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
12948 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012949 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012950 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012951
Ville Syrjälä57779d02012-10-31 17:50:14 +020012952 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080012953 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020012954 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020012955 case DRM_FORMAT_RGB565:
12956 case DRM_FORMAT_XRGB8888:
12957 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020012958 break;
12959 case DRM_FORMAT_XRGB1555:
12960 case DRM_FORMAT_ARGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012961 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012962 DRM_DEBUG("unsupported pixel format: %s\n",
12963 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012964 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012965 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020012966 break;
12967 case DRM_FORMAT_XBGR8888:
12968 case DRM_FORMAT_ABGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020012969 case DRM_FORMAT_XRGB2101010:
12970 case DRM_FORMAT_ARGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020012971 case DRM_FORMAT_XBGR2101010:
12972 case DRM_FORMAT_ABGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012973 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012974 DRM_DEBUG("unsupported pixel format: %s\n",
12975 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012976 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012977 }
Jesse Barnesb5626742011-06-24 12:19:27 -070012978 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020012979 case DRM_FORMAT_YUYV:
12980 case DRM_FORMAT_UYVY:
12981 case DRM_FORMAT_YVYU:
12982 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012983 if (INTEL_INFO(dev)->gen < 5) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012984 DRM_DEBUG("unsupported pixel format: %s\n",
12985 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012986 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012987 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012988 break;
12989 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012990 DRM_DEBUG("unsupported pixel format: %s\n",
12991 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010012992 return -EINVAL;
12993 }
12994
Ville Syrjälä90f9a332012-10-31 17:50:19 +020012995 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
12996 if (mode_cmd->offsets[0] != 0)
12997 return -EINVAL;
12998
Damien Lespiauec2c9812015-01-20 12:51:45 +000012999 aligned_height = intel_fb_align_height(dev, mode_cmd->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +000013000 mode_cmd->pixel_format,
13001 mode_cmd->modifier[0]);
Daniel Vetter53155c02013-10-09 21:55:33 +020013002 /* FIXME drm helper for size checks (especially planar formats)? */
13003 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
13004 return -EINVAL;
13005
Daniel Vetterc7d73f62012-12-13 23:38:38 +010013006 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
13007 intel_fb->obj = obj;
Daniel Vetter80075d42013-10-09 21:23:52 +020013008 intel_fb->obj->framebuffer_references++;
Daniel Vetterc7d73f62012-12-13 23:38:38 +010013009
Jesse Barnes79e53942008-11-07 14:24:08 -080013010 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
13011 if (ret) {
13012 DRM_ERROR("framebuffer init failed %d\n", ret);
13013 return ret;
13014 }
13015
Jesse Barnes79e53942008-11-07 14:24:08 -080013016 return 0;
13017}
13018
Jesse Barnes79e53942008-11-07 14:24:08 -080013019static struct drm_framebuffer *
13020intel_user_framebuffer_create(struct drm_device *dev,
13021 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -080013022 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080013023{
Chris Wilson05394f32010-11-08 19:18:58 +000013024 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080013025
Jesse Barnes308e5bc2011-11-14 14:51:28 -080013026 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
13027 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +000013028 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010013029 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080013030
Chris Wilsond2dff872011-04-19 08:36:26 +010013031 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -080013032}
13033
Daniel Vetter4520f532013-10-09 09:18:51 +020013034#ifndef CONFIG_DRM_I915_FBDEV
Daniel Vetter0632fef2013-10-08 17:44:49 +020013035static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
Daniel Vetter4520f532013-10-09 09:18:51 +020013036{
13037}
13038#endif
13039
Jesse Barnes79e53942008-11-07 14:24:08 -080013040static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080013041 .fb_create = intel_user_framebuffer_create,
Daniel Vetter0632fef2013-10-08 17:44:49 +020013042 .output_poll_changed = intel_fbdev_output_poll_changed,
Matt Roper5ee67f12015-01-21 16:35:44 -080013043 .atomic_check = intel_atomic_check,
13044 .atomic_commit = intel_atomic_commit,
Jesse Barnes79e53942008-11-07 14:24:08 -080013045};
13046
Jesse Barnese70236a2009-09-21 10:42:27 -070013047/* Set up chip specific display functions */
13048static void intel_init_display(struct drm_device *dev)
13049{
13050 struct drm_i915_private *dev_priv = dev->dev_private;
13051
Daniel Vetteree9300b2013-06-03 22:40:22 +020013052 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
13053 dev_priv->display.find_dpll = g4x_find_best_dpll;
Chon Ming Leeef9348c2014-04-09 13:28:18 +030013054 else if (IS_CHERRYVIEW(dev))
13055 dev_priv->display.find_dpll = chv_find_best_dpll;
Daniel Vetteree9300b2013-06-03 22:40:22 +020013056 else if (IS_VALLEYVIEW(dev))
13057 dev_priv->display.find_dpll = vlv_find_best_dpll;
13058 else if (IS_PINEVIEW(dev))
13059 dev_priv->display.find_dpll = pnv_find_best_dpll;
13060 else
13061 dev_priv->display.find_dpll = i9xx_find_best_dpll;
13062
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000013063 if (INTEL_INFO(dev)->gen >= 9) {
13064 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000013065 dev_priv->display.get_initial_plane_config =
13066 skylake_get_initial_plane_config;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000013067 dev_priv->display.crtc_compute_clock =
13068 haswell_crtc_compute_clock;
13069 dev_priv->display.crtc_enable = haswell_crtc_enable;
13070 dev_priv->display.crtc_disable = haswell_crtc_disable;
13071 dev_priv->display.off = ironlake_crtc_off;
13072 dev_priv->display.update_primary_plane =
13073 skylake_update_primary_plane;
13074 } else if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010013075 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000013076 dev_priv->display.get_initial_plane_config =
13077 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira797d0252014-10-29 11:32:34 +020013078 dev_priv->display.crtc_compute_clock =
13079 haswell_crtc_compute_clock;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020013080 dev_priv->display.crtc_enable = haswell_crtc_enable;
13081 dev_priv->display.crtc_disable = haswell_crtc_disable;
Daniel Vetterdf8ad702014-06-25 22:02:03 +030013082 dev_priv->display.off = ironlake_crtc_off;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000013083 dev_priv->display.update_primary_plane =
13084 ironlake_update_primary_plane;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030013085 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010013086 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000013087 dev_priv->display.get_initial_plane_config =
13088 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +020013089 dev_priv->display.crtc_compute_clock =
13090 ironlake_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020013091 dev_priv->display.crtc_enable = ironlake_crtc_enable;
13092 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013093 dev_priv->display.off = ironlake_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070013094 dev_priv->display.update_primary_plane =
13095 ironlake_update_primary_plane;
Jesse Barnes89b667f2013-04-18 14:51:36 -070013096 } else if (IS_VALLEYVIEW(dev)) {
13097 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000013098 dev_priv->display.get_initial_plane_config =
13099 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020013100 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Jesse Barnes89b667f2013-04-18 14:51:36 -070013101 dev_priv->display.crtc_enable = valleyview_crtc_enable;
13102 dev_priv->display.crtc_disable = i9xx_crtc_disable;
13103 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070013104 dev_priv->display.update_primary_plane =
13105 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070013106 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010013107 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000013108 dev_priv->display.get_initial_plane_config =
13109 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020013110 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020013111 dev_priv->display.crtc_enable = i9xx_crtc_enable;
13112 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013113 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070013114 dev_priv->display.update_primary_plane =
13115 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070013116 }
Jesse Barnese70236a2009-09-21 10:42:27 -070013117
Jesse Barnese70236a2009-09-21 10:42:27 -070013118 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070013119 if (IS_VALLEYVIEW(dev))
13120 dev_priv->display.get_display_clock_speed =
13121 valleyview_get_display_clock_speed;
13122 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -070013123 dev_priv->display.get_display_clock_speed =
13124 i945_get_display_clock_speed;
13125 else if (IS_I915G(dev))
13126 dev_priv->display.get_display_clock_speed =
13127 i915_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020013128 else if (IS_I945GM(dev) || IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070013129 dev_priv->display.get_display_clock_speed =
13130 i9xx_misc_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020013131 else if (IS_PINEVIEW(dev))
13132 dev_priv->display.get_display_clock_speed =
13133 pnv_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070013134 else if (IS_I915GM(dev))
13135 dev_priv->display.get_display_clock_speed =
13136 i915gm_get_display_clock_speed;
13137 else if (IS_I865G(dev))
13138 dev_priv->display.get_display_clock_speed =
13139 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +020013140 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070013141 dev_priv->display.get_display_clock_speed =
13142 i855_get_display_clock_speed;
13143 else /* 852, 830 */
13144 dev_priv->display.get_display_clock_speed =
13145 i830_get_display_clock_speed;
13146
Jani Nikula7c10a2b2014-10-27 16:26:43 +020013147 if (IS_GEN5(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053013148 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053013149 } else if (IS_GEN6(dev)) {
13150 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053013151 } else if (IS_IVYBRIDGE(dev)) {
13152 /* FIXME: detect B0+ stepping and use auto training */
13153 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053013154 dev_priv->display.modeset_global_resources =
13155 ivb_modeset_global_resources;
Paulo Zanoni059b2fe2014-09-02 16:53:57 -030013156 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053013157 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Jesse Barnes30a970c2013-11-04 13:48:12 -080013158 } else if (IS_VALLEYVIEW(dev)) {
13159 dev_priv->display.modeset_global_resources =
13160 valleyview_modeset_global_resources;
Jesse Barnese70236a2009-09-21 10:42:27 -070013161 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070013162
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070013163 switch (INTEL_INFO(dev)->gen) {
13164 case 2:
13165 dev_priv->display.queue_flip = intel_gen2_queue_flip;
13166 break;
13167
13168 case 3:
13169 dev_priv->display.queue_flip = intel_gen3_queue_flip;
13170 break;
13171
13172 case 4:
13173 case 5:
13174 dev_priv->display.queue_flip = intel_gen4_queue_flip;
13175 break;
13176
13177 case 6:
13178 dev_priv->display.queue_flip = intel_gen6_queue_flip;
13179 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070013180 case 7:
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070013181 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
Jesse Barnes7c9017e2011-06-16 12:18:54 -070013182 dev_priv->display.queue_flip = intel_gen7_queue_flip;
13183 break;
Damien Lespiau830c81d2014-11-13 17:51:46 +000013184 case 9:
Tvrtko Ursulinba343e02015-02-10 17:16:12 +000013185 /* Drop through - unsupported since execlist only. */
13186 default:
13187 /* Default just returns -ENODEV to indicate unsupported */
13188 dev_priv->display.queue_flip = intel_default_queue_flip;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070013189 }
Jani Nikula7bd688c2013-11-08 16:48:56 +020013190
13191 intel_panel_init_backlight_funcs(dev);
Ville Syrjäläe39b9992014-09-04 14:53:14 +030013192
13193 mutex_init(&dev_priv->pps_mutex);
Jesse Barnese70236a2009-09-21 10:42:27 -070013194}
13195
Jesse Barnesb690e962010-07-19 13:53:12 -070013196/*
13197 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
13198 * resume, or other times. This quirk makes sure that's the case for
13199 * affected systems.
13200 */
Akshay Joshi0206e352011-08-16 15:34:10 -040013201static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070013202{
13203 struct drm_i915_private *dev_priv = dev->dev_private;
13204
13205 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020013206 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070013207}
13208
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030013209static void quirk_pipeb_force(struct drm_device *dev)
13210{
13211 struct drm_i915_private *dev_priv = dev->dev_private;
13212
13213 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
13214 DRM_INFO("applying pipe b force quirk\n");
13215}
13216
Keith Packard435793d2011-07-12 14:56:22 -070013217/*
13218 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
13219 */
13220static void quirk_ssc_force_disable(struct drm_device *dev)
13221{
13222 struct drm_i915_private *dev_priv = dev->dev_private;
13223 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020013224 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070013225}
13226
Carsten Emde4dca20e2012-03-15 15:56:26 +010013227/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010013228 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
13229 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010013230 */
13231static void quirk_invert_brightness(struct drm_device *dev)
13232{
13233 struct drm_i915_private *dev_priv = dev->dev_private;
13234 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020013235 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070013236}
13237
Scot Doyle9c72cc62014-07-03 23:27:50 +000013238/* Some VBT's incorrectly indicate no backlight is present */
13239static void quirk_backlight_present(struct drm_device *dev)
13240{
13241 struct drm_i915_private *dev_priv = dev->dev_private;
13242 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
13243 DRM_INFO("applying backlight present quirk\n");
13244}
13245
Jesse Barnesb690e962010-07-19 13:53:12 -070013246struct intel_quirk {
13247 int device;
13248 int subsystem_vendor;
13249 int subsystem_device;
13250 void (*hook)(struct drm_device *dev);
13251};
13252
Egbert Eich5f85f172012-10-14 15:46:38 +020013253/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
13254struct intel_dmi_quirk {
13255 void (*hook)(struct drm_device *dev);
13256 const struct dmi_system_id (*dmi_id_list)[];
13257};
13258
13259static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
13260{
13261 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
13262 return 1;
13263}
13264
13265static const struct intel_dmi_quirk intel_dmi_quirks[] = {
13266 {
13267 .dmi_id_list = &(const struct dmi_system_id[]) {
13268 {
13269 .callback = intel_dmi_reverse_brightness,
13270 .ident = "NCR Corporation",
13271 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
13272 DMI_MATCH(DMI_PRODUCT_NAME, ""),
13273 },
13274 },
13275 { } /* terminating entry */
13276 },
13277 .hook = quirk_invert_brightness,
13278 },
13279};
13280
Ben Widawskyc43b5632012-04-16 14:07:40 -070013281static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070013282 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -040013283 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -070013284
Jesse Barnesb690e962010-07-19 13:53:12 -070013285 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
13286 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
13287
Jesse Barnesb690e962010-07-19 13:53:12 -070013288 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
13289 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
13290
Ville Syrjälä5f080c02014-08-15 01:22:06 +030013291 /* 830 needs to leave pipe A & dpll A up */
13292 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
13293
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030013294 /* 830 needs to leave pipe B & dpll B up */
13295 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
13296
Keith Packard435793d2011-07-12 14:56:22 -070013297 /* Lenovo U160 cannot use SSC on LVDS */
13298 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020013299
13300 /* Sony Vaio Y cannot use SSC on LVDS */
13301 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010013302
Alexander van Heukelumbe505f62013-12-28 21:00:39 +010013303 /* Acer Aspire 5734Z must invert backlight brightness */
13304 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
13305
13306 /* Acer/eMachines G725 */
13307 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
13308
13309 /* Acer/eMachines e725 */
13310 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
13311
13312 /* Acer/Packard Bell NCL20 */
13313 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
13314
13315 /* Acer Aspire 4736Z */
13316 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jani Nikula0f540c32014-01-13 17:30:34 +020013317
13318 /* Acer Aspire 5336 */
13319 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
Scot Doyle2e93a1a2014-07-03 23:27:51 +000013320
13321 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
13322 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
Scot Doyled4967d82014-07-03 23:27:52 +000013323
Scot Doyledfb3d47b2014-08-21 16:08:02 +000013324 /* Acer C720 Chromebook (Core i3 4005U) */
13325 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
13326
jens steinb2a96012014-10-28 20:25:53 +010013327 /* Apple Macbook 2,1 (Core 2 T7400) */
13328 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
13329
Scot Doyled4967d82014-07-03 23:27:52 +000013330 /* Toshiba CB35 Chromebook (Celeron 2955U) */
13331 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
Scot Doyle724cb062014-07-11 22:16:30 +000013332
13333 /* HP Chromebook 14 (Celeron 2955U) */
13334 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
Jani Nikulacf6f0af2015-02-19 10:53:39 +020013335
13336 /* Dell Chromebook 11 */
13337 { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present },
Jesse Barnesb690e962010-07-19 13:53:12 -070013338};
13339
13340static void intel_init_quirks(struct drm_device *dev)
13341{
13342 struct pci_dev *d = dev->pdev;
13343 int i;
13344
13345 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
13346 struct intel_quirk *q = &intel_quirks[i];
13347
13348 if (d->device == q->device &&
13349 (d->subsystem_vendor == q->subsystem_vendor ||
13350 q->subsystem_vendor == PCI_ANY_ID) &&
13351 (d->subsystem_device == q->subsystem_device ||
13352 q->subsystem_device == PCI_ANY_ID))
13353 q->hook(dev);
13354 }
Egbert Eich5f85f172012-10-14 15:46:38 +020013355 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
13356 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
13357 intel_dmi_quirks[i].hook(dev);
13358 }
Jesse Barnesb690e962010-07-19 13:53:12 -070013359}
13360
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013361/* Disable the VGA plane that we never use */
13362static void i915_disable_vga(struct drm_device *dev)
13363{
13364 struct drm_i915_private *dev_priv = dev->dev_private;
13365 u8 sr1;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020013366 u32 vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013367
Ville Syrjälä2b37c612014-01-22 21:32:38 +020013368 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013369 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070013370 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013371 sr1 = inb(VGA_SR_DATA);
13372 outb(sr1 | 1<<5, VGA_SR_DATA);
13373 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
13374 udelay(300);
13375
Ville Syrjälä01f5a622014-12-16 18:38:37 +020013376 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013377 POSTING_READ(vga_reg);
13378}
13379
Daniel Vetterf8175862012-04-10 15:50:11 +020013380void intel_modeset_init_hw(struct drm_device *dev)
13381{
Eugeni Dodonova8f78b52012-06-28 15:55:35 -030013382 intel_prepare_ddi(dev);
13383
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +030013384 if (IS_VALLEYVIEW(dev))
13385 vlv_update_cdclk(dev);
13386
Daniel Vetterf8175862012-04-10 15:50:11 +020013387 intel_init_clock_gating(dev);
13388
Daniel Vetter8090c6b2012-06-24 16:42:32 +020013389 intel_enable_gt_powersave(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020013390}
13391
Jesse Barnes79e53942008-11-07 14:24:08 -080013392void intel_modeset_init(struct drm_device *dev)
13393{
Jesse Barnes652c3932009-08-17 13:31:43 -070013394 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau1fe47782014-03-03 17:31:47 +000013395 int sprite, ret;
Damien Lespiau8cc87b72014-03-03 17:31:44 +000013396 enum pipe pipe;
Jesse Barnes46f297f2014-03-07 08:57:48 -080013397 struct intel_crtc *crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -080013398
13399 drm_mode_config_init(dev);
13400
13401 dev->mode_config.min_width = 0;
13402 dev->mode_config.min_height = 0;
13403
Dave Airlie019d96c2011-09-29 16:20:42 +010013404 dev->mode_config.preferred_depth = 24;
13405 dev->mode_config.prefer_shadow = 1;
13406
Tvrtko Ursulin25bab382015-02-10 17:16:16 +000013407 dev->mode_config.allow_fb_modifiers = true;
13408
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020013409 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080013410
Jesse Barnesb690e962010-07-19 13:53:12 -070013411 intel_init_quirks(dev);
13412
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030013413 intel_init_pm(dev);
13414
Ben Widawskye3c74752013-04-05 13:12:39 -070013415 if (INTEL_INFO(dev)->num_pipes == 0)
13416 return;
13417
Jesse Barnese70236a2009-09-21 10:42:27 -070013418 intel_init_display(dev);
Jani Nikula7c10a2b2014-10-27 16:26:43 +020013419 intel_init_audio(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070013420
Chris Wilsona6c45cf2010-09-17 00:32:17 +010013421 if (IS_GEN2(dev)) {
13422 dev->mode_config.max_width = 2048;
13423 dev->mode_config.max_height = 2048;
13424 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070013425 dev->mode_config.max_width = 4096;
13426 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080013427 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010013428 dev->mode_config.max_width = 8192;
13429 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080013430 }
Damien Lespiau068be562014-03-28 14:17:49 +000013431
Ville Syrjälädc41c152014-08-13 11:57:05 +030013432 if (IS_845G(dev) || IS_I865G(dev)) {
13433 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
13434 dev->mode_config.cursor_height = 1023;
13435 } else if (IS_GEN2(dev)) {
Damien Lespiau068be562014-03-28 14:17:49 +000013436 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
13437 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
13438 } else {
13439 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
13440 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
13441 }
13442
Ben Widawsky5d4545a2013-01-17 12:45:15 -080013443 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080013444
Zhao Yakui28c97732009-10-09 11:39:41 +080013445 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070013446 INTEL_INFO(dev)->num_pipes,
13447 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080013448
Damien Lespiau055e3932014-08-18 13:49:10 +010013449 for_each_pipe(dev_priv, pipe) {
Damien Lespiau8cc87b72014-03-03 17:31:44 +000013450 intel_crtc_init(dev, pipe);
Damien Lespiau3bdcfc02015-02-28 14:54:09 +000013451 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau1fe47782014-03-03 17:31:47 +000013452 ret = intel_plane_init(dev, pipe, sprite);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070013453 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030013454 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +000013455 pipe_name(pipe), sprite_name(pipe, sprite), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070013456 }
Jesse Barnes79e53942008-11-07 14:24:08 -080013457 }
13458
Jesse Barnesf42bb702013-12-16 16:34:23 -080013459 intel_init_dpio(dev);
13460
Daniel Vettere72f9fb2013-06-05 13:34:06 +020013461 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013462
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013463 /* Just disable it once at startup */
13464 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080013465 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000013466
13467 /* Just in case the BIOS is doing something questionable. */
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020013468 intel_fbc_disable(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080013469
Daniel Vetter6e9f7982014-05-29 23:54:47 +020013470 drm_modeset_lock_all(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080013471 intel_modeset_setup_hw_state(dev, false);
Daniel Vetter6e9f7982014-05-29 23:54:47 +020013472 drm_modeset_unlock_all(dev);
Jesse Barnes46f297f2014-03-07 08:57:48 -080013473
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013474 for_each_intel_crtc(dev, crtc) {
Jesse Barnes46f297f2014-03-07 08:57:48 -080013475 if (!crtc->active)
13476 continue;
13477
Jesse Barnes46f297f2014-03-07 08:57:48 -080013478 /*
Jesse Barnes46f297f2014-03-07 08:57:48 -080013479 * Note that reserving the BIOS fb up front prevents us
13480 * from stuffing other stolen allocations like the ring
13481 * on top. This prevents some ugliness at boot time, and
13482 * can even allow for smooth boot transitions if the BIOS
13483 * fb is large enough for the active pipe configuration.
13484 */
Damien Lespiau5724dbd2015-01-20 12:51:52 +000013485 if (dev_priv->display.get_initial_plane_config) {
13486 dev_priv->display.get_initial_plane_config(crtc,
Jesse Barnes46f297f2014-03-07 08:57:48 -080013487 &crtc->plane_config);
13488 /*
13489 * If the fb is shared between multiple heads, we'll
13490 * just get the first one.
13491 */
Jesse Barnes484b41d2014-03-07 08:57:55 -080013492 intel_find_plane_obj(crtc, &crtc->plane_config);
Jesse Barnes46f297f2014-03-07 08:57:48 -080013493 }
Jesse Barnes46f297f2014-03-07 08:57:48 -080013494 }
Chris Wilson2c7111d2011-03-29 10:40:27 +010013495}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080013496
Daniel Vetter7fad7982012-07-04 17:51:47 +020013497static void intel_enable_pipe_a(struct drm_device *dev)
13498{
13499 struct intel_connector *connector;
13500 struct drm_connector *crt = NULL;
13501 struct intel_load_detect_pipe load_detect_temp;
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030013502 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
Daniel Vetter7fad7982012-07-04 17:51:47 +020013503
13504 /* We can't just switch on the pipe A, we need to set things up with a
13505 * proper mode and output configuration. As a gross hack, enable pipe A
13506 * by enabling the load detect pipe once. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020013507 for_each_intel_connector(dev, connector) {
Daniel Vetter7fad7982012-07-04 17:51:47 +020013508 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
13509 crt = &connector->base;
13510 break;
13511 }
13512 }
13513
13514 if (!crt)
13515 return;
13516
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030013517 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
13518 intel_release_load_detect_pipe(crt, &load_detect_temp);
Daniel Vetter7fad7982012-07-04 17:51:47 +020013519}
13520
Daniel Vetterfa555832012-10-10 23:14:00 +020013521static bool
13522intel_check_plane_mapping(struct intel_crtc *crtc)
13523{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070013524 struct drm_device *dev = crtc->base.dev;
13525 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020013526 u32 reg, val;
13527
Ben Widawsky7eb552a2013-03-13 14:05:41 -070013528 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020013529 return true;
13530
13531 reg = DSPCNTR(!crtc->plane);
13532 val = I915_READ(reg);
13533
13534 if ((val & DISPLAY_PLANE_ENABLE) &&
13535 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
13536 return false;
13537
13538 return true;
13539}
13540
Daniel Vetter24929352012-07-02 20:28:59 +020013541static void intel_sanitize_crtc(struct intel_crtc *crtc)
13542{
13543 struct drm_device *dev = crtc->base.dev;
13544 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020013545 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +020013546
Daniel Vetter24929352012-07-02 20:28:59 +020013547 /* Clear any frame start delays used for debugging left by the BIOS */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013548 reg = PIPECONF(crtc->config->cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +020013549 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
13550
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030013551 /* restore vblank interrupts to correct state */
Daniel Vetter96256042015-02-13 21:03:42 +010013552 drm_crtc_vblank_reset(&crtc->base);
Ville Syrjäläd297e102014-08-06 14:50:01 +030013553 if (crtc->active) {
13554 update_scanline_offset(crtc);
Daniel Vetter96256042015-02-13 21:03:42 +010013555 drm_crtc_vblank_on(&crtc->base);
13556 }
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030013557
Daniel Vetter24929352012-07-02 20:28:59 +020013558 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020013559 * disable the crtc (and hence change the state) if it is wrong. Note
13560 * that gen4+ has a fixed plane -> pipe mapping. */
13561 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020013562 struct intel_connector *connector;
13563 bool plane;
13564
Daniel Vetter24929352012-07-02 20:28:59 +020013565 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
13566 crtc->base.base.id);
13567
13568 /* Pipe has the wrong plane attached and the plane is active.
13569 * Temporarily change the plane mapping and disable everything
13570 * ... */
13571 plane = crtc->plane;
13572 crtc->plane = !plane;
Daniel Vetter9c8958b2014-07-14 19:35:31 +020013573 crtc->primary_enabled = true;
Daniel Vetter24929352012-07-02 20:28:59 +020013574 dev_priv->display.crtc_disable(&crtc->base);
13575 crtc->plane = plane;
13576
13577 /* ... and break all links. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020013578 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020013579 if (connector->encoder->base.crtc != &crtc->base)
13580 continue;
13581
Egbert Eich7f1950f2014-04-25 10:56:22 +020013582 connector->base.dpms = DRM_MODE_DPMS_OFF;
13583 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020013584 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020013585 /* multiple connectors may have the same encoder:
13586 * handle them and break crtc link separately */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020013587 for_each_intel_connector(dev, connector)
Egbert Eich7f1950f2014-04-25 10:56:22 +020013588 if (connector->encoder->base.crtc == &crtc->base) {
13589 connector->encoder->base.crtc = NULL;
13590 connector->encoder->connectors_active = false;
13591 }
Daniel Vetter24929352012-07-02 20:28:59 +020013592
13593 WARN_ON(crtc->active);
Matt Roper83d65732015-02-25 13:12:16 -080013594 crtc->base.state->enable = false;
Daniel Vetter24929352012-07-02 20:28:59 +020013595 crtc->base.enabled = false;
13596 }
Daniel Vetter24929352012-07-02 20:28:59 +020013597
Daniel Vetter7fad7982012-07-04 17:51:47 +020013598 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
13599 crtc->pipe == PIPE_A && !crtc->active) {
13600 /* BIOS forgot to enable pipe A, this mostly happens after
13601 * resume. Force-enable the pipe to fix this, the update_dpms
13602 * call below we restore the pipe to the right state, but leave
13603 * the required bits on. */
13604 intel_enable_pipe_a(dev);
13605 }
13606
Daniel Vetter24929352012-07-02 20:28:59 +020013607 /* Adjust the state of the output pipe according to whether we
13608 * have active connectors/encoders. */
13609 intel_crtc_update_dpms(&crtc->base);
13610
Matt Roper83d65732015-02-25 13:12:16 -080013611 if (crtc->active != crtc->base.state->enable) {
Daniel Vetter24929352012-07-02 20:28:59 +020013612 struct intel_encoder *encoder;
13613
13614 /* This can happen either due to bugs in the get_hw_state
13615 * functions or because the pipe is force-enabled due to the
13616 * pipe A quirk. */
13617 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
13618 crtc->base.base.id,
Matt Roper83d65732015-02-25 13:12:16 -080013619 crtc->base.state->enable ? "enabled" : "disabled",
Daniel Vetter24929352012-07-02 20:28:59 +020013620 crtc->active ? "enabled" : "disabled");
13621
Matt Roper83d65732015-02-25 13:12:16 -080013622 crtc->base.state->enable = crtc->active;
Daniel Vetter24929352012-07-02 20:28:59 +020013623 crtc->base.enabled = crtc->active;
13624
13625 /* Because we only establish the connector -> encoder ->
13626 * crtc links if something is active, this means the
13627 * crtc is now deactivated. Break the links. connector
13628 * -> encoder links are only establish when things are
13629 * actually up, hence no need to break them. */
13630 WARN_ON(crtc->active);
13631
13632 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
13633 WARN_ON(encoder->connectors_active);
13634 encoder->base.crtc = NULL;
13635 }
13636 }
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020013637
Ville Syrjäläa3ed6aa2014-09-03 14:09:52 +030013638 if (crtc->active || HAS_GMCH_DISPLAY(dev)) {
Daniel Vetter4cc31482014-03-24 00:01:41 +010013639 /*
13640 * We start out with underrun reporting disabled to avoid races.
13641 * For correct bookkeeping mark this on active crtcs.
13642 *
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020013643 * Also on gmch platforms we dont have any hardware bits to
13644 * disable the underrun reporting. Which means we need to start
13645 * out with underrun reporting disabled also on inactive pipes,
13646 * since otherwise we'll complain about the garbage we read when
13647 * e.g. coming up after runtime pm.
13648 *
Daniel Vetter4cc31482014-03-24 00:01:41 +010013649 * No protection against concurrent access is required - at
13650 * worst a fifo underrun happens which also sets this to false.
13651 */
13652 crtc->cpu_fifo_underrun_disabled = true;
13653 crtc->pch_fifo_underrun_disabled = true;
13654 }
Daniel Vetter24929352012-07-02 20:28:59 +020013655}
13656
13657static void intel_sanitize_encoder(struct intel_encoder *encoder)
13658{
13659 struct intel_connector *connector;
13660 struct drm_device *dev = encoder->base.dev;
13661
13662 /* We need to check both for a crtc link (meaning that the
13663 * encoder is active and trying to read from a pipe) and the
13664 * pipe itself being active. */
13665 bool has_active_crtc = encoder->base.crtc &&
13666 to_intel_crtc(encoder->base.crtc)->active;
13667
13668 if (encoder->connectors_active && !has_active_crtc) {
13669 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
13670 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030013671 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020013672
13673 /* Connector is active, but has no active pipe. This is
13674 * fallout from our resume register restoring. Disable
13675 * the encoder manually again. */
13676 if (encoder->base.crtc) {
13677 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
13678 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030013679 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020013680 encoder->disable(encoder);
Ville Syrjäläa62d1492014-06-28 02:04:01 +030013681 if (encoder->post_disable)
13682 encoder->post_disable(encoder);
Daniel Vetter24929352012-07-02 20:28:59 +020013683 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020013684 encoder->base.crtc = NULL;
13685 encoder->connectors_active = false;
Daniel Vetter24929352012-07-02 20:28:59 +020013686
13687 /* Inconsistent output/port/pipe state happens presumably due to
13688 * a bug in one of the get_hw_state functions. Or someplace else
13689 * in our code, like the register restore mess on resume. Clamp
13690 * things to off as a safer default. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020013691 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020013692 if (connector->encoder != encoder)
13693 continue;
Egbert Eich7f1950f2014-04-25 10:56:22 +020013694 connector->base.dpms = DRM_MODE_DPMS_OFF;
13695 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020013696 }
13697 }
13698 /* Enabled encoders without active connectors will be fixed in
13699 * the crtc fixup. */
13700}
13701
Imre Deak04098752014-02-18 00:02:16 +020013702void i915_redisable_vga_power_on(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013703{
13704 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020013705 u32 vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013706
Imre Deak04098752014-02-18 00:02:16 +020013707 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
13708 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
13709 i915_disable_vga(dev);
13710 }
13711}
13712
13713void i915_redisable_vga(struct drm_device *dev)
13714{
13715 struct drm_i915_private *dev_priv = dev->dev_private;
13716
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030013717 /* This function can be called both from intel_modeset_setup_hw_state or
13718 * at a very early point in our resume sequence, where the power well
13719 * structures are not yet restored. Since this function is at a very
13720 * paranoid "someone might have enabled VGA while we were not looking"
13721 * level, just check if the power well is enabled instead of trying to
13722 * follow the "don't touch the power well if we don't need it" policy
13723 * the rest of the driver uses. */
Daniel Vetterf458ebb2014-09-30 10:56:39 +020013724 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_VGA))
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030013725 return;
13726
Imre Deak04098752014-02-18 00:02:16 +020013727 i915_redisable_vga_power_on(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013728}
13729
Ville Syrjälä98ec7732014-04-30 17:43:01 +030013730static bool primary_get_hw_state(struct intel_crtc *crtc)
13731{
13732 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
13733
13734 if (!crtc->active)
13735 return false;
13736
13737 return I915_READ(DSPCNTR(crtc->plane)) & DISPLAY_PLANE_ENABLE;
13738}
13739
Daniel Vetter30e984d2013-06-05 13:34:17 +020013740static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020013741{
13742 struct drm_i915_private *dev_priv = dev->dev_private;
13743 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020013744 struct intel_crtc *crtc;
13745 struct intel_encoder *encoder;
13746 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020013747 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020013748
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013749 for_each_intel_crtc(dev, crtc) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013750 memset(crtc->config, 0, sizeof(*crtc->config));
Daniel Vetter3b117c82013-04-17 20:15:07 +020013751
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013752 crtc->config->quirks |= PIPE_CONFIG_QUIRK_INHERITED_MODE;
Daniel Vetter99535992014-04-13 12:00:33 +020013753
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010013754 crtc->active = dev_priv->display.get_pipe_config(crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013755 crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020013756
Matt Roper83d65732015-02-25 13:12:16 -080013757 crtc->base.state->enable = crtc->active;
Daniel Vetter24929352012-07-02 20:28:59 +020013758 crtc->base.enabled = crtc->active;
Ville Syrjälä98ec7732014-04-30 17:43:01 +030013759 crtc->primary_enabled = primary_get_hw_state(crtc);
Daniel Vetter24929352012-07-02 20:28:59 +020013760
13761 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
13762 crtc->base.base.id,
13763 crtc->active ? "enabled" : "disabled");
13764 }
13765
Daniel Vetter53589012013-06-05 13:34:16 +020013766 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13767 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13768
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013769 pll->on = pll->get_hw_state(dev_priv, pll,
13770 &pll->config.hw_state);
Daniel Vetter53589012013-06-05 13:34:16 +020013771 pll->active = 0;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013772 pll->config.crtc_mask = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013773 for_each_intel_crtc(dev, crtc) {
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020013774 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll) {
Daniel Vetter53589012013-06-05 13:34:16 +020013775 pll->active++;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013776 pll->config.crtc_mask |= 1 << crtc->pipe;
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020013777 }
Daniel Vetter53589012013-06-05 13:34:16 +020013778 }
Daniel Vetter53589012013-06-05 13:34:16 +020013779
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020013780 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013781 pll->name, pll->config.crtc_mask, pll->on);
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030013782
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013783 if (pll->config.crtc_mask)
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030013784 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
Daniel Vetter53589012013-06-05 13:34:16 +020013785 }
13786
Damien Lespiaub2784e12014-08-05 11:29:37 +010013787 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020013788 pipe = 0;
13789
13790 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -070013791 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
13792 encoder->base.crtc = &crtc->base;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013793 encoder->get_config(encoder, crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020013794 } else {
13795 encoder->base.crtc = NULL;
13796 }
13797
13798 encoder->connectors_active = false;
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010013799 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
Daniel Vetter24929352012-07-02 20:28:59 +020013800 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030013801 encoder->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020013802 encoder->base.crtc ? "enabled" : "disabled",
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010013803 pipe_name(pipe));
Daniel Vetter24929352012-07-02 20:28:59 +020013804 }
13805
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020013806 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020013807 if (connector->get_hw_state(connector)) {
13808 connector->base.dpms = DRM_MODE_DPMS_ON;
13809 connector->encoder->connectors_active = true;
13810 connector->base.encoder = &connector->encoder->base;
13811 } else {
13812 connector->base.dpms = DRM_MODE_DPMS_OFF;
13813 connector->base.encoder = NULL;
13814 }
13815 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
13816 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030013817 connector->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020013818 connector->base.encoder ? "enabled" : "disabled");
13819 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020013820}
13821
13822/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
13823 * and i915 state tracking structures. */
13824void intel_modeset_setup_hw_state(struct drm_device *dev,
13825 bool force_restore)
13826{
13827 struct drm_i915_private *dev_priv = dev->dev_private;
13828 enum pipe pipe;
Daniel Vetter30e984d2013-06-05 13:34:17 +020013829 struct intel_crtc *crtc;
13830 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020013831 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020013832
13833 intel_modeset_readout_hw_state(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020013834
Jesse Barnesbabea612013-06-26 18:57:38 +030013835 /*
13836 * Now that we have the config, copy it to each CRTC struct
13837 * Note that this could go away if we move to using crtc_config
13838 * checking everywhere.
13839 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013840 for_each_intel_crtc(dev, crtc) {
Jani Nikulad330a952014-01-21 11:24:25 +020013841 if (crtc->active && i915.fastboot) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013842 intel_mode_from_pipe_config(&crtc->base.mode,
13843 crtc->config);
Jesse Barnesbabea612013-06-26 18:57:38 +030013844 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
13845 crtc->base.base.id);
13846 drm_mode_debug_printmodeline(&crtc->base.mode);
13847 }
13848 }
13849
Daniel Vetter24929352012-07-02 20:28:59 +020013850 /* HW state is read out, now we need to sanitize this mess. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010013851 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020013852 intel_sanitize_encoder(encoder);
13853 }
13854
Damien Lespiau055e3932014-08-18 13:49:10 +010013855 for_each_pipe(dev_priv, pipe) {
Daniel Vetter24929352012-07-02 20:28:59 +020013856 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
13857 intel_sanitize_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013858 intel_dump_pipe_config(crtc, crtc->config,
13859 "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020013860 }
Daniel Vetter9a935852012-07-05 22:34:27 +020013861
Daniel Vetter35c95372013-07-17 06:55:04 +020013862 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13863 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13864
13865 if (!pll->on || pll->active)
13866 continue;
13867
13868 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
13869
13870 pll->disable(dev_priv, pll);
13871 pll->on = false;
13872 }
13873
Pradeep Bhat30789992014-11-04 17:06:45 +000013874 if (IS_GEN9(dev))
13875 skl_wm_get_hw_state(dev);
13876 else if (HAS_PCH_SPLIT(dev))
Ville Syrjälä243e6a42013-10-14 14:55:24 +030013877 ilk_wm_get_hw_state(dev);
13878
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010013879 if (force_restore) {
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030013880 i915_redisable_vga(dev);
13881
Daniel Vetterf30da182013-04-11 20:22:50 +020013882 /*
13883 * We need to use raw interfaces for restoring state to avoid
13884 * checking (bogus) intermediate states.
13885 */
Damien Lespiau055e3932014-08-18 13:49:10 +010013886 for_each_pipe(dev_priv, pipe) {
Jesse Barnesb5644d02013-03-26 13:25:27 -070013887 struct drm_crtc *crtc =
13888 dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vetterf30da182013-04-11 20:22:50 +020013889
Jesse Barnes7f27126e2014-11-05 14:26:06 -080013890 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
13891 crtc->primary->fb);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010013892 }
13893 } else {
13894 intel_modeset_update_staged_output_state(dev);
13895 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013896
13897 intel_modeset_check_state(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +010013898}
13899
13900void intel_modeset_gem_init(struct drm_device *dev)
13901{
Jesse Barnes92122782014-10-09 12:57:42 -070013902 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes484b41d2014-03-07 08:57:55 -080013903 struct drm_crtc *c;
Matt Roper2ff8fde2014-07-08 07:50:07 -070013904 struct drm_i915_gem_object *obj;
Jesse Barnes484b41d2014-03-07 08:57:55 -080013905
Imre Deakae484342014-03-31 15:10:44 +030013906 mutex_lock(&dev->struct_mutex);
13907 intel_init_gt_powersave(dev);
13908 mutex_unlock(&dev->struct_mutex);
13909
Jesse Barnes92122782014-10-09 12:57:42 -070013910 /*
13911 * There may be no VBT; and if the BIOS enabled SSC we can
13912 * just keep using it to avoid unnecessary flicker. Whereas if the
13913 * BIOS isn't using it, don't assume it will work even if the VBT
13914 * indicates as much.
13915 */
13916 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
13917 dev_priv->vbt.lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
13918 DREF_SSC1_ENABLE);
13919
Chris Wilson1833b132012-05-09 11:56:28 +010013920 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020013921
13922 intel_setup_overlay(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -080013923
13924 /*
13925 * Make sure any fbs we allocated at startup are properly
13926 * pinned & fenced. When we do the allocation it's too early
13927 * for this.
13928 */
13929 mutex_lock(&dev->struct_mutex);
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010013930 for_each_crtc(dev, c) {
Matt Roper2ff8fde2014-07-08 07:50:07 -070013931 obj = intel_fb_obj(c->primary->fb);
13932 if (obj == NULL)
Jesse Barnes484b41d2014-03-07 08:57:55 -080013933 continue;
13934
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +000013935 if (intel_pin_and_fence_fb_obj(c->primary,
13936 c->primary->fb,
13937 NULL)) {
Jesse Barnes484b41d2014-03-07 08:57:55 -080013938 DRM_ERROR("failed to pin boot fb on pipe %d\n",
13939 to_intel_crtc(c)->pipe);
Dave Airlie66e514c2014-04-03 07:51:54 +100013940 drm_framebuffer_unreference(c->primary->fb);
13941 c->primary->fb = NULL;
Matt Roperafd65eb2015-02-03 13:10:04 -080013942 update_state_fb(c->primary);
Jesse Barnes484b41d2014-03-07 08:57:55 -080013943 }
13944 }
13945 mutex_unlock(&dev->struct_mutex);
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020013946
13947 intel_backlight_register(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080013948}
13949
Imre Deak4932e2c2014-02-11 17:12:48 +020013950void intel_connector_unregister(struct intel_connector *intel_connector)
13951{
13952 struct drm_connector *connector = &intel_connector->base;
13953
13954 intel_panel_destroy_backlight(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +010013955 drm_connector_unregister(connector);
Imre Deak4932e2c2014-02-11 17:12:48 +020013956}
13957
Jesse Barnes79e53942008-11-07 14:24:08 -080013958void intel_modeset_cleanup(struct drm_device *dev)
13959{
Jesse Barnes652c3932009-08-17 13:31:43 -070013960 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid9255d52013-09-26 20:05:59 -030013961 struct drm_connector *connector;
Jesse Barnes652c3932009-08-17 13:31:43 -070013962
Imre Deak2eb52522014-11-19 15:30:05 +020013963 intel_disable_gt_powersave(dev);
13964
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020013965 intel_backlight_unregister(dev);
13966
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013967 /*
13968 * Interrupts and polling as the first thing to avoid creating havoc.
Imre Deak2eb52522014-11-19 15:30:05 +020013969 * Too much stuff here (turning of connectors, ...) would
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013970 * experience fancy races otherwise.
13971 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +020013972 intel_irq_uninstall(dev_priv);
Jesse Barneseb21b922014-06-20 11:57:33 -070013973
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013974 /*
13975 * Due to the hpd irq storm handling the hotplug work can re-arm the
13976 * poll handlers. Hence disable polling after hpd handling is shut down.
13977 */
Keith Packardf87ea762010-10-03 19:36:26 -070013978 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013979
Jesse Barnes652c3932009-08-17 13:31:43 -070013980 mutex_lock(&dev->struct_mutex);
13981
Jesse Barnes723bfd72010-10-07 16:01:13 -070013982 intel_unregister_dsm_handler();
13983
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020013984 intel_fbc_disable(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070013985
Kristian Høgsberg69341a52009-11-11 12:19:17 -050013986 mutex_unlock(&dev->struct_mutex);
13987
Chris Wilson1630fe72011-07-08 12:22:42 +010013988 /* flush any delayed tasks or pending work */
13989 flush_scheduled_work();
13990
Jani Nikuladb31af1d2013-11-08 16:48:53 +020013991 /* destroy the backlight and sysfs files before encoders/connectors */
13992 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Imre Deak4932e2c2014-02-11 17:12:48 +020013993 struct intel_connector *intel_connector;
13994
13995 intel_connector = to_intel_connector(connector);
13996 intel_connector->unregister(intel_connector);
Jani Nikuladb31af1d2013-11-08 16:48:53 +020013997 }
Paulo Zanonid9255d52013-09-26 20:05:59 -030013998
Jesse Barnes79e53942008-11-07 14:24:08 -080013999 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010014000
14001 intel_cleanup_overlay(dev);
Imre Deakae484342014-03-31 15:10:44 +030014002
14003 mutex_lock(&dev->struct_mutex);
14004 intel_cleanup_gt_powersave(dev);
14005 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080014006}
14007
Dave Airlie28d52042009-09-21 14:33:58 +100014008/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +080014009 * Return which encoder is currently attached for connector.
14010 */
Chris Wilsondf0e9242010-09-09 16:20:55 +010014011struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -080014012{
Chris Wilsondf0e9242010-09-09 16:20:55 +010014013 return &intel_attached_encoder(connector)->base;
14014}
Jesse Barnes79e53942008-11-07 14:24:08 -080014015
Chris Wilsondf0e9242010-09-09 16:20:55 +010014016void intel_connector_attach_encoder(struct intel_connector *connector,
14017 struct intel_encoder *encoder)
14018{
14019 connector->encoder = encoder;
14020 drm_mode_connector_attach_encoder(&connector->base,
14021 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080014022}
Dave Airlie28d52042009-09-21 14:33:58 +100014023
14024/*
14025 * set vga decode state - true == enable VGA decode
14026 */
14027int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
14028{
14029 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona885b3c2013-12-17 14:34:50 +000014030 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
Dave Airlie28d52042009-09-21 14:33:58 +100014031 u16 gmch_ctrl;
14032
Chris Wilson75fa0412014-02-07 18:37:02 -020014033 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
14034 DRM_ERROR("failed to read control word\n");
14035 return -EIO;
14036 }
14037
Chris Wilsonc0cc8a52014-02-07 18:37:03 -020014038 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
14039 return 0;
14040
Dave Airlie28d52042009-09-21 14:33:58 +100014041 if (state)
14042 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
14043 else
14044 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
Chris Wilson75fa0412014-02-07 18:37:02 -020014045
14046 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
14047 DRM_ERROR("failed to write control word\n");
14048 return -EIO;
14049 }
14050
Dave Airlie28d52042009-09-21 14:33:58 +100014051 return 0;
14052}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014053
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014054struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030014055
14056 u32 power_well_driver;
14057
Chris Wilson63b66e52013-08-08 15:12:06 +020014058 int num_transcoders;
14059
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014060 struct intel_cursor_error_state {
14061 u32 control;
14062 u32 position;
14063 u32 base;
14064 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010014065 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014066
14067 struct intel_pipe_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020014068 bool power_domain_on;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014069 u32 source;
Imre Deakf301b1e2014-04-18 15:55:04 +030014070 u32 stat;
Damien Lespiau52331302012-08-15 19:23:25 +010014071 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014072
14073 struct intel_plane_error_state {
14074 u32 control;
14075 u32 stride;
14076 u32 size;
14077 u32 pos;
14078 u32 addr;
14079 u32 surface;
14080 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010014081 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020014082
14083 struct intel_transcoder_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020014084 bool power_domain_on;
Chris Wilson63b66e52013-08-08 15:12:06 +020014085 enum transcoder cpu_transcoder;
14086
14087 u32 conf;
14088
14089 u32 htotal;
14090 u32 hblank;
14091 u32 hsync;
14092 u32 vtotal;
14093 u32 vblank;
14094 u32 vsync;
14095 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014096};
14097
14098struct intel_display_error_state *
14099intel_display_capture_error_state(struct drm_device *dev)
14100{
Jani Nikulafbee40d2014-03-31 14:27:18 +030014101 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014102 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020014103 int transcoders[] = {
14104 TRANSCODER_A,
14105 TRANSCODER_B,
14106 TRANSCODER_C,
14107 TRANSCODER_EDP,
14108 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014109 int i;
14110
Chris Wilson63b66e52013-08-08 15:12:06 +020014111 if (INTEL_INFO(dev)->num_pipes == 0)
14112 return NULL;
14113
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020014114 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014115 if (error == NULL)
14116 return NULL;
14117
Imre Deak190be112013-11-25 17:15:31 +020014118 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030014119 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
14120
Damien Lespiau055e3932014-08-18 13:49:10 +010014121 for_each_pipe(dev_priv, i) {
Imre Deakddf9c532013-11-27 22:02:02 +020014122 error->pipe[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020014123 __intel_display_power_is_enabled(dev_priv,
14124 POWER_DOMAIN_PIPE(i));
Imre Deakddf9c532013-11-27 22:02:02 +020014125 if (!error->pipe[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020014126 continue;
14127
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030014128 error->cursor[i].control = I915_READ(CURCNTR(i));
14129 error->cursor[i].position = I915_READ(CURPOS(i));
14130 error->cursor[i].base = I915_READ(CURBASE(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014131
14132 error->plane[i].control = I915_READ(DSPCNTR(i));
14133 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030014134 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030014135 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030014136 error->plane[i].pos = I915_READ(DSPPOS(i));
14137 }
Paulo Zanonica291362013-03-06 20:03:14 -030014138 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
14139 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014140 if (INTEL_INFO(dev)->gen >= 4) {
14141 error->plane[i].surface = I915_READ(DSPSURF(i));
14142 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
14143 }
14144
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014145 error->pipe[i].source = I915_READ(PIPESRC(i));
Imre Deakf301b1e2014-04-18 15:55:04 +030014146
Sonika Jindal3abfce72014-07-21 15:23:43 +053014147 if (HAS_GMCH_DISPLAY(dev))
Imre Deakf301b1e2014-04-18 15:55:04 +030014148 error->pipe[i].stat = I915_READ(PIPESTAT(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020014149 }
14150
14151 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
14152 if (HAS_DDI(dev_priv->dev))
14153 error->num_transcoders++; /* Account for eDP. */
14154
14155 for (i = 0; i < error->num_transcoders; i++) {
14156 enum transcoder cpu_transcoder = transcoders[i];
14157
Imre Deakddf9c532013-11-27 22:02:02 +020014158 error->transcoder[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020014159 __intel_display_power_is_enabled(dev_priv,
Paulo Zanoni38cc1da2013-12-20 15:09:41 -020014160 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020014161 if (!error->transcoder[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020014162 continue;
14163
Chris Wilson63b66e52013-08-08 15:12:06 +020014164 error->transcoder[i].cpu_transcoder = cpu_transcoder;
14165
14166 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
14167 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
14168 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
14169 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
14170 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
14171 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
14172 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014173 }
14174
14175 return error;
14176}
14177
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014178#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
14179
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014180void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014181intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014182 struct drm_device *dev,
14183 struct intel_display_error_state *error)
14184{
Damien Lespiau055e3932014-08-18 13:49:10 +010014185 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014186 int i;
14187
Chris Wilson63b66e52013-08-08 15:12:06 +020014188 if (!error)
14189 return;
14190
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014191 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Imre Deak190be112013-11-25 17:15:31 +020014192 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014193 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030014194 error->power_well_driver);
Damien Lespiau055e3932014-08-18 13:49:10 +010014195 for_each_pipe(dev_priv, i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014196 err_printf(m, "Pipe [%d]:\n", i);
Imre Deakddf9c532013-11-27 22:02:02 +020014197 err_printf(m, " Power: %s\n",
14198 error->pipe[i].power_domain_on ? "on" : "off");
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014199 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Imre Deakf301b1e2014-04-18 15:55:04 +030014200 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014201
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014202 err_printf(m, "Plane [%d]:\n", i);
14203 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
14204 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030014205 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014206 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
14207 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030014208 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030014209 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014210 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014211 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014212 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
14213 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014214 }
14215
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014216 err_printf(m, "Cursor [%d]:\n", i);
14217 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
14218 err_printf(m, " POS: %08x\n", error->cursor[i].position);
14219 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014220 }
Chris Wilson63b66e52013-08-08 15:12:06 +020014221
14222 for (i = 0; i < error->num_transcoders; i++) {
Chris Wilson1cf84bb2013-10-21 09:10:33 +010014223 err_printf(m, "CPU transcoder: %c\n",
Chris Wilson63b66e52013-08-08 15:12:06 +020014224 transcoder_name(error->transcoder[i].cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020014225 err_printf(m, " Power: %s\n",
14226 error->transcoder[i].power_domain_on ? "on" : "off");
Chris Wilson63b66e52013-08-08 15:12:06 +020014227 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
14228 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
14229 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
14230 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
14231 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
14232 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
14233 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
14234 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014235}
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014236
14237void intel_modeset_preclose(struct drm_device *dev, struct drm_file *file)
14238{
14239 struct intel_crtc *crtc;
14240
14241 for_each_intel_crtc(dev, crtc) {
14242 struct intel_unpin_work *work;
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014243
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020014244 spin_lock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014245
14246 work = crtc->unpin_work;
14247
14248 if (work && work->event &&
14249 work->event->base.file_priv == file) {
14250 kfree(work->event);
14251 work->event = NULL;
14252 }
14253
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020014254 spin_unlock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014255 }
14256}