blob: 08e2bab6ef472713fd250142bf59062919076add [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},
393 .vco = { .min = 4860000, .max = 6700000 },
394 .n = { .min = 1, .max = 1 },
395 .m1 = { .min = 2, .max = 2 },
396 .m2 = { .min = 24 << 22, .max = 175 << 22 },
397 .p1 = { .min = 2, .max = 4 },
398 .p2 = { .p2_slow = 1, .p2_fast = 14 },
399};
400
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300401static void vlv_clock(int refclk, intel_clock_t *clock)
402{
403 clock->m = clock->m1 * clock->m2;
404 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200405 if (WARN_ON(clock->n == 0 || clock->p == 0))
406 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300407 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
408 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300409}
410
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300411/**
412 * Returns whether any output on the specified pipe is of the specified type
413 */
Damien Lespiau40935612014-10-29 11:16:59 +0000414bool intel_pipe_has_type(struct intel_crtc *crtc, enum intel_output_type type)
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300415{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300416 struct drm_device *dev = crtc->base.dev;
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300417 struct intel_encoder *encoder;
418
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300419 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300420 if (encoder->type == type)
421 return true;
422
423 return false;
424}
425
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200426/**
427 * Returns whether any output on the specified pipe will have the specified
428 * type after a staged modeset is complete, i.e., the same as
429 * intel_pipe_has_type() but looking at encoder->new_crtc instead of
430 * encoder->crtc.
431 */
432static bool intel_pipe_will_have_type(struct intel_crtc *crtc, int type)
433{
434 struct drm_device *dev = crtc->base.dev;
435 struct intel_encoder *encoder;
436
437 for_each_intel_encoder(dev, encoder)
438 if (encoder->new_crtc == crtc && encoder->type == type)
439 return true;
440
441 return false;
442}
443
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300444static const intel_limit_t *intel_ironlake_limit(struct intel_crtc *crtc,
Chris Wilson1b894b52010-12-14 20:04:54 +0000445 int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800446{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300447 struct drm_device *dev = crtc->base.dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800448 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800449
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200450 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100451 if (intel_is_dual_link_lvds(dev)) {
Chris Wilson1b894b52010-12-14 20:04:54 +0000452 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800453 limit = &intel_limits_ironlake_dual_lvds_100m;
454 else
455 limit = &intel_limits_ironlake_dual_lvds;
456 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000457 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800458 limit = &intel_limits_ironlake_single_lvds_100m;
459 else
460 limit = &intel_limits_ironlake_single_lvds;
461 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200462 } else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800463 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800464
465 return limit;
466}
467
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300468static const intel_limit_t *intel_g4x_limit(struct intel_crtc *crtc)
Ma Ling044c7c42009-03-18 20:13:23 +0800469{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300470 struct drm_device *dev = crtc->base.dev;
Ma Ling044c7c42009-03-18 20:13:23 +0800471 const intel_limit_t *limit;
472
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200473 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100474 if (intel_is_dual_link_lvds(dev))
Keith Packarde4b36692009-06-05 19:22:17 -0700475 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800476 else
Keith Packarde4b36692009-06-05 19:22:17 -0700477 limit = &intel_limits_g4x_single_channel_lvds;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200478 } else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_HDMI) ||
479 intel_pipe_will_have_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700480 limit = &intel_limits_g4x_hdmi;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200481 } else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700482 limit = &intel_limits_g4x_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800483 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700484 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800485
486 return limit;
487}
488
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300489static const intel_limit_t *intel_limit(struct intel_crtc *crtc, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800490{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300491 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800492 const intel_limit_t *limit;
493
Eric Anholtbad720f2009-10-22 16:11:14 -0700494 if (HAS_PCH_SPLIT(dev))
Chris Wilson1b894b52010-12-14 20:04:54 +0000495 limit = intel_ironlake_limit(crtc, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800496 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800497 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500498 } else if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200499 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500500 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800501 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500502 limit = &intel_limits_pineview_sdvo;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300503 } else if (IS_CHERRYVIEW(dev)) {
504 limit = &intel_limits_chv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700505 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälädc730512013-09-24 21:26:30 +0300506 limit = &intel_limits_vlv;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100507 } else if (!IS_GEN2(dev)) {
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200508 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100509 limit = &intel_limits_i9xx_lvds;
510 else
511 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800512 } else {
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200513 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700514 limit = &intel_limits_i8xx_lvds;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200515 else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_DVO))
Keith Packarde4b36692009-06-05 19:22:17 -0700516 limit = &intel_limits_i8xx_dvo;
Daniel Vetter5d536e22013-07-06 12:52:06 +0200517 else
518 limit = &intel_limits_i8xx_dac;
Jesse Barnes79e53942008-11-07 14:24:08 -0800519 }
520 return limit;
521}
522
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500523/* m1 is reserved as 0 in Pineview, n is a ring counter */
524static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800525{
Shaohua Li21778322009-02-23 15:19:16 +0800526 clock->m = clock->m2 + 2;
527 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200528 if (WARN_ON(clock->n == 0 || clock->p == 0))
529 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300530 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
531 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Shaohua Li21778322009-02-23 15:19:16 +0800532}
533
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200534static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
535{
536 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
537}
538
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200539static void i9xx_clock(int refclk, intel_clock_t *clock)
Shaohua Li21778322009-02-23 15:19:16 +0800540{
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200541 clock->m = i9xx_dpll_compute_m(clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800542 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200543 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
544 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300545 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
546 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Jesse Barnes79e53942008-11-07 14:24:08 -0800547}
548
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300549static void chv_clock(int refclk, intel_clock_t *clock)
550{
551 clock->m = clock->m1 * clock->m2;
552 clock->p = clock->p1 * clock->p2;
553 if (WARN_ON(clock->n == 0 || clock->p == 0))
554 return;
555 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
556 clock->n << 22);
557 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
558}
559
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800560#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800561/**
562 * Returns whether the given set of divisors are valid for a given refclk with
563 * the given connectors.
564 */
565
Chris Wilson1b894b52010-12-14 20:04:54 +0000566static bool intel_PLL_is_valid(struct drm_device *dev,
567 const intel_limit_t *limit,
568 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800569{
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300570 if (clock->n < limit->n.min || limit->n.max < clock->n)
571 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800572 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400573 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800574 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400575 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800576 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400577 INTELPllInvalid("m1 out of range\n");
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300578
579 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev))
580 if (clock->m1 <= clock->m2)
581 INTELPllInvalid("m1 <= m2\n");
582
583 if (!IS_VALLEYVIEW(dev)) {
584 if (clock->p < limit->p.min || limit->p.max < clock->p)
585 INTELPllInvalid("p out of range\n");
586 if (clock->m < limit->m.min || limit->m.max < clock->m)
587 INTELPllInvalid("m out of range\n");
588 }
589
Jesse Barnes79e53942008-11-07 14:24:08 -0800590 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400591 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800592 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
593 * connector, etc., rather than just a single range.
594 */
595 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400596 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800597
598 return true;
599}
600
Ma Lingd4906092009-03-18 20:13:27 +0800601static bool
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300602i9xx_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800603 int target, int refclk, intel_clock_t *match_clock,
604 intel_clock_t *best_clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800605{
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300606 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800607 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800608 int err = target;
609
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200610 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800611 /*
Daniel Vettera210b022012-11-26 17:22:08 +0100612 * For LVDS just rely on its current settings for dual-channel.
613 * We haven't figured out how to reliably set up different
614 * single/dual channel state, if we even can.
Jesse Barnes79e53942008-11-07 14:24:08 -0800615 */
Daniel Vetter1974cad2012-11-26 17:22:09 +0100616 if (intel_is_dual_link_lvds(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800617 clock.p2 = limit->p2.p2_fast;
618 else
619 clock.p2 = limit->p2.p2_slow;
620 } else {
621 if (target < limit->p2.dot_limit)
622 clock.p2 = limit->p2.p2_slow;
623 else
624 clock.p2 = limit->p2.p2_fast;
625 }
626
Akshay Joshi0206e352011-08-16 15:34:10 -0400627 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800628
Zhao Yakui42158662009-11-20 11:24:18 +0800629 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
630 clock.m1++) {
631 for (clock.m2 = limit->m2.min;
632 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterc0efc382013-06-03 20:56:24 +0200633 if (clock.m2 >= clock.m1)
Zhao Yakui42158662009-11-20 11:24:18 +0800634 break;
635 for (clock.n = limit->n.min;
636 clock.n <= limit->n.max; clock.n++) {
637 for (clock.p1 = limit->p1.min;
638 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800639 int this_err;
640
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200641 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000642 if (!intel_PLL_is_valid(dev, limit,
643 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800644 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800645 if (match_clock &&
646 clock.p != match_clock->p)
647 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800648
649 this_err = abs(clock.dot - target);
650 if (this_err < err) {
651 *best_clock = clock;
652 err = this_err;
653 }
654 }
655 }
656 }
657 }
658
659 return (err != target);
660}
661
Ma Lingd4906092009-03-18 20:13:27 +0800662static bool
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300663pnv_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200664 int target, int refclk, intel_clock_t *match_clock,
665 intel_clock_t *best_clock)
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200666{
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300667 struct drm_device *dev = crtc->base.dev;
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200668 intel_clock_t clock;
669 int err = target;
670
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200671 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200672 /*
673 * For LVDS just rely on its current settings for dual-channel.
674 * We haven't figured out how to reliably set up different
675 * single/dual channel state, if we even can.
676 */
677 if (intel_is_dual_link_lvds(dev))
678 clock.p2 = limit->p2.p2_fast;
679 else
680 clock.p2 = limit->p2.p2_slow;
681 } else {
682 if (target < limit->p2.dot_limit)
683 clock.p2 = limit->p2.p2_slow;
684 else
685 clock.p2 = limit->p2.p2_fast;
686 }
687
688 memset(best_clock, 0, sizeof(*best_clock));
689
690 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
691 clock.m1++) {
692 for (clock.m2 = limit->m2.min;
693 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200694 for (clock.n = limit->n.min;
695 clock.n <= limit->n.max; clock.n++) {
696 for (clock.p1 = limit->p1.min;
697 clock.p1 <= limit->p1.max; clock.p1++) {
698 int this_err;
699
700 pineview_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800701 if (!intel_PLL_is_valid(dev, limit,
702 &clock))
703 continue;
704 if (match_clock &&
705 clock.p != match_clock->p)
706 continue;
707
708 this_err = abs(clock.dot - target);
709 if (this_err < err) {
710 *best_clock = clock;
711 err = this_err;
712 }
713 }
714 }
715 }
716 }
717
718 return (err != target);
719}
720
Ma Lingd4906092009-03-18 20:13:27 +0800721static bool
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300722g4x_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200723 int target, int refclk, intel_clock_t *match_clock,
724 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800725{
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300726 struct drm_device *dev = crtc->base.dev;
Ma Lingd4906092009-03-18 20:13:27 +0800727 intel_clock_t clock;
728 int max_n;
729 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400730 /* approximately equals target * 0.00585 */
731 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800732 found = false;
733
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200734 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100735 if (intel_is_dual_link_lvds(dev))
Ma Lingd4906092009-03-18 20:13:27 +0800736 clock.p2 = limit->p2.p2_fast;
737 else
738 clock.p2 = limit->p2.p2_slow;
739 } else {
740 if (target < limit->p2.dot_limit)
741 clock.p2 = limit->p2.p2_slow;
742 else
743 clock.p2 = limit->p2.p2_fast;
744 }
745
746 memset(best_clock, 0, sizeof(*best_clock));
747 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200748 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800749 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200750 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800751 for (clock.m1 = limit->m1.max;
752 clock.m1 >= limit->m1.min; clock.m1--) {
753 for (clock.m2 = limit->m2.max;
754 clock.m2 >= limit->m2.min; clock.m2--) {
755 for (clock.p1 = limit->p1.max;
756 clock.p1 >= limit->p1.min; clock.p1--) {
757 int this_err;
758
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200759 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000760 if (!intel_PLL_is_valid(dev, limit,
761 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800762 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000763
764 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800765 if (this_err < err_most) {
766 *best_clock = clock;
767 err_most = this_err;
768 max_n = clock.n;
769 found = true;
770 }
771 }
772 }
773 }
774 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800775 return found;
776}
Ma Lingd4906092009-03-18 20:13:27 +0800777
Zhenyu Wang2c072452009-06-05 15:38:42 +0800778static bool
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300779vlv_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200780 int target, int refclk, intel_clock_t *match_clock,
781 intel_clock_t *best_clock)
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700782{
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300783 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300784 intel_clock_t clock;
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300785 unsigned int bestppm = 1000000;
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300786 /* min update 19.2 MHz */
787 int max_n = min(limit->n.max, refclk / 19200);
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300788 bool found = false;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700789
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300790 target *= 5; /* fast clock */
791
792 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700793
794 /* based on hardware requirement, prefer smaller n to precision */
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300795 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Ville Syrjälä811bbf02013-09-24 21:26:25 +0300796 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
Ville Syrjälä889059d2013-09-24 21:26:27 +0300797 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
Ville Syrjäläc1a9ae42013-09-24 21:26:23 +0300798 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300799 clock.p = clock.p1 * clock.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700800 /* based on hardware requirement, prefer bigger m1,m2 values */
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300801 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300802 unsigned int ppm, diff;
803
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300804 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
805 refclk * clock.m1);
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300806
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300807 vlv_clock(refclk, &clock);
808
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300809 if (!intel_PLL_is_valid(dev, limit,
810 &clock))
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300811 continue;
812
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300813 diff = abs(clock.dot - target);
814 ppm = div_u64(1000000ULL * diff, target);
815
816 if (ppm < 100 && clock.p > best_clock->p) {
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300817 bestppm = 0;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300818 *best_clock = clock;
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300819 found = true;
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300820 }
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300821
Ville Syrjäläc6861222013-09-24 21:26:21 +0300822 if (bestppm >= 10 && ppm < bestppm - 10) {
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300823 bestppm = ppm;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300824 *best_clock = clock;
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300825 found = true;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700826 }
827 }
828 }
829 }
830 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700831
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300832 return found;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700833}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700834
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300835static bool
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300836chv_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300837 int target, int refclk, intel_clock_t *match_clock,
838 intel_clock_t *best_clock)
839{
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300840 struct drm_device *dev = crtc->base.dev;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300841 intel_clock_t clock;
842 uint64_t m2;
843 int found = false;
844
845 memset(best_clock, 0, sizeof(*best_clock));
846
847 /*
848 * Based on hardware doc, the n always set to 1, and m1 always
849 * set to 2. If requires to support 200Mhz refclk, we need to
850 * revisit this because n may not 1 anymore.
851 */
852 clock.n = 1, clock.m1 = 2;
853 target *= 5; /* fast clock */
854
855 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
856 for (clock.p2 = limit->p2.p2_fast;
857 clock.p2 >= limit->p2.p2_slow;
858 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
859
860 clock.p = clock.p1 * clock.p2;
861
862 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
863 clock.n) << 22, refclk * clock.m1);
864
865 if (m2 > INT_MAX/clock.m1)
866 continue;
867
868 clock.m2 = m2;
869
870 chv_clock(refclk, &clock);
871
872 if (!intel_PLL_is_valid(dev, limit, &clock))
873 continue;
874
875 /* based on hardware requirement, prefer bigger p
876 */
877 if (clock.p > best_clock->p) {
878 *best_clock = clock;
879 found = true;
880 }
881 }
882 }
883
884 return found;
885}
886
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300887bool intel_crtc_active(struct drm_crtc *crtc)
888{
889 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
890
891 /* Be paranoid as we can arrive here with only partial
892 * state retrieved from the hardware during setup.
893 *
Damien Lespiau241bfc32013-09-25 16:45:37 +0100894 * We can ditch the adjusted_mode.crtc_clock check as soon
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300895 * as Haswell has gained clock readout/fastboot support.
896 *
Dave Airlie66e514c2014-04-03 07:51:54 +1000897 * We can ditch the crtc->primary->fb check as soon as we can
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300898 * properly reconstruct framebuffers.
899 */
Matt Roperf4510a22014-04-01 15:22:40 -0700900 return intel_crtc->active && crtc->primary->fb &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200901 intel_crtc->config->base.adjusted_mode.crtc_clock;
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300902}
903
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200904enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
905 enum pipe pipe)
906{
907 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
908 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
909
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200910 return intel_crtc->config->cpu_transcoder;
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200911}
912
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +0300913static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
914{
915 struct drm_i915_private *dev_priv = dev->dev_private;
916 u32 reg = PIPEDSL(pipe);
917 u32 line1, line2;
918 u32 line_mask;
919
920 if (IS_GEN2(dev))
921 line_mask = DSL_LINEMASK_GEN2;
922 else
923 line_mask = DSL_LINEMASK_GEN3;
924
925 line1 = I915_READ(reg) & line_mask;
926 mdelay(5);
927 line2 = I915_READ(reg) & line_mask;
928
929 return line1 == line2;
930}
931
Keith Packardab7ad7f2010-10-03 00:33:06 -0700932/*
933 * intel_wait_for_pipe_off - wait for pipe to turn off
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300934 * @crtc: crtc whose pipe to wait for
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700935 *
936 * After disabling a pipe, we can't wait for vblank in the usual way,
937 * spinning on the vblank interrupt status bit, since we won't actually
938 * see an interrupt when the pipe is disabled.
939 *
Keith Packardab7ad7f2010-10-03 00:33:06 -0700940 * On Gen4 and above:
941 * wait for the pipe register state bit to turn off
942 *
943 * Otherwise:
944 * wait for the display line value to settle (it usually
945 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +0100946 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700947 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300948static void intel_wait_for_pipe_off(struct intel_crtc *crtc)
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700949{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300950 struct drm_device *dev = crtc->base.dev;
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700951 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200952 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300953 enum pipe pipe = crtc->pipe;
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700954
Keith Packardab7ad7f2010-10-03 00:33:06 -0700955 if (INTEL_INFO(dev)->gen >= 4) {
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200956 int reg = PIPECONF(cpu_transcoder);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700957
Keith Packardab7ad7f2010-10-03 00:33:06 -0700958 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100959 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
960 100))
Daniel Vetter284637d2012-07-09 09:51:57 +0200961 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700962 } else {
Keith Packardab7ad7f2010-10-03 00:33:06 -0700963 /* Wait for the display line to settle */
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +0300964 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
Daniel Vetter284637d2012-07-09 09:51:57 +0200965 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700966 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800967}
968
Damien Lespiaub0ea7d32012-12-13 16:09:00 +0000969/*
970 * ibx_digital_port_connected - is the specified port connected?
971 * @dev_priv: i915 private structure
972 * @port: the port to test
973 *
974 * Returns true if @port is connected, false otherwise.
975 */
976bool ibx_digital_port_connected(struct drm_i915_private *dev_priv,
977 struct intel_digital_port *port)
978{
979 u32 bit;
980
Damien Lespiauc36346e2012-12-13 16:09:03 +0000981 if (HAS_PCH_IBX(dev_priv->dev)) {
Robin Schroereba905b2014-05-18 02:24:50 +0200982 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +0000983 case PORT_B:
984 bit = SDE_PORTB_HOTPLUG;
985 break;
986 case PORT_C:
987 bit = SDE_PORTC_HOTPLUG;
988 break;
989 case PORT_D:
990 bit = SDE_PORTD_HOTPLUG;
991 break;
992 default:
993 return true;
994 }
995 } else {
Robin Schroereba905b2014-05-18 02:24:50 +0200996 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +0000997 case PORT_B:
998 bit = SDE_PORTB_HOTPLUG_CPT;
999 break;
1000 case PORT_C:
1001 bit = SDE_PORTC_HOTPLUG_CPT;
1002 break;
1003 case PORT_D:
1004 bit = SDE_PORTD_HOTPLUG_CPT;
1005 break;
1006 default:
1007 return true;
1008 }
Damien Lespiaub0ea7d32012-12-13 16:09:00 +00001009 }
1010
1011 return I915_READ(SDEISR) & bit;
1012}
1013
Jesse Barnesb24e7172011-01-04 15:09:30 -08001014static const char *state_string(bool enabled)
1015{
1016 return enabled ? "on" : "off";
1017}
1018
1019/* Only for pre-ILK configs */
Daniel Vetter55607e82013-06-16 21:42:39 +02001020void assert_pll(struct drm_i915_private *dev_priv,
1021 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001022{
1023 int reg;
1024 u32 val;
1025 bool cur_state;
1026
1027 reg = DPLL(pipe);
1028 val = I915_READ(reg);
1029 cur_state = !!(val & DPLL_VCO_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001030 I915_STATE_WARN(cur_state != state,
Jesse Barnesb24e7172011-01-04 15:09:30 -08001031 "PLL state assertion failure (expected %s, current %s)\n",
1032 state_string(state), state_string(cur_state));
1033}
Jesse Barnesb24e7172011-01-04 15:09:30 -08001034
Jani Nikula23538ef2013-08-27 15:12:22 +03001035/* XXX: the dsi pll is shared between MIPI DSI ports */
1036static void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
1037{
1038 u32 val;
1039 bool cur_state;
1040
1041 mutex_lock(&dev_priv->dpio_lock);
1042 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
1043 mutex_unlock(&dev_priv->dpio_lock);
1044
1045 cur_state = val & DSI_PLL_VCO_EN;
Rob Clarke2c719b2014-12-15 13:56:32 -05001046 I915_STATE_WARN(cur_state != state,
Jani Nikula23538ef2013-08-27 15:12:22 +03001047 "DSI PLL state assertion failure (expected %s, current %s)\n",
1048 state_string(state), state_string(cur_state));
1049}
1050#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1051#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1052
Daniel Vetter55607e82013-06-16 21:42:39 +02001053struct intel_shared_dpll *
Daniel Vettere2b78262013-06-07 23:10:03 +02001054intel_crtc_to_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes040484a2011-01-03 12:14:26 -08001055{
Daniel Vettere2b78262013-06-07 23:10:03 +02001056 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1057
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001058 if (crtc->config->shared_dpll < 0)
Daniel Vettere2b78262013-06-07 23:10:03 +02001059 return NULL;
1060
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001061 return &dev_priv->shared_dplls[crtc->config->shared_dpll];
Daniel Vettere2b78262013-06-07 23:10:03 +02001062}
1063
Jesse Barnesb24e7172011-01-04 15:09:30 -08001064/* For ILK+ */
Daniel Vetter55607e82013-06-16 21:42:39 +02001065void assert_shared_dpll(struct drm_i915_private *dev_priv,
1066 struct intel_shared_dpll *pll,
1067 bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001068{
Jesse Barnes040484a2011-01-03 12:14:26 -08001069 bool cur_state;
Daniel Vetter53589012013-06-05 13:34:16 +02001070 struct intel_dpll_hw_state hw_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001071
Chris Wilson92b27b02012-05-20 18:10:50 +01001072 if (WARN (!pll,
Daniel Vetter46edb022013-06-05 13:34:12 +02001073 "asserting DPLL %s with no DPLL\n", state_string(state)))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001074 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001075
Daniel Vetter53589012013-06-05 13:34:16 +02001076 cur_state = pll->get_hw_state(dev_priv, pll, &hw_state);
Rob Clarke2c719b2014-12-15 13:56:32 -05001077 I915_STATE_WARN(cur_state != state,
Daniel Vetter53589012013-06-05 13:34:16 +02001078 "%s assertion failure (expected %s, current %s)\n",
1079 pll->name, state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001080}
Jesse Barnes040484a2011-01-03 12:14:26 -08001081
1082static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1083 enum pipe pipe, bool state)
1084{
1085 int reg;
1086 u32 val;
1087 bool cur_state;
Paulo Zanoniad80a812012-10-24 16:06:19 -02001088 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1089 pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001090
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001091 if (HAS_DDI(dev_priv->dev)) {
1092 /* DDI does not have a specific FDI_TX register */
Paulo Zanoniad80a812012-10-24 16:06:19 -02001093 reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001094 val = I915_READ(reg);
Paulo Zanoniad80a812012-10-24 16:06:19 -02001095 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001096 } else {
1097 reg = FDI_TX_CTL(pipe);
1098 val = I915_READ(reg);
1099 cur_state = !!(val & FDI_TX_ENABLE);
1100 }
Rob Clarke2c719b2014-12-15 13:56:32 -05001101 I915_STATE_WARN(cur_state != state,
Jesse Barnes040484a2011-01-03 12:14:26 -08001102 "FDI TX state assertion failure (expected %s, current %s)\n",
1103 state_string(state), state_string(cur_state));
1104}
1105#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1106#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1107
1108static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1109 enum pipe pipe, bool state)
1110{
1111 int reg;
1112 u32 val;
1113 bool cur_state;
1114
Paulo Zanonid63fa0d2012-11-20 13:27:35 -02001115 reg = FDI_RX_CTL(pipe);
1116 val = I915_READ(reg);
1117 cur_state = !!(val & FDI_RX_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001118 I915_STATE_WARN(cur_state != state,
Jesse Barnes040484a2011-01-03 12:14:26 -08001119 "FDI RX state assertion failure (expected %s, current %s)\n",
1120 state_string(state), state_string(cur_state));
1121}
1122#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1123#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1124
1125static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1126 enum pipe pipe)
1127{
1128 int reg;
1129 u32 val;
1130
1131 /* ILK FDI PLL is always enabled */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001132 if (INTEL_INFO(dev_priv->dev)->gen == 5)
Jesse Barnes040484a2011-01-03 12:14:26 -08001133 return;
1134
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001135 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001136 if (HAS_DDI(dev_priv->dev))
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001137 return;
1138
Jesse Barnes040484a2011-01-03 12:14:26 -08001139 reg = FDI_TX_CTL(pipe);
1140 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001141 I915_STATE_WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
Jesse Barnes040484a2011-01-03 12:14:26 -08001142}
1143
Daniel Vetter55607e82013-06-16 21:42:39 +02001144void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1145 enum pipe pipe, bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001146{
1147 int reg;
1148 u32 val;
Daniel Vetter55607e82013-06-16 21:42:39 +02001149 bool cur_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001150
1151 reg = FDI_RX_CTL(pipe);
1152 val = I915_READ(reg);
Daniel Vetter55607e82013-06-16 21:42:39 +02001153 cur_state = !!(val & FDI_RX_PLL_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001154 I915_STATE_WARN(cur_state != state,
Daniel Vetter55607e82013-06-16 21:42:39 +02001155 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1156 state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001157}
1158
Daniel Vetterb680c372014-09-19 18:27:27 +02001159void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1160 enum pipe pipe)
Jesse Barnesea0760c2011-01-04 15:09:32 -08001161{
Jani Nikulabedd4db2014-08-22 15:04:13 +03001162 struct drm_device *dev = dev_priv->dev;
1163 int pp_reg;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001164 u32 val;
1165 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001166 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001167
Jani Nikulabedd4db2014-08-22 15:04:13 +03001168 if (WARN_ON(HAS_DDI(dev)))
1169 return;
1170
1171 if (HAS_PCH_SPLIT(dev)) {
1172 u32 port_sel;
1173
Jesse Barnesea0760c2011-01-04 15:09:32 -08001174 pp_reg = PCH_PP_CONTROL;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001175 port_sel = I915_READ(PCH_PP_ON_DELAYS) & PANEL_PORT_SELECT_MASK;
1176
1177 if (port_sel == PANEL_PORT_SELECT_LVDS &&
1178 I915_READ(PCH_LVDS) & LVDS_PIPEB_SELECT)
1179 panel_pipe = PIPE_B;
1180 /* XXX: else fix for eDP */
1181 } else if (IS_VALLEYVIEW(dev)) {
1182 /* presumably write lock depends on pipe, not port select */
1183 pp_reg = VLV_PIPE_PP_CONTROL(pipe);
1184 panel_pipe = pipe;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001185 } else {
1186 pp_reg = PP_CONTROL;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001187 if (I915_READ(LVDS) & LVDS_PIPEB_SELECT)
1188 panel_pipe = PIPE_B;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001189 }
1190
1191 val = I915_READ(pp_reg);
1192 if (!(val & PANEL_POWER_ON) ||
Jani Nikulaec49ba22014-08-21 15:06:25 +03001193 ((val & PANEL_UNLOCK_MASK) == PANEL_UNLOCK_REGS))
Jesse Barnesea0760c2011-01-04 15:09:32 -08001194 locked = false;
1195
Rob Clarke2c719b2014-12-15 13:56:32 -05001196 I915_STATE_WARN(panel_pipe == pipe && locked,
Jesse Barnesea0760c2011-01-04 15:09:32 -08001197 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001198 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001199}
1200
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001201static void assert_cursor(struct drm_i915_private *dev_priv,
1202 enum pipe pipe, bool state)
1203{
1204 struct drm_device *dev = dev_priv->dev;
1205 bool cur_state;
1206
Paulo Zanonid9d82082014-02-27 16:30:56 -03001207 if (IS_845G(dev) || IS_I865G(dev))
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001208 cur_state = I915_READ(_CURACNTR) & CURSOR_ENABLE;
Paulo Zanonid9d82082014-02-27 16:30:56 -03001209 else
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03001210 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001211
Rob Clarke2c719b2014-12-15 13:56:32 -05001212 I915_STATE_WARN(cur_state != state,
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001213 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
1214 pipe_name(pipe), state_string(state), state_string(cur_state));
1215}
1216#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1217#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1218
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001219void assert_pipe(struct drm_i915_private *dev_priv,
1220 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001221{
1222 int reg;
1223 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001224 bool cur_state;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001225 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1226 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001227
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001228 /* if we need the pipe quirk it must be always on */
1229 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1230 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Daniel Vetter8e636782012-01-22 01:36:48 +01001231 state = true;
1232
Daniel Vetterf458ebb2014-09-30 10:56:39 +02001233 if (!intel_display_power_is_enabled(dev_priv,
Paulo Zanonib97186f2013-05-03 12:15:36 -03001234 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
Paulo Zanoni69310162013-01-29 16:35:19 -02001235 cur_state = false;
1236 } else {
1237 reg = PIPECONF(cpu_transcoder);
1238 val = I915_READ(reg);
1239 cur_state = !!(val & PIPECONF_ENABLE);
1240 }
1241
Rob Clarke2c719b2014-12-15 13:56:32 -05001242 I915_STATE_WARN(cur_state != state,
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001243 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001244 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001245}
1246
Chris Wilson931872f2012-01-16 23:01:13 +00001247static void assert_plane(struct drm_i915_private *dev_priv,
1248 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001249{
1250 int reg;
1251 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001252 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001253
1254 reg = DSPCNTR(plane);
1255 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001256 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001257 I915_STATE_WARN(cur_state != state,
Chris Wilson931872f2012-01-16 23:01:13 +00001258 "plane %c assertion failure (expected %s, current %s)\n",
1259 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001260}
1261
Chris Wilson931872f2012-01-16 23:01:13 +00001262#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1263#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1264
Jesse Barnesb24e7172011-01-04 15:09:30 -08001265static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1266 enum pipe pipe)
1267{
Ville Syrjälä653e1022013-06-04 13:49:05 +03001268 struct drm_device *dev = dev_priv->dev;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001269 int reg, i;
1270 u32 val;
1271 int cur_pipe;
1272
Ville Syrjälä653e1022013-06-04 13:49:05 +03001273 /* Primary planes are fixed to pipes on gen4+ */
1274 if (INTEL_INFO(dev)->gen >= 4) {
Adam Jackson28c057942011-10-07 14:38:42 -04001275 reg = DSPCNTR(pipe);
1276 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001277 I915_STATE_WARN(val & DISPLAY_PLANE_ENABLE,
Adam Jackson28c057942011-10-07 14:38:42 -04001278 "plane %c assertion failure, should be disabled but not\n",
1279 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001280 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001281 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001282
Jesse Barnesb24e7172011-01-04 15:09:30 -08001283 /* Need to check both planes against the pipe */
Damien Lespiau055e3932014-08-18 13:49:10 +01001284 for_each_pipe(dev_priv, i) {
Jesse Barnesb24e7172011-01-04 15:09:30 -08001285 reg = DSPCNTR(i);
1286 val = I915_READ(reg);
1287 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1288 DISPPLANE_SEL_PIPE_SHIFT;
Rob Clarke2c719b2014-12-15 13:56:32 -05001289 I915_STATE_WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001290 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1291 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001292 }
1293}
1294
Jesse Barnes19332d72013-03-28 09:55:38 -07001295static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1296 enum pipe pipe)
1297{
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001298 struct drm_device *dev = dev_priv->dev;
Damien Lespiau1fe47782014-03-03 17:31:47 +00001299 int reg, sprite;
Jesse Barnes19332d72013-03-28 09:55:38 -07001300 u32 val;
1301
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001302 if (INTEL_INFO(dev)->gen >= 9) {
1303 for_each_sprite(pipe, sprite) {
1304 val = I915_READ(PLANE_CTL(pipe, sprite));
Rob Clarke2c719b2014-12-15 13:56:32 -05001305 I915_STATE_WARN(val & PLANE_CTL_ENABLE,
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001306 "plane %d assertion failure, should be off on pipe %c but is still active\n",
1307 sprite, pipe_name(pipe));
1308 }
1309 } else if (IS_VALLEYVIEW(dev)) {
Damien Lespiau1fe47782014-03-03 17:31:47 +00001310 for_each_sprite(pipe, sprite) {
1311 reg = SPCNTR(pipe, sprite);
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001312 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001313 I915_STATE_WARN(val & SP_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001314 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +00001315 sprite_name(pipe, sprite), pipe_name(pipe));
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001316 }
1317 } else if (INTEL_INFO(dev)->gen >= 7) {
1318 reg = SPRCTL(pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07001319 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001320 I915_STATE_WARN(val & SPRITE_ENABLE,
Ville Syrjälä06da8da2013-04-17 17:48:51 +03001321 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001322 plane_name(pipe), pipe_name(pipe));
1323 } else if (INTEL_INFO(dev)->gen >= 5) {
1324 reg = DVSCNTR(pipe);
1325 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001326 I915_STATE_WARN(val & DVS_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001327 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1328 plane_name(pipe), pipe_name(pipe));
Jesse Barnes19332d72013-03-28 09:55:38 -07001329 }
1330}
1331
Ville Syrjälä08c71e52014-08-06 14:49:45 +03001332static void assert_vblank_disabled(struct drm_crtc *crtc)
1333{
Rob Clarke2c719b2014-12-15 13:56:32 -05001334 if (I915_STATE_WARN_ON(drm_crtc_vblank_get(crtc) == 0))
Ville Syrjälä08c71e52014-08-06 14:49:45 +03001335 drm_crtc_vblank_put(crtc);
1336}
1337
Paulo Zanoni89eff4b2014-01-08 11:12:28 -02001338static void ibx_assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
Jesse Barnes92f25842011-01-04 15:09:34 -08001339{
1340 u32 val;
1341 bool enabled;
1342
Rob Clarke2c719b2014-12-15 13:56:32 -05001343 I915_STATE_WARN_ON(!(HAS_PCH_IBX(dev_priv->dev) || HAS_PCH_CPT(dev_priv->dev)));
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001344
Jesse Barnes92f25842011-01-04 15:09:34 -08001345 val = I915_READ(PCH_DREF_CONTROL);
1346 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1347 DREF_SUPERSPREAD_SOURCE_MASK));
Rob Clarke2c719b2014-12-15 13:56:32 -05001348 I915_STATE_WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
Jesse Barnes92f25842011-01-04 15:09:34 -08001349}
1350
Daniel Vetterab9412b2013-05-03 11:49:46 +02001351static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1352 enum pipe pipe)
Jesse Barnes92f25842011-01-04 15:09:34 -08001353{
1354 int reg;
1355 u32 val;
1356 bool enabled;
1357
Daniel Vetterab9412b2013-05-03 11:49:46 +02001358 reg = PCH_TRANSCONF(pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001359 val = I915_READ(reg);
1360 enabled = !!(val & TRANS_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001361 I915_STATE_WARN(enabled,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001362 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1363 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001364}
1365
Keith Packard4e634382011-08-06 10:39:45 -07001366static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1367 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001368{
1369 if ((val & DP_PORT_EN) == 0)
1370 return false;
1371
1372 if (HAS_PCH_CPT(dev_priv->dev)) {
1373 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1374 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1375 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1376 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001377 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1378 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1379 return false;
Keith Packardf0575e92011-07-25 22:12:43 -07001380 } else {
1381 if ((val & DP_PIPE_MASK) != (pipe << 30))
1382 return false;
1383 }
1384 return true;
1385}
1386
Keith Packard1519b992011-08-06 10:35:34 -07001387static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1388 enum pipe pipe, u32 val)
1389{
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001390 if ((val & SDVO_ENABLE) == 0)
Keith Packard1519b992011-08-06 10:35:34 -07001391 return false;
1392
1393 if (HAS_PCH_CPT(dev_priv->dev)) {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001394 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001395 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001396 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1397 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1398 return false;
Keith Packard1519b992011-08-06 10:35:34 -07001399 } else {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001400 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001401 return false;
1402 }
1403 return true;
1404}
1405
1406static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1407 enum pipe pipe, u32 val)
1408{
1409 if ((val & LVDS_PORT_EN) == 0)
1410 return false;
1411
1412 if (HAS_PCH_CPT(dev_priv->dev)) {
1413 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1414 return false;
1415 } else {
1416 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1417 return false;
1418 }
1419 return true;
1420}
1421
1422static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1423 enum pipe pipe, u32 val)
1424{
1425 if ((val & ADPA_DAC_ENABLE) == 0)
1426 return false;
1427 if (HAS_PCH_CPT(dev_priv->dev)) {
1428 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1429 return false;
1430 } else {
1431 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1432 return false;
1433 }
1434 return true;
1435}
1436
Jesse Barnes291906f2011-02-02 12:28:03 -08001437static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001438 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001439{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001440 u32 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001441 I915_STATE_WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001442 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001443 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001444
Rob Clarke2c719b2014-12-15 13:56:32 -05001445 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001446 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001447 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001448}
1449
1450static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1451 enum pipe pipe, int reg)
1452{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001453 u32 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001454 I915_STATE_WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001455 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001456 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001457
Rob Clarke2c719b2014-12-15 13:56:32 -05001458 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001459 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001460 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001461}
1462
1463static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1464 enum pipe pipe)
1465{
1466 int reg;
1467 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001468
Keith Packardf0575e92011-07-25 22:12:43 -07001469 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1470 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1471 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001472
1473 reg = PCH_ADPA;
1474 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001475 I915_STATE_WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001476 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001477 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001478
1479 reg = PCH_LVDS;
1480 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001481 I915_STATE_WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001482 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001483 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001484
Paulo Zanonie2debe92013-02-18 19:00:27 -03001485 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1486 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1487 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
Jesse Barnes291906f2011-02-02 12:28:03 -08001488}
1489
Jesse Barnes40e9cf62013-10-03 11:35:46 -07001490static void intel_init_dpio(struct drm_device *dev)
1491{
1492 struct drm_i915_private *dev_priv = dev->dev_private;
1493
1494 if (!IS_VALLEYVIEW(dev))
1495 return;
1496
Chon Ming Leea09cadd2014-04-09 13:28:14 +03001497 /*
1498 * IOSF_PORT_DPIO is used for VLV x2 PHY (DP/HDMI B and C),
1499 * CHV x1 PHY (DP/HDMI D)
1500 * IOSF_PORT_DPIO_2 is used for CHV x2 PHY (DP/HDMI B and C)
1501 */
1502 if (IS_CHERRYVIEW(dev)) {
1503 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO_2;
1504 DPIO_PHY_IOSF_PORT(DPIO_PHY1) = IOSF_PORT_DPIO;
1505 } else {
1506 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO;
1507 }
Jesse Barnes5382f5f352013-12-16 16:34:24 -08001508}
1509
Ville Syrjäläd288f652014-10-28 13:20:22 +02001510static void vlv_enable_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001511 const struct intel_crtc_state *pipe_config)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001512{
Daniel Vetter426115c2013-07-11 22:13:42 +02001513 struct drm_device *dev = crtc->base.dev;
1514 struct drm_i915_private *dev_priv = dev->dev_private;
1515 int reg = DPLL(crtc->pipe);
Ville Syrjäläd288f652014-10-28 13:20:22 +02001516 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001517
Daniel Vetter426115c2013-07-11 22:13:42 +02001518 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001519
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001520 /* No really, not for ILK+ */
Daniel Vetter87442f72013-06-06 00:52:17 +02001521 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev));
1522
1523 /* PLL is protected by panel, make sure we can write it */
Jani Nikula6a9e7362014-08-22 15:06:35 +03001524 if (IS_MOBILE(dev_priv->dev))
Daniel Vetter426115c2013-07-11 22:13:42 +02001525 assert_panel_unlocked(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001526
Daniel Vetter426115c2013-07-11 22:13:42 +02001527 I915_WRITE(reg, dpll);
1528 POSTING_READ(reg);
1529 udelay(150);
1530
1531 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1532 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1533
Ville Syrjäläd288f652014-10-28 13:20:22 +02001534 I915_WRITE(DPLL_MD(crtc->pipe), pipe_config->dpll_hw_state.dpll_md);
Daniel Vetter426115c2013-07-11 22:13:42 +02001535 POSTING_READ(DPLL_MD(crtc->pipe));
Daniel Vetter87442f72013-06-06 00:52:17 +02001536
1537 /* We do this three times for luck */
Daniel Vetter426115c2013-07-11 22:13:42 +02001538 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001539 POSTING_READ(reg);
1540 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001541 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001542 POSTING_READ(reg);
1543 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001544 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001545 POSTING_READ(reg);
1546 udelay(150); /* wait for warmup */
1547}
1548
Ville Syrjäläd288f652014-10-28 13:20:22 +02001549static void chv_enable_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001550 const struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001551{
1552 struct drm_device *dev = crtc->base.dev;
1553 struct drm_i915_private *dev_priv = dev->dev_private;
1554 int pipe = crtc->pipe;
1555 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001556 u32 tmp;
1557
1558 assert_pipe_disabled(dev_priv, crtc->pipe);
1559
1560 BUG_ON(!IS_CHERRYVIEW(dev_priv->dev));
1561
1562 mutex_lock(&dev_priv->dpio_lock);
1563
1564 /* Enable back the 10bit clock to display controller */
1565 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1566 tmp |= DPIO_DCLKP_EN;
1567 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1568
1569 /*
1570 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1571 */
1572 udelay(1);
1573
1574 /* Enable PLL */
Ville Syrjäläd288f652014-10-28 13:20:22 +02001575 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001576
1577 /* Check PLL is locked */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001578 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001579 DRM_ERROR("PLL %d failed to lock\n", pipe);
1580
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001581 /* not sure when this should be written */
Ville Syrjäläd288f652014-10-28 13:20:22 +02001582 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001583 POSTING_READ(DPLL_MD(pipe));
1584
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001585 mutex_unlock(&dev_priv->dpio_lock);
1586}
1587
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001588static int intel_num_dvo_pipes(struct drm_device *dev)
1589{
1590 struct intel_crtc *crtc;
1591 int count = 0;
1592
1593 for_each_intel_crtc(dev, crtc)
1594 count += crtc->active &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001595 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO);
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001596
1597 return count;
1598}
1599
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001600static void i9xx_enable_pll(struct intel_crtc *crtc)
Daniel Vetter87442f72013-06-06 00:52:17 +02001601{
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001602 struct drm_device *dev = crtc->base.dev;
1603 struct drm_i915_private *dev_priv = dev->dev_private;
1604 int reg = DPLL(crtc->pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001605 u32 dpll = crtc->config->dpll_hw_state.dpll;
Daniel Vetter87442f72013-06-06 00:52:17 +02001606
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001607 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001608
1609 /* No really, not for ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001610 BUG_ON(INTEL_INFO(dev)->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001611
1612 /* PLL is protected by panel, make sure we can write it */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001613 if (IS_MOBILE(dev) && !IS_I830(dev))
1614 assert_panel_unlocked(dev_priv, crtc->pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001615
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001616 /* Enable DVO 2x clock on both PLLs if necessary */
1617 if (IS_I830(dev) && intel_num_dvo_pipes(dev) > 0) {
1618 /*
1619 * It appears to be important that we don't enable this
1620 * for the current pipe before otherwise configuring the
1621 * PLL. No idea how this should be handled if multiple
1622 * DVO outputs are enabled simultaneosly.
1623 */
1624 dpll |= DPLL_DVO_2X_MODE;
1625 I915_WRITE(DPLL(!crtc->pipe),
1626 I915_READ(DPLL(!crtc->pipe)) | DPLL_DVO_2X_MODE);
1627 }
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001628
1629 /* Wait for the clocks to stabilize. */
1630 POSTING_READ(reg);
1631 udelay(150);
1632
1633 if (INTEL_INFO(dev)->gen >= 4) {
1634 I915_WRITE(DPLL_MD(crtc->pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001635 crtc->config->dpll_hw_state.dpll_md);
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001636 } else {
1637 /* The pixel multiplier can only be updated once the
1638 * DPLL is enabled and the clocks are stable.
1639 *
1640 * So write it again.
1641 */
1642 I915_WRITE(reg, dpll);
1643 }
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001644
1645 /* We do this three times for luck */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001646 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001647 POSTING_READ(reg);
1648 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001649 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001650 POSTING_READ(reg);
1651 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001652 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001653 POSTING_READ(reg);
1654 udelay(150); /* wait for warmup */
1655}
1656
1657/**
Daniel Vetter50b44a42013-06-05 13:34:33 +02001658 * i9xx_disable_pll - disable a PLL
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001659 * @dev_priv: i915 private structure
1660 * @pipe: pipe PLL to disable
1661 *
1662 * Disable the PLL for @pipe, making sure the pipe is off first.
1663 *
1664 * Note! This is for pre-ILK only.
1665 */
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001666static void i9xx_disable_pll(struct intel_crtc *crtc)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001667{
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001668 struct drm_device *dev = crtc->base.dev;
1669 struct drm_i915_private *dev_priv = dev->dev_private;
1670 enum pipe pipe = crtc->pipe;
1671
1672 /* Disable DVO 2x clock on both PLLs if necessary */
1673 if (IS_I830(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001674 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO) &&
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001675 intel_num_dvo_pipes(dev) == 1) {
1676 I915_WRITE(DPLL(PIPE_B),
1677 I915_READ(DPLL(PIPE_B)) & ~DPLL_DVO_2X_MODE);
1678 I915_WRITE(DPLL(PIPE_A),
1679 I915_READ(DPLL(PIPE_A)) & ~DPLL_DVO_2X_MODE);
1680 }
1681
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001682 /* Don't disable pipe or pipe PLLs if needed */
1683 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1684 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001685 return;
1686
1687 /* Make sure the pipe isn't still relying on us */
1688 assert_pipe_disabled(dev_priv, pipe);
1689
Daniel Vetter50b44a42013-06-05 13:34:33 +02001690 I915_WRITE(DPLL(pipe), 0);
1691 POSTING_READ(DPLL(pipe));
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001692}
1693
Jesse Barnesf6071162013-10-01 10:41:38 -07001694static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1695{
1696 u32 val = 0;
1697
1698 /* Make sure the pipe isn't still relying on us */
1699 assert_pipe_disabled(dev_priv, pipe);
1700
Imre Deake5cbfbf2014-01-09 17:08:16 +02001701 /*
1702 * Leave integrated clock source and reference clock enabled for pipe B.
1703 * The latter is needed for VGA hotplug / manual detection.
1704 */
Jesse Barnesf6071162013-10-01 10:41:38 -07001705 if (pipe == PIPE_B)
Imre Deake5cbfbf2014-01-09 17:08:16 +02001706 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REFA_CLK_ENABLE_VLV;
Jesse Barnesf6071162013-10-01 10:41:38 -07001707 I915_WRITE(DPLL(pipe), val);
1708 POSTING_READ(DPLL(pipe));
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001709
1710}
1711
1712static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1713{
Ville Syrjäläd7520482014-04-09 13:28:59 +03001714 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001715 u32 val;
1716
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001717 /* Make sure the pipe isn't still relying on us */
1718 assert_pipe_disabled(dev_priv, pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001719
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001720 /* Set PLL en = 0 */
Ville Syrjäläd17ec4c2014-06-28 02:03:59 +03001721 val = DPLL_SSC_REF_CLOCK_CHV | DPLL_REFA_CLK_ENABLE_VLV;
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001722 if (pipe != PIPE_A)
1723 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1724 I915_WRITE(DPLL(pipe), val);
1725 POSTING_READ(DPLL(pipe));
Ville Syrjäläd7520482014-04-09 13:28:59 +03001726
1727 mutex_lock(&dev_priv->dpio_lock);
1728
1729 /* Disable 10bit clock to display controller */
1730 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1731 val &= ~DPIO_DCLKP_EN;
1732 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1733
Ville Syrjälä61407f62014-05-27 16:32:55 +03001734 /* disable left/right clock distribution */
1735 if (pipe != PIPE_B) {
1736 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1737 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1738 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1739 } else {
1740 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1741 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1742 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1743 }
1744
Ville Syrjäläd7520482014-04-09 13:28:59 +03001745 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesf6071162013-10-01 10:41:38 -07001746}
1747
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001748void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
1749 struct intel_digital_port *dport)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001750{
1751 u32 port_mask;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001752 int dpll_reg;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001753
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001754 switch (dport->port) {
1755 case PORT_B:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001756 port_mask = DPLL_PORTB_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001757 dpll_reg = DPLL(0);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001758 break;
1759 case PORT_C:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001760 port_mask = DPLL_PORTC_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001761 dpll_reg = DPLL(0);
1762 break;
1763 case PORT_D:
1764 port_mask = DPLL_PORTD_READY_MASK;
1765 dpll_reg = DPIO_PHY_STATUS;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001766 break;
1767 default:
1768 BUG();
1769 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07001770
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001771 if (wait_for((I915_READ(dpll_reg) & port_mask) == 0, 1000))
Jesse Barnes89b667f2013-04-18 14:51:36 -07001772 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001773 port_name(dport->port), I915_READ(dpll_reg));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001774}
1775
Daniel Vetterb14b1052014-04-24 23:55:13 +02001776static void intel_prepare_shared_dpll(struct intel_crtc *crtc)
1777{
1778 struct drm_device *dev = crtc->base.dev;
1779 struct drm_i915_private *dev_priv = dev->dev_private;
1780 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
1781
Chris Wilsonbe19f0f2014-05-28 16:16:42 +01001782 if (WARN_ON(pll == NULL))
1783 return;
1784
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001785 WARN_ON(!pll->config.crtc_mask);
Daniel Vetterb14b1052014-04-24 23:55:13 +02001786 if (pll->active == 0) {
1787 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
1788 WARN_ON(pll->on);
1789 assert_shared_dpll_disabled(dev_priv, pll);
1790
1791 pll->mode_set(dev_priv, pll);
1792 }
1793}
1794
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001795/**
Daniel Vetter85b38942014-04-24 23:55:14 +02001796 * intel_enable_shared_dpll - enable PCH PLL
Jesse Barnes92f25842011-01-04 15:09:34 -08001797 * @dev_priv: i915 private structure
1798 * @pipe: pipe PLL to enable
1799 *
1800 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1801 * drives the transcoder clock.
1802 */
Daniel Vetter85b38942014-04-24 23:55:14 +02001803static void intel_enable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001804{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001805 struct drm_device *dev = crtc->base.dev;
1806 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001807 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes92f25842011-01-04 15:09:34 -08001808
Daniel Vetter87a875b2013-06-05 13:34:19 +02001809 if (WARN_ON(pll == NULL))
Chris Wilson48da64a2012-05-13 20:16:12 +01001810 return;
1811
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001812 if (WARN_ON(pll->config.crtc_mask == 0))
Chris Wilson48da64a2012-05-13 20:16:12 +01001813 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001814
Damien Lespiau74dd6922014-07-29 18:06:17 +01001815 DRM_DEBUG_KMS("enable %s (active %d, on? %d) for crtc %d\n",
Daniel Vetter46edb022013-06-05 13:34:12 +02001816 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001817 crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001818
Daniel Vettercdbd2312013-06-05 13:34:03 +02001819 if (pll->active++) {
1820 WARN_ON(!pll->on);
Daniel Vettere9d69442013-06-05 13:34:15 +02001821 assert_shared_dpll_enabled(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001822 return;
1823 }
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001824 WARN_ON(pll->on);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001825
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001826 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
1827
Daniel Vetter46edb022013-06-05 13:34:12 +02001828 DRM_DEBUG_KMS("enabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001829 pll->enable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001830 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001831}
1832
Damien Lespiauf6daaec2014-08-09 23:00:56 +01001833static void intel_disable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001834{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001835 struct drm_device *dev = crtc->base.dev;
1836 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001837 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001838
Jesse Barnes92f25842011-01-04 15:09:34 -08001839 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001840 BUG_ON(INTEL_INFO(dev)->gen < 5);
Daniel Vetter87a875b2013-06-05 13:34:19 +02001841 if (WARN_ON(pll == NULL))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001842 return;
1843
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001844 if (WARN_ON(pll->config.crtc_mask == 0))
Chris Wilson48da64a2012-05-13 20:16:12 +01001845 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001846
Daniel Vetter46edb022013-06-05 13:34:12 +02001847 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1848 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001849 crtc->base.base.id);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001850
Chris Wilson48da64a2012-05-13 20:16:12 +01001851 if (WARN_ON(pll->active == 0)) {
Daniel Vettere9d69442013-06-05 13:34:15 +02001852 assert_shared_dpll_disabled(dev_priv, pll);
Chris Wilson48da64a2012-05-13 20:16:12 +01001853 return;
1854 }
1855
Daniel Vettere9d69442013-06-05 13:34:15 +02001856 assert_shared_dpll_enabled(dev_priv, pll);
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001857 WARN_ON(!pll->on);
Daniel Vettercdbd2312013-06-05 13:34:03 +02001858 if (--pll->active)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001859 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001860
Daniel Vetter46edb022013-06-05 13:34:12 +02001861 DRM_DEBUG_KMS("disabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001862 pll->disable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001863 pll->on = false;
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001864
1865 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
Jesse Barnes92f25842011-01-04 15:09:34 -08001866}
1867
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001868static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1869 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001870{
Daniel Vetter23670b322012-11-01 09:15:30 +01001871 struct drm_device *dev = dev_priv->dev;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001872 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vettere2b78262013-06-07 23:10:03 +02001873 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter23670b322012-11-01 09:15:30 +01001874 uint32_t reg, val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001875
1876 /* PCH only available on ILK+ */
Ville Syrjälä55522f32014-09-03 14:09:53 +03001877 BUG_ON(!HAS_PCH_SPLIT(dev));
Jesse Barnes040484a2011-01-03 12:14:26 -08001878
1879 /* Make sure PCH DPLL is enabled */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02001880 assert_shared_dpll_enabled(dev_priv,
Daniel Vettere9d69442013-06-05 13:34:15 +02001881 intel_crtc_to_shared_dpll(intel_crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001882
1883 /* FDI must be feeding us bits for PCH ports */
1884 assert_fdi_tx_enabled(dev_priv, pipe);
1885 assert_fdi_rx_enabled(dev_priv, pipe);
1886
Daniel Vetter23670b322012-11-01 09:15:30 +01001887 if (HAS_PCH_CPT(dev)) {
1888 /* Workaround: Set the timing override bit before enabling the
1889 * pch transcoder. */
1890 reg = TRANS_CHICKEN2(pipe);
1891 val = I915_READ(reg);
1892 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1893 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001894 }
Daniel Vetter23670b322012-11-01 09:15:30 +01001895
Daniel Vetterab9412b2013-05-03 11:49:46 +02001896 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001897 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001898 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001899
1900 if (HAS_PCH_IBX(dev_priv->dev)) {
1901 /*
1902 * make the BPC in transcoder be consistent with
1903 * that in pipeconf reg.
1904 */
Daniel Vetterdfd07d72012-12-17 11:21:38 +01001905 val &= ~PIPECONF_BPC_MASK;
1906 val |= pipeconf_val & PIPECONF_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001907 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001908
1909 val &= ~TRANS_INTERLACE_MASK;
1910 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001911 if (HAS_PCH_IBX(dev_priv->dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001912 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001913 val |= TRANS_LEGACY_INTERLACED_ILK;
1914 else
1915 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001916 else
1917 val |= TRANS_PROGRESSIVE;
1918
Jesse Barnes040484a2011-01-03 12:14:26 -08001919 I915_WRITE(reg, val | TRANS_ENABLE);
1920 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001921 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
Jesse Barnes040484a2011-01-03 12:14:26 -08001922}
1923
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001924static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02001925 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08001926{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001927 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001928
1929 /* PCH only available on ILK+ */
Ville Syrjälä55522f32014-09-03 14:09:53 +03001930 BUG_ON(!HAS_PCH_SPLIT(dev_priv->dev));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001931
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001932 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01001933 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02001934 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001935
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001936 /* Workaround: set timing override bit. */
1937 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001938 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001939 I915_WRITE(_TRANSA_CHICKEN2, val);
1940
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02001941 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02001942 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001943
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02001944 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1945 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02001946 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001947 else
1948 val |= TRANS_PROGRESSIVE;
1949
Daniel Vetterab9412b2013-05-03 11:49:46 +02001950 I915_WRITE(LPT_TRANSCONF, val);
1951 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
Paulo Zanoni937bb612012-10-31 18:12:47 -02001952 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001953}
1954
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001955static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1956 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001957{
Daniel Vetter23670b322012-11-01 09:15:30 +01001958 struct drm_device *dev = dev_priv->dev;
1959 uint32_t reg, val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001960
1961 /* FDI relies on the transcoder */
1962 assert_fdi_tx_disabled(dev_priv, pipe);
1963 assert_fdi_rx_disabled(dev_priv, pipe);
1964
Jesse Barnes291906f2011-02-02 12:28:03 -08001965 /* Ports must be off as well */
1966 assert_pch_ports_disabled(dev_priv, pipe);
1967
Daniel Vetterab9412b2013-05-03 11:49:46 +02001968 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001969 val = I915_READ(reg);
1970 val &= ~TRANS_ENABLE;
1971 I915_WRITE(reg, val);
1972 /* wait for PCH transcoder off, transcoder state */
1973 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001974 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
Daniel Vetter23670b322012-11-01 09:15:30 +01001975
1976 if (!HAS_PCH_IBX(dev)) {
1977 /* Workaround: Clear the timing override chicken bit again. */
1978 reg = TRANS_CHICKEN2(pipe);
1979 val = I915_READ(reg);
1980 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1981 I915_WRITE(reg, val);
1982 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001983}
1984
Paulo Zanoniab4d9662012-10-31 18:12:55 -02001985static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001986{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001987 u32 val;
1988
Daniel Vetterab9412b2013-05-03 11:49:46 +02001989 val = I915_READ(LPT_TRANSCONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001990 val &= ~TRANS_ENABLE;
Daniel Vetterab9412b2013-05-03 11:49:46 +02001991 I915_WRITE(LPT_TRANSCONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001992 /* wait for PCH transcoder off, transcoder state */
Daniel Vetterab9412b2013-05-03 11:49:46 +02001993 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02001994 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001995
1996 /* Workaround: clear timing override bit. */
1997 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001998 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001999 I915_WRITE(_TRANSA_CHICKEN2, val);
Jesse Barnes92f25842011-01-04 15:09:34 -08002000}
2001
2002/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002003 * intel_enable_pipe - enable a pipe, asserting requirements
Paulo Zanoni03722642014-01-17 13:51:09 -02002004 * @crtc: crtc responsible for the pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08002005 *
Paulo Zanoni03722642014-01-17 13:51:09 -02002006 * Enable @crtc's pipe, making sure that various hardware specific requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08002007 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002008 */
Paulo Zanonie1fdc472014-01-17 13:51:12 -02002009static void intel_enable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002010{
Paulo Zanoni03722642014-01-17 13:51:09 -02002011 struct drm_device *dev = crtc->base.dev;
2012 struct drm_i915_private *dev_priv = dev->dev_private;
2013 enum pipe pipe = crtc->pipe;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002014 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
2015 pipe);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002016 enum pipe pch_transcoder;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002017 int reg;
2018 u32 val;
2019
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002020 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002021 assert_cursor_disabled(dev_priv, pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002022 assert_sprites_disabled(dev_priv, pipe);
2023
Paulo Zanoni681e5812012-12-06 11:12:38 -02002024 if (HAS_PCH_LPT(dev_priv->dev))
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002025 pch_transcoder = TRANSCODER_A;
2026 else
2027 pch_transcoder = pipe;
2028
Jesse Barnesb24e7172011-01-04 15:09:30 -08002029 /*
2030 * A pipe without a PLL won't actually be able to drive bits from
2031 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
2032 * need the check.
2033 */
2034 if (!HAS_PCH_SPLIT(dev_priv->dev))
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03002035 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
Jani Nikula23538ef2013-08-27 15:12:22 +03002036 assert_dsi_pll_enabled(dev_priv);
2037 else
2038 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002039 else {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002040 if (crtc->config->has_pch_encoder) {
Jesse Barnes040484a2011-01-03 12:14:26 -08002041 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002042 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002043 assert_fdi_tx_pll_enabled(dev_priv,
2044 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08002045 }
2046 /* FIXME: assert CPU port conditions for SNB+ */
2047 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08002048
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002049 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002050 val = I915_READ(reg);
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002051 if (val & PIPECONF_ENABLE) {
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002052 WARN_ON(!((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
2053 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)));
Chris Wilson00d70b12011-03-17 07:18:29 +00002054 return;
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002055 }
Chris Wilson00d70b12011-03-17 07:18:29 +00002056
2057 I915_WRITE(reg, val | PIPECONF_ENABLE);
Paulo Zanoni851855d2013-12-19 19:12:29 -02002058 POSTING_READ(reg);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002059}
2060
2061/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002062 * intel_disable_pipe - disable a pipe, asserting requirements
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002063 * @crtc: crtc whose pipes is to be disabled
Jesse Barnesb24e7172011-01-04 15:09:30 -08002064 *
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002065 * Disable the pipe of @crtc, making sure that various hardware
2066 * specific requirements are met, if applicable, e.g. plane
2067 * disabled, panel fitter off, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002068 *
2069 * Will wait until the pipe has shut down before returning.
2070 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002071static void intel_disable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002072{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002073 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002074 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002075 enum pipe pipe = crtc->pipe;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002076 int reg;
2077 u32 val;
2078
2079 /*
2080 * Make sure planes won't keep trying to pump pixels to us,
2081 * or we might hang the display.
2082 */
2083 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002084 assert_cursor_disabled(dev_priv, pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07002085 assert_sprites_disabled(dev_priv, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002086
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002087 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002088 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00002089 if ((val & PIPECONF_ENABLE) == 0)
2090 return;
2091
Ville Syrjälä67adc642014-08-15 01:21:57 +03002092 /*
2093 * Double wide has implications for planes
2094 * so best keep it disabled when not needed.
2095 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002096 if (crtc->config->double_wide)
Ville Syrjälä67adc642014-08-15 01:21:57 +03002097 val &= ~PIPECONF_DOUBLE_WIDE;
2098
2099 /* Don't disable pipe or pipe PLLs if needed */
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002100 if (!(pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) &&
2101 !(pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Ville Syrjälä67adc642014-08-15 01:21:57 +03002102 val &= ~PIPECONF_ENABLE;
2103
2104 I915_WRITE(reg, val);
2105 if ((val & PIPECONF_ENABLE) == 0)
2106 intel_wait_for_pipe_off(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002107}
2108
Keith Packardd74362c2011-07-28 14:47:14 -07002109/*
2110 * Plane regs are double buffered, going from enabled->disabled needs a
2111 * trigger in order to latch. The display address reg provides this.
2112 */
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002113void intel_flush_primary_plane(struct drm_i915_private *dev_priv,
2114 enum plane plane)
Keith Packardd74362c2011-07-28 14:47:14 -07002115{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00002116 struct drm_device *dev = dev_priv->dev;
2117 u32 reg = INTEL_INFO(dev)->gen >= 4 ? DSPSURF(plane) : DSPADDR(plane);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002118
2119 I915_WRITE(reg, I915_READ(reg));
2120 POSTING_READ(reg);
Keith Packardd74362c2011-07-28 14:47:14 -07002121}
2122
Jesse Barnesb24e7172011-01-04 15:09:30 -08002123/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002124 * intel_enable_primary_hw_plane - enable the primary plane on a given pipe
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002125 * @plane: plane to be enabled
2126 * @crtc: crtc for the plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002127 *
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002128 * Enable @plane on @crtc, making sure that the pipe is running first.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002129 */
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002130static void intel_enable_primary_hw_plane(struct drm_plane *plane,
2131 struct drm_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002132{
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002133 struct drm_device *dev = plane->dev;
2134 struct drm_i915_private *dev_priv = dev->dev_private;
2135 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002136
2137 /* If the pipe isn't enabled, we can't pump pixels and may hang */
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002138 assert_pipe_enabled(dev_priv, intel_crtc->pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002139
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002140 if (intel_crtc->primary_enabled)
2141 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002142
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002143 intel_crtc->primary_enabled = true;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002144
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002145 dev_priv->display.update_primary_plane(crtc, plane->fb,
2146 crtc->x, crtc->y);
Ville Syrjälä33c3b0d2014-06-24 13:59:28 +03002147
2148 /*
2149 * BDW signals flip done immediately if the plane
2150 * is disabled, even if the plane enable is already
2151 * armed to occur at the next vblank :(
2152 */
2153 if (IS_BROADWELL(dev))
2154 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002155}
2156
Jesse Barnesb24e7172011-01-04 15:09:30 -08002157/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002158 * intel_disable_primary_hw_plane - disable the primary hardware plane
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002159 * @plane: plane to be disabled
2160 * @crtc: crtc for the plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002161 *
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002162 * Disable @plane on @crtc, making sure that the pipe is running first.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002163 */
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002164static void intel_disable_primary_hw_plane(struct drm_plane *plane,
2165 struct drm_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002166{
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002167 struct drm_device *dev = plane->dev;
2168 struct drm_i915_private *dev_priv = dev->dev_private;
2169 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2170
Matt Roper32b7eee2014-12-24 07:59:06 -08002171 if (WARN_ON(!intel_crtc->active))
2172 return;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002173
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002174 if (!intel_crtc->primary_enabled)
2175 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002176
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002177 intel_crtc->primary_enabled = false;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002178
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002179 dev_priv->display.update_primary_plane(crtc, plane->fb,
2180 crtc->x, crtc->y);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002181}
2182
Chris Wilson693db182013-03-05 14:52:39 +00002183static bool need_vtd_wa(struct drm_device *dev)
2184{
2185#ifdef CONFIG_INTEL_IOMMU
2186 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2187 return true;
2188#endif
2189 return false;
2190}
2191
Damien Lespiauec2c9812015-01-20 12:51:45 +00002192int
2193intel_fb_align_height(struct drm_device *dev, int height, unsigned int tiling)
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002194{
2195 int tile_height;
2196
Damien Lespiauec2c9812015-01-20 12:51:45 +00002197 tile_height = tiling ? (IS_GEN2(dev) ? 16 : 8) : 1;
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002198 return ALIGN(height, tile_height);
2199}
2200
Chris Wilson127bd2a2010-07-23 23:32:05 +01002201int
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002202intel_pin_and_fence_fb_obj(struct drm_plane *plane,
2203 struct drm_framebuffer *fb,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002204 struct intel_engine_cs *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002205{
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002206 struct drm_device *dev = fb->dev;
Chris Wilsonce453d82011-02-21 14:43:56 +00002207 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002208 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002209 u32 alignment;
2210 int ret;
2211
Matt Roperebcdd392014-07-09 16:22:11 -07002212 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
2213
Chris Wilson05394f32010-11-08 19:18:58 +00002214 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002215 case I915_TILING_NONE:
Damien Lespiau1fada4c2013-07-03 21:06:02 +01002216 if (INTEL_INFO(dev)->gen >= 9)
2217 alignment = 256 * 1024;
2218 else if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
Chris Wilson534843d2010-07-05 18:01:46 +01002219 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002220 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01002221 alignment = 4 * 1024;
2222 else
2223 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002224 break;
2225 case I915_TILING_X:
Damien Lespiau1fada4c2013-07-03 21:06:02 +01002226 if (INTEL_INFO(dev)->gen >= 9)
2227 alignment = 256 * 1024;
2228 else {
2229 /* pin() will align the object as required by fence */
2230 alignment = 0;
2231 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002232 break;
2233 case I915_TILING_Y:
Daniel Vetter80075d42013-10-09 21:23:52 +02002234 WARN(1, "Y tiled bo slipped through, driver bug!\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002235 return -EINVAL;
2236 default:
2237 BUG();
2238 }
2239
Chris Wilson693db182013-03-05 14:52:39 +00002240 /* Note that the w/a also requires 64 PTE of padding following the
2241 * bo. We currently fill all unused PTE with the shadow page and so
2242 * we should always have valid PTE following the scanout preventing
2243 * the VT-d warning.
2244 */
2245 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2246 alignment = 256 * 1024;
2247
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002248 /*
2249 * Global gtt pte registers are special registers which actually forward
2250 * writes to a chunk of system memory. Which means that there is no risk
2251 * that the register values disappear as soon as we call
2252 * intel_runtime_pm_put(), so it is correct to wrap only the
2253 * pin/unpin/fence and not more.
2254 */
2255 intel_runtime_pm_get(dev_priv);
2256
Chris Wilsonce453d82011-02-21 14:43:56 +00002257 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002258 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01002259 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00002260 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002261
2262 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2263 * fence, whereas 965+ only requires a fence if using
2264 * framebuffer compression. For simplicity, we always install
2265 * a fence as the cost is not that onerous.
2266 */
Chris Wilson06d98132012-04-17 15:31:24 +01002267 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002268 if (ret)
2269 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002270
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002271 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002272
Chris Wilsonce453d82011-02-21 14:43:56 +00002273 dev_priv->mm.interruptible = true;
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002274 intel_runtime_pm_put(dev_priv);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002275 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01002276
2277err_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01002278 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00002279err_interruptible:
2280 dev_priv->mm.interruptible = true;
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002281 intel_runtime_pm_put(dev_priv);
Chris Wilson48b956c2010-09-14 12:50:34 +01002282 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002283}
2284
Chris Wilson1690e1e2011-12-14 13:57:08 +01002285void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
2286{
Matt Roperebcdd392014-07-09 16:22:11 -07002287 WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex));
2288
Chris Wilson1690e1e2011-12-14 13:57:08 +01002289 i915_gem_object_unpin_fence(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01002290 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002291}
2292
Daniel Vetterc2c75132012-07-05 12:17:30 +02002293/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2294 * is assumed to be a power-of-two. */
Chris Wilsonbc752862013-02-21 20:04:31 +00002295unsigned long intel_gen4_compute_page_offset(int *x, int *y,
2296 unsigned int tiling_mode,
2297 unsigned int cpp,
2298 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02002299{
Chris Wilsonbc752862013-02-21 20:04:31 +00002300 if (tiling_mode != I915_TILING_NONE) {
2301 unsigned int tile_rows, tiles;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002302
Chris Wilsonbc752862013-02-21 20:04:31 +00002303 tile_rows = *y / 8;
2304 *y %= 8;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002305
Chris Wilsonbc752862013-02-21 20:04:31 +00002306 tiles = *x / (512/cpp);
2307 *x %= 512/cpp;
2308
2309 return tile_rows * pitch * 8 + tiles * 4096;
2310 } else {
2311 unsigned int offset;
2312
2313 offset = *y * pitch + *x * cpp;
2314 *y = 0;
2315 *x = (offset & 4095) / cpp;
2316 return offset & -4096;
2317 }
Daniel Vetterc2c75132012-07-05 12:17:30 +02002318}
2319
Damien Lespiaub35d63f2015-01-20 12:51:50 +00002320static int i9xx_format_to_fourcc(int format)
Jesse Barnes46f297f2014-03-07 08:57:48 -08002321{
2322 switch (format) {
2323 case DISPPLANE_8BPP:
2324 return DRM_FORMAT_C8;
2325 case DISPPLANE_BGRX555:
2326 return DRM_FORMAT_XRGB1555;
2327 case DISPPLANE_BGRX565:
2328 return DRM_FORMAT_RGB565;
2329 default:
2330 case DISPPLANE_BGRX888:
2331 return DRM_FORMAT_XRGB8888;
2332 case DISPPLANE_RGBX888:
2333 return DRM_FORMAT_XBGR8888;
2334 case DISPPLANE_BGRX101010:
2335 return DRM_FORMAT_XRGB2101010;
2336 case DISPPLANE_RGBX101010:
2337 return DRM_FORMAT_XBGR2101010;
2338 }
2339}
2340
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00002341static int skl_format_to_fourcc(int format, bool rgb_order, bool alpha)
2342{
2343 switch (format) {
2344 case PLANE_CTL_FORMAT_RGB_565:
2345 return DRM_FORMAT_RGB565;
2346 default:
2347 case PLANE_CTL_FORMAT_XRGB_8888:
2348 if (rgb_order) {
2349 if (alpha)
2350 return DRM_FORMAT_ABGR8888;
2351 else
2352 return DRM_FORMAT_XBGR8888;
2353 } else {
2354 if (alpha)
2355 return DRM_FORMAT_ARGB8888;
2356 else
2357 return DRM_FORMAT_XRGB8888;
2358 }
2359 case PLANE_CTL_FORMAT_XRGB_2101010:
2360 if (rgb_order)
2361 return DRM_FORMAT_XBGR2101010;
2362 else
2363 return DRM_FORMAT_XRGB2101010;
2364 }
2365}
2366
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002367static bool
2368intel_alloc_plane_obj(struct intel_crtc *crtc,
2369 struct intel_initial_plane_config *plane_config)
Jesse Barnes46f297f2014-03-07 08:57:48 -08002370{
2371 struct drm_device *dev = crtc->base.dev;
2372 struct drm_i915_gem_object *obj = NULL;
2373 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
2374 u32 base = plane_config->base;
2375
Chris Wilsonff2652e2014-03-10 08:07:02 +00002376 if (plane_config->size == 0)
2377 return false;
2378
Jesse Barnes46f297f2014-03-07 08:57:48 -08002379 obj = i915_gem_object_create_stolen_for_preallocated(dev, base, base,
2380 plane_config->size);
2381 if (!obj)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002382 return false;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002383
Damien Lespiau49af4492015-01-20 12:51:44 +00002384 obj->tiling_mode = plane_config->tiling;
2385 if (obj->tiling_mode == I915_TILING_X)
Dave Airlie66e514c2014-04-03 07:51:54 +10002386 obj->stride = crtc->base.primary->fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002387
Dave Airlie66e514c2014-04-03 07:51:54 +10002388 mode_cmd.pixel_format = crtc->base.primary->fb->pixel_format;
2389 mode_cmd.width = crtc->base.primary->fb->width;
2390 mode_cmd.height = crtc->base.primary->fb->height;
2391 mode_cmd.pitches[0] = crtc->base.primary->fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002392
2393 mutex_lock(&dev->struct_mutex);
2394
Dave Airlie66e514c2014-04-03 07:51:54 +10002395 if (intel_framebuffer_init(dev, to_intel_framebuffer(crtc->base.primary->fb),
Jesse Barnes484b41d2014-03-07 08:57:55 -08002396 &mode_cmd, obj)) {
Jesse Barnes46f297f2014-03-07 08:57:48 -08002397 DRM_DEBUG_KMS("intel fb init failed\n");
2398 goto out_unref_obj;
2399 }
2400
Daniel Vettera071fa02014-06-18 23:28:09 +02002401 obj->frontbuffer_bits = INTEL_FRONTBUFFER_PRIMARY(crtc->pipe);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002402 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002403
2404 DRM_DEBUG_KMS("plane fb obj %p\n", obj);
2405 return true;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002406
2407out_unref_obj:
2408 drm_gem_object_unreference(&obj->base);
2409 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002410 return false;
2411}
2412
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002413static void
2414intel_find_plane_obj(struct intel_crtc *intel_crtc,
2415 struct intel_initial_plane_config *plane_config)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002416{
2417 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnesd9ceb812014-10-09 12:57:43 -07002418 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002419 struct drm_crtc *c;
2420 struct intel_crtc *i;
Matt Roper2ff8fde2014-07-08 07:50:07 -07002421 struct drm_i915_gem_object *obj;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002422
Dave Airlie66e514c2014-04-03 07:51:54 +10002423 if (!intel_crtc->base.primary->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002424 return;
2425
2426 if (intel_alloc_plane_obj(intel_crtc, plane_config))
2427 return;
2428
Dave Airlie66e514c2014-04-03 07:51:54 +10002429 kfree(intel_crtc->base.primary->fb);
2430 intel_crtc->base.primary->fb = NULL;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002431
2432 /*
2433 * Failed to alloc the obj, check to see if we should share
2434 * an fb with another CRTC instead
2435 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002436 for_each_crtc(dev, c) {
Jesse Barnes484b41d2014-03-07 08:57:55 -08002437 i = to_intel_crtc(c);
2438
2439 if (c == &intel_crtc->base)
2440 continue;
2441
Matt Roper2ff8fde2014-07-08 07:50:07 -07002442 if (!i->active)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002443 continue;
2444
Matt Roper2ff8fde2014-07-08 07:50:07 -07002445 obj = intel_fb_obj(c->primary->fb);
2446 if (obj == NULL)
2447 continue;
2448
2449 if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) {
Jesse Barnesd9ceb812014-10-09 12:57:43 -07002450 if (obj->tiling_mode != I915_TILING_NONE)
2451 dev_priv->preserve_bios_swizzle = true;
2452
Dave Airlie66e514c2014-04-03 07:51:54 +10002453 drm_framebuffer_reference(c->primary->fb);
2454 intel_crtc->base.primary->fb = c->primary->fb;
Matt Roper2ff8fde2014-07-08 07:50:07 -07002455 obj->frontbuffer_bits |= INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002456 break;
2457 }
2458 }
Jesse Barnes46f297f2014-03-07 08:57:48 -08002459}
2460
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002461static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2462 struct drm_framebuffer *fb,
2463 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07002464{
2465 struct drm_device *dev = crtc->dev;
2466 struct drm_i915_private *dev_priv = dev->dev_private;
2467 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002468 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002469 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002470 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002471 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002472 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302473 int pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002474
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002475 if (!intel_crtc->primary_enabled) {
2476 I915_WRITE(reg, 0);
2477 if (INTEL_INFO(dev)->gen >= 4)
2478 I915_WRITE(DSPSURF(plane), 0);
2479 else
2480 I915_WRITE(DSPADDR(plane), 0);
2481 POSTING_READ(reg);
2482 return;
2483 }
2484
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002485 obj = intel_fb_obj(fb);
2486 if (WARN_ON(obj == NULL))
2487 return;
2488
2489 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2490
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002491 dspcntr = DISPPLANE_GAMMA_ENABLE;
2492
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002493 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002494
2495 if (INTEL_INFO(dev)->gen < 4) {
2496 if (intel_crtc->pipe == PIPE_B)
2497 dspcntr |= DISPPLANE_SEL_PIPE_B;
2498
2499 /* pipesrc and dspsize control the size that is scaled from,
2500 * which should always be the user's requested size.
2501 */
2502 I915_WRITE(DSPSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002503 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2504 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002505 I915_WRITE(DSPPOS(plane), 0);
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002506 } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) {
2507 I915_WRITE(PRIMSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002508 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2509 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002510 I915_WRITE(PRIMPOS(plane), 0);
2511 I915_WRITE(PRIMCNSTALPHA(plane), 0);
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002512 }
2513
Ville Syrjälä57779d02012-10-31 17:50:14 +02002514 switch (fb->pixel_format) {
2515 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002516 dspcntr |= DISPPLANE_8BPP;
2517 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002518 case DRM_FORMAT_XRGB1555:
2519 case DRM_FORMAT_ARGB1555:
2520 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002521 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002522 case DRM_FORMAT_RGB565:
2523 dspcntr |= DISPPLANE_BGRX565;
2524 break;
2525 case DRM_FORMAT_XRGB8888:
2526 case DRM_FORMAT_ARGB8888:
2527 dspcntr |= DISPPLANE_BGRX888;
2528 break;
2529 case DRM_FORMAT_XBGR8888:
2530 case DRM_FORMAT_ABGR8888:
2531 dspcntr |= DISPPLANE_RGBX888;
2532 break;
2533 case DRM_FORMAT_XRGB2101010:
2534 case DRM_FORMAT_ARGB2101010:
2535 dspcntr |= DISPPLANE_BGRX101010;
2536 break;
2537 case DRM_FORMAT_XBGR2101010:
2538 case DRM_FORMAT_ABGR2101010:
2539 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002540 break;
2541 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002542 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07002543 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002544
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002545 if (INTEL_INFO(dev)->gen >= 4 &&
2546 obj->tiling_mode != I915_TILING_NONE)
2547 dspcntr |= DISPPLANE_TILED;
Jesse Barnes81255562010-08-02 12:07:50 -07002548
Ville Syrjäläde1aa622013-06-07 10:47:01 +03002549 if (IS_G4X(dev))
2550 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2551
Ville Syrjäläb98971272014-08-27 16:51:22 +03002552 linear_offset = y * fb->pitches[0] + x * pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002553
Daniel Vetterc2c75132012-07-05 12:17:30 +02002554 if (INTEL_INFO(dev)->gen >= 4) {
2555 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002556 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002557 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002558 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002559 linear_offset -= intel_crtc->dspaddr_offset;
2560 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002561 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002562 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002563
Matt Roper8e7d6882015-01-21 16:35:41 -08002564 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302565 dspcntr |= DISPPLANE_ROTATE_180;
2566
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002567 x += (intel_crtc->config->pipe_src_w - 1);
2568 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302569
2570 /* Finding the last pixel of the last line of the display
2571 data and adding to linear_offset*/
2572 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002573 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2574 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302575 }
2576
2577 I915_WRITE(reg, dspcntr);
2578
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002579 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2580 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2581 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002582 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002583 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002584 I915_WRITE(DSPSURF(plane),
2585 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002586 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002587 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002588 } else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002589 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002590 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002591}
2592
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002593static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2594 struct drm_framebuffer *fb,
2595 int x, int y)
Jesse Barnes17638cd2011-06-24 12:19:23 -07002596{
2597 struct drm_device *dev = crtc->dev;
2598 struct drm_i915_private *dev_priv = dev->dev_private;
2599 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002600 struct drm_i915_gem_object *obj;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002601 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002602 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002603 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002604 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302605 int pixel_size;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002606
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002607 if (!intel_crtc->primary_enabled) {
2608 I915_WRITE(reg, 0);
2609 I915_WRITE(DSPSURF(plane), 0);
2610 POSTING_READ(reg);
2611 return;
2612 }
2613
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002614 obj = intel_fb_obj(fb);
2615 if (WARN_ON(obj == NULL))
2616 return;
2617
2618 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2619
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002620 dspcntr = DISPPLANE_GAMMA_ENABLE;
2621
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002622 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002623
2624 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
2625 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
2626
Ville Syrjälä57779d02012-10-31 17:50:14 +02002627 switch (fb->pixel_format) {
2628 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002629 dspcntr |= DISPPLANE_8BPP;
2630 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002631 case DRM_FORMAT_RGB565:
2632 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002633 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002634 case DRM_FORMAT_XRGB8888:
2635 case DRM_FORMAT_ARGB8888:
2636 dspcntr |= DISPPLANE_BGRX888;
2637 break;
2638 case DRM_FORMAT_XBGR8888:
2639 case DRM_FORMAT_ABGR8888:
2640 dspcntr |= DISPPLANE_RGBX888;
2641 break;
2642 case DRM_FORMAT_XRGB2101010:
2643 case DRM_FORMAT_ARGB2101010:
2644 dspcntr |= DISPPLANE_BGRX101010;
2645 break;
2646 case DRM_FORMAT_XBGR2101010:
2647 case DRM_FORMAT_ABGR2101010:
2648 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002649 break;
2650 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002651 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002652 }
2653
2654 if (obj->tiling_mode != I915_TILING_NONE)
2655 dspcntr |= DISPPLANE_TILED;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002656
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002657 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03002658 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002659
Ville Syrjäläb98971272014-08-27 16:51:22 +03002660 linear_offset = y * fb->pitches[0] + x * pixel_size;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002661 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002662 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002663 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002664 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002665 linear_offset -= intel_crtc->dspaddr_offset;
Matt Roper8e7d6882015-01-21 16:35:41 -08002666 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302667 dspcntr |= DISPPLANE_ROTATE_180;
2668
2669 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002670 x += (intel_crtc->config->pipe_src_w - 1);
2671 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302672
2673 /* Finding the last pixel of the last line of the display
2674 data and adding to linear_offset*/
2675 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002676 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2677 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302678 }
2679 }
2680
2681 I915_WRITE(reg, dspcntr);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002682
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002683 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2684 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2685 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002686 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002687 I915_WRITE(DSPSURF(plane),
2688 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Paulo Zanonib3dc6852013-11-02 21:07:33 -07002689 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002690 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2691 } else {
2692 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2693 I915_WRITE(DSPLINOFF(plane), linear_offset);
2694 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002695 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002696}
2697
Damien Lespiau70d21f02013-07-03 21:06:04 +01002698static void skylake_update_primary_plane(struct drm_crtc *crtc,
2699 struct drm_framebuffer *fb,
2700 int x, int y)
2701{
2702 struct drm_device *dev = crtc->dev;
2703 struct drm_i915_private *dev_priv = dev->dev_private;
2704 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2705 struct intel_framebuffer *intel_fb;
2706 struct drm_i915_gem_object *obj;
2707 int pipe = intel_crtc->pipe;
2708 u32 plane_ctl, stride;
2709
2710 if (!intel_crtc->primary_enabled) {
2711 I915_WRITE(PLANE_CTL(pipe, 0), 0);
2712 I915_WRITE(PLANE_SURF(pipe, 0), 0);
2713 POSTING_READ(PLANE_CTL(pipe, 0));
2714 return;
2715 }
2716
2717 plane_ctl = PLANE_CTL_ENABLE |
2718 PLANE_CTL_PIPE_GAMMA_ENABLE |
2719 PLANE_CTL_PIPE_CSC_ENABLE;
2720
2721 switch (fb->pixel_format) {
2722 case DRM_FORMAT_RGB565:
2723 plane_ctl |= PLANE_CTL_FORMAT_RGB_565;
2724 break;
2725 case DRM_FORMAT_XRGB8888:
2726 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2727 break;
2728 case DRM_FORMAT_XBGR8888:
2729 plane_ctl |= PLANE_CTL_ORDER_RGBX;
2730 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2731 break;
2732 case DRM_FORMAT_XRGB2101010:
2733 plane_ctl |= PLANE_CTL_FORMAT_XRGB_2101010;
2734 break;
2735 case DRM_FORMAT_XBGR2101010:
2736 plane_ctl |= PLANE_CTL_ORDER_RGBX;
2737 plane_ctl |= PLANE_CTL_FORMAT_XRGB_2101010;
2738 break;
2739 default:
2740 BUG();
2741 }
2742
2743 intel_fb = to_intel_framebuffer(fb);
2744 obj = intel_fb->obj;
2745
2746 /*
2747 * The stride is either expressed as a multiple of 64 bytes chunks for
2748 * linear buffers or in number of tiles for tiled buffers.
2749 */
2750 switch (obj->tiling_mode) {
2751 case I915_TILING_NONE:
2752 stride = fb->pitches[0] >> 6;
2753 break;
2754 case I915_TILING_X:
2755 plane_ctl |= PLANE_CTL_TILED_X;
2756 stride = fb->pitches[0] >> 9;
2757 break;
2758 default:
2759 BUG();
2760 }
2761
2762 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
Matt Roper8e7d6882015-01-21 16:35:41 -08002763 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180))
Sonika Jindal1447dde2014-10-04 10:53:31 +01002764 plane_ctl |= PLANE_CTL_ROTATE_180;
Damien Lespiau70d21f02013-07-03 21:06:04 +01002765
2766 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
2767
2768 DRM_DEBUG_KMS("Writing base %08lX %d,%d,%d,%d pitch=%d\n",
2769 i915_gem_obj_ggtt_offset(obj),
2770 x, y, fb->width, fb->height,
2771 fb->pitches[0]);
2772
2773 I915_WRITE(PLANE_POS(pipe, 0), 0);
2774 I915_WRITE(PLANE_OFFSET(pipe, 0), (y << 16) | x);
2775 I915_WRITE(PLANE_SIZE(pipe, 0),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002776 (intel_crtc->config->pipe_src_h - 1) << 16 |
2777 (intel_crtc->config->pipe_src_w - 1));
Damien Lespiau70d21f02013-07-03 21:06:04 +01002778 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
2779 I915_WRITE(PLANE_SURF(pipe, 0), i915_gem_obj_ggtt_offset(obj));
2780
2781 POSTING_READ(PLANE_SURF(pipe, 0));
2782}
2783
Jesse Barnes17638cd2011-06-24 12:19:23 -07002784/* Assume fb object is pinned & idle & fenced and just update base pointers */
2785static int
2786intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2787 int x, int y, enum mode_set_atomic state)
2788{
2789 struct drm_device *dev = crtc->dev;
2790 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002791
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002792 if (dev_priv->display.disable_fbc)
2793 dev_priv->display.disable_fbc(dev);
Jesse Barnes81255562010-08-02 12:07:50 -07002794
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002795 dev_priv->display.update_primary_plane(crtc, fb, x, y);
2796
2797 return 0;
Jesse Barnes81255562010-08-02 12:07:50 -07002798}
2799
Ville Syrjälä75147472014-11-24 18:28:11 +02002800static void intel_complete_page_flips(struct drm_device *dev)
Ville Syrjälä96a02912013-02-18 19:08:49 +02002801{
Ville Syrjälä96a02912013-02-18 19:08:49 +02002802 struct drm_crtc *crtc;
2803
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002804 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002805 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2806 enum plane plane = intel_crtc->plane;
2807
2808 intel_prepare_page_flip(dev, plane);
2809 intel_finish_page_flip_plane(dev, plane);
2810 }
Ville Syrjälä75147472014-11-24 18:28:11 +02002811}
2812
2813static void intel_update_primary_planes(struct drm_device *dev)
2814{
2815 struct drm_i915_private *dev_priv = dev->dev_private;
2816 struct drm_crtc *crtc;
Ville Syrjälä96a02912013-02-18 19:08:49 +02002817
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002818 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002819 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2820
Rob Clark51fd3712013-11-19 12:10:12 -05002821 drm_modeset_lock(&crtc->mutex, NULL);
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002822 /*
2823 * FIXME: Once we have proper support for primary planes (and
2824 * disabling them without disabling the entire crtc) allow again
Dave Airlie66e514c2014-04-03 07:51:54 +10002825 * a NULL crtc->primary->fb.
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002826 */
Matt Roperf4510a22014-04-01 15:22:40 -07002827 if (intel_crtc->active && crtc->primary->fb)
Matt Roper262ca2b2014-03-18 17:22:55 -07002828 dev_priv->display.update_primary_plane(crtc,
Dave Airlie66e514c2014-04-03 07:51:54 +10002829 crtc->primary->fb,
Matt Roper262ca2b2014-03-18 17:22:55 -07002830 crtc->x,
2831 crtc->y);
Rob Clark51fd3712013-11-19 12:10:12 -05002832 drm_modeset_unlock(&crtc->mutex);
Ville Syrjälä96a02912013-02-18 19:08:49 +02002833 }
2834}
2835
Ville Syrjälä75147472014-11-24 18:28:11 +02002836void intel_prepare_reset(struct drm_device *dev)
2837{
Ville Syrjäläf98ce922014-11-21 21:54:30 +02002838 struct drm_i915_private *dev_priv = to_i915(dev);
2839 struct intel_crtc *crtc;
2840
Ville Syrjälä75147472014-11-24 18:28:11 +02002841 /* no reset support for gen2 */
2842 if (IS_GEN2(dev))
2843 return;
2844
2845 /* reset doesn't touch the display */
2846 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
2847 return;
2848
2849 drm_modeset_lock_all(dev);
Ville Syrjäläf98ce922014-11-21 21:54:30 +02002850
2851 /*
2852 * Disabling the crtcs gracefully seems nicer. Also the
2853 * g33 docs say we should at least disable all the planes.
2854 */
2855 for_each_intel_crtc(dev, crtc) {
2856 if (crtc->active)
2857 dev_priv->display.crtc_disable(&crtc->base);
2858 }
Ville Syrjälä75147472014-11-24 18:28:11 +02002859}
2860
2861void intel_finish_reset(struct drm_device *dev)
2862{
2863 struct drm_i915_private *dev_priv = to_i915(dev);
2864
2865 /*
2866 * Flips in the rings will be nuked by the reset,
2867 * so complete all pending flips so that user space
2868 * will get its events and not get stuck.
2869 */
2870 intel_complete_page_flips(dev);
2871
2872 /* no reset support for gen2 */
2873 if (IS_GEN2(dev))
2874 return;
2875
2876 /* reset doesn't touch the display */
2877 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) {
2878 /*
2879 * Flips in the rings have been nuked by the reset,
2880 * so update the base address of all primary
2881 * planes to the the last fb to make sure we're
2882 * showing the correct fb after a reset.
2883 */
2884 intel_update_primary_planes(dev);
2885 return;
2886 }
2887
2888 /*
2889 * The display has been reset as well,
2890 * so need a full re-initialization.
2891 */
2892 intel_runtime_pm_disable_interrupts(dev_priv);
2893 intel_runtime_pm_enable_interrupts(dev_priv);
2894
2895 intel_modeset_init_hw(dev);
2896
2897 spin_lock_irq(&dev_priv->irq_lock);
2898 if (dev_priv->display.hpd_irq_setup)
2899 dev_priv->display.hpd_irq_setup(dev);
2900 spin_unlock_irq(&dev_priv->irq_lock);
2901
2902 intel_modeset_setup_hw_state(dev, true);
2903
2904 intel_hpd_init(dev_priv);
2905
2906 drm_modeset_unlock_all(dev);
2907}
2908
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002909static int
Chris Wilson14667a42012-04-03 17:58:35 +01002910intel_finish_fb(struct drm_framebuffer *old_fb)
2911{
Matt Roper2ff8fde2014-07-08 07:50:07 -07002912 struct drm_i915_gem_object *obj = intel_fb_obj(old_fb);
Chris Wilson14667a42012-04-03 17:58:35 +01002913 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2914 bool was_interruptible = dev_priv->mm.interruptible;
2915 int ret;
2916
Chris Wilson14667a42012-04-03 17:58:35 +01002917 /* Big Hammer, we also need to ensure that any pending
2918 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2919 * current scanout is retired before unpinning the old
2920 * framebuffer.
2921 *
2922 * This should only fail upon a hung GPU, in which case we
2923 * can safely continue.
2924 */
2925 dev_priv->mm.interruptible = false;
2926 ret = i915_gem_object_finish_gpu(obj);
2927 dev_priv->mm.interruptible = was_interruptible;
2928
2929 return ret;
2930}
2931
Chris Wilson7d5e3792014-03-04 13:15:08 +00002932static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2933{
2934 struct drm_device *dev = crtc->dev;
2935 struct drm_i915_private *dev_priv = dev->dev_private;
2936 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson7d5e3792014-03-04 13:15:08 +00002937 bool pending;
2938
2939 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
2940 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
2941 return false;
2942
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02002943 spin_lock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00002944 pending = to_intel_crtc(crtc)->unpin_work != NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02002945 spin_unlock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00002946
2947 return pending;
2948}
2949
Gustavo Padovane30e8f72014-09-10 12:04:17 -03002950static void intel_update_pipe_size(struct intel_crtc *crtc)
2951{
2952 struct drm_device *dev = crtc->base.dev;
2953 struct drm_i915_private *dev_priv = dev->dev_private;
2954 const struct drm_display_mode *adjusted_mode;
2955
2956 if (!i915.fastboot)
2957 return;
2958
2959 /*
2960 * Update pipe size and adjust fitter if needed: the reason for this is
2961 * that in compute_mode_changes we check the native mode (not the pfit
2962 * mode) to see if we can flip rather than do a full mode set. In the
2963 * fastboot case, we'll flip, but if we don't update the pipesrc and
2964 * pfit state, we'll end up with a big fb scanned out into the wrong
2965 * sized surface.
2966 *
2967 * To fix this properly, we need to hoist the checks up into
2968 * compute_mode_changes (or above), check the actual pfit state and
2969 * whether the platform allows pfit disable with pipe active, and only
2970 * then update the pipesrc and pfit state, even on the flip path.
2971 */
2972
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002973 adjusted_mode = &crtc->config->base.adjusted_mode;
Gustavo Padovane30e8f72014-09-10 12:04:17 -03002974
2975 I915_WRITE(PIPESRC(crtc->pipe),
2976 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
2977 (adjusted_mode->crtc_vdisplay - 1));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002978 if (!crtc->config->pch_pfit.enabled &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03002979 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
2980 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Gustavo Padovane30e8f72014-09-10 12:04:17 -03002981 I915_WRITE(PF_CTL(crtc->pipe), 0);
2982 I915_WRITE(PF_WIN_POS(crtc->pipe), 0);
2983 I915_WRITE(PF_WIN_SZ(crtc->pipe), 0);
2984 }
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002985 crtc->config->pipe_src_w = adjusted_mode->crtc_hdisplay;
2986 crtc->config->pipe_src_h = adjusted_mode->crtc_vdisplay;
Gustavo Padovane30e8f72014-09-10 12:04:17 -03002987}
2988
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002989static void intel_fdi_normal_train(struct drm_crtc *crtc)
2990{
2991 struct drm_device *dev = crtc->dev;
2992 struct drm_i915_private *dev_priv = dev->dev_private;
2993 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2994 int pipe = intel_crtc->pipe;
2995 u32 reg, temp;
2996
2997 /* enable normal train */
2998 reg = FDI_TX_CTL(pipe);
2999 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07003000 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07003001 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3002 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07003003 } else {
3004 temp &= ~FDI_LINK_TRAIN_NONE;
3005 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07003006 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003007 I915_WRITE(reg, temp);
3008
3009 reg = FDI_RX_CTL(pipe);
3010 temp = I915_READ(reg);
3011 if (HAS_PCH_CPT(dev)) {
3012 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3013 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3014 } else {
3015 temp &= ~FDI_LINK_TRAIN_NONE;
3016 temp |= FDI_LINK_TRAIN_NONE;
3017 }
3018 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3019
3020 /* wait one idle pattern time */
3021 POSTING_READ(reg);
3022 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07003023
3024 /* IVB wants error correction enabled */
3025 if (IS_IVYBRIDGE(dev))
3026 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3027 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003028}
3029
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003030static bool pipe_has_enabled_pch(struct intel_crtc *crtc)
Daniel Vetter1e833f42013-02-19 22:31:57 +01003031{
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003032 return crtc->base.enabled && crtc->active &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003033 crtc->config->has_pch_encoder;
Daniel Vetter1e833f42013-02-19 22:31:57 +01003034}
3035
Daniel Vetter01a415f2012-10-27 15:58:40 +02003036static void ivb_modeset_global_resources(struct drm_device *dev)
3037{
3038 struct drm_i915_private *dev_priv = dev->dev_private;
3039 struct intel_crtc *pipe_B_crtc =
3040 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
3041 struct intel_crtc *pipe_C_crtc =
3042 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
3043 uint32_t temp;
3044
Daniel Vetter1e833f42013-02-19 22:31:57 +01003045 /*
3046 * When everything is off disable fdi C so that we could enable fdi B
3047 * with all lanes. Note that we don't care about enabled pipes without
3048 * an enabled pch encoder.
3049 */
3050 if (!pipe_has_enabled_pch(pipe_B_crtc) &&
3051 !pipe_has_enabled_pch(pipe_C_crtc)) {
Daniel Vetter01a415f2012-10-27 15:58:40 +02003052 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3053 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3054
3055 temp = I915_READ(SOUTH_CHICKEN1);
3056 temp &= ~FDI_BC_BIFURCATION_SELECT;
3057 DRM_DEBUG_KMS("disabling fdi C rx\n");
3058 I915_WRITE(SOUTH_CHICKEN1, temp);
3059 }
3060}
3061
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003062/* The FDI link training functions for ILK/Ibexpeak. */
3063static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3064{
3065 struct drm_device *dev = crtc->dev;
3066 struct drm_i915_private *dev_priv = dev->dev_private;
3067 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3068 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003069 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003070
Ville Syrjälä1c8562f2014-04-25 22:12:07 +03003071 /* FDI needs bits from pipe first */
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003072 assert_pipe_enabled(dev_priv, pipe);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003073
Adam Jacksone1a44742010-06-25 15:32:14 -04003074 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3075 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003076 reg = FDI_RX_IMR(pipe);
3077 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003078 temp &= ~FDI_RX_SYMBOL_LOCK;
3079 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003080 I915_WRITE(reg, temp);
3081 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003082 udelay(150);
3083
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003084 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003085 reg = FDI_TX_CTL(pipe);
3086 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003087 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003088 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003089 temp &= ~FDI_LINK_TRAIN_NONE;
3090 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003091 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003092
Chris Wilson5eddb702010-09-11 13:48:45 +01003093 reg = FDI_RX_CTL(pipe);
3094 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003095 temp &= ~FDI_LINK_TRAIN_NONE;
3096 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003097 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3098
3099 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003100 udelay(150);
3101
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003102 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01003103 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3104 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3105 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003106
Chris Wilson5eddb702010-09-11 13:48:45 +01003107 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003108 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003109 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003110 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3111
3112 if ((temp & FDI_RX_BIT_LOCK)) {
3113 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01003114 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003115 break;
3116 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003117 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003118 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003119 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003120
3121 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003122 reg = FDI_TX_CTL(pipe);
3123 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003124 temp &= ~FDI_LINK_TRAIN_NONE;
3125 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003126 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003127
Chris Wilson5eddb702010-09-11 13:48:45 +01003128 reg = FDI_RX_CTL(pipe);
3129 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003130 temp &= ~FDI_LINK_TRAIN_NONE;
3131 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003132 I915_WRITE(reg, temp);
3133
3134 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003135 udelay(150);
3136
Chris Wilson5eddb702010-09-11 13:48:45 +01003137 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003138 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003139 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003140 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3141
3142 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003143 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003144 DRM_DEBUG_KMS("FDI train 2 done.\n");
3145 break;
3146 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003147 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003148 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003149 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003150
3151 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07003152
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003153}
3154
Akshay Joshi0206e352011-08-16 15:34:10 -04003155static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003156 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3157 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3158 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3159 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3160};
3161
3162/* The FDI link training functions for SNB/Cougarpoint. */
3163static void gen6_fdi_link_train(struct drm_crtc *crtc)
3164{
3165 struct drm_device *dev = crtc->dev;
3166 struct drm_i915_private *dev_priv = dev->dev_private;
3167 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3168 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05003169 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003170
Adam Jacksone1a44742010-06-25 15:32:14 -04003171 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3172 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003173 reg = FDI_RX_IMR(pipe);
3174 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003175 temp &= ~FDI_RX_SYMBOL_LOCK;
3176 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003177 I915_WRITE(reg, temp);
3178
3179 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003180 udelay(150);
3181
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003182 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003183 reg = FDI_TX_CTL(pipe);
3184 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003185 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003186 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003187 temp &= ~FDI_LINK_TRAIN_NONE;
3188 temp |= FDI_LINK_TRAIN_PATTERN_1;
3189 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3190 /* SNB-B */
3191 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01003192 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003193
Daniel Vetterd74cf322012-10-26 10:58:13 +02003194 I915_WRITE(FDI_RX_MISC(pipe),
3195 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3196
Chris Wilson5eddb702010-09-11 13:48:45 +01003197 reg = FDI_RX_CTL(pipe);
3198 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003199 if (HAS_PCH_CPT(dev)) {
3200 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3201 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3202 } else {
3203 temp &= ~FDI_LINK_TRAIN_NONE;
3204 temp |= FDI_LINK_TRAIN_PATTERN_1;
3205 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003206 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3207
3208 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003209 udelay(150);
3210
Akshay Joshi0206e352011-08-16 15:34:10 -04003211 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003212 reg = FDI_TX_CTL(pipe);
3213 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003214 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3215 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003216 I915_WRITE(reg, temp);
3217
3218 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003219 udelay(500);
3220
Sean Paulfa37d392012-03-02 12:53:39 -05003221 for (retry = 0; retry < 5; retry++) {
3222 reg = FDI_RX_IIR(pipe);
3223 temp = I915_READ(reg);
3224 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3225 if (temp & FDI_RX_BIT_LOCK) {
3226 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3227 DRM_DEBUG_KMS("FDI train 1 done.\n");
3228 break;
3229 }
3230 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003231 }
Sean Paulfa37d392012-03-02 12:53:39 -05003232 if (retry < 5)
3233 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003234 }
3235 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003236 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003237
3238 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003239 reg = FDI_TX_CTL(pipe);
3240 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003241 temp &= ~FDI_LINK_TRAIN_NONE;
3242 temp |= FDI_LINK_TRAIN_PATTERN_2;
3243 if (IS_GEN6(dev)) {
3244 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3245 /* SNB-B */
3246 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3247 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003248 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003249
Chris Wilson5eddb702010-09-11 13:48:45 +01003250 reg = FDI_RX_CTL(pipe);
3251 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003252 if (HAS_PCH_CPT(dev)) {
3253 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3254 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3255 } else {
3256 temp &= ~FDI_LINK_TRAIN_NONE;
3257 temp |= FDI_LINK_TRAIN_PATTERN_2;
3258 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003259 I915_WRITE(reg, temp);
3260
3261 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003262 udelay(150);
3263
Akshay Joshi0206e352011-08-16 15:34:10 -04003264 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003265 reg = FDI_TX_CTL(pipe);
3266 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003267 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3268 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003269 I915_WRITE(reg, temp);
3270
3271 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003272 udelay(500);
3273
Sean Paulfa37d392012-03-02 12:53:39 -05003274 for (retry = 0; retry < 5; retry++) {
3275 reg = FDI_RX_IIR(pipe);
3276 temp = I915_READ(reg);
3277 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3278 if (temp & FDI_RX_SYMBOL_LOCK) {
3279 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3280 DRM_DEBUG_KMS("FDI train 2 done.\n");
3281 break;
3282 }
3283 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003284 }
Sean Paulfa37d392012-03-02 12:53:39 -05003285 if (retry < 5)
3286 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003287 }
3288 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003289 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003290
3291 DRM_DEBUG_KMS("FDI train done.\n");
3292}
3293
Jesse Barnes357555c2011-04-28 15:09:55 -07003294/* Manual link training for Ivy Bridge A0 parts */
3295static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3296{
3297 struct drm_device *dev = crtc->dev;
3298 struct drm_i915_private *dev_priv = dev->dev_private;
3299 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3300 int pipe = intel_crtc->pipe;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003301 u32 reg, temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07003302
3303 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3304 for train result */
3305 reg = FDI_RX_IMR(pipe);
3306 temp = I915_READ(reg);
3307 temp &= ~FDI_RX_SYMBOL_LOCK;
3308 temp &= ~FDI_RX_BIT_LOCK;
3309 I915_WRITE(reg, temp);
3310
3311 POSTING_READ(reg);
3312 udelay(150);
3313
Daniel Vetter01a415f2012-10-27 15:58:40 +02003314 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3315 I915_READ(FDI_RX_IIR(pipe)));
3316
Jesse Barnes139ccd32013-08-19 11:04:55 -07003317 /* Try each vswing and preemphasis setting twice before moving on */
3318 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3319 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07003320 reg = FDI_TX_CTL(pipe);
3321 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003322 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3323 temp &= ~FDI_TX_ENABLE;
3324 I915_WRITE(reg, temp);
3325
3326 reg = FDI_RX_CTL(pipe);
3327 temp = I915_READ(reg);
3328 temp &= ~FDI_LINK_TRAIN_AUTO;
3329 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3330 temp &= ~FDI_RX_ENABLE;
3331 I915_WRITE(reg, temp);
3332
3333 /* enable CPU FDI TX and PCH FDI RX */
3334 reg = FDI_TX_CTL(pipe);
3335 temp = I915_READ(reg);
3336 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003337 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003338 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07003339 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003340 temp |= snb_b_fdi_train_param[j/2];
3341 temp |= FDI_COMPOSITE_SYNC;
3342 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3343
3344 I915_WRITE(FDI_RX_MISC(pipe),
3345 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3346
3347 reg = FDI_RX_CTL(pipe);
3348 temp = I915_READ(reg);
3349 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3350 temp |= FDI_COMPOSITE_SYNC;
3351 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3352
3353 POSTING_READ(reg);
3354 udelay(1); /* should be 0.5us */
3355
3356 for (i = 0; i < 4; i++) {
3357 reg = FDI_RX_IIR(pipe);
3358 temp = I915_READ(reg);
3359 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3360
3361 if (temp & FDI_RX_BIT_LOCK ||
3362 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3363 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3364 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3365 i);
3366 break;
3367 }
3368 udelay(1); /* should be 0.5us */
3369 }
3370 if (i == 4) {
3371 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3372 continue;
3373 }
3374
3375 /* Train 2 */
3376 reg = FDI_TX_CTL(pipe);
3377 temp = I915_READ(reg);
3378 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3379 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3380 I915_WRITE(reg, temp);
3381
3382 reg = FDI_RX_CTL(pipe);
3383 temp = I915_READ(reg);
3384 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3385 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07003386 I915_WRITE(reg, temp);
3387
3388 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003389 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003390
Jesse Barnes139ccd32013-08-19 11:04:55 -07003391 for (i = 0; i < 4; i++) {
3392 reg = FDI_RX_IIR(pipe);
3393 temp = I915_READ(reg);
3394 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07003395
Jesse Barnes139ccd32013-08-19 11:04:55 -07003396 if (temp & FDI_RX_SYMBOL_LOCK ||
3397 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3398 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3399 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3400 i);
3401 goto train_done;
3402 }
3403 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003404 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07003405 if (i == 4)
3406 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07003407 }
Jesse Barnes357555c2011-04-28 15:09:55 -07003408
Jesse Barnes139ccd32013-08-19 11:04:55 -07003409train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07003410 DRM_DEBUG_KMS("FDI train done.\n");
3411}
3412
Daniel Vetter88cefb62012-08-12 19:27:14 +02003413static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07003414{
Daniel Vetter88cefb62012-08-12 19:27:14 +02003415 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003416 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003417 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003418 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003419
Jesse Barnesc64e3112010-09-10 11:27:03 -07003420
Jesse Barnes0e23b992010-09-10 11:10:00 -07003421 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01003422 reg = FDI_RX_CTL(pipe);
3423 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003424 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003425 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003426 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01003427 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3428
3429 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003430 udelay(200);
3431
3432 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003433 temp = I915_READ(reg);
3434 I915_WRITE(reg, temp | FDI_PCDCLK);
3435
3436 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003437 udelay(200);
3438
Paulo Zanoni20749732012-11-23 15:30:38 -02003439 /* Enable CPU FDI TX PLL, always on for Ironlake */
3440 reg = FDI_TX_CTL(pipe);
3441 temp = I915_READ(reg);
3442 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3443 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01003444
Paulo Zanoni20749732012-11-23 15:30:38 -02003445 POSTING_READ(reg);
3446 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003447 }
3448}
3449
Daniel Vetter88cefb62012-08-12 19:27:14 +02003450static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3451{
3452 struct drm_device *dev = intel_crtc->base.dev;
3453 struct drm_i915_private *dev_priv = dev->dev_private;
3454 int pipe = intel_crtc->pipe;
3455 u32 reg, temp;
3456
3457 /* Switch from PCDclk to Rawclk */
3458 reg = FDI_RX_CTL(pipe);
3459 temp = I915_READ(reg);
3460 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3461
3462 /* Disable CPU FDI TX PLL */
3463 reg = FDI_TX_CTL(pipe);
3464 temp = I915_READ(reg);
3465 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3466
3467 POSTING_READ(reg);
3468 udelay(100);
3469
3470 reg = FDI_RX_CTL(pipe);
3471 temp = I915_READ(reg);
3472 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3473
3474 /* Wait for the clocks to turn off. */
3475 POSTING_READ(reg);
3476 udelay(100);
3477}
3478
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003479static void ironlake_fdi_disable(struct drm_crtc *crtc)
3480{
3481 struct drm_device *dev = crtc->dev;
3482 struct drm_i915_private *dev_priv = dev->dev_private;
3483 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3484 int pipe = intel_crtc->pipe;
3485 u32 reg, temp;
3486
3487 /* disable CPU FDI tx and PCH FDI rx */
3488 reg = FDI_TX_CTL(pipe);
3489 temp = I915_READ(reg);
3490 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3491 POSTING_READ(reg);
3492
3493 reg = FDI_RX_CTL(pipe);
3494 temp = I915_READ(reg);
3495 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003496 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003497 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3498
3499 POSTING_READ(reg);
3500 udelay(100);
3501
3502 /* Ironlake workaround, disable clock pointer after downing FDI */
Robin Schroereba905b2014-05-18 02:24:50 +02003503 if (HAS_PCH_IBX(dev))
Jesse Barnes6f06ce12011-01-04 15:09:38 -08003504 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003505
3506 /* still set train pattern 1 */
3507 reg = FDI_TX_CTL(pipe);
3508 temp = I915_READ(reg);
3509 temp &= ~FDI_LINK_TRAIN_NONE;
3510 temp |= FDI_LINK_TRAIN_PATTERN_1;
3511 I915_WRITE(reg, temp);
3512
3513 reg = FDI_RX_CTL(pipe);
3514 temp = I915_READ(reg);
3515 if (HAS_PCH_CPT(dev)) {
3516 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3517 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3518 } else {
3519 temp &= ~FDI_LINK_TRAIN_NONE;
3520 temp |= FDI_LINK_TRAIN_PATTERN_1;
3521 }
3522 /* BPC in FDI rx is consistent with that in PIPECONF */
3523 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003524 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003525 I915_WRITE(reg, temp);
3526
3527 POSTING_READ(reg);
3528 udelay(100);
3529}
3530
Chris Wilson5dce5b932014-01-20 10:17:36 +00003531bool intel_has_pending_fb_unpin(struct drm_device *dev)
3532{
3533 struct intel_crtc *crtc;
3534
3535 /* Note that we don't need to be called with mode_config.lock here
3536 * as our list of CRTC objects is static for the lifetime of the
3537 * device and so cannot disappear as we iterate. Similarly, we can
3538 * happily treat the predicates as racy, atomic checks as userspace
3539 * cannot claim and pin a new fb without at least acquring the
3540 * struct_mutex and so serialising with us.
3541 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003542 for_each_intel_crtc(dev, crtc) {
Chris Wilson5dce5b932014-01-20 10:17:36 +00003543 if (atomic_read(&crtc->unpin_work_count) == 0)
3544 continue;
3545
3546 if (crtc->unpin_work)
3547 intel_wait_for_vblank(dev, crtc->pipe);
3548
3549 return true;
3550 }
3551
3552 return false;
3553}
3554
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003555static void page_flip_completed(struct intel_crtc *intel_crtc)
3556{
3557 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
3558 struct intel_unpin_work *work = intel_crtc->unpin_work;
3559
3560 /* ensure that the unpin work is consistent wrt ->pending. */
3561 smp_rmb();
3562 intel_crtc->unpin_work = NULL;
3563
3564 if (work->event)
3565 drm_send_vblank_event(intel_crtc->base.dev,
3566 intel_crtc->pipe,
3567 work->event);
3568
3569 drm_crtc_vblank_put(&intel_crtc->base);
3570
3571 wake_up_all(&dev_priv->pending_flip_queue);
3572 queue_work(dev_priv->wq, &work->work);
3573
3574 trace_i915_flip_complete(intel_crtc->plane,
3575 work->pending_flip_obj);
3576}
3577
Ville Syrjälä46a55d32014-05-21 14:04:46 +03003578void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003579{
Chris Wilson0f911282012-04-17 10:05:38 +01003580 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01003581 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003582
Daniel Vetter2c10d572012-12-20 21:24:07 +01003583 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
Chris Wilson9c787942014-09-05 07:13:25 +01003584 if (WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3585 !intel_crtc_has_pending_flip(crtc),
3586 60*HZ) == 0)) {
3587 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter2c10d572012-12-20 21:24:07 +01003588
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003589 spin_lock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003590 if (intel_crtc->unpin_work) {
3591 WARN_ONCE(1, "Removing stuck page flip\n");
3592 page_flip_completed(intel_crtc);
3593 }
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003594 spin_unlock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003595 }
Chris Wilson5bb61642012-09-27 21:25:58 +01003596
Chris Wilson975d5682014-08-20 13:13:34 +01003597 if (crtc->primary->fb) {
3598 mutex_lock(&dev->struct_mutex);
3599 intel_finish_fb(crtc->primary->fb);
3600 mutex_unlock(&dev->struct_mutex);
3601 }
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003602}
3603
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003604/* Program iCLKIP clock to the desired frequency */
3605static void lpt_program_iclkip(struct drm_crtc *crtc)
3606{
3607 struct drm_device *dev = crtc->dev;
3608 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003609 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003610 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3611 u32 temp;
3612
Daniel Vetter09153002012-12-12 14:06:44 +01003613 mutex_lock(&dev_priv->dpio_lock);
3614
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003615 /* It is necessary to ungate the pixclk gate prior to programming
3616 * the divisors, and gate it back when it is done.
3617 */
3618 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3619
3620 /* Disable SSCCTL */
3621 intel_sbi_write(dev_priv, SBI_SSCCTL6,
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003622 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
3623 SBI_SSCCTL_DISABLE,
3624 SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003625
3626 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003627 if (clock == 20000) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003628 auxdiv = 1;
3629 divsel = 0x41;
3630 phaseinc = 0x20;
3631 } else {
3632 /* The iCLK virtual clock root frequency is in MHz,
Damien Lespiau241bfc32013-09-25 16:45:37 +01003633 * but the adjusted_mode->crtc_clock in in KHz. To get the
3634 * divisors, it is necessary to divide one by another, so we
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003635 * convert the virtual clock precision to KHz here for higher
3636 * precision.
3637 */
3638 u32 iclk_virtual_root_freq = 172800 * 1000;
3639 u32 iclk_pi_range = 64;
3640 u32 desired_divisor, msb_divisor_value, pi_value;
3641
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003642 desired_divisor = (iclk_virtual_root_freq / clock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003643 msb_divisor_value = desired_divisor / iclk_pi_range;
3644 pi_value = desired_divisor % iclk_pi_range;
3645
3646 auxdiv = 0;
3647 divsel = msb_divisor_value - 2;
3648 phaseinc = pi_value;
3649 }
3650
3651 /* This should not happen with any sane values */
3652 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3653 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3654 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3655 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3656
3657 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 +03003658 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003659 auxdiv,
3660 divsel,
3661 phasedir,
3662 phaseinc);
3663
3664 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003665 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003666 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3667 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3668 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3669 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3670 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3671 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003672 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003673
3674 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003675 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003676 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3677 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003678 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003679
3680 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003681 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003682 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003683 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003684
3685 /* Wait for initialization time */
3686 udelay(24);
3687
3688 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
Daniel Vetter09153002012-12-12 14:06:44 +01003689
3690 mutex_unlock(&dev_priv->dpio_lock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003691}
3692
Daniel Vetter275f01b22013-05-03 11:49:47 +02003693static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3694 enum pipe pch_transcoder)
3695{
3696 struct drm_device *dev = crtc->base.dev;
3697 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003698 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Daniel Vetter275f01b22013-05-03 11:49:47 +02003699
3700 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
3701 I915_READ(HTOTAL(cpu_transcoder)));
3702 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
3703 I915_READ(HBLANK(cpu_transcoder)));
3704 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
3705 I915_READ(HSYNC(cpu_transcoder)));
3706
3707 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
3708 I915_READ(VTOTAL(cpu_transcoder)));
3709 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
3710 I915_READ(VBLANK(cpu_transcoder)));
3711 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
3712 I915_READ(VSYNC(cpu_transcoder)));
3713 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
3714 I915_READ(VSYNCSHIFT(cpu_transcoder)));
3715}
3716
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003717static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
3718{
3719 struct drm_i915_private *dev_priv = dev->dev_private;
3720 uint32_t temp;
3721
3722 temp = I915_READ(SOUTH_CHICKEN1);
3723 if (temp & FDI_BC_BIFURCATION_SELECT)
3724 return;
3725
3726 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3727 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3728
3729 temp |= FDI_BC_BIFURCATION_SELECT;
3730 DRM_DEBUG_KMS("enabling fdi C rx\n");
3731 I915_WRITE(SOUTH_CHICKEN1, temp);
3732 POSTING_READ(SOUTH_CHICKEN1);
3733}
3734
3735static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
3736{
3737 struct drm_device *dev = intel_crtc->base.dev;
3738 struct drm_i915_private *dev_priv = dev->dev_private;
3739
3740 switch (intel_crtc->pipe) {
3741 case PIPE_A:
3742 break;
3743 case PIPE_B:
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003744 if (intel_crtc->config->fdi_lanes > 2)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003745 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
3746 else
3747 cpt_enable_fdi_bc_bifurcation(dev);
3748
3749 break;
3750 case PIPE_C:
3751 cpt_enable_fdi_bc_bifurcation(dev);
3752
3753 break;
3754 default:
3755 BUG();
3756 }
3757}
3758
Jesse Barnesf67a5592011-01-05 10:31:48 -08003759/*
3760 * Enable PCH resources required for PCH ports:
3761 * - PCH PLLs
3762 * - FDI training & RX/TX
3763 * - update transcoder timings
3764 * - DP transcoding bits
3765 * - transcoder
3766 */
3767static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003768{
3769 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003770 struct drm_i915_private *dev_priv = dev->dev_private;
3771 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3772 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003773 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003774
Daniel Vetterab9412b2013-05-03 11:49:46 +02003775 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01003776
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003777 if (IS_IVYBRIDGE(dev))
3778 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
3779
Daniel Vettercd986ab2012-10-26 10:58:12 +02003780 /* Write the TU size bits before fdi link training, so that error
3781 * detection works. */
3782 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3783 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3784
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003785 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07003786 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003787
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003788 /* We need to program the right clock selection before writing the pixel
3789 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003790 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003791 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07003792
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003793 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02003794 temp |= TRANS_DPLL_ENABLE(pipe);
3795 sel = TRANS_DPLLB_SEL(pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003796 if (intel_crtc->config->shared_dpll == DPLL_ID_PCH_PLL_B)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003797 temp |= sel;
3798 else
3799 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003800 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003801 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003802
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003803 /* XXX: pch pll's can be enabled any time before we enable the PCH
3804 * transcoder, and we actually should do this to not upset any PCH
3805 * transcoder that already use the clock when we share it.
3806 *
3807 * Note that enable_shared_dpll tries to do the right thing, but
3808 * get_shared_dpll unconditionally resets the pll - we need that to have
3809 * the right LVDS enable sequence. */
Daniel Vetter85b38942014-04-24 23:55:14 +02003810 intel_enable_shared_dpll(intel_crtc);
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003811
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08003812 /* set transcoder timing, panel must allow it */
3813 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02003814 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003815
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003816 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003817
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003818 /* For PCH DP, enable TRANS_DP_CTL */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003819 if (HAS_PCH_CPT(dev) && intel_crtc->config->has_dp_encoder) {
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003820 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01003821 reg = TRANS_DP_CTL(pipe);
3822 temp = I915_READ(reg);
3823 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08003824 TRANS_DP_SYNC_MASK |
3825 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01003826 temp |= (TRANS_DP_OUTPUT_ENABLE |
3827 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003828 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003829
3830 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003831 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003832 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003833 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003834
3835 switch (intel_trans_dp_port_sel(crtc)) {
3836 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01003837 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003838 break;
3839 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01003840 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003841 break;
3842 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01003843 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003844 break;
3845 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02003846 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003847 }
3848
Chris Wilson5eddb702010-09-11 13:48:45 +01003849 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003850 }
3851
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003852 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003853}
3854
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003855static void lpt_pch_enable(struct drm_crtc *crtc)
3856{
3857 struct drm_device *dev = crtc->dev;
3858 struct drm_i915_private *dev_priv = dev->dev_private;
3859 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003860 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003861
Daniel Vetterab9412b2013-05-03 11:49:46 +02003862 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003863
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02003864 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003865
Paulo Zanoni0540e482012-10-31 18:12:40 -02003866 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02003867 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003868
Paulo Zanoni937bb612012-10-31 18:12:47 -02003869 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003870}
3871
Daniel Vetter716c2e52014-06-25 22:02:02 +03003872void intel_put_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003873{
Daniel Vettere2b78262013-06-07 23:10:03 +02003874 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003875
3876 if (pll == NULL)
3877 return;
3878
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02003879 if (!(pll->config.crtc_mask & (1 << crtc->pipe))) {
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +02003880 WARN(1, "bad %s crtc mask\n", pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003881 return;
3882 }
3883
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02003884 pll->config.crtc_mask &= ~(1 << crtc->pipe);
3885 if (pll->config.crtc_mask == 0) {
Daniel Vetterf4a091c2013-06-10 17:28:22 +02003886 WARN_ON(pll->on);
3887 WARN_ON(pll->active);
3888 }
3889
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003890 crtc->config->shared_dpll = DPLL_ID_PRIVATE;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003891}
3892
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02003893struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc,
3894 struct intel_crtc_state *crtc_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003895{
Daniel Vettere2b78262013-06-07 23:10:03 +02003896 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003897 struct intel_shared_dpll *pll;
Daniel Vettere2b78262013-06-07 23:10:03 +02003898 enum intel_dpll_id i;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003899
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003900 if (HAS_PCH_IBX(dev_priv->dev)) {
3901 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
Daniel Vetterd94ab062013-07-04 12:01:16 +02003902 i = (enum intel_dpll_id) crtc->pipe;
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003903 pll = &dev_priv->shared_dplls[i];
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003904
Daniel Vetter46edb022013-06-05 13:34:12 +02003905 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
3906 crtc->base.base.id, pll->name);
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003907
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003908 WARN_ON(pll->new_config->crtc_mask);
Daniel Vetterf2a69f42014-05-20 15:19:19 +02003909
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003910 goto found;
3911 }
3912
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003913 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3914 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003915
3916 /* Only want to check enabled timings first */
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003917 if (pll->new_config->crtc_mask == 0)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003918 continue;
3919
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02003920 if (memcmp(&crtc_state->dpll_hw_state,
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003921 &pll->new_config->hw_state,
3922 sizeof(pll->new_config->hw_state)) == 0) {
3923 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (crtc mask 0x%08x, ative %d)\n",
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +02003924 crtc->base.base.id, pll->name,
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003925 pll->new_config->crtc_mask,
3926 pll->active);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003927 goto found;
3928 }
3929 }
3930
3931 /* Ok no matching timings, maybe there's a free one? */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003932 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3933 pll = &dev_priv->shared_dplls[i];
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003934 if (pll->new_config->crtc_mask == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003935 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
3936 crtc->base.base.id, pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003937 goto found;
3938 }
3939 }
3940
3941 return NULL;
3942
3943found:
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003944 if (pll->new_config->crtc_mask == 0)
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02003945 pll->new_config->hw_state = crtc_state->dpll_hw_state;
Daniel Vetterf2a69f42014-05-20 15:19:19 +02003946
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02003947 crtc_state->shared_dpll = i;
Daniel Vetter46edb022013-06-05 13:34:12 +02003948 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
3949 pipe_name(crtc->pipe));
Daniel Vetter66e985c2013-06-05 13:34:20 +02003950
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003951 pll->new_config->crtc_mask |= 1 << crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003952
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003953 return pll;
3954}
3955
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003956/**
3957 * intel_shared_dpll_start_config - start a new PLL staged config
3958 * @dev_priv: DRM device
3959 * @clear_pipes: mask of pipes that will have their PLLs freed
3960 *
3961 * Starts a new PLL staged config, copying the current config but
3962 * releasing the references of pipes specified in clear_pipes.
3963 */
3964static int intel_shared_dpll_start_config(struct drm_i915_private *dev_priv,
3965 unsigned clear_pipes)
3966{
3967 struct intel_shared_dpll *pll;
3968 enum intel_dpll_id i;
3969
3970 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3971 pll = &dev_priv->shared_dplls[i];
3972
3973 pll->new_config = kmemdup(&pll->config, sizeof pll->config,
3974 GFP_KERNEL);
3975 if (!pll->new_config)
3976 goto cleanup;
3977
3978 pll->new_config->crtc_mask &= ~clear_pipes;
3979 }
3980
3981 return 0;
3982
3983cleanup:
3984 while (--i >= 0) {
3985 pll = &dev_priv->shared_dplls[i];
Ander Conselvan de Oliveiraf354d732014-11-07 14:07:41 +02003986 kfree(pll->new_config);
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003987 pll->new_config = NULL;
3988 }
3989
3990 return -ENOMEM;
3991}
3992
3993static void intel_shared_dpll_commit(struct drm_i915_private *dev_priv)
3994{
3995 struct intel_shared_dpll *pll;
3996 enum intel_dpll_id i;
3997
3998 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3999 pll = &dev_priv->shared_dplls[i];
4000
4001 WARN_ON(pll->new_config == &pll->config);
4002
4003 pll->config = *pll->new_config;
4004 kfree(pll->new_config);
4005 pll->new_config = NULL;
4006 }
4007}
4008
4009static void intel_shared_dpll_abort_config(struct drm_i915_private *dev_priv)
4010{
4011 struct intel_shared_dpll *pll;
4012 enum intel_dpll_id i;
4013
4014 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4015 pll = &dev_priv->shared_dplls[i];
4016
4017 WARN_ON(pll->new_config == &pll->config);
4018
4019 kfree(pll->new_config);
4020 pll->new_config = NULL;
4021 }
4022}
4023
Daniel Vettera1520312013-05-03 11:49:50 +02004024static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07004025{
4026 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01004027 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07004028 u32 temp;
4029
4030 temp = I915_READ(dslreg);
4031 udelay(500);
4032 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07004033 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03004034 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07004035 }
4036}
4037
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004038static void skylake_pfit_enable(struct intel_crtc *crtc)
4039{
4040 struct drm_device *dev = crtc->base.dev;
4041 struct drm_i915_private *dev_priv = dev->dev_private;
4042 int pipe = crtc->pipe;
4043
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004044 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004045 I915_WRITE(PS_CTL(pipe), PS_ENABLE);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004046 I915_WRITE(PS_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4047 I915_WRITE(PS_WIN_SZ(pipe), crtc->config->pch_pfit.size);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004048 }
4049}
4050
Jesse Barnesb074cec2013-04-25 12:55:02 -07004051static void ironlake_pfit_enable(struct intel_crtc *crtc)
4052{
4053 struct drm_device *dev = crtc->base.dev;
4054 struct drm_i915_private *dev_priv = dev->dev_private;
4055 int pipe = crtc->pipe;
4056
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004057 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07004058 /* Force use of hard-coded filter coefficients
4059 * as some pre-programmed values are broken,
4060 * e.g. x201.
4061 */
4062 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
4063 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4064 PF_PIPE_SEL_IVB(pipe));
4065 else
4066 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004067 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4068 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08004069 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004070}
4071
Matt Roper4a3b8762014-12-23 10:41:51 -08004072static void intel_enable_sprite_planes(struct drm_crtc *crtc)
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004073{
4074 struct drm_device *dev = crtc->dev;
4075 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07004076 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004077 struct intel_plane *intel_plane;
4078
Matt Roperaf2b6532014-04-01 15:22:32 -07004079 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
4080 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004081 if (intel_plane->pipe == pipe)
4082 intel_plane_restore(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07004083 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004084}
4085
Matt Roper4a3b8762014-12-23 10:41:51 -08004086static void intel_disable_sprite_planes(struct drm_crtc *crtc)
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004087{
4088 struct drm_device *dev = crtc->dev;
4089 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07004090 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004091 struct intel_plane *intel_plane;
4092
Matt Roperaf2b6532014-04-01 15:22:32 -07004093 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
4094 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004095 if (intel_plane->pipe == pipe)
Matt Ropercf4c7c12014-12-04 10:27:42 -08004096 plane->funcs->disable_plane(plane);
Matt Roperaf2b6532014-04-01 15:22:32 -07004097 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004098}
4099
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004100void hsw_enable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004101{
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004102 struct drm_device *dev = crtc->base.dev;
4103 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid77e4532013-09-24 13:52:55 -03004104
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004105 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004106 return;
4107
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004108 /* We can only enable IPS after we enable a plane and wait for a vblank */
4109 intel_wait_for_vblank(dev, crtc->pipe);
4110
Paulo Zanonid77e4532013-09-24 13:52:55 -03004111 assert_plane_enabled(dev_priv, crtc->plane);
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004112 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004113 mutex_lock(&dev_priv->rps.hw_lock);
4114 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4115 mutex_unlock(&dev_priv->rps.hw_lock);
4116 /* Quoting Art Runyan: "its not safe to expect any particular
4117 * value in IPS_CTL bit 31 after enabling IPS through the
Jesse Barnese59150d2014-01-07 13:30:45 -08004118 * mailbox." Moreover, the mailbox may return a bogus state,
4119 * so we need to just enable it and continue on.
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004120 */
4121 } else {
4122 I915_WRITE(IPS_CTL, IPS_ENABLE);
4123 /* The bit only becomes 1 in the next vblank, so this wait here
4124 * is essentially intel_wait_for_vblank. If we don't have this
4125 * and don't wait for vblanks until the end of crtc_enable, then
4126 * the HW state readout code will complain that the expected
4127 * IPS_CTL value is not the one we read. */
4128 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
4129 DRM_ERROR("Timed out waiting for IPS enable\n");
4130 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004131}
4132
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004133void hsw_disable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004134{
4135 struct drm_device *dev = crtc->base.dev;
4136 struct drm_i915_private *dev_priv = dev->dev_private;
4137
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004138 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004139 return;
4140
4141 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004142 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004143 mutex_lock(&dev_priv->rps.hw_lock);
4144 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4145 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004146 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
4147 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
4148 DRM_ERROR("Timed out waiting for IPS disable\n");
Jesse Barnese59150d2014-01-07 13:30:45 -08004149 } else {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004150 I915_WRITE(IPS_CTL, 0);
Jesse Barnese59150d2014-01-07 13:30:45 -08004151 POSTING_READ(IPS_CTL);
4152 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004153
4154 /* We need to wait for a vblank before we can disable the plane. */
4155 intel_wait_for_vblank(dev, crtc->pipe);
4156}
4157
4158/** Loads the palette/gamma unit for the CRTC with the prepared values */
4159static void intel_crtc_load_lut(struct drm_crtc *crtc)
4160{
4161 struct drm_device *dev = crtc->dev;
4162 struct drm_i915_private *dev_priv = dev->dev_private;
4163 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4164 enum pipe pipe = intel_crtc->pipe;
4165 int palreg = PALETTE(pipe);
4166 int i;
4167 bool reenable_ips = false;
4168
4169 /* The clocks have to be on to load the palette. */
4170 if (!crtc->enabled || !intel_crtc->active)
4171 return;
4172
4173 if (!HAS_PCH_SPLIT(dev_priv->dev)) {
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03004174 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI))
Paulo Zanonid77e4532013-09-24 13:52:55 -03004175 assert_dsi_pll_enabled(dev_priv);
4176 else
4177 assert_pll_enabled(dev_priv, pipe);
4178 }
4179
4180 /* use legacy palette for Ironlake */
Sonika Jindal7a1db492014-07-22 11:18:27 +05304181 if (!HAS_GMCH_DISPLAY(dev))
Paulo Zanonid77e4532013-09-24 13:52:55 -03004182 palreg = LGC_PALETTE(pipe);
4183
4184 /* Workaround : Do not read or write the pipe palette/gamma data while
4185 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
4186 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004187 if (IS_HASWELL(dev) && intel_crtc->config->ips_enabled &&
Paulo Zanonid77e4532013-09-24 13:52:55 -03004188 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
4189 GAMMA_MODE_MODE_SPLIT)) {
4190 hsw_disable_ips(intel_crtc);
4191 reenable_ips = true;
4192 }
4193
4194 for (i = 0; i < 256; i++) {
4195 I915_WRITE(palreg + 4 * i,
4196 (intel_crtc->lut_r[i] << 16) |
4197 (intel_crtc->lut_g[i] << 8) |
4198 intel_crtc->lut_b[i]);
4199 }
4200
4201 if (reenable_ips)
4202 hsw_enable_ips(intel_crtc);
4203}
4204
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004205static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
4206{
4207 if (!enable && intel_crtc->overlay) {
4208 struct drm_device *dev = intel_crtc->base.dev;
4209 struct drm_i915_private *dev_priv = dev->dev_private;
4210
4211 mutex_lock(&dev->struct_mutex);
4212 dev_priv->mm.interruptible = false;
4213 (void) intel_overlay_switch_off(intel_crtc->overlay);
4214 dev_priv->mm.interruptible = true;
4215 mutex_unlock(&dev->struct_mutex);
4216 }
4217
4218 /* Let userspace switch the overlay on again. In most cases userspace
4219 * has to recompute where to put it anyway.
4220 */
4221}
4222
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004223static void intel_crtc_enable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004224{
4225 struct drm_device *dev = crtc->dev;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004226 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4227 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004228
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03004229 intel_enable_primary_hw_plane(crtc->primary, crtc);
Matt Roper4a3b8762014-12-23 10:41:51 -08004230 intel_enable_sprite_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004231 intel_crtc_update_cursor(crtc, true);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004232 intel_crtc_dpms_overlay(intel_crtc, true);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004233
4234 hsw_enable_ips(intel_crtc);
4235
4236 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004237 intel_fbc_update(dev);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004238 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf99d7062014-06-19 16:01:59 +02004239
4240 /*
4241 * FIXME: Once we grow proper nuclear flip support out of this we need
4242 * to compute the mask of flip planes precisely. For the time being
4243 * consider this a flip from a NULL plane.
4244 */
4245 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004246}
4247
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004248static void intel_crtc_disable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004249{
4250 struct drm_device *dev = crtc->dev;
4251 struct drm_i915_private *dev_priv = dev->dev_private;
4252 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4253 int pipe = intel_crtc->pipe;
4254 int plane = intel_crtc->plane;
4255
4256 intel_crtc_wait_for_pending_flips(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004257
4258 if (dev_priv->fbc.plane == plane)
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004259 intel_fbc_disable(dev);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004260
4261 hsw_disable_ips(intel_crtc);
4262
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004263 intel_crtc_dpms_overlay(intel_crtc, false);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004264 intel_crtc_update_cursor(crtc, false);
Matt Roper4a3b8762014-12-23 10:41:51 -08004265 intel_disable_sprite_planes(crtc);
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03004266 intel_disable_primary_hw_plane(crtc->primary, crtc);
Ville Syrjäläf98551a2014-05-22 17:48:06 +03004267
Daniel Vetterf99d7062014-06-19 16:01:59 +02004268 /*
4269 * FIXME: Once we grow proper nuclear flip support out of this we need
4270 * to compute the mask of flip planes precisely. For the time being
4271 * consider this a flip to a NULL plane.
4272 */
4273 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004274}
4275
Jesse Barnesf67a5592011-01-05 10:31:48 -08004276static void ironlake_crtc_enable(struct drm_crtc *crtc)
4277{
4278 struct drm_device *dev = crtc->dev;
4279 struct drm_i915_private *dev_priv = dev->dev_private;
4280 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004281 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004282 int pipe = intel_crtc->pipe;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004283
Daniel Vetter08a48462012-07-02 11:43:47 +02004284 WARN_ON(!crtc->enabled);
4285
Jesse Barnesf67a5592011-01-05 10:31:48 -08004286 if (intel_crtc->active)
4287 return;
4288
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004289 if (intel_crtc->config->has_pch_encoder)
Daniel Vetterb14b1052014-04-24 23:55:13 +02004290 intel_prepare_shared_dpll(intel_crtc);
4291
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004292 if (intel_crtc->config->has_dp_encoder)
Daniel Vetter29407aa2014-04-24 23:55:08 +02004293 intel_dp_set_m_n(intel_crtc);
4294
4295 intel_set_pipe_timings(intel_crtc);
4296
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004297 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter29407aa2014-04-24 23:55:08 +02004298 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004299 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004300 }
4301
4302 ironlake_set_pipeconf(crtc);
4303
Jesse Barnesf67a5592011-01-05 10:31:48 -08004304 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004305
Daniel Vettera72e4c92014-09-30 10:56:47 +02004306 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4307 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni86642812013-04-12 17:57:57 -03004308
Daniel Vetterf6736a12013-06-05 13:34:30 +02004309 for_each_encoder_on_crtc(dev, crtc, encoder)
Daniel Vetter952735e2013-06-05 13:34:27 +02004310 if (encoder->pre_enable)
4311 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004312
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004313 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02004314 /* Note: FDI PLL enabling _must_ be done before we enable the
4315 * cpu pipes, hence this is separate from all the other fdi/pch
4316 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02004317 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02004318 } else {
4319 assert_fdi_tx_disabled(dev_priv, pipe);
4320 assert_fdi_rx_disabled(dev_priv, pipe);
4321 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004322
Jesse Barnesb074cec2013-04-25 12:55:02 -07004323 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004324
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02004325 /*
4326 * On ILK+ LUT must be loaded before the pipe is running but with
4327 * clocks enabled
4328 */
4329 intel_crtc_load_lut(crtc);
4330
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004331 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004332 intel_enable_pipe(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004333
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004334 if (intel_crtc->config->has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08004335 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004336
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004337 assert_vblank_disabled(crtc);
4338 drm_crtc_vblank_on(crtc);
4339
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004340 for_each_encoder_on_crtc(dev, crtc, encoder)
4341 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02004342
4343 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02004344 cpt_verify_modeset(dev, intel_crtc->pipe);
Daniel Vetter6ce94102012-10-04 19:20:03 +02004345
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004346 intel_crtc_enable_planes(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004347}
4348
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004349/* IPS only exists on ULT machines and is tied to pipe A. */
4350static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4351{
Damien Lespiauf5adf942013-06-24 18:29:34 +01004352 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004353}
4354
Paulo Zanonie4916942013-09-20 16:21:19 -03004355/*
4356 * This implements the workaround described in the "notes" section of the mode
4357 * set sequence documentation. When going from no pipes or single pipe to
4358 * multiple pipes, and planes are enabled after the pipe, we need to wait at
4359 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
4360 */
4361static void haswell_mode_set_planes_workaround(struct intel_crtc *crtc)
4362{
4363 struct drm_device *dev = crtc->base.dev;
4364 struct intel_crtc *crtc_it, *other_active_crtc = NULL;
4365
4366 /* We want to get the other_active_crtc only if there's only 1 other
4367 * active crtc. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004368 for_each_intel_crtc(dev, crtc_it) {
Paulo Zanonie4916942013-09-20 16:21:19 -03004369 if (!crtc_it->active || crtc_it == crtc)
4370 continue;
4371
4372 if (other_active_crtc)
4373 return;
4374
4375 other_active_crtc = crtc_it;
4376 }
4377 if (!other_active_crtc)
4378 return;
4379
4380 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4381 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4382}
4383
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004384static void haswell_crtc_enable(struct drm_crtc *crtc)
4385{
4386 struct drm_device *dev = crtc->dev;
4387 struct drm_i915_private *dev_priv = dev->dev_private;
4388 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4389 struct intel_encoder *encoder;
4390 int pipe = intel_crtc->pipe;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004391
4392 WARN_ON(!crtc->enabled);
4393
4394 if (intel_crtc->active)
4395 return;
4396
Daniel Vetterdf8ad702014-06-25 22:02:03 +03004397 if (intel_crtc_to_shared_dpll(intel_crtc))
4398 intel_enable_shared_dpll(intel_crtc);
4399
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004400 if (intel_crtc->config->has_dp_encoder)
Daniel Vetter229fca92014-04-24 23:55:09 +02004401 intel_dp_set_m_n(intel_crtc);
4402
4403 intel_set_pipe_timings(intel_crtc);
4404
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004405 if (intel_crtc->config->cpu_transcoder != TRANSCODER_EDP) {
4406 I915_WRITE(PIPE_MULT(intel_crtc->config->cpu_transcoder),
4407 intel_crtc->config->pixel_multiplier - 1);
Clint Taylorebb69c92014-09-30 10:30:22 -07004408 }
4409
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004410 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter229fca92014-04-24 23:55:09 +02004411 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004412 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter229fca92014-04-24 23:55:09 +02004413 }
4414
4415 haswell_set_pipeconf(crtc);
4416
4417 intel_set_pipe_csc(crtc);
4418
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004419 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004420
Daniel Vettera72e4c92014-09-30 10:56:47 +02004421 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004422 for_each_encoder_on_crtc(dev, crtc, encoder)
4423 if (encoder->pre_enable)
4424 encoder->pre_enable(encoder);
4425
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004426 if (intel_crtc->config->has_pch_encoder) {
Daniel Vettera72e4c92014-09-30 10:56:47 +02004427 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4428 true);
Imre Deak4fe94672014-06-25 22:01:49 +03004429 dev_priv->display.fdi_link_train(crtc);
4430 }
4431
Paulo Zanoni1f544382012-10-24 11:32:00 -02004432 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004433
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004434 if (IS_SKYLAKE(dev))
4435 skylake_pfit_enable(intel_crtc);
4436 else
4437 ironlake_pfit_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004438
4439 /*
4440 * On ILK+ LUT must be loaded before the pipe is running but with
4441 * clocks enabled
4442 */
4443 intel_crtc_load_lut(crtc);
4444
Paulo Zanoni1f544382012-10-24 11:32:00 -02004445 intel_ddi_set_pipe_settings(crtc);
Damien Lespiau8228c252013-03-07 15:30:27 +00004446 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004447
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004448 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004449 intel_enable_pipe(intel_crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004450
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004451 if (intel_crtc->config->has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004452 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004453
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004454 if (intel_crtc->config->dp_encoder_is_mst)
Dave Airlie0e32b392014-05-02 14:02:48 +10004455 intel_ddi_set_vc_payload_alloc(crtc, true);
4456
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004457 assert_vblank_disabled(crtc);
4458 drm_crtc_vblank_on(crtc);
4459
Jani Nikula8807e552013-08-30 19:40:32 +03004460 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004461 encoder->enable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004462 intel_opregion_notify_encoder(encoder, true);
4463 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004464
Paulo Zanonie4916942013-09-20 16:21:19 -03004465 /* If we change the relative order between pipe/planes enabling, we need
4466 * to change the workaround. */
4467 haswell_mode_set_planes_workaround(intel_crtc);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004468 intel_crtc_enable_planes(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004469}
4470
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004471static void skylake_pfit_disable(struct intel_crtc *crtc)
4472{
4473 struct drm_device *dev = crtc->base.dev;
4474 struct drm_i915_private *dev_priv = dev->dev_private;
4475 int pipe = crtc->pipe;
4476
4477 /* To avoid upsetting the power well on haswell only disable the pfit if
4478 * it's in use. The hw state code will make sure we get this right. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004479 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004480 I915_WRITE(PS_CTL(pipe), 0);
4481 I915_WRITE(PS_WIN_POS(pipe), 0);
4482 I915_WRITE(PS_WIN_SZ(pipe), 0);
4483 }
4484}
4485
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004486static void ironlake_pfit_disable(struct intel_crtc *crtc)
4487{
4488 struct drm_device *dev = crtc->base.dev;
4489 struct drm_i915_private *dev_priv = dev->dev_private;
4490 int pipe = crtc->pipe;
4491
4492 /* To avoid upsetting the power well on haswell only disable the pfit if
4493 * it's in use. The hw state code will make sure we get this right. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004494 if (crtc->config->pch_pfit.enabled) {
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004495 I915_WRITE(PF_CTL(pipe), 0);
4496 I915_WRITE(PF_WIN_POS(pipe), 0);
4497 I915_WRITE(PF_WIN_SZ(pipe), 0);
4498 }
4499}
4500
Jesse Barnes6be4a602010-09-10 10:26:01 -07004501static void ironlake_crtc_disable(struct drm_crtc *crtc)
4502{
4503 struct drm_device *dev = crtc->dev;
4504 struct drm_i915_private *dev_priv = dev->dev_private;
4505 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004506 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004507 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01004508 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004509
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004510 if (!intel_crtc->active)
4511 return;
4512
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004513 intel_crtc_disable_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004514
Daniel Vetterea9d7582012-07-10 10:42:52 +02004515 for_each_encoder_on_crtc(dev, crtc, encoder)
4516 encoder->disable(encoder);
4517
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004518 drm_crtc_vblank_off(crtc);
4519 assert_vblank_disabled(crtc);
4520
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004521 if (intel_crtc->config->has_pch_encoder)
Daniel Vettera72e4c92014-09-30 10:56:47 +02004522 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
Daniel Vetterd925c592013-06-05 13:34:04 +02004523
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03004524 intel_disable_pipe(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004525
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004526 ironlake_pfit_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004527
Daniel Vetterbf49ec82012-09-06 22:15:40 +02004528 for_each_encoder_on_crtc(dev, crtc, encoder)
4529 if (encoder->post_disable)
4530 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004531
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004532 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterd925c592013-06-05 13:34:04 +02004533 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004534
Daniel Vetterd925c592013-06-05 13:34:04 +02004535 ironlake_disable_pch_transcoder(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004536
Daniel Vetterd925c592013-06-05 13:34:04 +02004537 if (HAS_PCH_CPT(dev)) {
4538 /* disable TRANS_DP_CTL */
4539 reg = TRANS_DP_CTL(pipe);
4540 temp = I915_READ(reg);
4541 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
4542 TRANS_DP_PORT_SEL_MASK);
4543 temp |= TRANS_DP_PORT_SEL_NONE;
4544 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004545
Daniel Vetterd925c592013-06-05 13:34:04 +02004546 /* disable DPLL_SEL */
4547 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02004548 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
Daniel Vetterd925c592013-06-05 13:34:04 +02004549 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004550 }
Daniel Vetterd925c592013-06-05 13:34:04 +02004551
4552 /* disable PCH DPLL */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004553 intel_disable_shared_dpll(intel_crtc);
Daniel Vetterd925c592013-06-05 13:34:04 +02004554
4555 ironlake_fdi_pll_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004556 }
4557
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004558 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004559 intel_update_watermarks(crtc);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004560
4561 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004562 intel_fbc_update(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004563 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004564}
4565
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004566static void haswell_crtc_disable(struct drm_crtc *crtc)
4567{
4568 struct drm_device *dev = crtc->dev;
4569 struct drm_i915_private *dev_priv = dev->dev_private;
4570 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4571 struct intel_encoder *encoder;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004572 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004573
4574 if (!intel_crtc->active)
4575 return;
4576
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004577 intel_crtc_disable_planes(crtc);
Ville Syrjälädda9a662013-09-19 17:00:37 -03004578
Jani Nikula8807e552013-08-30 19:40:32 +03004579 for_each_encoder_on_crtc(dev, crtc, encoder) {
4580 intel_opregion_notify_encoder(encoder, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004581 encoder->disable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004582 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004583
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004584 drm_crtc_vblank_off(crtc);
4585 assert_vblank_disabled(crtc);
4586
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004587 if (intel_crtc->config->has_pch_encoder)
Daniel Vettera72e4c92014-09-30 10:56:47 +02004588 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4589 false);
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03004590 intel_disable_pipe(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004591
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004592 if (intel_crtc->config->dp_encoder_is_mst)
Ville Syrjäläa4bf2142014-08-18 21:27:34 +03004593 intel_ddi_set_vc_payload_alloc(crtc, false);
4594
Paulo Zanoniad80a812012-10-24 16:06:19 -02004595 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004596
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004597 if (IS_SKYLAKE(dev))
4598 skylake_pfit_disable(intel_crtc);
4599 else
4600 ironlake_pfit_disable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004601
Paulo Zanoni1f544382012-10-24 11:32:00 -02004602 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004603
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004604 if (intel_crtc->config->has_pch_encoder) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02004605 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02004606 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02004607 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004608
Imre Deak97b040a2014-06-25 22:01:50 +03004609 for_each_encoder_on_crtc(dev, crtc, encoder)
4610 if (encoder->post_disable)
4611 encoder->post_disable(encoder);
4612
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004613 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004614 intel_update_watermarks(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004615
4616 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004617 intel_fbc_update(dev);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004618 mutex_unlock(&dev->struct_mutex);
Daniel Vetterdf8ad702014-06-25 22:02:03 +03004619
4620 if (intel_crtc_to_shared_dpll(intel_crtc))
4621 intel_disable_shared_dpll(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004622}
4623
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004624static void ironlake_crtc_off(struct drm_crtc *crtc)
4625{
4626 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004627 intel_put_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004628}
4629
Paulo Zanoni6441ab52012-10-05 12:05:58 -03004630
Jesse Barnes2dd24552013-04-25 12:55:01 -07004631static void i9xx_pfit_enable(struct intel_crtc *crtc)
4632{
4633 struct drm_device *dev = crtc->base.dev;
4634 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004635 struct intel_crtc_state *pipe_config = crtc->config;
Jesse Barnes2dd24552013-04-25 12:55:01 -07004636
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02004637 if (!pipe_config->gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07004638 return;
4639
Daniel Vetterc0b03412013-05-28 12:05:54 +02004640 /*
4641 * The panel fitter should only be adjusted whilst the pipe is disabled,
4642 * according to register description and PRM.
4643 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07004644 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
4645 assert_pipe_disabled(dev_priv, crtc->pipe);
4646
Jesse Barnesb074cec2013-04-25 12:55:02 -07004647 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
4648 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02004649
4650 /* Border color in case we don't scale up to the full screen. Black by
4651 * default, change to something else for debugging. */
4652 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07004653}
4654
Dave Airlied05410f2014-06-05 13:22:59 +10004655static enum intel_display_power_domain port_to_power_domain(enum port port)
4656{
4657 switch (port) {
4658 case PORT_A:
4659 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
4660 case PORT_B:
4661 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
4662 case PORT_C:
4663 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
4664 case PORT_D:
4665 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
4666 default:
4667 WARN_ON_ONCE(1);
4668 return POWER_DOMAIN_PORT_OTHER;
4669 }
4670}
4671
Imre Deak77d22dc2014-03-05 16:20:52 +02004672#define for_each_power_domain(domain, mask) \
4673 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
4674 if ((1 << (domain)) & (mask))
4675
Imre Deak319be8a2014-03-04 19:22:57 +02004676enum intel_display_power_domain
4677intel_display_port_power_domain(struct intel_encoder *intel_encoder)
Imre Deak77d22dc2014-03-05 16:20:52 +02004678{
Imre Deak319be8a2014-03-04 19:22:57 +02004679 struct drm_device *dev = intel_encoder->base.dev;
4680 struct intel_digital_port *intel_dig_port;
4681
4682 switch (intel_encoder->type) {
4683 case INTEL_OUTPUT_UNKNOWN:
4684 /* Only DDI platforms should ever use this output type */
4685 WARN_ON_ONCE(!HAS_DDI(dev));
4686 case INTEL_OUTPUT_DISPLAYPORT:
4687 case INTEL_OUTPUT_HDMI:
4688 case INTEL_OUTPUT_EDP:
4689 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
Dave Airlied05410f2014-06-05 13:22:59 +10004690 return port_to_power_domain(intel_dig_port->port);
Dave Airlie0e32b392014-05-02 14:02:48 +10004691 case INTEL_OUTPUT_DP_MST:
4692 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
4693 return port_to_power_domain(intel_dig_port->port);
Imre Deak319be8a2014-03-04 19:22:57 +02004694 case INTEL_OUTPUT_ANALOG:
4695 return POWER_DOMAIN_PORT_CRT;
4696 case INTEL_OUTPUT_DSI:
4697 return POWER_DOMAIN_PORT_DSI;
4698 default:
4699 return POWER_DOMAIN_PORT_OTHER;
4700 }
4701}
4702
4703static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
4704{
4705 struct drm_device *dev = crtc->dev;
4706 struct intel_encoder *intel_encoder;
4707 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4708 enum pipe pipe = intel_crtc->pipe;
Imre Deak77d22dc2014-03-05 16:20:52 +02004709 unsigned long mask;
4710 enum transcoder transcoder;
4711
4712 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
4713
4714 mask = BIT(POWER_DOMAIN_PIPE(pipe));
4715 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004716 if (intel_crtc->config->pch_pfit.enabled ||
4717 intel_crtc->config->pch_pfit.force_thru)
Imre Deak77d22dc2014-03-05 16:20:52 +02004718 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
4719
Imre Deak319be8a2014-03-04 19:22:57 +02004720 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4721 mask |= BIT(intel_display_port_power_domain(intel_encoder));
4722
Imre Deak77d22dc2014-03-05 16:20:52 +02004723 return mask;
4724}
4725
Imre Deak77d22dc2014-03-05 16:20:52 +02004726static void modeset_update_crtc_power_domains(struct drm_device *dev)
4727{
4728 struct drm_i915_private *dev_priv = dev->dev_private;
4729 unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
4730 struct intel_crtc *crtc;
4731
4732 /*
4733 * First get all needed power domains, then put all unneeded, to avoid
4734 * any unnecessary toggling of the power wells.
4735 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004736 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004737 enum intel_display_power_domain domain;
4738
4739 if (!crtc->base.enabled)
4740 continue;
4741
Imre Deak319be8a2014-03-04 19:22:57 +02004742 pipe_domains[crtc->pipe] = get_crtc_power_domains(&crtc->base);
Imre Deak77d22dc2014-03-05 16:20:52 +02004743
4744 for_each_power_domain(domain, pipe_domains[crtc->pipe])
4745 intel_display_power_get(dev_priv, domain);
4746 }
4747
Ville Syrjälä50f6e502014-11-06 14:49:12 +02004748 if (dev_priv->display.modeset_global_resources)
4749 dev_priv->display.modeset_global_resources(dev);
4750
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004751 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004752 enum intel_display_power_domain domain;
4753
4754 for_each_power_domain(domain, crtc->enabled_power_domains)
4755 intel_display_power_put(dev_priv, domain);
4756
4757 crtc->enabled_power_domains = pipe_domains[crtc->pipe];
4758 }
4759
4760 intel_display_set_init_power(dev_priv, false);
4761}
4762
Ville Syrjälädfcab172014-06-13 13:37:47 +03004763/* returns HPLL frequency in kHz */
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004764static int valleyview_get_vco(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004765{
Jesse Barnes586f49d2013-11-04 16:06:59 -08004766 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
Jesse Barnes30a970c2013-11-04 13:48:12 -08004767
Jesse Barnes586f49d2013-11-04 16:06:59 -08004768 /* Obtain SKU information */
4769 mutex_lock(&dev_priv->dpio_lock);
4770 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
4771 CCK_FUSE_HPLL_FREQ_MASK;
4772 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004773
Ville Syrjälädfcab172014-06-13 13:37:47 +03004774 return vco_freq[hpll_freq] * 1000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004775}
4776
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004777static void vlv_update_cdclk(struct drm_device *dev)
4778{
4779 struct drm_i915_private *dev_priv = dev->dev_private;
4780
4781 dev_priv->vlv_cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
Ville Syrjälä43dc52c2014-10-07 17:41:20 +03004782 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004783 dev_priv->vlv_cdclk_freq);
4784
4785 /*
4786 * Program the gmbus_freq based on the cdclk frequency.
4787 * BSpec erroneously claims we should aim for 4MHz, but
4788 * in fact 1MHz is the correct frequency.
4789 */
Ville Syrjälä6be1e3d2014-10-16 20:52:31 +03004790 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->vlv_cdclk_freq, 1000));
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004791}
4792
Jesse Barnes30a970c2013-11-04 13:48:12 -08004793/* Adjust CDclk dividers to allow high res or save power if possible */
4794static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
4795{
4796 struct drm_i915_private *dev_priv = dev->dev_private;
4797 u32 val, cmd;
4798
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03004799 WARN_ON(dev_priv->display.get_display_clock_speed(dev) != dev_priv->vlv_cdclk_freq);
Imre Deakd60c4472014-03-27 17:45:10 +02004800
Ville Syrjälädfcab172014-06-13 13:37:47 +03004801 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
Jesse Barnes30a970c2013-11-04 13:48:12 -08004802 cmd = 2;
Ville Syrjälädfcab172014-06-13 13:37:47 +03004803 else if (cdclk == 266667)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004804 cmd = 1;
4805 else
4806 cmd = 0;
4807
4808 mutex_lock(&dev_priv->rps.hw_lock);
4809 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4810 val &= ~DSPFREQGUAR_MASK;
4811 val |= (cmd << DSPFREQGUAR_SHIFT);
4812 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4813 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4814 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
4815 50)) {
4816 DRM_ERROR("timed out waiting for CDclk change\n");
4817 }
4818 mutex_unlock(&dev_priv->rps.hw_lock);
4819
Ville Syrjälädfcab172014-06-13 13:37:47 +03004820 if (cdclk == 400000) {
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03004821 u32 divider;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004822
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03004823 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004824
4825 mutex_lock(&dev_priv->dpio_lock);
4826 /* adjust cdclk divider */
4827 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
Ville Syrjälä9cf33db2014-06-13 13:37:48 +03004828 val &= ~DISPLAY_FREQUENCY_VALUES;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004829 val |= divider;
4830 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
Ville Syrjäläa877e802014-06-13 13:37:52 +03004831
4832 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
4833 DISPLAY_FREQUENCY_STATUS) == (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
4834 50))
4835 DRM_ERROR("timed out waiting for CDclk change\n");
Jesse Barnes30a970c2013-11-04 13:48:12 -08004836 mutex_unlock(&dev_priv->dpio_lock);
4837 }
4838
4839 mutex_lock(&dev_priv->dpio_lock);
4840 /* adjust self-refresh exit latency value */
4841 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
4842 val &= ~0x7f;
4843
4844 /*
4845 * For high bandwidth configs, we set a higher latency in the bunit
4846 * so that the core display fetch happens in time to avoid underruns.
4847 */
Ville Syrjälädfcab172014-06-13 13:37:47 +03004848 if (cdclk == 400000)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004849 val |= 4500 / 250; /* 4.5 usec */
4850 else
4851 val |= 3000 / 250; /* 3.0 usec */
4852 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
4853 mutex_unlock(&dev_priv->dpio_lock);
4854
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004855 vlv_update_cdclk(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004856}
4857
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004858static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
4859{
4860 struct drm_i915_private *dev_priv = dev->dev_private;
4861 u32 val, cmd;
4862
4863 WARN_ON(dev_priv->display.get_display_clock_speed(dev) != dev_priv->vlv_cdclk_freq);
4864
4865 switch (cdclk) {
4866 case 400000:
4867 cmd = 3;
4868 break;
4869 case 333333:
4870 case 320000:
4871 cmd = 2;
4872 break;
4873 case 266667:
4874 cmd = 1;
4875 break;
4876 case 200000:
4877 cmd = 0;
4878 break;
4879 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01004880 MISSING_CASE(cdclk);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004881 return;
4882 }
4883
4884 mutex_lock(&dev_priv->rps.hw_lock);
4885 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4886 val &= ~DSPFREQGUAR_MASK_CHV;
4887 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
4888 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4889 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4890 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
4891 50)) {
4892 DRM_ERROR("timed out waiting for CDclk change\n");
4893 }
4894 mutex_unlock(&dev_priv->rps.hw_lock);
4895
4896 vlv_update_cdclk(dev);
4897}
4898
Jesse Barnes30a970c2013-11-04 13:48:12 -08004899static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
4900 int max_pixclk)
4901{
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03004902 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03004903
Ville Syrjäläd49a3402014-06-28 02:03:58 +03004904 /* FIXME: Punit isn't quite ready yet */
4905 if (IS_CHERRYVIEW(dev_priv->dev))
4906 return 400000;
4907
Jesse Barnes30a970c2013-11-04 13:48:12 -08004908 /*
4909 * Really only a few cases to deal with, as only 4 CDclks are supported:
4910 * 200MHz
4911 * 267MHz
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03004912 * 320/333MHz (depends on HPLL freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004913 * 400MHz
4914 * So we check to see whether we're above 90% of the lower bin and
4915 * adjust if needed.
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03004916 *
4917 * We seem to get an unstable or solid color picture at 200MHz.
4918 * Not sure what's wrong. For now use 200MHz only when all pipes
4919 * are off.
Jesse Barnes30a970c2013-11-04 13:48:12 -08004920 */
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03004921 if (max_pixclk > freq_320*9/10)
Ville Syrjälädfcab172014-06-13 13:37:47 +03004922 return 400000;
4923 else if (max_pixclk > 266667*9/10)
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03004924 return freq_320;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03004925 else if (max_pixclk > 0)
Ville Syrjälädfcab172014-06-13 13:37:47 +03004926 return 266667;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03004927 else
4928 return 200000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004929}
4930
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004931/* compute the max pixel clock for new configuration */
4932static int intel_mode_max_pixclk(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004933{
4934 struct drm_device *dev = dev_priv->dev;
4935 struct intel_crtc *intel_crtc;
4936 int max_pixclk = 0;
4937
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004938 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004939 if (intel_crtc->new_enabled)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004940 max_pixclk = max(max_pixclk,
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02004941 intel_crtc->new_config->base.adjusted_mode.crtc_clock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004942 }
4943
4944 return max_pixclk;
4945}
4946
4947static void valleyview_modeset_global_pipes(struct drm_device *dev,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004948 unsigned *prepare_pipes)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004949{
4950 struct drm_i915_private *dev_priv = dev->dev_private;
4951 struct intel_crtc *intel_crtc;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004952 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004953
Imre Deakd60c4472014-03-27 17:45:10 +02004954 if (valleyview_calc_cdclk(dev_priv, max_pixclk) ==
4955 dev_priv->vlv_cdclk_freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004956 return;
4957
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004958 /* disable/enable all currently active pipes while we change cdclk */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004959 for_each_intel_crtc(dev, intel_crtc)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004960 if (intel_crtc->base.enabled)
4961 *prepare_pipes |= (1 << intel_crtc->pipe);
4962}
4963
4964static void valleyview_modeset_global_resources(struct drm_device *dev)
4965{
4966 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004967 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004968 int req_cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
4969
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004970 if (req_cdclk != dev_priv->vlv_cdclk_freq) {
Imre Deak738c05c2014-11-19 16:25:37 +02004971 /*
4972 * FIXME: We can end up here with all power domains off, yet
4973 * with a CDCLK frequency other than the minimum. To account
4974 * for this take the PIPE-A power domain, which covers the HW
4975 * blocks needed for the following programming. This can be
4976 * removed once it's guaranteed that we get here either with
4977 * the minimum CDCLK set, or the required power domains
4978 * enabled.
4979 */
4980 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
4981
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004982 if (IS_CHERRYVIEW(dev))
4983 cherryview_set_cdclk(dev, req_cdclk);
4984 else
4985 valleyview_set_cdclk(dev, req_cdclk);
Imre Deak738c05c2014-11-19 16:25:37 +02004986
4987 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004988 }
Jesse Barnes30a970c2013-11-04 13:48:12 -08004989}
4990
Jesse Barnes89b667f2013-04-18 14:51:36 -07004991static void valleyview_crtc_enable(struct drm_crtc *crtc)
4992{
4993 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02004994 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004995 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4996 struct intel_encoder *encoder;
4997 int pipe = intel_crtc->pipe;
Jani Nikula23538ef2013-08-27 15:12:22 +03004998 bool is_dsi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004999
5000 WARN_ON(!crtc->enabled);
5001
5002 if (intel_crtc->active)
5003 return;
5004
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005005 is_dsi = intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI);
Shobhit Kumar8525a232014-06-25 12:20:39 +05305006
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005007 if (!is_dsi) {
5008 if (IS_CHERRYVIEW(dev))
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005009 chv_prepare_pll(intel_crtc, intel_crtc->config);
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005010 else
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005011 vlv_prepare_pll(intel_crtc, intel_crtc->config);
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005012 }
Daniel Vetter5b18e572014-04-24 23:55:06 +02005013
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005014 if (intel_crtc->config->has_dp_encoder)
Daniel Vetter5b18e572014-04-24 23:55:06 +02005015 intel_dp_set_m_n(intel_crtc);
5016
5017 intel_set_pipe_timings(intel_crtc);
5018
Ville Syrjäläc14b0482014-10-16 20:52:34 +03005019 if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) {
5020 struct drm_i915_private *dev_priv = dev->dev_private;
5021
5022 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
5023 I915_WRITE(CHV_CANVAS(pipe), 0);
5024 }
5025
Daniel Vetter5b18e572014-04-24 23:55:06 +02005026 i9xx_set_pipeconf(intel_crtc);
5027
Jesse Barnes89b667f2013-04-18 14:51:36 -07005028 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07005029
Daniel Vettera72e4c92014-09-30 10:56:47 +02005030 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005031
Jesse Barnes89b667f2013-04-18 14:51:36 -07005032 for_each_encoder_on_crtc(dev, crtc, encoder)
5033 if (encoder->pre_pll_enable)
5034 encoder->pre_pll_enable(encoder);
5035
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005036 if (!is_dsi) {
5037 if (IS_CHERRYVIEW(dev))
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005038 chv_enable_pll(intel_crtc, intel_crtc->config);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005039 else
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005040 vlv_enable_pll(intel_crtc, intel_crtc->config);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005041 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07005042
5043 for_each_encoder_on_crtc(dev, crtc, encoder)
5044 if (encoder->pre_enable)
5045 encoder->pre_enable(encoder);
5046
Jesse Barnes2dd24552013-04-25 12:55:01 -07005047 i9xx_pfit_enable(intel_crtc);
5048
Ville Syrjälä63cbb072013-06-04 13:48:59 +03005049 intel_crtc_load_lut(crtc);
5050
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005051 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02005052 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02005053
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03005054 assert_vblank_disabled(crtc);
5055 drm_crtc_vblank_on(crtc);
5056
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005057 for_each_encoder_on_crtc(dev, crtc, encoder)
5058 encoder->enable(encoder);
5059
Ville Syrjälä9ab04602014-05-08 19:23:14 +03005060 intel_crtc_enable_planes(crtc);
Daniel Vetterd40d9182014-05-21 11:45:40 +02005061
Ville Syrjälä56b80e12014-05-16 19:40:22 +03005062 /* Underruns don't raise interrupts, so check manually. */
Daniel Vettera72e4c92014-09-30 10:56:47 +02005063 i9xx_check_fifo_underruns(dev_priv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005064}
5065
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005066static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
5067{
5068 struct drm_device *dev = crtc->base.dev;
5069 struct drm_i915_private *dev_priv = dev->dev_private;
5070
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005071 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
5072 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005073}
5074
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005075static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005076{
5077 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02005078 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08005079 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005080 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08005081 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08005082
Daniel Vetter08a48462012-07-02 11:43:47 +02005083 WARN_ON(!crtc->enabled);
5084
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005085 if (intel_crtc->active)
5086 return;
5087
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005088 i9xx_set_pll_dividers(intel_crtc);
5089
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005090 if (intel_crtc->config->has_dp_encoder)
Daniel Vetter5b18e572014-04-24 23:55:06 +02005091 intel_dp_set_m_n(intel_crtc);
5092
5093 intel_set_pipe_timings(intel_crtc);
5094
Daniel Vetter5b18e572014-04-24 23:55:06 +02005095 i9xx_set_pipeconf(intel_crtc);
5096
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005097 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01005098
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005099 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005100 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005101
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02005102 for_each_encoder_on_crtc(dev, crtc, encoder)
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02005103 if (encoder->pre_enable)
5104 encoder->pre_enable(encoder);
5105
Daniel Vetterf6736a12013-06-05 13:34:30 +02005106 i9xx_enable_pll(intel_crtc);
5107
Jesse Barnes2dd24552013-04-25 12:55:01 -07005108 i9xx_pfit_enable(intel_crtc);
5109
Ville Syrjälä63cbb072013-06-04 13:48:59 +03005110 intel_crtc_load_lut(crtc);
5111
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005112 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02005113 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02005114
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03005115 assert_vblank_disabled(crtc);
5116 drm_crtc_vblank_on(crtc);
5117
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005118 for_each_encoder_on_crtc(dev, crtc, encoder)
5119 encoder->enable(encoder);
5120
Ville Syrjälä9ab04602014-05-08 19:23:14 +03005121 intel_crtc_enable_planes(crtc);
Daniel Vetterd40d9182014-05-21 11:45:40 +02005122
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005123 /*
5124 * Gen2 reports pipe underruns whenever all planes are disabled.
5125 * So don't enable underrun reporting before at least some planes
5126 * are enabled.
5127 * FIXME: Need to fix the logic to work when we turn off all planes
5128 * but leave the pipe running.
5129 */
5130 if (IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005131 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005132
Ville Syrjälä56b80e12014-05-16 19:40:22 +03005133 /* Underruns don't raise interrupts, so check manually. */
Daniel Vettera72e4c92014-09-30 10:56:47 +02005134 i9xx_check_fifo_underruns(dev_priv);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005135}
5136
Daniel Vetter87476d62013-04-11 16:29:06 +02005137static void i9xx_pfit_disable(struct intel_crtc *crtc)
5138{
5139 struct drm_device *dev = crtc->base.dev;
5140 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02005141
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005142 if (!crtc->config->gmch_pfit.control)
Daniel Vetter328d8e82013-05-08 10:36:31 +02005143 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02005144
5145 assert_pipe_disabled(dev_priv, crtc->pipe);
5146
Daniel Vetter328d8e82013-05-08 10:36:31 +02005147 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
5148 I915_READ(PFIT_CONTROL));
5149 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02005150}
5151
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005152static void i9xx_crtc_disable(struct drm_crtc *crtc)
5153{
5154 struct drm_device *dev = crtc->dev;
5155 struct drm_i915_private *dev_priv = dev->dev_private;
5156 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005157 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005158 int pipe = intel_crtc->pipe;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005159
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005160 if (!intel_crtc->active)
5161 return;
5162
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005163 /*
5164 * Gen2 reports pipe underruns whenever all planes are disabled.
5165 * So diasble underrun reporting before all the planes get disabled.
5166 * FIXME: Need to fix the logic to work when we turn off all planes
5167 * but leave the pipe running.
5168 */
5169 if (IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005170 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005171
Imre Deak564ed192014-06-13 14:54:21 +03005172 /*
5173 * Vblank time updates from the shadow to live plane control register
5174 * are blocked if the memory self-refresh mode is active at that
5175 * moment. So to make sure the plane gets truly disabled, disable
5176 * first the self-refresh mode. The self-refresh enable bit in turn
5177 * will be checked/applied by the HW only at the next frame start
5178 * event which is after the vblank start event, so we need to have a
5179 * wait-for-vblank between disabling the plane and the pipe.
5180 */
5181 intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03005182 intel_crtc_disable_planes(crtc);
5183
Ville Syrjälä6304cd92014-04-25 13:30:12 +03005184 /*
5185 * On gen2 planes are double buffered but the pipe isn't, so we must
5186 * wait for planes to fully turn off before disabling the pipe.
Imre Deak564ed192014-06-13 14:54:21 +03005187 * We also need to wait on all gmch platforms because of the
5188 * self-refresh mode constraint explained above.
Ville Syrjälä6304cd92014-04-25 13:30:12 +03005189 */
Imre Deak564ed192014-06-13 14:54:21 +03005190 intel_wait_for_vblank(dev, pipe);
Ville Syrjälä6304cd92014-04-25 13:30:12 +03005191
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03005192 for_each_encoder_on_crtc(dev, crtc, encoder)
5193 encoder->disable(encoder);
5194
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005195 drm_crtc_vblank_off(crtc);
5196 assert_vblank_disabled(crtc);
5197
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03005198 intel_disable_pipe(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02005199
Daniel Vetter87476d62013-04-11 16:29:06 +02005200 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02005201
Jesse Barnes89b667f2013-04-18 14:51:36 -07005202 for_each_encoder_on_crtc(dev, crtc, encoder)
5203 if (encoder->post_disable)
5204 encoder->post_disable(encoder);
5205
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005206 if (!intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI)) {
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03005207 if (IS_CHERRYVIEW(dev))
5208 chv_disable_pll(dev_priv, pipe);
5209 else if (IS_VALLEYVIEW(dev))
5210 vlv_disable_pll(dev_priv, pipe);
5211 else
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03005212 i9xx_disable_pll(intel_crtc);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03005213 }
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005214
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005215 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005216 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005217
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005218 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03005219 intel_update_watermarks(crtc);
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005220
Daniel Vetterefa96242014-04-24 23:55:02 +02005221 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02005222 intel_fbc_update(dev);
Daniel Vetterefa96242014-04-24 23:55:02 +02005223 mutex_unlock(&dev->struct_mutex);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005224}
5225
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005226static void i9xx_crtc_off(struct drm_crtc *crtc)
5227{
5228}
5229
Borun Fub04c5bd2014-07-12 10:02:27 +05305230/* Master function to enable/disable CRTC and corresponding power wells */
5231void intel_crtc_control(struct drm_crtc *crtc, bool enable)
Chris Wilsoncdd59982010-09-08 16:30:16 +01005232{
Chris Wilsoncdd59982010-09-08 16:30:16 +01005233 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005234 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005235 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005236 enum intel_display_power_domain domain;
5237 unsigned long domains;
Daniel Vetter976f8a22012-07-08 22:34:21 +02005238
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005239 if (enable) {
5240 if (!intel_crtc->active) {
Daniel Vettere1e9fb82014-06-25 22:02:04 +03005241 domains = get_crtc_power_domains(crtc);
5242 for_each_power_domain(domain, domains)
5243 intel_display_power_get(dev_priv, domain);
5244 intel_crtc->enabled_power_domains = domains;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005245
5246 dev_priv->display.crtc_enable(crtc);
5247 }
5248 } else {
5249 if (intel_crtc->active) {
5250 dev_priv->display.crtc_disable(crtc);
5251
Daniel Vettere1e9fb82014-06-25 22:02:04 +03005252 domains = intel_crtc->enabled_power_domains;
5253 for_each_power_domain(domain, domains)
5254 intel_display_power_put(dev_priv, domain);
5255 intel_crtc->enabled_power_domains = 0;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005256 }
5257 }
Borun Fub04c5bd2014-07-12 10:02:27 +05305258}
5259
5260/**
5261 * Sets the power management mode of the pipe and plane.
5262 */
5263void intel_crtc_update_dpms(struct drm_crtc *crtc)
5264{
5265 struct drm_device *dev = crtc->dev;
5266 struct intel_encoder *intel_encoder;
5267 bool enable = false;
5268
5269 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
5270 enable |= intel_encoder->connectors_active;
5271
5272 intel_crtc_control(crtc, enable);
Daniel Vetter976f8a22012-07-08 22:34:21 +02005273}
5274
Daniel Vetter976f8a22012-07-08 22:34:21 +02005275static void intel_crtc_disable(struct drm_crtc *crtc)
5276{
5277 struct drm_device *dev = crtc->dev;
5278 struct drm_connector *connector;
5279 struct drm_i915_private *dev_priv = dev->dev_private;
5280
5281 /* crtc should still be enabled when we disable it. */
5282 WARN_ON(!crtc->enabled);
5283
5284 dev_priv->display.crtc_disable(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005285 dev_priv->display.off(crtc);
5286
Gustavo Padovan455a6802014-12-01 15:40:11 -08005287 crtc->primary->funcs->disable_plane(crtc->primary);
Daniel Vetter976f8a22012-07-08 22:34:21 +02005288
5289 /* Update computed state. */
5290 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
5291 if (!connector->encoder || !connector->encoder->crtc)
5292 continue;
5293
5294 if (connector->encoder->crtc != crtc)
5295 continue;
5296
5297 connector->dpms = DRM_MODE_DPMS_OFF;
5298 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01005299 }
5300}
5301
Chris Wilsonea5b2132010-08-04 13:50:23 +01005302void intel_encoder_destroy(struct drm_encoder *encoder)
5303{
Chris Wilson4ef69c72010-09-09 15:14:28 +01005304 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01005305
Chris Wilsonea5b2132010-08-04 13:50:23 +01005306 drm_encoder_cleanup(encoder);
5307 kfree(intel_encoder);
5308}
5309
Damien Lespiau92373292013-08-08 22:28:57 +01005310/* Simple dpms helper for encoders with just one connector, no cloning and only
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005311 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
5312 * state of the entire output pipe. */
Damien Lespiau92373292013-08-08 22:28:57 +01005313static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005314{
5315 if (mode == DRM_MODE_DPMS_ON) {
5316 encoder->connectors_active = true;
5317
Daniel Vetterb2cabb02012-07-01 22:42:24 +02005318 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005319 } else {
5320 encoder->connectors_active = false;
5321
Daniel Vetterb2cabb02012-07-01 22:42:24 +02005322 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005323 }
5324}
5325
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005326/* Cross check the actual hw state with our own modeset state tracking (and it's
5327 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02005328static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005329{
5330 if (connector->get_hw_state(connector)) {
5331 struct intel_encoder *encoder = connector->encoder;
5332 struct drm_crtc *crtc;
5333 bool encoder_enabled;
5334 enum pipe pipe;
5335
5336 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
5337 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03005338 connector->base.name);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005339
Dave Airlie0e32b392014-05-02 14:02:48 +10005340 /* there is no real hw state for MST connectors */
5341 if (connector->mst_port)
5342 return;
5343
Rob Clarke2c719b2014-12-15 13:56:32 -05005344 I915_STATE_WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005345 "wrong connector dpms state\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05005346 I915_STATE_WARN(connector->base.encoder != &encoder->base,
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005347 "active connector not linked to encoder\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005348
Dave Airlie36cd7442014-05-02 13:44:18 +10005349 if (encoder) {
Rob Clarke2c719b2014-12-15 13:56:32 -05005350 I915_STATE_WARN(!encoder->connectors_active,
Dave Airlie36cd7442014-05-02 13:44:18 +10005351 "encoder->connectors_active not set\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005352
Dave Airlie36cd7442014-05-02 13:44:18 +10005353 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
Rob Clarke2c719b2014-12-15 13:56:32 -05005354 I915_STATE_WARN(!encoder_enabled, "encoder not enabled\n");
5355 if (I915_STATE_WARN_ON(!encoder->base.crtc))
Dave Airlie36cd7442014-05-02 13:44:18 +10005356 return;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005357
Dave Airlie36cd7442014-05-02 13:44:18 +10005358 crtc = encoder->base.crtc;
5359
Rob Clarke2c719b2014-12-15 13:56:32 -05005360 I915_STATE_WARN(!crtc->enabled, "crtc not enabled\n");
5361 I915_STATE_WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
5362 I915_STATE_WARN(pipe != to_intel_crtc(crtc)->pipe,
Dave Airlie36cd7442014-05-02 13:44:18 +10005363 "encoder active on the wrong pipe\n");
5364 }
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005365 }
5366}
5367
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005368/* Even simpler default implementation, if there's really no special case to
5369 * consider. */
5370void intel_connector_dpms(struct drm_connector *connector, int mode)
5371{
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005372 /* All the simple cases only support two dpms states. */
5373 if (mode != DRM_MODE_DPMS_ON)
5374 mode = DRM_MODE_DPMS_OFF;
5375
5376 if (mode == connector->dpms)
5377 return;
5378
5379 connector->dpms = mode;
5380
5381 /* Only need to change hw state when actually enabled */
Chris Wilsonc9976dc2013-09-29 19:15:07 +01005382 if (connector->encoder)
5383 intel_encoder_dpms(to_intel_encoder(connector->encoder), mode);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005384
Daniel Vetterb9805142012-08-31 17:37:33 +02005385 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005386}
5387
Daniel Vetterf0947c32012-07-02 13:10:34 +02005388/* Simple connector->get_hw_state implementation for encoders that support only
5389 * one connector and no cloning and hence the encoder state determines the state
5390 * of the connector. */
5391bool intel_connector_get_hw_state(struct intel_connector *connector)
5392{
Daniel Vetter24929352012-07-02 20:28:59 +02005393 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02005394 struct intel_encoder *encoder = connector->encoder;
5395
5396 return encoder->get_hw_state(encoder, &pipe);
5397}
5398
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005399static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005400 struct intel_crtc_state *pipe_config)
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005401{
5402 struct drm_i915_private *dev_priv = dev->dev_private;
5403 struct intel_crtc *pipe_B_crtc =
5404 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
5405
5406 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
5407 pipe_name(pipe), pipe_config->fdi_lanes);
5408 if (pipe_config->fdi_lanes > 4) {
5409 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
5410 pipe_name(pipe), pipe_config->fdi_lanes);
5411 return false;
5412 }
5413
Paulo Zanonibafb6552013-11-02 21:07:44 -07005414 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005415 if (pipe_config->fdi_lanes > 2) {
5416 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
5417 pipe_config->fdi_lanes);
5418 return false;
5419 } else {
5420 return true;
5421 }
5422 }
5423
5424 if (INTEL_INFO(dev)->num_pipes == 2)
5425 return true;
5426
5427 /* Ivybridge 3 pipe is really complicated */
5428 switch (pipe) {
5429 case PIPE_A:
5430 return true;
5431 case PIPE_B:
5432 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
5433 pipe_config->fdi_lanes > 2) {
5434 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5435 pipe_name(pipe), pipe_config->fdi_lanes);
5436 return false;
5437 }
5438 return true;
5439 case PIPE_C:
Daniel Vetter1e833f42013-02-19 22:31:57 +01005440 if (!pipe_has_enabled_pch(pipe_B_crtc) ||
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005441 pipe_B_crtc->config->fdi_lanes <= 2) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005442 if (pipe_config->fdi_lanes > 2) {
5443 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5444 pipe_name(pipe), pipe_config->fdi_lanes);
5445 return false;
5446 }
5447 } else {
5448 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
5449 return false;
5450 }
5451 return true;
5452 default:
5453 BUG();
5454 }
5455}
5456
Daniel Vettere29c22c2013-02-21 00:00:16 +01005457#define RETRY 1
5458static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005459 struct intel_crtc_state *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02005460{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005461 struct drm_device *dev = intel_crtc->base.dev;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02005462 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Daniel Vetterff9a6752013-06-01 17:16:21 +02005463 int lane, link_bw, fdi_dotclock;
Daniel Vettere29c22c2013-02-21 00:00:16 +01005464 bool setup_ok, needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005465
Daniel Vettere29c22c2013-02-21 00:00:16 +01005466retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02005467 /* FDI is a binary signal running at ~2.7GHz, encoding
5468 * each output octet as 10 bits. The actual frequency
5469 * is stored as a divider into a 100MHz clock, and the
5470 * mode pixel clock is stored in units of 1KHz.
5471 * Hence the bw of each lane in terms of the mode signal
5472 * is:
5473 */
5474 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
5475
Damien Lespiau241bfc32013-09-25 16:45:37 +01005476 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005477
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005478 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005479 pipe_config->pipe_bpp);
5480
5481 pipe_config->fdi_lanes = lane;
5482
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005483 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005484 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005485
Daniel Vettere29c22c2013-02-21 00:00:16 +01005486 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
5487 intel_crtc->pipe, pipe_config);
5488 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
5489 pipe_config->pipe_bpp -= 2*3;
5490 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
5491 pipe_config->pipe_bpp);
5492 needs_recompute = true;
5493 pipe_config->bw_constrained = true;
5494
5495 goto retry;
5496 }
5497
5498 if (needs_recompute)
5499 return RETRY;
5500
5501 return setup_ok ? 0 : -EINVAL;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005502}
5503
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005504static void hsw_compute_ips_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005505 struct intel_crtc_state *pipe_config)
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005506{
Jani Nikulad330a952014-01-21 11:24:25 +02005507 pipe_config->ips_enabled = i915.enable_ips &&
Paulo Zanoni3c4ca582013-05-31 16:33:23 -03005508 hsw_crtc_supports_ips(crtc) &&
Jesse Barnesb6dfdc92013-07-25 10:06:50 -07005509 pipe_config->pipe_bpp <= 24;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005510}
5511
Daniel Vettera43f6e02013-06-07 23:10:32 +02005512static int intel_crtc_compute_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005513 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08005514{
Daniel Vettera43f6e02013-06-07 23:10:32 +02005515 struct drm_device *dev = crtc->base.dev;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02005516 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02005517 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Chris Wilson89749352010-09-12 18:25:19 +01005518
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005519 /* FIXME should check pixel clock limits on all platforms */
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005520 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005521 int clock_limit =
5522 dev_priv->display.get_display_clock_speed(dev);
5523
5524 /*
5525 * Enable pixel doubling when the dot clock
5526 * is > 90% of the (display) core speed.
5527 *
Ville Syrjäläb397c962013-09-04 18:30:06 +03005528 * GDG double wide on either pipe,
5529 * otherwise pipe A only.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005530 */
Ville Syrjäläb397c962013-09-04 18:30:06 +03005531 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
Damien Lespiau241bfc32013-09-25 16:45:37 +01005532 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005533 clock_limit *= 2;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005534 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005535 }
5536
Damien Lespiau241bfc32013-09-25 16:45:37 +01005537 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005538 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08005539 }
Chris Wilson89749352010-09-12 18:25:19 +01005540
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03005541 /*
5542 * Pipe horizontal size must be even in:
5543 * - DVO ganged mode
5544 * - LVDS dual channel mode
5545 * - Double wide pipe
5546 */
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005547 if ((intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03005548 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
5549 pipe_config->pipe_src_w &= ~1;
5550
Damien Lespiau8693a822013-05-03 18:48:11 +01005551 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
5552 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03005553 */
5554 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
5555 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005556 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03005557
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005558 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005559 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005560 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005561 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
5562 * for lvds. */
5563 pipe_config->pipe_bpp = 8*3;
5564 }
5565
Damien Lespiauf5adf942013-06-24 18:29:34 +01005566 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02005567 hsw_compute_ips_config(crtc, pipe_config);
5568
Daniel Vetter877d48d2013-04-19 11:24:43 +02005569 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02005570 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02005571
Daniel Vettere29c22c2013-02-21 00:00:16 +01005572 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005573}
5574
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07005575static int valleyview_get_display_clock_speed(struct drm_device *dev)
5576{
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005577 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005578 u32 val;
5579 int divider;
5580
Ville Syrjäläd49a3402014-06-28 02:03:58 +03005581 /* FIXME: Punit isn't quite ready yet */
5582 if (IS_CHERRYVIEW(dev))
5583 return 400000;
5584
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005585 if (dev_priv->hpll_freq == 0)
5586 dev_priv->hpll_freq = valleyview_get_vco(dev_priv);
5587
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005588 mutex_lock(&dev_priv->dpio_lock);
5589 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
5590 mutex_unlock(&dev_priv->dpio_lock);
5591
5592 divider = val & DISPLAY_FREQUENCY_VALUES;
5593
Ville Syrjälä7d007f42014-06-13 13:37:53 +03005594 WARN((val & DISPLAY_FREQUENCY_STATUS) !=
5595 (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
5596 "cdclk change in progress\n");
5597
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005598 return DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, divider + 1);
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07005599}
5600
Jesse Barnese70236a2009-09-21 10:42:27 -07005601static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08005602{
Jesse Barnese70236a2009-09-21 10:42:27 -07005603 return 400000;
5604}
Jesse Barnes79e53942008-11-07 14:24:08 -08005605
Jesse Barnese70236a2009-09-21 10:42:27 -07005606static int i915_get_display_clock_speed(struct drm_device *dev)
5607{
5608 return 333000;
5609}
Jesse Barnes79e53942008-11-07 14:24:08 -08005610
Jesse Barnese70236a2009-09-21 10:42:27 -07005611static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
5612{
5613 return 200000;
5614}
Jesse Barnes79e53942008-11-07 14:24:08 -08005615
Daniel Vetter257a7ff2013-07-26 08:35:42 +02005616static int pnv_get_display_clock_speed(struct drm_device *dev)
5617{
5618 u16 gcfgc = 0;
5619
5620 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5621
5622 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5623 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
5624 return 267000;
5625 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
5626 return 333000;
5627 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
5628 return 444000;
5629 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
5630 return 200000;
5631 default:
5632 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
5633 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
5634 return 133000;
5635 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
5636 return 167000;
5637 }
5638}
5639
Jesse Barnese70236a2009-09-21 10:42:27 -07005640static int i915gm_get_display_clock_speed(struct drm_device *dev)
5641{
5642 u16 gcfgc = 0;
5643
5644 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5645
5646 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08005647 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07005648 else {
5649 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5650 case GC_DISPLAY_CLOCK_333_MHZ:
5651 return 333000;
5652 default:
5653 case GC_DISPLAY_CLOCK_190_200_MHZ:
5654 return 190000;
5655 }
5656 }
5657}
Jesse Barnes79e53942008-11-07 14:24:08 -08005658
Jesse Barnese70236a2009-09-21 10:42:27 -07005659static int i865_get_display_clock_speed(struct drm_device *dev)
5660{
5661 return 266000;
5662}
5663
5664static int i855_get_display_clock_speed(struct drm_device *dev)
5665{
5666 u16 hpllcc = 0;
5667 /* Assume that the hardware is in the high speed state. This
5668 * should be the default.
5669 */
5670 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
5671 case GC_CLOCK_133_200:
5672 case GC_CLOCK_100_200:
5673 return 200000;
5674 case GC_CLOCK_166_250:
5675 return 250000;
5676 case GC_CLOCK_100_133:
5677 return 133000;
5678 }
5679
5680 /* Shouldn't happen */
5681 return 0;
5682}
5683
5684static int i830_get_display_clock_speed(struct drm_device *dev)
5685{
5686 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08005687}
5688
Zhenyu Wang2c072452009-06-05 15:38:42 +08005689static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005690intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005691{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005692 while (*num > DATA_LINK_M_N_MASK ||
5693 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08005694 *num >>= 1;
5695 *den >>= 1;
5696 }
5697}
5698
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005699static void compute_m_n(unsigned int m, unsigned int n,
5700 uint32_t *ret_m, uint32_t *ret_n)
5701{
5702 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
5703 *ret_m = div_u64((uint64_t) m * *ret_n, n);
5704 intel_reduce_m_n_ratio(ret_m, ret_n);
5705}
5706
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005707void
5708intel_link_compute_m_n(int bits_per_pixel, int nlanes,
5709 int pixel_clock, int link_clock,
5710 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005711{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005712 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005713
5714 compute_m_n(bits_per_pixel * pixel_clock,
5715 link_clock * nlanes * 8,
5716 &m_n->gmch_m, &m_n->gmch_n);
5717
5718 compute_m_n(pixel_clock, link_clock,
5719 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005720}
5721
Chris Wilsona7615032011-01-12 17:04:08 +00005722static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
5723{
Jani Nikulad330a952014-01-21 11:24:25 +02005724 if (i915.panel_use_ssc >= 0)
5725 return i915.panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005726 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07005727 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00005728}
5729
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005730static int i9xx_get_refclk(struct intel_crtc *crtc, int num_connectors)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005731{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005732 struct drm_device *dev = crtc->base.dev;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005733 struct drm_i915_private *dev_priv = dev->dev_private;
5734 int refclk;
5735
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005736 if (IS_VALLEYVIEW(dev)) {
Daniel Vetter9a0ea492013-09-16 11:29:34 +02005737 refclk = 100000;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02005738 } else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005739 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02005740 refclk = dev_priv->vbt.lvds_ssc_freq;
5741 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005742 } else if (!IS_GEN2(dev)) {
5743 refclk = 96000;
5744 } else {
5745 refclk = 48000;
5746 }
5747
5748 return refclk;
5749}
5750
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005751static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005752{
Daniel Vetter7df00d72013-05-21 21:54:55 +02005753 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005754}
Daniel Vetterf47709a2013-03-28 10:42:02 +01005755
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005756static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
5757{
5758 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005759}
5760
Daniel Vetterf47709a2013-03-28 10:42:02 +01005761static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005762 struct intel_crtc_state *crtc_state,
Jesse Barnesa7516a02011-12-15 12:30:37 -08005763 intel_clock_t *reduced_clock)
5764{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005765 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005766 u32 fp, fp2 = 0;
5767
5768 if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005769 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005770 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005771 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005772 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005773 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005774 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005775 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005776 }
5777
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005778 crtc_state->dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005779
Daniel Vetterf47709a2013-03-28 10:42:02 +01005780 crtc->lowfreq_avail = false;
Bob Paauwee1f234b2014-11-11 09:29:18 -08005781 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Jani Nikulad330a952014-01-21 11:24:25 +02005782 reduced_clock && i915.powersave) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005783 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005784 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005785 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005786 crtc_state->dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005787 }
5788}
5789
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005790static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
5791 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07005792{
5793 u32 reg_val;
5794
5795 /*
5796 * PLLB opamp always calibrates to max value of 0x3f, force enable it
5797 * and set it to a reasonable value instead.
5798 */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005799 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005800 reg_val &= 0xffffff00;
5801 reg_val |= 0x00000030;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005802 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005803
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005804 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005805 reg_val &= 0x8cffffff;
5806 reg_val = 0x8c000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005807 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005808
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005809 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005810 reg_val &= 0xffffff00;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005811 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005812
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005813 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005814 reg_val &= 0x00ffffff;
5815 reg_val |= 0xb0000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005816 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005817}
5818
Daniel Vetterb5518422013-05-03 11:49:48 +02005819static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
5820 struct intel_link_m_n *m_n)
5821{
5822 struct drm_device *dev = crtc->base.dev;
5823 struct drm_i915_private *dev_priv = dev->dev_private;
5824 int pipe = crtc->pipe;
5825
Daniel Vettere3b95f12013-05-03 11:49:49 +02005826 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5827 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
5828 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
5829 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005830}
5831
5832static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -07005833 struct intel_link_m_n *m_n,
5834 struct intel_link_m_n *m2_n2)
Daniel Vetterb5518422013-05-03 11:49:48 +02005835{
5836 struct drm_device *dev = crtc->base.dev;
5837 struct drm_i915_private *dev_priv = dev->dev_private;
5838 int pipe = crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005839 enum transcoder transcoder = crtc->config->cpu_transcoder;
Daniel Vetterb5518422013-05-03 11:49:48 +02005840
5841 if (INTEL_INFO(dev)->gen >= 5) {
5842 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
5843 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
5844 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
5845 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
Vandana Kannanf769cd22014-08-05 07:51:22 -07005846 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
5847 * for gen < 8) and if DRRS is supported (to make sure the
5848 * registers are not unnecessarily accessed).
5849 */
5850 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005851 crtc->config->has_drrs) {
Vandana Kannanf769cd22014-08-05 07:51:22 -07005852 I915_WRITE(PIPE_DATA_M2(transcoder),
5853 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
5854 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
5855 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
5856 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
5857 }
Daniel Vetterb5518422013-05-03 11:49:48 +02005858 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02005859 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5860 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
5861 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
5862 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005863 }
5864}
5865
Vandana Kannanf769cd22014-08-05 07:51:22 -07005866void intel_dp_set_m_n(struct intel_crtc *crtc)
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005867{
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005868 if (crtc->config->has_pch_encoder)
5869 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005870 else
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005871 intel_cpu_transcoder_set_m_n(crtc, &crtc->config->dp_m_n,
5872 &crtc->config->dp_m2_n2);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005873}
5874
Ville Syrjäläd288f652014-10-28 13:20:22 +02005875static void vlv_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005876 struct intel_crtc_state *pipe_config)
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005877{
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005878 u32 dpll, dpll_md;
5879
5880 /*
5881 * Enable DPIO clock input. We should never disable the reference
5882 * clock for pipe B, since VGA hotplug / manual detection depends
5883 * on it.
5884 */
5885 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
5886 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
5887 /* We should never disable this, set it here for state tracking */
5888 if (crtc->pipe == PIPE_B)
5889 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
5890 dpll |= DPLL_VCO_ENABLE;
Ville Syrjäläd288f652014-10-28 13:20:22 +02005891 pipe_config->dpll_hw_state.dpll = dpll;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005892
Ville Syrjäläd288f652014-10-28 13:20:22 +02005893 dpll_md = (pipe_config->pixel_multiplier - 1)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005894 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjäläd288f652014-10-28 13:20:22 +02005895 pipe_config->dpll_hw_state.dpll_md = dpll_md;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005896}
5897
Ville Syrjäläd288f652014-10-28 13:20:22 +02005898static void vlv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005899 const struct intel_crtc_state *pipe_config)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005900{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005901 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005902 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005903 int pipe = crtc->pipe;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005904 u32 mdiv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005905 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005906 u32 coreclk, reg_val;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005907
Daniel Vetter09153002012-12-12 14:06:44 +01005908 mutex_lock(&dev_priv->dpio_lock);
5909
Ville Syrjäläd288f652014-10-28 13:20:22 +02005910 bestn = pipe_config->dpll.n;
5911 bestm1 = pipe_config->dpll.m1;
5912 bestm2 = pipe_config->dpll.m2;
5913 bestp1 = pipe_config->dpll.p1;
5914 bestp2 = pipe_config->dpll.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005915
Jesse Barnes89b667f2013-04-18 14:51:36 -07005916 /* See eDP HDMI DPIO driver vbios notes doc */
5917
5918 /* PLL B needs special handling */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005919 if (pipe == PIPE_B)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005920 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005921
5922 /* Set up Tx target for periodic Rcomp update */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005923 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005924
5925 /* Disable target IRef on PLL */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005926 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005927 reg_val &= 0x00ffffff;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005928 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005929
5930 /* Disable fast lock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005931 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005932
5933 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005934 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
5935 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
5936 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005937 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07005938
5939 /*
5940 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
5941 * but we don't support that).
5942 * Note: don't use the DAC post divider as it seems unstable.
5943 */
5944 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005945 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005946
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005947 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005948 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005949
Jesse Barnes89b667f2013-04-18 14:51:36 -07005950 /* Set HBR and RBR LPF coefficients */
Ville Syrjäläd288f652014-10-28 13:20:22 +02005951 if (pipe_config->port_clock == 162000 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005952 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG) ||
5953 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005954 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Ville Syrjälä885b01202013-07-05 19:21:38 +03005955 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005956 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005957 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005958 0x00d0000f);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005959
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02005960 if (pipe_config->has_dp_encoder) {
Jesse Barnes89b667f2013-04-18 14:51:36 -07005961 /* Use SSC source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005962 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005963 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005964 0x0df40000);
5965 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005966 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005967 0x0df70000);
5968 } else { /* HDMI or VGA */
5969 /* Use bend source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005970 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005971 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005972 0x0df70000);
5973 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005974 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005975 0x0df40000);
5976 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005977
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005978 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005979 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005980 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
5981 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
Jesse Barnes89b667f2013-04-18 14:51:36 -07005982 coreclk |= 0x01000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005983 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005984
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005985 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
Daniel Vetter09153002012-12-12 14:06:44 +01005986 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005987}
5988
Ville Syrjäläd288f652014-10-28 13:20:22 +02005989static void chv_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005990 struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005991{
Ville Syrjäläd288f652014-10-28 13:20:22 +02005992 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLOCK_CHV |
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005993 DPLL_REFA_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
5994 DPLL_VCO_ENABLE;
5995 if (crtc->pipe != PIPE_A)
Ville Syrjäläd288f652014-10-28 13:20:22 +02005996 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005997
Ville Syrjäläd288f652014-10-28 13:20:22 +02005998 pipe_config->dpll_hw_state.dpll_md =
5999 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006000}
6001
Ville Syrjäläd288f652014-10-28 13:20:22 +02006002static void chv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006003 const struct intel_crtc_state *pipe_config)
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006004{
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006005 struct drm_device *dev = crtc->base.dev;
6006 struct drm_i915_private *dev_priv = dev->dev_private;
6007 int pipe = crtc->pipe;
6008 int dpll_reg = DPLL(crtc->pipe);
6009 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Ville Syrjälä580d3812014-04-09 13:29:00 +03006010 u32 loopfilter, intcoeff;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006011 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
6012 int refclk;
6013
Ville Syrjäläd288f652014-10-28 13:20:22 +02006014 bestn = pipe_config->dpll.n;
6015 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
6016 bestm1 = pipe_config->dpll.m1;
6017 bestm2 = pipe_config->dpll.m2 >> 22;
6018 bestp1 = pipe_config->dpll.p1;
6019 bestp2 = pipe_config->dpll.p2;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006020
6021 /*
6022 * Enable Refclk and SSC
6023 */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03006024 I915_WRITE(dpll_reg,
Ville Syrjäläd288f652014-10-28 13:20:22 +02006025 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03006026
6027 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006028
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006029 /* p1 and p2 divider */
6030 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
6031 5 << DPIO_CHV_S1_DIV_SHIFT |
6032 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
6033 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
6034 1 << DPIO_CHV_K_DIV_SHIFT);
6035
6036 /* Feedback post-divider - m2 */
6037 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
6038
6039 /* Feedback refclk divider - n and m1 */
6040 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
6041 DPIO_CHV_M1_DIV_BY_2 |
6042 1 << DPIO_CHV_N_DIV_SHIFT);
6043
6044 /* M2 fraction division */
6045 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
6046
6047 /* M2 fraction division enable */
6048 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port),
6049 DPIO_CHV_FRAC_DIV_EN |
6050 (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT));
6051
6052 /* Loop filter */
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006053 refclk = i9xx_get_refclk(crtc, 0);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006054 loopfilter = 5 << DPIO_CHV_PROP_COEFF_SHIFT |
6055 2 << DPIO_CHV_GAIN_CTRL_SHIFT;
6056 if (refclk == 100000)
6057 intcoeff = 11;
6058 else if (refclk == 38400)
6059 intcoeff = 10;
6060 else
6061 intcoeff = 9;
6062 loopfilter |= intcoeff << DPIO_CHV_INT_COEFF_SHIFT;
6063 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
6064
6065 /* AFC Recal */
6066 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
6067 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
6068 DPIO_AFC_RECAL);
6069
6070 mutex_unlock(&dev_priv->dpio_lock);
6071}
6072
Ville Syrjäläd288f652014-10-28 13:20:22 +02006073/**
6074 * vlv_force_pll_on - forcibly enable just the PLL
6075 * @dev_priv: i915 private structure
6076 * @pipe: pipe PLL to enable
6077 * @dpll: PLL configuration
6078 *
6079 * Enable the PLL for @pipe using the supplied @dpll config. To be used
6080 * in cases where we need the PLL enabled even when @pipe is not going to
6081 * be enabled.
6082 */
6083void vlv_force_pll_on(struct drm_device *dev, enum pipe pipe,
6084 const struct dpll *dpll)
6085{
6086 struct intel_crtc *crtc =
6087 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006088 struct intel_crtc_state pipe_config = {
Ville Syrjäläd288f652014-10-28 13:20:22 +02006089 .pixel_multiplier = 1,
6090 .dpll = *dpll,
6091 };
6092
6093 if (IS_CHERRYVIEW(dev)) {
6094 chv_update_pll(crtc, &pipe_config);
6095 chv_prepare_pll(crtc, &pipe_config);
6096 chv_enable_pll(crtc, &pipe_config);
6097 } else {
6098 vlv_update_pll(crtc, &pipe_config);
6099 vlv_prepare_pll(crtc, &pipe_config);
6100 vlv_enable_pll(crtc, &pipe_config);
6101 }
6102}
6103
6104/**
6105 * vlv_force_pll_off - forcibly disable just the PLL
6106 * @dev_priv: i915 private structure
6107 * @pipe: pipe PLL to disable
6108 *
6109 * Disable the PLL for @pipe. To be used in cases where we need
6110 * the PLL enabled even when @pipe is not going to be enabled.
6111 */
6112void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe)
6113{
6114 if (IS_CHERRYVIEW(dev))
6115 chv_disable_pll(to_i915(dev), pipe);
6116 else
6117 vlv_disable_pll(to_i915(dev), pipe);
6118}
6119
Daniel Vetterf47709a2013-03-28 10:42:02 +01006120static void i9xx_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006121 struct intel_crtc_state *crtc_state,
Daniel Vetterf47709a2013-03-28 10:42:02 +01006122 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006123 int num_connectors)
6124{
Daniel Vetterf47709a2013-03-28 10:42:02 +01006125 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006126 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006127 u32 dpll;
6128 bool is_sdvo;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006129 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006130
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006131 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05306132
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006133 is_sdvo = intel_pipe_will_have_type(crtc, INTEL_OUTPUT_SDVO) ||
6134 intel_pipe_will_have_type(crtc, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006135
6136 dpll = DPLL_VGA_MODE_DIS;
6137
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006138 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006139 dpll |= DPLLB_MODE_LVDS;
6140 else
6141 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01006142
Daniel Vetteref1b4602013-06-01 17:17:04 +02006143 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006144 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetter198a037f2013-04-19 11:14:37 +02006145 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006146 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02006147
6148 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006149 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02006150
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006151 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006152 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006153
6154 /* compute bitmask from p1 value */
6155 if (IS_PINEVIEW(dev))
6156 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
6157 else {
6158 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6159 if (IS_G4X(dev) && reduced_clock)
6160 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
6161 }
6162 switch (clock->p2) {
6163 case 5:
6164 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
6165 break;
6166 case 7:
6167 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
6168 break;
6169 case 10:
6170 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
6171 break;
6172 case 14:
6173 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
6174 break;
6175 }
6176 if (INTEL_INFO(dev)->gen >= 4)
6177 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
6178
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006179 if (crtc_state->sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006180 dpll |= PLL_REF_INPUT_TVCLKINBC;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006181 else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006182 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
6183 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
6184 else
6185 dpll |= PLL_REF_INPUT_DREFCLK;
6186
6187 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006188 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006189
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006190 if (INTEL_INFO(dev)->gen >= 4) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006191 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02006192 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006193 crtc_state->dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006194 }
6195}
6196
Daniel Vetterf47709a2013-03-28 10:42:02 +01006197static void i8xx_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006198 struct intel_crtc_state *crtc_state,
Daniel Vetterf47709a2013-03-28 10:42:02 +01006199 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006200 int num_connectors)
6201{
Daniel Vetterf47709a2013-03-28 10:42:02 +01006202 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006203 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006204 u32 dpll;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006205 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006206
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006207 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05306208
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006209 dpll = DPLL_VGA_MODE_DIS;
6210
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006211 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006212 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6213 } else {
6214 if (clock->p1 == 2)
6215 dpll |= PLL_P1_DIVIDE_BY_TWO;
6216 else
6217 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6218 if (clock->p2 == 4)
6219 dpll |= PLL_P2_DIVIDE_BY_4;
6220 }
6221
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006222 if (!IS_I830(dev) && intel_pipe_will_have_type(crtc, INTEL_OUTPUT_DVO))
Daniel Vetter4a33e482013-07-06 12:52:05 +02006223 dpll |= DPLL_DVO_2X_MODE;
6224
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006225 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006226 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
6227 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
6228 else
6229 dpll |= PLL_REF_INPUT_DREFCLK;
6230
6231 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006232 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006233}
6234
Daniel Vetter8a654f32013-06-01 17:16:22 +02006235static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006236{
6237 struct drm_device *dev = intel_crtc->base.dev;
6238 struct drm_i915_private *dev_priv = dev->dev_private;
6239 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006240 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Daniel Vetter8a654f32013-06-01 17:16:22 +02006241 struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006242 &intel_crtc->config->base.adjusted_mode;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02006243 uint32_t crtc_vtotal, crtc_vblank_end;
6244 int vsyncshift = 0;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006245
6246 /* We need to be careful not to changed the adjusted mode, for otherwise
6247 * the hw state checker will get angry at the mismatch. */
6248 crtc_vtotal = adjusted_mode->crtc_vtotal;
6249 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006250
Ville Syrjälä609aeac2014-03-28 23:29:30 +02006251 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006252 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006253 crtc_vtotal -= 1;
6254 crtc_vblank_end -= 1;
Ville Syrjälä609aeac2014-03-28 23:29:30 +02006255
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006256 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjälä609aeac2014-03-28 23:29:30 +02006257 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
6258 else
6259 vsyncshift = adjusted_mode->crtc_hsync_start -
6260 adjusted_mode->crtc_htotal / 2;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02006261 if (vsyncshift < 0)
6262 vsyncshift += adjusted_mode->crtc_htotal;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006263 }
6264
6265 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006266 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006267
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006268 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006269 (adjusted_mode->crtc_hdisplay - 1) |
6270 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006271 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006272 (adjusted_mode->crtc_hblank_start - 1) |
6273 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006274 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006275 (adjusted_mode->crtc_hsync_start - 1) |
6276 ((adjusted_mode->crtc_hsync_end - 1) << 16));
6277
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006278 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006279 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006280 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006281 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006282 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006283 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006284 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006285 (adjusted_mode->crtc_vsync_start - 1) |
6286 ((adjusted_mode->crtc_vsync_end - 1) << 16));
6287
Paulo Zanonib5e508d2012-10-24 11:34:43 -02006288 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
6289 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
6290 * documented on the DDI_FUNC_CTL register description, EDP Input Select
6291 * bits. */
6292 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
6293 (pipe == PIPE_B || pipe == PIPE_C))
6294 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
6295
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006296 /* pipesrc controls the size that is scaled from, which should
6297 * always be the user's requested size.
6298 */
6299 I915_WRITE(PIPESRC(pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006300 ((intel_crtc->config->pipe_src_w - 1) << 16) |
6301 (intel_crtc->config->pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006302}
6303
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006304static void intel_get_pipe_timings(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006305 struct intel_crtc_state *pipe_config)
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006306{
6307 struct drm_device *dev = crtc->base.dev;
6308 struct drm_i915_private *dev_priv = dev->dev_private;
6309 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
6310 uint32_t tmp;
6311
6312 tmp = I915_READ(HTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006313 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
6314 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006315 tmp = I915_READ(HBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006316 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
6317 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006318 tmp = I915_READ(HSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006319 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
6320 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006321
6322 tmp = I915_READ(VTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006323 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
6324 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006325 tmp = I915_READ(VBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006326 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
6327 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006328 tmp = I915_READ(VSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006329 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
6330 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006331
6332 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006333 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
6334 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
6335 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006336 }
6337
6338 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03006339 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
6340 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
6341
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006342 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
6343 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006344}
6345
Daniel Vetterf6a83282014-02-11 15:28:57 -08006346void intel_mode_from_pipe_config(struct drm_display_mode *mode,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006347 struct intel_crtc_state *pipe_config)
Jesse Barnesbabea612013-06-26 18:57:38 +03006348{
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006349 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
6350 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
6351 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
6352 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03006353
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006354 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
6355 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
6356 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
6357 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03006358
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006359 mode->flags = pipe_config->base.adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03006360
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006361 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
6362 mode->flags |= pipe_config->base.adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03006363}
6364
Daniel Vetter84b046f2013-02-19 18:48:54 +01006365static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
6366{
6367 struct drm_device *dev = intel_crtc->base.dev;
6368 struct drm_i915_private *dev_priv = dev->dev_private;
6369 uint32_t pipeconf;
6370
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02006371 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01006372
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03006373 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
6374 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
6375 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
Daniel Vetter67c72a12013-09-24 11:46:14 +02006376
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006377 if (intel_crtc->config->double_wide)
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006378 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01006379
Daniel Vetterff9ce462013-04-24 14:57:17 +02006380 /* only g4x and later have fancy bpc/dither controls */
6381 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02006382 /* Bspec claims that we can't use dithering for 30bpp pipes. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006383 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
Daniel Vetterff9ce462013-04-24 14:57:17 +02006384 pipeconf |= PIPECONF_DITHER_EN |
6385 PIPECONF_DITHER_TYPE_SP;
6386
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006387 switch (intel_crtc->config->pipe_bpp) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02006388 case 18:
6389 pipeconf |= PIPECONF_6BPC;
6390 break;
6391 case 24:
6392 pipeconf |= PIPECONF_8BPC;
6393 break;
6394 case 30:
6395 pipeconf |= PIPECONF_10BPC;
6396 break;
6397 default:
6398 /* Case prevented by intel_choose_pipe_bpp_dither. */
6399 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01006400 }
6401 }
6402
6403 if (HAS_PIPE_CXSR(dev)) {
6404 if (intel_crtc->lowfreq_avail) {
6405 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
6406 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
6407 } else {
6408 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01006409 }
6410 }
6411
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006412 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02006413 if (INTEL_INFO(dev)->gen < 4 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006414 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02006415 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
6416 else
6417 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
6418 } else
Daniel Vetter84b046f2013-02-19 18:48:54 +01006419 pipeconf |= PIPECONF_PROGRESSIVE;
6420
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006421 if (IS_VALLEYVIEW(dev) && intel_crtc->config->limited_color_range)
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02006422 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03006423
Daniel Vetter84b046f2013-02-19 18:48:54 +01006424 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
6425 POSTING_READ(PIPECONF(intel_crtc->pipe));
6426}
6427
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006428static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
6429 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08006430{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03006431 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08006432 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholtc751ce42010-03-25 11:48:48 -07006433 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07006434 intel_clock_t clock, reduced_clock;
Daniel Vettera16af722013-04-30 14:01:44 +02006435 bool ok, has_reduced_clock = false;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006436 bool is_lvds = false, is_dsi = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01006437 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08006438 const intel_limit_t *limit;
Jesse Barnes79e53942008-11-07 14:24:08 -08006439
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006440 for_each_intel_encoder(dev, encoder) {
6441 if (encoder->new_crtc != crtc)
6442 continue;
6443
Chris Wilson5eddb702010-09-11 13:48:45 +01006444 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006445 case INTEL_OUTPUT_LVDS:
6446 is_lvds = true;
6447 break;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006448 case INTEL_OUTPUT_DSI:
6449 is_dsi = true;
6450 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02006451 default:
6452 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08006453 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05006454
Eric Anholtc751ce42010-03-25 11:48:48 -07006455 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08006456 }
6457
Jani Nikulaf2335332013-09-13 11:03:09 +03006458 if (is_dsi)
Daniel Vetter5b18e572014-04-24 23:55:06 +02006459 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006460
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006461 if (!crtc_state->clock_set) {
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006462 refclk = i9xx_get_refclk(crtc, num_connectors);
Jani Nikulaf2335332013-09-13 11:03:09 +03006463
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006464 /*
6465 * Returns a set of divisors for the desired target clock with
6466 * the given refclk, or FALSE. The returned values represent
6467 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
6468 * 2) / p1 / p2.
6469 */
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006470 limit = intel_limit(crtc, refclk);
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03006471 ok = dev_priv->display.find_dpll(limit, crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006472 crtc_state->port_clock,
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006473 refclk, NULL, &clock);
Jani Nikulaf2335332013-09-13 11:03:09 +03006474 if (!ok) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006475 DRM_ERROR("Couldn't find PLL settings for mode!\n");
6476 return -EINVAL;
6477 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006478
Jani Nikulaf2335332013-09-13 11:03:09 +03006479 if (is_lvds && dev_priv->lvds_downclock_avail) {
6480 /*
6481 * Ensure we match the reduced clock's P to the target
6482 * clock. If the clocks don't match, we can't switch
6483 * the display clock by using the FP0/FP1. In such case
6484 * we will disable the LVDS downclock feature.
6485 */
6486 has_reduced_clock =
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03006487 dev_priv->display.find_dpll(limit, crtc,
Jani Nikulaf2335332013-09-13 11:03:09 +03006488 dev_priv->lvds_downclock,
6489 refclk, &clock,
6490 &reduced_clock);
6491 }
6492 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006493 crtc_state->dpll.n = clock.n;
6494 crtc_state->dpll.m1 = clock.m1;
6495 crtc_state->dpll.m2 = clock.m2;
6496 crtc_state->dpll.p1 = clock.p1;
6497 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01006498 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006499
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006500 if (IS_GEN2(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006501 i8xx_update_pll(crtc, crtc_state,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05306502 has_reduced_clock ? &reduced_clock : NULL,
6503 num_connectors);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006504 } else if (IS_CHERRYVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006505 chv_update_pll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006506 } else if (IS_VALLEYVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006507 vlv_update_pll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006508 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006509 i9xx_update_pll(crtc, crtc_state,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006510 has_reduced_clock ? &reduced_clock : NULL,
Robin Schroereba905b2014-05-18 02:24:50 +02006511 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006512 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006513
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02006514 return 0;
Eric Anholtf564048e2011-03-30 13:01:02 -07006515}
6516
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006517static void i9xx_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006518 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006519{
6520 struct drm_device *dev = crtc->base.dev;
6521 struct drm_i915_private *dev_priv = dev->dev_private;
6522 uint32_t tmp;
6523
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02006524 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
6525 return;
6526
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006527 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02006528 if (!(tmp & PFIT_ENABLE))
6529 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006530
Daniel Vetter06922822013-07-11 13:35:40 +02006531 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006532 if (INTEL_INFO(dev)->gen < 4) {
6533 if (crtc->pipe != PIPE_B)
6534 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006535 } else {
6536 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
6537 return;
6538 }
6539
Daniel Vetter06922822013-07-11 13:35:40 +02006540 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006541 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
6542 if (INTEL_INFO(dev)->gen < 5)
6543 pipe_config->gmch_pfit.lvds_border_bits =
6544 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
6545}
6546
Jesse Barnesacbec812013-09-20 11:29:32 -07006547static void vlv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006548 struct intel_crtc_state *pipe_config)
Jesse Barnesacbec812013-09-20 11:29:32 -07006549{
6550 struct drm_device *dev = crtc->base.dev;
6551 struct drm_i915_private *dev_priv = dev->dev_private;
6552 int pipe = pipe_config->cpu_transcoder;
6553 intel_clock_t clock;
6554 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07006555 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07006556
Shobhit Kumarf573de52014-07-30 20:32:37 +05306557 /* In case of MIPI DPLL will not even be used */
6558 if (!(pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE))
6559 return;
6560
Jesse Barnesacbec812013-09-20 11:29:32 -07006561 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006562 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
Jesse Barnesacbec812013-09-20 11:29:32 -07006563 mutex_unlock(&dev_priv->dpio_lock);
6564
6565 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
6566 clock.m2 = mdiv & DPIO_M2DIV_MASK;
6567 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
6568 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
6569 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
6570
Ville Syrjäläf6466282013-10-14 14:50:31 +03006571 vlv_clock(refclk, &clock);
Jesse Barnesacbec812013-09-20 11:29:32 -07006572
Ville Syrjäläf6466282013-10-14 14:50:31 +03006573 /* clock.dot is the fast clock */
6574 pipe_config->port_clock = clock.dot / 5;
Jesse Barnesacbec812013-09-20 11:29:32 -07006575}
6576
Damien Lespiau5724dbd2015-01-20 12:51:52 +00006577static void
6578i9xx_get_initial_plane_config(struct intel_crtc *crtc,
6579 struct intel_initial_plane_config *plane_config)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006580{
6581 struct drm_device *dev = crtc->base.dev;
6582 struct drm_i915_private *dev_priv = dev->dev_private;
6583 u32 val, base, offset;
6584 int pipe = crtc->pipe, plane = crtc->plane;
6585 int fourcc, pixel_format;
6586 int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006587 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00006588 struct intel_framebuffer *intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006589
Damien Lespiaud9806c92015-01-21 14:07:19 +00006590 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00006591 if (!intel_fb) {
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006592 DRM_DEBUG_KMS("failed to alloc fb\n");
6593 return;
6594 }
6595
Damien Lespiau1b842c82015-01-21 13:50:54 +00006596 fb = &intel_fb->base;
6597
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006598 val = I915_READ(DSPCNTR(plane));
6599
6600 if (INTEL_INFO(dev)->gen >= 4)
6601 if (val & DISPPLANE_TILED)
Damien Lespiau49af4492015-01-20 12:51:44 +00006602 plane_config->tiling = I915_TILING_X;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006603
6604 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00006605 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006606 fb->pixel_format = fourcc;
6607 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006608
6609 if (INTEL_INFO(dev)->gen >= 4) {
Damien Lespiau49af4492015-01-20 12:51:44 +00006610 if (plane_config->tiling)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006611 offset = I915_READ(DSPTILEOFF(plane));
6612 else
6613 offset = I915_READ(DSPLINOFF(plane));
6614 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
6615 } else {
6616 base = I915_READ(DSPADDR(plane));
6617 }
6618 plane_config->base = base;
6619
6620 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006621 fb->width = ((val >> 16) & 0xfff) + 1;
6622 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006623
6624 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006625 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006626
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006627 aligned_height = intel_fb_align_height(dev, fb->height,
Damien Lespiauec2c9812015-01-20 12:51:45 +00006628 plane_config->tiling);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006629
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006630 plane_config->size = PAGE_ALIGN(fb->pitches[0] * aligned_height);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006631
Damien Lespiau2844a922015-01-20 12:51:48 +00006632 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
6633 pipe_name(pipe), plane, fb->width, fb->height,
6634 fb->bits_per_pixel, base, fb->pitches[0],
6635 plane_config->size);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006636
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006637 crtc->base.primary->fb = fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006638}
6639
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006640static void chv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006641 struct intel_crtc_state *pipe_config)
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006642{
6643 struct drm_device *dev = crtc->base.dev;
6644 struct drm_i915_private *dev_priv = dev->dev_private;
6645 int pipe = pipe_config->cpu_transcoder;
6646 enum dpio_channel port = vlv_pipe_to_channel(pipe);
6647 intel_clock_t clock;
6648 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2;
6649 int refclk = 100000;
6650
6651 mutex_lock(&dev_priv->dpio_lock);
6652 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
6653 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
6654 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
6655 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
6656 mutex_unlock(&dev_priv->dpio_lock);
6657
6658 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
6659 clock.m2 = ((pll_dw0 & 0xff) << 22) | (pll_dw2 & 0x3fffff);
6660 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
6661 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
6662 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
6663
6664 chv_clock(refclk, &clock);
6665
6666 /* clock.dot is the fast clock */
6667 pipe_config->port_clock = clock.dot / 5;
6668}
6669
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006670static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006671 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006672{
6673 struct drm_device *dev = crtc->base.dev;
6674 struct drm_i915_private *dev_priv = dev->dev_private;
6675 uint32_t tmp;
6676
Daniel Vetterf458ebb2014-09-30 10:56:39 +02006677 if (!intel_display_power_is_enabled(dev_priv,
6678 POWER_DOMAIN_PIPE(crtc->pipe)))
Imre Deakb5482bd2014-03-05 16:20:55 +02006679 return false;
6680
Daniel Vettere143a212013-07-04 12:01:15 +02006681 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02006682 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02006683
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006684 tmp = I915_READ(PIPECONF(crtc->pipe));
6685 if (!(tmp & PIPECONF_ENABLE))
6686 return false;
6687
Ville Syrjälä42571ae2013-09-06 23:29:00 +03006688 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
6689 switch (tmp & PIPECONF_BPC_MASK) {
6690 case PIPECONF_6BPC:
6691 pipe_config->pipe_bpp = 18;
6692 break;
6693 case PIPECONF_8BPC:
6694 pipe_config->pipe_bpp = 24;
6695 break;
6696 case PIPECONF_10BPC:
6697 pipe_config->pipe_bpp = 30;
6698 break;
6699 default:
6700 break;
6701 }
6702 }
6703
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02006704 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
6705 pipe_config->limited_color_range = true;
6706
Ville Syrjälä282740f2013-09-04 18:30:03 +03006707 if (INTEL_INFO(dev)->gen < 4)
6708 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
6709
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006710 intel_get_pipe_timings(crtc, pipe_config);
6711
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006712 i9xx_get_pfit_config(crtc, pipe_config);
6713
Daniel Vetter6c49f242013-06-06 12:45:25 +02006714 if (INTEL_INFO(dev)->gen >= 4) {
6715 tmp = I915_READ(DPLL_MD(crtc->pipe));
6716 pipe_config->pixel_multiplier =
6717 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
6718 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006719 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02006720 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
6721 tmp = I915_READ(DPLL(crtc->pipe));
6722 pipe_config->pixel_multiplier =
6723 ((tmp & SDVO_MULTIPLIER_MASK)
6724 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
6725 } else {
6726 /* Note that on i915G/GM the pixel multiplier is in the sdvo
6727 * port and will be fixed up in the encoder->get_config
6728 * function. */
6729 pipe_config->pixel_multiplier = 1;
6730 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006731 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
6732 if (!IS_VALLEYVIEW(dev)) {
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03006733 /*
6734 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
6735 * on 830. Filter it out here so that we don't
6736 * report errors due to that.
6737 */
6738 if (IS_I830(dev))
6739 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
6740
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006741 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
6742 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03006743 } else {
6744 /* Mask out read-only status bits. */
6745 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
6746 DPLL_PORTC_READY_MASK |
6747 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006748 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02006749
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006750 if (IS_CHERRYVIEW(dev))
6751 chv_crtc_clock_get(crtc, pipe_config);
6752 else if (IS_VALLEYVIEW(dev))
Jesse Barnesacbec812013-09-20 11:29:32 -07006753 vlv_crtc_clock_get(crtc, pipe_config);
6754 else
6755 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03006756
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006757 return true;
6758}
6759
Paulo Zanonidde86e22012-12-01 12:04:25 -02006760static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07006761{
6762 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006763 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006764 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006765 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006766 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006767 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07006768 bool has_ck505 = false;
6769 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006770
6771 /* We need to take the global config into account */
Damien Lespiaub2784e12014-08-05 11:29:37 +01006772 for_each_intel_encoder(dev, encoder) {
Keith Packard199e5d72011-09-22 12:01:57 -07006773 switch (encoder->type) {
6774 case INTEL_OUTPUT_LVDS:
6775 has_panel = true;
6776 has_lvds = true;
6777 break;
6778 case INTEL_OUTPUT_EDP:
6779 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03006780 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07006781 has_cpu_edp = true;
6782 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02006783 default:
6784 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006785 }
6786 }
6787
Keith Packard99eb6a02011-09-26 14:29:12 -07006788 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006789 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07006790 can_ssc = has_ck505;
6791 } else {
6792 has_ck505 = false;
6793 can_ssc = true;
6794 }
6795
Imre Deak2de69052013-05-08 13:14:04 +03006796 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
6797 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006798
6799 /* Ironlake: try to setup display ref clock before DPLL
6800 * enabling. This is only under driver's control after
6801 * PCH B stepping, previous chipset stepping should be
6802 * ignoring this setting.
6803 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006804 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006805
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006806 /* As we must carefully and slowly disable/enable each source in turn,
6807 * compute the final state we want first and check if we need to
6808 * make any changes at all.
6809 */
6810 final = val;
6811 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07006812 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006813 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07006814 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006815 final |= DREF_NONSPREAD_SOURCE_ENABLE;
6816
6817 final &= ~DREF_SSC_SOURCE_MASK;
6818 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
6819 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006820
Keith Packard199e5d72011-09-22 12:01:57 -07006821 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006822 final |= DREF_SSC_SOURCE_ENABLE;
6823
6824 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6825 final |= DREF_SSC1_ENABLE;
6826
6827 if (has_cpu_edp) {
6828 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6829 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
6830 else
6831 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
6832 } else
6833 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6834 } else {
6835 final |= DREF_SSC_SOURCE_DISABLE;
6836 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6837 }
6838
6839 if (final == val)
6840 return;
6841
6842 /* Always enable nonspread source */
6843 val &= ~DREF_NONSPREAD_SOURCE_MASK;
6844
6845 if (has_ck505)
6846 val |= DREF_NONSPREAD_CK505_ENABLE;
6847 else
6848 val |= DREF_NONSPREAD_SOURCE_ENABLE;
6849
6850 if (has_panel) {
6851 val &= ~DREF_SSC_SOURCE_MASK;
6852 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006853
Keith Packard199e5d72011-09-22 12:01:57 -07006854 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07006855 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07006856 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006857 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02006858 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006859 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006860
6861 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006862 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006863 POSTING_READ(PCH_DREF_CONTROL);
6864 udelay(200);
6865
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006866 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006867
6868 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07006869 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07006870 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07006871 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006872 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Robin Schroereba905b2014-05-18 02:24:50 +02006873 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006874 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07006875 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006876 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006877
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006878 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006879 POSTING_READ(PCH_DREF_CONTROL);
6880 udelay(200);
6881 } else {
6882 DRM_DEBUG_KMS("Disabling SSC entirely\n");
6883
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006884 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07006885
6886 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006887 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006888
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006889 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006890 POSTING_READ(PCH_DREF_CONTROL);
6891 udelay(200);
6892
6893 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006894 val &= ~DREF_SSC_SOURCE_MASK;
6895 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006896
6897 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006898 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006899
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006900 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006901 POSTING_READ(PCH_DREF_CONTROL);
6902 udelay(200);
6903 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006904
6905 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006906}
6907
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006908static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02006909{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006910 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02006911
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006912 tmp = I915_READ(SOUTH_CHICKEN2);
6913 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
6914 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006915
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006916 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
6917 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
6918 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02006919
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006920 tmp = I915_READ(SOUTH_CHICKEN2);
6921 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
6922 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006923
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006924 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
6925 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
6926 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006927}
6928
6929/* WaMPhyProgramming:hsw */
6930static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
6931{
6932 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02006933
6934 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
6935 tmp &= ~(0xFF << 24);
6936 tmp |= (0x12 << 24);
6937 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
6938
Paulo Zanonidde86e22012-12-01 12:04:25 -02006939 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
6940 tmp |= (1 << 11);
6941 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
6942
6943 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
6944 tmp |= (1 << 11);
6945 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
6946
Paulo Zanonidde86e22012-12-01 12:04:25 -02006947 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
6948 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6949 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
6950
6951 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
6952 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6953 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
6954
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006955 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
6956 tmp &= ~(7 << 13);
6957 tmp |= (5 << 13);
6958 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006959
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006960 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
6961 tmp &= ~(7 << 13);
6962 tmp |= (5 << 13);
6963 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006964
6965 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
6966 tmp &= ~0xFF;
6967 tmp |= 0x1C;
6968 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
6969
6970 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
6971 tmp &= ~0xFF;
6972 tmp |= 0x1C;
6973 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
6974
6975 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
6976 tmp &= ~(0xFF << 16);
6977 tmp |= (0x1C << 16);
6978 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
6979
6980 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
6981 tmp &= ~(0xFF << 16);
6982 tmp |= (0x1C << 16);
6983 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
6984
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006985 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
6986 tmp |= (1 << 27);
6987 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006988
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006989 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
6990 tmp |= (1 << 27);
6991 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006992
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006993 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
6994 tmp &= ~(0xF << 28);
6995 tmp |= (4 << 28);
6996 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006997
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006998 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
6999 tmp &= ~(0xF << 28);
7000 tmp |= (4 << 28);
7001 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007002}
7003
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007004/* Implements 3 different sequences from BSpec chapter "Display iCLK
7005 * Programming" based on the parameters passed:
7006 * - Sequence to enable CLKOUT_DP
7007 * - Sequence to enable CLKOUT_DP without spread
7008 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
7009 */
7010static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
7011 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007012{
7013 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007014 uint32_t reg, tmp;
7015
7016 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
7017 with_spread = true;
7018 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
7019 with_fdi, "LP PCH doesn't have FDI\n"))
7020 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007021
7022 mutex_lock(&dev_priv->dpio_lock);
7023
7024 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7025 tmp &= ~SBI_SSCCTL_DISABLE;
7026 tmp |= SBI_SSCCTL_PATHALT;
7027 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7028
7029 udelay(24);
7030
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007031 if (with_spread) {
7032 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7033 tmp &= ~SBI_SSCCTL_PATHALT;
7034 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007035
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007036 if (with_fdi) {
7037 lpt_reset_fdi_mphy(dev_priv);
7038 lpt_program_fdi_mphy(dev_priv);
7039 }
7040 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02007041
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007042 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
7043 SBI_GEN0 : SBI_DBUFF0;
7044 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
7045 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
7046 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01007047
7048 mutex_unlock(&dev_priv->dpio_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007049}
7050
Paulo Zanoni47701c32013-07-23 11:19:25 -03007051/* Sequence to disable CLKOUT_DP */
7052static void lpt_disable_clkout_dp(struct drm_device *dev)
7053{
7054 struct drm_i915_private *dev_priv = dev->dev_private;
7055 uint32_t reg, tmp;
7056
7057 mutex_lock(&dev_priv->dpio_lock);
7058
7059 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
7060 SBI_GEN0 : SBI_DBUFF0;
7061 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
7062 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
7063 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
7064
7065 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7066 if (!(tmp & SBI_SSCCTL_DISABLE)) {
7067 if (!(tmp & SBI_SSCCTL_PATHALT)) {
7068 tmp |= SBI_SSCCTL_PATHALT;
7069 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7070 udelay(32);
7071 }
7072 tmp |= SBI_SSCCTL_DISABLE;
7073 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7074 }
7075
7076 mutex_unlock(&dev_priv->dpio_lock);
7077}
7078
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007079static void lpt_init_pch_refclk(struct drm_device *dev)
7080{
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007081 struct intel_encoder *encoder;
7082 bool has_vga = false;
7083
Damien Lespiaub2784e12014-08-05 11:29:37 +01007084 for_each_intel_encoder(dev, encoder) {
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007085 switch (encoder->type) {
7086 case INTEL_OUTPUT_ANALOG:
7087 has_vga = true;
7088 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007089 default:
7090 break;
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007091 }
7092 }
7093
Paulo Zanoni47701c32013-07-23 11:19:25 -03007094 if (has_vga)
7095 lpt_enable_clkout_dp(dev, true, true);
7096 else
7097 lpt_disable_clkout_dp(dev);
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007098}
7099
Paulo Zanonidde86e22012-12-01 12:04:25 -02007100/*
7101 * Initialize reference clocks when the driver loads
7102 */
7103void intel_init_pch_refclk(struct drm_device *dev)
7104{
7105 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
7106 ironlake_init_pch_refclk(dev);
7107 else if (HAS_PCH_LPT(dev))
7108 lpt_init_pch_refclk(dev);
7109}
7110
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007111static int ironlake_get_refclk(struct drm_crtc *crtc)
7112{
7113 struct drm_device *dev = crtc->dev;
7114 struct drm_i915_private *dev_priv = dev->dev_private;
7115 struct intel_encoder *encoder;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007116 int num_connectors = 0;
7117 bool is_lvds = false;
7118
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02007119 for_each_intel_encoder(dev, encoder) {
7120 if (encoder->new_crtc != to_intel_crtc(crtc))
7121 continue;
7122
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007123 switch (encoder->type) {
7124 case INTEL_OUTPUT_LVDS:
7125 is_lvds = true;
7126 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007127 default:
7128 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007129 }
7130 num_connectors++;
7131 }
7132
7133 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007134 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03007135 dev_priv->vbt.lvds_ssc_freq);
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007136 return dev_priv->vbt.lvds_ssc_freq;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007137 }
7138
7139 return 120000;
7140}
7141
Daniel Vetter6ff93602013-04-19 11:24:36 +02007142static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03007143{
7144 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
7145 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7146 int pipe = intel_crtc->pipe;
7147 uint32_t val;
7148
Daniel Vetter78114072013-06-13 00:54:57 +02007149 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03007150
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007151 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03007152 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007153 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007154 break;
7155 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007156 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007157 break;
7158 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007159 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007160 break;
7161 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007162 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007163 break;
7164 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03007165 /* Case prevented by intel_choose_pipe_bpp_dither. */
7166 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03007167 }
7168
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007169 if (intel_crtc->config->dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03007170 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
7171
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007172 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03007173 val |= PIPECONF_INTERLACED_ILK;
7174 else
7175 val |= PIPECONF_PROGRESSIVE;
7176
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007177 if (intel_crtc->config->limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02007178 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02007179
Paulo Zanonic8203562012-09-12 10:06:29 -03007180 I915_WRITE(PIPECONF(pipe), val);
7181 POSTING_READ(PIPECONF(pipe));
7182}
7183
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007184/*
7185 * Set up the pipe CSC unit.
7186 *
7187 * Currently only full range RGB to limited range RGB conversion
7188 * is supported, but eventually this should handle various
7189 * RGB<->YCbCr scenarios as well.
7190 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01007191static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007192{
7193 struct drm_device *dev = crtc->dev;
7194 struct drm_i915_private *dev_priv = dev->dev_private;
7195 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7196 int pipe = intel_crtc->pipe;
7197 uint16_t coeff = 0x7800; /* 1.0 */
7198
7199 /*
7200 * TODO: Check what kind of values actually come out of the pipe
7201 * with these coeff/postoff values and adjust to get the best
7202 * accuracy. Perhaps we even need to take the bpc value into
7203 * consideration.
7204 */
7205
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007206 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007207 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
7208
7209 /*
7210 * GY/GU and RY/RU should be the other way around according
7211 * to BSpec, but reality doesn't agree. Just set them up in
7212 * a way that results in the correct picture.
7213 */
7214 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
7215 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
7216
7217 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
7218 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
7219
7220 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
7221 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
7222
7223 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
7224 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
7225 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
7226
7227 if (INTEL_INFO(dev)->gen > 6) {
7228 uint16_t postoff = 0;
7229
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007230 if (intel_crtc->config->limited_color_range)
Ville Syrjälä32cf0cb2013-11-28 22:10:38 +02007231 postoff = (16 * (1 << 12) / 255) & 0x1fff;
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007232
7233 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
7234 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
7235 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
7236
7237 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
7238 } else {
7239 uint32_t mode = CSC_MODE_YUV_TO_RGB;
7240
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007241 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007242 mode |= CSC_BLACK_SCREEN_OFFSET;
7243
7244 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
7245 }
7246}
7247
Daniel Vetter6ff93602013-04-19 11:24:36 +02007248static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007249{
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007250 struct drm_device *dev = crtc->dev;
7251 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007252 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007253 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007254 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007255 uint32_t val;
7256
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02007257 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007258
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007259 if (IS_HASWELL(dev) && intel_crtc->config->dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007260 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
7261
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007262 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007263 val |= PIPECONF_INTERLACED_ILK;
7264 else
7265 val |= PIPECONF_PROGRESSIVE;
7266
Paulo Zanoni702e7a52012-10-23 18:29:59 -02007267 I915_WRITE(PIPECONF(cpu_transcoder), val);
7268 POSTING_READ(PIPECONF(cpu_transcoder));
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02007269
7270 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
7271 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007272
Satheeshakrishna M3cdf122c2014-04-08 15:46:53 +05307273 if (IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007274 val = 0;
7275
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007276 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007277 case 18:
7278 val |= PIPEMISC_DITHER_6_BPC;
7279 break;
7280 case 24:
7281 val |= PIPEMISC_DITHER_8_BPC;
7282 break;
7283 case 30:
7284 val |= PIPEMISC_DITHER_10_BPC;
7285 break;
7286 case 36:
7287 val |= PIPEMISC_DITHER_12_BPC;
7288 break;
7289 default:
7290 /* Case prevented by pipe_config_set_bpp. */
7291 BUG();
7292 }
7293
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007294 if (intel_crtc->config->dither)
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007295 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
7296
7297 I915_WRITE(PIPEMISC(pipe), val);
7298 }
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007299}
7300
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007301static bool ironlake_compute_clocks(struct drm_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007302 struct intel_crtc_state *crtc_state,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007303 intel_clock_t *clock,
7304 bool *has_reduced_clock,
7305 intel_clock_t *reduced_clock)
7306{
7307 struct drm_device *dev = crtc->dev;
7308 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +03007309 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007310 int refclk;
7311 const intel_limit_t *limit;
Daniel Vettera16af722013-04-30 14:01:44 +02007312 bool ret, is_lvds = false;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007313
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02007314 is_lvds = intel_pipe_will_have_type(intel_crtc, INTEL_OUTPUT_LVDS);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007315
7316 refclk = ironlake_get_refclk(crtc);
7317
7318 /*
7319 * Returns a set of divisors for the desired target clock with the given
7320 * refclk, or FALSE. The returned values represent the clock equation:
7321 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
7322 */
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007323 limit = intel_limit(intel_crtc, refclk);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +03007324 ret = dev_priv->display.find_dpll(limit, intel_crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007325 crtc_state->port_clock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02007326 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007327 if (!ret)
7328 return false;
7329
7330 if (is_lvds && dev_priv->lvds_downclock_avail) {
7331 /*
7332 * Ensure we match the reduced clock's P to the target clock.
7333 * If the clocks don't match, we can't switch the display clock
7334 * by using the FP0/FP1. In such case we will disable the LVDS
7335 * downclock feature.
7336 */
Daniel Vetteree9300b2013-06-03 22:40:22 +02007337 *has_reduced_clock =
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +03007338 dev_priv->display.find_dpll(limit, intel_crtc,
Daniel Vetteree9300b2013-06-03 22:40:22 +02007339 dev_priv->lvds_downclock,
7340 refclk, clock,
7341 reduced_clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007342 }
7343
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007344 return true;
7345}
7346
Paulo Zanonid4b19312012-11-29 11:29:32 -02007347int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
7348{
7349 /*
7350 * Account for spread spectrum to avoid
7351 * oversubscribing the link. Max center spread
7352 * is 2.5%; use 5% for safety's sake.
7353 */
7354 u32 bps = target_clock * bpp * 21 / 20;
Ville Syrjälä619d4d02014-02-27 14:23:14 +02007355 return DIV_ROUND_UP(bps, link_bw * 8);
Paulo Zanonid4b19312012-11-29 11:29:32 -02007356}
7357
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007358static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02007359{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007360 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03007361}
7362
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007363static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007364 struct intel_crtc_state *crtc_state,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007365 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02007366 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007367{
7368 struct drm_crtc *crtc = &intel_crtc->base;
7369 struct drm_device *dev = crtc->dev;
7370 struct drm_i915_private *dev_priv = dev->dev_private;
7371 struct intel_encoder *intel_encoder;
7372 uint32_t dpll;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01007373 int factor, num_connectors = 0;
Daniel Vetter09ede542013-04-30 14:01:45 +02007374 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007375
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02007376 for_each_intel_encoder(dev, intel_encoder) {
7377 if (intel_encoder->new_crtc != to_intel_crtc(crtc))
7378 continue;
7379
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007380 switch (intel_encoder->type) {
7381 case INTEL_OUTPUT_LVDS:
7382 is_lvds = true;
7383 break;
7384 case INTEL_OUTPUT_SDVO:
7385 case INTEL_OUTPUT_HDMI:
7386 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007387 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007388 default:
7389 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007390 }
7391
7392 num_connectors++;
7393 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007394
Chris Wilsonc1858122010-12-03 21:35:48 +00007395 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07007396 factor = 21;
7397 if (is_lvds) {
7398 if ((intel_panel_use_ssc(dev_priv) &&
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007399 dev_priv->vbt.lvds_ssc_freq == 100000) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02007400 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07007401 factor = 25;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007402 } else if (crtc_state->sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07007403 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00007404
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007405 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02007406 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00007407
Daniel Vetter9a7c7892013-04-04 22:20:34 +02007408 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
7409 *fp2 |= FP_CB_TUNE;
7410
Chris Wilson5eddb702010-09-11 13:48:45 +01007411 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08007412
Eric Anholta07d6782011-03-30 13:01:08 -07007413 if (is_lvds)
7414 dpll |= DPLLB_MODE_LVDS;
7415 else
7416 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007417
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007418 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02007419 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007420
7421 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007422 dpll |= DPLL_SDVO_HIGH_SPEED;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007423 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007424 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08007425
Eric Anholta07d6782011-03-30 13:01:08 -07007426 /* compute bitmask from p1 value */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007427 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07007428 /* also FPA1 */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007429 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07007430
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007431 switch (crtc_state->dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07007432 case 5:
7433 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
7434 break;
7435 case 7:
7436 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
7437 break;
7438 case 10:
7439 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
7440 break;
7441 case 14:
7442 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
7443 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08007444 }
7445
Daniel Vetterb4c09f32013-04-30 14:01:42 +02007446 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05007447 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08007448 else
7449 dpll |= PLL_REF_INPUT_DREFCLK;
7450
Daniel Vetter959e16d2013-06-05 13:34:21 +02007451 return dpll | DPLL_VCO_ENABLE;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007452}
7453
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007454static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
7455 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08007456{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007457 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08007458 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007459 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03007460 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01007461 bool is_lvds = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02007462 struct intel_shared_dpll *pll;
Jesse Barnes79e53942008-11-07 14:24:08 -08007463
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007464 is_lvds = intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS);
Jesse Barnes79e53942008-11-07 14:24:08 -08007465
Paulo Zanoni5dc52982012-10-05 12:05:56 -03007466 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
7467 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
7468
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007469 ok = ironlake_compute_clocks(&crtc->base, crtc_state, &clock,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007470 &has_reduced_clock, &reduced_clock);
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007471 if (!ok && !crtc_state->clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08007472 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7473 return -EINVAL;
7474 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01007475 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007476 if (!crtc_state->clock_set) {
7477 crtc_state->dpll.n = clock.n;
7478 crtc_state->dpll.m1 = clock.m1;
7479 crtc_state->dpll.m2 = clock.m2;
7480 crtc_state->dpll.p1 = clock.p1;
7481 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01007482 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007483
Paulo Zanoni5dc52982012-10-05 12:05:56 -03007484 /* 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 +02007485 if (crtc_state->has_pch_encoder) {
7486 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007487 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007488 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007489
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007490 dpll = ironlake_compute_dpll(crtc, crtc_state,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007491 &fp, &reduced_clock,
7492 has_reduced_clock ? &fp2 : NULL);
7493
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007494 crtc_state->dpll_hw_state.dpll = dpll;
7495 crtc_state->dpll_hw_state.fp0 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02007496 if (has_reduced_clock)
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007497 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetter66e985c2013-06-05 13:34:20 +02007498 else
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007499 crtc_state->dpll_hw_state.fp1 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02007500
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007501 pll = intel_get_shared_dpll(crtc, crtc_state);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01007502 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03007503 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007504 pipe_name(crtc->pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07007505 return -EINVAL;
7506 }
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +02007507 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007508
Jani Nikulad330a952014-01-21 11:24:25 +02007509 if (is_lvds && has_reduced_clock && i915.powersave)
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007510 crtc->lowfreq_avail = true;
Daniel Vetterbcd644e2013-06-05 13:34:22 +02007511 else
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007512 crtc->lowfreq_avail = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02007513
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007514 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007515}
7516
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007517static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
7518 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02007519{
7520 struct drm_device *dev = crtc->base.dev;
7521 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007522 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02007523
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007524 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
7525 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
7526 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
7527 & ~TU_SIZE_MASK;
7528 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
7529 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
7530 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7531}
7532
7533static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
7534 enum transcoder transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007535 struct intel_link_m_n *m_n,
7536 struct intel_link_m_n *m2_n2)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007537{
7538 struct drm_device *dev = crtc->base.dev;
7539 struct drm_i915_private *dev_priv = dev->dev_private;
7540 enum pipe pipe = crtc->pipe;
7541
7542 if (INTEL_INFO(dev)->gen >= 5) {
7543 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
7544 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
7545 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
7546 & ~TU_SIZE_MASK;
7547 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
7548 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
7549 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007550 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
7551 * gen < 8) and if DRRS is supported (to make sure the
7552 * registers are not unnecessarily read).
7553 */
7554 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007555 crtc->config->has_drrs) {
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007556 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
7557 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
7558 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
7559 & ~TU_SIZE_MASK;
7560 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
7561 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
7562 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7563 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007564 } else {
7565 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
7566 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
7567 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
7568 & ~TU_SIZE_MASK;
7569 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
7570 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
7571 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7572 }
7573}
7574
7575void intel_dp_get_m_n(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007576 struct intel_crtc_state *pipe_config)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007577{
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02007578 if (pipe_config->has_pch_encoder)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007579 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
7580 else
7581 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007582 &pipe_config->dp_m_n,
7583 &pipe_config->dp_m2_n2);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007584}
7585
Daniel Vetter72419202013-04-04 13:28:53 +02007586static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007587 struct intel_crtc_state *pipe_config)
Daniel Vetter72419202013-04-04 13:28:53 +02007588{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007589 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007590 &pipe_config->fdi_m_n, NULL);
Daniel Vetter72419202013-04-04 13:28:53 +02007591}
7592
Jesse Barnesbd2e2442014-11-13 17:51:47 +00007593static void skylake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007594 struct intel_crtc_state *pipe_config)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00007595{
7596 struct drm_device *dev = crtc->base.dev;
7597 struct drm_i915_private *dev_priv = dev->dev_private;
7598 uint32_t tmp;
7599
7600 tmp = I915_READ(PS_CTL(crtc->pipe));
7601
7602 if (tmp & PS_ENABLE) {
7603 pipe_config->pch_pfit.enabled = true;
7604 pipe_config->pch_pfit.pos = I915_READ(PS_WIN_POS(crtc->pipe));
7605 pipe_config->pch_pfit.size = I915_READ(PS_WIN_SZ(crtc->pipe));
7606 }
7607}
7608
Damien Lespiau5724dbd2015-01-20 12:51:52 +00007609static void
7610skylake_get_initial_plane_config(struct intel_crtc *crtc,
7611 struct intel_initial_plane_config *plane_config)
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007612{
7613 struct drm_device *dev = crtc->base.dev;
7614 struct drm_i915_private *dev_priv = dev->dev_private;
7615 u32 val, base, offset, stride_mult;
7616 int pipe = crtc->pipe;
7617 int fourcc, pixel_format;
7618 int aligned_height;
7619 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00007620 struct intel_framebuffer *intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007621
Damien Lespiaud9806c92015-01-21 14:07:19 +00007622 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00007623 if (!intel_fb) {
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007624 DRM_DEBUG_KMS("failed to alloc fb\n");
7625 return;
7626 }
7627
Damien Lespiau1b842c82015-01-21 13:50:54 +00007628 fb = &intel_fb->base;
7629
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007630 val = I915_READ(PLANE_CTL(pipe, 0));
7631 if (val & PLANE_CTL_TILED_MASK)
7632 plane_config->tiling = I915_TILING_X;
7633
7634 pixel_format = val & PLANE_CTL_FORMAT_MASK;
7635 fourcc = skl_format_to_fourcc(pixel_format,
7636 val & PLANE_CTL_ORDER_RGBX,
7637 val & PLANE_CTL_ALPHA_MASK);
7638 fb->pixel_format = fourcc;
7639 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
7640
7641 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
7642 plane_config->base = base;
7643
7644 offset = I915_READ(PLANE_OFFSET(pipe, 0));
7645
7646 val = I915_READ(PLANE_SIZE(pipe, 0));
7647 fb->height = ((val >> 16) & 0xfff) + 1;
7648 fb->width = ((val >> 0) & 0x1fff) + 1;
7649
7650 val = I915_READ(PLANE_STRIDE(pipe, 0));
7651 switch (plane_config->tiling) {
7652 case I915_TILING_NONE:
7653 stride_mult = 64;
7654 break;
7655 case I915_TILING_X:
7656 stride_mult = 512;
7657 break;
7658 default:
7659 MISSING_CASE(plane_config->tiling);
7660 goto error;
7661 }
7662 fb->pitches[0] = (val & 0x3ff) * stride_mult;
7663
7664 aligned_height = intel_fb_align_height(dev, fb->height,
7665 plane_config->tiling);
7666
7667 plane_config->size = ALIGN(fb->pitches[0] * aligned_height, PAGE_SIZE);
7668
7669 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
7670 pipe_name(pipe), fb->width, fb->height,
7671 fb->bits_per_pixel, base, fb->pitches[0],
7672 plane_config->size);
7673
7674 crtc->base.primary->fb = fb;
7675 return;
7676
7677error:
7678 kfree(fb);
7679}
7680
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007681static void ironlake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007682 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007683{
7684 struct drm_device *dev = crtc->base.dev;
7685 struct drm_i915_private *dev_priv = dev->dev_private;
7686 uint32_t tmp;
7687
7688 tmp = I915_READ(PF_CTL(crtc->pipe));
7689
7690 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01007691 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007692 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
7693 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02007694
7695 /* We currently do not free assignements of panel fitters on
7696 * ivb/hsw (since we don't use the higher upscaling modes which
7697 * differentiates them) so just WARN about this case for now. */
7698 if (IS_GEN7(dev)) {
7699 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
7700 PF_PIPE_SEL_IVB(crtc->pipe));
7701 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007702 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007703}
7704
Damien Lespiau5724dbd2015-01-20 12:51:52 +00007705static void
7706ironlake_get_initial_plane_config(struct intel_crtc *crtc,
7707 struct intel_initial_plane_config *plane_config)
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007708{
7709 struct drm_device *dev = crtc->base.dev;
7710 struct drm_i915_private *dev_priv = dev->dev_private;
7711 u32 val, base, offset;
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007712 int pipe = crtc->pipe;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007713 int fourcc, pixel_format;
7714 int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007715 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00007716 struct intel_framebuffer *intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007717
Damien Lespiaud9806c92015-01-21 14:07:19 +00007718 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00007719 if (!intel_fb) {
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007720 DRM_DEBUG_KMS("failed to alloc fb\n");
7721 return;
7722 }
7723
Damien Lespiau1b842c82015-01-21 13:50:54 +00007724 fb = &intel_fb->base;
7725
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007726 val = I915_READ(DSPCNTR(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007727
7728 if (INTEL_INFO(dev)->gen >= 4)
7729 if (val & DISPPLANE_TILED)
Damien Lespiau49af4492015-01-20 12:51:44 +00007730 plane_config->tiling = I915_TILING_X;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007731
7732 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00007733 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007734 fb->pixel_format = fourcc;
7735 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007736
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007737 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007738 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007739 offset = I915_READ(DSPOFFSET(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007740 } else {
Damien Lespiau49af4492015-01-20 12:51:44 +00007741 if (plane_config->tiling)
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007742 offset = I915_READ(DSPTILEOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007743 else
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007744 offset = I915_READ(DSPLINOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007745 }
7746 plane_config->base = base;
7747
7748 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007749 fb->width = ((val >> 16) & 0xfff) + 1;
7750 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007751
7752 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007753 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007754
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007755 aligned_height = intel_fb_align_height(dev, fb->height,
Damien Lespiauec2c9812015-01-20 12:51:45 +00007756 plane_config->tiling);
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007757
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007758 plane_config->size = PAGE_ALIGN(fb->pitches[0] * aligned_height);
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007759
Damien Lespiau2844a922015-01-20 12:51:48 +00007760 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
7761 pipe_name(pipe), fb->width, fb->height,
7762 fb->bits_per_pixel, base, fb->pitches[0],
7763 plane_config->size);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007764
7765 crtc->base.primary->fb = fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007766}
7767
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007768static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007769 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007770{
7771 struct drm_device *dev = crtc->base.dev;
7772 struct drm_i915_private *dev_priv = dev->dev_private;
7773 uint32_t tmp;
7774
Daniel Vetterf458ebb2014-09-30 10:56:39 +02007775 if (!intel_display_power_is_enabled(dev_priv,
7776 POWER_DOMAIN_PIPE(crtc->pipe)))
Paulo Zanoni930e8c92014-07-04 13:38:34 -03007777 return false;
7778
Daniel Vettere143a212013-07-04 12:01:15 +02007779 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007780 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02007781
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007782 tmp = I915_READ(PIPECONF(crtc->pipe));
7783 if (!(tmp & PIPECONF_ENABLE))
7784 return false;
7785
Ville Syrjälä42571ae2013-09-06 23:29:00 +03007786 switch (tmp & PIPECONF_BPC_MASK) {
7787 case PIPECONF_6BPC:
7788 pipe_config->pipe_bpp = 18;
7789 break;
7790 case PIPECONF_8BPC:
7791 pipe_config->pipe_bpp = 24;
7792 break;
7793 case PIPECONF_10BPC:
7794 pipe_config->pipe_bpp = 30;
7795 break;
7796 case PIPECONF_12BPC:
7797 pipe_config->pipe_bpp = 36;
7798 break;
7799 default:
7800 break;
7801 }
7802
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02007803 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
7804 pipe_config->limited_color_range = true;
7805
Daniel Vetterab9412b2013-05-03 11:49:46 +02007806 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02007807 struct intel_shared_dpll *pll;
7808
Daniel Vetter88adfff2013-03-28 10:42:01 +01007809 pipe_config->has_pch_encoder = true;
7810
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007811 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
7812 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7813 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02007814
7815 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007816
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007817 if (HAS_PCH_IBX(dev_priv->dev)) {
Daniel Vetterd94ab062013-07-04 12:01:16 +02007818 pipe_config->shared_dpll =
7819 (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007820 } else {
7821 tmp = I915_READ(PCH_DPLL_SEL);
7822 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
7823 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
7824 else
7825 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
7826 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02007827
7828 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
7829
7830 WARN_ON(!pll->get_hw_state(dev_priv, pll,
7831 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02007832
7833 tmp = pipe_config->dpll_hw_state.dpll;
7834 pipe_config->pixel_multiplier =
7835 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
7836 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03007837
7838 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007839 } else {
7840 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007841 }
7842
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007843 intel_get_pipe_timings(crtc, pipe_config);
7844
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007845 ironlake_get_pfit_config(crtc, pipe_config);
7846
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007847 return true;
7848}
7849
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007850static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
7851{
7852 struct drm_device *dev = dev_priv->dev;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007853 struct intel_crtc *crtc;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007854
Damien Lespiaud3fcc802014-05-13 23:32:22 +01007855 for_each_intel_crtc(dev, crtc)
Rob Clarke2c719b2014-12-15 13:56:32 -05007856 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007857 pipe_name(crtc->pipe));
7858
Rob Clarke2c719b2014-12-15 13:56:32 -05007859 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
7860 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
7861 I915_STATE_WARN(I915_READ(WRPLL_CTL1) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
7862 I915_STATE_WARN(I915_READ(WRPLL_CTL2) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
7863 I915_STATE_WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
7864 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007865 "CPU PWM1 enabled\n");
Paulo Zanonic5107b82014-07-04 11:50:30 -03007866 if (IS_HASWELL(dev))
Rob Clarke2c719b2014-12-15 13:56:32 -05007867 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
Paulo Zanonic5107b82014-07-04 11:50:30 -03007868 "CPU PWM2 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05007869 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007870 "PCH PWM1 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05007871 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007872 "Utility pin enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05007873 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007874
Paulo Zanoni9926ada2014-04-01 19:39:47 -03007875 /*
7876 * In theory we can still leave IRQs enabled, as long as only the HPD
7877 * interrupts remain enabled. We used to check for that, but since it's
7878 * gen-specific and since we only disable LCPLL after we fully disable
7879 * the interrupts, the check below should be enough.
7880 */
Rob Clarke2c719b2014-12-15 13:56:32 -05007881 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007882}
7883
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007884static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
7885{
7886 struct drm_device *dev = dev_priv->dev;
7887
7888 if (IS_HASWELL(dev))
7889 return I915_READ(D_COMP_HSW);
7890 else
7891 return I915_READ(D_COMP_BDW);
7892}
7893
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007894static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
7895{
7896 struct drm_device *dev = dev_priv->dev;
7897
7898 if (IS_HASWELL(dev)) {
7899 mutex_lock(&dev_priv->rps.hw_lock);
7900 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
7901 val))
Paulo Zanonif475dad2014-07-04 11:59:57 -03007902 DRM_ERROR("Failed to write to D_COMP\n");
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007903 mutex_unlock(&dev_priv->rps.hw_lock);
7904 } else {
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007905 I915_WRITE(D_COMP_BDW, val);
7906 POSTING_READ(D_COMP_BDW);
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007907 }
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007908}
7909
7910/*
7911 * This function implements pieces of two sequences from BSpec:
7912 * - Sequence for display software to disable LCPLL
7913 * - Sequence for display software to allow package C8+
7914 * The steps implemented here are just the steps that actually touch the LCPLL
7915 * register. Callers should take care of disabling all the display engine
7916 * functions, doing the mode unset, fixing interrupts, etc.
7917 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03007918static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
7919 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007920{
7921 uint32_t val;
7922
7923 assert_can_disable_lcpll(dev_priv);
7924
7925 val = I915_READ(LCPLL_CTL);
7926
7927 if (switch_to_fclk) {
7928 val |= LCPLL_CD_SOURCE_FCLK;
7929 I915_WRITE(LCPLL_CTL, val);
7930
7931 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
7932 LCPLL_CD_SOURCE_FCLK_DONE, 1))
7933 DRM_ERROR("Switching to FCLK failed\n");
7934
7935 val = I915_READ(LCPLL_CTL);
7936 }
7937
7938 val |= LCPLL_PLL_DISABLE;
7939 I915_WRITE(LCPLL_CTL, val);
7940 POSTING_READ(LCPLL_CTL);
7941
7942 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
7943 DRM_ERROR("LCPLL still locked\n");
7944
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007945 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007946 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007947 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007948 ndelay(100);
7949
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007950 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
7951 1))
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007952 DRM_ERROR("D_COMP RCOMP still in progress\n");
7953
7954 if (allow_power_down) {
7955 val = I915_READ(LCPLL_CTL);
7956 val |= LCPLL_POWER_DOWN_ALLOW;
7957 I915_WRITE(LCPLL_CTL, val);
7958 POSTING_READ(LCPLL_CTL);
7959 }
7960}
7961
7962/*
7963 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
7964 * source.
7965 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03007966static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007967{
7968 uint32_t val;
7969
7970 val = I915_READ(LCPLL_CTL);
7971
7972 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
7973 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
7974 return;
7975
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007976 /*
7977 * Make sure we're not on PC8 state before disabling PC8, otherwise
7978 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007979 */
Mika Kuoppala59bad942015-01-16 11:34:40 +02007980 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Paulo Zanoni215733f2013-08-19 13:18:07 -03007981
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007982 if (val & LCPLL_POWER_DOWN_ALLOW) {
7983 val &= ~LCPLL_POWER_DOWN_ALLOW;
7984 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02007985 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007986 }
7987
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007988 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007989 val |= D_COMP_COMP_FORCE;
7990 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007991 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007992
7993 val = I915_READ(LCPLL_CTL);
7994 val &= ~LCPLL_PLL_DISABLE;
7995 I915_WRITE(LCPLL_CTL, val);
7996
7997 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
7998 DRM_ERROR("LCPLL not locked yet\n");
7999
8000 if (val & LCPLL_CD_SOURCE_FCLK) {
8001 val = I915_READ(LCPLL_CTL);
8002 val &= ~LCPLL_CD_SOURCE_FCLK;
8003 I915_WRITE(LCPLL_CTL, val);
8004
8005 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
8006 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
8007 DRM_ERROR("Switching back to LCPLL failed\n");
8008 }
Paulo Zanoni215733f2013-08-19 13:18:07 -03008009
Mika Kuoppala59bad942015-01-16 11:34:40 +02008010 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008011}
8012
Paulo Zanoni765dab672014-03-07 20:08:18 -03008013/*
8014 * Package states C8 and deeper are really deep PC states that can only be
8015 * reached when all the devices on the system allow it, so even if the graphics
8016 * device allows PC8+, it doesn't mean the system will actually get to these
8017 * states. Our driver only allows PC8+ when going into runtime PM.
8018 *
8019 * The requirements for PC8+ are that all the outputs are disabled, the power
8020 * well is disabled and most interrupts are disabled, and these are also
8021 * requirements for runtime PM. When these conditions are met, we manually do
8022 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
8023 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
8024 * hang the machine.
8025 *
8026 * When we really reach PC8 or deeper states (not just when we allow it) we lose
8027 * the state of some registers, so when we come back from PC8+ we need to
8028 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
8029 * need to take care of the registers kept by RC6. Notice that this happens even
8030 * if we don't put the device in PCI D3 state (which is what currently happens
8031 * because of the runtime PM support).
8032 *
8033 * For more, read "Display Sequences for Package C8" on the hardware
8034 * documentation.
8035 */
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03008036void hsw_enable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03008037{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008038 struct drm_device *dev = dev_priv->dev;
8039 uint32_t val;
8040
Paulo Zanonic67a4702013-08-19 13:18:09 -03008041 DRM_DEBUG_KMS("Enabling package C8+\n");
8042
Paulo Zanonic67a4702013-08-19 13:18:09 -03008043 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
8044 val = I915_READ(SOUTH_DSPCLK_GATE_D);
8045 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
8046 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
8047 }
8048
8049 lpt_disable_clkout_dp(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008050 hsw_disable_lcpll(dev_priv, true, true);
8051}
8052
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03008053void hsw_disable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03008054{
8055 struct drm_device *dev = dev_priv->dev;
8056 uint32_t val;
8057
Paulo Zanonic67a4702013-08-19 13:18:09 -03008058 DRM_DEBUG_KMS("Disabling package C8+\n");
8059
8060 hsw_restore_lcpll(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008061 lpt_init_pch_refclk(dev);
8062
8063 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
8064 val = I915_READ(SOUTH_DSPCLK_GATE_D);
8065 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
8066 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
8067 }
8068
8069 intel_prepare_ddi(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008070}
8071
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008072static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
8073 struct intel_crtc_state *crtc_state)
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03008074{
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008075 if (!intel_ddi_pll_select(crtc, crtc_state))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03008076 return -EINVAL;
Daniel Vetter716c2e52014-06-25 22:02:02 +03008077
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008078 crtc->lowfreq_avail = false;
Daniel Vetter644cef32014-04-24 23:55:07 +02008079
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02008080 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008081}
8082
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008083static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
8084 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008085 struct intel_crtc_state *pipe_config)
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008086{
Damien Lespiau3148ade2014-11-21 16:14:56 +00008087 u32 temp, dpll_ctl1;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008088
8089 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
8090 pipe_config->ddi_pll_sel = temp >> (port * 3 + 1);
8091
8092 switch (pipe_config->ddi_pll_sel) {
Damien Lespiau3148ade2014-11-21 16:14:56 +00008093 case SKL_DPLL0:
8094 /*
8095 * On SKL the eDP DPLL (DPLL0 as we don't use SSC) is not part
8096 * of the shared DPLL framework and thus needs to be read out
8097 * separately
8098 */
8099 dpll_ctl1 = I915_READ(DPLL_CTRL1);
8100 pipe_config->dpll_hw_state.ctrl1 = dpll_ctl1 & 0x3f;
8101 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008102 case SKL_DPLL1:
8103 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
8104 break;
8105 case SKL_DPLL2:
8106 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
8107 break;
8108 case SKL_DPLL3:
8109 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
8110 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008111 }
8112}
8113
Damien Lespiau7d2c8172014-07-29 18:06:18 +01008114static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
8115 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008116 struct intel_crtc_state *pipe_config)
Damien Lespiau7d2c8172014-07-29 18:06:18 +01008117{
8118 pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
8119
8120 switch (pipe_config->ddi_pll_sel) {
8121 case PORT_CLK_SEL_WRPLL1:
8122 pipe_config->shared_dpll = DPLL_ID_WRPLL1;
8123 break;
8124 case PORT_CLK_SEL_WRPLL2:
8125 pipe_config->shared_dpll = DPLL_ID_WRPLL2;
8126 break;
8127 }
8128}
8129
Daniel Vetter26804af2014-06-25 22:01:55 +03008130static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008131 struct intel_crtc_state *pipe_config)
Daniel Vetter26804af2014-06-25 22:01:55 +03008132{
8133 struct drm_device *dev = crtc->base.dev;
8134 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterd452c5b2014-07-04 11:27:39 -03008135 struct intel_shared_dpll *pll;
Daniel Vetter26804af2014-06-25 22:01:55 +03008136 enum port port;
8137 uint32_t tmp;
8138
8139 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
8140
8141 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
8142
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008143 if (IS_SKYLAKE(dev))
8144 skylake_get_ddi_pll(dev_priv, port, pipe_config);
8145 else
8146 haswell_get_ddi_pll(dev_priv, port, pipe_config);
Daniel Vetter9cd86932014-06-25 22:01:57 +03008147
Daniel Vetterd452c5b2014-07-04 11:27:39 -03008148 if (pipe_config->shared_dpll >= 0) {
8149 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
8150
8151 WARN_ON(!pll->get_hw_state(dev_priv, pll,
8152 &pipe_config->dpll_hw_state));
8153 }
8154
Daniel Vetter26804af2014-06-25 22:01:55 +03008155 /*
8156 * Haswell has only FDI/PCH transcoder A. It is which is connected to
8157 * DDI E. So just check whether this pipe is wired to DDI E and whether
8158 * the PCH transcoder is on.
8159 */
Damien Lespiauca370452013-12-03 13:56:24 +00008160 if (INTEL_INFO(dev)->gen < 9 &&
8161 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
Daniel Vetter26804af2014-06-25 22:01:55 +03008162 pipe_config->has_pch_encoder = true;
8163
8164 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
8165 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
8166 FDI_DP_PORT_WIDTH_SHIFT) + 1;
8167
8168 ironlake_get_fdi_m_n_config(crtc, pipe_config);
8169 }
8170}
8171
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008172static bool haswell_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008173 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008174{
8175 struct drm_device *dev = crtc->base.dev;
8176 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008177 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008178 uint32_t tmp;
8179
Daniel Vetterf458ebb2014-09-30 10:56:39 +02008180 if (!intel_display_power_is_enabled(dev_priv,
Imre Deakb5482bd2014-03-05 16:20:55 +02008181 POWER_DOMAIN_PIPE(crtc->pipe)))
8182 return false;
8183
Daniel Vettere143a212013-07-04 12:01:15 +02008184 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008185 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
8186
Daniel Vettereccb1402013-05-22 00:50:22 +02008187 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
8188 if (tmp & TRANS_DDI_FUNC_ENABLE) {
8189 enum pipe trans_edp_pipe;
8190 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
8191 default:
8192 WARN(1, "unknown pipe linked to edp transcoder\n");
8193 case TRANS_DDI_EDP_INPUT_A_ONOFF:
8194 case TRANS_DDI_EDP_INPUT_A_ON:
8195 trans_edp_pipe = PIPE_A;
8196 break;
8197 case TRANS_DDI_EDP_INPUT_B_ONOFF:
8198 trans_edp_pipe = PIPE_B;
8199 break;
8200 case TRANS_DDI_EDP_INPUT_C_ONOFF:
8201 trans_edp_pipe = PIPE_C;
8202 break;
8203 }
8204
8205 if (trans_edp_pipe == crtc->pipe)
8206 pipe_config->cpu_transcoder = TRANSCODER_EDP;
8207 }
8208
Daniel Vetterf458ebb2014-09-30 10:56:39 +02008209 if (!intel_display_power_is_enabled(dev_priv,
Daniel Vettereccb1402013-05-22 00:50:22 +02008210 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -03008211 return false;
8212
Daniel Vettereccb1402013-05-22 00:50:22 +02008213 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008214 if (!(tmp & PIPECONF_ENABLE))
8215 return false;
8216
Daniel Vetter26804af2014-06-25 22:01:55 +03008217 haswell_get_ddi_port_state(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02008218
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008219 intel_get_pipe_timings(crtc, pipe_config);
8220
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008221 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00008222 if (intel_display_power_is_enabled(dev_priv, pfit_domain)) {
8223 if (IS_SKYLAKE(dev))
8224 skylake_get_pfit_config(crtc, pipe_config);
8225 else
8226 ironlake_get_pfit_config(crtc, pipe_config);
8227 }
Daniel Vetter88adfff2013-03-28 10:42:01 +01008228
Jesse Barnese59150d2014-01-07 13:30:45 -08008229 if (IS_HASWELL(dev))
8230 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
8231 (I915_READ(IPS_CTL) & IPS_ENABLE);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03008232
Clint Taylorebb69c92014-09-30 10:30:22 -07008233 if (pipe_config->cpu_transcoder != TRANSCODER_EDP) {
8234 pipe_config->pixel_multiplier =
8235 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
8236 } else {
8237 pipe_config->pixel_multiplier = 1;
8238 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02008239
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008240 return true;
8241}
8242
Chris Wilson560b85b2010-08-07 11:01:38 +01008243static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
8244{
8245 struct drm_device *dev = crtc->dev;
8246 struct drm_i915_private *dev_priv = dev->dev_private;
8247 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälädc41c152014-08-13 11:57:05 +03008248 uint32_t cntl = 0, size = 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01008249
Ville Syrjälädc41c152014-08-13 11:57:05 +03008250 if (base) {
8251 unsigned int width = intel_crtc->cursor_width;
8252 unsigned int height = intel_crtc->cursor_height;
8253 unsigned int stride = roundup_pow_of_two(width) * 4;
8254
8255 switch (stride) {
8256 default:
8257 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
8258 width, stride);
8259 stride = 256;
8260 /* fallthrough */
8261 case 256:
8262 case 512:
8263 case 1024:
8264 case 2048:
8265 break;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008266 }
8267
Ville Syrjälädc41c152014-08-13 11:57:05 +03008268 cntl |= CURSOR_ENABLE |
8269 CURSOR_GAMMA_ENABLE |
8270 CURSOR_FORMAT_ARGB |
8271 CURSOR_STRIDE(stride);
8272
8273 size = (height << 12) | width;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008274 }
Chris Wilson560b85b2010-08-07 11:01:38 +01008275
Ville Syrjälädc41c152014-08-13 11:57:05 +03008276 if (intel_crtc->cursor_cntl != 0 &&
8277 (intel_crtc->cursor_base != base ||
8278 intel_crtc->cursor_size != size ||
8279 intel_crtc->cursor_cntl != cntl)) {
8280 /* On these chipsets we can only modify the base/size/stride
8281 * whilst the cursor is disabled.
8282 */
8283 I915_WRITE(_CURACNTR, 0);
8284 POSTING_READ(_CURACNTR);
8285 intel_crtc->cursor_cntl = 0;
8286 }
8287
Ville Syrjälä99d1f382014-09-12 20:53:32 +03008288 if (intel_crtc->cursor_base != base) {
Ville Syrjälädc41c152014-08-13 11:57:05 +03008289 I915_WRITE(_CURABASE, base);
Ville Syrjälä99d1f382014-09-12 20:53:32 +03008290 intel_crtc->cursor_base = base;
8291 }
Ville Syrjälädc41c152014-08-13 11:57:05 +03008292
8293 if (intel_crtc->cursor_size != size) {
8294 I915_WRITE(CURSIZE, size);
8295 intel_crtc->cursor_size = size;
8296 }
8297
Chris Wilson4b0e3332014-05-30 16:35:26 +03008298 if (intel_crtc->cursor_cntl != cntl) {
8299 I915_WRITE(_CURACNTR, cntl);
8300 POSTING_READ(_CURACNTR);
8301 intel_crtc->cursor_cntl = cntl;
8302 }
Chris Wilson560b85b2010-08-07 11:01:38 +01008303}
8304
8305static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
8306{
8307 struct drm_device *dev = crtc->dev;
8308 struct drm_i915_private *dev_priv = dev->dev_private;
8309 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8310 int pipe = intel_crtc->pipe;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008311 uint32_t cntl;
Chris Wilson560b85b2010-08-07 11:01:38 +01008312
Chris Wilson4b0e3332014-05-30 16:35:26 +03008313 cntl = 0;
8314 if (base) {
8315 cntl = MCURSOR_GAMMA_ENABLE;
8316 switch (intel_crtc->cursor_width) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308317 case 64:
8318 cntl |= CURSOR_MODE_64_ARGB_AX;
8319 break;
8320 case 128:
8321 cntl |= CURSOR_MODE_128_ARGB_AX;
8322 break;
8323 case 256:
8324 cntl |= CURSOR_MODE_256_ARGB_AX;
8325 break;
8326 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01008327 MISSING_CASE(intel_crtc->cursor_width);
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308328 return;
Chris Wilson560b85b2010-08-07 11:01:38 +01008329 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03008330 cntl |= pipe << 28; /* Connect to correct pipe */
Ville Syrjälä47bf17a2014-09-12 20:53:33 +03008331
8332 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
8333 cntl |= CURSOR_PIPE_CSC_ENABLE;
Chris Wilson560b85b2010-08-07 11:01:38 +01008334 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03008335
Matt Roper8e7d6882015-01-21 16:35:41 -08008336 if (crtc->cursor->state->rotation == BIT(DRM_ROTATE_180))
Ville Syrjälä4398ad42014-10-23 07:41:34 -07008337 cntl |= CURSOR_ROTATE_180;
8338
Chris Wilson4b0e3332014-05-30 16:35:26 +03008339 if (intel_crtc->cursor_cntl != cntl) {
8340 I915_WRITE(CURCNTR(pipe), cntl);
8341 POSTING_READ(CURCNTR(pipe));
8342 intel_crtc->cursor_cntl = cntl;
8343 }
8344
Jesse Barnes65a21cd2011-10-12 11:10:21 -07008345 /* and commit changes on next vblank */
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008346 I915_WRITE(CURBASE(pipe), base);
8347 POSTING_READ(CURBASE(pipe));
Ville Syrjälä99d1f382014-09-12 20:53:32 +03008348
8349 intel_crtc->cursor_base = base;
Jesse Barnes65a21cd2011-10-12 11:10:21 -07008350}
8351
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008352/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01008353static void intel_crtc_update_cursor(struct drm_crtc *crtc,
8354 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008355{
8356 struct drm_device *dev = crtc->dev;
8357 struct drm_i915_private *dev_priv = dev->dev_private;
8358 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8359 int pipe = intel_crtc->pipe;
Matt Roper3d7d6512014-06-10 08:28:13 -07008360 int x = crtc->cursor_x;
8361 int y = crtc->cursor_y;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008362 u32 base = 0, pos = 0;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008363
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008364 if (on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008365 base = intel_crtc->cursor_addr;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008366
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008367 if (x >= intel_crtc->config->pipe_src_w)
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008368 base = 0;
8369
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008370 if (y >= intel_crtc->config->pipe_src_h)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008371 base = 0;
8372
8373 if (x < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03008374 if (x + intel_crtc->cursor_width <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008375 base = 0;
8376
8377 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
8378 x = -x;
8379 }
8380 pos |= x << CURSOR_X_SHIFT;
8381
8382 if (y < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03008383 if (y + intel_crtc->cursor_height <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008384 base = 0;
8385
8386 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
8387 y = -y;
8388 }
8389 pos |= y << CURSOR_Y_SHIFT;
8390
Chris Wilson4b0e3332014-05-30 16:35:26 +03008391 if (base == 0 && intel_crtc->cursor_base == 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008392 return;
8393
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008394 I915_WRITE(CURPOS(pipe), pos);
8395
Ville Syrjälä4398ad42014-10-23 07:41:34 -07008396 /* ILK+ do this automagically */
8397 if (HAS_GMCH_DISPLAY(dev) &&
Matt Roper8e7d6882015-01-21 16:35:41 -08008398 crtc->cursor->state->rotation == BIT(DRM_ROTATE_180)) {
Ville Syrjälä4398ad42014-10-23 07:41:34 -07008399 base += (intel_crtc->cursor_height *
8400 intel_crtc->cursor_width - 1) * 4;
8401 }
8402
Ville Syrjälä8ac54662014-08-12 19:39:54 +03008403 if (IS_845G(dev) || IS_I865G(dev))
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008404 i845_update_cursor(crtc, base);
8405 else
8406 i9xx_update_cursor(crtc, base);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008407}
8408
Ville Syrjälädc41c152014-08-13 11:57:05 +03008409static bool cursor_size_ok(struct drm_device *dev,
8410 uint32_t width, uint32_t height)
8411{
8412 if (width == 0 || height == 0)
8413 return false;
8414
8415 /*
8416 * 845g/865g are special in that they are only limited by
8417 * the width of their cursors, the height is arbitrary up to
8418 * the precision of the register. Everything else requires
8419 * square cursors, limited to a few power-of-two sizes.
8420 */
8421 if (IS_845G(dev) || IS_I865G(dev)) {
8422 if ((width & 63) != 0)
8423 return false;
8424
8425 if (width > (IS_845G(dev) ? 64 : 512))
8426 return false;
8427
8428 if (height > 1023)
8429 return false;
8430 } else {
8431 switch (width | height) {
8432 case 256:
8433 case 128:
8434 if (IS_GEN2(dev))
8435 return false;
8436 case 64:
8437 break;
8438 default:
8439 return false;
8440 }
8441 }
8442
8443 return true;
8444}
8445
Jesse Barnes79e53942008-11-07 14:24:08 -08008446static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01008447 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08008448{
James Simmons72034252010-08-03 01:33:19 +01008449 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08008450 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008451
James Simmons72034252010-08-03 01:33:19 +01008452 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008453 intel_crtc->lut_r[i] = red[i] >> 8;
8454 intel_crtc->lut_g[i] = green[i] >> 8;
8455 intel_crtc->lut_b[i] = blue[i] >> 8;
8456 }
8457
8458 intel_crtc_load_lut(crtc);
8459}
8460
Jesse Barnes79e53942008-11-07 14:24:08 -08008461/* VESA 640x480x72Hz mode to set on the pipe */
8462static struct drm_display_mode load_detect_mode = {
8463 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
8464 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
8465};
8466
Daniel Vettera8bb6812014-02-10 18:00:39 +01008467struct drm_framebuffer *
8468__intel_framebuffer_create(struct drm_device *dev,
8469 struct drm_mode_fb_cmd2 *mode_cmd,
8470 struct drm_i915_gem_object *obj)
Chris Wilsond2dff872011-04-19 08:36:26 +01008471{
8472 struct intel_framebuffer *intel_fb;
8473 int ret;
8474
8475 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
8476 if (!intel_fb) {
Alexey Khoroshilov6ccb81f2014-11-08 01:41:23 +03008477 drm_gem_object_unreference(&obj->base);
Chris Wilsond2dff872011-04-19 08:36:26 +01008478 return ERR_PTR(-ENOMEM);
8479 }
8480
8481 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008482 if (ret)
8483 goto err;
Chris Wilsond2dff872011-04-19 08:36:26 +01008484
8485 return &intel_fb->base;
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008486err:
Alexey Khoroshilov6ccb81f2014-11-08 01:41:23 +03008487 drm_gem_object_unreference(&obj->base);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008488 kfree(intel_fb);
8489
8490 return ERR_PTR(ret);
Chris Wilsond2dff872011-04-19 08:36:26 +01008491}
8492
Daniel Vetterb5ea6422014-03-02 21:18:00 +01008493static struct drm_framebuffer *
Daniel Vettera8bb6812014-02-10 18:00:39 +01008494intel_framebuffer_create(struct drm_device *dev,
8495 struct drm_mode_fb_cmd2 *mode_cmd,
8496 struct drm_i915_gem_object *obj)
8497{
8498 struct drm_framebuffer *fb;
8499 int ret;
8500
8501 ret = i915_mutex_lock_interruptible(dev);
8502 if (ret)
8503 return ERR_PTR(ret);
8504 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
8505 mutex_unlock(&dev->struct_mutex);
8506
8507 return fb;
8508}
8509
Chris Wilsond2dff872011-04-19 08:36:26 +01008510static u32
8511intel_framebuffer_pitch_for_width(int width, int bpp)
8512{
8513 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
8514 return ALIGN(pitch, 64);
8515}
8516
8517static u32
8518intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
8519{
8520 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
Fabian Frederick1267a262014-07-01 20:39:41 +02008521 return PAGE_ALIGN(pitch * mode->vdisplay);
Chris Wilsond2dff872011-04-19 08:36:26 +01008522}
8523
8524static struct drm_framebuffer *
8525intel_framebuffer_create_for_mode(struct drm_device *dev,
8526 struct drm_display_mode *mode,
8527 int depth, int bpp)
8528{
8529 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +00008530 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +01008531
8532 obj = i915_gem_alloc_object(dev,
8533 intel_framebuffer_size_for_mode(mode, bpp));
8534 if (obj == NULL)
8535 return ERR_PTR(-ENOMEM);
8536
8537 mode_cmd.width = mode->hdisplay;
8538 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008539 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
8540 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00008541 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01008542
8543 return intel_framebuffer_create(dev, &mode_cmd, obj);
8544}
8545
8546static struct drm_framebuffer *
8547mode_fits_in_fbdev(struct drm_device *dev,
8548 struct drm_display_mode *mode)
8549{
Daniel Vetter4520f532013-10-09 09:18:51 +02008550#ifdef CONFIG_DRM_I915_FBDEV
Chris Wilsond2dff872011-04-19 08:36:26 +01008551 struct drm_i915_private *dev_priv = dev->dev_private;
8552 struct drm_i915_gem_object *obj;
8553 struct drm_framebuffer *fb;
8554
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008555 if (!dev_priv->fbdev)
8556 return NULL;
8557
8558 if (!dev_priv->fbdev->fb)
Chris Wilsond2dff872011-04-19 08:36:26 +01008559 return NULL;
8560
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008561 obj = dev_priv->fbdev->fb->obj;
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008562 BUG_ON(!obj);
Chris Wilsond2dff872011-04-19 08:36:26 +01008563
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008564 fb = &dev_priv->fbdev->fb->base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008565 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
8566 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01008567 return NULL;
8568
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008569 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01008570 return NULL;
8571
8572 return fb;
Daniel Vetter4520f532013-10-09 09:18:51 +02008573#else
8574 return NULL;
8575#endif
Chris Wilsond2dff872011-04-19 08:36:26 +01008576}
8577
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008578bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01008579 struct drm_display_mode *mode,
Rob Clark51fd3712013-11-19 12:10:12 -05008580 struct intel_load_detect_pipe *old,
8581 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -08008582{
8583 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008584 struct intel_encoder *intel_encoder =
8585 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08008586 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01008587 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08008588 struct drm_crtc *crtc = NULL;
8589 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02008590 struct drm_framebuffer *fb;
Rob Clark51fd3712013-11-19 12:10:12 -05008591 struct drm_mode_config *config = &dev->mode_config;
8592 int ret, i = -1;
Jesse Barnes79e53942008-11-07 14:24:08 -08008593
Chris Wilsond2dff872011-04-19 08:36:26 +01008594 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03008595 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +03008596 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +01008597
Rob Clark51fd3712013-11-19 12:10:12 -05008598retry:
8599 ret = drm_modeset_lock(&config->connection_mutex, ctx);
8600 if (ret)
8601 goto fail_unlock;
Daniel Vetter6e9f7982014-05-29 23:54:47 +02008602
Jesse Barnes79e53942008-11-07 14:24:08 -08008603 /*
8604 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01008605 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008606 * - if the connector already has an assigned crtc, use it (but make
8607 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01008608 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008609 * - try to find the first unused crtc that can drive this connector,
8610 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08008611 */
8612
8613 /* See if we already have a CRTC for this connector */
8614 if (encoder->crtc) {
8615 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01008616
Rob Clark51fd3712013-11-19 12:10:12 -05008617 ret = drm_modeset_lock(&crtc->mutex, ctx);
8618 if (ret)
8619 goto fail_unlock;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01008620 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
8621 if (ret)
8622 goto fail_unlock;
Daniel Vetter7b240562012-12-12 00:35:33 +01008623
Daniel Vetter24218aa2012-08-12 19:27:11 +02008624 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008625 old->load_detect_temp = false;
8626
8627 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008628 if (connector->dpms != DRM_MODE_DPMS_ON)
8629 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01008630
Chris Wilson71731882011-04-19 23:10:58 +01008631 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08008632 }
8633
8634 /* Find an unused one (if possible) */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008635 for_each_crtc(dev, possible_crtc) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008636 i++;
8637 if (!(encoder->possible_crtcs & (1 << i)))
8638 continue;
Ville Syrjäläa4592492014-08-11 13:15:36 +03008639 if (possible_crtc->enabled)
8640 continue;
8641 /* This can occur when applying the pipe A quirk on resume. */
8642 if (to_intel_crtc(possible_crtc)->new_enabled)
8643 continue;
8644
8645 crtc = possible_crtc;
8646 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08008647 }
8648
8649 /*
8650 * If we didn't find an unused CRTC, don't use any.
8651 */
8652 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01008653 DRM_DEBUG_KMS("no pipe available for load-detect\n");
Rob Clark51fd3712013-11-19 12:10:12 -05008654 goto fail_unlock;
Jesse Barnes79e53942008-11-07 14:24:08 -08008655 }
8656
Rob Clark51fd3712013-11-19 12:10:12 -05008657 ret = drm_modeset_lock(&crtc->mutex, ctx);
8658 if (ret)
8659 goto fail_unlock;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01008660 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
8661 if (ret)
8662 goto fail_unlock;
Daniel Vetterfc303102012-07-09 10:40:58 +02008663 intel_encoder->new_crtc = to_intel_crtc(crtc);
8664 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008665
8666 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008667 intel_crtc->new_enabled = true;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008668 intel_crtc->new_config = intel_crtc->config;
Daniel Vetter24218aa2012-08-12 19:27:11 +02008669 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008670 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01008671 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08008672
Chris Wilson64927112011-04-20 07:25:26 +01008673 if (!mode)
8674 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08008675
Chris Wilsond2dff872011-04-19 08:36:26 +01008676 /* We need a framebuffer large enough to accommodate all accesses
8677 * that the plane may generate whilst we perform load detection.
8678 * We can not rely on the fbcon either being present (we get called
8679 * during its initialisation to detect all boot displays, or it may
8680 * not even exist) or that it is large enough to satisfy the
8681 * requested mode.
8682 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02008683 fb = mode_fits_in_fbdev(dev, mode);
8684 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008685 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008686 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
8687 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01008688 } else
8689 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008690 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008691 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008692 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008693 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008694
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008695 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01008696 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01008697 if (old->release_fb)
8698 old->release_fb->funcs->destroy(old->release_fb);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008699 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008700 }
Chris Wilson71731882011-04-19 23:10:58 +01008701
Jesse Barnes79e53942008-11-07 14:24:08 -08008702 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008703 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +01008704 return true;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008705
8706 fail:
8707 intel_crtc->new_enabled = crtc->enabled;
8708 if (intel_crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008709 intel_crtc->new_config = intel_crtc->config;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008710 else
8711 intel_crtc->new_config = NULL;
Rob Clark51fd3712013-11-19 12:10:12 -05008712fail_unlock:
8713 if (ret == -EDEADLK) {
8714 drm_modeset_backoff(ctx);
8715 goto retry;
8716 }
8717
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008718 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08008719}
8720
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008721void intel_release_load_detect_pipe(struct drm_connector *connector,
Ville Syrjälä208bf9f2014-08-11 13:15:35 +03008722 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08008723{
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008724 struct intel_encoder *intel_encoder =
8725 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01008726 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +01008727 struct drm_crtc *crtc = encoder->crtc;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008728 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008729
Chris Wilsond2dff872011-04-19 08:36:26 +01008730 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03008731 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +03008732 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +01008733
Chris Wilson8261b192011-04-19 23:18:09 +01008734 if (old->load_detect_temp) {
Daniel Vetterfc303102012-07-09 10:40:58 +02008735 to_intel_connector(connector)->new_encoder = NULL;
8736 intel_encoder->new_crtc = NULL;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008737 intel_crtc->new_enabled = false;
8738 intel_crtc->new_config = NULL;
Daniel Vetterfc303102012-07-09 10:40:58 +02008739 intel_set_mode(crtc, NULL, 0, 0, NULL);
Chris Wilsond2dff872011-04-19 08:36:26 +01008740
Daniel Vetter36206362012-12-10 20:42:17 +01008741 if (old->release_fb) {
8742 drm_framebuffer_unregister_private(old->release_fb);
8743 drm_framebuffer_unreference(old->release_fb);
8744 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008745
Chris Wilson0622a532011-04-21 09:32:11 +01008746 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008747 }
8748
Eric Anholtc751ce42010-03-25 11:48:48 -07008749 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008750 if (old->dpms_mode != DRM_MODE_DPMS_ON)
8751 connector->funcs->dpms(connector, old->dpms_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08008752}
8753
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008754static int i9xx_pll_refclk(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008755 const struct intel_crtc_state *pipe_config)
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008756{
8757 struct drm_i915_private *dev_priv = dev->dev_private;
8758 u32 dpll = pipe_config->dpll_hw_state.dpll;
8759
8760 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008761 return dev_priv->vbt.lvds_ssc_freq;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008762 else if (HAS_PCH_SPLIT(dev))
8763 return 120000;
8764 else if (!IS_GEN2(dev))
8765 return 96000;
8766 else
8767 return 48000;
8768}
8769
Jesse Barnes79e53942008-11-07 14:24:08 -08008770/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008771static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008772 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08008773{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008774 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08008775 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008776 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008777 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -08008778 u32 fp;
8779 intel_clock_t clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008780 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -08008781
8782 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +03008783 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008784 else
Ville Syrjälä293623f2013-09-13 16:18:46 +03008785 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -08008786
8787 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008788 if (IS_PINEVIEW(dev)) {
8789 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
8790 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08008791 } else {
8792 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
8793 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
8794 }
8795
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008796 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008797 if (IS_PINEVIEW(dev))
8798 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
8799 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08008800 else
8801 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08008802 DPLL_FPA01_P1_POST_DIV_SHIFT);
8803
8804 switch (dpll & DPLL_MODE_MASK) {
8805 case DPLLB_MODE_DAC_SERIAL:
8806 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
8807 5 : 10;
8808 break;
8809 case DPLLB_MODE_LVDS:
8810 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
8811 7 : 14;
8812 break;
8813 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08008814 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08008815 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008816 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008817 }
8818
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008819 if (IS_PINEVIEW(dev))
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008820 pineview_clock(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008821 else
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008822 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008823 } else {
Ville Syrjälä0fb58222014-01-10 14:06:46 +02008824 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008825 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
Jesse Barnes79e53942008-11-07 14:24:08 -08008826
8827 if (is_lvds) {
8828 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
8829 DPLL_FPA01_P1_POST_DIV_SHIFT);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008830
8831 if (lvds & LVDS_CLKB_POWER_UP)
8832 clock.p2 = 7;
8833 else
8834 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -08008835 } else {
8836 if (dpll & PLL_P1_DIVIDE_BY_TWO)
8837 clock.p1 = 2;
8838 else {
8839 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
8840 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
8841 }
8842 if (dpll & PLL_P2_DIVIDE_BY_4)
8843 clock.p2 = 4;
8844 else
8845 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -08008846 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008847
8848 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008849 }
8850
Ville Syrjälä18442d02013-09-13 16:00:08 +03008851 /*
8852 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +01008853 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +03008854 * encoder's get_config() function.
8855 */
8856 pipe_config->port_clock = clock.dot;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008857}
8858
Ville Syrjälä6878da02013-09-13 15:59:11 +03008859int intel_dotclock_calculate(int link_freq,
8860 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008861{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008862 /*
8863 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008864 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008865 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008866 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008867 *
8868 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008869 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -08008870 */
8871
Ville Syrjälä6878da02013-09-13 15:59:11 +03008872 if (!m_n->link_n)
8873 return 0;
8874
8875 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
8876}
8877
Ville Syrjälä18442d02013-09-13 16:00:08 +03008878static void ironlake_pch_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008879 struct intel_crtc_state *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +03008880{
8881 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä18442d02013-09-13 16:00:08 +03008882
8883 /* read out port_clock from the DPLL */
8884 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +03008885
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008886 /*
Ville Syrjälä18442d02013-09-13 16:00:08 +03008887 * This value does not include pixel_multiplier.
Damien Lespiau241bfc32013-09-25 16:45:37 +01008888 * We will check that port_clock and adjusted_mode.crtc_clock
Ville Syrjälä18442d02013-09-13 16:00:08 +03008889 * agree once we know their relationship in the encoder's
8890 * get_config() function.
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008891 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02008892 pipe_config->base.adjusted_mode.crtc_clock =
Ville Syrjälä18442d02013-09-13 16:00:08 +03008893 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
8894 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -08008895}
8896
8897/** Returns the currently programmed mode of the given pipe. */
8898struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
8899 struct drm_crtc *crtc)
8900{
Jesse Barnes548f2452011-02-17 10:40:53 -08008901 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08008902 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008903 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008904 struct drm_display_mode *mode;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008905 struct intel_crtc_state pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -02008906 int htot = I915_READ(HTOTAL(cpu_transcoder));
8907 int hsync = I915_READ(HSYNC(cpu_transcoder));
8908 int vtot = I915_READ(VTOTAL(cpu_transcoder));
8909 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +03008910 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08008911
8912 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
8913 if (!mode)
8914 return NULL;
8915
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008916 /*
8917 * Construct a pipe_config sufficient for getting the clock info
8918 * back out of crtc_clock_get.
8919 *
8920 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
8921 * to use a real value here instead.
8922 */
Ville Syrjälä293623f2013-09-13 16:18:46 +03008923 pipe_config.cpu_transcoder = (enum transcoder) pipe;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008924 pipe_config.pixel_multiplier = 1;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008925 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
8926 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
8927 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008928 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
8929
Ville Syrjälä773ae032013-09-23 17:48:20 +03008930 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -08008931 mode->hdisplay = (htot & 0xffff) + 1;
8932 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
8933 mode->hsync_start = (hsync & 0xffff) + 1;
8934 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
8935 mode->vdisplay = (vtot & 0xffff) + 1;
8936 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
8937 mode->vsync_start = (vsync & 0xffff) + 1;
8938 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
8939
8940 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08008941
8942 return mode;
8943}
8944
Jesse Barnes652c3932009-08-17 13:31:43 -07008945static void intel_decrease_pllclock(struct drm_crtc *crtc)
8946{
8947 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +03008948 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -07008949 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07008950
Sonika Jindalbaff2962014-07-22 11:16:35 +05308951 if (!HAS_GMCH_DISPLAY(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07008952 return;
8953
8954 if (!dev_priv->lvds_downclock_avail)
8955 return;
8956
8957 /*
8958 * Since this is called by a timer, we should never get here in
8959 * the manual case.
8960 */
8961 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01008962 int pipe = intel_crtc->pipe;
8963 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02008964 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01008965
Zhao Yakui44d98a62009-10-09 11:39:40 +08008966 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008967
Sean Paul8ac5a6d2012-02-13 13:14:51 -05008968 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008969
Chris Wilson074b5e12012-05-02 12:07:06 +01008970 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07008971 dpll |= DISPLAY_RATE_SELECT_FPA1;
8972 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008973 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008974 dpll = I915_READ(dpll_reg);
8975 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08008976 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008977 }
8978
8979}
8980
Chris Wilsonf047e392012-07-21 12:31:41 +01008981void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07008982{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008983 struct drm_i915_private *dev_priv = dev->dev_private;
8984
Chris Wilsonf62a0072014-02-21 17:55:39 +00008985 if (dev_priv->mm.busy)
8986 return;
8987
Paulo Zanoni43694d62014-03-07 20:08:08 -03008988 intel_runtime_pm_get(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008989 i915_update_gfx_val(dev_priv);
Chris Wilsonf62a0072014-02-21 17:55:39 +00008990 dev_priv->mm.busy = true;
Chris Wilsonf047e392012-07-21 12:31:41 +01008991}
8992
8993void intel_mark_idle(struct drm_device *dev)
8994{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008995 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson725a5b52013-01-08 11:02:57 +00008996 struct drm_crtc *crtc;
8997
Chris Wilsonf62a0072014-02-21 17:55:39 +00008998 if (!dev_priv->mm.busy)
8999 return;
9000
9001 dev_priv->mm.busy = false;
9002
Jani Nikulad330a952014-01-21 11:24:25 +02009003 if (!i915.powersave)
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03009004 goto out;
Chris Wilson725a5b52013-01-08 11:02:57 +00009005
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01009006 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -07009007 if (!crtc->primary->fb)
Chris Wilson725a5b52013-01-08 11:02:57 +00009008 continue;
9009
9010 intel_decrease_pllclock(crtc);
9011 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01009012
Damien Lespiau3d13ef22014-02-07 19:12:47 +00009013 if (INTEL_INFO(dev)->gen >= 6)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01009014 gen6_rps_idle(dev->dev_private);
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03009015
9016out:
Paulo Zanoni43694d62014-03-07 20:08:08 -03009017 intel_runtime_pm_put(dev_priv);
Chris Wilsonf047e392012-07-21 12:31:41 +01009018}
9019
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +02009020static void intel_crtc_set_state(struct intel_crtc *crtc,
9021 struct intel_crtc_state *crtc_state)
9022{
9023 kfree(crtc->config);
9024 crtc->config = crtc_state;
Ander Conselvan de Oliveira16f3f652015-01-15 14:55:27 +02009025 crtc->base.state = &crtc_state->base;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +02009026}
9027
Jesse Barnes79e53942008-11-07 14:24:08 -08009028static void intel_crtc_destroy(struct drm_crtc *crtc)
9029{
9030 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009031 struct drm_device *dev = crtc->dev;
9032 struct intel_unpin_work *work;
Daniel Vetter67e77c52010-08-20 22:26:30 +02009033
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009034 spin_lock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009035 work = intel_crtc->unpin_work;
9036 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009037 spin_unlock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009038
9039 if (work) {
9040 cancel_work_sync(&work->work);
9041 kfree(work);
9042 }
Jesse Barnes79e53942008-11-07 14:24:08 -08009043
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +02009044 intel_crtc_set_state(intel_crtc, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08009045 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009046
Jesse Barnes79e53942008-11-07 14:24:08 -08009047 kfree(intel_crtc);
9048}
9049
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009050static void intel_unpin_work_fn(struct work_struct *__work)
9051{
9052 struct intel_unpin_work *work =
9053 container_of(__work, struct intel_unpin_work, work);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009054 struct drm_device *dev = work->crtc->dev;
Daniel Vetterf99d7062014-06-19 16:01:59 +02009055 enum pipe pipe = to_intel_crtc(work->crtc)->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009056
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009057 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01009058 intel_unpin_fb_obj(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00009059 drm_gem_object_unreference(&work->pending_flip_obj->base);
9060 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00009061
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02009062 intel_fbc_update(dev);
John Harrisonf06cc1b2014-11-24 18:49:37 +00009063
9064 if (work->flip_queued_req)
John Harrison146d84f2014-12-05 13:49:33 +00009065 i915_gem_request_assign(&work->flip_queued_req, NULL);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009066 mutex_unlock(&dev->struct_mutex);
9067
Daniel Vetterf99d7062014-06-19 16:01:59 +02009068 intel_frontbuffer_flip_complete(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
9069
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009070 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
9071 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
9072
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009073 kfree(work);
9074}
9075
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009076static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01009077 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009078{
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009079 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9080 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009081 unsigned long flags;
9082
9083 /* Ignore early vblank irqs */
9084 if (intel_crtc == NULL)
9085 return;
9086
Daniel Vetterf3260382014-09-15 14:55:23 +02009087 /*
9088 * This is called both by irq handlers and the reset code (to complete
9089 * lost pageflips) so needs the full irqsave spinlocks.
9090 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009091 spin_lock_irqsave(&dev->event_lock, flags);
9092 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +00009093
9094 /* Ensure we don't miss a work->pending update ... */
9095 smp_rmb();
9096
9097 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009098 spin_unlock_irqrestore(&dev->event_lock, flags);
9099 return;
9100 }
9101
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009102 page_flip_completed(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01009103
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009104 spin_unlock_irqrestore(&dev->event_lock, flags);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009105}
9106
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009107void intel_finish_page_flip(struct drm_device *dev, int pipe)
9108{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009109 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009110 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
9111
Mario Kleiner49b14a52010-12-09 07:00:07 +01009112 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009113}
9114
9115void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
9116{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009117 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009118 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
9119
Mario Kleiner49b14a52010-12-09 07:00:07 +01009120 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009121}
9122
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009123/* Is 'a' after or equal to 'b'? */
9124static bool g4x_flip_count_after_eq(u32 a, u32 b)
9125{
9126 return !((a - b) & 0x80000000);
9127}
9128
9129static bool page_flip_finished(struct intel_crtc *crtc)
9130{
9131 struct drm_device *dev = crtc->base.dev;
9132 struct drm_i915_private *dev_priv = dev->dev_private;
9133
Ville Syrjäläbdfa7542014-05-27 21:33:09 +03009134 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
9135 crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
9136 return true;
9137
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009138 /*
9139 * The relevant registers doen't exist on pre-ctg.
9140 * As the flip done interrupt doesn't trigger for mmio
9141 * flips on gmch platforms, a flip count check isn't
9142 * really needed there. But since ctg has the registers,
9143 * include it in the check anyway.
9144 */
9145 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
9146 return true;
9147
9148 /*
9149 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
9150 * used the same base address. In that case the mmio flip might
9151 * have completed, but the CS hasn't even executed the flip yet.
9152 *
9153 * A flip count check isn't enough as the CS might have updated
9154 * the base address just after start of vblank, but before we
9155 * managed to process the interrupt. This means we'd complete the
9156 * CS flip too soon.
9157 *
9158 * Combining both checks should get us a good enough result. It may
9159 * still happen that the CS flip has been executed, but has not
9160 * yet actually completed. But in case the base address is the same
9161 * anyway, we don't really care.
9162 */
9163 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
9164 crtc->unpin_work->gtt_offset &&
9165 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_GM45(crtc->pipe)),
9166 crtc->unpin_work->flip_count);
9167}
9168
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009169void intel_prepare_page_flip(struct drm_device *dev, int plane)
9170{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009171 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009172 struct intel_crtc *intel_crtc =
9173 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
9174 unsigned long flags;
9175
Daniel Vetterf3260382014-09-15 14:55:23 +02009176
9177 /*
9178 * This is called both by irq handlers and the reset code (to complete
9179 * lost pageflips) so needs the full irqsave spinlocks.
9180 *
9181 * NB: An MMIO update of the plane base pointer will also
Chris Wilsone7d841c2012-12-03 11:36:30 +00009182 * generate a page-flip completion irq, i.e. every modeset
9183 * is also accompanied by a spurious intel_prepare_page_flip().
9184 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009185 spin_lock_irqsave(&dev->event_lock, flags);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009186 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
Chris Wilsone7d841c2012-12-03 11:36:30 +00009187 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009188 spin_unlock_irqrestore(&dev->event_lock, flags);
9189}
9190
Robin Schroereba905b2014-05-18 02:24:50 +02009191static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
Chris Wilsone7d841c2012-12-03 11:36:30 +00009192{
9193 /* Ensure that the work item is consistent when activating it ... */
9194 smp_wmb();
9195 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
9196 /* and that it is marked active as soon as the irq could fire. */
9197 smp_wmb();
9198}
9199
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009200static int intel_gen2_queue_flip(struct drm_device *dev,
9201 struct drm_crtc *crtc,
9202 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009203 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009204 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009205 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009206{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009207 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009208 u32 flip_mask;
9209 int ret;
9210
Daniel Vetter6d90c952012-04-26 23:28:05 +02009211 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009212 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009213 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009214
9215 /* Can't queue multiple flips, so wait for the previous
9216 * one to finish before executing the next.
9217 */
9218 if (intel_crtc->plane)
9219 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
9220 else
9221 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009222 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
9223 intel_ring_emit(ring, MI_NOOP);
9224 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9225 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9226 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009227 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02009228 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +00009229
9230 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009231 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009232 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009233}
9234
9235static int intel_gen3_queue_flip(struct drm_device *dev,
9236 struct drm_crtc *crtc,
9237 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009238 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009239 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009240 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009241{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009242 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009243 u32 flip_mask;
9244 int ret;
9245
Daniel Vetter6d90c952012-04-26 23:28:05 +02009246 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009247 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009248 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009249
9250 if (intel_crtc->plane)
9251 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
9252 else
9253 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009254 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
9255 intel_ring_emit(ring, MI_NOOP);
9256 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
9257 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9258 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009259 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02009260 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009261
Chris Wilsone7d841c2012-12-03 11:36:30 +00009262 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009263 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009264 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009265}
9266
9267static int intel_gen4_queue_flip(struct drm_device *dev,
9268 struct drm_crtc *crtc,
9269 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009270 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009271 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009272 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009273{
9274 struct drm_i915_private *dev_priv = dev->dev_private;
9275 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9276 uint32_t pf, pipesrc;
9277 int ret;
9278
Daniel Vetter6d90c952012-04-26 23:28:05 +02009279 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009280 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009281 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009282
9283 /* i965+ uses the linear or tiled offsets from the
9284 * Display Registers (which do not change across a page-flip)
9285 * so we need only reprogram the base address.
9286 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02009287 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9288 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9289 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009290 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
Daniel Vetterc2c75132012-07-05 12:17:30 +02009291 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009292
9293 /* XXX Enabling the panel-fitter across page-flip is so far
9294 * untested on non-native modes, so ignore it for now.
9295 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
9296 */
9297 pf = 0;
9298 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009299 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009300
9301 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009302 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009303 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009304}
9305
9306static int intel_gen6_queue_flip(struct drm_device *dev,
9307 struct drm_crtc *crtc,
9308 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009309 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009310 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009311 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009312{
9313 struct drm_i915_private *dev_priv = dev->dev_private;
9314 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9315 uint32_t pf, pipesrc;
9316 int ret;
9317
Daniel Vetter6d90c952012-04-26 23:28:05 +02009318 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009319 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009320 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009321
Daniel Vetter6d90c952012-04-26 23:28:05 +02009322 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9323 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9324 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009325 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009326
Chris Wilson99d9acd2012-04-17 20:37:00 +01009327 /* Contrary to the suggestions in the documentation,
9328 * "Enable Panel Fitter" does not seem to be required when page
9329 * flipping with a non-native mode, and worse causes a normal
9330 * modeset to fail.
9331 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
9332 */
9333 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009334 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009335 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009336
9337 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009338 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009339 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009340}
9341
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009342static int intel_gen7_queue_flip(struct drm_device *dev,
9343 struct drm_crtc *crtc,
9344 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009345 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009346 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009347 uint32_t flags)
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009348{
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009349 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009350 uint32_t plane_bit = 0;
Chris Wilsonffe74d72013-08-26 20:58:12 +01009351 int len, ret;
9352
Robin Schroereba905b2014-05-18 02:24:50 +02009353 switch (intel_crtc->plane) {
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009354 case PLANE_A:
9355 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
9356 break;
9357 case PLANE_B:
9358 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
9359 break;
9360 case PLANE_C:
9361 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
9362 break;
9363 default:
9364 WARN_ONCE(1, "unknown plane in flip command\n");
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009365 return -ENODEV;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009366 }
9367
Chris Wilsonffe74d72013-08-26 20:58:12 +01009368 len = 4;
Damien Lespiauf4768282014-04-07 20:24:34 +01009369 if (ring->id == RCS) {
Chris Wilsonffe74d72013-08-26 20:58:12 +01009370 len += 6;
Damien Lespiauf4768282014-04-07 20:24:34 +01009371 /*
9372 * On Gen 8, SRM is now taking an extra dword to accommodate
9373 * 48bits addresses, and we need a NOOP for the batch size to
9374 * stay even.
9375 */
9376 if (IS_GEN8(dev))
9377 len += 2;
9378 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009379
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009380 /*
9381 * BSpec MI_DISPLAY_FLIP for IVB:
9382 * "The full packet must be contained within the same cache line."
9383 *
9384 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
9385 * cacheline, if we ever start emitting more commands before
9386 * the MI_DISPLAY_FLIP we may need to first emit everything else,
9387 * then do the cacheline alignment, and finally emit the
9388 * MI_DISPLAY_FLIP.
9389 */
9390 ret = intel_ring_cacheline_align(ring);
9391 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009392 return ret;
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009393
Chris Wilsonffe74d72013-08-26 20:58:12 +01009394 ret = intel_ring_begin(ring, len);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009395 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009396 return ret;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009397
Chris Wilsonffe74d72013-08-26 20:58:12 +01009398 /* Unmask the flip-done completion message. Note that the bspec says that
9399 * we should do this for both the BCS and RCS, and that we must not unmask
9400 * more than one flip event at any time (or ensure that one flip message
9401 * can be sent by waiting for flip-done prior to queueing new flips).
9402 * Experimentation says that BCS works despite DERRMR masking all
9403 * flip-done completion events and that unmasking all planes at once
9404 * for the RCS also doesn't appear to drop events. Setting the DERRMR
9405 * to zero does lead to lockups within MI_DISPLAY_FLIP.
9406 */
9407 if (ring->id == RCS) {
9408 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9409 intel_ring_emit(ring, DERRMR);
9410 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9411 DERRMR_PIPEB_PRI_FLIP_DONE |
9412 DERRMR_PIPEC_PRI_FLIP_DONE));
Damien Lespiauf4768282014-04-07 20:24:34 +01009413 if (IS_GEN8(dev))
9414 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9415 MI_SRM_LRM_GLOBAL_GTT);
9416 else
9417 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) |
9418 MI_SRM_LRM_GLOBAL_GTT);
Chris Wilsonffe74d72013-08-26 20:58:12 +01009419 intel_ring_emit(ring, DERRMR);
9420 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Damien Lespiauf4768282014-04-07 20:24:34 +01009421 if (IS_GEN8(dev)) {
9422 intel_ring_emit(ring, 0);
9423 intel_ring_emit(ring, MI_NOOP);
9424 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009425 }
9426
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009427 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02009428 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009429 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009430 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +00009431
9432 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009433 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009434 return 0;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009435}
9436
Sourab Gupta84c33a62014-06-02 16:47:17 +05309437static bool use_mmio_flip(struct intel_engine_cs *ring,
9438 struct drm_i915_gem_object *obj)
9439{
9440 /*
9441 * This is not being used for older platforms, because
9442 * non-availability of flip done interrupt forces us to use
9443 * CS flips. Older platforms derive flip done using some clever
9444 * tricks involving the flip_pending status bits and vblank irqs.
9445 * So using MMIO flips there would disrupt this mechanism.
9446 */
9447
Chris Wilson8e09bf82014-07-08 10:40:30 +01009448 if (ring == NULL)
9449 return true;
9450
Sourab Gupta84c33a62014-06-02 16:47:17 +05309451 if (INTEL_INFO(ring->dev)->gen < 5)
9452 return false;
9453
9454 if (i915.use_mmio_flip < 0)
9455 return false;
9456 else if (i915.use_mmio_flip > 0)
9457 return true;
Oscar Mateo14bf9932014-07-24 17:04:34 +01009458 else if (i915.enable_execlists)
9459 return true;
Sourab Gupta84c33a62014-06-02 16:47:17 +05309460 else
John Harrison41c52412014-11-24 18:49:43 +00009461 return ring != i915_gem_request_get_ring(obj->last_read_req);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309462}
9463
Damien Lespiauff944562014-11-20 14:58:16 +00009464static void skl_do_mmio_flip(struct intel_crtc *intel_crtc)
9465{
9466 struct drm_device *dev = intel_crtc->base.dev;
9467 struct drm_i915_private *dev_priv = dev->dev_private;
9468 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
9469 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
9470 struct drm_i915_gem_object *obj = intel_fb->obj;
9471 const enum pipe pipe = intel_crtc->pipe;
9472 u32 ctl, stride;
9473
9474 ctl = I915_READ(PLANE_CTL(pipe, 0));
9475 ctl &= ~PLANE_CTL_TILED_MASK;
9476 if (obj->tiling_mode == I915_TILING_X)
9477 ctl |= PLANE_CTL_TILED_X;
9478
9479 /*
9480 * The stride is either expressed as a multiple of 64 bytes chunks for
9481 * linear buffers or in number of tiles for tiled buffers.
9482 */
9483 stride = fb->pitches[0] >> 6;
9484 if (obj->tiling_mode == I915_TILING_X)
9485 stride = fb->pitches[0] >> 9; /* X tiles are 512 bytes wide */
9486
9487 /*
9488 * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on
9489 * PLANE_SURF updates, the update is then guaranteed to be atomic.
9490 */
9491 I915_WRITE(PLANE_CTL(pipe, 0), ctl);
9492 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
9493
9494 I915_WRITE(PLANE_SURF(pipe, 0), intel_crtc->unpin_work->gtt_offset);
9495 POSTING_READ(PLANE_SURF(pipe, 0));
9496}
9497
9498static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc)
Sourab Gupta84c33a62014-06-02 16:47:17 +05309499{
9500 struct drm_device *dev = intel_crtc->base.dev;
9501 struct drm_i915_private *dev_priv = dev->dev_private;
9502 struct intel_framebuffer *intel_fb =
9503 to_intel_framebuffer(intel_crtc->base.primary->fb);
9504 struct drm_i915_gem_object *obj = intel_fb->obj;
9505 u32 dspcntr;
9506 u32 reg;
9507
Sourab Gupta84c33a62014-06-02 16:47:17 +05309508 reg = DSPCNTR(intel_crtc->plane);
9509 dspcntr = I915_READ(reg);
9510
Damien Lespiauc5d97472014-10-25 00:11:11 +01009511 if (obj->tiling_mode != I915_TILING_NONE)
9512 dspcntr |= DISPPLANE_TILED;
9513 else
9514 dspcntr &= ~DISPPLANE_TILED;
9515
Sourab Gupta84c33a62014-06-02 16:47:17 +05309516 I915_WRITE(reg, dspcntr);
9517
9518 I915_WRITE(DSPSURF(intel_crtc->plane),
9519 intel_crtc->unpin_work->gtt_offset);
9520 POSTING_READ(DSPSURF(intel_crtc->plane));
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009521
Damien Lespiauff944562014-11-20 14:58:16 +00009522}
9523
9524/*
9525 * XXX: This is the temporary way to update the plane registers until we get
9526 * around to using the usual plane update functions for MMIO flips
9527 */
9528static void intel_do_mmio_flip(struct intel_crtc *intel_crtc)
9529{
9530 struct drm_device *dev = intel_crtc->base.dev;
9531 bool atomic_update;
9532 u32 start_vbl_count;
9533
9534 intel_mark_page_flip_active(intel_crtc);
9535
9536 atomic_update = intel_pipe_update_start(intel_crtc, &start_vbl_count);
9537
9538 if (INTEL_INFO(dev)->gen >= 9)
9539 skl_do_mmio_flip(intel_crtc);
9540 else
9541 /* use_mmio_flip() retricts MMIO flips to ilk+ */
9542 ilk_do_mmio_flip(intel_crtc);
9543
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009544 if (atomic_update)
9545 intel_pipe_update_end(intel_crtc, start_vbl_count);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309546}
9547
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009548static void intel_mmio_flip_work_func(struct work_struct *work)
Sourab Gupta84c33a62014-06-02 16:47:17 +05309549{
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009550 struct intel_crtc *crtc =
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009551 container_of(work, struct intel_crtc, mmio_flip.work);
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009552 struct intel_mmio_flip *mmio_flip;
Sourab Gupta84c33a62014-06-02 16:47:17 +05309553
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009554 mmio_flip = &crtc->mmio_flip;
9555 if (mmio_flip->req)
John Harrison9c654812014-11-24 18:49:35 +00009556 WARN_ON(__i915_wait_request(mmio_flip->req,
9557 crtc->reset_counter,
9558 false, NULL, NULL) != 0);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309559
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009560 intel_do_mmio_flip(crtc);
9561 if (mmio_flip->req) {
9562 mutex_lock(&crtc->base.dev->struct_mutex);
John Harrison146d84f2014-12-05 13:49:33 +00009563 i915_gem_request_assign(&mmio_flip->req, NULL);
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009564 mutex_unlock(&crtc->base.dev->struct_mutex);
9565 }
Sourab Gupta84c33a62014-06-02 16:47:17 +05309566}
9567
9568static int intel_queue_mmio_flip(struct drm_device *dev,
9569 struct drm_crtc *crtc,
9570 struct drm_framebuffer *fb,
9571 struct drm_i915_gem_object *obj,
9572 struct intel_engine_cs *ring,
9573 uint32_t flags)
9574{
Sourab Gupta84c33a62014-06-02 16:47:17 +05309575 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309576
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009577 i915_gem_request_assign(&intel_crtc->mmio_flip.req,
9578 obj->last_write_req);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309579
Ander Conselvan de Oliveira536f5b52014-11-06 11:03:40 +02009580 schedule_work(&intel_crtc->mmio_flip.work);
9581
Sourab Gupta84c33a62014-06-02 16:47:17 +05309582 return 0;
9583}
9584
Damien Lespiau830c81d2014-11-13 17:51:46 +00009585static int intel_gen9_queue_flip(struct drm_device *dev,
9586 struct drm_crtc *crtc,
9587 struct drm_framebuffer *fb,
9588 struct drm_i915_gem_object *obj,
9589 struct intel_engine_cs *ring,
9590 uint32_t flags)
9591{
9592 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9593 uint32_t plane = 0, stride;
9594 int ret;
9595
9596 switch(intel_crtc->pipe) {
9597 case PIPE_A:
9598 plane = MI_DISPLAY_FLIP_SKL_PLANE_1_A;
9599 break;
9600 case PIPE_B:
9601 plane = MI_DISPLAY_FLIP_SKL_PLANE_1_B;
9602 break;
9603 case PIPE_C:
9604 plane = MI_DISPLAY_FLIP_SKL_PLANE_1_C;
9605 break;
9606 default:
9607 WARN_ONCE(1, "unknown plane in flip command\n");
9608 return -ENODEV;
9609 }
9610
9611 switch (obj->tiling_mode) {
9612 case I915_TILING_NONE:
9613 stride = fb->pitches[0] >> 6;
9614 break;
9615 case I915_TILING_X:
9616 stride = fb->pitches[0] >> 9;
9617 break;
9618 default:
9619 WARN_ONCE(1, "unknown tiling in flip command\n");
9620 return -ENODEV;
9621 }
9622
9623 ret = intel_ring_begin(ring, 10);
9624 if (ret)
9625 return ret;
9626
9627 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9628 intel_ring_emit(ring, DERRMR);
9629 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9630 DERRMR_PIPEB_PRI_FLIP_DONE |
9631 DERRMR_PIPEC_PRI_FLIP_DONE));
9632 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9633 MI_SRM_LRM_GLOBAL_GTT);
9634 intel_ring_emit(ring, DERRMR);
9635 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
9636 intel_ring_emit(ring, 0);
9637
9638 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane);
9639 intel_ring_emit(ring, stride << 6 | obj->tiling_mode);
9640 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
9641
9642 intel_mark_page_flip_active(intel_crtc);
9643 __intel_ring_advance(ring);
9644
9645 return 0;
9646}
9647
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009648static int intel_default_queue_flip(struct drm_device *dev,
9649 struct drm_crtc *crtc,
9650 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009651 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009652 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009653 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009654{
9655 return -ENODEV;
9656}
9657
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009658static bool __intel_pageflip_stall_check(struct drm_device *dev,
9659 struct drm_crtc *crtc)
9660{
9661 struct drm_i915_private *dev_priv = dev->dev_private;
9662 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9663 struct intel_unpin_work *work = intel_crtc->unpin_work;
9664 u32 addr;
9665
9666 if (atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE)
9667 return true;
9668
9669 if (!work->enable_stall_check)
9670 return false;
9671
9672 if (work->flip_ready_vblank == 0) {
Daniel Vetter3a8a9462014-11-26 14:39:48 +01009673 if (work->flip_queued_req &&
9674 !i915_gem_request_completed(work->flip_queued_req, true))
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009675 return false;
9676
9677 work->flip_ready_vblank = drm_vblank_count(dev, intel_crtc->pipe);
9678 }
9679
9680 if (drm_vblank_count(dev, intel_crtc->pipe) - work->flip_ready_vblank < 3)
9681 return false;
9682
9683 /* Potential stall - if we see that the flip has happened,
9684 * assume a missed interrupt. */
9685 if (INTEL_INFO(dev)->gen >= 4)
9686 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane)));
9687 else
9688 addr = I915_READ(DSPADDR(intel_crtc->plane));
9689
9690 /* There is a potential issue here with a false positive after a flip
9691 * to the same address. We could address this by checking for a
9692 * non-incrementing frame counter.
9693 */
9694 return addr == work->gtt_offset;
9695}
9696
9697void intel_check_page_flip(struct drm_device *dev, int pipe)
9698{
9699 struct drm_i915_private *dev_priv = dev->dev_private;
9700 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
9701 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetterf3260382014-09-15 14:55:23 +02009702
9703 WARN_ON(!in_irq());
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009704
9705 if (crtc == NULL)
9706 return;
9707
Daniel Vetterf3260382014-09-15 14:55:23 +02009708 spin_lock(&dev->event_lock);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009709 if (intel_crtc->unpin_work && __intel_pageflip_stall_check(dev, crtc)) {
9710 WARN_ONCE(1, "Kicking stuck page flip: queued at %d, now %d\n",
9711 intel_crtc->unpin_work->flip_queued_vblank, drm_vblank_count(dev, pipe));
9712 page_flip_completed(intel_crtc);
9713 }
Daniel Vetterf3260382014-09-15 14:55:23 +02009714 spin_unlock(&dev->event_lock);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009715}
9716
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009717static int intel_crtc_page_flip(struct drm_crtc *crtc,
9718 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009719 struct drm_pending_vblank_event *event,
9720 uint32_t page_flip_flags)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009721{
9722 struct drm_device *dev = crtc->dev;
9723 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperf4510a22014-04-01 15:22:40 -07009724 struct drm_framebuffer *old_fb = crtc->primary->fb;
Matt Roper2ff8fde2014-07-08 07:50:07 -07009725 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009726 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Gustavo Padovan455a6802014-12-01 15:40:11 -08009727 struct drm_plane *primary = crtc->primary;
Daniel Vettera071fa02014-06-18 23:28:09 +02009728 enum pipe pipe = intel_crtc->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009729 struct intel_unpin_work *work;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009730 struct intel_engine_cs *ring;
Chris Wilson52e68632010-08-08 10:15:59 +01009731 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009732
Matt Roper2ff8fde2014-07-08 07:50:07 -07009733 /*
9734 * drm_mode_page_flip_ioctl() should already catch this, but double
9735 * check to be safe. In the future we may enable pageflipping from
9736 * a disabled primary plane.
9737 */
9738 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
9739 return -EBUSY;
9740
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009741 /* Can't change pixel format via MI display flips. */
Matt Roperf4510a22014-04-01 15:22:40 -07009742 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009743 return -EINVAL;
9744
9745 /*
9746 * TILEOFF/LINOFF registers can't be changed via MI display flips.
9747 * Note that pitch changes could also affect these register.
9748 */
9749 if (INTEL_INFO(dev)->gen > 3 &&
Matt Roperf4510a22014-04-01 15:22:40 -07009750 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
9751 fb->pitches[0] != crtc->primary->fb->pitches[0]))
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009752 return -EINVAL;
9753
Chris Wilsonf900db42014-02-20 09:26:13 +00009754 if (i915_terminally_wedged(&dev_priv->gpu_error))
9755 goto out_hang;
9756
Daniel Vetterb14c5672013-09-19 12:18:32 +02009757 work = kzalloc(sizeof(*work), GFP_KERNEL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009758 if (work == NULL)
9759 return -ENOMEM;
9760
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009761 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009762 work->crtc = crtc;
Matt Roper2ff8fde2014-07-08 07:50:07 -07009763 work->old_fb_obj = intel_fb_obj(old_fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009764 INIT_WORK(&work->work, intel_unpin_work_fn);
9765
Daniel Vetter87b6b102014-05-15 15:33:46 +02009766 ret = drm_crtc_vblank_get(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009767 if (ret)
9768 goto free_work;
9769
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009770 /* We borrow the event spin lock for protecting unpin_work */
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009771 spin_lock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009772 if (intel_crtc->unpin_work) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009773 /* Before declaring the flip queue wedged, check if
9774 * the hardware completed the operation behind our backs.
9775 */
9776 if (__intel_pageflip_stall_check(dev, crtc)) {
9777 DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n");
9778 page_flip_completed(intel_crtc);
9779 } else {
9780 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009781 spin_unlock_irq(&dev->event_lock);
Chris Wilson468f0b42010-05-27 13:18:13 +01009782
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009783 drm_crtc_vblank_put(crtc);
9784 kfree(work);
9785 return -EBUSY;
9786 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009787 }
9788 intel_crtc->unpin_work = work;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009789 spin_unlock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009790
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009791 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
9792 flush_workqueue(dev_priv->wq);
9793
Chris Wilson79158102012-05-23 11:13:58 +01009794 ret = i915_mutex_lock_interruptible(dev);
9795 if (ret)
9796 goto cleanup;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009797
Jesse Barnes75dfca82010-02-10 15:09:44 -08009798 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00009799 drm_gem_object_reference(&work->old_fb_obj->base);
9800 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009801
Matt Roperf4510a22014-04-01 15:22:40 -07009802 crtc->primary->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01009803
Matt Roper1ed1f962015-01-30 16:22:36 -08009804 /* Keep state structure in sync */
9805 if (crtc->primary->state->fb)
9806 drm_framebuffer_unreference(crtc->primary->state->fb);
9807 crtc->primary->state->fb = fb;
9808 if (crtc->primary->state->fb)
9809 drm_framebuffer_reference(crtc->primary->state->fb);
9810
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009811 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009812
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009813 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +02009814 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009815
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009816 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
Daniel Vettera071fa02014-06-18 23:28:09 +02009817 work->flip_count = I915_READ(PIPE_FLIPCOUNT_GM45(pipe)) + 1;
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009818
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009819 if (IS_VALLEYVIEW(dev)) {
9820 ring = &dev_priv->ring[BCS];
Chris Wilson8e09bf82014-07-08 10:40:30 +01009821 if (obj->tiling_mode != work->old_fb_obj->tiling_mode)
9822 /* vlv: DISPLAY_FLIP fails to change tiling */
9823 ring = NULL;
Chris Wilson48bf5b22014-12-27 09:48:28 +00009824 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Chris Wilson2a92d5b2014-07-08 10:40:29 +01009825 ring = &dev_priv->ring[BCS];
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009826 } else if (INTEL_INFO(dev)->gen >= 7) {
John Harrison41c52412014-11-24 18:49:43 +00009827 ring = i915_gem_request_get_ring(obj->last_read_req);
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009828 if (ring == NULL || ring->id != RCS)
9829 ring = &dev_priv->ring[BCS];
9830 } else {
9831 ring = &dev_priv->ring[RCS];
9832 }
9833
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00009834 ret = intel_pin_and_fence_fb_obj(crtc->primary, fb, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009835 if (ret)
9836 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009837
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009838 work->gtt_offset =
9839 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset;
9840
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009841 if (use_mmio_flip(ring, obj)) {
Sourab Gupta84c33a62014-06-02 16:47:17 +05309842 ret = intel_queue_mmio_flip(dev, crtc, fb, obj, ring,
9843 page_flip_flags);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009844 if (ret)
9845 goto cleanup_unpin;
9846
John Harrisonf06cc1b2014-11-24 18:49:37 +00009847 i915_gem_request_assign(&work->flip_queued_req,
9848 obj->last_write_req);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009849 } else {
Sourab Gupta84c33a62014-06-02 16:47:17 +05309850 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, ring,
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009851 page_flip_flags);
9852 if (ret)
9853 goto cleanup_unpin;
9854
John Harrisonf06cc1b2014-11-24 18:49:37 +00009855 i915_gem_request_assign(&work->flip_queued_req,
9856 intel_ring_get_request(ring));
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009857 }
9858
9859 work->flip_queued_vblank = drm_vblank_count(dev, intel_crtc->pipe);
9860 work->enable_stall_check = true;
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009861
Daniel Vettera071fa02014-06-18 23:28:09 +02009862 i915_gem_track_fb(work->old_fb_obj, obj,
9863 INTEL_FRONTBUFFER_PRIMARY(pipe));
9864
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02009865 intel_fbc_disable(dev);
Daniel Vetterf99d7062014-06-19 16:01:59 +02009866 intel_frontbuffer_flip_prepare(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009867 mutex_unlock(&dev->struct_mutex);
9868
Jesse Barnese5510fa2010-07-01 16:48:37 -07009869 trace_i915_flip_request(intel_crtc->plane, obj);
9870
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009871 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01009872
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009873cleanup_unpin:
9874 intel_unpin_fb_obj(obj);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009875cleanup_pending:
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009876 atomic_dec(&intel_crtc->unpin_work_count);
Matt Roperf4510a22014-04-01 15:22:40 -07009877 crtc->primary->fb = old_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00009878 drm_gem_object_unreference(&work->old_fb_obj->base);
9879 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01009880 mutex_unlock(&dev->struct_mutex);
9881
Chris Wilson79158102012-05-23 11:13:58 +01009882cleanup:
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009883 spin_lock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +01009884 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009885 spin_unlock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +01009886
Daniel Vetter87b6b102014-05-15 15:33:46 +02009887 drm_crtc_vblank_put(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009888free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01009889 kfree(work);
9890
Chris Wilsonf900db42014-02-20 09:26:13 +00009891 if (ret == -EIO) {
9892out_hang:
Matt Roper53a366b2014-12-23 10:41:53 -08009893 ret = intel_plane_restore(primary);
Chris Wilsonf0d3dad2014-09-07 16:51:12 +01009894 if (ret == 0 && event) {
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009895 spin_lock_irq(&dev->event_lock);
Daniel Vettera071fa02014-06-18 23:28:09 +02009896 drm_send_vblank_event(dev, pipe, event);
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009897 spin_unlock_irq(&dev->event_lock);
Chris Wilsonf0d3dad2014-09-07 16:51:12 +01009898 }
Chris Wilsonf900db42014-02-20 09:26:13 +00009899 }
Chris Wilson96b099f2010-06-07 14:03:04 +01009900 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009901}
9902
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009903static struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009904 .mode_set_base_atomic = intel_pipe_set_base_atomic,
9905 .load_lut = intel_crtc_load_lut,
Matt Roperea2c67b2014-12-23 10:41:52 -08009906 .atomic_begin = intel_begin_crtc_commit,
9907 .atomic_flush = intel_finish_crtc_commit,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009908};
9909
Daniel Vetter9a935852012-07-05 22:34:27 +02009910/**
9911 * intel_modeset_update_staged_output_state
9912 *
9913 * Updates the staged output configuration state, e.g. after we've read out the
9914 * current hw state.
9915 */
9916static void intel_modeset_update_staged_output_state(struct drm_device *dev)
9917{
Ville Syrjälä76688512014-01-10 11:28:06 +02009918 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009919 struct intel_encoder *encoder;
9920 struct intel_connector *connector;
9921
9922 list_for_each_entry(connector, &dev->mode_config.connector_list,
9923 base.head) {
9924 connector->new_encoder =
9925 to_intel_encoder(connector->base.encoder);
9926 }
9927
Damien Lespiaub2784e12014-08-05 11:29:37 +01009928 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +02009929 encoder->new_crtc =
9930 to_intel_crtc(encoder->base.crtc);
9931 }
Ville Syrjälä76688512014-01-10 11:28:06 +02009932
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009933 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009934 crtc->new_enabled = crtc->base.enabled;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +02009935
9936 if (crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009937 crtc->new_config = crtc->config;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +02009938 else
9939 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +02009940 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009941}
9942
9943/**
9944 * intel_modeset_commit_output_state
9945 *
9946 * This function copies the stage display pipe configuration to the real one.
9947 */
9948static void intel_modeset_commit_output_state(struct drm_device *dev)
9949{
Ville Syrjälä76688512014-01-10 11:28:06 +02009950 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009951 struct intel_encoder *encoder;
9952 struct intel_connector *connector;
9953
9954 list_for_each_entry(connector, &dev->mode_config.connector_list,
9955 base.head) {
9956 connector->base.encoder = &connector->new_encoder->base;
9957 }
9958
Damien Lespiaub2784e12014-08-05 11:29:37 +01009959 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +02009960 encoder->base.crtc = &encoder->new_crtc->base;
9961 }
Ville Syrjälä76688512014-01-10 11:28:06 +02009962
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009963 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009964 crtc->base.enabled = crtc->new_enabled;
9965 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009966}
9967
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009968static void
Robin Schroereba905b2014-05-18 02:24:50 +02009969connected_sink_compute_bpp(struct intel_connector *connector,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009970 struct intel_crtc_state *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009971{
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009972 int bpp = pipe_config->pipe_bpp;
9973
9974 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
9975 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03009976 connector->base.name);
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009977
9978 /* Don't use an invalid EDID bpc value */
9979 if (connector->base.display_info.bpc &&
9980 connector->base.display_info.bpc * 3 < bpp) {
9981 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
9982 bpp, connector->base.display_info.bpc*3);
9983 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
9984 }
9985
9986 /* Clamp bpp to 8 on screens without EDID 1.4 */
9987 if (connector->base.display_info.bpc == 0 && bpp > 24) {
9988 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
9989 bpp);
9990 pipe_config->pipe_bpp = 24;
9991 }
9992}
9993
9994static int
9995compute_baseline_pipe_bpp(struct intel_crtc *crtc,
9996 struct drm_framebuffer *fb,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009997 struct intel_crtc_state *pipe_config)
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009998{
9999 struct drm_device *dev = crtc->base.dev;
10000 struct intel_connector *connector;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010001 int bpp;
10002
Daniel Vetterd42264b2013-03-28 16:38:08 +010010003 switch (fb->pixel_format) {
10004 case DRM_FORMAT_C8:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010005 bpp = 8*3; /* since we go through a colormap */
10006 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +010010007 case DRM_FORMAT_XRGB1555:
10008 case DRM_FORMAT_ARGB1555:
10009 /* checked in intel_framebuffer_init already */
10010 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
10011 return -EINVAL;
10012 case DRM_FORMAT_RGB565:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010013 bpp = 6*3; /* min is 18bpp */
10014 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +010010015 case DRM_FORMAT_XBGR8888:
10016 case DRM_FORMAT_ABGR8888:
10017 /* checked in intel_framebuffer_init already */
10018 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
10019 return -EINVAL;
10020 case DRM_FORMAT_XRGB8888:
10021 case DRM_FORMAT_ARGB8888:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010022 bpp = 8*3;
10023 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +010010024 case DRM_FORMAT_XRGB2101010:
10025 case DRM_FORMAT_ARGB2101010:
10026 case DRM_FORMAT_XBGR2101010:
10027 case DRM_FORMAT_ABGR2101010:
10028 /* checked in intel_framebuffer_init already */
10029 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
Daniel Vetterbaba1332013-03-27 00:45:00 +010010030 return -EINVAL;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010031 bpp = 10*3;
10032 break;
Daniel Vetterbaba1332013-03-27 00:45:00 +010010033 /* TODO: gen4+ supports 16 bpc floating point, too. */
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010034 default:
10035 DRM_DEBUG_KMS("unsupported depth\n");
10036 return -EINVAL;
10037 }
10038
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010039 pipe_config->pipe_bpp = bpp;
10040
10041 /* Clamp display bpp to EDID value */
10042 list_for_each_entry(connector, &dev->mode_config.connector_list,
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010043 base.head) {
Daniel Vetter1b829e02013-06-02 13:26:24 +020010044 if (!connector->new_encoder ||
10045 connector->new_encoder->new_crtc != crtc)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010046 continue;
10047
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010048 connected_sink_compute_bpp(connector, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010049 }
10050
10051 return bpp;
10052}
10053
Daniel Vetter644db712013-09-19 14:53:58 +020010054static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
10055{
10056 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
10057 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +010010058 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +020010059 mode->crtc_hdisplay, mode->crtc_hsync_start,
10060 mode->crtc_hsync_end, mode->crtc_htotal,
10061 mode->crtc_vdisplay, mode->crtc_vsync_start,
10062 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
10063}
10064
Daniel Vetterc0b03412013-05-28 12:05:54 +020010065static void intel_dump_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010066 struct intel_crtc_state *pipe_config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020010067 const char *context)
10068{
10069 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
10070 context, pipe_name(crtc->pipe));
10071
10072 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
10073 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
10074 pipe_config->pipe_bpp, pipe_config->dither);
10075 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
10076 pipe_config->has_pch_encoder,
10077 pipe_config->fdi_lanes,
10078 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
10079 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
10080 pipe_config->fdi_m_n.tu);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010081 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
10082 pipe_config->has_dp_encoder,
10083 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
10084 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
10085 pipe_config->dp_m_n.tu);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010086
10087 DRM_DEBUG_KMS("dp: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n",
10088 pipe_config->has_dp_encoder,
10089 pipe_config->dp_m2_n2.gmch_m,
10090 pipe_config->dp_m2_n2.gmch_n,
10091 pipe_config->dp_m2_n2.link_m,
10092 pipe_config->dp_m2_n2.link_n,
10093 pipe_config->dp_m2_n2.tu);
10094
Daniel Vetter55072d12014-11-20 16:10:28 +010010095 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
10096 pipe_config->has_audio,
10097 pipe_config->has_infoframe);
10098
Daniel Vetterc0b03412013-05-28 12:05:54 +020010099 DRM_DEBUG_KMS("requested mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010100 drm_mode_debug_printmodeline(&pipe_config->base.mode);
Daniel Vetterc0b03412013-05-28 12:05:54 +020010101 DRM_DEBUG_KMS("adjusted mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010102 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
10103 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +030010104 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010105 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
10106 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Daniel Vetterc0b03412013-05-28 12:05:54 +020010107 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
10108 pipe_config->gmch_pfit.control,
10109 pipe_config->gmch_pfit.pgm_ratios,
10110 pipe_config->gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010111 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
Daniel Vetterc0b03412013-05-28 12:05:54 +020010112 pipe_config->pch_pfit.pos,
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010113 pipe_config->pch_pfit.size,
10114 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
Paulo Zanoni42db64e2013-05-31 16:33:22 -030010115 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Ville Syrjäläcf532bb2013-09-04 18:30:02 +030010116 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
Daniel Vetterc0b03412013-05-28 12:05:54 +020010117}
10118
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010119static bool encoders_cloneable(const struct intel_encoder *a,
10120 const struct intel_encoder *b)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010121{
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010122 /* masks could be asymmetric, so check both ways */
10123 return a == b || (a->cloneable & (1 << b->type) &&
10124 b->cloneable & (1 << a->type));
10125}
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010126
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010127static bool check_single_encoder_cloning(struct intel_crtc *crtc,
10128 struct intel_encoder *encoder)
10129{
10130 struct drm_device *dev = crtc->base.dev;
10131 struct intel_encoder *source_encoder;
10132
Damien Lespiaub2784e12014-08-05 11:29:37 +010010133 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010134 if (source_encoder->new_crtc != crtc)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010135 continue;
10136
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010137 if (!encoders_cloneable(encoder, source_encoder))
10138 return false;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010139 }
10140
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010141 return true;
10142}
10143
10144static bool check_encoder_cloning(struct intel_crtc *crtc)
10145{
10146 struct drm_device *dev = crtc->base.dev;
10147 struct intel_encoder *encoder;
10148
Damien Lespiaub2784e12014-08-05 11:29:37 +010010149 for_each_intel_encoder(dev, encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010150 if (encoder->new_crtc != crtc)
10151 continue;
10152
10153 if (!check_single_encoder_cloning(crtc, encoder))
10154 return false;
10155 }
10156
10157 return true;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010158}
10159
Ville Syrjälä00f0b372014-12-02 14:10:46 +020010160static bool check_digital_port_conflicts(struct drm_device *dev)
10161{
10162 struct intel_connector *connector;
10163 unsigned int used_ports = 0;
10164
10165 /*
10166 * Walk the connector list instead of the encoder
10167 * list to detect the problem on ddi platforms
10168 * where there's just one encoder per digital port.
10169 */
10170 list_for_each_entry(connector,
10171 &dev->mode_config.connector_list, base.head) {
10172 struct intel_encoder *encoder = connector->new_encoder;
10173
10174 if (!encoder)
10175 continue;
10176
10177 WARN_ON(!encoder->new_crtc);
10178
10179 switch (encoder->type) {
10180 unsigned int port_mask;
10181 case INTEL_OUTPUT_UNKNOWN:
10182 if (WARN_ON(!HAS_DDI(dev)))
10183 break;
10184 case INTEL_OUTPUT_DISPLAYPORT:
10185 case INTEL_OUTPUT_HDMI:
10186 case INTEL_OUTPUT_EDP:
10187 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
10188
10189 /* the same port mustn't appear more than once */
10190 if (used_ports & port_mask)
10191 return false;
10192
10193 used_ports |= port_mask;
10194 default:
10195 break;
10196 }
10197 }
10198
10199 return true;
10200}
10201
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010202static struct intel_crtc_state *
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010203intel_modeset_pipe_config(struct drm_crtc *crtc,
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010204 struct drm_framebuffer *fb,
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010205 struct drm_display_mode *mode)
Daniel Vetter7758a112012-07-08 19:40:39 +020010206{
10207 struct drm_device *dev = crtc->dev;
Daniel Vetter7758a112012-07-08 19:40:39 +020010208 struct intel_encoder *encoder;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010209 struct intel_crtc_state *pipe_config;
Daniel Vettere29c22c2013-02-21 00:00:16 +010010210 int plane_bpp, ret = -EINVAL;
10211 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +020010212
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010213 if (!check_encoder_cloning(to_intel_crtc(crtc))) {
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010214 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
10215 return ERR_PTR(-EINVAL);
10216 }
10217
Ville Syrjälä00f0b372014-12-02 14:10:46 +020010218 if (!check_digital_port_conflicts(dev)) {
10219 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
10220 return ERR_PTR(-EINVAL);
10221 }
10222
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010223 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
10224 if (!pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +020010225 return ERR_PTR(-ENOMEM);
10226
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010227 drm_mode_copy(&pipe_config->base.adjusted_mode, mode);
10228 drm_mode_copy(&pipe_config->base.mode, mode);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010229
Daniel Vettere143a212013-07-04 12:01:15 +020010230 pipe_config->cpu_transcoder =
10231 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010232 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010233
Imre Deak2960bc92013-07-30 13:36:32 +030010234 /*
10235 * Sanitize sync polarity flags based on requested ones. If neither
10236 * positive or negative polarity is requested, treat this as meaning
10237 * negative polarity.
10238 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010239 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030010240 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010241 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030010242
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010243 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030010244 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010245 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030010246
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010247 /* Compute a starting value for pipe_config->pipe_bpp taking the source
10248 * plane pixel format and any sink constraints into account. Returns the
10249 * source plane bpp so that dithering can be selected on mismatches
10250 * after encoders and crtc also have had their say. */
10251 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
10252 fb, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010253 if (plane_bpp < 0)
10254 goto fail;
10255
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030010256 /*
10257 * Determine the real pipe dimensions. Note that stereo modes can
10258 * increase the actual pipe size due to the frame doubling and
10259 * insertion of additional space for blanks between the frame. This
10260 * is stored in the crtc timings. We use the requested mode to do this
10261 * computation to clearly distinguish it from the adjusted mode, which
10262 * can be changed by the connectors in the below retry loop.
10263 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010264 drm_crtc_get_hv_timing(&pipe_config->base.mode,
Gustavo Padovanecb7e162014-12-01 15:40:09 -080010265 &pipe_config->pipe_src_w,
10266 &pipe_config->pipe_src_h);
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030010267
Daniel Vettere29c22c2013-02-21 00:00:16 +010010268encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +020010269 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +020010270 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +020010271 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +020010272
Daniel Vetter135c81b2013-07-21 21:37:09 +020010273 /* Fill in default crtc timings, allow encoders to overwrite them. */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010274 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
10275 CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +020010276
Daniel Vetter7758a112012-07-08 19:40:39 +020010277 /* Pass our mode to the connectors and the CRTC to give them a chance to
10278 * adjust it according to limitations or connector properties, and also
10279 * a chance to reject the mode entirely.
10280 */
Damien Lespiaub2784e12014-08-05 11:29:37 +010010281 for_each_intel_encoder(dev, encoder) {
Daniel Vetter7758a112012-07-08 19:40:39 +020010282
10283 if (&encoder->new_crtc->base != crtc)
10284 continue;
Daniel Vetter7ae89232013-03-27 00:44:52 +010010285
Daniel Vetterefea6e82013-07-21 21:36:59 +020010286 if (!(encoder->compute_config(encoder, pipe_config))) {
10287 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +020010288 goto fail;
10289 }
10290 }
10291
Daniel Vetterff9a6752013-06-01 17:16:21 +020010292 /* Set default port clock if not overwritten by the encoder. Needs to be
10293 * done afterwards in case the encoder adjusts the mode. */
10294 if (!pipe_config->port_clock)
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010295 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
Damien Lespiau241bfc32013-09-25 16:45:37 +010010296 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +020010297
Daniel Vettera43f6e02013-06-07 23:10:32 +020010298 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010010299 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +020010300 DRM_DEBUG_KMS("CRTC fixup failed\n");
10301 goto fail;
10302 }
Daniel Vettere29c22c2013-02-21 00:00:16 +010010303
10304 if (ret == RETRY) {
10305 if (WARN(!retry, "loop in pipe configuration computation\n")) {
10306 ret = -EINVAL;
10307 goto fail;
10308 }
10309
10310 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
10311 retry = false;
10312 goto encoder_retry;
10313 }
10314
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010315 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
10316 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
10317 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
10318
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010319 return pipe_config;
Daniel Vetter7758a112012-07-08 19:40:39 +020010320fail:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010321 kfree(pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010010322 return ERR_PTR(ret);
Daniel Vetter7758a112012-07-08 19:40:39 +020010323}
10324
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010325/* Computes which crtcs are affected and sets the relevant bits in the mask. For
10326 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
10327static void
10328intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
10329 unsigned *prepare_pipes, unsigned *disable_pipes)
10330{
10331 struct intel_crtc *intel_crtc;
10332 struct drm_device *dev = crtc->dev;
10333 struct intel_encoder *encoder;
10334 struct intel_connector *connector;
10335 struct drm_crtc *tmp_crtc;
10336
10337 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
10338
10339 /* Check which crtcs have changed outputs connected to them, these need
10340 * to be part of the prepare_pipes mask. We don't (yet) support global
10341 * modeset across multiple crtcs, so modeset_pipes will only have one
10342 * bit set at most. */
10343 list_for_each_entry(connector, &dev->mode_config.connector_list,
10344 base.head) {
10345 if (connector->base.encoder == &connector->new_encoder->base)
10346 continue;
10347
10348 if (connector->base.encoder) {
10349 tmp_crtc = connector->base.encoder->crtc;
10350
10351 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
10352 }
10353
10354 if (connector->new_encoder)
10355 *prepare_pipes |=
10356 1 << connector->new_encoder->new_crtc->pipe;
10357 }
10358
Damien Lespiaub2784e12014-08-05 11:29:37 +010010359 for_each_intel_encoder(dev, encoder) {
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010360 if (encoder->base.crtc == &encoder->new_crtc->base)
10361 continue;
10362
10363 if (encoder->base.crtc) {
10364 tmp_crtc = encoder->base.crtc;
10365
10366 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
10367 }
10368
10369 if (encoder->new_crtc)
10370 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
10371 }
10372
Ville Syrjälä76688512014-01-10 11:28:06 +020010373 /* Check for pipes that will be enabled/disabled ... */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010374 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010375 if (intel_crtc->base.enabled == intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010376 continue;
10377
Ville Syrjälä76688512014-01-10 11:28:06 +020010378 if (!intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010379 *disable_pipes |= 1 << intel_crtc->pipe;
Ville Syrjälä76688512014-01-10 11:28:06 +020010380 else
10381 *prepare_pipes |= 1 << intel_crtc->pipe;
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010382 }
10383
10384
10385 /* set_mode is also used to update properties on life display pipes. */
10386 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä76688512014-01-10 11:28:06 +020010387 if (intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010388 *prepare_pipes |= 1 << intel_crtc->pipe;
10389
Daniel Vetterb6c51642013-04-12 18:48:43 +020010390 /*
10391 * For simplicity do a full modeset on any pipe where the output routing
10392 * changed. We could be more clever, but that would require us to be
10393 * more careful with calling the relevant encoder->mode_set functions.
10394 */
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010395 if (*prepare_pipes)
10396 *modeset_pipes = *prepare_pipes;
10397
10398 /* ... and mask these out. */
10399 *modeset_pipes &= ~(*disable_pipes);
10400 *prepare_pipes &= ~(*disable_pipes);
Daniel Vetterb6c51642013-04-12 18:48:43 +020010401
10402 /*
10403 * HACK: We don't (yet) fully support global modesets. intel_set_config
10404 * obies this rule, but the modeset restore mode of
10405 * intel_modeset_setup_hw_state does not.
10406 */
10407 *modeset_pipes &= 1 << intel_crtc->pipe;
10408 *prepare_pipes &= 1 << intel_crtc->pipe;
Daniel Vettere3641d32013-04-11 19:49:07 +020010409
10410 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
10411 *modeset_pipes, *prepare_pipes, *disable_pipes);
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010412}
10413
Daniel Vetterea9d7582012-07-10 10:42:52 +020010414static bool intel_crtc_in_use(struct drm_crtc *crtc)
10415{
10416 struct drm_encoder *encoder;
10417 struct drm_device *dev = crtc->dev;
10418
10419 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
10420 if (encoder->crtc == crtc)
10421 return true;
10422
10423 return false;
10424}
10425
10426static void
10427intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
10428{
Daniel Vetterba41c0de2014-11-03 15:04:55 +010010429 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterea9d7582012-07-10 10:42:52 +020010430 struct intel_encoder *intel_encoder;
10431 struct intel_crtc *intel_crtc;
10432 struct drm_connector *connector;
10433
Daniel Vetterba41c0de2014-11-03 15:04:55 +010010434 intel_shared_dpll_commit(dev_priv);
10435
Damien Lespiaub2784e12014-08-05 11:29:37 +010010436 for_each_intel_encoder(dev, intel_encoder) {
Daniel Vetterea9d7582012-07-10 10:42:52 +020010437 if (!intel_encoder->base.crtc)
10438 continue;
10439
10440 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
10441
10442 if (prepare_pipes & (1 << intel_crtc->pipe))
10443 intel_encoder->connectors_active = false;
10444 }
10445
10446 intel_modeset_commit_output_state(dev);
10447
Ville Syrjälä76688512014-01-10 11:28:06 +020010448 /* Double check state. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010449 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010450 WARN_ON(intel_crtc->base.enabled != intel_crtc_in_use(&intel_crtc->base));
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010451 WARN_ON(intel_crtc->new_config &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010452 intel_crtc->new_config != intel_crtc->config);
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010453 WARN_ON(intel_crtc->base.enabled != !!intel_crtc->new_config);
Daniel Vetterea9d7582012-07-10 10:42:52 +020010454 }
10455
10456 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
10457 if (!connector->encoder || !connector->encoder->crtc)
10458 continue;
10459
10460 intel_crtc = to_intel_crtc(connector->encoder->crtc);
10461
10462 if (prepare_pipes & (1 << intel_crtc->pipe)) {
Daniel Vetter68d34722012-09-06 22:08:35 +020010463 struct drm_property *dpms_property =
10464 dev->mode_config.dpms_property;
10465
Daniel Vetterea9d7582012-07-10 10:42:52 +020010466 connector->dpms = DRM_MODE_DPMS_ON;
Rob Clark662595d2012-10-11 20:36:04 -050010467 drm_object_property_set_value(&connector->base,
Daniel Vetter68d34722012-09-06 22:08:35 +020010468 dpms_property,
10469 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +020010470
10471 intel_encoder = to_intel_encoder(connector->encoder);
10472 intel_encoder->connectors_active = true;
10473 }
10474 }
10475
10476}
10477
Ville Syrjälä3bd26262013-09-06 23:29:02 +030010478static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010479{
Ville Syrjälä3bd26262013-09-06 23:29:02 +030010480 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010481
10482 if (clock1 == clock2)
10483 return true;
10484
10485 if (!clock1 || !clock2)
10486 return false;
10487
10488 diff = abs(clock1 - clock2);
10489
10490 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
10491 return true;
10492
10493 return false;
10494}
10495
Daniel Vetter25c5b262012-07-08 22:08:04 +020010496#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
10497 list_for_each_entry((intel_crtc), \
10498 &(dev)->mode_config.crtc_list, \
10499 base.head) \
Daniel Vetter0973f182013-04-19 11:25:33 +020010500 if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +020010501
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010502static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020010503intel_pipe_config_compare(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010504 struct intel_crtc_state *current_config,
10505 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010506{
Daniel Vetter66e985c2013-06-05 13:34:20 +020010507#define PIPE_CONF_CHECK_X(name) \
10508 if (current_config->name != pipe_config->name) { \
10509 DRM_ERROR("mismatch in " #name " " \
10510 "(expected 0x%08x, found 0x%08x)\n", \
10511 current_config->name, \
10512 pipe_config->name); \
10513 return false; \
10514 }
10515
Daniel Vetter08a24032013-04-19 11:25:34 +020010516#define PIPE_CONF_CHECK_I(name) \
10517 if (current_config->name != pipe_config->name) { \
10518 DRM_ERROR("mismatch in " #name " " \
10519 "(expected %i, found %i)\n", \
10520 current_config->name, \
10521 pipe_config->name); \
10522 return false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +010010523 }
10524
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010525/* This is required for BDW+ where there is only one set of registers for
10526 * switching between high and low RR.
10527 * This macro can be used whenever a comparison has to be made between one
10528 * hw state and multiple sw state variables.
10529 */
10530#define PIPE_CONF_CHECK_I_ALT(name, alt_name) \
10531 if ((current_config->name != pipe_config->name) && \
10532 (current_config->alt_name != pipe_config->name)) { \
10533 DRM_ERROR("mismatch in " #name " " \
10534 "(expected %i or %i, found %i)\n", \
10535 current_config->name, \
10536 current_config->alt_name, \
10537 pipe_config->name); \
10538 return false; \
10539 }
10540
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010541#define PIPE_CONF_CHECK_FLAGS(name, mask) \
10542 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Jesse Barnes6f024882013-07-01 10:19:09 -070010543 DRM_ERROR("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010544 "(expected %i, found %i)\n", \
10545 current_config->name & (mask), \
10546 pipe_config->name & (mask)); \
10547 return false; \
10548 }
10549
Ville Syrjälä5e550652013-09-06 23:29:07 +030010550#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
10551 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
10552 DRM_ERROR("mismatch in " #name " " \
10553 "(expected %i, found %i)\n", \
10554 current_config->name, \
10555 pipe_config->name); \
10556 return false; \
10557 }
10558
Daniel Vetterbb760062013-06-06 14:55:52 +020010559#define PIPE_CONF_QUIRK(quirk) \
10560 ((current_config->quirks | pipe_config->quirks) & (quirk))
10561
Daniel Vettereccb1402013-05-22 00:50:22 +020010562 PIPE_CONF_CHECK_I(cpu_transcoder);
10563
Daniel Vetter08a24032013-04-19 11:25:34 +020010564 PIPE_CONF_CHECK_I(has_pch_encoder);
10565 PIPE_CONF_CHECK_I(fdi_lanes);
Daniel Vetter72419202013-04-04 13:28:53 +020010566 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
10567 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
10568 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
10569 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
10570 PIPE_CONF_CHECK_I(fdi_m_n.tu);
Daniel Vetter08a24032013-04-19 11:25:34 +020010571
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010572 PIPE_CONF_CHECK_I(has_dp_encoder);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010573
10574 if (INTEL_INFO(dev)->gen < 8) {
10575 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
10576 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
10577 PIPE_CONF_CHECK_I(dp_m_n.link_m);
10578 PIPE_CONF_CHECK_I(dp_m_n.link_n);
10579 PIPE_CONF_CHECK_I(dp_m_n.tu);
10580
10581 if (current_config->has_drrs) {
10582 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_m);
10583 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_n);
10584 PIPE_CONF_CHECK_I(dp_m2_n2.link_m);
10585 PIPE_CONF_CHECK_I(dp_m2_n2.link_n);
10586 PIPE_CONF_CHECK_I(dp_m2_n2.tu);
10587 }
10588 } else {
10589 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_m, dp_m2_n2.gmch_m);
10590 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_n, dp_m2_n2.gmch_n);
10591 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_m, dp_m2_n2.link_m);
10592 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_n, dp_m2_n2.link_n);
10593 PIPE_CONF_CHECK_I_ALT(dp_m_n.tu, dp_m2_n2.tu);
10594 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010595
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010596 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
10597 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
10598 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
10599 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
10600 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
10601 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010602
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010603 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
10604 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
10605 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
10606 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
10607 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
10608 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010609
Daniel Vetterc93f54c2013-06-27 19:47:19 +020010610 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6897b4b52014-04-24 23:54:47 +020010611 PIPE_CONF_CHECK_I(has_hdmi_sink);
Daniel Vetterb5a9fa02014-04-24 23:54:49 +020010612 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
10613 IS_VALLEYVIEW(dev))
10614 PIPE_CONF_CHECK_I(limited_color_range);
Jesse Barnese43823e2014-11-05 14:26:08 -080010615 PIPE_CONF_CHECK_I(has_infoframe);
Daniel Vetter6c49f242013-06-06 12:45:25 +020010616
Daniel Vetter9ed109a2014-04-24 23:54:52 +020010617 PIPE_CONF_CHECK_I(has_audio);
10618
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010619 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010620 DRM_MODE_FLAG_INTERLACE);
10621
Daniel Vetterbb760062013-06-06 14:55:52 +020010622 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010623 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010624 DRM_MODE_FLAG_PHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010625 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010626 DRM_MODE_FLAG_NHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010627 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010628 DRM_MODE_FLAG_PVSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010629 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010630 DRM_MODE_FLAG_NVSYNC);
10631 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010632
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010633 PIPE_CONF_CHECK_I(pipe_src_w);
10634 PIPE_CONF_CHECK_I(pipe_src_h);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010635
Daniel Vetter99535992014-04-13 12:00:33 +020010636 /*
10637 * FIXME: BIOS likes to set up a cloned config with lvds+external
10638 * screen. Since we don't yet re-compute the pipe config when moving
10639 * just the lvds port away to another pipe the sw tracking won't match.
10640 *
10641 * Proper atomic modesets with recomputed global state will fix this.
10642 * Until then just don't check gmch state for inherited modes.
10643 */
10644 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE)) {
10645 PIPE_CONF_CHECK_I(gmch_pfit.control);
10646 /* pfit ratios are autocomputed by the hw on gen4+ */
10647 if (INTEL_INFO(dev)->gen < 4)
10648 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
10649 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
10650 }
10651
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010652 PIPE_CONF_CHECK_I(pch_pfit.enabled);
10653 if (current_config->pch_pfit.enabled) {
10654 PIPE_CONF_CHECK_I(pch_pfit.pos);
10655 PIPE_CONF_CHECK_I(pch_pfit.size);
10656 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020010657
Jesse Barnese59150d2014-01-07 13:30:45 -080010658 /* BDW+ don't expose a synchronous way to read the state */
10659 if (IS_HASWELL(dev))
10660 PIPE_CONF_CHECK_I(ips_enabled);
Paulo Zanoni42db64e2013-05-31 16:33:22 -030010661
Ville Syrjälä282740f2013-09-04 18:30:03 +030010662 PIPE_CONF_CHECK_I(double_wide);
10663
Daniel Vetter26804af2014-06-25 22:01:55 +030010664 PIPE_CONF_CHECK_X(ddi_pll_sel);
10665
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010666 PIPE_CONF_CHECK_I(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010667 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +020010668 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010669 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
10670 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterd452c5b2014-07-04 11:27:39 -030010671 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
Damien Lespiau3f4cd192014-11-13 14:55:21 +000010672 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
10673 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
10674 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010675
Ville Syrjälä42571ae2013-09-06 23:29:00 +030010676 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
10677 PIPE_CONF_CHECK_I(pipe_bpp);
10678
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010679 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
Jesse Barnesa9a7e982014-01-20 14:18:04 -080010680 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
Ville Syrjälä5e550652013-09-06 23:29:07 +030010681
Daniel Vetter66e985c2013-06-05 13:34:20 +020010682#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +020010683#undef PIPE_CONF_CHECK_I
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010684#undef PIPE_CONF_CHECK_I_ALT
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010685#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +030010686#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +020010687#undef PIPE_CONF_QUIRK
Daniel Vetter627eb5a2013-04-29 19:33:42 +020010688
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010689 return true;
10690}
10691
Damien Lespiau08db6652014-11-04 17:06:52 +000010692static void check_wm_state(struct drm_device *dev)
10693{
10694 struct drm_i915_private *dev_priv = dev->dev_private;
10695 struct skl_ddb_allocation hw_ddb, *sw_ddb;
10696 struct intel_crtc *intel_crtc;
10697 int plane;
10698
10699 if (INTEL_INFO(dev)->gen < 9)
10700 return;
10701
10702 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
10703 sw_ddb = &dev_priv->wm.skl_hw.ddb;
10704
10705 for_each_intel_crtc(dev, intel_crtc) {
10706 struct skl_ddb_entry *hw_entry, *sw_entry;
10707 const enum pipe pipe = intel_crtc->pipe;
10708
10709 if (!intel_crtc->active)
10710 continue;
10711
10712 /* planes */
10713 for_each_plane(pipe, plane) {
10714 hw_entry = &hw_ddb.plane[pipe][plane];
10715 sw_entry = &sw_ddb->plane[pipe][plane];
10716
10717 if (skl_ddb_entry_equal(hw_entry, sw_entry))
10718 continue;
10719
10720 DRM_ERROR("mismatch in DDB state pipe %c plane %d "
10721 "(expected (%u,%u), found (%u,%u))\n",
10722 pipe_name(pipe), plane + 1,
10723 sw_entry->start, sw_entry->end,
10724 hw_entry->start, hw_entry->end);
10725 }
10726
10727 /* cursor */
10728 hw_entry = &hw_ddb.cursor[pipe];
10729 sw_entry = &sw_ddb->cursor[pipe];
10730
10731 if (skl_ddb_entry_equal(hw_entry, sw_entry))
10732 continue;
10733
10734 DRM_ERROR("mismatch in DDB state pipe %c cursor "
10735 "(expected (%u,%u), found (%u,%u))\n",
10736 pipe_name(pipe),
10737 sw_entry->start, sw_entry->end,
10738 hw_entry->start, hw_entry->end);
10739 }
10740}
10741
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010742static void
10743check_connector_state(struct drm_device *dev)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010744{
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010745 struct intel_connector *connector;
10746
10747 list_for_each_entry(connector, &dev->mode_config.connector_list,
10748 base.head) {
10749 /* This also checks the encoder/connector hw state with the
10750 * ->get_hw_state callbacks. */
10751 intel_connector_check_state(connector);
10752
Rob Clarke2c719b2014-12-15 13:56:32 -050010753 I915_STATE_WARN(&connector->new_encoder->base != connector->base.encoder,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010754 "connector's staged encoder doesn't match current encoder\n");
10755 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010756}
10757
10758static void
10759check_encoder_state(struct drm_device *dev)
10760{
10761 struct intel_encoder *encoder;
10762 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010763
Damien Lespiaub2784e12014-08-05 11:29:37 +010010764 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010765 bool enabled = false;
10766 bool active = false;
10767 enum pipe pipe, tracked_pipe;
10768
10769 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
10770 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030010771 encoder->base.name);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010772
Rob Clarke2c719b2014-12-15 13:56:32 -050010773 I915_STATE_WARN(&encoder->new_crtc->base != encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010774 "encoder's stage crtc doesn't match current crtc\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050010775 I915_STATE_WARN(encoder->connectors_active && !encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010776 "encoder's active_connectors set, but no crtc\n");
10777
10778 list_for_each_entry(connector, &dev->mode_config.connector_list,
10779 base.head) {
10780 if (connector->base.encoder != &encoder->base)
10781 continue;
10782 enabled = true;
10783 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
10784 active = true;
10785 }
Dave Airlie0e32b392014-05-02 14:02:48 +100010786 /*
10787 * for MST connectors if we unplug the connector is gone
10788 * away but the encoder is still connected to a crtc
10789 * until a modeset happens in response to the hotplug.
10790 */
10791 if (!enabled && encoder->base.encoder_type == DRM_MODE_ENCODER_DPMST)
10792 continue;
10793
Rob Clarke2c719b2014-12-15 13:56:32 -050010794 I915_STATE_WARN(!!encoder->base.crtc != enabled,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010795 "encoder's enabled state mismatch "
10796 "(expected %i, found %i)\n",
10797 !!encoder->base.crtc, enabled);
Rob Clarke2c719b2014-12-15 13:56:32 -050010798 I915_STATE_WARN(active && !encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010799 "active encoder with no crtc\n");
10800
Rob Clarke2c719b2014-12-15 13:56:32 -050010801 I915_STATE_WARN(encoder->connectors_active != active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010802 "encoder's computed active state doesn't match tracked active state "
10803 "(expected %i, found %i)\n", active, encoder->connectors_active);
10804
10805 active = encoder->get_hw_state(encoder, &pipe);
Rob Clarke2c719b2014-12-15 13:56:32 -050010806 I915_STATE_WARN(active != encoder->connectors_active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010807 "encoder's hw state doesn't match sw tracking "
10808 "(expected %i, found %i)\n",
10809 encoder->connectors_active, active);
10810
10811 if (!encoder->base.crtc)
10812 continue;
10813
10814 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
Rob Clarke2c719b2014-12-15 13:56:32 -050010815 I915_STATE_WARN(active && pipe != tracked_pipe,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010816 "active encoder's pipe doesn't match"
10817 "(expected %i, found %i)\n",
10818 tracked_pipe, pipe);
10819
10820 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010821}
10822
10823static void
10824check_crtc_state(struct drm_device *dev)
10825{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010826 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010827 struct intel_crtc *crtc;
10828 struct intel_encoder *encoder;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010829 struct intel_crtc_state pipe_config;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010830
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010831 for_each_intel_crtc(dev, crtc) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010832 bool enabled = false;
10833 bool active = false;
10834
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010835 memset(&pipe_config, 0, sizeof(pipe_config));
10836
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010837 DRM_DEBUG_KMS("[CRTC:%d]\n",
10838 crtc->base.base.id);
10839
Rob Clarke2c719b2014-12-15 13:56:32 -050010840 I915_STATE_WARN(crtc->active && !crtc->base.enabled,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010841 "active crtc, but not enabled in sw tracking\n");
10842
Damien Lespiaub2784e12014-08-05 11:29:37 +010010843 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010844 if (encoder->base.crtc != &crtc->base)
10845 continue;
10846 enabled = true;
10847 if (encoder->connectors_active)
10848 active = true;
10849 }
Daniel Vetter6c49f242013-06-06 12:45:25 +020010850
Rob Clarke2c719b2014-12-15 13:56:32 -050010851 I915_STATE_WARN(active != crtc->active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010852 "crtc's computed active state doesn't match tracked active state "
10853 "(expected %i, found %i)\n", active, crtc->active);
Rob Clarke2c719b2014-12-15 13:56:32 -050010854 I915_STATE_WARN(enabled != crtc->base.enabled,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010855 "crtc's computed enabled state doesn't match tracked enabled state "
10856 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
10857
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010858 active = dev_priv->display.get_pipe_config(crtc,
10859 &pipe_config);
Daniel Vetterd62cf622013-05-29 10:41:29 +020010860
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030010861 /* hw state is inconsistent with the pipe quirk */
10862 if ((crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
10863 (crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Daniel Vetterd62cf622013-05-29 10:41:29 +020010864 active = crtc->active;
10865
Damien Lespiaub2784e12014-08-05 11:29:37 +010010866 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä3eaba512013-08-05 17:57:48 +030010867 enum pipe pipe;
Daniel Vetter6c49f242013-06-06 12:45:25 +020010868 if (encoder->base.crtc != &crtc->base)
10869 continue;
Daniel Vetter1d37b682013-11-18 09:00:59 +010010870 if (encoder->get_hw_state(encoder, &pipe))
Daniel Vetter6c49f242013-06-06 12:45:25 +020010871 encoder->get_config(encoder, &pipe_config);
10872 }
10873
Rob Clarke2c719b2014-12-15 13:56:32 -050010874 I915_STATE_WARN(crtc->active != active,
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010875 "crtc active state doesn't match with hw state "
10876 "(expected %i, found %i)\n", crtc->active, active);
10877
Daniel Vetterc0b03412013-05-28 12:05:54 +020010878 if (active &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010879 !intel_pipe_config_compare(dev, crtc->config, &pipe_config)) {
Rob Clarke2c719b2014-12-15 13:56:32 -050010880 I915_STATE_WARN(1, "pipe state doesn't match!\n");
Daniel Vetterc0b03412013-05-28 12:05:54 +020010881 intel_dump_pipe_config(crtc, &pipe_config,
10882 "[hw state]");
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010883 intel_dump_pipe_config(crtc, crtc->config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020010884 "[sw state]");
10885 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010886 }
10887}
10888
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010889static void
10890check_shared_dpll_state(struct drm_device *dev)
10891{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010892 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010893 struct intel_crtc *crtc;
10894 struct intel_dpll_hw_state dpll_hw_state;
10895 int i;
Daniel Vetter53589012013-06-05 13:34:16 +020010896
10897 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
10898 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
10899 int enabled_crtcs = 0, active_crtcs = 0;
10900 bool active;
10901
10902 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
10903
10904 DRM_DEBUG_KMS("%s\n", pll->name);
10905
10906 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
10907
Rob Clarke2c719b2014-12-15 13:56:32 -050010908 I915_STATE_WARN(pll->active > hweight32(pll->config.crtc_mask),
Daniel Vetter53589012013-06-05 13:34:16 +020010909 "more active pll users than references: %i vs %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020010910 pll->active, hweight32(pll->config.crtc_mask));
Rob Clarke2c719b2014-12-15 13:56:32 -050010911 I915_STATE_WARN(pll->active && !pll->on,
Daniel Vetter53589012013-06-05 13:34:16 +020010912 "pll in active use but not on in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050010913 I915_STATE_WARN(pll->on && !pll->active,
Daniel Vetter35c95372013-07-17 06:55:04 +020010914 "pll in on but not on in use in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050010915 I915_STATE_WARN(pll->on != active,
Daniel Vetter53589012013-06-05 13:34:16 +020010916 "pll on state mismatch (expected %i, found %i)\n",
10917 pll->on, active);
10918
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010919 for_each_intel_crtc(dev, crtc) {
Daniel Vetter53589012013-06-05 13:34:16 +020010920 if (crtc->base.enabled && intel_crtc_to_shared_dpll(crtc) == pll)
10921 enabled_crtcs++;
10922 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
10923 active_crtcs++;
10924 }
Rob Clarke2c719b2014-12-15 13:56:32 -050010925 I915_STATE_WARN(pll->active != active_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020010926 "pll active crtcs mismatch (expected %i, found %i)\n",
10927 pll->active, active_crtcs);
Rob Clarke2c719b2014-12-15 13:56:32 -050010928 I915_STATE_WARN(hweight32(pll->config.crtc_mask) != enabled_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020010929 "pll enabled crtcs mismatch (expected %i, found %i)\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020010930 hweight32(pll->config.crtc_mask), enabled_crtcs);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010931
Rob Clarke2c719b2014-12-15 13:56:32 -050010932 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state, &dpll_hw_state,
Daniel Vetter66e985c2013-06-05 13:34:20 +020010933 sizeof(dpll_hw_state)),
10934 "pll hw state mismatch\n");
Daniel Vetter53589012013-06-05 13:34:16 +020010935 }
Daniel Vettera6778b32012-07-02 09:56:42 +020010936}
10937
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010938void
10939intel_modeset_check_state(struct drm_device *dev)
10940{
Damien Lespiau08db6652014-11-04 17:06:52 +000010941 check_wm_state(dev);
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010942 check_connector_state(dev);
10943 check_encoder_state(dev);
10944 check_crtc_state(dev);
10945 check_shared_dpll_state(dev);
10946}
10947
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010948void ironlake_check_encoder_dotclock(const struct intel_crtc_state *pipe_config,
Ville Syrjälä18442d02013-09-13 16:00:08 +030010949 int dotclock)
10950{
10951 /*
10952 * FDI already provided one idea for the dotclock.
10953 * Yell if the encoder disagrees.
10954 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010955 WARN(!intel_fuzzy_clock_check(pipe_config->base.adjusted_mode.crtc_clock, dotclock),
Ville Syrjälä18442d02013-09-13 16:00:08 +030010956 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010957 pipe_config->base.adjusted_mode.crtc_clock, dotclock);
Ville Syrjälä18442d02013-09-13 16:00:08 +030010958}
10959
Ville Syrjälä80715b22014-05-15 20:23:23 +030010960static void update_scanline_offset(struct intel_crtc *crtc)
10961{
10962 struct drm_device *dev = crtc->base.dev;
10963
10964 /*
10965 * The scanline counter increments at the leading edge of hsync.
10966 *
10967 * On most platforms it starts counting from vtotal-1 on the
10968 * first active line. That means the scanline counter value is
10969 * always one less than what we would expect. Ie. just after
10970 * start of vblank, which also occurs at start of hsync (on the
10971 * last active line), the scanline counter will read vblank_start-1.
10972 *
10973 * On gen2 the scanline counter starts counting from 1 instead
10974 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
10975 * to keep the value positive), instead of adding one.
10976 *
10977 * On HSW+ the behaviour of the scanline counter depends on the output
10978 * type. For DP ports it behaves like most other platforms, but on HDMI
10979 * there's an extra 1 line difference. So we need to add two instead of
10980 * one to the value.
10981 */
10982 if (IS_GEN2(dev)) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010983 const struct drm_display_mode *mode = &crtc->config->base.adjusted_mode;
Ville Syrjälä80715b22014-05-15 20:23:23 +030010984 int vtotal;
10985
10986 vtotal = mode->crtc_vtotal;
10987 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
10988 vtotal /= 2;
10989
10990 crtc->scanline_offset = vtotal - 1;
10991 } else if (HAS_DDI(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +030010992 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) {
Ville Syrjälä80715b22014-05-15 20:23:23 +030010993 crtc->scanline_offset = 2;
10994 } else
10995 crtc->scanline_offset = 1;
10996}
10997
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010998static struct intel_crtc_state *
Jesse Barnes7f27126e2014-11-05 14:26:06 -080010999intel_modeset_compute_config(struct drm_crtc *crtc,
11000 struct drm_display_mode *mode,
11001 struct drm_framebuffer *fb,
11002 unsigned *modeset_pipes,
11003 unsigned *prepare_pipes,
11004 unsigned *disable_pipes)
11005{
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011006 struct intel_crtc_state *pipe_config = NULL;
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011007
11008 intel_modeset_affected_pipes(crtc, modeset_pipes,
11009 prepare_pipes, disable_pipes);
11010
11011 if ((*modeset_pipes) == 0)
11012 goto out;
11013
11014 /*
11015 * Note this needs changes when we start tracking multiple modes
11016 * and crtcs. At that point we'll need to compute the whole config
11017 * (i.e. one pipe_config for each crtc) rather than just the one
11018 * for this crtc.
11019 */
11020 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
11021 if (IS_ERR(pipe_config)) {
11022 goto out;
11023 }
11024 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
11025 "[modeset]");
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011026
11027out:
11028 return pipe_config;
11029}
11030
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020011031static int __intel_set_mode_setup_plls(struct drm_device *dev,
11032 unsigned modeset_pipes,
11033 unsigned disable_pipes)
11034{
11035 struct drm_i915_private *dev_priv = to_i915(dev);
11036 unsigned clear_pipes = modeset_pipes | disable_pipes;
11037 struct intel_crtc *intel_crtc;
11038 int ret = 0;
11039
11040 if (!dev_priv->display.crtc_compute_clock)
11041 return 0;
11042
11043 ret = intel_shared_dpll_start_config(dev_priv, clear_pipes);
11044 if (ret)
11045 goto done;
11046
11047 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
11048 struct intel_crtc_state *state = intel_crtc->new_config;
11049 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
11050 state);
11051 if (ret) {
11052 intel_shared_dpll_abort_config(dev_priv);
11053 goto done;
11054 }
11055 }
11056
11057done:
11058 return ret;
11059}
11060
Daniel Vetterf30da182013-04-11 20:22:50 +020011061static int __intel_set_mode(struct drm_crtc *crtc,
11062 struct drm_display_mode *mode,
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011063 int x, int y, struct drm_framebuffer *fb,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011064 struct intel_crtc_state *pipe_config,
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011065 unsigned modeset_pipes,
11066 unsigned prepare_pipes,
11067 unsigned disable_pipes)
Daniel Vettera6778b32012-07-02 09:56:42 +020011068{
11069 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +030011070 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030011071 struct drm_display_mode *saved_mode;
Daniel Vetter25c5b262012-07-08 22:08:04 +020011072 struct intel_crtc *intel_crtc;
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011073 int ret = 0;
Daniel Vettera6778b32012-07-02 09:56:42 +020011074
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030011075 saved_mode = kmalloc(sizeof(*saved_mode), GFP_KERNEL);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011076 if (!saved_mode)
11077 return -ENOMEM;
Daniel Vettera6778b32012-07-02 09:56:42 +020011078
Tim Gardner3ac18232012-12-07 07:54:26 -070011079 *saved_mode = crtc->mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020011080
Ville Syrjäläb9950a12014-11-21 21:00:36 +020011081 if (modeset_pipes)
11082 to_intel_crtc(crtc)->new_config = pipe_config;
11083
Jesse Barnes30a970c2013-11-04 13:48:12 -080011084 /*
11085 * See if the config requires any additional preparation, e.g.
11086 * to adjust global state with pipes off. We need to do this
11087 * here so we can get the modeset_pipe updated config for the new
11088 * mode set on this crtc. For other crtcs we need to use the
11089 * adjusted_mode bits in the crtc directly.
11090 */
Ville Syrjäläc164f832013-11-05 22:34:12 +020011091 if (IS_VALLEYVIEW(dev)) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +020011092 valleyview_modeset_global_pipes(dev, &prepare_pipes);
Jesse Barnes30a970c2013-11-04 13:48:12 -080011093
Ville Syrjäläc164f832013-11-05 22:34:12 +020011094 /* may have added more to prepare_pipes than we should */
11095 prepare_pipes &= ~disable_pipes;
11096 }
11097
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020011098 ret = __intel_set_mode_setup_plls(dev, modeset_pipes, disable_pipes);
11099 if (ret)
11100 goto done;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +020011101
Daniel Vetter460da9162013-03-27 00:44:51 +010011102 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
11103 intel_crtc_disable(&intel_crtc->base);
11104
Daniel Vetterea9d7582012-07-10 10:42:52 +020011105 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
11106 if (intel_crtc->base.enabled)
11107 dev_priv->display.crtc_disable(&intel_crtc->base);
11108 }
Daniel Vettera6778b32012-07-02 09:56:42 +020011109
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020011110 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
11111 * to set it here already despite that we pass it down the callchain.
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011112 *
11113 * Note we'll need to fix this up when we start tracking multiple
11114 * pipes; here we assume a single modeset_pipe and only track the
11115 * single crtc and mode.
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020011116 */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011117 if (modeset_pipes) {
Daniel Vetter25c5b262012-07-08 22:08:04 +020011118 crtc->mode = *mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011119 /* mode_set/enable/disable functions rely on a correct pipe
11120 * config. */
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020011121 intel_crtc_set_state(to_intel_crtc(crtc), pipe_config);
Ville Syrjäläc326c0a2013-10-28 12:53:41 +020011122
11123 /*
11124 * Calculate and store various constants which
11125 * are later needed by vblank and swap-completion
11126 * timestamping. They are derived from true hwmode.
11127 */
11128 drm_calc_timestamping_constants(crtc,
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011129 &pipe_config->base.adjusted_mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011130 }
Daniel Vetter7758a112012-07-08 19:40:39 +020011131
Daniel Vetterea9d7582012-07-10 10:42:52 +020011132 /* Only after disabling all output pipelines that will be changed can we
11133 * update the the output configuration. */
11134 intel_modeset_update_state(dev, prepare_pipes);
11135
Ville Syrjälä50f6e502014-11-06 14:49:12 +020011136 modeset_update_crtc_power_domains(dev);
Daniel Vetter47fab732012-10-26 10:58:18 +020011137
Daniel Vettera6778b32012-07-02 09:56:42 +020011138 /* Set up the DPLL and any encoders state that needs to adjust or depend
11139 * on the DPLL.
11140 */
Daniel Vetter25c5b262012-07-08 22:08:04 +020011141 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
Gustavo Padovan455a6802014-12-01 15:40:11 -080011142 struct drm_plane *primary = intel_crtc->base.primary;
11143 int vdisplay, hdisplay;
Daniel Vetter4c107942014-04-24 23:55:05 +020011144
Gustavo Padovan455a6802014-12-01 15:40:11 -080011145 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
11146 ret = primary->funcs->update_plane(primary, &intel_crtc->base,
11147 fb, 0, 0,
11148 hdisplay, vdisplay,
11149 x << 16, y << 16,
11150 hdisplay << 16, vdisplay << 16);
Daniel Vettera6778b32012-07-02 09:56:42 +020011151 }
11152
11153 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Ville Syrjälä80715b22014-05-15 20:23:23 +030011154 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
11155 update_scanline_offset(intel_crtc);
11156
Daniel Vetter25c5b262012-07-08 22:08:04 +020011157 dev_priv->display.crtc_enable(&intel_crtc->base);
Ville Syrjälä80715b22014-05-15 20:23:23 +030011158 }
Daniel Vettera6778b32012-07-02 09:56:42 +020011159
Daniel Vettera6778b32012-07-02 09:56:42 +020011160 /* FIXME: add subpixel order */
11161done:
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030011162 if (ret && crtc->enabled)
Tim Gardner3ac18232012-12-07 07:54:26 -070011163 crtc->mode = *saved_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020011164
Tim Gardner3ac18232012-12-07 07:54:26 -070011165 kfree(saved_mode);
Daniel Vettera6778b32012-07-02 09:56:42 +020011166 return ret;
11167}
11168
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011169static int intel_set_mode_pipes(struct drm_crtc *crtc,
11170 struct drm_display_mode *mode,
11171 int x, int y, struct drm_framebuffer *fb,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011172 struct intel_crtc_state *pipe_config,
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011173 unsigned modeset_pipes,
11174 unsigned prepare_pipes,
11175 unsigned disable_pipes)
11176{
11177 int ret;
11178
11179 ret = __intel_set_mode(crtc, mode, x, y, fb, pipe_config, modeset_pipes,
11180 prepare_pipes, disable_pipes);
11181
11182 if (ret == 0)
11183 intel_modeset_check_state(crtc->dev);
11184
11185 return ret;
11186}
11187
Damien Lespiaue7457a92013-08-08 22:28:59 +010011188static int intel_set_mode(struct drm_crtc *crtc,
11189 struct drm_display_mode *mode,
11190 int x, int y, struct drm_framebuffer *fb)
Daniel Vetterf30da182013-04-11 20:22:50 +020011191{
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011192 struct intel_crtc_state *pipe_config;
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011193 unsigned modeset_pipes, prepare_pipes, disable_pipes;
Daniel Vetterf30da182013-04-11 20:22:50 +020011194
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011195 pipe_config = intel_modeset_compute_config(crtc, mode, fb,
11196 &modeset_pipes,
11197 &prepare_pipes,
11198 &disable_pipes);
Daniel Vetterf30da182013-04-11 20:22:50 +020011199
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011200 if (IS_ERR(pipe_config))
11201 return PTR_ERR(pipe_config);
Daniel Vetterf30da182013-04-11 20:22:50 +020011202
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011203 return intel_set_mode_pipes(crtc, mode, x, y, fb, pipe_config,
11204 modeset_pipes, prepare_pipes,
11205 disable_pipes);
Daniel Vetterf30da182013-04-11 20:22:50 +020011206}
11207
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011208void intel_crtc_restore_mode(struct drm_crtc *crtc)
11209{
Matt Roperf4510a22014-04-01 15:22:40 -070011210 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->primary->fb);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011211}
11212
Daniel Vetter25c5b262012-07-08 22:08:04 +020011213#undef for_each_intel_crtc_masked
11214
Daniel Vetterd9e55602012-07-04 22:16:09 +020011215static void intel_set_config_free(struct intel_set_config *config)
11216{
11217 if (!config)
11218 return;
11219
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011220 kfree(config->save_connector_encoders);
11221 kfree(config->save_encoder_crtcs);
Ville Syrjälä76688512014-01-10 11:28:06 +020011222 kfree(config->save_crtc_enabled);
Daniel Vetterd9e55602012-07-04 22:16:09 +020011223 kfree(config);
11224}
11225
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011226static int intel_set_config_save_state(struct drm_device *dev,
11227 struct intel_set_config *config)
11228{
Ville Syrjälä76688512014-01-10 11:28:06 +020011229 struct drm_crtc *crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011230 struct drm_encoder *encoder;
11231 struct drm_connector *connector;
11232 int count;
11233
Ville Syrjälä76688512014-01-10 11:28:06 +020011234 config->save_crtc_enabled =
11235 kcalloc(dev->mode_config.num_crtc,
11236 sizeof(bool), GFP_KERNEL);
11237 if (!config->save_crtc_enabled)
11238 return -ENOMEM;
11239
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011240 config->save_encoder_crtcs =
11241 kcalloc(dev->mode_config.num_encoder,
11242 sizeof(struct drm_crtc *), GFP_KERNEL);
11243 if (!config->save_encoder_crtcs)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011244 return -ENOMEM;
11245
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011246 config->save_connector_encoders =
11247 kcalloc(dev->mode_config.num_connector,
11248 sizeof(struct drm_encoder *), GFP_KERNEL);
11249 if (!config->save_connector_encoders)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011250 return -ENOMEM;
11251
11252 /* Copy data. Note that driver private data is not affected.
11253 * Should anything bad happen only the expected state is
11254 * restored, not the drivers personal bookkeeping.
11255 */
11256 count = 0;
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010011257 for_each_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011258 config->save_crtc_enabled[count++] = crtc->enabled;
11259 }
11260
11261 count = 0;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011262 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011263 config->save_encoder_crtcs[count++] = encoder->crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011264 }
11265
11266 count = 0;
11267 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011268 config->save_connector_encoders[count++] = connector->encoder;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011269 }
11270
11271 return 0;
11272}
11273
11274static void intel_set_config_restore_state(struct drm_device *dev,
11275 struct intel_set_config *config)
11276{
Ville Syrjälä76688512014-01-10 11:28:06 +020011277 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020011278 struct intel_encoder *encoder;
11279 struct intel_connector *connector;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011280 int count;
11281
11282 count = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011283 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011284 crtc->new_enabled = config->save_crtc_enabled[count++];
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011285
11286 if (crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011287 crtc->new_config = crtc->config;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011288 else
11289 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020011290 }
11291
11292 count = 0;
Damien Lespiaub2784e12014-08-05 11:29:37 +010011293 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011294 encoder->new_crtc =
11295 to_intel_crtc(config->save_encoder_crtcs[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011296 }
11297
11298 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020011299 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
11300 connector->new_encoder =
11301 to_intel_encoder(config->save_connector_encoders[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011302 }
11303}
11304
Imre Deake3de42b2013-05-03 19:44:07 +020011305static bool
Chris Wilson2e57f472013-07-17 12:14:40 +010011306is_crtc_connector_off(struct drm_mode_set *set)
Imre Deake3de42b2013-05-03 19:44:07 +020011307{
11308 int i;
11309
Chris Wilson2e57f472013-07-17 12:14:40 +010011310 if (set->num_connectors == 0)
11311 return false;
11312
11313 if (WARN_ON(set->connectors == NULL))
11314 return false;
11315
11316 for (i = 0; i < set->num_connectors; i++)
11317 if (set->connectors[i]->encoder &&
11318 set->connectors[i]->encoder->crtc == set->crtc &&
11319 set->connectors[i]->dpms != DRM_MODE_DPMS_ON)
Imre Deake3de42b2013-05-03 19:44:07 +020011320 return true;
11321
11322 return false;
11323}
11324
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011325static void
11326intel_set_config_compute_mode_changes(struct drm_mode_set *set,
11327 struct intel_set_config *config)
11328{
11329
11330 /* We should be able to check here if the fb has the same properties
11331 * and then just flip_or_move it */
Chris Wilson2e57f472013-07-17 12:14:40 +010011332 if (is_crtc_connector_off(set)) {
11333 config->mode_changed = true;
Matt Roperf4510a22014-04-01 15:22:40 -070011334 } else if (set->crtc->primary->fb != set->fb) {
Matt Roper3b150f02014-05-29 08:06:53 -070011335 /*
11336 * If we have no fb, we can only flip as long as the crtc is
11337 * active, otherwise we need a full mode set. The crtc may
11338 * be active if we've only disabled the primary plane, or
11339 * in fastboot situations.
11340 */
Matt Roperf4510a22014-04-01 15:22:40 -070011341 if (set->crtc->primary->fb == NULL) {
Jesse Barnes319d9822013-06-26 01:38:19 +030011342 struct intel_crtc *intel_crtc =
11343 to_intel_crtc(set->crtc);
11344
Matt Roper3b150f02014-05-29 08:06:53 -070011345 if (intel_crtc->active) {
Jesse Barnes319d9822013-06-26 01:38:19 +030011346 DRM_DEBUG_KMS("crtc has no fb, will flip\n");
11347 config->fb_changed = true;
11348 } else {
11349 DRM_DEBUG_KMS("inactive crtc, full mode set\n");
11350 config->mode_changed = true;
11351 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011352 } else if (set->fb == NULL) {
11353 config->mode_changed = true;
Daniel Vetter72f49012013-03-28 16:01:35 +010011354 } else if (set->fb->pixel_format !=
Matt Roperf4510a22014-04-01 15:22:40 -070011355 set->crtc->primary->fb->pixel_format) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011356 config->mode_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020011357 } else {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011358 config->fb_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020011359 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011360 }
11361
Daniel Vetter835c5872012-07-10 18:11:08 +020011362 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011363 config->fb_changed = true;
11364
11365 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
11366 DRM_DEBUG_KMS("modes are different, full mode set\n");
11367 drm_mode_debug_printmodeline(&set->crtc->mode);
11368 drm_mode_debug_printmodeline(set->mode);
11369 config->mode_changed = true;
11370 }
Chris Wilsona1d95702013-08-13 18:48:47 +010011371
11372 DRM_DEBUG_KMS("computed changes for [CRTC:%d], mode_changed=%d, fb_changed=%d\n",
11373 set->crtc->base.id, config->mode_changed, config->fb_changed);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011374}
11375
Daniel Vetter2e431052012-07-04 22:42:15 +020011376static int
Daniel Vetter9a935852012-07-05 22:34:27 +020011377intel_modeset_stage_output_state(struct drm_device *dev,
11378 struct drm_mode_set *set,
11379 struct intel_set_config *config)
Daniel Vetter50f56112012-07-02 09:35:43 +020011380{
Daniel Vetter9a935852012-07-05 22:34:27 +020011381 struct intel_connector *connector;
11382 struct intel_encoder *encoder;
Ville Syrjälä76688512014-01-10 11:28:06 +020011383 struct intel_crtc *crtc;
Paulo Zanonif3f08572013-08-12 14:56:53 -030011384 int ro;
Daniel Vetter50f56112012-07-02 09:35:43 +020011385
Damien Lespiau9abdda72013-02-13 13:29:23 +000011386 /* The upper layers ensure that we either disable a crtc or have a list
Daniel Vetter9a935852012-07-05 22:34:27 +020011387 * of connectors. For paranoia, double-check this. */
11388 WARN_ON(!set->fb && (set->num_connectors != 0));
11389 WARN_ON(set->fb && (set->num_connectors == 0));
11390
Daniel Vetter9a935852012-07-05 22:34:27 +020011391 list_for_each_entry(connector, &dev->mode_config.connector_list,
11392 base.head) {
11393 /* Otherwise traverse passed in connector list and get encoders
11394 * for them. */
Daniel Vetter50f56112012-07-02 09:35:43 +020011395 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011396 if (set->connectors[ro] == &connector->base) {
Dave Airlie0e32b392014-05-02 14:02:48 +100011397 connector->new_encoder = intel_find_encoder(connector, to_intel_crtc(set->crtc)->pipe);
Daniel Vetter50f56112012-07-02 09:35:43 +020011398 break;
11399 }
11400 }
11401
Daniel Vetter9a935852012-07-05 22:34:27 +020011402 /* If we disable the crtc, disable all its connectors. Also, if
11403 * the connector is on the changing crtc but not on the new
11404 * connector list, disable it. */
11405 if ((!set->fb || ro == set->num_connectors) &&
11406 connector->base.encoder &&
11407 connector->base.encoder->crtc == set->crtc) {
11408 connector->new_encoder = NULL;
11409
11410 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
11411 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030011412 connector->base.name);
Daniel Vetter9a935852012-07-05 22:34:27 +020011413 }
11414
11415
11416 if (&connector->new_encoder->base != connector->base.encoder) {
Daniel Vetter50f56112012-07-02 09:35:43 +020011417 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011418 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020011419 }
Daniel Vetter9a935852012-07-05 22:34:27 +020011420 }
11421 /* connector->new_encoder is now updated for all connectors. */
11422
11423 /* Update crtc of enabled connectors. */
Daniel Vetter9a935852012-07-05 22:34:27 +020011424 list_for_each_entry(connector, &dev->mode_config.connector_list,
11425 base.head) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011426 struct drm_crtc *new_crtc;
11427
Daniel Vetter9a935852012-07-05 22:34:27 +020011428 if (!connector->new_encoder)
Daniel Vetter50f56112012-07-02 09:35:43 +020011429 continue;
11430
Daniel Vetter9a935852012-07-05 22:34:27 +020011431 new_crtc = connector->new_encoder->base.crtc;
Daniel Vetter50f56112012-07-02 09:35:43 +020011432
11433 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011434 if (set->connectors[ro] == &connector->base)
Daniel Vetter50f56112012-07-02 09:35:43 +020011435 new_crtc = set->crtc;
11436 }
11437
11438 /* Make sure the new CRTC will work with the encoder */
Thierry Reding14509912014-01-13 12:00:22 +010011439 if (!drm_encoder_crtc_ok(&connector->new_encoder->base,
11440 new_crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011441 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +020011442 }
Dave Airlie0e32b392014-05-02 14:02:48 +100011443 connector->new_encoder->new_crtc = to_intel_crtc(new_crtc);
Daniel Vetter9a935852012-07-05 22:34:27 +020011444
11445 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
11446 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030011447 connector->base.name,
Daniel Vetter9a935852012-07-05 22:34:27 +020011448 new_crtc->base.id);
11449 }
11450
11451 /* Check for any encoders that needs to be disabled. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010011452 for_each_intel_encoder(dev, encoder) {
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011453 int num_connectors = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020011454 list_for_each_entry(connector,
11455 &dev->mode_config.connector_list,
11456 base.head) {
11457 if (connector->new_encoder == encoder) {
11458 WARN_ON(!connector->new_encoder->new_crtc);
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011459 num_connectors++;
Daniel Vetter9a935852012-07-05 22:34:27 +020011460 }
11461 }
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011462
11463 if (num_connectors == 0)
11464 encoder->new_crtc = NULL;
11465 else if (num_connectors > 1)
11466 return -EINVAL;
11467
Daniel Vetter9a935852012-07-05 22:34:27 +020011468 /* Only now check for crtc changes so we don't miss encoders
11469 * that will be disabled. */
11470 if (&encoder->new_crtc->base != encoder->base.crtc) {
Daniel Vetter50f56112012-07-02 09:35:43 +020011471 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011472 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020011473 }
11474 }
Daniel Vetter9a935852012-07-05 22:34:27 +020011475 /* Now we've also updated encoder->new_crtc for all encoders. */
Dave Airlie0e32b392014-05-02 14:02:48 +100011476 list_for_each_entry(connector, &dev->mode_config.connector_list,
11477 base.head) {
11478 if (connector->new_encoder)
11479 if (connector->new_encoder != connector->encoder)
11480 connector->encoder = connector->new_encoder;
11481 }
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011482 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011483 crtc->new_enabled = false;
11484
Damien Lespiaub2784e12014-08-05 11:29:37 +010011485 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011486 if (encoder->new_crtc == crtc) {
11487 crtc->new_enabled = true;
11488 break;
11489 }
11490 }
11491
11492 if (crtc->new_enabled != crtc->base.enabled) {
11493 DRM_DEBUG_KMS("crtc %sabled, full mode switch\n",
11494 crtc->new_enabled ? "en" : "dis");
11495 config->mode_changed = true;
11496 }
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011497
11498 if (crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011499 crtc->new_config = crtc->config;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011500 else
11501 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020011502 }
11503
Daniel Vetter2e431052012-07-04 22:42:15 +020011504 return 0;
11505}
11506
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011507static void disable_crtc_nofb(struct intel_crtc *crtc)
11508{
11509 struct drm_device *dev = crtc->base.dev;
11510 struct intel_encoder *encoder;
11511 struct intel_connector *connector;
11512
11513 DRM_DEBUG_KMS("Trying to restore without FB -> disabling pipe %c\n",
11514 pipe_name(crtc->pipe));
11515
11516 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
11517 if (connector->new_encoder &&
11518 connector->new_encoder->new_crtc == crtc)
11519 connector->new_encoder = NULL;
11520 }
11521
Damien Lespiaub2784e12014-08-05 11:29:37 +010011522 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011523 if (encoder->new_crtc == crtc)
11524 encoder->new_crtc = NULL;
11525 }
11526
11527 crtc->new_enabled = false;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011528 crtc->new_config = NULL;
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011529}
11530
Daniel Vetter2e431052012-07-04 22:42:15 +020011531static int intel_crtc_set_config(struct drm_mode_set *set)
11532{
11533 struct drm_device *dev;
Daniel Vetter2e431052012-07-04 22:42:15 +020011534 struct drm_mode_set save_set;
11535 struct intel_set_config *config;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011536 struct intel_crtc_state *pipe_config;
Jesse Barnes50f52752014-11-07 13:11:00 -080011537 unsigned modeset_pipes, prepare_pipes, disable_pipes;
Daniel Vetter2e431052012-07-04 22:42:15 +020011538 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +020011539
Daniel Vetter8d3e3752012-07-05 16:09:09 +020011540 BUG_ON(!set);
11541 BUG_ON(!set->crtc);
11542 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +020011543
Daniel Vetter7e53f3a2013-01-21 10:52:17 +010011544 /* Enforce sane interface api - has been abused by the fb helper. */
11545 BUG_ON(!set->mode && set->fb);
11546 BUG_ON(set->fb && set->num_connectors == 0);
Daniel Vetter431e50f2012-07-10 17:53:42 +020011547
Daniel Vetter2e431052012-07-04 22:42:15 +020011548 if (set->fb) {
11549 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
11550 set->crtc->base.id, set->fb->base.id,
11551 (int)set->num_connectors, set->x, set->y);
11552 } else {
11553 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +020011554 }
11555
11556 dev = set->crtc->dev;
11557
11558 ret = -ENOMEM;
11559 config = kzalloc(sizeof(*config), GFP_KERNEL);
11560 if (!config)
11561 goto out_config;
11562
11563 ret = intel_set_config_save_state(dev, config);
11564 if (ret)
11565 goto out_config;
11566
11567 save_set.crtc = set->crtc;
11568 save_set.mode = &set->crtc->mode;
11569 save_set.x = set->crtc->x;
11570 save_set.y = set->crtc->y;
Matt Roperf4510a22014-04-01 15:22:40 -070011571 save_set.fb = set->crtc->primary->fb;
Daniel Vetter2e431052012-07-04 22:42:15 +020011572
11573 /* Compute whether we need a full modeset, only an fb base update or no
11574 * change at all. In the future we might also check whether only the
11575 * mode changed, e.g. for LVDS where we only change the panel fitter in
11576 * such cases. */
11577 intel_set_config_compute_mode_changes(set, config);
11578
Daniel Vetter9a935852012-07-05 22:34:27 +020011579 ret = intel_modeset_stage_output_state(dev, set, config);
Daniel Vetter2e431052012-07-04 22:42:15 +020011580 if (ret)
11581 goto fail;
11582
Jesse Barnes50f52752014-11-07 13:11:00 -080011583 pipe_config = intel_modeset_compute_config(set->crtc, set->mode,
11584 set->fb,
11585 &modeset_pipes,
11586 &prepare_pipes,
11587 &disable_pipes);
Jesse Barnes20664592014-11-05 14:26:09 -080011588 if (IS_ERR(pipe_config)) {
Matt Roper6ac04832014-11-17 09:59:28 -080011589 ret = PTR_ERR(pipe_config);
Jesse Barnes50f52752014-11-07 13:11:00 -080011590 goto fail;
Jesse Barnes20664592014-11-05 14:26:09 -080011591 } else if (pipe_config) {
Ville Syrjäläb9950a12014-11-21 21:00:36 +020011592 if (pipe_config->has_audio !=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011593 to_intel_crtc(set->crtc)->config->has_audio)
Jesse Barnes20664592014-11-05 14:26:09 -080011594 config->mode_changed = true;
11595
Jesse Barnesaf15d2c2014-12-01 09:54:28 -080011596 /*
11597 * Note we have an issue here with infoframes: current code
11598 * only updates them on the full mode set path per hw
11599 * requirements. So here we should be checking for any
11600 * required changes and forcing a mode set.
11601 */
Jesse Barnes20664592014-11-05 14:26:09 -080011602 }
Jesse Barnes50f52752014-11-07 13:11:00 -080011603
11604 /* set_mode will free it in the mode_changed case */
11605 if (!config->mode_changed)
11606 kfree(pipe_config);
11607
Jesse Barnes1f9954d2014-11-05 14:26:10 -080011608 intel_update_pipe_size(to_intel_crtc(set->crtc));
11609
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011610 if (config->mode_changed) {
Jesse Barnes50f52752014-11-07 13:11:00 -080011611 ret = intel_set_mode_pipes(set->crtc, set->mode,
11612 set->x, set->y, set->fb, pipe_config,
11613 modeset_pipes, prepare_pipes,
11614 disable_pipes);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011615 } else if (config->fb_changed) {
Matt Roper3b150f02014-05-29 08:06:53 -070011616 struct intel_crtc *intel_crtc = to_intel_crtc(set->crtc);
Gustavo Padovan455a6802014-12-01 15:40:11 -080011617 struct drm_plane *primary = set->crtc->primary;
11618 int vdisplay, hdisplay;
Matt Roper3b150f02014-05-29 08:06:53 -070011619
Gustavo Padovan455a6802014-12-01 15:40:11 -080011620 drm_crtc_get_hv_timing(set->mode, &hdisplay, &vdisplay);
11621 ret = primary->funcs->update_plane(primary, set->crtc, set->fb,
11622 0, 0, hdisplay, vdisplay,
11623 set->x << 16, set->y << 16,
11624 hdisplay << 16, vdisplay << 16);
Matt Roper3b150f02014-05-29 08:06:53 -070011625
11626 /*
11627 * We need to make sure the primary plane is re-enabled if it
11628 * has previously been turned off.
11629 */
11630 if (!intel_crtc->primary_enabled && ret == 0) {
11631 WARN_ON(!intel_crtc->active);
Ville Syrjäläfdd508a62014-08-08 21:51:11 +030011632 intel_enable_primary_hw_plane(set->crtc->primary, set->crtc);
Matt Roper3b150f02014-05-29 08:06:53 -070011633 }
11634
Jesse Barnes7ca51a32014-01-07 13:50:49 -080011635 /*
11636 * In the fastboot case this may be our only check of the
11637 * state after boot. It would be better to only do it on
11638 * the first update, but we don't have a nice way of doing that
11639 * (and really, set_config isn't used much for high freq page
11640 * flipping, so increasing its cost here shouldn't be a big
11641 * deal).
11642 */
Jani Nikulad330a952014-01-21 11:24:25 +020011643 if (i915.fastboot && ret == 0)
Jesse Barnes7ca51a32014-01-07 13:50:49 -080011644 intel_modeset_check_state(set->crtc->dev);
Daniel Vetter50f56112012-07-02 09:35:43 +020011645 }
11646
Chris Wilson2d05eae2013-05-03 17:36:25 +010011647 if (ret) {
Daniel Vetterbf67dfe2013-06-25 11:06:52 +020011648 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
11649 set->crtc->base.id, ret);
Daniel Vetter50f56112012-07-02 09:35:43 +020011650fail:
Chris Wilson2d05eae2013-05-03 17:36:25 +010011651 intel_set_config_restore_state(dev, config);
Daniel Vetter50f56112012-07-02 09:35:43 +020011652
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011653 /*
11654 * HACK: if the pipe was on, but we didn't have a framebuffer,
11655 * force the pipe off to avoid oopsing in the modeset code
11656 * due to fb==NULL. This should only happen during boot since
11657 * we don't yet reconstruct the FB from the hardware state.
11658 */
11659 if (to_intel_crtc(save_set.crtc)->new_enabled && !save_set.fb)
11660 disable_crtc_nofb(to_intel_crtc(save_set.crtc));
11661
Chris Wilson2d05eae2013-05-03 17:36:25 +010011662 /* Try to restore the config */
11663 if (config->mode_changed &&
11664 intel_set_mode(save_set.crtc, save_set.mode,
11665 save_set.x, save_set.y, save_set.fb))
11666 DRM_ERROR("failed to restore config after modeset failure\n");
11667 }
Daniel Vetter50f56112012-07-02 09:35:43 +020011668
Daniel Vetterd9e55602012-07-04 22:16:09 +020011669out_config:
11670 intel_set_config_free(config);
Daniel Vetter50f56112012-07-02 09:35:43 +020011671 return ret;
11672}
11673
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011674static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011675 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +020011676 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011677 .destroy = intel_crtc_destroy,
11678 .page_flip = intel_crtc_page_flip,
Matt Roper13568372015-01-21 16:35:47 -080011679 .atomic_duplicate_state = intel_crtc_duplicate_state,
11680 .atomic_destroy_state = intel_crtc_destroy_state,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011681};
11682
Daniel Vetter53589012013-06-05 13:34:16 +020011683static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
11684 struct intel_shared_dpll *pll,
11685 struct intel_dpll_hw_state *hw_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011686{
Daniel Vetter53589012013-06-05 13:34:16 +020011687 uint32_t val;
11688
Daniel Vetterf458ebb2014-09-30 10:56:39 +020011689 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_PLLS))
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030011690 return false;
11691
Daniel Vetter53589012013-06-05 13:34:16 +020011692 val = I915_READ(PCH_DPLL(pll->id));
Daniel Vetter66e985c2013-06-05 13:34:20 +020011693 hw_state->dpll = val;
11694 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
11695 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
Daniel Vetter53589012013-06-05 13:34:16 +020011696
11697 return val & DPLL_VCO_ENABLE;
11698}
11699
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011700static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
11701 struct intel_shared_dpll *pll)
11702{
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011703 I915_WRITE(PCH_FP0(pll->id), pll->config.hw_state.fp0);
11704 I915_WRITE(PCH_FP1(pll->id), pll->config.hw_state.fp1);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011705}
11706
Daniel Vettere7b903d2013-06-05 13:34:14 +020011707static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
11708 struct intel_shared_dpll *pll)
11709{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011710 /* PCH refclock must be enabled first */
Paulo Zanoni89eff4b2014-01-08 11:12:28 -020011711 ibx_assert_pch_refclk_enabled(dev_priv);
Daniel Vettere7b903d2013-06-05 13:34:14 +020011712
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011713 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011714
11715 /* Wait for the clocks to stabilize. */
11716 POSTING_READ(PCH_DPLL(pll->id));
11717 udelay(150);
11718
11719 /* The pixel multiplier can only be updated once the
11720 * DPLL is enabled and the clocks are stable.
11721 *
11722 * So write it again.
11723 */
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011724 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011725 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020011726 udelay(200);
11727}
11728
11729static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
11730 struct intel_shared_dpll *pll)
11731{
11732 struct drm_device *dev = dev_priv->dev;
11733 struct intel_crtc *crtc;
Daniel Vettere7b903d2013-06-05 13:34:14 +020011734
11735 /* Make sure no transcoder isn't still depending on us. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011736 for_each_intel_crtc(dev, crtc) {
Daniel Vettere7b903d2013-06-05 13:34:14 +020011737 if (intel_crtc_to_shared_dpll(crtc) == pll)
11738 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
11739 }
11740
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011741 I915_WRITE(PCH_DPLL(pll->id), 0);
11742 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020011743 udelay(200);
11744}
11745
Daniel Vetter46edb022013-06-05 13:34:12 +020011746static char *ibx_pch_dpll_names[] = {
11747 "PCH DPLL A",
11748 "PCH DPLL B",
11749};
11750
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011751static void ibx_pch_dpll_init(struct drm_device *dev)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011752{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011753 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011754 int i;
11755
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011756 dev_priv->num_shared_dpll = 2;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011757
Daniel Vettere72f9fb2013-06-05 13:34:06 +020011758 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
Daniel Vetter46edb022013-06-05 13:34:12 +020011759 dev_priv->shared_dplls[i].id = i;
11760 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011761 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
Daniel Vettere7b903d2013-06-05 13:34:14 +020011762 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
11763 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
Daniel Vetter53589012013-06-05 13:34:16 +020011764 dev_priv->shared_dplls[i].get_hw_state =
11765 ibx_pch_dpll_get_hw_state;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011766 }
11767}
11768
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011769static void intel_shared_dpll_init(struct drm_device *dev)
11770{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011771 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011772
Daniel Vetter9cd86932014-06-25 22:01:57 +030011773 if (HAS_DDI(dev))
11774 intel_ddi_pll_init(dev);
11775 else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011776 ibx_pch_dpll_init(dev);
11777 else
11778 dev_priv->num_shared_dpll = 0;
11779
11780 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011781}
11782
Matt Roper6beb8c232014-12-01 15:40:14 -080011783/**
11784 * intel_prepare_plane_fb - Prepare fb for usage on plane
11785 * @plane: drm plane to prepare for
11786 * @fb: framebuffer to prepare for presentation
11787 *
11788 * Prepares a framebuffer for usage on a display plane. Generally this
11789 * involves pinning the underlying object and updating the frontbuffer tracking
11790 * bits. Some older platforms need special physical address handling for
11791 * cursor planes.
11792 *
11793 * Returns 0 on success, negative error code on failure.
11794 */
11795int
11796intel_prepare_plane_fb(struct drm_plane *plane,
11797 struct drm_framebuffer *fb)
Matt Roper465c1202014-05-29 08:06:54 -070011798{
11799 struct drm_device *dev = plane->dev;
Matt Roper6beb8c232014-12-01 15:40:14 -080011800 struct intel_plane *intel_plane = to_intel_plane(plane);
11801 enum pipe pipe = intel_plane->pipe;
11802 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
11803 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->fb);
11804 unsigned frontbuffer_bits = 0;
11805 int ret = 0;
Matt Roper465c1202014-05-29 08:06:54 -070011806
Matt Roperea2c67b2014-12-23 10:41:52 -080011807 if (!obj)
Matt Roper465c1202014-05-29 08:06:54 -070011808 return 0;
11809
Matt Roper6beb8c232014-12-01 15:40:14 -080011810 switch (plane->type) {
11811 case DRM_PLANE_TYPE_PRIMARY:
11812 frontbuffer_bits = INTEL_FRONTBUFFER_PRIMARY(pipe);
11813 break;
11814 case DRM_PLANE_TYPE_CURSOR:
11815 frontbuffer_bits = INTEL_FRONTBUFFER_CURSOR(pipe);
11816 break;
11817 case DRM_PLANE_TYPE_OVERLAY:
11818 frontbuffer_bits = INTEL_FRONTBUFFER_SPRITE(pipe);
11819 break;
11820 }
Matt Roper465c1202014-05-29 08:06:54 -070011821
Matt Roper4c345742014-07-09 16:22:10 -070011822 mutex_lock(&dev->struct_mutex);
Matt Roper465c1202014-05-29 08:06:54 -070011823
Matt Roper6beb8c232014-12-01 15:40:14 -080011824 if (plane->type == DRM_PLANE_TYPE_CURSOR &&
11825 INTEL_INFO(dev)->cursor_needs_physical) {
11826 int align = IS_I830(dev) ? 16 * 1024 : 256;
11827 ret = i915_gem_object_attach_phys(obj, align);
11828 if (ret)
11829 DRM_DEBUG_KMS("failed to attach phys object\n");
11830 } else {
11831 ret = intel_pin_and_fence_fb_obj(plane, fb, NULL);
11832 }
11833
11834 if (ret == 0)
11835 i915_gem_track_fb(old_obj, obj, frontbuffer_bits);
11836
11837 mutex_unlock(&dev->struct_mutex);
11838
11839 return ret;
11840}
11841
Matt Roper38f3ce32014-12-02 07:45:25 -080011842/**
11843 * intel_cleanup_plane_fb - Cleans up an fb after plane use
11844 * @plane: drm plane to clean up for
11845 * @fb: old framebuffer that was on plane
11846 *
11847 * Cleans up a framebuffer that has just been removed from a plane.
11848 */
11849void
11850intel_cleanup_plane_fb(struct drm_plane *plane,
11851 struct drm_framebuffer *fb)
11852{
11853 struct drm_device *dev = plane->dev;
11854 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
11855
11856 if (WARN_ON(!obj))
11857 return;
11858
11859 if (plane->type != DRM_PLANE_TYPE_CURSOR ||
11860 !INTEL_INFO(dev)->cursor_needs_physical) {
11861 mutex_lock(&dev->struct_mutex);
11862 intel_unpin_fb_obj(obj);
11863 mutex_unlock(&dev->struct_mutex);
11864 }
Matt Roper465c1202014-05-29 08:06:54 -070011865}
11866
11867static int
Gustavo Padovan3c692a42014-09-05 17:04:49 -030011868intel_check_primary_plane(struct drm_plane *plane,
11869 struct intel_plane_state *state)
Matt Roper465c1202014-05-29 08:06:54 -070011870{
Matt Roper32b7eee2014-12-24 07:59:06 -080011871 struct drm_device *dev = plane->dev;
11872 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roper2b875c22014-12-01 15:40:13 -080011873 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080011874 struct intel_crtc *intel_crtc;
Matt Roper2b875c22014-12-01 15:40:13 -080011875 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030011876 struct drm_rect *dest = &state->dst;
11877 struct drm_rect *src = &state->src;
11878 const struct drm_rect *clip = &state->clip;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011879 int ret;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030011880
Matt Roperea2c67b2014-12-23 10:41:52 -080011881 crtc = crtc ? crtc : plane->crtc;
11882 intel_crtc = to_intel_crtc(crtc);
11883
Matt Roperc59cb172014-12-01 15:40:16 -080011884 ret = drm_plane_helper_check_update(plane, crtc, fb,
11885 src, dest, clip,
11886 DRM_PLANE_HELPER_NO_SCALING,
11887 DRM_PLANE_HELPER_NO_SCALING,
11888 false, true, &state->visible);
11889 if (ret)
11890 return ret;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011891
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011892 if (intel_crtc->active) {
Matt Roper32b7eee2014-12-24 07:59:06 -080011893 intel_crtc->atomic.wait_for_flips = true;
11894
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011895 /*
11896 * FBC does not work on some platforms for rotated
11897 * planes, so disable it when rotation is not 0 and
11898 * update it when rotation is set back to 0.
11899 *
11900 * FIXME: This is redundant with the fbc update done in
11901 * the primary plane enable function except that that
11902 * one is done too late. We eventually need to unify
11903 * this.
11904 */
11905 if (intel_crtc->primary_enabled &&
11906 INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev) &&
11907 dev_priv->fbc.plane == intel_crtc->plane &&
Matt Roper8e7d6882015-01-21 16:35:41 -080011908 state->base.rotation != BIT(DRM_ROTATE_0)) {
Matt Roper32b7eee2014-12-24 07:59:06 -080011909 intel_crtc->atomic.disable_fbc = true;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011910 }
11911
11912 if (state->visible) {
Matt Roper32b7eee2014-12-24 07:59:06 -080011913 /*
11914 * BDW signals flip done immediately if the plane
11915 * is disabled, even if the plane enable is already
11916 * armed to occur at the next vblank :(
11917 */
11918 if (IS_BROADWELL(dev) && !intel_crtc->primary_enabled)
11919 intel_crtc->atomic.wait_vblank = true;
11920 }
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011921
Matt Roper32b7eee2014-12-24 07:59:06 -080011922 intel_crtc->atomic.fb_bits |=
11923 INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
11924
11925 intel_crtc->atomic.update_fbc = true;
Matt Roperc59cb172014-12-01 15:40:16 -080011926 }
11927
11928 return 0;
Matt Roper465c1202014-05-29 08:06:54 -070011929}
11930
Sonika Jindal48404c12014-08-22 14:06:04 +053011931static void
11932intel_commit_primary_plane(struct drm_plane *plane,
11933 struct intel_plane_state *state)
11934{
Matt Roper2b875c22014-12-01 15:40:13 -080011935 struct drm_crtc *crtc = state->base.crtc;
11936 struct drm_framebuffer *fb = state->base.fb;
11937 struct drm_device *dev = plane->dev;
Sonika Jindal48404c12014-08-22 14:06:04 +053011938 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperea2c67b2014-12-23 10:41:52 -080011939 struct intel_crtc *intel_crtc;
Sonika Jindal48404c12014-08-22 14:06:04 +053011940 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Sonika Jindalce54d852014-08-21 11:44:39 +053011941 struct intel_plane *intel_plane = to_intel_plane(plane);
11942 struct drm_rect *src = &state->src;
Matt Ropercf4c7c12014-12-04 10:27:42 -080011943
Matt Roperea2c67b2014-12-23 10:41:52 -080011944 crtc = crtc ? crtc : plane->crtc;
11945 intel_crtc = to_intel_crtc(crtc);
11946
Matt Ropercf4c7c12014-12-04 10:27:42 -080011947 plane->fb = fb;
Sonika Jindalce54d852014-08-21 11:44:39 +053011948 crtc->x = src->x1 >> 16;
Matt Roper465c1202014-05-29 08:06:54 -070011949 crtc->y = src->y1 >> 16;
11950
Sonika Jindalce54d852014-08-21 11:44:39 +053011951 intel_plane->obj = obj;
Matt Roper465c1202014-05-29 08:06:54 -070011952
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011953 if (intel_crtc->active) {
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011954 if (state->visible) {
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011955 /* FIXME: kill this fastboot hack */
11956 intel_update_pipe_size(intel_crtc);
11957
11958 intel_crtc->primary_enabled = true;
11959
11960 dev_priv->display.update_primary_plane(crtc, plane->fb,
11961 crtc->x, crtc->y);
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011962 } else {
11963 /*
11964 * If clipping results in a non-visible primary plane,
11965 * we'll disable the primary plane. Note that this is
11966 * a bit different than what happens if userspace
11967 * explicitly disables the plane by passing fb=0
11968 * because plane->fb still gets set and pinned.
11969 */
11970 intel_disable_primary_hw_plane(plane, crtc);
11971 }
Matt Roper32b7eee2014-12-24 07:59:06 -080011972 }
11973}
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011974
Matt Roper32b7eee2014-12-24 07:59:06 -080011975static void intel_begin_crtc_commit(struct drm_crtc *crtc)
11976{
11977 struct drm_device *dev = crtc->dev;
11978 struct drm_i915_private *dev_priv = dev->dev_private;
11979 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roperea2c67b2014-12-23 10:41:52 -080011980 struct intel_plane *intel_plane;
11981 struct drm_plane *p;
11982 unsigned fb_bits = 0;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011983
Matt Roperea2c67b2014-12-23 10:41:52 -080011984 /* Track fb's for any planes being disabled */
11985 list_for_each_entry(p, &dev->mode_config.plane_list, head) {
11986 intel_plane = to_intel_plane(p);
11987
11988 if (intel_crtc->atomic.disabled_planes &
11989 (1 << drm_plane_index(p))) {
11990 switch (p->type) {
11991 case DRM_PLANE_TYPE_PRIMARY:
11992 fb_bits = INTEL_FRONTBUFFER_PRIMARY(intel_plane->pipe);
11993 break;
11994 case DRM_PLANE_TYPE_CURSOR:
11995 fb_bits = INTEL_FRONTBUFFER_CURSOR(intel_plane->pipe);
11996 break;
11997 case DRM_PLANE_TYPE_OVERLAY:
11998 fb_bits = INTEL_FRONTBUFFER_SPRITE(intel_plane->pipe);
11999 break;
12000 }
12001
12002 mutex_lock(&dev->struct_mutex);
12003 i915_gem_track_fb(intel_fb_obj(p->fb), NULL, fb_bits);
12004 mutex_unlock(&dev->struct_mutex);
12005 }
12006 }
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012007
Matt Roper32b7eee2014-12-24 07:59:06 -080012008 if (intel_crtc->atomic.wait_for_flips)
12009 intel_crtc_wait_for_pending_flips(crtc);
12010
12011 if (intel_crtc->atomic.disable_fbc)
12012 intel_fbc_disable(dev);
12013
12014 if (intel_crtc->atomic.pre_disable_primary)
12015 intel_pre_disable_primary(crtc);
12016
12017 if (intel_crtc->atomic.update_wm)
12018 intel_update_watermarks(crtc);
12019
12020 intel_runtime_pm_get(dev_priv);
Matt Roperc34c9ee2014-12-23 10:41:50 -080012021
12022 /* Perform vblank evasion around commit operation */
12023 if (intel_crtc->active)
12024 intel_crtc->atomic.evade =
12025 intel_pipe_update_start(intel_crtc,
12026 &intel_crtc->atomic.start_vbl_count);
Matt Roper32b7eee2014-12-24 07:59:06 -080012027}
12028
12029static void intel_finish_crtc_commit(struct drm_crtc *crtc)
12030{
12031 struct drm_device *dev = crtc->dev;
12032 struct drm_i915_private *dev_priv = dev->dev_private;
12033 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12034 struct drm_plane *p;
12035
Matt Roperc34c9ee2014-12-23 10:41:50 -080012036 if (intel_crtc->atomic.evade)
12037 intel_pipe_update_end(intel_crtc,
12038 intel_crtc->atomic.start_vbl_count);
12039
Matt Roper32b7eee2014-12-24 07:59:06 -080012040 intel_runtime_pm_put(dev_priv);
12041
12042 if (intel_crtc->atomic.wait_vblank)
12043 intel_wait_for_vblank(dev, intel_crtc->pipe);
12044
12045 intel_frontbuffer_flip(dev, intel_crtc->atomic.fb_bits);
12046
12047 if (intel_crtc->atomic.update_fbc) {
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012048 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020012049 intel_fbc_update(dev);
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012050 mutex_unlock(&dev->struct_mutex);
12051 }
Matt Roper465c1202014-05-29 08:06:54 -070012052
Matt Roper32b7eee2014-12-24 07:59:06 -080012053 if (intel_crtc->atomic.post_enable_primary)
12054 intel_post_enable_primary(crtc);
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012055
Matt Roper32b7eee2014-12-24 07:59:06 -080012056 drm_for_each_legacy_plane(p, &dev->mode_config.plane_list)
12057 if (intel_crtc->atomic.update_sprite_watermarks & drm_plane_index(p))
12058 intel_update_sprite_watermarks(p, crtc, 0, 0, 0,
12059 false, false);
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012060
Matt Roper32b7eee2014-12-24 07:59:06 -080012061 memset(&intel_crtc->atomic, 0, sizeof(intel_crtc->atomic));
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012062}
12063
Matt Ropercf4c7c12014-12-04 10:27:42 -080012064/**
Matt Roper4a3b8762014-12-23 10:41:51 -080012065 * intel_plane_destroy - destroy a plane
12066 * @plane: plane to destroy
Matt Ropercf4c7c12014-12-04 10:27:42 -080012067 *
Matt Roper4a3b8762014-12-23 10:41:51 -080012068 * Common destruction function for all types of planes (primary, cursor,
12069 * sprite).
Matt Ropercf4c7c12014-12-04 10:27:42 -080012070 */
Matt Roper4a3b8762014-12-23 10:41:51 -080012071void intel_plane_destroy(struct drm_plane *plane)
Matt Roper465c1202014-05-29 08:06:54 -070012072{
12073 struct intel_plane *intel_plane = to_intel_plane(plane);
12074 drm_plane_cleanup(plane);
12075 kfree(intel_plane);
12076}
12077
Matt Roper65a3fea2015-01-21 16:35:42 -080012078const struct drm_plane_funcs intel_plane_funcs = {
Matt Roperea2c67b2014-12-23 10:41:52 -080012079 .update_plane = drm_plane_helper_update,
12080 .disable_plane = drm_plane_helper_disable,
Matt Roper3d7d6512014-06-10 08:28:13 -070012081 .destroy = intel_plane_destroy,
Matt Roperc196e1d2015-01-21 16:35:48 -080012082 .set_property = drm_atomic_helper_plane_set_property,
Matt Ropera98b3432015-01-21 16:35:43 -080012083 .atomic_get_property = intel_plane_atomic_get_property,
12084 .atomic_set_property = intel_plane_atomic_set_property,
Matt Roperea2c67b2014-12-23 10:41:52 -080012085 .atomic_duplicate_state = intel_plane_duplicate_state,
12086 .atomic_destroy_state = intel_plane_destroy_state,
12087
Matt Roper465c1202014-05-29 08:06:54 -070012088};
12089
12090static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
12091 int pipe)
12092{
12093 struct intel_plane *primary;
Matt Roper8e7d6882015-01-21 16:35:41 -080012094 struct intel_plane_state *state;
Matt Roper465c1202014-05-29 08:06:54 -070012095 const uint32_t *intel_primary_formats;
12096 int num_formats;
12097
12098 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
12099 if (primary == NULL)
12100 return NULL;
12101
Matt Roper8e7d6882015-01-21 16:35:41 -080012102 state = intel_create_plane_state(&primary->base);
12103 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080012104 kfree(primary);
12105 return NULL;
12106 }
Matt Roper8e7d6882015-01-21 16:35:41 -080012107 primary->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080012108
Matt Roper465c1202014-05-29 08:06:54 -070012109 primary->can_scale = false;
12110 primary->max_downscale = 1;
12111 primary->pipe = pipe;
12112 primary->plane = pipe;
Matt Roperc59cb172014-12-01 15:40:16 -080012113 primary->check_plane = intel_check_primary_plane;
12114 primary->commit_plane = intel_commit_primary_plane;
Matt Roper465c1202014-05-29 08:06:54 -070012115 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
12116 primary->plane = !pipe;
12117
12118 if (INTEL_INFO(dev)->gen <= 3) {
12119 intel_primary_formats = intel_primary_formats_gen2;
12120 num_formats = ARRAY_SIZE(intel_primary_formats_gen2);
12121 } else {
12122 intel_primary_formats = intel_primary_formats_gen4;
12123 num_formats = ARRAY_SIZE(intel_primary_formats_gen4);
12124 }
12125
12126 drm_universal_plane_init(dev, &primary->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080012127 &intel_plane_funcs,
Matt Roper465c1202014-05-29 08:06:54 -070012128 intel_primary_formats, num_formats,
12129 DRM_PLANE_TYPE_PRIMARY);
Sonika Jindal48404c12014-08-22 14:06:04 +053012130
12131 if (INTEL_INFO(dev)->gen >= 4) {
12132 if (!dev->mode_config.rotation_property)
12133 dev->mode_config.rotation_property =
12134 drm_mode_create_rotation_property(dev,
12135 BIT(DRM_ROTATE_0) |
12136 BIT(DRM_ROTATE_180));
12137 if (dev->mode_config.rotation_property)
12138 drm_object_attach_property(&primary->base.base,
12139 dev->mode_config.rotation_property,
Matt Roper8e7d6882015-01-21 16:35:41 -080012140 state->base.rotation);
Sonika Jindal48404c12014-08-22 14:06:04 +053012141 }
12142
Matt Roperea2c67b2014-12-23 10:41:52 -080012143 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
12144
Matt Roper465c1202014-05-29 08:06:54 -070012145 return &primary->base;
12146}
12147
Matt Roper3d7d6512014-06-10 08:28:13 -070012148static int
Gustavo Padovan852e7872014-09-05 17:22:31 -030012149intel_check_cursor_plane(struct drm_plane *plane,
12150 struct intel_plane_state *state)
Matt Roper3d7d6512014-06-10 08:28:13 -070012151{
Matt Roper2b875c22014-12-01 15:40:13 -080012152 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080012153 struct drm_device *dev = plane->dev;
Matt Roper2b875c22014-12-01 15:40:13 -080012154 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan852e7872014-09-05 17:22:31 -030012155 struct drm_rect *dest = &state->dst;
12156 struct drm_rect *src = &state->src;
12157 const struct drm_rect *clip = &state->clip;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012158 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Matt Roperea2c67b2014-12-23 10:41:52 -080012159 struct intel_crtc *intel_crtc;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012160 unsigned stride;
12161 int ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030012162
Matt Roperea2c67b2014-12-23 10:41:52 -080012163 crtc = crtc ? crtc : plane->crtc;
12164 intel_crtc = to_intel_crtc(crtc);
12165
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012166 ret = drm_plane_helper_check_update(plane, crtc, fb,
Gustavo Padovan852e7872014-09-05 17:22:31 -030012167 src, dest, clip,
12168 DRM_PLANE_HELPER_NO_SCALING,
12169 DRM_PLANE_HELPER_NO_SCALING,
12170 true, true, &state->visible);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012171 if (ret)
12172 return ret;
12173
12174
12175 /* if we want to turn off the cursor ignore width and height */
12176 if (!obj)
Matt Roper32b7eee2014-12-24 07:59:06 -080012177 goto finish;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012178
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012179 /* Check for which cursor types we support */
Matt Roperea2c67b2014-12-23 10:41:52 -080012180 if (!cursor_size_ok(dev, state->base.crtc_w, state->base.crtc_h)) {
12181 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
12182 state->base.crtc_w, state->base.crtc_h);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012183 return -EINVAL;
12184 }
12185
Matt Roperea2c67b2014-12-23 10:41:52 -080012186 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
12187 if (obj->base.size < stride * state->base.crtc_h) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012188 DRM_DEBUG_KMS("buffer is too small\n");
12189 return -ENOMEM;
12190 }
12191
Gustavo Padovane391ea82014-09-24 14:20:25 -030012192 if (fb == crtc->cursor->fb)
12193 return 0;
12194
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012195 /* we only need to pin inside GTT if cursor is non-phy */
12196 mutex_lock(&dev->struct_mutex);
12197 if (!INTEL_INFO(dev)->cursor_needs_physical && obj->tiling_mode) {
12198 DRM_DEBUG_KMS("cursor cannot be tiled\n");
12199 ret = -EINVAL;
12200 }
12201 mutex_unlock(&dev->struct_mutex);
12202
Matt Roper32b7eee2014-12-24 07:59:06 -080012203finish:
12204 if (intel_crtc->active) {
Matt Roperea2c67b2014-12-23 10:41:52 -080012205 if (intel_crtc->cursor_width != state->base.crtc_w)
Matt Roper32b7eee2014-12-24 07:59:06 -080012206 intel_crtc->atomic.update_wm = true;
12207
12208 intel_crtc->atomic.fb_bits |=
12209 INTEL_FRONTBUFFER_CURSOR(intel_crtc->pipe);
12210 }
12211
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012212 return ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030012213}
12214
Matt Roperf4a2cf22014-12-01 15:40:12 -080012215static void
Gustavo Padovan852e7872014-09-05 17:22:31 -030012216intel_commit_cursor_plane(struct drm_plane *plane,
12217 struct intel_plane_state *state)
12218{
Matt Roper2b875c22014-12-01 15:40:13 -080012219 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080012220 struct drm_device *dev = plane->dev;
12221 struct intel_crtc *intel_crtc;
Sonika Jindala919db92014-10-23 07:41:33 -070012222 struct intel_plane *intel_plane = to_intel_plane(plane);
Matt Roper2b875c22014-12-01 15:40:13 -080012223 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
Gustavo Padovana912f122014-12-01 15:40:10 -080012224 uint32_t addr;
Matt Roper3d7d6512014-06-10 08:28:13 -070012225
Matt Roperea2c67b2014-12-23 10:41:52 -080012226 crtc = crtc ? crtc : plane->crtc;
12227 intel_crtc = to_intel_crtc(crtc);
Sonika Jindala919db92014-10-23 07:41:33 -070012228
Matt Roperea2c67b2014-12-23 10:41:52 -080012229 plane->fb = state->base.fb;
12230 crtc->cursor_x = state->base.crtc_x;
12231 crtc->cursor_y = state->base.crtc_y;
12232
Sonika Jindala919db92014-10-23 07:41:33 -070012233 intel_plane->obj = obj;
12234
Gustavo Padovana912f122014-12-01 15:40:10 -080012235 if (intel_crtc->cursor_bo == obj)
12236 goto update;
12237
Matt Roperf4a2cf22014-12-01 15:40:12 -080012238 if (!obj)
Gustavo Padovana912f122014-12-01 15:40:10 -080012239 addr = 0;
Matt Roperf4a2cf22014-12-01 15:40:12 -080012240 else if (!INTEL_INFO(dev)->cursor_needs_physical)
Gustavo Padovana912f122014-12-01 15:40:10 -080012241 addr = i915_gem_obj_ggtt_offset(obj);
Matt Roperf4a2cf22014-12-01 15:40:12 -080012242 else
Gustavo Padovana912f122014-12-01 15:40:10 -080012243 addr = obj->phys_handle->busaddr;
Gustavo Padovana912f122014-12-01 15:40:10 -080012244
Gustavo Padovana912f122014-12-01 15:40:10 -080012245 intel_crtc->cursor_addr = addr;
12246 intel_crtc->cursor_bo = obj;
12247update:
Matt Roperea2c67b2014-12-23 10:41:52 -080012248 intel_crtc->cursor_width = state->base.crtc_w;
12249 intel_crtc->cursor_height = state->base.crtc_h;
Gustavo Padovana912f122014-12-01 15:40:10 -080012250
Matt Roper32b7eee2014-12-24 07:59:06 -080012251 if (intel_crtc->active)
Gustavo Padovan852e7872014-09-05 17:22:31 -030012252 intel_crtc_update_cursor(crtc, state->visible);
Matt Roper3d7d6512014-06-10 08:28:13 -070012253}
Gustavo Padovan852e7872014-09-05 17:22:31 -030012254
Matt Roper3d7d6512014-06-10 08:28:13 -070012255static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
12256 int pipe)
12257{
12258 struct intel_plane *cursor;
Matt Roper8e7d6882015-01-21 16:35:41 -080012259 struct intel_plane_state *state;
Matt Roper3d7d6512014-06-10 08:28:13 -070012260
12261 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
12262 if (cursor == NULL)
12263 return NULL;
12264
Matt Roper8e7d6882015-01-21 16:35:41 -080012265 state = intel_create_plane_state(&cursor->base);
12266 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080012267 kfree(cursor);
12268 return NULL;
12269 }
Matt Roper8e7d6882015-01-21 16:35:41 -080012270 cursor->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080012271
Matt Roper3d7d6512014-06-10 08:28:13 -070012272 cursor->can_scale = false;
12273 cursor->max_downscale = 1;
12274 cursor->pipe = pipe;
12275 cursor->plane = pipe;
Matt Roperc59cb172014-12-01 15:40:16 -080012276 cursor->check_plane = intel_check_cursor_plane;
12277 cursor->commit_plane = intel_commit_cursor_plane;
Matt Roper3d7d6512014-06-10 08:28:13 -070012278
12279 drm_universal_plane_init(dev, &cursor->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080012280 &intel_plane_funcs,
Matt Roper3d7d6512014-06-10 08:28:13 -070012281 intel_cursor_formats,
12282 ARRAY_SIZE(intel_cursor_formats),
12283 DRM_PLANE_TYPE_CURSOR);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070012284
12285 if (INTEL_INFO(dev)->gen >= 4) {
12286 if (!dev->mode_config.rotation_property)
12287 dev->mode_config.rotation_property =
12288 drm_mode_create_rotation_property(dev,
12289 BIT(DRM_ROTATE_0) |
12290 BIT(DRM_ROTATE_180));
12291 if (dev->mode_config.rotation_property)
12292 drm_object_attach_property(&cursor->base.base,
12293 dev->mode_config.rotation_property,
Matt Roper8e7d6882015-01-21 16:35:41 -080012294 state->base.rotation);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070012295 }
12296
Matt Roperea2c67b2014-12-23 10:41:52 -080012297 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
12298
Matt Roper3d7d6512014-06-10 08:28:13 -070012299 return &cursor->base;
12300}
12301
Hannes Ederb358d0a2008-12-18 21:18:47 +010012302static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -080012303{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012304 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080012305 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020012306 struct intel_crtc_state *crtc_state = NULL;
Matt Roper3d7d6512014-06-10 08:28:13 -070012307 struct drm_plane *primary = NULL;
12308 struct drm_plane *cursor = NULL;
Matt Roper465c1202014-05-29 08:06:54 -070012309 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080012310
Daniel Vetter955382f2013-09-19 14:05:45 +020012311 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -080012312 if (intel_crtc == NULL)
12313 return;
12314
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020012315 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
12316 if (!crtc_state)
12317 goto fail;
12318 intel_crtc_set_state(intel_crtc, crtc_state);
12319
Matt Roper465c1202014-05-29 08:06:54 -070012320 primary = intel_primary_plane_create(dev, pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070012321 if (!primary)
12322 goto fail;
12323
12324 cursor = intel_cursor_plane_create(dev, pipe);
12325 if (!cursor)
12326 goto fail;
12327
Matt Roper465c1202014-05-29 08:06:54 -070012328 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
Matt Roper3d7d6512014-06-10 08:28:13 -070012329 cursor, &intel_crtc_funcs);
12330 if (ret)
12331 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080012332
12333 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -080012334 for (i = 0; i < 256; i++) {
12335 intel_crtc->lut_r[i] = i;
12336 intel_crtc->lut_g[i] = i;
12337 intel_crtc->lut_b[i] = i;
12338 }
12339
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020012340 /*
12341 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
Daniel Vetter8c0f92e2014-06-16 02:08:26 +020012342 * is hooked to pipe B. Hence we want plane A feeding pipe B.
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020012343 */
Jesse Barnes80824002009-09-10 15:28:06 -070012344 intel_crtc->pipe = pipe;
12345 intel_crtc->plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +010012346 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
Zhao Yakui28c97732009-10-09 11:39:41 +080012347 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +010012348 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -070012349 }
12350
Chris Wilson4b0e3332014-05-30 16:35:26 +030012351 intel_crtc->cursor_base = ~0;
12352 intel_crtc->cursor_cntl = ~0;
Ville Syrjälädc41c152014-08-13 11:57:05 +030012353 intel_crtc->cursor_size = ~0;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030012354
Jesse Barnes22fd0fa2009-12-02 13:42:53 -080012355 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
12356 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
12357 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
12358 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
12359
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020012360 INIT_WORK(&intel_crtc->mmio_flip.work, intel_mmio_flip_work_func);
12361
Jesse Barnes79e53942008-11-07 14:24:08 -080012362 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Daniel Vetter87b6b102014-05-15 15:33:46 +020012363
12364 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070012365 return;
12366
12367fail:
12368 if (primary)
12369 drm_plane_cleanup(primary);
12370 if (cursor)
12371 drm_plane_cleanup(cursor);
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020012372 kfree(crtc_state);
Matt Roper3d7d6512014-06-10 08:28:13 -070012373 kfree(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -080012374}
12375
Jesse Barnes752aa882013-10-31 18:55:49 +020012376enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
12377{
12378 struct drm_encoder *encoder = connector->base.encoder;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020012379 struct drm_device *dev = connector->base.dev;
Jesse Barnes752aa882013-10-31 18:55:49 +020012380
Rob Clark51fd3712013-11-19 12:10:12 -050012381 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Jesse Barnes752aa882013-10-31 18:55:49 +020012382
Ville Syrjäläd3babd32014-11-07 11:16:01 +020012383 if (!encoder || WARN_ON(!encoder->crtc))
Jesse Barnes752aa882013-10-31 18:55:49 +020012384 return INVALID_PIPE;
12385
12386 return to_intel_crtc(encoder->crtc)->pipe;
12387}
12388
Carl Worth08d7b3d2009-04-29 14:43:54 -070012389int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +000012390 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -070012391{
Carl Worth08d7b3d2009-04-29 14:43:54 -070012392 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Rob Clark7707e652014-07-17 23:30:04 -040012393 struct drm_crtc *drmmode_crtc;
Daniel Vetterc05422d2009-08-11 16:05:30 +020012394 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012395
Daniel Vetter1cff8f62012-04-24 09:55:08 +020012396 if (!drm_core_check_feature(dev, DRIVER_MODESET))
12397 return -ENODEV;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012398
Rob Clark7707e652014-07-17 23:30:04 -040012399 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
Carl Worth08d7b3d2009-04-29 14:43:54 -070012400
Rob Clark7707e652014-07-17 23:30:04 -040012401 if (!drmmode_crtc) {
Carl Worth08d7b3d2009-04-29 14:43:54 -070012402 DRM_ERROR("no such CRTC id\n");
Ville Syrjälä3f2c2052013-10-17 13:35:03 +030012403 return -ENOENT;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012404 }
12405
Rob Clark7707e652014-07-17 23:30:04 -040012406 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetterc05422d2009-08-11 16:05:30 +020012407 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012408
Daniel Vetterc05422d2009-08-11 16:05:30 +020012409 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012410}
12411
Daniel Vetter66a92782012-07-12 20:08:18 +020012412static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080012413{
Daniel Vetter66a92782012-07-12 20:08:18 +020012414 struct drm_device *dev = encoder->base.dev;
12415 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080012416 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080012417 int entry = 0;
12418
Damien Lespiaub2784e12014-08-05 11:29:37 +010012419 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020012420 if (encoders_cloneable(encoder, source_encoder))
Daniel Vetter66a92782012-07-12 20:08:18 +020012421 index_mask |= (1 << entry);
12422
Jesse Barnes79e53942008-11-07 14:24:08 -080012423 entry++;
12424 }
Chris Wilson4ef69c72010-09-09 15:14:28 +010012425
Jesse Barnes79e53942008-11-07 14:24:08 -080012426 return index_mask;
12427}
12428
Chris Wilson4d302442010-12-14 19:21:29 +000012429static bool has_edp_a(struct drm_device *dev)
12430{
12431 struct drm_i915_private *dev_priv = dev->dev_private;
12432
12433 if (!IS_MOBILE(dev))
12434 return false;
12435
12436 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
12437 return false;
12438
Damien Lespiaue3589902014-02-07 19:12:50 +000012439 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
Chris Wilson4d302442010-12-14 19:21:29 +000012440 return false;
12441
12442 return true;
12443}
12444
Jesse Barnes84b4e042014-06-25 08:24:29 -070012445static bool intel_crt_present(struct drm_device *dev)
12446{
12447 struct drm_i915_private *dev_priv = dev->dev_private;
12448
Damien Lespiau884497e2013-12-03 13:56:23 +000012449 if (INTEL_INFO(dev)->gen >= 9)
12450 return false;
12451
Damien Lespiaucf404ce2014-10-01 20:04:15 +010012452 if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
Jesse Barnes84b4e042014-06-25 08:24:29 -070012453 return false;
12454
12455 if (IS_CHERRYVIEW(dev))
12456 return false;
12457
12458 if (IS_VALLEYVIEW(dev) && !dev_priv->vbt.int_crt_support)
12459 return false;
12460
12461 return true;
12462}
12463
Jesse Barnes79e53942008-11-07 14:24:08 -080012464static void intel_setup_outputs(struct drm_device *dev)
12465{
Eric Anholt725e30a2009-01-22 13:01:02 -080012466 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +010012467 struct intel_encoder *encoder;
Matt Roperc6f95f22015-01-22 16:50:32 -080012468 struct drm_connector *connector;
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012469 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -080012470
Daniel Vetterc9093352013-06-06 22:22:47 +020012471 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080012472
Jesse Barnes84b4e042014-06-25 08:24:29 -070012473 if (intel_crt_present(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -020012474 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012475
Paulo Zanoniaffa9352012-11-23 15:30:39 -020012476 if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030012477 int found;
12478
12479 /* Haswell uses DDI functions to detect digital outputs */
12480 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
12481 /* DDI A only supports eDP */
12482 if (found)
12483 intel_ddi_init(dev, PORT_A);
12484
12485 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
12486 * register */
12487 found = I915_READ(SFUSE_STRAP);
12488
12489 if (found & SFUSE_STRAP_DDIB_DETECTED)
12490 intel_ddi_init(dev, PORT_B);
12491 if (found & SFUSE_STRAP_DDIC_DETECTED)
12492 intel_ddi_init(dev, PORT_C);
12493 if (found & SFUSE_STRAP_DDID_DETECTED)
12494 intel_ddi_init(dev, PORT_D);
12495 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012496 int found;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020012497 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
Daniel Vetter270b3042012-10-27 15:52:05 +020012498
12499 if (has_edp_a(dev))
12500 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012501
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012502 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +080012503 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +010012504 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012505 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012506 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012507 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012508 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012509 }
12510
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012511 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012512 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012513
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012514 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012515 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012516
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012517 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012518 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012519
Daniel Vetter270b3042012-10-27 15:52:05 +020012520 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012521 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -070012522 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012523 /*
12524 * The DP_DETECTED bit is the latched state of the DDC
12525 * SDA pin at boot. However since eDP doesn't require DDC
12526 * (no way to plug in a DP->HDMI dongle) the DDC pins for
12527 * eDP ports may have been muxed to an alternate function.
12528 * Thus we can't rely on the DP_DETECTED bit alone to detect
12529 * eDP ports. Consult the VBT as well as DP_DETECTED to
12530 * detect eDP ports.
12531 */
Ville Syrjäläd2182a62015-01-09 14:21:14 +020012532 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED &&
12533 !intel_dp_is_edp(dev, PORT_B))
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030012534 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
12535 PORT_B);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012536 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED ||
12537 intel_dp_is_edp(dev, PORT_B))
12538 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030012539
Ville Syrjäläd2182a62015-01-09 14:21:14 +020012540 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED &&
12541 !intel_dp_is_edp(dev, PORT_C))
Jesse Barnes6f6005a2013-08-09 09:34:35 -070012542 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
12543 PORT_C);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012544 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED ||
12545 intel_dp_is_edp(dev, PORT_C))
12546 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
Gajanan Bhat19c03922012-09-27 19:13:07 +053012547
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030012548 if (IS_CHERRYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012549 if (I915_READ(VLV_DISPLAY_BASE + CHV_HDMID) & SDVO_DETECTED)
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030012550 intel_hdmi_init(dev, VLV_DISPLAY_BASE + CHV_HDMID,
12551 PORT_D);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012552 /* eDP not supported on port D, so don't check VBT */
12553 if (I915_READ(VLV_DISPLAY_BASE + DP_D) & DP_DETECTED)
12554 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_D, PORT_D);
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030012555 }
12556
Jani Nikula3cfca972013-08-27 15:12:26 +030012557 intel_dsi_init(dev);
Zhenyu Wang103a1962009-11-27 11:44:36 +080012558 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +080012559 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -080012560
Paulo Zanonie2debe92013-02-18 19:00:27 -030012561 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012562 DRM_DEBUG_KMS("probing SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012563 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012564 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
12565 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012566 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012567 }
Ma Ling27185ae2009-08-24 13:50:23 +080012568
Imre Deake7281ea2013-05-08 13:14:08 +030012569 if (!found && SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012570 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -080012571 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -040012572
12573 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -040012574
Paulo Zanonie2debe92013-02-18 19:00:27 -030012575 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012576 DRM_DEBUG_KMS("probing SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012577 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012578 }
Ma Ling27185ae2009-08-24 13:50:23 +080012579
Paulo Zanonie2debe92013-02-18 19:00:27 -030012580 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +080012581
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012582 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
12583 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012584 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012585 }
Imre Deake7281ea2013-05-08 13:14:08 +030012586 if (SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012587 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -080012588 }
Ma Ling27185ae2009-08-24 13:50:23 +080012589
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012590 if (SUPPORTS_INTEGRATED_DP(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +030012591 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012592 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -070012593 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080012594 intel_dvo_init(dev);
12595
Zhenyu Wang103a1962009-11-27 11:44:36 +080012596 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080012597 intel_tv_init(dev);
12598
Matt Roperc6f95f22015-01-22 16:50:32 -080012599 /*
12600 * FIXME: We don't have full atomic support yet, but we want to be
12601 * able to enable/test plane updates via the atomic interface in the
12602 * meantime. However as soon as we flip DRIVER_ATOMIC on, the DRM core
12603 * will take some atomic codepaths to lookup properties during
12604 * drmModeGetConnector() that unconditionally dereference
12605 * connector->state.
12606 *
12607 * We create a dummy connector state here for each connector to ensure
12608 * the DRM core doesn't try to dereference a NULL connector->state.
12609 * The actual connector properties will never be updated or contain
12610 * useful information, but since we're doing this specifically for
12611 * testing/debug of the plane operations (and only when a specific
12612 * kernel module option is given), that shouldn't really matter.
12613 *
12614 * Once atomic support for crtc's + connectors lands, this loop should
12615 * be removed since we'll be setting up real connector state, which
12616 * will contain Intel-specific properties.
12617 */
12618 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
12619 list_for_each_entry(connector,
12620 &dev->mode_config.connector_list,
12621 head) {
12622 if (!WARN_ON(connector->state)) {
12623 connector->state =
12624 kzalloc(sizeof(*connector->state),
12625 GFP_KERNEL);
12626 }
12627 }
12628 }
12629
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -080012630 intel_psr_init(dev);
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -070012631
Damien Lespiaub2784e12014-08-05 11:29:37 +010012632 for_each_intel_encoder(dev, encoder) {
Chris Wilson4ef69c72010-09-09 15:14:28 +010012633 encoder->base.possible_crtcs = encoder->crtc_mask;
12634 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +020012635 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -080012636 }
Chris Wilson47356eb2011-01-11 17:06:04 +000012637
Paulo Zanonidde86e22012-12-01 12:04:25 -020012638 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +020012639
12640 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080012641}
12642
12643static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
12644{
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012645 struct drm_device *dev = fb->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -080012646 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -080012647
Daniel Vetteref2d6332014-02-10 18:00:38 +010012648 drm_framebuffer_cleanup(fb);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012649 mutex_lock(&dev->struct_mutex);
Daniel Vetteref2d6332014-02-10 18:00:38 +010012650 WARN_ON(!intel_fb->obj->framebuffer_references--);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012651 drm_gem_object_unreference(&intel_fb->obj->base);
12652 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080012653 kfree(intel_fb);
12654}
12655
12656static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +000012657 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -080012658 unsigned int *handle)
12659{
12660 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +000012661 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080012662
Chris Wilson05394f32010-11-08 19:18:58 +000012663 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -080012664}
12665
12666static const struct drm_framebuffer_funcs intel_fb_funcs = {
12667 .destroy = intel_user_framebuffer_destroy,
12668 .create_handle = intel_user_framebuffer_create_handle,
12669};
12670
Daniel Vetterb5ea6422014-03-02 21:18:00 +010012671static int intel_framebuffer_init(struct drm_device *dev,
12672 struct intel_framebuffer *intel_fb,
12673 struct drm_mode_fb_cmd2 *mode_cmd,
12674 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -080012675{
Jesse Barnesa57ce0b2014-02-07 12:10:35 -080012676 int aligned_height;
Chris Wilsona35cdaa2013-06-25 17:26:45 +010012677 int pitch_limit;
Jesse Barnes79e53942008-11-07 14:24:08 -080012678 int ret;
12679
Daniel Vetterdd4916c2013-10-09 21:23:51 +020012680 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
12681
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012682 if (obj->tiling_mode == I915_TILING_Y) {
12683 DRM_DEBUG("hardware does not support tiling Y\n");
Chris Wilson57cd6502010-08-08 12:34:44 +010012684 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012685 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012686
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012687 if (mode_cmd->pitches[0] & 63) {
12688 DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n",
12689 mode_cmd->pitches[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +010012690 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012691 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012692
Chris Wilsona35cdaa2013-06-25 17:26:45 +010012693 if (INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev)) {
12694 pitch_limit = 32*1024;
12695 } else if (INTEL_INFO(dev)->gen >= 4) {
12696 if (obj->tiling_mode)
12697 pitch_limit = 16*1024;
12698 else
12699 pitch_limit = 32*1024;
12700 } else if (INTEL_INFO(dev)->gen >= 3) {
12701 if (obj->tiling_mode)
12702 pitch_limit = 8*1024;
12703 else
12704 pitch_limit = 16*1024;
12705 } else
12706 /* XXX DSPC is limited to 4k tiled */
12707 pitch_limit = 8*1024;
12708
12709 if (mode_cmd->pitches[0] > pitch_limit) {
12710 DRM_DEBUG("%s pitch (%d) must be at less than %d\n",
12711 obj->tiling_mode ? "tiled" : "linear",
12712 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012713 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012714 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012715
12716 if (obj->tiling_mode != I915_TILING_NONE &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012717 mode_cmd->pitches[0] != obj->stride) {
12718 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
12719 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012720 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012721 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012722
Ville Syrjälä57779d02012-10-31 17:50:14 +020012723 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080012724 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020012725 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020012726 case DRM_FORMAT_RGB565:
12727 case DRM_FORMAT_XRGB8888:
12728 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020012729 break;
12730 case DRM_FORMAT_XRGB1555:
12731 case DRM_FORMAT_ARGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012732 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012733 DRM_DEBUG("unsupported pixel format: %s\n",
12734 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012735 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012736 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020012737 break;
12738 case DRM_FORMAT_XBGR8888:
12739 case DRM_FORMAT_ABGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020012740 case DRM_FORMAT_XRGB2101010:
12741 case DRM_FORMAT_ARGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020012742 case DRM_FORMAT_XBGR2101010:
12743 case DRM_FORMAT_ABGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012744 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012745 DRM_DEBUG("unsupported pixel format: %s\n",
12746 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012747 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012748 }
Jesse Barnesb5626742011-06-24 12:19:27 -070012749 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020012750 case DRM_FORMAT_YUYV:
12751 case DRM_FORMAT_UYVY:
12752 case DRM_FORMAT_YVYU:
12753 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012754 if (INTEL_INFO(dev)->gen < 5) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012755 DRM_DEBUG("unsupported pixel format: %s\n",
12756 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012757 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012758 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012759 break;
12760 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012761 DRM_DEBUG("unsupported pixel format: %s\n",
12762 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010012763 return -EINVAL;
12764 }
12765
Ville Syrjälä90f9a332012-10-31 17:50:19 +020012766 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
12767 if (mode_cmd->offsets[0] != 0)
12768 return -EINVAL;
12769
Damien Lespiauec2c9812015-01-20 12:51:45 +000012770 aligned_height = intel_fb_align_height(dev, mode_cmd->height,
12771 obj->tiling_mode);
Daniel Vetter53155c02013-10-09 21:55:33 +020012772 /* FIXME drm helper for size checks (especially planar formats)? */
12773 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
12774 return -EINVAL;
12775
Daniel Vetterc7d73f62012-12-13 23:38:38 +010012776 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
12777 intel_fb->obj = obj;
Daniel Vetter80075d42013-10-09 21:23:52 +020012778 intel_fb->obj->framebuffer_references++;
Daniel Vetterc7d73f62012-12-13 23:38:38 +010012779
Jesse Barnes79e53942008-11-07 14:24:08 -080012780 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
12781 if (ret) {
12782 DRM_ERROR("framebuffer init failed %d\n", ret);
12783 return ret;
12784 }
12785
Jesse Barnes79e53942008-11-07 14:24:08 -080012786 return 0;
12787}
12788
Jesse Barnes79e53942008-11-07 14:24:08 -080012789static struct drm_framebuffer *
12790intel_user_framebuffer_create(struct drm_device *dev,
12791 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -080012792 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080012793{
Chris Wilson05394f32010-11-08 19:18:58 +000012794 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080012795
Jesse Barnes308e5bc2011-11-14 14:51:28 -080012796 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
12797 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +000012798 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010012799 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080012800
Chris Wilsond2dff872011-04-19 08:36:26 +010012801 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -080012802}
12803
Daniel Vetter4520f532013-10-09 09:18:51 +020012804#ifndef CONFIG_DRM_I915_FBDEV
Daniel Vetter0632fef2013-10-08 17:44:49 +020012805static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
Daniel Vetter4520f532013-10-09 09:18:51 +020012806{
12807}
12808#endif
12809
Jesse Barnes79e53942008-11-07 14:24:08 -080012810static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080012811 .fb_create = intel_user_framebuffer_create,
Daniel Vetter0632fef2013-10-08 17:44:49 +020012812 .output_poll_changed = intel_fbdev_output_poll_changed,
Matt Roper5ee67f12015-01-21 16:35:44 -080012813 .atomic_check = intel_atomic_check,
12814 .atomic_commit = intel_atomic_commit,
Jesse Barnes79e53942008-11-07 14:24:08 -080012815};
12816
Jesse Barnese70236a2009-09-21 10:42:27 -070012817/* Set up chip specific display functions */
12818static void intel_init_display(struct drm_device *dev)
12819{
12820 struct drm_i915_private *dev_priv = dev->dev_private;
12821
Daniel Vetteree9300b2013-06-03 22:40:22 +020012822 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
12823 dev_priv->display.find_dpll = g4x_find_best_dpll;
Chon Ming Leeef9348c2014-04-09 13:28:18 +030012824 else if (IS_CHERRYVIEW(dev))
12825 dev_priv->display.find_dpll = chv_find_best_dpll;
Daniel Vetteree9300b2013-06-03 22:40:22 +020012826 else if (IS_VALLEYVIEW(dev))
12827 dev_priv->display.find_dpll = vlv_find_best_dpll;
12828 else if (IS_PINEVIEW(dev))
12829 dev_priv->display.find_dpll = pnv_find_best_dpll;
12830 else
12831 dev_priv->display.find_dpll = i9xx_find_best_dpll;
12832
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000012833 if (INTEL_INFO(dev)->gen >= 9) {
12834 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000012835 dev_priv->display.get_initial_plane_config =
12836 skylake_get_initial_plane_config;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000012837 dev_priv->display.crtc_compute_clock =
12838 haswell_crtc_compute_clock;
12839 dev_priv->display.crtc_enable = haswell_crtc_enable;
12840 dev_priv->display.crtc_disable = haswell_crtc_disable;
12841 dev_priv->display.off = ironlake_crtc_off;
12842 dev_priv->display.update_primary_plane =
12843 skylake_update_primary_plane;
12844 } else if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012845 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000012846 dev_priv->display.get_initial_plane_config =
12847 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira797d0252014-10-29 11:32:34 +020012848 dev_priv->display.crtc_compute_clock =
12849 haswell_crtc_compute_clock;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020012850 dev_priv->display.crtc_enable = haswell_crtc_enable;
12851 dev_priv->display.crtc_disable = haswell_crtc_disable;
Daniel Vetterdf8ad702014-06-25 22:02:03 +030012852 dev_priv->display.off = ironlake_crtc_off;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000012853 dev_priv->display.update_primary_plane =
12854 ironlake_update_primary_plane;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030012855 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012856 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000012857 dev_priv->display.get_initial_plane_config =
12858 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +020012859 dev_priv->display.crtc_compute_clock =
12860 ironlake_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020012861 dev_priv->display.crtc_enable = ironlake_crtc_enable;
12862 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010012863 dev_priv->display.off = ironlake_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070012864 dev_priv->display.update_primary_plane =
12865 ironlake_update_primary_plane;
Jesse Barnes89b667f2013-04-18 14:51:36 -070012866 } else if (IS_VALLEYVIEW(dev)) {
12867 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000012868 dev_priv->display.get_initial_plane_config =
12869 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020012870 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Jesse Barnes89b667f2013-04-18 14:51:36 -070012871 dev_priv->display.crtc_enable = valleyview_crtc_enable;
12872 dev_priv->display.crtc_disable = i9xx_crtc_disable;
12873 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070012874 dev_priv->display.update_primary_plane =
12875 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070012876 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012877 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000012878 dev_priv->display.get_initial_plane_config =
12879 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020012880 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020012881 dev_priv->display.crtc_enable = i9xx_crtc_enable;
12882 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010012883 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070012884 dev_priv->display.update_primary_plane =
12885 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070012886 }
Jesse Barnese70236a2009-09-21 10:42:27 -070012887
Jesse Barnese70236a2009-09-21 10:42:27 -070012888 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070012889 if (IS_VALLEYVIEW(dev))
12890 dev_priv->display.get_display_clock_speed =
12891 valleyview_get_display_clock_speed;
12892 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -070012893 dev_priv->display.get_display_clock_speed =
12894 i945_get_display_clock_speed;
12895 else if (IS_I915G(dev))
12896 dev_priv->display.get_display_clock_speed =
12897 i915_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020012898 else if (IS_I945GM(dev) || IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070012899 dev_priv->display.get_display_clock_speed =
12900 i9xx_misc_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020012901 else if (IS_PINEVIEW(dev))
12902 dev_priv->display.get_display_clock_speed =
12903 pnv_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070012904 else if (IS_I915GM(dev))
12905 dev_priv->display.get_display_clock_speed =
12906 i915gm_get_display_clock_speed;
12907 else if (IS_I865G(dev))
12908 dev_priv->display.get_display_clock_speed =
12909 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +020012910 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070012911 dev_priv->display.get_display_clock_speed =
12912 i855_get_display_clock_speed;
12913 else /* 852, 830 */
12914 dev_priv->display.get_display_clock_speed =
12915 i830_get_display_clock_speed;
12916
Jani Nikula7c10a2b2014-10-27 16:26:43 +020012917 if (IS_GEN5(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053012918 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053012919 } else if (IS_GEN6(dev)) {
12920 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053012921 } else if (IS_IVYBRIDGE(dev)) {
12922 /* FIXME: detect B0+ stepping and use auto training */
12923 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053012924 dev_priv->display.modeset_global_resources =
12925 ivb_modeset_global_resources;
Paulo Zanoni059b2fe2014-09-02 16:53:57 -030012926 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053012927 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Jesse Barnes30a970c2013-11-04 13:48:12 -080012928 } else if (IS_VALLEYVIEW(dev)) {
12929 dev_priv->display.modeset_global_resources =
12930 valleyview_modeset_global_resources;
Jesse Barnese70236a2009-09-21 10:42:27 -070012931 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070012932
12933 /* Default just returns -ENODEV to indicate unsupported */
12934 dev_priv->display.queue_flip = intel_default_queue_flip;
12935
12936 switch (INTEL_INFO(dev)->gen) {
12937 case 2:
12938 dev_priv->display.queue_flip = intel_gen2_queue_flip;
12939 break;
12940
12941 case 3:
12942 dev_priv->display.queue_flip = intel_gen3_queue_flip;
12943 break;
12944
12945 case 4:
12946 case 5:
12947 dev_priv->display.queue_flip = intel_gen4_queue_flip;
12948 break;
12949
12950 case 6:
12951 dev_priv->display.queue_flip = intel_gen6_queue_flip;
12952 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070012953 case 7:
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070012954 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
Jesse Barnes7c9017e2011-06-16 12:18:54 -070012955 dev_priv->display.queue_flip = intel_gen7_queue_flip;
12956 break;
Damien Lespiau830c81d2014-11-13 17:51:46 +000012957 case 9:
12958 dev_priv->display.queue_flip = intel_gen9_queue_flip;
12959 break;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070012960 }
Jani Nikula7bd688c2013-11-08 16:48:56 +020012961
12962 intel_panel_init_backlight_funcs(dev);
Ville Syrjäläe39b9992014-09-04 14:53:14 +030012963
12964 mutex_init(&dev_priv->pps_mutex);
Jesse Barnese70236a2009-09-21 10:42:27 -070012965}
12966
Jesse Barnesb690e962010-07-19 13:53:12 -070012967/*
12968 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
12969 * resume, or other times. This quirk makes sure that's the case for
12970 * affected systems.
12971 */
Akshay Joshi0206e352011-08-16 15:34:10 -040012972static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070012973{
12974 struct drm_i915_private *dev_priv = dev->dev_private;
12975
12976 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020012977 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070012978}
12979
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030012980static void quirk_pipeb_force(struct drm_device *dev)
12981{
12982 struct drm_i915_private *dev_priv = dev->dev_private;
12983
12984 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
12985 DRM_INFO("applying pipe b force quirk\n");
12986}
12987
Keith Packard435793d2011-07-12 14:56:22 -070012988/*
12989 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
12990 */
12991static void quirk_ssc_force_disable(struct drm_device *dev)
12992{
12993 struct drm_i915_private *dev_priv = dev->dev_private;
12994 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020012995 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070012996}
12997
Carsten Emde4dca20e2012-03-15 15:56:26 +010012998/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010012999 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
13000 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010013001 */
13002static void quirk_invert_brightness(struct drm_device *dev)
13003{
13004 struct drm_i915_private *dev_priv = dev->dev_private;
13005 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020013006 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070013007}
13008
Scot Doyle9c72cc62014-07-03 23:27:50 +000013009/* Some VBT's incorrectly indicate no backlight is present */
13010static void quirk_backlight_present(struct drm_device *dev)
13011{
13012 struct drm_i915_private *dev_priv = dev->dev_private;
13013 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
13014 DRM_INFO("applying backlight present quirk\n");
13015}
13016
Jesse Barnesb690e962010-07-19 13:53:12 -070013017struct intel_quirk {
13018 int device;
13019 int subsystem_vendor;
13020 int subsystem_device;
13021 void (*hook)(struct drm_device *dev);
13022};
13023
Egbert Eich5f85f172012-10-14 15:46:38 +020013024/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
13025struct intel_dmi_quirk {
13026 void (*hook)(struct drm_device *dev);
13027 const struct dmi_system_id (*dmi_id_list)[];
13028};
13029
13030static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
13031{
13032 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
13033 return 1;
13034}
13035
13036static const struct intel_dmi_quirk intel_dmi_quirks[] = {
13037 {
13038 .dmi_id_list = &(const struct dmi_system_id[]) {
13039 {
13040 .callback = intel_dmi_reverse_brightness,
13041 .ident = "NCR Corporation",
13042 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
13043 DMI_MATCH(DMI_PRODUCT_NAME, ""),
13044 },
13045 },
13046 { } /* terminating entry */
13047 },
13048 .hook = quirk_invert_brightness,
13049 },
13050};
13051
Ben Widawskyc43b5632012-04-16 14:07:40 -070013052static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070013053 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -040013054 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -070013055
Jesse Barnesb690e962010-07-19 13:53:12 -070013056 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
13057 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
13058
Jesse Barnesb690e962010-07-19 13:53:12 -070013059 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
13060 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
13061
Ville Syrjälä5f080c02014-08-15 01:22:06 +030013062 /* 830 needs to leave pipe A & dpll A up */
13063 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
13064
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030013065 /* 830 needs to leave pipe B & dpll B up */
13066 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
13067
Keith Packard435793d2011-07-12 14:56:22 -070013068 /* Lenovo U160 cannot use SSC on LVDS */
13069 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020013070
13071 /* Sony Vaio Y cannot use SSC on LVDS */
13072 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010013073
Alexander van Heukelumbe505f62013-12-28 21:00:39 +010013074 /* Acer Aspire 5734Z must invert backlight brightness */
13075 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
13076
13077 /* Acer/eMachines G725 */
13078 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
13079
13080 /* Acer/eMachines e725 */
13081 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
13082
13083 /* Acer/Packard Bell NCL20 */
13084 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
13085
13086 /* Acer Aspire 4736Z */
13087 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jani Nikula0f540c32014-01-13 17:30:34 +020013088
13089 /* Acer Aspire 5336 */
13090 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
Scot Doyle2e93a1a2014-07-03 23:27:51 +000013091
13092 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
13093 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
Scot Doyled4967d82014-07-03 23:27:52 +000013094
Scot Doyledfb3d47b2014-08-21 16:08:02 +000013095 /* Acer C720 Chromebook (Core i3 4005U) */
13096 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
13097
jens steinb2a96012014-10-28 20:25:53 +010013098 /* Apple Macbook 2,1 (Core 2 T7400) */
13099 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
13100
Scot Doyled4967d82014-07-03 23:27:52 +000013101 /* Toshiba CB35 Chromebook (Celeron 2955U) */
13102 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
Scot Doyle724cb062014-07-11 22:16:30 +000013103
13104 /* HP Chromebook 14 (Celeron 2955U) */
13105 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
Jesse Barnesb690e962010-07-19 13:53:12 -070013106};
13107
13108static void intel_init_quirks(struct drm_device *dev)
13109{
13110 struct pci_dev *d = dev->pdev;
13111 int i;
13112
13113 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
13114 struct intel_quirk *q = &intel_quirks[i];
13115
13116 if (d->device == q->device &&
13117 (d->subsystem_vendor == q->subsystem_vendor ||
13118 q->subsystem_vendor == PCI_ANY_ID) &&
13119 (d->subsystem_device == q->subsystem_device ||
13120 q->subsystem_device == PCI_ANY_ID))
13121 q->hook(dev);
13122 }
Egbert Eich5f85f172012-10-14 15:46:38 +020013123 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
13124 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
13125 intel_dmi_quirks[i].hook(dev);
13126 }
Jesse Barnesb690e962010-07-19 13:53:12 -070013127}
13128
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013129/* Disable the VGA plane that we never use */
13130static void i915_disable_vga(struct drm_device *dev)
13131{
13132 struct drm_i915_private *dev_priv = dev->dev_private;
13133 u8 sr1;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020013134 u32 vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013135
Ville Syrjälä2b37c612014-01-22 21:32:38 +020013136 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013137 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070013138 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013139 sr1 = inb(VGA_SR_DATA);
13140 outb(sr1 | 1<<5, VGA_SR_DATA);
13141 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
13142 udelay(300);
13143
Ville Syrjälä01f5a622014-12-16 18:38:37 +020013144 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013145 POSTING_READ(vga_reg);
13146}
13147
Daniel Vetterf8175862012-04-10 15:50:11 +020013148void intel_modeset_init_hw(struct drm_device *dev)
13149{
Eugeni Dodonova8f78b52012-06-28 15:55:35 -030013150 intel_prepare_ddi(dev);
13151
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +030013152 if (IS_VALLEYVIEW(dev))
13153 vlv_update_cdclk(dev);
13154
Daniel Vetterf8175862012-04-10 15:50:11 +020013155 intel_init_clock_gating(dev);
13156
Daniel Vetter8090c6b2012-06-24 16:42:32 +020013157 intel_enable_gt_powersave(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020013158}
13159
Jesse Barnes79e53942008-11-07 14:24:08 -080013160void intel_modeset_init(struct drm_device *dev)
13161{
Jesse Barnes652c3932009-08-17 13:31:43 -070013162 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau1fe47782014-03-03 17:31:47 +000013163 int sprite, ret;
Damien Lespiau8cc87b72014-03-03 17:31:44 +000013164 enum pipe pipe;
Jesse Barnes46f297f2014-03-07 08:57:48 -080013165 struct intel_crtc *crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -080013166
13167 drm_mode_config_init(dev);
13168
13169 dev->mode_config.min_width = 0;
13170 dev->mode_config.min_height = 0;
13171
Dave Airlie019d96c2011-09-29 16:20:42 +010013172 dev->mode_config.preferred_depth = 24;
13173 dev->mode_config.prefer_shadow = 1;
13174
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020013175 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080013176
Jesse Barnesb690e962010-07-19 13:53:12 -070013177 intel_init_quirks(dev);
13178
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030013179 intel_init_pm(dev);
13180
Ben Widawskye3c74752013-04-05 13:12:39 -070013181 if (INTEL_INFO(dev)->num_pipes == 0)
13182 return;
13183
Jesse Barnese70236a2009-09-21 10:42:27 -070013184 intel_init_display(dev);
Jani Nikula7c10a2b2014-10-27 16:26:43 +020013185 intel_init_audio(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070013186
Chris Wilsona6c45cf2010-09-17 00:32:17 +010013187 if (IS_GEN2(dev)) {
13188 dev->mode_config.max_width = 2048;
13189 dev->mode_config.max_height = 2048;
13190 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070013191 dev->mode_config.max_width = 4096;
13192 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080013193 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010013194 dev->mode_config.max_width = 8192;
13195 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080013196 }
Damien Lespiau068be562014-03-28 14:17:49 +000013197
Ville Syrjälädc41c152014-08-13 11:57:05 +030013198 if (IS_845G(dev) || IS_I865G(dev)) {
13199 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
13200 dev->mode_config.cursor_height = 1023;
13201 } else if (IS_GEN2(dev)) {
Damien Lespiau068be562014-03-28 14:17:49 +000013202 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
13203 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
13204 } else {
13205 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
13206 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
13207 }
13208
Ben Widawsky5d4545a2013-01-17 12:45:15 -080013209 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080013210
Zhao Yakui28c97732009-10-09 11:39:41 +080013211 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070013212 INTEL_INFO(dev)->num_pipes,
13213 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080013214
Damien Lespiau055e3932014-08-18 13:49:10 +010013215 for_each_pipe(dev_priv, pipe) {
Damien Lespiau8cc87b72014-03-03 17:31:44 +000013216 intel_crtc_init(dev, pipe);
Damien Lespiau1fe47782014-03-03 17:31:47 +000013217 for_each_sprite(pipe, sprite) {
13218 ret = intel_plane_init(dev, pipe, sprite);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070013219 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030013220 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +000013221 pipe_name(pipe), sprite_name(pipe, sprite), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070013222 }
Jesse Barnes79e53942008-11-07 14:24:08 -080013223 }
13224
Jesse Barnesf42bb702013-12-16 16:34:23 -080013225 intel_init_dpio(dev);
13226
Daniel Vettere72f9fb2013-06-05 13:34:06 +020013227 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013228
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013229 /* Just disable it once at startup */
13230 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080013231 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000013232
13233 /* Just in case the BIOS is doing something questionable. */
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020013234 intel_fbc_disable(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080013235
Daniel Vetter6e9f7982014-05-29 23:54:47 +020013236 drm_modeset_lock_all(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080013237 intel_modeset_setup_hw_state(dev, false);
Daniel Vetter6e9f7982014-05-29 23:54:47 +020013238 drm_modeset_unlock_all(dev);
Jesse Barnes46f297f2014-03-07 08:57:48 -080013239
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013240 for_each_intel_crtc(dev, crtc) {
Jesse Barnes46f297f2014-03-07 08:57:48 -080013241 if (!crtc->active)
13242 continue;
13243
Jesse Barnes46f297f2014-03-07 08:57:48 -080013244 /*
Jesse Barnes46f297f2014-03-07 08:57:48 -080013245 * Note that reserving the BIOS fb up front prevents us
13246 * from stuffing other stolen allocations like the ring
13247 * on top. This prevents some ugliness at boot time, and
13248 * can even allow for smooth boot transitions if the BIOS
13249 * fb is large enough for the active pipe configuration.
13250 */
Damien Lespiau5724dbd2015-01-20 12:51:52 +000013251 if (dev_priv->display.get_initial_plane_config) {
13252 dev_priv->display.get_initial_plane_config(crtc,
Jesse Barnes46f297f2014-03-07 08:57:48 -080013253 &crtc->plane_config);
13254 /*
13255 * If the fb is shared between multiple heads, we'll
13256 * just get the first one.
13257 */
Jesse Barnes484b41d2014-03-07 08:57:55 -080013258 intel_find_plane_obj(crtc, &crtc->plane_config);
Jesse Barnes46f297f2014-03-07 08:57:48 -080013259 }
Jesse Barnes46f297f2014-03-07 08:57:48 -080013260 }
Chris Wilson2c7111d2011-03-29 10:40:27 +010013261}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080013262
Daniel Vetter7fad7982012-07-04 17:51:47 +020013263static void intel_enable_pipe_a(struct drm_device *dev)
13264{
13265 struct intel_connector *connector;
13266 struct drm_connector *crt = NULL;
13267 struct intel_load_detect_pipe load_detect_temp;
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030013268 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
Daniel Vetter7fad7982012-07-04 17:51:47 +020013269
13270 /* We can't just switch on the pipe A, we need to set things up with a
13271 * proper mode and output configuration. As a gross hack, enable pipe A
13272 * by enabling the load detect pipe once. */
13273 list_for_each_entry(connector,
13274 &dev->mode_config.connector_list,
13275 base.head) {
13276 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
13277 crt = &connector->base;
13278 break;
13279 }
13280 }
13281
13282 if (!crt)
13283 return;
13284
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030013285 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
13286 intel_release_load_detect_pipe(crt, &load_detect_temp);
Daniel Vetter7fad7982012-07-04 17:51:47 +020013287}
13288
Daniel Vetterfa555832012-10-10 23:14:00 +020013289static bool
13290intel_check_plane_mapping(struct intel_crtc *crtc)
13291{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070013292 struct drm_device *dev = crtc->base.dev;
13293 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020013294 u32 reg, val;
13295
Ben Widawsky7eb552a2013-03-13 14:05:41 -070013296 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020013297 return true;
13298
13299 reg = DSPCNTR(!crtc->plane);
13300 val = I915_READ(reg);
13301
13302 if ((val & DISPLAY_PLANE_ENABLE) &&
13303 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
13304 return false;
13305
13306 return true;
13307}
13308
Daniel Vetter24929352012-07-02 20:28:59 +020013309static void intel_sanitize_crtc(struct intel_crtc *crtc)
13310{
13311 struct drm_device *dev = crtc->base.dev;
13312 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020013313 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +020013314
Daniel Vetter24929352012-07-02 20:28:59 +020013315 /* Clear any frame start delays used for debugging left by the BIOS */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013316 reg = PIPECONF(crtc->config->cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +020013317 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
13318
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030013319 /* restore vblank interrupts to correct state */
Ville Syrjäläd297e102014-08-06 14:50:01 +030013320 if (crtc->active) {
13321 update_scanline_offset(crtc);
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030013322 drm_vblank_on(dev, crtc->pipe);
Ville Syrjäläd297e102014-08-06 14:50:01 +030013323 } else
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030013324 drm_vblank_off(dev, crtc->pipe);
13325
Daniel Vetter24929352012-07-02 20:28:59 +020013326 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020013327 * disable the crtc (and hence change the state) if it is wrong. Note
13328 * that gen4+ has a fixed plane -> pipe mapping. */
13329 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020013330 struct intel_connector *connector;
13331 bool plane;
13332
Daniel Vetter24929352012-07-02 20:28:59 +020013333 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
13334 crtc->base.base.id);
13335
13336 /* Pipe has the wrong plane attached and the plane is active.
13337 * Temporarily change the plane mapping and disable everything
13338 * ... */
13339 plane = crtc->plane;
13340 crtc->plane = !plane;
Daniel Vetter9c8958b2014-07-14 19:35:31 +020013341 crtc->primary_enabled = true;
Daniel Vetter24929352012-07-02 20:28:59 +020013342 dev_priv->display.crtc_disable(&crtc->base);
13343 crtc->plane = plane;
13344
13345 /* ... and break all links. */
13346 list_for_each_entry(connector, &dev->mode_config.connector_list,
13347 base.head) {
13348 if (connector->encoder->base.crtc != &crtc->base)
13349 continue;
13350
Egbert Eich7f1950f2014-04-25 10:56:22 +020013351 connector->base.dpms = DRM_MODE_DPMS_OFF;
13352 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020013353 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020013354 /* multiple connectors may have the same encoder:
13355 * handle them and break crtc link separately */
13356 list_for_each_entry(connector, &dev->mode_config.connector_list,
13357 base.head)
13358 if (connector->encoder->base.crtc == &crtc->base) {
13359 connector->encoder->base.crtc = NULL;
13360 connector->encoder->connectors_active = false;
13361 }
Daniel Vetter24929352012-07-02 20:28:59 +020013362
13363 WARN_ON(crtc->active);
13364 crtc->base.enabled = false;
13365 }
Daniel Vetter24929352012-07-02 20:28:59 +020013366
Daniel Vetter7fad7982012-07-04 17:51:47 +020013367 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
13368 crtc->pipe == PIPE_A && !crtc->active) {
13369 /* BIOS forgot to enable pipe A, this mostly happens after
13370 * resume. Force-enable the pipe to fix this, the update_dpms
13371 * call below we restore the pipe to the right state, but leave
13372 * the required bits on. */
13373 intel_enable_pipe_a(dev);
13374 }
13375
Daniel Vetter24929352012-07-02 20:28:59 +020013376 /* Adjust the state of the output pipe according to whether we
13377 * have active connectors/encoders. */
13378 intel_crtc_update_dpms(&crtc->base);
13379
13380 if (crtc->active != crtc->base.enabled) {
13381 struct intel_encoder *encoder;
13382
13383 /* This can happen either due to bugs in the get_hw_state
13384 * functions or because the pipe is force-enabled due to the
13385 * pipe A quirk. */
13386 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
13387 crtc->base.base.id,
13388 crtc->base.enabled ? "enabled" : "disabled",
13389 crtc->active ? "enabled" : "disabled");
13390
13391 crtc->base.enabled = crtc->active;
13392
13393 /* Because we only establish the connector -> encoder ->
13394 * crtc links if something is active, this means the
13395 * crtc is now deactivated. Break the links. connector
13396 * -> encoder links are only establish when things are
13397 * actually up, hence no need to break them. */
13398 WARN_ON(crtc->active);
13399
13400 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
13401 WARN_ON(encoder->connectors_active);
13402 encoder->base.crtc = NULL;
13403 }
13404 }
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020013405
Ville Syrjäläa3ed6aa2014-09-03 14:09:52 +030013406 if (crtc->active || HAS_GMCH_DISPLAY(dev)) {
Daniel Vetter4cc31482014-03-24 00:01:41 +010013407 /*
13408 * We start out with underrun reporting disabled to avoid races.
13409 * For correct bookkeeping mark this on active crtcs.
13410 *
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020013411 * Also on gmch platforms we dont have any hardware bits to
13412 * disable the underrun reporting. Which means we need to start
13413 * out with underrun reporting disabled also on inactive pipes,
13414 * since otherwise we'll complain about the garbage we read when
13415 * e.g. coming up after runtime pm.
13416 *
Daniel Vetter4cc31482014-03-24 00:01:41 +010013417 * No protection against concurrent access is required - at
13418 * worst a fifo underrun happens which also sets this to false.
13419 */
13420 crtc->cpu_fifo_underrun_disabled = true;
13421 crtc->pch_fifo_underrun_disabled = true;
13422 }
Daniel Vetter24929352012-07-02 20:28:59 +020013423}
13424
13425static void intel_sanitize_encoder(struct intel_encoder *encoder)
13426{
13427 struct intel_connector *connector;
13428 struct drm_device *dev = encoder->base.dev;
13429
13430 /* We need to check both for a crtc link (meaning that the
13431 * encoder is active and trying to read from a pipe) and the
13432 * pipe itself being active. */
13433 bool has_active_crtc = encoder->base.crtc &&
13434 to_intel_crtc(encoder->base.crtc)->active;
13435
13436 if (encoder->connectors_active && !has_active_crtc) {
13437 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
13438 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030013439 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020013440
13441 /* Connector is active, but has no active pipe. This is
13442 * fallout from our resume register restoring. Disable
13443 * the encoder manually again. */
13444 if (encoder->base.crtc) {
13445 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
13446 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030013447 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020013448 encoder->disable(encoder);
Ville Syrjäläa62d1492014-06-28 02:04:01 +030013449 if (encoder->post_disable)
13450 encoder->post_disable(encoder);
Daniel Vetter24929352012-07-02 20:28:59 +020013451 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020013452 encoder->base.crtc = NULL;
13453 encoder->connectors_active = false;
Daniel Vetter24929352012-07-02 20:28:59 +020013454
13455 /* Inconsistent output/port/pipe state happens presumably due to
13456 * a bug in one of the get_hw_state functions. Or someplace else
13457 * in our code, like the register restore mess on resume. Clamp
13458 * things to off as a safer default. */
13459 list_for_each_entry(connector,
13460 &dev->mode_config.connector_list,
13461 base.head) {
13462 if (connector->encoder != encoder)
13463 continue;
Egbert Eich7f1950f2014-04-25 10:56:22 +020013464 connector->base.dpms = DRM_MODE_DPMS_OFF;
13465 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020013466 }
13467 }
13468 /* Enabled encoders without active connectors will be fixed in
13469 * the crtc fixup. */
13470}
13471
Imre Deak04098752014-02-18 00:02:16 +020013472void i915_redisable_vga_power_on(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013473{
13474 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020013475 u32 vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013476
Imre Deak04098752014-02-18 00:02:16 +020013477 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
13478 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
13479 i915_disable_vga(dev);
13480 }
13481}
13482
13483void i915_redisable_vga(struct drm_device *dev)
13484{
13485 struct drm_i915_private *dev_priv = dev->dev_private;
13486
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030013487 /* This function can be called both from intel_modeset_setup_hw_state or
13488 * at a very early point in our resume sequence, where the power well
13489 * structures are not yet restored. Since this function is at a very
13490 * paranoid "someone might have enabled VGA while we were not looking"
13491 * level, just check if the power well is enabled instead of trying to
13492 * follow the "don't touch the power well if we don't need it" policy
13493 * the rest of the driver uses. */
Daniel Vetterf458ebb2014-09-30 10:56:39 +020013494 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_VGA))
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030013495 return;
13496
Imre Deak04098752014-02-18 00:02:16 +020013497 i915_redisable_vga_power_on(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013498}
13499
Ville Syrjälä98ec7732014-04-30 17:43:01 +030013500static bool primary_get_hw_state(struct intel_crtc *crtc)
13501{
13502 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
13503
13504 if (!crtc->active)
13505 return false;
13506
13507 return I915_READ(DSPCNTR(crtc->plane)) & DISPLAY_PLANE_ENABLE;
13508}
13509
Daniel Vetter30e984d2013-06-05 13:34:17 +020013510static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020013511{
13512 struct drm_i915_private *dev_priv = dev->dev_private;
13513 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020013514 struct intel_crtc *crtc;
13515 struct intel_encoder *encoder;
13516 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020013517 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020013518
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013519 for_each_intel_crtc(dev, crtc) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013520 memset(crtc->config, 0, sizeof(*crtc->config));
Daniel Vetter3b117c82013-04-17 20:15:07 +020013521
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013522 crtc->config->quirks |= PIPE_CONFIG_QUIRK_INHERITED_MODE;
Daniel Vetter99535992014-04-13 12:00:33 +020013523
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010013524 crtc->active = dev_priv->display.get_pipe_config(crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013525 crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020013526
13527 crtc->base.enabled = crtc->active;
Ville Syrjälä98ec7732014-04-30 17:43:01 +030013528 crtc->primary_enabled = primary_get_hw_state(crtc);
Daniel Vetter24929352012-07-02 20:28:59 +020013529
13530 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
13531 crtc->base.base.id,
13532 crtc->active ? "enabled" : "disabled");
13533 }
13534
Daniel Vetter53589012013-06-05 13:34:16 +020013535 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13536 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13537
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013538 pll->on = pll->get_hw_state(dev_priv, pll,
13539 &pll->config.hw_state);
Daniel Vetter53589012013-06-05 13:34:16 +020013540 pll->active = 0;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013541 pll->config.crtc_mask = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013542 for_each_intel_crtc(dev, crtc) {
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020013543 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll) {
Daniel Vetter53589012013-06-05 13:34:16 +020013544 pll->active++;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013545 pll->config.crtc_mask |= 1 << crtc->pipe;
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020013546 }
Daniel Vetter53589012013-06-05 13:34:16 +020013547 }
Daniel Vetter53589012013-06-05 13:34:16 +020013548
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020013549 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013550 pll->name, pll->config.crtc_mask, pll->on);
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030013551
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013552 if (pll->config.crtc_mask)
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030013553 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
Daniel Vetter53589012013-06-05 13:34:16 +020013554 }
13555
Damien Lespiaub2784e12014-08-05 11:29:37 +010013556 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020013557 pipe = 0;
13558
13559 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -070013560 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
13561 encoder->base.crtc = &crtc->base;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013562 encoder->get_config(encoder, crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020013563 } else {
13564 encoder->base.crtc = NULL;
13565 }
13566
13567 encoder->connectors_active = false;
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010013568 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
Daniel Vetter24929352012-07-02 20:28:59 +020013569 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030013570 encoder->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020013571 encoder->base.crtc ? "enabled" : "disabled",
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010013572 pipe_name(pipe));
Daniel Vetter24929352012-07-02 20:28:59 +020013573 }
13574
13575 list_for_each_entry(connector, &dev->mode_config.connector_list,
13576 base.head) {
13577 if (connector->get_hw_state(connector)) {
13578 connector->base.dpms = DRM_MODE_DPMS_ON;
13579 connector->encoder->connectors_active = true;
13580 connector->base.encoder = &connector->encoder->base;
13581 } else {
13582 connector->base.dpms = DRM_MODE_DPMS_OFF;
13583 connector->base.encoder = NULL;
13584 }
13585 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
13586 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030013587 connector->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020013588 connector->base.encoder ? "enabled" : "disabled");
13589 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020013590}
13591
13592/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
13593 * and i915 state tracking structures. */
13594void intel_modeset_setup_hw_state(struct drm_device *dev,
13595 bool force_restore)
13596{
13597 struct drm_i915_private *dev_priv = dev->dev_private;
13598 enum pipe pipe;
Daniel Vetter30e984d2013-06-05 13:34:17 +020013599 struct intel_crtc *crtc;
13600 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020013601 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020013602
13603 intel_modeset_readout_hw_state(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020013604
Jesse Barnesbabea612013-06-26 18:57:38 +030013605 /*
13606 * Now that we have the config, copy it to each CRTC struct
13607 * Note that this could go away if we move to using crtc_config
13608 * checking everywhere.
13609 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013610 for_each_intel_crtc(dev, crtc) {
Jani Nikulad330a952014-01-21 11:24:25 +020013611 if (crtc->active && i915.fastboot) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013612 intel_mode_from_pipe_config(&crtc->base.mode,
13613 crtc->config);
Jesse Barnesbabea612013-06-26 18:57:38 +030013614 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
13615 crtc->base.base.id);
13616 drm_mode_debug_printmodeline(&crtc->base.mode);
13617 }
13618 }
13619
Daniel Vetter24929352012-07-02 20:28:59 +020013620 /* HW state is read out, now we need to sanitize this mess. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010013621 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020013622 intel_sanitize_encoder(encoder);
13623 }
13624
Damien Lespiau055e3932014-08-18 13:49:10 +010013625 for_each_pipe(dev_priv, pipe) {
Daniel Vetter24929352012-07-02 20:28:59 +020013626 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
13627 intel_sanitize_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013628 intel_dump_pipe_config(crtc, crtc->config,
13629 "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020013630 }
Daniel Vetter9a935852012-07-05 22:34:27 +020013631
Daniel Vetter35c95372013-07-17 06:55:04 +020013632 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13633 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13634
13635 if (!pll->on || pll->active)
13636 continue;
13637
13638 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
13639
13640 pll->disable(dev_priv, pll);
13641 pll->on = false;
13642 }
13643
Pradeep Bhat30789992014-11-04 17:06:45 +000013644 if (IS_GEN9(dev))
13645 skl_wm_get_hw_state(dev);
13646 else if (HAS_PCH_SPLIT(dev))
Ville Syrjälä243e6a42013-10-14 14:55:24 +030013647 ilk_wm_get_hw_state(dev);
13648
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010013649 if (force_restore) {
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030013650 i915_redisable_vga(dev);
13651
Daniel Vetterf30da182013-04-11 20:22:50 +020013652 /*
13653 * We need to use raw interfaces for restoring state to avoid
13654 * checking (bogus) intermediate states.
13655 */
Damien Lespiau055e3932014-08-18 13:49:10 +010013656 for_each_pipe(dev_priv, pipe) {
Jesse Barnesb5644d02013-03-26 13:25:27 -070013657 struct drm_crtc *crtc =
13658 dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vetterf30da182013-04-11 20:22:50 +020013659
Jesse Barnes7f27126e2014-11-05 14:26:06 -080013660 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
13661 crtc->primary->fb);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010013662 }
13663 } else {
13664 intel_modeset_update_staged_output_state(dev);
13665 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013666
13667 intel_modeset_check_state(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +010013668}
13669
13670void intel_modeset_gem_init(struct drm_device *dev)
13671{
Jesse Barnes92122782014-10-09 12:57:42 -070013672 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes484b41d2014-03-07 08:57:55 -080013673 struct drm_crtc *c;
Matt Roper2ff8fde2014-07-08 07:50:07 -070013674 struct drm_i915_gem_object *obj;
Jesse Barnes484b41d2014-03-07 08:57:55 -080013675
Imre Deakae484342014-03-31 15:10:44 +030013676 mutex_lock(&dev->struct_mutex);
13677 intel_init_gt_powersave(dev);
13678 mutex_unlock(&dev->struct_mutex);
13679
Jesse Barnes92122782014-10-09 12:57:42 -070013680 /*
13681 * There may be no VBT; and if the BIOS enabled SSC we can
13682 * just keep using it to avoid unnecessary flicker. Whereas if the
13683 * BIOS isn't using it, don't assume it will work even if the VBT
13684 * indicates as much.
13685 */
13686 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
13687 dev_priv->vbt.lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
13688 DREF_SSC1_ENABLE);
13689
Chris Wilson1833b132012-05-09 11:56:28 +010013690 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020013691
13692 intel_setup_overlay(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -080013693
13694 /*
13695 * Make sure any fbs we allocated at startup are properly
13696 * pinned & fenced. When we do the allocation it's too early
13697 * for this.
13698 */
13699 mutex_lock(&dev->struct_mutex);
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010013700 for_each_crtc(dev, c) {
Matt Roper2ff8fde2014-07-08 07:50:07 -070013701 obj = intel_fb_obj(c->primary->fb);
13702 if (obj == NULL)
Jesse Barnes484b41d2014-03-07 08:57:55 -080013703 continue;
13704
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +000013705 if (intel_pin_and_fence_fb_obj(c->primary,
13706 c->primary->fb,
13707 NULL)) {
Jesse Barnes484b41d2014-03-07 08:57:55 -080013708 DRM_ERROR("failed to pin boot fb on pipe %d\n",
13709 to_intel_crtc(c)->pipe);
Dave Airlie66e514c2014-04-03 07:51:54 +100013710 drm_framebuffer_unreference(c->primary->fb);
13711 c->primary->fb = NULL;
Jesse Barnes484b41d2014-03-07 08:57:55 -080013712 }
13713 }
13714 mutex_unlock(&dev->struct_mutex);
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020013715
13716 intel_backlight_register(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080013717}
13718
Imre Deak4932e2c2014-02-11 17:12:48 +020013719void intel_connector_unregister(struct intel_connector *intel_connector)
13720{
13721 struct drm_connector *connector = &intel_connector->base;
13722
13723 intel_panel_destroy_backlight(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +010013724 drm_connector_unregister(connector);
Imre Deak4932e2c2014-02-11 17:12:48 +020013725}
13726
Jesse Barnes79e53942008-11-07 14:24:08 -080013727void intel_modeset_cleanup(struct drm_device *dev)
13728{
Jesse Barnes652c3932009-08-17 13:31:43 -070013729 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid9255d52013-09-26 20:05:59 -030013730 struct drm_connector *connector;
Jesse Barnes652c3932009-08-17 13:31:43 -070013731
Imre Deak2eb52522014-11-19 15:30:05 +020013732 intel_disable_gt_powersave(dev);
13733
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020013734 intel_backlight_unregister(dev);
13735
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013736 /*
13737 * Interrupts and polling as the first thing to avoid creating havoc.
Imre Deak2eb52522014-11-19 15:30:05 +020013738 * Too much stuff here (turning of connectors, ...) would
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013739 * experience fancy races otherwise.
13740 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +020013741 intel_irq_uninstall(dev_priv);
Jesse Barneseb21b922014-06-20 11:57:33 -070013742
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013743 /*
13744 * Due to the hpd irq storm handling the hotplug work can re-arm the
13745 * poll handlers. Hence disable polling after hpd handling is shut down.
13746 */
Keith Packardf87ea762010-10-03 19:36:26 -070013747 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013748
Jesse Barnes652c3932009-08-17 13:31:43 -070013749 mutex_lock(&dev->struct_mutex);
13750
Jesse Barnes723bfd72010-10-07 16:01:13 -070013751 intel_unregister_dsm_handler();
13752
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020013753 intel_fbc_disable(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070013754
Daniel Vetter930ebb42012-06-29 23:32:16 +020013755 ironlake_teardown_rc6(dev);
13756
Kristian Høgsberg69341a52009-11-11 12:19:17 -050013757 mutex_unlock(&dev->struct_mutex);
13758
Chris Wilson1630fe72011-07-08 12:22:42 +010013759 /* flush any delayed tasks or pending work */
13760 flush_scheduled_work();
13761
Jani Nikuladb31af1d2013-11-08 16:48:53 +020013762 /* destroy the backlight and sysfs files before encoders/connectors */
13763 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Imre Deak4932e2c2014-02-11 17:12:48 +020013764 struct intel_connector *intel_connector;
13765
13766 intel_connector = to_intel_connector(connector);
13767 intel_connector->unregister(intel_connector);
Jani Nikuladb31af1d2013-11-08 16:48:53 +020013768 }
Paulo Zanonid9255d52013-09-26 20:05:59 -030013769
Jesse Barnes79e53942008-11-07 14:24:08 -080013770 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010013771
13772 intel_cleanup_overlay(dev);
Imre Deakae484342014-03-31 15:10:44 +030013773
13774 mutex_lock(&dev->struct_mutex);
13775 intel_cleanup_gt_powersave(dev);
13776 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080013777}
13778
Dave Airlie28d52042009-09-21 14:33:58 +100013779/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +080013780 * Return which encoder is currently attached for connector.
13781 */
Chris Wilsondf0e9242010-09-09 16:20:55 +010013782struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -080013783{
Chris Wilsondf0e9242010-09-09 16:20:55 +010013784 return &intel_attached_encoder(connector)->base;
13785}
Jesse Barnes79e53942008-11-07 14:24:08 -080013786
Chris Wilsondf0e9242010-09-09 16:20:55 +010013787void intel_connector_attach_encoder(struct intel_connector *connector,
13788 struct intel_encoder *encoder)
13789{
13790 connector->encoder = encoder;
13791 drm_mode_connector_attach_encoder(&connector->base,
13792 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080013793}
Dave Airlie28d52042009-09-21 14:33:58 +100013794
13795/*
13796 * set vga decode state - true == enable VGA decode
13797 */
13798int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
13799{
13800 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona885b3c2013-12-17 14:34:50 +000013801 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
Dave Airlie28d52042009-09-21 14:33:58 +100013802 u16 gmch_ctrl;
13803
Chris Wilson75fa0412014-02-07 18:37:02 -020013804 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
13805 DRM_ERROR("failed to read control word\n");
13806 return -EIO;
13807 }
13808
Chris Wilsonc0cc8a52014-02-07 18:37:03 -020013809 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
13810 return 0;
13811
Dave Airlie28d52042009-09-21 14:33:58 +100013812 if (state)
13813 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
13814 else
13815 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
Chris Wilson75fa0412014-02-07 18:37:02 -020013816
13817 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
13818 DRM_ERROR("failed to write control word\n");
13819 return -EIO;
13820 }
13821
Dave Airlie28d52042009-09-21 14:33:58 +100013822 return 0;
13823}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013824
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013825struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030013826
13827 u32 power_well_driver;
13828
Chris Wilson63b66e52013-08-08 15:12:06 +020013829 int num_transcoders;
13830
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013831 struct intel_cursor_error_state {
13832 u32 control;
13833 u32 position;
13834 u32 base;
13835 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010013836 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013837
13838 struct intel_pipe_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020013839 bool power_domain_on;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013840 u32 source;
Imre Deakf301b1e12014-04-18 15:55:04 +030013841 u32 stat;
Damien Lespiau52331302012-08-15 19:23:25 +010013842 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013843
13844 struct intel_plane_error_state {
13845 u32 control;
13846 u32 stride;
13847 u32 size;
13848 u32 pos;
13849 u32 addr;
13850 u32 surface;
13851 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010013852 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020013853
13854 struct intel_transcoder_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020013855 bool power_domain_on;
Chris Wilson63b66e52013-08-08 15:12:06 +020013856 enum transcoder cpu_transcoder;
13857
13858 u32 conf;
13859
13860 u32 htotal;
13861 u32 hblank;
13862 u32 hsync;
13863 u32 vtotal;
13864 u32 vblank;
13865 u32 vsync;
13866 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013867};
13868
13869struct intel_display_error_state *
13870intel_display_capture_error_state(struct drm_device *dev)
13871{
Jani Nikulafbee40d2014-03-31 14:27:18 +030013872 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013873 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020013874 int transcoders[] = {
13875 TRANSCODER_A,
13876 TRANSCODER_B,
13877 TRANSCODER_C,
13878 TRANSCODER_EDP,
13879 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013880 int i;
13881
Chris Wilson63b66e52013-08-08 15:12:06 +020013882 if (INTEL_INFO(dev)->num_pipes == 0)
13883 return NULL;
13884
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020013885 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013886 if (error == NULL)
13887 return NULL;
13888
Imre Deak190be112013-11-25 17:15:31 +020013889 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030013890 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
13891
Damien Lespiau055e3932014-08-18 13:49:10 +010013892 for_each_pipe(dev_priv, i) {
Imre Deakddf9c532013-11-27 22:02:02 +020013893 error->pipe[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020013894 __intel_display_power_is_enabled(dev_priv,
13895 POWER_DOMAIN_PIPE(i));
Imre Deakddf9c532013-11-27 22:02:02 +020013896 if (!error->pipe[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020013897 continue;
13898
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030013899 error->cursor[i].control = I915_READ(CURCNTR(i));
13900 error->cursor[i].position = I915_READ(CURPOS(i));
13901 error->cursor[i].base = I915_READ(CURBASE(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013902
13903 error->plane[i].control = I915_READ(DSPCNTR(i));
13904 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030013905 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030013906 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030013907 error->plane[i].pos = I915_READ(DSPPOS(i));
13908 }
Paulo Zanonica291362013-03-06 20:03:14 -030013909 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
13910 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013911 if (INTEL_INFO(dev)->gen >= 4) {
13912 error->plane[i].surface = I915_READ(DSPSURF(i));
13913 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
13914 }
13915
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013916 error->pipe[i].source = I915_READ(PIPESRC(i));
Imre Deakf301b1e12014-04-18 15:55:04 +030013917
Sonika Jindal3abfce72014-07-21 15:23:43 +053013918 if (HAS_GMCH_DISPLAY(dev))
Imre Deakf301b1e12014-04-18 15:55:04 +030013919 error->pipe[i].stat = I915_READ(PIPESTAT(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020013920 }
13921
13922 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
13923 if (HAS_DDI(dev_priv->dev))
13924 error->num_transcoders++; /* Account for eDP. */
13925
13926 for (i = 0; i < error->num_transcoders; i++) {
13927 enum transcoder cpu_transcoder = transcoders[i];
13928
Imre Deakddf9c532013-11-27 22:02:02 +020013929 error->transcoder[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020013930 __intel_display_power_is_enabled(dev_priv,
Paulo Zanoni38cc1da2013-12-20 15:09:41 -020013931 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020013932 if (!error->transcoder[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020013933 continue;
13934
Chris Wilson63b66e52013-08-08 15:12:06 +020013935 error->transcoder[i].cpu_transcoder = cpu_transcoder;
13936
13937 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
13938 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
13939 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
13940 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
13941 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
13942 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
13943 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013944 }
13945
13946 return error;
13947}
13948
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013949#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
13950
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013951void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013952intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013953 struct drm_device *dev,
13954 struct intel_display_error_state *error)
13955{
Damien Lespiau055e3932014-08-18 13:49:10 +010013956 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013957 int i;
13958
Chris Wilson63b66e52013-08-08 15:12:06 +020013959 if (!error)
13960 return;
13961
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013962 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Imre Deak190be112013-11-25 17:15:31 +020013963 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013964 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030013965 error->power_well_driver);
Damien Lespiau055e3932014-08-18 13:49:10 +010013966 for_each_pipe(dev_priv, i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013967 err_printf(m, "Pipe [%d]:\n", i);
Imre Deakddf9c532013-11-27 22:02:02 +020013968 err_printf(m, " Power: %s\n",
13969 error->pipe[i].power_domain_on ? "on" : "off");
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013970 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Imre Deakf301b1e12014-04-18 15:55:04 +030013971 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013972
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013973 err_printf(m, "Plane [%d]:\n", i);
13974 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
13975 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030013976 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013977 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
13978 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030013979 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030013980 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013981 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013982 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013983 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
13984 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013985 }
13986
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013987 err_printf(m, "Cursor [%d]:\n", i);
13988 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
13989 err_printf(m, " POS: %08x\n", error->cursor[i].position);
13990 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013991 }
Chris Wilson63b66e52013-08-08 15:12:06 +020013992
13993 for (i = 0; i < error->num_transcoders; i++) {
Chris Wilson1cf84bb2013-10-21 09:10:33 +010013994 err_printf(m, "CPU transcoder: %c\n",
Chris Wilson63b66e52013-08-08 15:12:06 +020013995 transcoder_name(error->transcoder[i].cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020013996 err_printf(m, " Power: %s\n",
13997 error->transcoder[i].power_domain_on ? "on" : "off");
Chris Wilson63b66e52013-08-08 15:12:06 +020013998 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
13999 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
14000 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
14001 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
14002 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
14003 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
14004 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
14005 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014006}
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014007
14008void intel_modeset_preclose(struct drm_device *dev, struct drm_file *file)
14009{
14010 struct intel_crtc *crtc;
14011
14012 for_each_intel_crtc(dev, crtc) {
14013 struct intel_unpin_work *work;
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014014
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020014015 spin_lock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014016
14017 work = crtc->unpin_work;
14018
14019 if (work && work->event &&
14020 work->event->base.file_priv == file) {
14021 kfree(work->event);
14022 work->event = NULL;
14023 }
14024
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020014025 spin_unlock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014026 }
14027}