blob: e730789b53b7b0c141bada8400b398f67149275b [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 Barnesa0c4da22012-06-15 11:55:13 -0700378 .n = { .min = 1, .max = 7 },
Jesse Barnesa0c4da22012-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 Barnesa0c4da22012-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 Barnesa0c4da22012-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 Barnesa0c4da22012-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 Barnesa0c4da22012-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 Barnesa0c4da22012-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 Barnesa0c4da22012-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 Barnesa0c4da22012-06-15 11:55:13 -0700826 }
827 }
828 }
829 }
830 }
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700831
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300832 return found;
Jesse Barnesa0c4da22012-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äfdd508a2014-08-08 21:51:11 +03002125 * @plane: plane to be enabled
2126 * @crtc: crtc for the plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002127 *
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002128 * Enable @plane on @crtc, making sure that the pipe is running first.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002129 */
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002130static void intel_enable_primary_hw_plane(struct drm_plane *plane,
2131 struct drm_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002132{
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002133 struct drm_device *dev = plane->dev;
2134 struct drm_i915_private *dev_priv = dev->dev_private;
2135 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002136
2137 /* If the pipe isn't enabled, we can't pump pixels and may hang */
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002138 assert_pipe_enabled(dev_priv, intel_crtc->pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002139
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002140 if (intel_crtc->primary_enabled)
2141 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002142
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002143 intel_crtc->primary_enabled = true;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002144
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002145 dev_priv->display.update_primary_plane(crtc, plane->fb,
2146 crtc->x, crtc->y);
Ville Syrjälä33c3b0d2014-06-24 13:59:28 +03002147
2148 /*
2149 * BDW signals flip done immediately if the plane
2150 * is disabled, even if the plane enable is already
2151 * armed to occur at the next vblank :(
2152 */
2153 if (IS_BROADWELL(dev))
2154 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002155}
2156
Jesse Barnesb24e7172011-01-04 15:09:30 -08002157/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002158 * intel_disable_primary_hw_plane - disable the primary hardware plane
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002159 * @plane: plane to be disabled
2160 * @crtc: crtc for the plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002161 *
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002162 * Disable @plane on @crtc, making sure that the pipe is running first.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002163 */
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002164static void intel_disable_primary_hw_plane(struct drm_plane *plane,
2165 struct drm_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002166{
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002167 struct drm_device *dev = plane->dev;
2168 struct drm_i915_private *dev_priv = dev->dev_private;
2169 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2170
Matt Roper32b7eee2014-12-24 07:59:06 -08002171 if (WARN_ON(!intel_crtc->active))
2172 return;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002173
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002174 if (!intel_crtc->primary_enabled)
2175 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002176
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002177 intel_crtc->primary_enabled = false;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002178
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002179 dev_priv->display.update_primary_plane(crtc, plane->fb,
2180 crtc->x, crtc->y);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002181}
2182
Chris Wilson693db182013-03-05 14:52:39 +00002183static bool need_vtd_wa(struct drm_device *dev)
2184{
2185#ifdef CONFIG_INTEL_IOMMU
2186 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2187 return true;
2188#endif
2189 return false;
2190}
2191
Damien Lespiauec2c9812015-01-20 12:51:45 +00002192int
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 };
Daniel Vetterf37b5c22015-02-10 23:12:27 +01002374 u32 base_aligned = round_down(plane_config->base, PAGE_SIZE);
2375 u32 size_aligned = round_up(plane_config->base + plane_config->size,
2376 PAGE_SIZE);
2377
2378 size_aligned -= base_aligned;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002379
Chris Wilsonff2652e2014-03-10 08:07:02 +00002380 if (plane_config->size == 0)
2381 return false;
2382
Daniel Vetterf37b5c22015-02-10 23:12:27 +01002383 obj = i915_gem_object_create_stolen_for_preallocated(dev,
2384 base_aligned,
2385 base_aligned,
2386 size_aligned);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002387 if (!obj)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002388 return false;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002389
Damien Lespiau49af4492015-01-20 12:51:44 +00002390 obj->tiling_mode = plane_config->tiling;
2391 if (obj->tiling_mode == I915_TILING_X)
Dave Airlie66e514c2014-04-03 07:51:54 +10002392 obj->stride = crtc->base.primary->fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002393
Dave Airlie66e514c2014-04-03 07:51:54 +10002394 mode_cmd.pixel_format = crtc->base.primary->fb->pixel_format;
2395 mode_cmd.width = crtc->base.primary->fb->width;
2396 mode_cmd.height = crtc->base.primary->fb->height;
2397 mode_cmd.pitches[0] = crtc->base.primary->fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002398
2399 mutex_lock(&dev->struct_mutex);
2400
Dave Airlie66e514c2014-04-03 07:51:54 +10002401 if (intel_framebuffer_init(dev, to_intel_framebuffer(crtc->base.primary->fb),
Jesse Barnes484b41d2014-03-07 08:57:55 -08002402 &mode_cmd, obj)) {
Jesse Barnes46f297f2014-03-07 08:57:48 -08002403 DRM_DEBUG_KMS("intel fb init failed\n");
2404 goto out_unref_obj;
2405 }
2406
Daniel Vettera071fa02014-06-18 23:28:09 +02002407 obj->frontbuffer_bits = INTEL_FRONTBUFFER_PRIMARY(crtc->pipe);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002408 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002409
2410 DRM_DEBUG_KMS("plane fb obj %p\n", obj);
2411 return true;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002412
2413out_unref_obj:
2414 drm_gem_object_unreference(&obj->base);
2415 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002416 return false;
2417}
2418
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002419static void
2420intel_find_plane_obj(struct intel_crtc *intel_crtc,
2421 struct intel_initial_plane_config *plane_config)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002422{
2423 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnesd9ceb812014-10-09 12:57:43 -07002424 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002425 struct drm_crtc *c;
2426 struct intel_crtc *i;
Matt Roper2ff8fde2014-07-08 07:50:07 -07002427 struct drm_i915_gem_object *obj;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002428
Dave Airlie66e514c2014-04-03 07:51:54 +10002429 if (!intel_crtc->base.primary->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002430 return;
2431
2432 if (intel_alloc_plane_obj(intel_crtc, plane_config))
2433 return;
2434
Dave Airlie66e514c2014-04-03 07:51:54 +10002435 kfree(intel_crtc->base.primary->fb);
2436 intel_crtc->base.primary->fb = NULL;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002437
2438 /*
2439 * Failed to alloc the obj, check to see if we should share
2440 * an fb with another CRTC instead
2441 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002442 for_each_crtc(dev, c) {
Jesse Barnes484b41d2014-03-07 08:57:55 -08002443 i = to_intel_crtc(c);
2444
2445 if (c == &intel_crtc->base)
2446 continue;
2447
Matt Roper2ff8fde2014-07-08 07:50:07 -07002448 if (!i->active)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002449 continue;
2450
Matt Roper2ff8fde2014-07-08 07:50:07 -07002451 obj = intel_fb_obj(c->primary->fb);
2452 if (obj == NULL)
2453 continue;
2454
2455 if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) {
Jesse Barnesd9ceb812014-10-09 12:57:43 -07002456 if (obj->tiling_mode != I915_TILING_NONE)
2457 dev_priv->preserve_bios_swizzle = true;
2458
Dave Airlie66e514c2014-04-03 07:51:54 +10002459 drm_framebuffer_reference(c->primary->fb);
2460 intel_crtc->base.primary->fb = c->primary->fb;
Matt Roper2ff8fde2014-07-08 07:50:07 -07002461 obj->frontbuffer_bits |= INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002462 break;
2463 }
2464 }
Jesse Barnes46f297f2014-03-07 08:57:48 -08002465}
2466
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002467static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2468 struct drm_framebuffer *fb,
2469 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07002470{
2471 struct drm_device *dev = crtc->dev;
2472 struct drm_i915_private *dev_priv = dev->dev_private;
2473 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002474 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002475 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002476 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002477 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002478 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302479 int pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002480
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002481 if (!intel_crtc->primary_enabled) {
2482 I915_WRITE(reg, 0);
2483 if (INTEL_INFO(dev)->gen >= 4)
2484 I915_WRITE(DSPSURF(plane), 0);
2485 else
2486 I915_WRITE(DSPADDR(plane), 0);
2487 POSTING_READ(reg);
2488 return;
2489 }
2490
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002491 obj = intel_fb_obj(fb);
2492 if (WARN_ON(obj == NULL))
2493 return;
2494
2495 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2496
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002497 dspcntr = DISPPLANE_GAMMA_ENABLE;
2498
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002499 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002500
2501 if (INTEL_INFO(dev)->gen < 4) {
2502 if (intel_crtc->pipe == PIPE_B)
2503 dspcntr |= DISPPLANE_SEL_PIPE_B;
2504
2505 /* pipesrc and dspsize control the size that is scaled from,
2506 * which should always be the user's requested size.
2507 */
2508 I915_WRITE(DSPSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002509 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2510 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002511 I915_WRITE(DSPPOS(plane), 0);
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002512 } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) {
2513 I915_WRITE(PRIMSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002514 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2515 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002516 I915_WRITE(PRIMPOS(plane), 0);
2517 I915_WRITE(PRIMCNSTALPHA(plane), 0);
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002518 }
2519
Ville Syrjälä57779d02012-10-31 17:50:14 +02002520 switch (fb->pixel_format) {
2521 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002522 dspcntr |= DISPPLANE_8BPP;
2523 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002524 case DRM_FORMAT_XRGB1555:
2525 case DRM_FORMAT_ARGB1555:
2526 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002527 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002528 case DRM_FORMAT_RGB565:
2529 dspcntr |= DISPPLANE_BGRX565;
2530 break;
2531 case DRM_FORMAT_XRGB8888:
2532 case DRM_FORMAT_ARGB8888:
2533 dspcntr |= DISPPLANE_BGRX888;
2534 break;
2535 case DRM_FORMAT_XBGR8888:
2536 case DRM_FORMAT_ABGR8888:
2537 dspcntr |= DISPPLANE_RGBX888;
2538 break;
2539 case DRM_FORMAT_XRGB2101010:
2540 case DRM_FORMAT_ARGB2101010:
2541 dspcntr |= DISPPLANE_BGRX101010;
2542 break;
2543 case DRM_FORMAT_XBGR2101010:
2544 case DRM_FORMAT_ABGR2101010:
2545 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002546 break;
2547 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002548 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07002549 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002550
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002551 if (INTEL_INFO(dev)->gen >= 4 &&
2552 obj->tiling_mode != I915_TILING_NONE)
2553 dspcntr |= DISPPLANE_TILED;
Jesse Barnes81255562010-08-02 12:07:50 -07002554
Ville Syrjäläde1aa622013-06-07 10:47:01 +03002555 if (IS_G4X(dev))
2556 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2557
Ville Syrjäläb98971272014-08-27 16:51:22 +03002558 linear_offset = y * fb->pitches[0] + x * pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002559
Daniel Vetterc2c75132012-07-05 12:17:30 +02002560 if (INTEL_INFO(dev)->gen >= 4) {
2561 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002562 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002563 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002564 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002565 linear_offset -= intel_crtc->dspaddr_offset;
2566 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002567 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002568 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002569
Matt Roper8e7d6882015-01-21 16:35:41 -08002570 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302571 dspcntr |= DISPPLANE_ROTATE_180;
2572
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002573 x += (intel_crtc->config->pipe_src_w - 1);
2574 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302575
2576 /* Finding the last pixel of the last line of the display
2577 data and adding to linear_offset*/
2578 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002579 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2580 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302581 }
2582
2583 I915_WRITE(reg, dspcntr);
2584
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002585 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2586 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2587 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002588 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002589 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002590 I915_WRITE(DSPSURF(plane),
2591 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002592 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002593 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002594 } else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002595 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002596 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002597}
2598
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002599static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2600 struct drm_framebuffer *fb,
2601 int x, int y)
Jesse Barnes17638cd2011-06-24 12:19:23 -07002602{
2603 struct drm_device *dev = crtc->dev;
2604 struct drm_i915_private *dev_priv = dev->dev_private;
2605 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002606 struct drm_i915_gem_object *obj;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002607 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002608 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002609 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002610 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302611 int pixel_size;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002612
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002613 if (!intel_crtc->primary_enabled) {
2614 I915_WRITE(reg, 0);
2615 I915_WRITE(DSPSURF(plane), 0);
2616 POSTING_READ(reg);
2617 return;
2618 }
2619
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002620 obj = intel_fb_obj(fb);
2621 if (WARN_ON(obj == NULL))
2622 return;
2623
2624 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2625
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002626 dspcntr = DISPPLANE_GAMMA_ENABLE;
2627
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002628 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002629
2630 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
2631 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
2632
Ville Syrjälä57779d02012-10-31 17:50:14 +02002633 switch (fb->pixel_format) {
2634 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002635 dspcntr |= DISPPLANE_8BPP;
2636 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002637 case DRM_FORMAT_RGB565:
2638 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002639 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002640 case DRM_FORMAT_XRGB8888:
2641 case DRM_FORMAT_ARGB8888:
2642 dspcntr |= DISPPLANE_BGRX888;
2643 break;
2644 case DRM_FORMAT_XBGR8888:
2645 case DRM_FORMAT_ABGR8888:
2646 dspcntr |= DISPPLANE_RGBX888;
2647 break;
2648 case DRM_FORMAT_XRGB2101010:
2649 case DRM_FORMAT_ARGB2101010:
2650 dspcntr |= DISPPLANE_BGRX101010;
2651 break;
2652 case DRM_FORMAT_XBGR2101010:
2653 case DRM_FORMAT_ABGR2101010:
2654 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002655 break;
2656 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002657 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002658 }
2659
2660 if (obj->tiling_mode != I915_TILING_NONE)
2661 dspcntr |= DISPPLANE_TILED;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002662
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002663 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03002664 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002665
Ville Syrjäläb98971272014-08-27 16:51:22 +03002666 linear_offset = y * fb->pitches[0] + x * pixel_size;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002667 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002668 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002669 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002670 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002671 linear_offset -= intel_crtc->dspaddr_offset;
Matt Roper8e7d6882015-01-21 16:35:41 -08002672 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302673 dspcntr |= DISPPLANE_ROTATE_180;
2674
2675 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002676 x += (intel_crtc->config->pipe_src_w - 1);
2677 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302678
2679 /* Finding the last pixel of the last line of the display
2680 data and adding to linear_offset*/
2681 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002682 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2683 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302684 }
2685 }
2686
2687 I915_WRITE(reg, dspcntr);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002688
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002689 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2690 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2691 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002692 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002693 I915_WRITE(DSPSURF(plane),
2694 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Paulo Zanonib3dc6852013-11-02 21:07:33 -07002695 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002696 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2697 } else {
2698 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2699 I915_WRITE(DSPLINOFF(plane), linear_offset);
2700 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002701 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002702}
2703
Damien Lespiau70d21f02013-07-03 21:06:04 +01002704static void skylake_update_primary_plane(struct drm_crtc *crtc,
2705 struct drm_framebuffer *fb,
2706 int x, int y)
2707{
2708 struct drm_device *dev = crtc->dev;
2709 struct drm_i915_private *dev_priv = dev->dev_private;
2710 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2711 struct intel_framebuffer *intel_fb;
2712 struct drm_i915_gem_object *obj;
2713 int pipe = intel_crtc->pipe;
2714 u32 plane_ctl, stride;
2715
2716 if (!intel_crtc->primary_enabled) {
2717 I915_WRITE(PLANE_CTL(pipe, 0), 0);
2718 I915_WRITE(PLANE_SURF(pipe, 0), 0);
2719 POSTING_READ(PLANE_CTL(pipe, 0));
2720 return;
2721 }
2722
2723 plane_ctl = PLANE_CTL_ENABLE |
2724 PLANE_CTL_PIPE_GAMMA_ENABLE |
2725 PLANE_CTL_PIPE_CSC_ENABLE;
2726
2727 switch (fb->pixel_format) {
2728 case DRM_FORMAT_RGB565:
2729 plane_ctl |= PLANE_CTL_FORMAT_RGB_565;
2730 break;
2731 case DRM_FORMAT_XRGB8888:
2732 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2733 break;
Jani Nikulaf75fb422015-02-10 13:15:49 +02002734 case DRM_FORMAT_ARGB8888:
2735 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2736 plane_ctl |= PLANE_CTL_ALPHA_SW_PREMULTIPLY;
2737 break;
Damien Lespiau70d21f02013-07-03 21:06:04 +01002738 case DRM_FORMAT_XBGR8888:
2739 plane_ctl |= PLANE_CTL_ORDER_RGBX;
2740 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2741 break;
Jani Nikulaf75fb422015-02-10 13:15:49 +02002742 case DRM_FORMAT_ABGR8888:
2743 plane_ctl |= PLANE_CTL_ORDER_RGBX;
2744 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2745 plane_ctl |= PLANE_CTL_ALPHA_SW_PREMULTIPLY;
2746 break;
Damien Lespiau70d21f02013-07-03 21:06:04 +01002747 case DRM_FORMAT_XRGB2101010:
2748 plane_ctl |= PLANE_CTL_FORMAT_XRGB_2101010;
2749 break;
2750 case DRM_FORMAT_XBGR2101010:
2751 plane_ctl |= PLANE_CTL_ORDER_RGBX;
2752 plane_ctl |= PLANE_CTL_FORMAT_XRGB_2101010;
2753 break;
2754 default:
2755 BUG();
2756 }
2757
2758 intel_fb = to_intel_framebuffer(fb);
2759 obj = intel_fb->obj;
2760
2761 /*
2762 * The stride is either expressed as a multiple of 64 bytes chunks for
2763 * linear buffers or in number of tiles for tiled buffers.
2764 */
2765 switch (obj->tiling_mode) {
2766 case I915_TILING_NONE:
2767 stride = fb->pitches[0] >> 6;
2768 break;
2769 case I915_TILING_X:
2770 plane_ctl |= PLANE_CTL_TILED_X;
2771 stride = fb->pitches[0] >> 9;
2772 break;
2773 default:
2774 BUG();
2775 }
2776
2777 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
Matt Roper8e7d6882015-01-21 16:35:41 -08002778 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180))
Sonika Jindal1447dde2014-10-04 10:53:31 +01002779 plane_ctl |= PLANE_CTL_ROTATE_180;
Damien Lespiau70d21f02013-07-03 21:06:04 +01002780
2781 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
2782
2783 DRM_DEBUG_KMS("Writing base %08lX %d,%d,%d,%d pitch=%d\n",
2784 i915_gem_obj_ggtt_offset(obj),
2785 x, y, fb->width, fb->height,
2786 fb->pitches[0]);
2787
2788 I915_WRITE(PLANE_POS(pipe, 0), 0);
2789 I915_WRITE(PLANE_OFFSET(pipe, 0), (y << 16) | x);
2790 I915_WRITE(PLANE_SIZE(pipe, 0),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002791 (intel_crtc->config->pipe_src_h - 1) << 16 |
2792 (intel_crtc->config->pipe_src_w - 1));
Damien Lespiau70d21f02013-07-03 21:06:04 +01002793 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
2794 I915_WRITE(PLANE_SURF(pipe, 0), i915_gem_obj_ggtt_offset(obj));
2795
2796 POSTING_READ(PLANE_SURF(pipe, 0));
2797}
2798
Jesse Barnes17638cd2011-06-24 12:19:23 -07002799/* Assume fb object is pinned & idle & fenced and just update base pointers */
2800static int
2801intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2802 int x, int y, enum mode_set_atomic state)
2803{
2804 struct drm_device *dev = crtc->dev;
2805 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002806
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002807 if (dev_priv->display.disable_fbc)
2808 dev_priv->display.disable_fbc(dev);
Jesse Barnes81255562010-08-02 12:07:50 -07002809
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002810 dev_priv->display.update_primary_plane(crtc, fb, x, y);
2811
2812 return 0;
Jesse Barnes81255562010-08-02 12:07:50 -07002813}
2814
Ville Syrjälä75147472014-11-24 18:28:11 +02002815static void intel_complete_page_flips(struct drm_device *dev)
Ville Syrjälä96a02912013-02-18 19:08:49 +02002816{
Ville Syrjälä96a02912013-02-18 19:08:49 +02002817 struct drm_crtc *crtc;
2818
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002819 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002820 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2821 enum plane plane = intel_crtc->plane;
2822
2823 intel_prepare_page_flip(dev, plane);
2824 intel_finish_page_flip_plane(dev, plane);
2825 }
Ville Syrjälä75147472014-11-24 18:28:11 +02002826}
2827
2828static void intel_update_primary_planes(struct drm_device *dev)
2829{
2830 struct drm_i915_private *dev_priv = dev->dev_private;
2831 struct drm_crtc *crtc;
Ville Syrjälä96a02912013-02-18 19:08:49 +02002832
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002833 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002834 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2835
Rob Clark51fd3712013-11-19 12:10:12 -05002836 drm_modeset_lock(&crtc->mutex, NULL);
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002837 /*
2838 * FIXME: Once we have proper support for primary planes (and
2839 * disabling them without disabling the entire crtc) allow again
Dave Airlie66e514c2014-04-03 07:51:54 +10002840 * a NULL crtc->primary->fb.
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002841 */
Matt Roperf4510a22014-04-01 15:22:40 -07002842 if (intel_crtc->active && crtc->primary->fb)
Matt Roper262ca2b2014-03-18 17:22:55 -07002843 dev_priv->display.update_primary_plane(crtc,
Dave Airlie66e514c2014-04-03 07:51:54 +10002844 crtc->primary->fb,
Matt Roper262ca2b2014-03-18 17:22:55 -07002845 crtc->x,
2846 crtc->y);
Rob Clark51fd3712013-11-19 12:10:12 -05002847 drm_modeset_unlock(&crtc->mutex);
Ville Syrjälä96a02912013-02-18 19:08:49 +02002848 }
2849}
2850
Ville Syrjälä75147472014-11-24 18:28:11 +02002851void intel_prepare_reset(struct drm_device *dev)
2852{
Ville Syrjäläf98ce922014-11-21 21:54:30 +02002853 struct drm_i915_private *dev_priv = to_i915(dev);
2854 struct intel_crtc *crtc;
2855
Ville Syrjälä75147472014-11-24 18:28:11 +02002856 /* no reset support for gen2 */
2857 if (IS_GEN2(dev))
2858 return;
2859
2860 /* reset doesn't touch the display */
2861 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
2862 return;
2863
2864 drm_modeset_lock_all(dev);
Ville Syrjäläf98ce922014-11-21 21:54:30 +02002865
2866 /*
2867 * Disabling the crtcs gracefully seems nicer. Also the
2868 * g33 docs say we should at least disable all the planes.
2869 */
2870 for_each_intel_crtc(dev, crtc) {
2871 if (crtc->active)
2872 dev_priv->display.crtc_disable(&crtc->base);
2873 }
Ville Syrjälä75147472014-11-24 18:28:11 +02002874}
2875
2876void intel_finish_reset(struct drm_device *dev)
2877{
2878 struct drm_i915_private *dev_priv = to_i915(dev);
2879
2880 /*
2881 * Flips in the rings will be nuked by the reset,
2882 * so complete all pending flips so that user space
2883 * will get its events and not get stuck.
2884 */
2885 intel_complete_page_flips(dev);
2886
2887 /* no reset support for gen2 */
2888 if (IS_GEN2(dev))
2889 return;
2890
2891 /* reset doesn't touch the display */
2892 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) {
2893 /*
2894 * Flips in the rings have been nuked by the reset,
2895 * so update the base address of all primary
2896 * planes to the the last fb to make sure we're
2897 * showing the correct fb after a reset.
2898 */
2899 intel_update_primary_planes(dev);
2900 return;
2901 }
2902
2903 /*
2904 * The display has been reset as well,
2905 * so need a full re-initialization.
2906 */
2907 intel_runtime_pm_disable_interrupts(dev_priv);
2908 intel_runtime_pm_enable_interrupts(dev_priv);
2909
2910 intel_modeset_init_hw(dev);
2911
2912 spin_lock_irq(&dev_priv->irq_lock);
2913 if (dev_priv->display.hpd_irq_setup)
2914 dev_priv->display.hpd_irq_setup(dev);
2915 spin_unlock_irq(&dev_priv->irq_lock);
2916
2917 intel_modeset_setup_hw_state(dev, true);
2918
2919 intel_hpd_init(dev_priv);
2920
2921 drm_modeset_unlock_all(dev);
2922}
2923
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002924static int
Chris Wilson14667a42012-04-03 17:58:35 +01002925intel_finish_fb(struct drm_framebuffer *old_fb)
2926{
Matt Roper2ff8fde2014-07-08 07:50:07 -07002927 struct drm_i915_gem_object *obj = intel_fb_obj(old_fb);
Chris Wilson14667a42012-04-03 17:58:35 +01002928 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2929 bool was_interruptible = dev_priv->mm.interruptible;
2930 int ret;
2931
Chris Wilson14667a42012-04-03 17:58:35 +01002932 /* Big Hammer, we also need to ensure that any pending
2933 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2934 * current scanout is retired before unpinning the old
2935 * framebuffer.
2936 *
2937 * This should only fail upon a hung GPU, in which case we
2938 * can safely continue.
2939 */
2940 dev_priv->mm.interruptible = false;
2941 ret = i915_gem_object_finish_gpu(obj);
2942 dev_priv->mm.interruptible = was_interruptible;
2943
2944 return ret;
2945}
2946
Chris Wilson7d5e3792014-03-04 13:15:08 +00002947static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2948{
2949 struct drm_device *dev = crtc->dev;
2950 struct drm_i915_private *dev_priv = dev->dev_private;
2951 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson7d5e3792014-03-04 13:15:08 +00002952 bool pending;
2953
2954 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
2955 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
2956 return false;
2957
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02002958 spin_lock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00002959 pending = to_intel_crtc(crtc)->unpin_work != NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02002960 spin_unlock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00002961
2962 return pending;
2963}
2964
Gustavo Padovane30e8f72014-09-10 12:04:17 -03002965static void intel_update_pipe_size(struct intel_crtc *crtc)
2966{
2967 struct drm_device *dev = crtc->base.dev;
2968 struct drm_i915_private *dev_priv = dev->dev_private;
2969 const struct drm_display_mode *adjusted_mode;
2970
2971 if (!i915.fastboot)
2972 return;
2973
2974 /*
2975 * Update pipe size and adjust fitter if needed: the reason for this is
2976 * that in compute_mode_changes we check the native mode (not the pfit
2977 * mode) to see if we can flip rather than do a full mode set. In the
2978 * fastboot case, we'll flip, but if we don't update the pipesrc and
2979 * pfit state, we'll end up with a big fb scanned out into the wrong
2980 * sized surface.
2981 *
2982 * To fix this properly, we need to hoist the checks up into
2983 * compute_mode_changes (or above), check the actual pfit state and
2984 * whether the platform allows pfit disable with pipe active, and only
2985 * then update the pipesrc and pfit state, even on the flip path.
2986 */
2987
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002988 adjusted_mode = &crtc->config->base.adjusted_mode;
Gustavo Padovane30e8f72014-09-10 12:04:17 -03002989
2990 I915_WRITE(PIPESRC(crtc->pipe),
2991 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
2992 (adjusted_mode->crtc_vdisplay - 1));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002993 if (!crtc->config->pch_pfit.enabled &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03002994 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
2995 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Gustavo Padovane30e8f72014-09-10 12:04:17 -03002996 I915_WRITE(PF_CTL(crtc->pipe), 0);
2997 I915_WRITE(PF_WIN_POS(crtc->pipe), 0);
2998 I915_WRITE(PF_WIN_SZ(crtc->pipe), 0);
2999 }
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003000 crtc->config->pipe_src_w = adjusted_mode->crtc_hdisplay;
3001 crtc->config->pipe_src_h = adjusted_mode->crtc_vdisplay;
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003002}
3003
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003004static void intel_fdi_normal_train(struct drm_crtc *crtc)
3005{
3006 struct drm_device *dev = crtc->dev;
3007 struct drm_i915_private *dev_priv = dev->dev_private;
3008 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3009 int pipe = intel_crtc->pipe;
3010 u32 reg, temp;
3011
3012 /* enable normal train */
3013 reg = FDI_TX_CTL(pipe);
3014 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07003015 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07003016 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3017 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07003018 } else {
3019 temp &= ~FDI_LINK_TRAIN_NONE;
3020 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07003021 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003022 I915_WRITE(reg, temp);
3023
3024 reg = FDI_RX_CTL(pipe);
3025 temp = I915_READ(reg);
3026 if (HAS_PCH_CPT(dev)) {
3027 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3028 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3029 } else {
3030 temp &= ~FDI_LINK_TRAIN_NONE;
3031 temp |= FDI_LINK_TRAIN_NONE;
3032 }
3033 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3034
3035 /* wait one idle pattern time */
3036 POSTING_READ(reg);
3037 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07003038
3039 /* IVB wants error correction enabled */
3040 if (IS_IVYBRIDGE(dev))
3041 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3042 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003043}
3044
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003045static bool pipe_has_enabled_pch(struct intel_crtc *crtc)
Daniel Vetter1e833f42013-02-19 22:31:57 +01003046{
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003047 return crtc->base.enabled && crtc->active &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003048 crtc->config->has_pch_encoder;
Daniel Vetter1e833f42013-02-19 22:31:57 +01003049}
3050
Daniel Vetter01a415f2012-10-27 15:58:40 +02003051static void ivb_modeset_global_resources(struct drm_device *dev)
3052{
3053 struct drm_i915_private *dev_priv = dev->dev_private;
3054 struct intel_crtc *pipe_B_crtc =
3055 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
3056 struct intel_crtc *pipe_C_crtc =
3057 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
3058 uint32_t temp;
3059
Daniel Vetter1e833f42013-02-19 22:31:57 +01003060 /*
3061 * When everything is off disable fdi C so that we could enable fdi B
3062 * with all lanes. Note that we don't care about enabled pipes without
3063 * an enabled pch encoder.
3064 */
3065 if (!pipe_has_enabled_pch(pipe_B_crtc) &&
3066 !pipe_has_enabled_pch(pipe_C_crtc)) {
Daniel Vetter01a415f2012-10-27 15:58:40 +02003067 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3068 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3069
3070 temp = I915_READ(SOUTH_CHICKEN1);
3071 temp &= ~FDI_BC_BIFURCATION_SELECT;
3072 DRM_DEBUG_KMS("disabling fdi C rx\n");
3073 I915_WRITE(SOUTH_CHICKEN1, temp);
3074 }
3075}
3076
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003077/* The FDI link training functions for ILK/Ibexpeak. */
3078static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3079{
3080 struct drm_device *dev = crtc->dev;
3081 struct drm_i915_private *dev_priv = dev->dev_private;
3082 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3083 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003084 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003085
Ville Syrjälä1c8562f2014-04-25 22:12:07 +03003086 /* FDI needs bits from pipe first */
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003087 assert_pipe_enabled(dev_priv, pipe);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003088
Adam Jacksone1a44742010-06-25 15:32:14 -04003089 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3090 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003091 reg = FDI_RX_IMR(pipe);
3092 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003093 temp &= ~FDI_RX_SYMBOL_LOCK;
3094 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003095 I915_WRITE(reg, temp);
3096 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003097 udelay(150);
3098
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003099 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003100 reg = FDI_TX_CTL(pipe);
3101 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003102 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003103 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003104 temp &= ~FDI_LINK_TRAIN_NONE;
3105 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003106 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003107
Chris Wilson5eddb702010-09-11 13:48:45 +01003108 reg = FDI_RX_CTL(pipe);
3109 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003110 temp &= ~FDI_LINK_TRAIN_NONE;
3111 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003112 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3113
3114 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003115 udelay(150);
3116
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003117 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01003118 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3119 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3120 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003121
Chris Wilson5eddb702010-09-11 13:48:45 +01003122 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003123 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003124 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003125 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3126
3127 if ((temp & FDI_RX_BIT_LOCK)) {
3128 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01003129 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003130 break;
3131 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003132 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003133 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003134 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003135
3136 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003137 reg = FDI_TX_CTL(pipe);
3138 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003139 temp &= ~FDI_LINK_TRAIN_NONE;
3140 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003141 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003142
Chris Wilson5eddb702010-09-11 13:48:45 +01003143 reg = FDI_RX_CTL(pipe);
3144 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003145 temp &= ~FDI_LINK_TRAIN_NONE;
3146 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003147 I915_WRITE(reg, temp);
3148
3149 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003150 udelay(150);
3151
Chris Wilson5eddb702010-09-11 13:48:45 +01003152 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003153 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003154 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003155 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3156
3157 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003158 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003159 DRM_DEBUG_KMS("FDI train 2 done.\n");
3160 break;
3161 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003162 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003163 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003164 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003165
3166 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07003167
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003168}
3169
Akshay Joshi0206e352011-08-16 15:34:10 -04003170static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003171 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3172 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3173 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3174 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3175};
3176
3177/* The FDI link training functions for SNB/Cougarpoint. */
3178static void gen6_fdi_link_train(struct drm_crtc *crtc)
3179{
3180 struct drm_device *dev = crtc->dev;
3181 struct drm_i915_private *dev_priv = dev->dev_private;
3182 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3183 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05003184 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003185
Adam Jacksone1a44742010-06-25 15:32:14 -04003186 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3187 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003188 reg = FDI_RX_IMR(pipe);
3189 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003190 temp &= ~FDI_RX_SYMBOL_LOCK;
3191 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003192 I915_WRITE(reg, temp);
3193
3194 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003195 udelay(150);
3196
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003197 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003198 reg = FDI_TX_CTL(pipe);
3199 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003200 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003201 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003202 temp &= ~FDI_LINK_TRAIN_NONE;
3203 temp |= FDI_LINK_TRAIN_PATTERN_1;
3204 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3205 /* SNB-B */
3206 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01003207 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003208
Daniel Vetterd74cf322012-10-26 10:58:13 +02003209 I915_WRITE(FDI_RX_MISC(pipe),
3210 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3211
Chris Wilson5eddb702010-09-11 13:48:45 +01003212 reg = FDI_RX_CTL(pipe);
3213 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003214 if (HAS_PCH_CPT(dev)) {
3215 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3216 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3217 } else {
3218 temp &= ~FDI_LINK_TRAIN_NONE;
3219 temp |= FDI_LINK_TRAIN_PATTERN_1;
3220 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003221 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3222
3223 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003224 udelay(150);
3225
Akshay Joshi0206e352011-08-16 15:34:10 -04003226 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003227 reg = FDI_TX_CTL(pipe);
3228 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003229 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3230 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003231 I915_WRITE(reg, temp);
3232
3233 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003234 udelay(500);
3235
Sean Paulfa37d392012-03-02 12:53:39 -05003236 for (retry = 0; retry < 5; retry++) {
3237 reg = FDI_RX_IIR(pipe);
3238 temp = I915_READ(reg);
3239 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3240 if (temp & FDI_RX_BIT_LOCK) {
3241 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3242 DRM_DEBUG_KMS("FDI train 1 done.\n");
3243 break;
3244 }
3245 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003246 }
Sean Paulfa37d392012-03-02 12:53:39 -05003247 if (retry < 5)
3248 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003249 }
3250 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003251 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003252
3253 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003254 reg = FDI_TX_CTL(pipe);
3255 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003256 temp &= ~FDI_LINK_TRAIN_NONE;
3257 temp |= FDI_LINK_TRAIN_PATTERN_2;
3258 if (IS_GEN6(dev)) {
3259 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3260 /* SNB-B */
3261 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3262 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003263 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003264
Chris Wilson5eddb702010-09-11 13:48:45 +01003265 reg = FDI_RX_CTL(pipe);
3266 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003267 if (HAS_PCH_CPT(dev)) {
3268 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3269 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3270 } else {
3271 temp &= ~FDI_LINK_TRAIN_NONE;
3272 temp |= FDI_LINK_TRAIN_PATTERN_2;
3273 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003274 I915_WRITE(reg, temp);
3275
3276 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003277 udelay(150);
3278
Akshay Joshi0206e352011-08-16 15:34:10 -04003279 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003280 reg = FDI_TX_CTL(pipe);
3281 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003282 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3283 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003284 I915_WRITE(reg, temp);
3285
3286 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003287 udelay(500);
3288
Sean Paulfa37d392012-03-02 12:53:39 -05003289 for (retry = 0; retry < 5; retry++) {
3290 reg = FDI_RX_IIR(pipe);
3291 temp = I915_READ(reg);
3292 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3293 if (temp & FDI_RX_SYMBOL_LOCK) {
3294 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3295 DRM_DEBUG_KMS("FDI train 2 done.\n");
3296 break;
3297 }
3298 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003299 }
Sean Paulfa37d392012-03-02 12:53:39 -05003300 if (retry < 5)
3301 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003302 }
3303 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003304 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003305
3306 DRM_DEBUG_KMS("FDI train done.\n");
3307}
3308
Jesse Barnes357555c2011-04-28 15:09:55 -07003309/* Manual link training for Ivy Bridge A0 parts */
3310static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3311{
3312 struct drm_device *dev = crtc->dev;
3313 struct drm_i915_private *dev_priv = dev->dev_private;
3314 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3315 int pipe = intel_crtc->pipe;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003316 u32 reg, temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07003317
3318 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3319 for train result */
3320 reg = FDI_RX_IMR(pipe);
3321 temp = I915_READ(reg);
3322 temp &= ~FDI_RX_SYMBOL_LOCK;
3323 temp &= ~FDI_RX_BIT_LOCK;
3324 I915_WRITE(reg, temp);
3325
3326 POSTING_READ(reg);
3327 udelay(150);
3328
Daniel Vetter01a415f2012-10-27 15:58:40 +02003329 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3330 I915_READ(FDI_RX_IIR(pipe)));
3331
Jesse Barnes139ccd32013-08-19 11:04:55 -07003332 /* Try each vswing and preemphasis setting twice before moving on */
3333 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3334 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07003335 reg = FDI_TX_CTL(pipe);
3336 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003337 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3338 temp &= ~FDI_TX_ENABLE;
3339 I915_WRITE(reg, temp);
3340
3341 reg = FDI_RX_CTL(pipe);
3342 temp = I915_READ(reg);
3343 temp &= ~FDI_LINK_TRAIN_AUTO;
3344 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3345 temp &= ~FDI_RX_ENABLE;
3346 I915_WRITE(reg, temp);
3347
3348 /* enable CPU FDI TX and PCH FDI RX */
3349 reg = FDI_TX_CTL(pipe);
3350 temp = I915_READ(reg);
3351 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003352 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003353 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07003354 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003355 temp |= snb_b_fdi_train_param[j/2];
3356 temp |= FDI_COMPOSITE_SYNC;
3357 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3358
3359 I915_WRITE(FDI_RX_MISC(pipe),
3360 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3361
3362 reg = FDI_RX_CTL(pipe);
3363 temp = I915_READ(reg);
3364 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3365 temp |= FDI_COMPOSITE_SYNC;
3366 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3367
3368 POSTING_READ(reg);
3369 udelay(1); /* should be 0.5us */
3370
3371 for (i = 0; i < 4; i++) {
3372 reg = FDI_RX_IIR(pipe);
3373 temp = I915_READ(reg);
3374 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3375
3376 if (temp & FDI_RX_BIT_LOCK ||
3377 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3378 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3379 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3380 i);
3381 break;
3382 }
3383 udelay(1); /* should be 0.5us */
3384 }
3385 if (i == 4) {
3386 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3387 continue;
3388 }
3389
3390 /* Train 2 */
3391 reg = FDI_TX_CTL(pipe);
3392 temp = I915_READ(reg);
3393 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3394 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3395 I915_WRITE(reg, temp);
3396
3397 reg = FDI_RX_CTL(pipe);
3398 temp = I915_READ(reg);
3399 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3400 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07003401 I915_WRITE(reg, temp);
3402
3403 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003404 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003405
Jesse Barnes139ccd32013-08-19 11:04:55 -07003406 for (i = 0; i < 4; i++) {
3407 reg = FDI_RX_IIR(pipe);
3408 temp = I915_READ(reg);
3409 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07003410
Jesse Barnes139ccd32013-08-19 11:04:55 -07003411 if (temp & FDI_RX_SYMBOL_LOCK ||
3412 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3413 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3414 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3415 i);
3416 goto train_done;
3417 }
3418 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003419 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07003420 if (i == 4)
3421 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07003422 }
Jesse Barnes357555c2011-04-28 15:09:55 -07003423
Jesse Barnes139ccd32013-08-19 11:04:55 -07003424train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07003425 DRM_DEBUG_KMS("FDI train done.\n");
3426}
3427
Daniel Vetter88cefb62012-08-12 19:27:14 +02003428static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07003429{
Daniel Vetter88cefb62012-08-12 19:27:14 +02003430 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003431 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003432 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003433 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003434
Jesse Barnesc64e3112010-09-10 11:27:03 -07003435
Jesse Barnes0e23b992010-09-10 11:10:00 -07003436 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01003437 reg = FDI_RX_CTL(pipe);
3438 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003439 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003440 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003441 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01003442 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3443
3444 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003445 udelay(200);
3446
3447 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003448 temp = I915_READ(reg);
3449 I915_WRITE(reg, temp | FDI_PCDCLK);
3450
3451 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003452 udelay(200);
3453
Paulo Zanoni20749732012-11-23 15:30:38 -02003454 /* Enable CPU FDI TX PLL, always on for Ironlake */
3455 reg = FDI_TX_CTL(pipe);
3456 temp = I915_READ(reg);
3457 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3458 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01003459
Paulo Zanoni20749732012-11-23 15:30:38 -02003460 POSTING_READ(reg);
3461 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003462 }
3463}
3464
Daniel Vetter88cefb62012-08-12 19:27:14 +02003465static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3466{
3467 struct drm_device *dev = intel_crtc->base.dev;
3468 struct drm_i915_private *dev_priv = dev->dev_private;
3469 int pipe = intel_crtc->pipe;
3470 u32 reg, temp;
3471
3472 /* Switch from PCDclk to Rawclk */
3473 reg = FDI_RX_CTL(pipe);
3474 temp = I915_READ(reg);
3475 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3476
3477 /* Disable CPU FDI TX PLL */
3478 reg = FDI_TX_CTL(pipe);
3479 temp = I915_READ(reg);
3480 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3481
3482 POSTING_READ(reg);
3483 udelay(100);
3484
3485 reg = FDI_RX_CTL(pipe);
3486 temp = I915_READ(reg);
3487 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3488
3489 /* Wait for the clocks to turn off. */
3490 POSTING_READ(reg);
3491 udelay(100);
3492}
3493
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003494static void ironlake_fdi_disable(struct drm_crtc *crtc)
3495{
3496 struct drm_device *dev = crtc->dev;
3497 struct drm_i915_private *dev_priv = dev->dev_private;
3498 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3499 int pipe = intel_crtc->pipe;
3500 u32 reg, temp;
3501
3502 /* disable CPU FDI tx and PCH FDI rx */
3503 reg = FDI_TX_CTL(pipe);
3504 temp = I915_READ(reg);
3505 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3506 POSTING_READ(reg);
3507
3508 reg = FDI_RX_CTL(pipe);
3509 temp = I915_READ(reg);
3510 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003511 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003512 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3513
3514 POSTING_READ(reg);
3515 udelay(100);
3516
3517 /* Ironlake workaround, disable clock pointer after downing FDI */
Robin Schroereba905b2014-05-18 02:24:50 +02003518 if (HAS_PCH_IBX(dev))
Jesse Barnes6f06ce12011-01-04 15:09:38 -08003519 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003520
3521 /* still set train pattern 1 */
3522 reg = FDI_TX_CTL(pipe);
3523 temp = I915_READ(reg);
3524 temp &= ~FDI_LINK_TRAIN_NONE;
3525 temp |= FDI_LINK_TRAIN_PATTERN_1;
3526 I915_WRITE(reg, temp);
3527
3528 reg = FDI_RX_CTL(pipe);
3529 temp = I915_READ(reg);
3530 if (HAS_PCH_CPT(dev)) {
3531 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3532 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3533 } else {
3534 temp &= ~FDI_LINK_TRAIN_NONE;
3535 temp |= FDI_LINK_TRAIN_PATTERN_1;
3536 }
3537 /* BPC in FDI rx is consistent with that in PIPECONF */
3538 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003539 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003540 I915_WRITE(reg, temp);
3541
3542 POSTING_READ(reg);
3543 udelay(100);
3544}
3545
Chris Wilson5dce5b932014-01-20 10:17:36 +00003546bool intel_has_pending_fb_unpin(struct drm_device *dev)
3547{
3548 struct intel_crtc *crtc;
3549
3550 /* Note that we don't need to be called with mode_config.lock here
3551 * as our list of CRTC objects is static for the lifetime of the
3552 * device and so cannot disappear as we iterate. Similarly, we can
3553 * happily treat the predicates as racy, atomic checks as userspace
3554 * cannot claim and pin a new fb without at least acquring the
3555 * struct_mutex and so serialising with us.
3556 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003557 for_each_intel_crtc(dev, crtc) {
Chris Wilson5dce5b932014-01-20 10:17:36 +00003558 if (atomic_read(&crtc->unpin_work_count) == 0)
3559 continue;
3560
3561 if (crtc->unpin_work)
3562 intel_wait_for_vblank(dev, crtc->pipe);
3563
3564 return true;
3565 }
3566
3567 return false;
3568}
3569
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003570static void page_flip_completed(struct intel_crtc *intel_crtc)
3571{
3572 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
3573 struct intel_unpin_work *work = intel_crtc->unpin_work;
3574
3575 /* ensure that the unpin work is consistent wrt ->pending. */
3576 smp_rmb();
3577 intel_crtc->unpin_work = NULL;
3578
3579 if (work->event)
3580 drm_send_vblank_event(intel_crtc->base.dev,
3581 intel_crtc->pipe,
3582 work->event);
3583
3584 drm_crtc_vblank_put(&intel_crtc->base);
3585
3586 wake_up_all(&dev_priv->pending_flip_queue);
3587 queue_work(dev_priv->wq, &work->work);
3588
3589 trace_i915_flip_complete(intel_crtc->plane,
3590 work->pending_flip_obj);
3591}
3592
Ville Syrjälä46a55d32014-05-21 14:04:46 +03003593void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003594{
Chris Wilson0f911282012-04-17 10:05:38 +01003595 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01003596 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003597
Daniel Vetter2c10d572012-12-20 21:24:07 +01003598 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
Chris Wilson9c787942014-09-05 07:13:25 +01003599 if (WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3600 !intel_crtc_has_pending_flip(crtc),
3601 60*HZ) == 0)) {
3602 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter2c10d572012-12-20 21:24:07 +01003603
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003604 spin_lock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003605 if (intel_crtc->unpin_work) {
3606 WARN_ONCE(1, "Removing stuck page flip\n");
3607 page_flip_completed(intel_crtc);
3608 }
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003609 spin_unlock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003610 }
Chris Wilson5bb61642012-09-27 21:25:58 +01003611
Chris Wilson975d5682014-08-20 13:13:34 +01003612 if (crtc->primary->fb) {
3613 mutex_lock(&dev->struct_mutex);
3614 intel_finish_fb(crtc->primary->fb);
3615 mutex_unlock(&dev->struct_mutex);
3616 }
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003617}
3618
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003619/* Program iCLKIP clock to the desired frequency */
3620static void lpt_program_iclkip(struct drm_crtc *crtc)
3621{
3622 struct drm_device *dev = crtc->dev;
3623 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003624 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003625 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3626 u32 temp;
3627
Daniel Vetter09153002012-12-12 14:06:44 +01003628 mutex_lock(&dev_priv->dpio_lock);
3629
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003630 /* It is necessary to ungate the pixclk gate prior to programming
3631 * the divisors, and gate it back when it is done.
3632 */
3633 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3634
3635 /* Disable SSCCTL */
3636 intel_sbi_write(dev_priv, SBI_SSCCTL6,
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003637 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
3638 SBI_SSCCTL_DISABLE,
3639 SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003640
3641 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003642 if (clock == 20000) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003643 auxdiv = 1;
3644 divsel = 0x41;
3645 phaseinc = 0x20;
3646 } else {
3647 /* The iCLK virtual clock root frequency is in MHz,
Damien Lespiau241bfc32013-09-25 16:45:37 +01003648 * but the adjusted_mode->crtc_clock in in KHz. To get the
3649 * divisors, it is necessary to divide one by another, so we
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003650 * convert the virtual clock precision to KHz here for higher
3651 * precision.
3652 */
3653 u32 iclk_virtual_root_freq = 172800 * 1000;
3654 u32 iclk_pi_range = 64;
3655 u32 desired_divisor, msb_divisor_value, pi_value;
3656
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003657 desired_divisor = (iclk_virtual_root_freq / clock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003658 msb_divisor_value = desired_divisor / iclk_pi_range;
3659 pi_value = desired_divisor % iclk_pi_range;
3660
3661 auxdiv = 0;
3662 divsel = msb_divisor_value - 2;
3663 phaseinc = pi_value;
3664 }
3665
3666 /* This should not happen with any sane values */
3667 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3668 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3669 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3670 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3671
3672 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 +03003673 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003674 auxdiv,
3675 divsel,
3676 phasedir,
3677 phaseinc);
3678
3679 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003680 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003681 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3682 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3683 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3684 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3685 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3686 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003687 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003688
3689 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003690 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003691 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3692 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003693 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003694
3695 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003696 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003697 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003698 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003699
3700 /* Wait for initialization time */
3701 udelay(24);
3702
3703 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
Daniel Vetter09153002012-12-12 14:06:44 +01003704
3705 mutex_unlock(&dev_priv->dpio_lock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003706}
3707
Daniel Vetter275f01b22013-05-03 11:49:47 +02003708static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3709 enum pipe pch_transcoder)
3710{
3711 struct drm_device *dev = crtc->base.dev;
3712 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003713 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Daniel Vetter275f01b22013-05-03 11:49:47 +02003714
3715 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
3716 I915_READ(HTOTAL(cpu_transcoder)));
3717 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
3718 I915_READ(HBLANK(cpu_transcoder)));
3719 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
3720 I915_READ(HSYNC(cpu_transcoder)));
3721
3722 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
3723 I915_READ(VTOTAL(cpu_transcoder)));
3724 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
3725 I915_READ(VBLANK(cpu_transcoder)));
3726 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
3727 I915_READ(VSYNC(cpu_transcoder)));
3728 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
3729 I915_READ(VSYNCSHIFT(cpu_transcoder)));
3730}
3731
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003732static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
3733{
3734 struct drm_i915_private *dev_priv = dev->dev_private;
3735 uint32_t temp;
3736
3737 temp = I915_READ(SOUTH_CHICKEN1);
3738 if (temp & FDI_BC_BIFURCATION_SELECT)
3739 return;
3740
3741 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3742 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3743
3744 temp |= FDI_BC_BIFURCATION_SELECT;
3745 DRM_DEBUG_KMS("enabling fdi C rx\n");
3746 I915_WRITE(SOUTH_CHICKEN1, temp);
3747 POSTING_READ(SOUTH_CHICKEN1);
3748}
3749
3750static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
3751{
3752 struct drm_device *dev = intel_crtc->base.dev;
3753 struct drm_i915_private *dev_priv = dev->dev_private;
3754
3755 switch (intel_crtc->pipe) {
3756 case PIPE_A:
3757 break;
3758 case PIPE_B:
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003759 if (intel_crtc->config->fdi_lanes > 2)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003760 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
3761 else
3762 cpt_enable_fdi_bc_bifurcation(dev);
3763
3764 break;
3765 case PIPE_C:
3766 cpt_enable_fdi_bc_bifurcation(dev);
3767
3768 break;
3769 default:
3770 BUG();
3771 }
3772}
3773
Jesse Barnesf67a5592011-01-05 10:31:48 -08003774/*
3775 * Enable PCH resources required for PCH ports:
3776 * - PCH PLLs
3777 * - FDI training & RX/TX
3778 * - update transcoder timings
3779 * - DP transcoding bits
3780 * - transcoder
3781 */
3782static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003783{
3784 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003785 struct drm_i915_private *dev_priv = dev->dev_private;
3786 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3787 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003788 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003789
Daniel Vetterab9412b2013-05-03 11:49:46 +02003790 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01003791
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003792 if (IS_IVYBRIDGE(dev))
3793 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
3794
Daniel Vettercd986ab2012-10-26 10:58:12 +02003795 /* Write the TU size bits before fdi link training, so that error
3796 * detection works. */
3797 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3798 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3799
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003800 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07003801 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003802
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003803 /* We need to program the right clock selection before writing the pixel
3804 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003805 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003806 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07003807
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003808 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02003809 temp |= TRANS_DPLL_ENABLE(pipe);
3810 sel = TRANS_DPLLB_SEL(pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003811 if (intel_crtc->config->shared_dpll == DPLL_ID_PCH_PLL_B)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003812 temp |= sel;
3813 else
3814 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003815 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003816 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003817
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003818 /* XXX: pch pll's can be enabled any time before we enable the PCH
3819 * transcoder, and we actually should do this to not upset any PCH
3820 * transcoder that already use the clock when we share it.
3821 *
3822 * Note that enable_shared_dpll tries to do the right thing, but
3823 * get_shared_dpll unconditionally resets the pll - we need that to have
3824 * the right LVDS enable sequence. */
Daniel Vetter85b38942014-04-24 23:55:14 +02003825 intel_enable_shared_dpll(intel_crtc);
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003826
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08003827 /* set transcoder timing, panel must allow it */
3828 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02003829 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003830
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003831 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003832
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003833 /* For PCH DP, enable TRANS_DP_CTL */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003834 if (HAS_PCH_CPT(dev) && intel_crtc->config->has_dp_encoder) {
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003835 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01003836 reg = TRANS_DP_CTL(pipe);
3837 temp = I915_READ(reg);
3838 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08003839 TRANS_DP_SYNC_MASK |
3840 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01003841 temp |= (TRANS_DP_OUTPUT_ENABLE |
3842 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003843 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003844
3845 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003846 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003847 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003848 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003849
3850 switch (intel_trans_dp_port_sel(crtc)) {
3851 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01003852 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003853 break;
3854 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01003855 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003856 break;
3857 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01003858 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003859 break;
3860 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02003861 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003862 }
3863
Chris Wilson5eddb702010-09-11 13:48:45 +01003864 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003865 }
3866
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003867 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003868}
3869
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003870static void lpt_pch_enable(struct drm_crtc *crtc)
3871{
3872 struct drm_device *dev = crtc->dev;
3873 struct drm_i915_private *dev_priv = dev->dev_private;
3874 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003875 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003876
Daniel Vetterab9412b2013-05-03 11:49:46 +02003877 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003878
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02003879 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003880
Paulo Zanoni0540e482012-10-31 18:12:40 -02003881 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02003882 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003883
Paulo Zanoni937bb612012-10-31 18:12:47 -02003884 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003885}
3886
Daniel Vetter716c2e52014-06-25 22:02:02 +03003887void intel_put_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003888{
Daniel Vettere2b78262013-06-07 23:10:03 +02003889 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003890
3891 if (pll == NULL)
3892 return;
3893
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02003894 if (!(pll->config.crtc_mask & (1 << crtc->pipe))) {
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +02003895 WARN(1, "bad %s crtc mask\n", pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003896 return;
3897 }
3898
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02003899 pll->config.crtc_mask &= ~(1 << crtc->pipe);
3900 if (pll->config.crtc_mask == 0) {
Daniel Vetterf4a091c2013-06-10 17:28:22 +02003901 WARN_ON(pll->on);
3902 WARN_ON(pll->active);
3903 }
3904
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003905 crtc->config->shared_dpll = DPLL_ID_PRIVATE;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003906}
3907
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02003908struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc,
3909 struct intel_crtc_state *crtc_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003910{
Daniel Vettere2b78262013-06-07 23:10:03 +02003911 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003912 struct intel_shared_dpll *pll;
Daniel Vettere2b78262013-06-07 23:10:03 +02003913 enum intel_dpll_id i;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003914
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003915 if (HAS_PCH_IBX(dev_priv->dev)) {
3916 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
Daniel Vetterd94ab062013-07-04 12:01:16 +02003917 i = (enum intel_dpll_id) crtc->pipe;
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003918 pll = &dev_priv->shared_dplls[i];
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003919
Daniel Vetter46edb022013-06-05 13:34:12 +02003920 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
3921 crtc->base.base.id, pll->name);
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003922
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003923 WARN_ON(pll->new_config->crtc_mask);
Daniel Vetterf2a69f42014-05-20 15:19:19 +02003924
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003925 goto found;
3926 }
3927
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003928 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3929 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003930
3931 /* Only want to check enabled timings first */
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003932 if (pll->new_config->crtc_mask == 0)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003933 continue;
3934
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02003935 if (memcmp(&crtc_state->dpll_hw_state,
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003936 &pll->new_config->hw_state,
3937 sizeof(pll->new_config->hw_state)) == 0) {
3938 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (crtc mask 0x%08x, ative %d)\n",
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +02003939 crtc->base.base.id, pll->name,
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003940 pll->new_config->crtc_mask,
3941 pll->active);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003942 goto found;
3943 }
3944 }
3945
3946 /* Ok no matching timings, maybe there's a free one? */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003947 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3948 pll = &dev_priv->shared_dplls[i];
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003949 if (pll->new_config->crtc_mask == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003950 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
3951 crtc->base.base.id, pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003952 goto found;
3953 }
3954 }
3955
3956 return NULL;
3957
3958found:
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003959 if (pll->new_config->crtc_mask == 0)
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02003960 pll->new_config->hw_state = crtc_state->dpll_hw_state;
Daniel Vetterf2a69f42014-05-20 15:19:19 +02003961
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02003962 crtc_state->shared_dpll = i;
Daniel Vetter46edb022013-06-05 13:34:12 +02003963 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
3964 pipe_name(crtc->pipe));
Daniel Vetter66e985c2013-06-05 13:34:20 +02003965
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003966 pll->new_config->crtc_mask |= 1 << crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003967
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003968 return pll;
3969}
3970
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003971/**
3972 * intel_shared_dpll_start_config - start a new PLL staged config
3973 * @dev_priv: DRM device
3974 * @clear_pipes: mask of pipes that will have their PLLs freed
3975 *
3976 * Starts a new PLL staged config, copying the current config but
3977 * releasing the references of pipes specified in clear_pipes.
3978 */
3979static int intel_shared_dpll_start_config(struct drm_i915_private *dev_priv,
3980 unsigned clear_pipes)
3981{
3982 struct intel_shared_dpll *pll;
3983 enum intel_dpll_id i;
3984
3985 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3986 pll = &dev_priv->shared_dplls[i];
3987
3988 pll->new_config = kmemdup(&pll->config, sizeof pll->config,
3989 GFP_KERNEL);
3990 if (!pll->new_config)
3991 goto cleanup;
3992
3993 pll->new_config->crtc_mask &= ~clear_pipes;
3994 }
3995
3996 return 0;
3997
3998cleanup:
3999 while (--i >= 0) {
4000 pll = &dev_priv->shared_dplls[i];
Ander Conselvan de Oliveiraf354d732014-11-07 14:07:41 +02004001 kfree(pll->new_config);
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004002 pll->new_config = NULL;
4003 }
4004
4005 return -ENOMEM;
4006}
4007
4008static void intel_shared_dpll_commit(struct drm_i915_private *dev_priv)
4009{
4010 struct intel_shared_dpll *pll;
4011 enum intel_dpll_id i;
4012
4013 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4014 pll = &dev_priv->shared_dplls[i];
4015
4016 WARN_ON(pll->new_config == &pll->config);
4017
4018 pll->config = *pll->new_config;
4019 kfree(pll->new_config);
4020 pll->new_config = NULL;
4021 }
4022}
4023
4024static void intel_shared_dpll_abort_config(struct drm_i915_private *dev_priv)
4025{
4026 struct intel_shared_dpll *pll;
4027 enum intel_dpll_id i;
4028
4029 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4030 pll = &dev_priv->shared_dplls[i];
4031
4032 WARN_ON(pll->new_config == &pll->config);
4033
4034 kfree(pll->new_config);
4035 pll->new_config = NULL;
4036 }
4037}
4038
Daniel Vettera1520312013-05-03 11:49:50 +02004039static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07004040{
4041 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01004042 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07004043 u32 temp;
4044
4045 temp = I915_READ(dslreg);
4046 udelay(500);
4047 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07004048 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03004049 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07004050 }
4051}
4052
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004053static void skylake_pfit_enable(struct intel_crtc *crtc)
4054{
4055 struct drm_device *dev = crtc->base.dev;
4056 struct drm_i915_private *dev_priv = dev->dev_private;
4057 int pipe = crtc->pipe;
4058
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004059 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004060 I915_WRITE(PS_CTL(pipe), PS_ENABLE);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004061 I915_WRITE(PS_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4062 I915_WRITE(PS_WIN_SZ(pipe), crtc->config->pch_pfit.size);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004063 }
4064}
4065
Jesse Barnesb074cec2013-04-25 12:55:02 -07004066static void ironlake_pfit_enable(struct intel_crtc *crtc)
4067{
4068 struct drm_device *dev = crtc->base.dev;
4069 struct drm_i915_private *dev_priv = dev->dev_private;
4070 int pipe = crtc->pipe;
4071
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004072 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07004073 /* Force use of hard-coded filter coefficients
4074 * as some pre-programmed values are broken,
4075 * e.g. x201.
4076 */
4077 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
4078 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4079 PF_PIPE_SEL_IVB(pipe));
4080 else
4081 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004082 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4083 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08004084 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004085}
4086
Matt Roper4a3b8762014-12-23 10:41:51 -08004087static void intel_enable_sprite_planes(struct drm_crtc *crtc)
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004088{
4089 struct drm_device *dev = crtc->dev;
4090 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07004091 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004092 struct intel_plane *intel_plane;
4093
Matt Roperaf2b6532014-04-01 15:22:32 -07004094 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
4095 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004096 if (intel_plane->pipe == pipe)
4097 intel_plane_restore(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07004098 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004099}
4100
Matt Roper4a3b8762014-12-23 10:41:51 -08004101static void intel_disable_sprite_planes(struct drm_crtc *crtc)
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004102{
4103 struct drm_device *dev = crtc->dev;
4104 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07004105 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004106 struct intel_plane *intel_plane;
4107
Matt Roperaf2b6532014-04-01 15:22:32 -07004108 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
4109 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004110 if (intel_plane->pipe == pipe)
Matt Ropercf4c7c12014-12-04 10:27:42 -08004111 plane->funcs->disable_plane(plane);
Matt Roperaf2b6532014-04-01 15:22:32 -07004112 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004113}
4114
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004115void hsw_enable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004116{
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004117 struct drm_device *dev = crtc->base.dev;
4118 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid77e4532013-09-24 13:52:55 -03004119
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004120 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004121 return;
4122
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004123 /* We can only enable IPS after we enable a plane and wait for a vblank */
4124 intel_wait_for_vblank(dev, crtc->pipe);
4125
Paulo Zanonid77e4532013-09-24 13:52:55 -03004126 assert_plane_enabled(dev_priv, crtc->plane);
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004127 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004128 mutex_lock(&dev_priv->rps.hw_lock);
4129 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4130 mutex_unlock(&dev_priv->rps.hw_lock);
4131 /* Quoting Art Runyan: "its not safe to expect any particular
4132 * value in IPS_CTL bit 31 after enabling IPS through the
Jesse Barnese59150d2014-01-07 13:30:45 -08004133 * mailbox." Moreover, the mailbox may return a bogus state,
4134 * so we need to just enable it and continue on.
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004135 */
4136 } else {
4137 I915_WRITE(IPS_CTL, IPS_ENABLE);
4138 /* The bit only becomes 1 in the next vblank, so this wait here
4139 * is essentially intel_wait_for_vblank. If we don't have this
4140 * and don't wait for vblanks until the end of crtc_enable, then
4141 * the HW state readout code will complain that the expected
4142 * IPS_CTL value is not the one we read. */
4143 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
4144 DRM_ERROR("Timed out waiting for IPS enable\n");
4145 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004146}
4147
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004148void hsw_disable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004149{
4150 struct drm_device *dev = crtc->base.dev;
4151 struct drm_i915_private *dev_priv = dev->dev_private;
4152
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004153 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004154 return;
4155
4156 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004157 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004158 mutex_lock(&dev_priv->rps.hw_lock);
4159 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4160 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004161 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
4162 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
4163 DRM_ERROR("Timed out waiting for IPS disable\n");
Jesse Barnese59150d2014-01-07 13:30:45 -08004164 } else {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004165 I915_WRITE(IPS_CTL, 0);
Jesse Barnese59150d2014-01-07 13:30:45 -08004166 POSTING_READ(IPS_CTL);
4167 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004168
4169 /* We need to wait for a vblank before we can disable the plane. */
4170 intel_wait_for_vblank(dev, crtc->pipe);
4171}
4172
4173/** Loads the palette/gamma unit for the CRTC with the prepared values */
4174static void intel_crtc_load_lut(struct drm_crtc *crtc)
4175{
4176 struct drm_device *dev = crtc->dev;
4177 struct drm_i915_private *dev_priv = dev->dev_private;
4178 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4179 enum pipe pipe = intel_crtc->pipe;
4180 int palreg = PALETTE(pipe);
4181 int i;
4182 bool reenable_ips = false;
4183
4184 /* The clocks have to be on to load the palette. */
4185 if (!crtc->enabled || !intel_crtc->active)
4186 return;
4187
4188 if (!HAS_PCH_SPLIT(dev_priv->dev)) {
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03004189 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI))
Paulo Zanonid77e4532013-09-24 13:52:55 -03004190 assert_dsi_pll_enabled(dev_priv);
4191 else
4192 assert_pll_enabled(dev_priv, pipe);
4193 }
4194
4195 /* use legacy palette for Ironlake */
Sonika Jindal7a1db492014-07-22 11:18:27 +05304196 if (!HAS_GMCH_DISPLAY(dev))
Paulo Zanonid77e4532013-09-24 13:52:55 -03004197 palreg = LGC_PALETTE(pipe);
4198
4199 /* Workaround : Do not read or write the pipe palette/gamma data while
4200 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
4201 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004202 if (IS_HASWELL(dev) && intel_crtc->config->ips_enabled &&
Paulo Zanonid77e4532013-09-24 13:52:55 -03004203 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
4204 GAMMA_MODE_MODE_SPLIT)) {
4205 hsw_disable_ips(intel_crtc);
4206 reenable_ips = true;
4207 }
4208
4209 for (i = 0; i < 256; i++) {
4210 I915_WRITE(palreg + 4 * i,
4211 (intel_crtc->lut_r[i] << 16) |
4212 (intel_crtc->lut_g[i] << 8) |
4213 intel_crtc->lut_b[i]);
4214 }
4215
4216 if (reenable_ips)
4217 hsw_enable_ips(intel_crtc);
4218}
4219
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004220static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
4221{
4222 if (!enable && intel_crtc->overlay) {
4223 struct drm_device *dev = intel_crtc->base.dev;
4224 struct drm_i915_private *dev_priv = dev->dev_private;
4225
4226 mutex_lock(&dev->struct_mutex);
4227 dev_priv->mm.interruptible = false;
4228 (void) intel_overlay_switch_off(intel_crtc->overlay);
4229 dev_priv->mm.interruptible = true;
4230 mutex_unlock(&dev->struct_mutex);
4231 }
4232
4233 /* Let userspace switch the overlay on again. In most cases userspace
4234 * has to recompute where to put it anyway.
4235 */
4236}
4237
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004238static void intel_crtc_enable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004239{
4240 struct drm_device *dev = crtc->dev;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004241 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4242 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004243
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03004244 intel_enable_primary_hw_plane(crtc->primary, crtc);
Matt Roper4a3b8762014-12-23 10:41:51 -08004245 intel_enable_sprite_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004246 intel_crtc_update_cursor(crtc, true);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004247 intel_crtc_dpms_overlay(intel_crtc, true);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004248
4249 hsw_enable_ips(intel_crtc);
4250
4251 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004252 intel_fbc_update(dev);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004253 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf99d7062014-06-19 16:01:59 +02004254
4255 /*
4256 * FIXME: Once we grow proper nuclear flip support out of this we need
4257 * to compute the mask of flip planes precisely. For the time being
4258 * consider this a flip from a NULL plane.
4259 */
4260 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004261}
4262
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004263static void intel_crtc_disable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004264{
4265 struct drm_device *dev = crtc->dev;
4266 struct drm_i915_private *dev_priv = dev->dev_private;
4267 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4268 int pipe = intel_crtc->pipe;
4269 int plane = intel_crtc->plane;
4270
4271 intel_crtc_wait_for_pending_flips(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004272
4273 if (dev_priv->fbc.plane == plane)
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004274 intel_fbc_disable(dev);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004275
4276 hsw_disable_ips(intel_crtc);
4277
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004278 intel_crtc_dpms_overlay(intel_crtc, false);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004279 intel_crtc_update_cursor(crtc, false);
Matt Roper4a3b8762014-12-23 10:41:51 -08004280 intel_disable_sprite_planes(crtc);
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03004281 intel_disable_primary_hw_plane(crtc->primary, crtc);
Ville Syrjäläf98551a2014-05-22 17:48:06 +03004282
Daniel Vetterf99d7062014-06-19 16:01:59 +02004283 /*
4284 * FIXME: Once we grow proper nuclear flip support out of this we need
4285 * to compute the mask of flip planes precisely. For the time being
4286 * consider this a flip to a NULL plane.
4287 */
4288 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004289}
4290
Jesse Barnesf67a5592011-01-05 10:31:48 -08004291static void ironlake_crtc_enable(struct drm_crtc *crtc)
4292{
4293 struct drm_device *dev = crtc->dev;
4294 struct drm_i915_private *dev_priv = dev->dev_private;
4295 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004296 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004297 int pipe = intel_crtc->pipe;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004298
Daniel Vetter08a48462012-07-02 11:43:47 +02004299 WARN_ON(!crtc->enabled);
4300
Jesse Barnesf67a5592011-01-05 10:31:48 -08004301 if (intel_crtc->active)
4302 return;
4303
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004304 if (intel_crtc->config->has_pch_encoder)
Daniel Vetterb14b1052014-04-24 23:55:13 +02004305 intel_prepare_shared_dpll(intel_crtc);
4306
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004307 if (intel_crtc->config->has_dp_encoder)
Daniel Vetter29407aa2014-04-24 23:55:08 +02004308 intel_dp_set_m_n(intel_crtc);
4309
4310 intel_set_pipe_timings(intel_crtc);
4311
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004312 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter29407aa2014-04-24 23:55:08 +02004313 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004314 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004315 }
4316
4317 ironlake_set_pipeconf(crtc);
4318
Jesse Barnesf67a5592011-01-05 10:31:48 -08004319 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004320
Daniel Vettera72e4c92014-09-30 10:56:47 +02004321 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4322 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni86642812013-04-12 17:57:57 -03004323
Daniel Vetterf6736a12013-06-05 13:34:30 +02004324 for_each_encoder_on_crtc(dev, crtc, encoder)
Daniel Vetter952735e2013-06-05 13:34:27 +02004325 if (encoder->pre_enable)
4326 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004327
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004328 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02004329 /* Note: FDI PLL enabling _must_ be done before we enable the
4330 * cpu pipes, hence this is separate from all the other fdi/pch
4331 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02004332 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02004333 } else {
4334 assert_fdi_tx_disabled(dev_priv, pipe);
4335 assert_fdi_rx_disabled(dev_priv, pipe);
4336 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004337
Jesse Barnesb074cec2013-04-25 12:55:02 -07004338 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004339
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02004340 /*
4341 * On ILK+ LUT must be loaded before the pipe is running but with
4342 * clocks enabled
4343 */
4344 intel_crtc_load_lut(crtc);
4345
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004346 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004347 intel_enable_pipe(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004348
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004349 if (intel_crtc->config->has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08004350 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004351
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004352 assert_vblank_disabled(crtc);
4353 drm_crtc_vblank_on(crtc);
4354
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004355 for_each_encoder_on_crtc(dev, crtc, encoder)
4356 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02004357
4358 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02004359 cpt_verify_modeset(dev, intel_crtc->pipe);
Daniel Vetter6ce94102012-10-04 19:20:03 +02004360
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004361 intel_crtc_enable_planes(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004362}
4363
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004364/* IPS only exists on ULT machines and is tied to pipe A. */
4365static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4366{
Damien Lespiauf5adf942013-06-24 18:29:34 +01004367 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004368}
4369
Paulo Zanonie4916942013-09-20 16:21:19 -03004370/*
4371 * This implements the workaround described in the "notes" section of the mode
4372 * set sequence documentation. When going from no pipes or single pipe to
4373 * multiple pipes, and planes are enabled after the pipe, we need to wait at
4374 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
4375 */
4376static void haswell_mode_set_planes_workaround(struct intel_crtc *crtc)
4377{
4378 struct drm_device *dev = crtc->base.dev;
4379 struct intel_crtc *crtc_it, *other_active_crtc = NULL;
4380
4381 /* We want to get the other_active_crtc only if there's only 1 other
4382 * active crtc. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004383 for_each_intel_crtc(dev, crtc_it) {
Paulo Zanonie4916942013-09-20 16:21:19 -03004384 if (!crtc_it->active || crtc_it == crtc)
4385 continue;
4386
4387 if (other_active_crtc)
4388 return;
4389
4390 other_active_crtc = crtc_it;
4391 }
4392 if (!other_active_crtc)
4393 return;
4394
4395 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4396 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4397}
4398
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004399static void haswell_crtc_enable(struct drm_crtc *crtc)
4400{
4401 struct drm_device *dev = crtc->dev;
4402 struct drm_i915_private *dev_priv = dev->dev_private;
4403 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4404 struct intel_encoder *encoder;
4405 int pipe = intel_crtc->pipe;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004406
4407 WARN_ON(!crtc->enabled);
4408
4409 if (intel_crtc->active)
4410 return;
4411
Daniel Vetterdf8ad702014-06-25 22:02:03 +03004412 if (intel_crtc_to_shared_dpll(intel_crtc))
4413 intel_enable_shared_dpll(intel_crtc);
4414
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004415 if (intel_crtc->config->has_dp_encoder)
Daniel Vetter229fca92014-04-24 23:55:09 +02004416 intel_dp_set_m_n(intel_crtc);
4417
4418 intel_set_pipe_timings(intel_crtc);
4419
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004420 if (intel_crtc->config->cpu_transcoder != TRANSCODER_EDP) {
4421 I915_WRITE(PIPE_MULT(intel_crtc->config->cpu_transcoder),
4422 intel_crtc->config->pixel_multiplier - 1);
Clint Taylorebb69c92014-09-30 10:30:22 -07004423 }
4424
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004425 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter229fca92014-04-24 23:55:09 +02004426 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004427 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter229fca92014-04-24 23:55:09 +02004428 }
4429
4430 haswell_set_pipeconf(crtc);
4431
4432 intel_set_pipe_csc(crtc);
4433
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004434 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004435
Daniel Vettera72e4c92014-09-30 10:56:47 +02004436 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004437 for_each_encoder_on_crtc(dev, crtc, encoder)
4438 if (encoder->pre_enable)
4439 encoder->pre_enable(encoder);
4440
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004441 if (intel_crtc->config->has_pch_encoder) {
Daniel Vettera72e4c92014-09-30 10:56:47 +02004442 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4443 true);
Imre Deak4fe94672014-06-25 22:01:49 +03004444 dev_priv->display.fdi_link_train(crtc);
4445 }
4446
Paulo Zanoni1f544382012-10-24 11:32:00 -02004447 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004448
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004449 if (IS_SKYLAKE(dev))
4450 skylake_pfit_enable(intel_crtc);
4451 else
4452 ironlake_pfit_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004453
4454 /*
4455 * On ILK+ LUT must be loaded before the pipe is running but with
4456 * clocks enabled
4457 */
4458 intel_crtc_load_lut(crtc);
4459
Paulo Zanoni1f544382012-10-24 11:32:00 -02004460 intel_ddi_set_pipe_settings(crtc);
Damien Lespiau8228c252013-03-07 15:30:27 +00004461 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004462
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004463 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004464 intel_enable_pipe(intel_crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004465
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004466 if (intel_crtc->config->has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004467 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004468
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004469 if (intel_crtc->config->dp_encoder_is_mst)
Dave Airlie0e32b392014-05-02 14:02:48 +10004470 intel_ddi_set_vc_payload_alloc(crtc, true);
4471
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004472 assert_vblank_disabled(crtc);
4473 drm_crtc_vblank_on(crtc);
4474
Jani Nikula8807e552013-08-30 19:40:32 +03004475 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004476 encoder->enable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004477 intel_opregion_notify_encoder(encoder, true);
4478 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004479
Paulo Zanonie4916942013-09-20 16:21:19 -03004480 /* If we change the relative order between pipe/planes enabling, we need
4481 * to change the workaround. */
4482 haswell_mode_set_planes_workaround(intel_crtc);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004483 intel_crtc_enable_planes(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004484}
4485
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004486static void skylake_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) {
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004495 I915_WRITE(PS_CTL(pipe), 0);
4496 I915_WRITE(PS_WIN_POS(pipe), 0);
4497 I915_WRITE(PS_WIN_SZ(pipe), 0);
4498 }
4499}
4500
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004501static void ironlake_pfit_disable(struct intel_crtc *crtc)
4502{
4503 struct drm_device *dev = crtc->base.dev;
4504 struct drm_i915_private *dev_priv = dev->dev_private;
4505 int pipe = crtc->pipe;
4506
4507 /* To avoid upsetting the power well on haswell only disable the pfit if
4508 * it's in use. The hw state code will make sure we get this right. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004509 if (crtc->config->pch_pfit.enabled) {
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004510 I915_WRITE(PF_CTL(pipe), 0);
4511 I915_WRITE(PF_WIN_POS(pipe), 0);
4512 I915_WRITE(PF_WIN_SZ(pipe), 0);
4513 }
4514}
4515
Jesse Barnes6be4a602010-09-10 10:26:01 -07004516static void ironlake_crtc_disable(struct drm_crtc *crtc)
4517{
4518 struct drm_device *dev = crtc->dev;
4519 struct drm_i915_private *dev_priv = dev->dev_private;
4520 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004521 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004522 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01004523 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004524
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004525 if (!intel_crtc->active)
4526 return;
4527
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004528 intel_crtc_disable_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004529
Daniel Vetterea9d7582012-07-10 10:42:52 +02004530 for_each_encoder_on_crtc(dev, crtc, encoder)
4531 encoder->disable(encoder);
4532
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004533 drm_crtc_vblank_off(crtc);
4534 assert_vblank_disabled(crtc);
4535
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004536 if (intel_crtc->config->has_pch_encoder)
Daniel Vettera72e4c92014-09-30 10:56:47 +02004537 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
Daniel Vetterd925c592013-06-05 13:34:04 +02004538
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03004539 intel_disable_pipe(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004540
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004541 ironlake_pfit_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004542
Daniel Vetterbf49ec82012-09-06 22:15:40 +02004543 for_each_encoder_on_crtc(dev, crtc, encoder)
4544 if (encoder->post_disable)
4545 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004546
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004547 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterd925c592013-06-05 13:34:04 +02004548 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004549
Daniel Vetterd925c592013-06-05 13:34:04 +02004550 ironlake_disable_pch_transcoder(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004551
Daniel Vetterd925c592013-06-05 13:34:04 +02004552 if (HAS_PCH_CPT(dev)) {
4553 /* disable TRANS_DP_CTL */
4554 reg = TRANS_DP_CTL(pipe);
4555 temp = I915_READ(reg);
4556 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
4557 TRANS_DP_PORT_SEL_MASK);
4558 temp |= TRANS_DP_PORT_SEL_NONE;
4559 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004560
Daniel Vetterd925c592013-06-05 13:34:04 +02004561 /* disable DPLL_SEL */
4562 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02004563 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
Daniel Vetterd925c592013-06-05 13:34:04 +02004564 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004565 }
Daniel Vetterd925c592013-06-05 13:34:04 +02004566
4567 /* disable PCH DPLL */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004568 intel_disable_shared_dpll(intel_crtc);
Daniel Vetterd925c592013-06-05 13:34:04 +02004569
4570 ironlake_fdi_pll_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004571 }
4572
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004573 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004574 intel_update_watermarks(crtc);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004575
4576 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004577 intel_fbc_update(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004578 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004579}
4580
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004581static void haswell_crtc_disable(struct drm_crtc *crtc)
4582{
4583 struct drm_device *dev = crtc->dev;
4584 struct drm_i915_private *dev_priv = dev->dev_private;
4585 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4586 struct intel_encoder *encoder;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004587 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004588
4589 if (!intel_crtc->active)
4590 return;
4591
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004592 intel_crtc_disable_planes(crtc);
Ville Syrjälädda9a662013-09-19 17:00:37 -03004593
Jani Nikula8807e552013-08-30 19:40:32 +03004594 for_each_encoder_on_crtc(dev, crtc, encoder) {
4595 intel_opregion_notify_encoder(encoder, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004596 encoder->disable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004597 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004598
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004599 drm_crtc_vblank_off(crtc);
4600 assert_vblank_disabled(crtc);
4601
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004602 if (intel_crtc->config->has_pch_encoder)
Daniel Vettera72e4c92014-09-30 10:56:47 +02004603 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4604 false);
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03004605 intel_disable_pipe(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004606
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004607 if (intel_crtc->config->dp_encoder_is_mst)
Ville Syrjäläa4bf2142014-08-18 21:27:34 +03004608 intel_ddi_set_vc_payload_alloc(crtc, false);
4609
Paulo Zanoniad80a812012-10-24 16:06:19 -02004610 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004611
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004612 if (IS_SKYLAKE(dev))
4613 skylake_pfit_disable(intel_crtc);
4614 else
4615 ironlake_pfit_disable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004616
Paulo Zanoni1f544382012-10-24 11:32:00 -02004617 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004618
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004619 if (intel_crtc->config->has_pch_encoder) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02004620 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02004621 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02004622 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004623
Imre Deak97b040a2014-06-25 22:01:50 +03004624 for_each_encoder_on_crtc(dev, crtc, encoder)
4625 if (encoder->post_disable)
4626 encoder->post_disable(encoder);
4627
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004628 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004629 intel_update_watermarks(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004630
4631 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004632 intel_fbc_update(dev);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004633 mutex_unlock(&dev->struct_mutex);
Daniel Vetterdf8ad702014-06-25 22:02:03 +03004634
4635 if (intel_crtc_to_shared_dpll(intel_crtc))
4636 intel_disable_shared_dpll(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004637}
4638
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004639static void ironlake_crtc_off(struct drm_crtc *crtc)
4640{
4641 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004642 intel_put_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004643}
4644
Paulo Zanoni6441ab52012-10-05 12:05:58 -03004645
Jesse Barnes2dd24552013-04-25 12:55:01 -07004646static void i9xx_pfit_enable(struct intel_crtc *crtc)
4647{
4648 struct drm_device *dev = crtc->base.dev;
4649 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004650 struct intel_crtc_state *pipe_config = crtc->config;
Jesse Barnes2dd24552013-04-25 12:55:01 -07004651
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02004652 if (!pipe_config->gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07004653 return;
4654
Daniel Vetterc0b03412013-05-28 12:05:54 +02004655 /*
4656 * The panel fitter should only be adjusted whilst the pipe is disabled,
4657 * according to register description and PRM.
4658 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07004659 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
4660 assert_pipe_disabled(dev_priv, crtc->pipe);
4661
Jesse Barnesb074cec2013-04-25 12:55:02 -07004662 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
4663 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02004664
4665 /* Border color in case we don't scale up to the full screen. Black by
4666 * default, change to something else for debugging. */
4667 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07004668}
4669
Dave Airlied05410f2014-06-05 13:22:59 +10004670static enum intel_display_power_domain port_to_power_domain(enum port port)
4671{
4672 switch (port) {
4673 case PORT_A:
4674 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
4675 case PORT_B:
4676 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
4677 case PORT_C:
4678 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
4679 case PORT_D:
4680 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
4681 default:
4682 WARN_ON_ONCE(1);
4683 return POWER_DOMAIN_PORT_OTHER;
4684 }
4685}
4686
Imre Deak77d22dc2014-03-05 16:20:52 +02004687#define for_each_power_domain(domain, mask) \
4688 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
4689 if ((1 << (domain)) & (mask))
4690
Imre Deak319be8a2014-03-04 19:22:57 +02004691enum intel_display_power_domain
4692intel_display_port_power_domain(struct intel_encoder *intel_encoder)
Imre Deak77d22dc2014-03-05 16:20:52 +02004693{
Imre Deak319be8a2014-03-04 19:22:57 +02004694 struct drm_device *dev = intel_encoder->base.dev;
4695 struct intel_digital_port *intel_dig_port;
4696
4697 switch (intel_encoder->type) {
4698 case INTEL_OUTPUT_UNKNOWN:
4699 /* Only DDI platforms should ever use this output type */
4700 WARN_ON_ONCE(!HAS_DDI(dev));
4701 case INTEL_OUTPUT_DISPLAYPORT:
4702 case INTEL_OUTPUT_HDMI:
4703 case INTEL_OUTPUT_EDP:
4704 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
Dave Airlied05410f2014-06-05 13:22:59 +10004705 return port_to_power_domain(intel_dig_port->port);
Dave Airlie0e32b392014-05-02 14:02:48 +10004706 case INTEL_OUTPUT_DP_MST:
4707 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
4708 return port_to_power_domain(intel_dig_port->port);
Imre Deak319be8a2014-03-04 19:22:57 +02004709 case INTEL_OUTPUT_ANALOG:
4710 return POWER_DOMAIN_PORT_CRT;
4711 case INTEL_OUTPUT_DSI:
4712 return POWER_DOMAIN_PORT_DSI;
4713 default:
4714 return POWER_DOMAIN_PORT_OTHER;
4715 }
4716}
4717
4718static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
4719{
4720 struct drm_device *dev = crtc->dev;
4721 struct intel_encoder *intel_encoder;
4722 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4723 enum pipe pipe = intel_crtc->pipe;
Imre Deak77d22dc2014-03-05 16:20:52 +02004724 unsigned long mask;
4725 enum transcoder transcoder;
4726
4727 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
4728
4729 mask = BIT(POWER_DOMAIN_PIPE(pipe));
4730 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004731 if (intel_crtc->config->pch_pfit.enabled ||
4732 intel_crtc->config->pch_pfit.force_thru)
Imre Deak77d22dc2014-03-05 16:20:52 +02004733 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
4734
Imre Deak319be8a2014-03-04 19:22:57 +02004735 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4736 mask |= BIT(intel_display_port_power_domain(intel_encoder));
4737
Imre Deak77d22dc2014-03-05 16:20:52 +02004738 return mask;
4739}
4740
Imre Deak77d22dc2014-03-05 16:20:52 +02004741static void modeset_update_crtc_power_domains(struct drm_device *dev)
4742{
4743 struct drm_i915_private *dev_priv = dev->dev_private;
4744 unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
4745 struct intel_crtc *crtc;
4746
4747 /*
4748 * First get all needed power domains, then put all unneeded, to avoid
4749 * any unnecessary toggling of the power wells.
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 if (!crtc->base.enabled)
4755 continue;
4756
Imre Deak319be8a2014-03-04 19:22:57 +02004757 pipe_domains[crtc->pipe] = get_crtc_power_domains(&crtc->base);
Imre Deak77d22dc2014-03-05 16:20:52 +02004758
4759 for_each_power_domain(domain, pipe_domains[crtc->pipe])
4760 intel_display_power_get(dev_priv, domain);
4761 }
4762
Ville Syrjälä50f6e502014-11-06 14:49:12 +02004763 if (dev_priv->display.modeset_global_resources)
4764 dev_priv->display.modeset_global_resources(dev);
4765
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004766 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004767 enum intel_display_power_domain domain;
4768
4769 for_each_power_domain(domain, crtc->enabled_power_domains)
4770 intel_display_power_put(dev_priv, domain);
4771
4772 crtc->enabled_power_domains = pipe_domains[crtc->pipe];
4773 }
4774
4775 intel_display_set_init_power(dev_priv, false);
4776}
4777
Ville Syrjälädfcab172014-06-13 13:37:47 +03004778/* returns HPLL frequency in kHz */
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004779static int valleyview_get_vco(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004780{
Jesse Barnes586f49d2013-11-04 16:06:59 -08004781 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
Jesse Barnes30a970c2013-11-04 13:48:12 -08004782
Jesse Barnes586f49d2013-11-04 16:06:59 -08004783 /* Obtain SKU information */
4784 mutex_lock(&dev_priv->dpio_lock);
4785 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
4786 CCK_FUSE_HPLL_FREQ_MASK;
4787 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004788
Ville Syrjälädfcab172014-06-13 13:37:47 +03004789 return vco_freq[hpll_freq] * 1000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004790}
4791
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004792static void vlv_update_cdclk(struct drm_device *dev)
4793{
4794 struct drm_i915_private *dev_priv = dev->dev_private;
4795
4796 dev_priv->vlv_cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
Ville Syrjälä43dc52c2014-10-07 17:41:20 +03004797 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004798 dev_priv->vlv_cdclk_freq);
4799
4800 /*
4801 * Program the gmbus_freq based on the cdclk frequency.
4802 * BSpec erroneously claims we should aim for 4MHz, but
4803 * in fact 1MHz is the correct frequency.
4804 */
Ville Syrjälä6be1e3d2014-10-16 20:52:31 +03004805 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->vlv_cdclk_freq, 1000));
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004806}
4807
Jesse Barnes30a970c2013-11-04 13:48:12 -08004808/* Adjust CDclk dividers to allow high res or save power if possible */
4809static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
4810{
4811 struct drm_i915_private *dev_priv = dev->dev_private;
4812 u32 val, cmd;
4813
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03004814 WARN_ON(dev_priv->display.get_display_clock_speed(dev) != dev_priv->vlv_cdclk_freq);
Imre Deakd60c4472014-03-27 17:45:10 +02004815
Ville Syrjälädfcab172014-06-13 13:37:47 +03004816 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
Jesse Barnes30a970c2013-11-04 13:48:12 -08004817 cmd = 2;
Ville Syrjälädfcab172014-06-13 13:37:47 +03004818 else if (cdclk == 266667)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004819 cmd = 1;
4820 else
4821 cmd = 0;
4822
4823 mutex_lock(&dev_priv->rps.hw_lock);
4824 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4825 val &= ~DSPFREQGUAR_MASK;
4826 val |= (cmd << DSPFREQGUAR_SHIFT);
4827 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4828 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4829 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
4830 50)) {
4831 DRM_ERROR("timed out waiting for CDclk change\n");
4832 }
4833 mutex_unlock(&dev_priv->rps.hw_lock);
4834
Ville Syrjälädfcab172014-06-13 13:37:47 +03004835 if (cdclk == 400000) {
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03004836 u32 divider;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004837
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03004838 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004839
4840 mutex_lock(&dev_priv->dpio_lock);
4841 /* adjust cdclk divider */
4842 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
Ville Syrjälä9cf33db2014-06-13 13:37:48 +03004843 val &= ~DISPLAY_FREQUENCY_VALUES;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004844 val |= divider;
4845 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
Ville Syrjäläa877e802014-06-13 13:37:52 +03004846
4847 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
4848 DISPLAY_FREQUENCY_STATUS) == (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
4849 50))
4850 DRM_ERROR("timed out waiting for CDclk change\n");
Jesse Barnes30a970c2013-11-04 13:48:12 -08004851 mutex_unlock(&dev_priv->dpio_lock);
4852 }
4853
4854 mutex_lock(&dev_priv->dpio_lock);
4855 /* adjust self-refresh exit latency value */
4856 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
4857 val &= ~0x7f;
4858
4859 /*
4860 * For high bandwidth configs, we set a higher latency in the bunit
4861 * so that the core display fetch happens in time to avoid underruns.
4862 */
Ville Syrjälädfcab172014-06-13 13:37:47 +03004863 if (cdclk == 400000)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004864 val |= 4500 / 250; /* 4.5 usec */
4865 else
4866 val |= 3000 / 250; /* 3.0 usec */
4867 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
4868 mutex_unlock(&dev_priv->dpio_lock);
4869
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004870 vlv_update_cdclk(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004871}
4872
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004873static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
4874{
4875 struct drm_i915_private *dev_priv = dev->dev_private;
4876 u32 val, cmd;
4877
4878 WARN_ON(dev_priv->display.get_display_clock_speed(dev) != dev_priv->vlv_cdclk_freq);
4879
4880 switch (cdclk) {
4881 case 400000:
4882 cmd = 3;
4883 break;
4884 case 333333:
4885 case 320000:
4886 cmd = 2;
4887 break;
4888 case 266667:
4889 cmd = 1;
4890 break;
4891 case 200000:
4892 cmd = 0;
4893 break;
4894 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01004895 MISSING_CASE(cdclk);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004896 return;
4897 }
4898
4899 mutex_lock(&dev_priv->rps.hw_lock);
4900 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4901 val &= ~DSPFREQGUAR_MASK_CHV;
4902 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
4903 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4904 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4905 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
4906 50)) {
4907 DRM_ERROR("timed out waiting for CDclk change\n");
4908 }
4909 mutex_unlock(&dev_priv->rps.hw_lock);
4910
4911 vlv_update_cdclk(dev);
4912}
4913
Jesse Barnes30a970c2013-11-04 13:48:12 -08004914static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
4915 int max_pixclk)
4916{
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03004917 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03004918
Ville Syrjäläd49a3402014-06-28 02:03:58 +03004919 /* FIXME: Punit isn't quite ready yet */
4920 if (IS_CHERRYVIEW(dev_priv->dev))
4921 return 400000;
4922
Jesse Barnes30a970c2013-11-04 13:48:12 -08004923 /*
4924 * Really only a few cases to deal with, as only 4 CDclks are supported:
4925 * 200MHz
4926 * 267MHz
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03004927 * 320/333MHz (depends on HPLL freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004928 * 400MHz
4929 * So we check to see whether we're above 90% of the lower bin and
4930 * adjust if needed.
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03004931 *
4932 * We seem to get an unstable or solid color picture at 200MHz.
4933 * Not sure what's wrong. For now use 200MHz only when all pipes
4934 * are off.
Jesse Barnes30a970c2013-11-04 13:48:12 -08004935 */
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03004936 if (max_pixclk > freq_320*9/10)
Ville Syrjälädfcab172014-06-13 13:37:47 +03004937 return 400000;
4938 else if (max_pixclk > 266667*9/10)
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03004939 return freq_320;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03004940 else if (max_pixclk > 0)
Ville Syrjälädfcab172014-06-13 13:37:47 +03004941 return 266667;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03004942 else
4943 return 200000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004944}
4945
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004946/* compute the max pixel clock for new configuration */
4947static int intel_mode_max_pixclk(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004948{
4949 struct drm_device *dev = dev_priv->dev;
4950 struct intel_crtc *intel_crtc;
4951 int max_pixclk = 0;
4952
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004953 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004954 if (intel_crtc->new_enabled)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004955 max_pixclk = max(max_pixclk,
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02004956 intel_crtc->new_config->base.adjusted_mode.crtc_clock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004957 }
4958
4959 return max_pixclk;
4960}
4961
4962static void valleyview_modeset_global_pipes(struct drm_device *dev,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004963 unsigned *prepare_pipes)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004964{
4965 struct drm_i915_private *dev_priv = dev->dev_private;
4966 struct intel_crtc *intel_crtc;
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
Imre Deakd60c4472014-03-27 17:45:10 +02004969 if (valleyview_calc_cdclk(dev_priv, max_pixclk) ==
4970 dev_priv->vlv_cdclk_freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004971 return;
4972
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004973 /* disable/enable all currently active pipes while we change cdclk */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004974 for_each_intel_crtc(dev, intel_crtc)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004975 if (intel_crtc->base.enabled)
4976 *prepare_pipes |= (1 << intel_crtc->pipe);
4977}
4978
4979static void valleyview_modeset_global_resources(struct drm_device *dev)
4980{
4981 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004982 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004983 int req_cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
4984
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004985 if (req_cdclk != dev_priv->vlv_cdclk_freq) {
Imre Deak738c05c2014-11-19 16:25:37 +02004986 /*
4987 * FIXME: We can end up here with all power domains off, yet
4988 * with a CDCLK frequency other than the minimum. To account
4989 * for this take the PIPE-A power domain, which covers the HW
4990 * blocks needed for the following programming. This can be
4991 * removed once it's guaranteed that we get here either with
4992 * the minimum CDCLK set, or the required power domains
4993 * enabled.
4994 */
4995 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
4996
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004997 if (IS_CHERRYVIEW(dev))
4998 cherryview_set_cdclk(dev, req_cdclk);
4999 else
5000 valleyview_set_cdclk(dev, req_cdclk);
Imre Deak738c05c2014-11-19 16:25:37 +02005001
5002 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005003 }
Jesse Barnes30a970c2013-11-04 13:48:12 -08005004}
5005
Jesse Barnes89b667f2013-04-18 14:51:36 -07005006static void valleyview_crtc_enable(struct drm_crtc *crtc)
5007{
5008 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02005009 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005010 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5011 struct intel_encoder *encoder;
5012 int pipe = intel_crtc->pipe;
Jani Nikula23538ef2013-08-27 15:12:22 +03005013 bool is_dsi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07005014
5015 WARN_ON(!crtc->enabled);
5016
5017 if (intel_crtc->active)
5018 return;
5019
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005020 is_dsi = intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI);
Shobhit Kumar8525a232014-06-25 12:20:39 +05305021
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005022 if (!is_dsi) {
5023 if (IS_CHERRYVIEW(dev))
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005024 chv_prepare_pll(intel_crtc, intel_crtc->config);
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005025 else
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005026 vlv_prepare_pll(intel_crtc, intel_crtc->config);
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005027 }
Daniel Vetter5b18e572014-04-24 23:55:06 +02005028
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005029 if (intel_crtc->config->has_dp_encoder)
Daniel Vetter5b18e572014-04-24 23:55:06 +02005030 intel_dp_set_m_n(intel_crtc);
5031
5032 intel_set_pipe_timings(intel_crtc);
5033
Ville Syrjäläc14b0482014-10-16 20:52:34 +03005034 if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) {
5035 struct drm_i915_private *dev_priv = dev->dev_private;
5036
5037 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
5038 I915_WRITE(CHV_CANVAS(pipe), 0);
5039 }
5040
Daniel Vetter5b18e572014-04-24 23:55:06 +02005041 i9xx_set_pipeconf(intel_crtc);
5042
Jesse Barnes89b667f2013-04-18 14:51:36 -07005043 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07005044
Daniel Vettera72e4c92014-09-30 10:56:47 +02005045 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005046
Jesse Barnes89b667f2013-04-18 14:51:36 -07005047 for_each_encoder_on_crtc(dev, crtc, encoder)
5048 if (encoder->pre_pll_enable)
5049 encoder->pre_pll_enable(encoder);
5050
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005051 if (!is_dsi) {
5052 if (IS_CHERRYVIEW(dev))
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005053 chv_enable_pll(intel_crtc, intel_crtc->config);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005054 else
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005055 vlv_enable_pll(intel_crtc, intel_crtc->config);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005056 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07005057
5058 for_each_encoder_on_crtc(dev, crtc, encoder)
5059 if (encoder->pre_enable)
5060 encoder->pre_enable(encoder);
5061
Jesse Barnes2dd24552013-04-25 12:55:01 -07005062 i9xx_pfit_enable(intel_crtc);
5063
Ville Syrjälä63cbb072013-06-04 13:48:59 +03005064 intel_crtc_load_lut(crtc);
5065
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005066 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02005067 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02005068
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03005069 assert_vblank_disabled(crtc);
5070 drm_crtc_vblank_on(crtc);
5071
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005072 for_each_encoder_on_crtc(dev, crtc, encoder)
5073 encoder->enable(encoder);
5074
Ville Syrjälä9ab04602014-05-08 19:23:14 +03005075 intel_crtc_enable_planes(crtc);
Daniel Vetterd40d9182014-05-21 11:45:40 +02005076
Ville Syrjälä56b80e12014-05-16 19:40:22 +03005077 /* Underruns don't raise interrupts, so check manually. */
Daniel Vettera72e4c92014-09-30 10:56:47 +02005078 i9xx_check_fifo_underruns(dev_priv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005079}
5080
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005081static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
5082{
5083 struct drm_device *dev = crtc->base.dev;
5084 struct drm_i915_private *dev_priv = dev->dev_private;
5085
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005086 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
5087 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005088}
5089
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005090static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005091{
5092 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02005093 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08005094 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005095 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08005096 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08005097
Daniel Vetter08a48462012-07-02 11:43:47 +02005098 WARN_ON(!crtc->enabled);
5099
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005100 if (intel_crtc->active)
5101 return;
5102
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005103 i9xx_set_pll_dividers(intel_crtc);
5104
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005105 if (intel_crtc->config->has_dp_encoder)
Daniel Vetter5b18e572014-04-24 23:55:06 +02005106 intel_dp_set_m_n(intel_crtc);
5107
5108 intel_set_pipe_timings(intel_crtc);
5109
Daniel Vetter5b18e572014-04-24 23:55:06 +02005110 i9xx_set_pipeconf(intel_crtc);
5111
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005112 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01005113
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005114 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005115 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005116
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02005117 for_each_encoder_on_crtc(dev, crtc, encoder)
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02005118 if (encoder->pre_enable)
5119 encoder->pre_enable(encoder);
5120
Daniel Vetterf6736a12013-06-05 13:34:30 +02005121 i9xx_enable_pll(intel_crtc);
5122
Jesse Barnes2dd24552013-04-25 12:55:01 -07005123 i9xx_pfit_enable(intel_crtc);
5124
Ville Syrjälä63cbb072013-06-04 13:48:59 +03005125 intel_crtc_load_lut(crtc);
5126
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005127 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02005128 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02005129
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03005130 assert_vblank_disabled(crtc);
5131 drm_crtc_vblank_on(crtc);
5132
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005133 for_each_encoder_on_crtc(dev, crtc, encoder)
5134 encoder->enable(encoder);
5135
Ville Syrjälä9ab04602014-05-08 19:23:14 +03005136 intel_crtc_enable_planes(crtc);
Daniel Vetterd40d9182014-05-21 11:45:40 +02005137
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005138 /*
5139 * Gen2 reports pipe underruns whenever all planes are disabled.
5140 * So don't enable underrun reporting before at least some planes
5141 * are enabled.
5142 * FIXME: Need to fix the logic to work when we turn off all planes
5143 * but leave the pipe running.
5144 */
5145 if (IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005146 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005147
Ville Syrjälä56b80e12014-05-16 19:40:22 +03005148 /* Underruns don't raise interrupts, so check manually. */
Daniel Vettera72e4c92014-09-30 10:56:47 +02005149 i9xx_check_fifo_underruns(dev_priv);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005150}
5151
Daniel Vetter87476d62013-04-11 16:29:06 +02005152static void i9xx_pfit_disable(struct intel_crtc *crtc)
5153{
5154 struct drm_device *dev = crtc->base.dev;
5155 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02005156
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005157 if (!crtc->config->gmch_pfit.control)
Daniel Vetter328d8e82013-05-08 10:36:31 +02005158 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02005159
5160 assert_pipe_disabled(dev_priv, crtc->pipe);
5161
Daniel Vetter328d8e82013-05-08 10:36:31 +02005162 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
5163 I915_READ(PFIT_CONTROL));
5164 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02005165}
5166
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005167static void i9xx_crtc_disable(struct drm_crtc *crtc)
5168{
5169 struct drm_device *dev = crtc->dev;
5170 struct drm_i915_private *dev_priv = dev->dev_private;
5171 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005172 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005173 int pipe = intel_crtc->pipe;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005174
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005175 if (!intel_crtc->active)
5176 return;
5177
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005178 /*
5179 * Gen2 reports pipe underruns whenever all planes are disabled.
5180 * So diasble underrun reporting before all the planes get disabled.
5181 * FIXME: Need to fix the logic to work when we turn off all planes
5182 * but leave the pipe running.
5183 */
5184 if (IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005185 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005186
Imre Deak564ed192014-06-13 14:54:21 +03005187 /*
5188 * Vblank time updates from the shadow to live plane control register
5189 * are blocked if the memory self-refresh mode is active at that
5190 * moment. So to make sure the plane gets truly disabled, disable
5191 * first the self-refresh mode. The self-refresh enable bit in turn
5192 * will be checked/applied by the HW only at the next frame start
5193 * event which is after the vblank start event, so we need to have a
5194 * wait-for-vblank between disabling the plane and the pipe.
5195 */
5196 intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03005197 intel_crtc_disable_planes(crtc);
5198
Ville Syrjälä6304cd92014-04-25 13:30:12 +03005199 /*
5200 * On gen2 planes are double buffered but the pipe isn't, so we must
5201 * wait for planes to fully turn off before disabling the pipe.
Imre Deak564ed192014-06-13 14:54:21 +03005202 * We also need to wait on all gmch platforms because of the
5203 * self-refresh mode constraint explained above.
Ville Syrjälä6304cd92014-04-25 13:30:12 +03005204 */
Imre Deak564ed192014-06-13 14:54:21 +03005205 intel_wait_for_vblank(dev, pipe);
Ville Syrjälä6304cd92014-04-25 13:30:12 +03005206
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03005207 for_each_encoder_on_crtc(dev, crtc, encoder)
5208 encoder->disable(encoder);
5209
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005210 drm_crtc_vblank_off(crtc);
5211 assert_vblank_disabled(crtc);
5212
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03005213 intel_disable_pipe(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02005214
Daniel Vetter87476d62013-04-11 16:29:06 +02005215 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02005216
Jesse Barnes89b667f2013-04-18 14:51:36 -07005217 for_each_encoder_on_crtc(dev, crtc, encoder)
5218 if (encoder->post_disable)
5219 encoder->post_disable(encoder);
5220
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005221 if (!intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI)) {
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03005222 if (IS_CHERRYVIEW(dev))
5223 chv_disable_pll(dev_priv, pipe);
5224 else if (IS_VALLEYVIEW(dev))
5225 vlv_disable_pll(dev_priv, pipe);
5226 else
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03005227 i9xx_disable_pll(intel_crtc);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03005228 }
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005229
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005230 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005231 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005232
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005233 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03005234 intel_update_watermarks(crtc);
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005235
Daniel Vetterefa96242014-04-24 23:55:02 +02005236 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02005237 intel_fbc_update(dev);
Daniel Vetterefa96242014-04-24 23:55:02 +02005238 mutex_unlock(&dev->struct_mutex);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005239}
5240
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005241static void i9xx_crtc_off(struct drm_crtc *crtc)
5242{
5243}
5244
Borun Fub04c5bd2014-07-12 10:02:27 +05305245/* Master function to enable/disable CRTC and corresponding power wells */
5246void intel_crtc_control(struct drm_crtc *crtc, bool enable)
Chris Wilsoncdd59982010-09-08 16:30:16 +01005247{
Chris Wilsoncdd59982010-09-08 16:30:16 +01005248 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005249 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005250 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005251 enum intel_display_power_domain domain;
5252 unsigned long domains;
Daniel Vetter976f8a22012-07-08 22:34:21 +02005253
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005254 if (enable) {
5255 if (!intel_crtc->active) {
Daniel Vettere1e9fb82014-06-25 22:02:04 +03005256 domains = get_crtc_power_domains(crtc);
5257 for_each_power_domain(domain, domains)
5258 intel_display_power_get(dev_priv, domain);
5259 intel_crtc->enabled_power_domains = domains;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005260
5261 dev_priv->display.crtc_enable(crtc);
5262 }
5263 } else {
5264 if (intel_crtc->active) {
5265 dev_priv->display.crtc_disable(crtc);
5266
Daniel Vettere1e9fb82014-06-25 22:02:04 +03005267 domains = intel_crtc->enabled_power_domains;
5268 for_each_power_domain(domain, domains)
5269 intel_display_power_put(dev_priv, domain);
5270 intel_crtc->enabled_power_domains = 0;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005271 }
5272 }
Borun Fub04c5bd2014-07-12 10:02:27 +05305273}
5274
5275/**
5276 * Sets the power management mode of the pipe and plane.
5277 */
5278void intel_crtc_update_dpms(struct drm_crtc *crtc)
5279{
5280 struct drm_device *dev = crtc->dev;
5281 struct intel_encoder *intel_encoder;
5282 bool enable = false;
5283
5284 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
5285 enable |= intel_encoder->connectors_active;
5286
5287 intel_crtc_control(crtc, enable);
Daniel Vetter976f8a22012-07-08 22:34:21 +02005288}
5289
Daniel Vetter976f8a22012-07-08 22:34:21 +02005290static void intel_crtc_disable(struct drm_crtc *crtc)
5291{
5292 struct drm_device *dev = crtc->dev;
5293 struct drm_connector *connector;
5294 struct drm_i915_private *dev_priv = dev->dev_private;
5295
5296 /* crtc should still be enabled when we disable it. */
5297 WARN_ON(!crtc->enabled);
5298
5299 dev_priv->display.crtc_disable(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005300 dev_priv->display.off(crtc);
5301
Gustavo Padovan455a6802014-12-01 15:40:11 -08005302 crtc->primary->funcs->disable_plane(crtc->primary);
Daniel Vetter976f8a22012-07-08 22:34:21 +02005303
5304 /* Update computed state. */
5305 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
5306 if (!connector->encoder || !connector->encoder->crtc)
5307 continue;
5308
5309 if (connector->encoder->crtc != crtc)
5310 continue;
5311
5312 connector->dpms = DRM_MODE_DPMS_OFF;
5313 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01005314 }
5315}
5316
Chris Wilsonea5b2132010-08-04 13:50:23 +01005317void intel_encoder_destroy(struct drm_encoder *encoder)
5318{
Chris Wilson4ef69c72010-09-09 15:14:28 +01005319 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01005320
Chris Wilsonea5b2132010-08-04 13:50:23 +01005321 drm_encoder_cleanup(encoder);
5322 kfree(intel_encoder);
5323}
5324
Damien Lespiau92373292013-08-08 22:28:57 +01005325/* Simple dpms helper for encoders with just one connector, no cloning and only
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005326 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
5327 * state of the entire output pipe. */
Damien Lespiau92373292013-08-08 22:28:57 +01005328static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005329{
5330 if (mode == DRM_MODE_DPMS_ON) {
5331 encoder->connectors_active = true;
5332
Daniel Vetterb2cabb02012-07-01 22:42:24 +02005333 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005334 } else {
5335 encoder->connectors_active = false;
5336
Daniel Vetterb2cabb02012-07-01 22:42:24 +02005337 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005338 }
5339}
5340
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005341/* Cross check the actual hw state with our own modeset state tracking (and it's
5342 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02005343static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005344{
5345 if (connector->get_hw_state(connector)) {
5346 struct intel_encoder *encoder = connector->encoder;
5347 struct drm_crtc *crtc;
5348 bool encoder_enabled;
5349 enum pipe pipe;
5350
5351 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
5352 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03005353 connector->base.name);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005354
Dave Airlie0e32b392014-05-02 14:02:48 +10005355 /* there is no real hw state for MST connectors */
5356 if (connector->mst_port)
5357 return;
5358
Rob Clarke2c719b2014-12-15 13:56:32 -05005359 I915_STATE_WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005360 "wrong connector dpms state\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05005361 I915_STATE_WARN(connector->base.encoder != &encoder->base,
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005362 "active connector not linked to encoder\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005363
Dave Airlie36cd7442014-05-02 13:44:18 +10005364 if (encoder) {
Rob Clarke2c719b2014-12-15 13:56:32 -05005365 I915_STATE_WARN(!encoder->connectors_active,
Dave Airlie36cd7442014-05-02 13:44:18 +10005366 "encoder->connectors_active not set\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005367
Dave Airlie36cd7442014-05-02 13:44:18 +10005368 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
Rob Clarke2c719b2014-12-15 13:56:32 -05005369 I915_STATE_WARN(!encoder_enabled, "encoder not enabled\n");
5370 if (I915_STATE_WARN_ON(!encoder->base.crtc))
Dave Airlie36cd7442014-05-02 13:44:18 +10005371 return;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005372
Dave Airlie36cd7442014-05-02 13:44:18 +10005373 crtc = encoder->base.crtc;
5374
Rob Clarke2c719b2014-12-15 13:56:32 -05005375 I915_STATE_WARN(!crtc->enabled, "crtc not enabled\n");
5376 I915_STATE_WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
5377 I915_STATE_WARN(pipe != to_intel_crtc(crtc)->pipe,
Dave Airlie36cd7442014-05-02 13:44:18 +10005378 "encoder active on the wrong pipe\n");
5379 }
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005380 }
5381}
5382
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005383/* Even simpler default implementation, if there's really no special case to
5384 * consider. */
5385void intel_connector_dpms(struct drm_connector *connector, int mode)
5386{
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005387 /* All the simple cases only support two dpms states. */
5388 if (mode != DRM_MODE_DPMS_ON)
5389 mode = DRM_MODE_DPMS_OFF;
5390
5391 if (mode == connector->dpms)
5392 return;
5393
5394 connector->dpms = mode;
5395
5396 /* Only need to change hw state when actually enabled */
Chris Wilsonc9976dc2013-09-29 19:15:07 +01005397 if (connector->encoder)
5398 intel_encoder_dpms(to_intel_encoder(connector->encoder), mode);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005399
Daniel Vetterb9805142012-08-31 17:37:33 +02005400 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005401}
5402
Daniel Vetterf0947c32012-07-02 13:10:34 +02005403/* Simple connector->get_hw_state implementation for encoders that support only
5404 * one connector and no cloning and hence the encoder state determines the state
5405 * of the connector. */
5406bool intel_connector_get_hw_state(struct intel_connector *connector)
5407{
Daniel Vetter24929352012-07-02 20:28:59 +02005408 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02005409 struct intel_encoder *encoder = connector->encoder;
5410
5411 return encoder->get_hw_state(encoder, &pipe);
5412}
5413
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005414static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005415 struct intel_crtc_state *pipe_config)
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005416{
5417 struct drm_i915_private *dev_priv = dev->dev_private;
5418 struct intel_crtc *pipe_B_crtc =
5419 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
5420
5421 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
5422 pipe_name(pipe), pipe_config->fdi_lanes);
5423 if (pipe_config->fdi_lanes > 4) {
5424 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
5425 pipe_name(pipe), pipe_config->fdi_lanes);
5426 return false;
5427 }
5428
Paulo Zanonibafb6552013-11-02 21:07:44 -07005429 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005430 if (pipe_config->fdi_lanes > 2) {
5431 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
5432 pipe_config->fdi_lanes);
5433 return false;
5434 } else {
5435 return true;
5436 }
5437 }
5438
5439 if (INTEL_INFO(dev)->num_pipes == 2)
5440 return true;
5441
5442 /* Ivybridge 3 pipe is really complicated */
5443 switch (pipe) {
5444 case PIPE_A:
5445 return true;
5446 case PIPE_B:
5447 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
5448 pipe_config->fdi_lanes > 2) {
5449 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5450 pipe_name(pipe), pipe_config->fdi_lanes);
5451 return false;
5452 }
5453 return true;
5454 case PIPE_C:
Daniel Vetter1e833f42013-02-19 22:31:57 +01005455 if (!pipe_has_enabled_pch(pipe_B_crtc) ||
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005456 pipe_B_crtc->config->fdi_lanes <= 2) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005457 if (pipe_config->fdi_lanes > 2) {
5458 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5459 pipe_name(pipe), pipe_config->fdi_lanes);
5460 return false;
5461 }
5462 } else {
5463 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
5464 return false;
5465 }
5466 return true;
5467 default:
5468 BUG();
5469 }
5470}
5471
Daniel Vettere29c22c2013-02-21 00:00:16 +01005472#define RETRY 1
5473static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005474 struct intel_crtc_state *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02005475{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005476 struct drm_device *dev = intel_crtc->base.dev;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02005477 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Daniel Vetterff9a6752013-06-01 17:16:21 +02005478 int lane, link_bw, fdi_dotclock;
Daniel Vettere29c22c2013-02-21 00:00:16 +01005479 bool setup_ok, needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005480
Daniel Vettere29c22c2013-02-21 00:00:16 +01005481retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02005482 /* FDI is a binary signal running at ~2.7GHz, encoding
5483 * each output octet as 10 bits. The actual frequency
5484 * is stored as a divider into a 100MHz clock, and the
5485 * mode pixel clock is stored in units of 1KHz.
5486 * Hence the bw of each lane in terms of the mode signal
5487 * is:
5488 */
5489 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
5490
Damien Lespiau241bfc32013-09-25 16:45:37 +01005491 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005492
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005493 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005494 pipe_config->pipe_bpp);
5495
5496 pipe_config->fdi_lanes = lane;
5497
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005498 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005499 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005500
Daniel Vettere29c22c2013-02-21 00:00:16 +01005501 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
5502 intel_crtc->pipe, pipe_config);
5503 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
5504 pipe_config->pipe_bpp -= 2*3;
5505 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
5506 pipe_config->pipe_bpp);
5507 needs_recompute = true;
5508 pipe_config->bw_constrained = true;
5509
5510 goto retry;
5511 }
5512
5513 if (needs_recompute)
5514 return RETRY;
5515
5516 return setup_ok ? 0 : -EINVAL;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005517}
5518
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005519static void hsw_compute_ips_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005520 struct intel_crtc_state *pipe_config)
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005521{
Jani Nikulad330a952014-01-21 11:24:25 +02005522 pipe_config->ips_enabled = i915.enable_ips &&
Paulo Zanoni3c4ca582013-05-31 16:33:23 -03005523 hsw_crtc_supports_ips(crtc) &&
Jesse Barnesb6dfdc92013-07-25 10:06:50 -07005524 pipe_config->pipe_bpp <= 24;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005525}
5526
Daniel Vettera43f6e02013-06-07 23:10:32 +02005527static int intel_crtc_compute_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005528 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08005529{
Daniel Vettera43f6e02013-06-07 23:10:32 +02005530 struct drm_device *dev = crtc->base.dev;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02005531 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02005532 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Chris Wilson89749352010-09-12 18:25:19 +01005533
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005534 /* FIXME should check pixel clock limits on all platforms */
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005535 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005536 int clock_limit =
5537 dev_priv->display.get_display_clock_speed(dev);
5538
5539 /*
5540 * Enable pixel doubling when the dot clock
5541 * is > 90% of the (display) core speed.
5542 *
Ville Syrjäläb397c962013-09-04 18:30:06 +03005543 * GDG double wide on either pipe,
5544 * otherwise pipe A only.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005545 */
Ville Syrjäläb397c962013-09-04 18:30:06 +03005546 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
Damien Lespiau241bfc32013-09-25 16:45:37 +01005547 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005548 clock_limit *= 2;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005549 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005550 }
5551
Damien Lespiau241bfc32013-09-25 16:45:37 +01005552 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005553 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08005554 }
Chris Wilson89749352010-09-12 18:25:19 +01005555
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03005556 /*
5557 * Pipe horizontal size must be even in:
5558 * - DVO ganged mode
5559 * - LVDS dual channel mode
5560 * - Double wide pipe
5561 */
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005562 if ((intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03005563 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
5564 pipe_config->pipe_src_w &= ~1;
5565
Damien Lespiau8693a822013-05-03 18:48:11 +01005566 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
5567 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03005568 */
5569 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
5570 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005571 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03005572
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005573 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005574 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005575 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005576 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
5577 * for lvds. */
5578 pipe_config->pipe_bpp = 8*3;
5579 }
5580
Damien Lespiauf5adf942013-06-24 18:29:34 +01005581 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02005582 hsw_compute_ips_config(crtc, pipe_config);
5583
Daniel Vetter877d48d2013-04-19 11:24:43 +02005584 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02005585 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02005586
Daniel Vettere29c22c2013-02-21 00:00:16 +01005587 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005588}
5589
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07005590static int valleyview_get_display_clock_speed(struct drm_device *dev)
5591{
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005592 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005593 u32 val;
5594 int divider;
5595
Ville Syrjäläd49a3402014-06-28 02:03:58 +03005596 /* FIXME: Punit isn't quite ready yet */
5597 if (IS_CHERRYVIEW(dev))
5598 return 400000;
5599
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005600 if (dev_priv->hpll_freq == 0)
5601 dev_priv->hpll_freq = valleyview_get_vco(dev_priv);
5602
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005603 mutex_lock(&dev_priv->dpio_lock);
5604 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
5605 mutex_unlock(&dev_priv->dpio_lock);
5606
5607 divider = val & DISPLAY_FREQUENCY_VALUES;
5608
Ville Syrjälä7d007f42014-06-13 13:37:53 +03005609 WARN((val & DISPLAY_FREQUENCY_STATUS) !=
5610 (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
5611 "cdclk change in progress\n");
5612
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005613 return DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, divider + 1);
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07005614}
5615
Jesse Barnese70236a2009-09-21 10:42:27 -07005616static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08005617{
Jesse Barnese70236a2009-09-21 10:42:27 -07005618 return 400000;
5619}
Jesse Barnes79e53942008-11-07 14:24:08 -08005620
Jesse Barnese70236a2009-09-21 10:42:27 -07005621static int i915_get_display_clock_speed(struct drm_device *dev)
5622{
5623 return 333000;
5624}
Jesse Barnes79e53942008-11-07 14:24:08 -08005625
Jesse Barnese70236a2009-09-21 10:42:27 -07005626static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
5627{
5628 return 200000;
5629}
Jesse Barnes79e53942008-11-07 14:24:08 -08005630
Daniel Vetter257a7ff2013-07-26 08:35:42 +02005631static int pnv_get_display_clock_speed(struct drm_device *dev)
5632{
5633 u16 gcfgc = 0;
5634
5635 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5636
5637 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5638 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
5639 return 267000;
5640 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
5641 return 333000;
5642 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
5643 return 444000;
5644 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
5645 return 200000;
5646 default:
5647 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
5648 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
5649 return 133000;
5650 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
5651 return 167000;
5652 }
5653}
5654
Jesse Barnese70236a2009-09-21 10:42:27 -07005655static int i915gm_get_display_clock_speed(struct drm_device *dev)
5656{
5657 u16 gcfgc = 0;
5658
5659 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5660
5661 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08005662 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07005663 else {
5664 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5665 case GC_DISPLAY_CLOCK_333_MHZ:
5666 return 333000;
5667 default:
5668 case GC_DISPLAY_CLOCK_190_200_MHZ:
5669 return 190000;
5670 }
5671 }
5672}
Jesse Barnes79e53942008-11-07 14:24:08 -08005673
Jesse Barnese70236a2009-09-21 10:42:27 -07005674static int i865_get_display_clock_speed(struct drm_device *dev)
5675{
5676 return 266000;
5677}
5678
5679static int i855_get_display_clock_speed(struct drm_device *dev)
5680{
5681 u16 hpllcc = 0;
5682 /* Assume that the hardware is in the high speed state. This
5683 * should be the default.
5684 */
5685 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
5686 case GC_CLOCK_133_200:
5687 case GC_CLOCK_100_200:
5688 return 200000;
5689 case GC_CLOCK_166_250:
5690 return 250000;
5691 case GC_CLOCK_100_133:
5692 return 133000;
5693 }
5694
5695 /* Shouldn't happen */
5696 return 0;
5697}
5698
5699static int i830_get_display_clock_speed(struct drm_device *dev)
5700{
5701 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08005702}
5703
Zhenyu Wang2c072452009-06-05 15:38:42 +08005704static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005705intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005706{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005707 while (*num > DATA_LINK_M_N_MASK ||
5708 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08005709 *num >>= 1;
5710 *den >>= 1;
5711 }
5712}
5713
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005714static void compute_m_n(unsigned int m, unsigned int n,
5715 uint32_t *ret_m, uint32_t *ret_n)
5716{
5717 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
5718 *ret_m = div_u64((uint64_t) m * *ret_n, n);
5719 intel_reduce_m_n_ratio(ret_m, ret_n);
5720}
5721
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005722void
5723intel_link_compute_m_n(int bits_per_pixel, int nlanes,
5724 int pixel_clock, int link_clock,
5725 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005726{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005727 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005728
5729 compute_m_n(bits_per_pixel * pixel_clock,
5730 link_clock * nlanes * 8,
5731 &m_n->gmch_m, &m_n->gmch_n);
5732
5733 compute_m_n(pixel_clock, link_clock,
5734 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005735}
5736
Chris Wilsona7615032011-01-12 17:04:08 +00005737static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
5738{
Jani Nikulad330a952014-01-21 11:24:25 +02005739 if (i915.panel_use_ssc >= 0)
5740 return i915.panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005741 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07005742 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00005743}
5744
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005745static int i9xx_get_refclk(struct intel_crtc *crtc, int num_connectors)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005746{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005747 struct drm_device *dev = crtc->base.dev;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005748 struct drm_i915_private *dev_priv = dev->dev_private;
5749 int refclk;
5750
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005751 if (IS_VALLEYVIEW(dev)) {
Daniel Vetter9a0ea492013-09-16 11:29:34 +02005752 refclk = 100000;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02005753 } else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005754 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02005755 refclk = dev_priv->vbt.lvds_ssc_freq;
5756 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005757 } else if (!IS_GEN2(dev)) {
5758 refclk = 96000;
5759 } else {
5760 refclk = 48000;
5761 }
5762
5763 return refclk;
5764}
5765
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005766static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005767{
Daniel Vetter7df00d72013-05-21 21:54:55 +02005768 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005769}
Daniel Vetterf47709a2013-03-28 10:42:02 +01005770
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005771static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
5772{
5773 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005774}
5775
Daniel Vetterf47709a2013-03-28 10:42:02 +01005776static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005777 struct intel_crtc_state *crtc_state,
Jesse Barnesa7516a02011-12-15 12:30:37 -08005778 intel_clock_t *reduced_clock)
5779{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005780 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005781 u32 fp, fp2 = 0;
5782
5783 if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005784 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005785 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005786 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005787 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005788 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005789 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005790 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005791 }
5792
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005793 crtc_state->dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005794
Daniel Vetterf47709a2013-03-28 10:42:02 +01005795 crtc->lowfreq_avail = false;
Bob Paauwee1f234b2014-11-11 09:29:18 -08005796 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Jani Nikulad330a952014-01-21 11:24:25 +02005797 reduced_clock && i915.powersave) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005798 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005799 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005800 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005801 crtc_state->dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005802 }
5803}
5804
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005805static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
5806 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07005807{
5808 u32 reg_val;
5809
5810 /*
5811 * PLLB opamp always calibrates to max value of 0x3f, force enable it
5812 * and set it to a reasonable value instead.
5813 */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005814 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005815 reg_val &= 0xffffff00;
5816 reg_val |= 0x00000030;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005817 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005818
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005819 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005820 reg_val &= 0x8cffffff;
5821 reg_val = 0x8c000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005822 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005823
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005824 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005825 reg_val &= 0xffffff00;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005826 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005827
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005828 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005829 reg_val &= 0x00ffffff;
5830 reg_val |= 0xb0000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005831 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005832}
5833
Daniel Vetterb5518422013-05-03 11:49:48 +02005834static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
5835 struct intel_link_m_n *m_n)
5836{
5837 struct drm_device *dev = crtc->base.dev;
5838 struct drm_i915_private *dev_priv = dev->dev_private;
5839 int pipe = crtc->pipe;
5840
Daniel Vettere3b95f12013-05-03 11:49:49 +02005841 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5842 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
5843 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
5844 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005845}
5846
5847static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -07005848 struct intel_link_m_n *m_n,
5849 struct intel_link_m_n *m2_n2)
Daniel Vetterb5518422013-05-03 11:49:48 +02005850{
5851 struct drm_device *dev = crtc->base.dev;
5852 struct drm_i915_private *dev_priv = dev->dev_private;
5853 int pipe = crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005854 enum transcoder transcoder = crtc->config->cpu_transcoder;
Daniel Vetterb5518422013-05-03 11:49:48 +02005855
5856 if (INTEL_INFO(dev)->gen >= 5) {
5857 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
5858 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
5859 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
5860 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
Vandana Kannanf769cd22014-08-05 07:51:22 -07005861 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
5862 * for gen < 8) and if DRRS is supported (to make sure the
5863 * registers are not unnecessarily accessed).
5864 */
5865 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005866 crtc->config->has_drrs) {
Vandana Kannanf769cd22014-08-05 07:51:22 -07005867 I915_WRITE(PIPE_DATA_M2(transcoder),
5868 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
5869 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
5870 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
5871 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
5872 }
Daniel Vetterb5518422013-05-03 11:49:48 +02005873 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02005874 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5875 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
5876 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
5877 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005878 }
5879}
5880
Vandana Kannanf769cd22014-08-05 07:51:22 -07005881void intel_dp_set_m_n(struct intel_crtc *crtc)
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005882{
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005883 if (crtc->config->has_pch_encoder)
5884 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005885 else
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005886 intel_cpu_transcoder_set_m_n(crtc, &crtc->config->dp_m_n,
5887 &crtc->config->dp_m2_n2);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005888}
5889
Ville Syrjäläd288f652014-10-28 13:20:22 +02005890static void vlv_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005891 struct intel_crtc_state *pipe_config)
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005892{
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005893 u32 dpll, dpll_md;
5894
5895 /*
5896 * Enable DPIO clock input. We should never disable the reference
5897 * clock for pipe B, since VGA hotplug / manual detection depends
5898 * on it.
5899 */
5900 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
5901 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
5902 /* We should never disable this, set it here for state tracking */
5903 if (crtc->pipe == PIPE_B)
5904 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
5905 dpll |= DPLL_VCO_ENABLE;
Ville Syrjäläd288f652014-10-28 13:20:22 +02005906 pipe_config->dpll_hw_state.dpll = dpll;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005907
Ville Syrjäläd288f652014-10-28 13:20:22 +02005908 dpll_md = (pipe_config->pixel_multiplier - 1)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005909 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjäläd288f652014-10-28 13:20:22 +02005910 pipe_config->dpll_hw_state.dpll_md = dpll_md;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005911}
5912
Ville Syrjäläd288f652014-10-28 13:20:22 +02005913static void vlv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005914 const struct intel_crtc_state *pipe_config)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005915{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005916 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005917 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005918 int pipe = crtc->pipe;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005919 u32 mdiv;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005920 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005921 u32 coreclk, reg_val;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005922
Daniel Vetter09153002012-12-12 14:06:44 +01005923 mutex_lock(&dev_priv->dpio_lock);
5924
Ville Syrjäläd288f652014-10-28 13:20:22 +02005925 bestn = pipe_config->dpll.n;
5926 bestm1 = pipe_config->dpll.m1;
5927 bestm2 = pipe_config->dpll.m2;
5928 bestp1 = pipe_config->dpll.p1;
5929 bestp2 = pipe_config->dpll.p2;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005930
Jesse Barnes89b667f2013-04-18 14:51:36 -07005931 /* See eDP HDMI DPIO driver vbios notes doc */
5932
5933 /* PLL B needs special handling */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005934 if (pipe == PIPE_B)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005935 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005936
5937 /* Set up Tx target for periodic Rcomp update */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005938 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005939
5940 /* Disable target IRef on PLL */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005941 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005942 reg_val &= 0x00ffffff;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005943 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005944
5945 /* Disable fast lock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005946 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005947
5948 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005949 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
5950 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
5951 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005952 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07005953
5954 /*
5955 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
5956 * but we don't support that).
5957 * Note: don't use the DAC post divider as it seems unstable.
5958 */
5959 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005960 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005961
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005962 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005963 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005964
Jesse Barnes89b667f2013-04-18 14:51:36 -07005965 /* Set HBR and RBR LPF coefficients */
Ville Syrjäläd288f652014-10-28 13:20:22 +02005966 if (pipe_config->port_clock == 162000 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005967 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG) ||
5968 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005969 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Ville Syrjälä885b0122013-07-05 19:21:38 +03005970 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005971 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005972 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005973 0x00d0000f);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005974
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02005975 if (pipe_config->has_dp_encoder) {
Jesse Barnes89b667f2013-04-18 14:51:36 -07005976 /* Use SSC source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005977 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005978 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005979 0x0df40000);
5980 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005981 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005982 0x0df70000);
5983 } else { /* HDMI or VGA */
5984 /* Use bend source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005985 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005986 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005987 0x0df70000);
5988 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005989 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005990 0x0df40000);
5991 }
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005992
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005993 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005994 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005995 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
5996 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
Jesse Barnes89b667f2013-04-18 14:51:36 -07005997 coreclk |= 0x01000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005998 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005999
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006000 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
Daniel Vetter09153002012-12-12 14:06:44 +01006001 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07006002}
6003
Ville Syrjäläd288f652014-10-28 13:20:22 +02006004static void chv_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006005 struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006006{
Ville Syrjäläd288f652014-10-28 13:20:22 +02006007 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLOCK_CHV |
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006008 DPLL_REFA_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
6009 DPLL_VCO_ENABLE;
6010 if (crtc->pipe != PIPE_A)
Ville Syrjäläd288f652014-10-28 13:20:22 +02006011 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006012
Ville Syrjäläd288f652014-10-28 13:20:22 +02006013 pipe_config->dpll_hw_state.dpll_md =
6014 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006015}
6016
Ville Syrjäläd288f652014-10-28 13:20:22 +02006017static void chv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006018 const struct intel_crtc_state *pipe_config)
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006019{
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006020 struct drm_device *dev = crtc->base.dev;
6021 struct drm_i915_private *dev_priv = dev->dev_private;
6022 int pipe = crtc->pipe;
6023 int dpll_reg = DPLL(crtc->pipe);
6024 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Ville Syrjälä580d3812014-04-09 13:29:00 +03006025 u32 loopfilter, intcoeff;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006026 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
6027 int refclk;
6028
Ville Syrjäläd288f652014-10-28 13:20:22 +02006029 bestn = pipe_config->dpll.n;
6030 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
6031 bestm1 = pipe_config->dpll.m1;
6032 bestm2 = pipe_config->dpll.m2 >> 22;
6033 bestp1 = pipe_config->dpll.p1;
6034 bestp2 = pipe_config->dpll.p2;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006035
6036 /*
6037 * Enable Refclk and SSC
6038 */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03006039 I915_WRITE(dpll_reg,
Ville Syrjäläd288f652014-10-28 13:20:22 +02006040 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03006041
6042 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006043
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006044 /* p1 and p2 divider */
6045 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
6046 5 << DPIO_CHV_S1_DIV_SHIFT |
6047 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
6048 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
6049 1 << DPIO_CHV_K_DIV_SHIFT);
6050
6051 /* Feedback post-divider - m2 */
6052 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
6053
6054 /* Feedback refclk divider - n and m1 */
6055 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
6056 DPIO_CHV_M1_DIV_BY_2 |
6057 1 << DPIO_CHV_N_DIV_SHIFT);
6058
6059 /* M2 fraction division */
6060 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
6061
6062 /* M2 fraction division enable */
6063 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port),
6064 DPIO_CHV_FRAC_DIV_EN |
6065 (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT));
6066
6067 /* Loop filter */
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006068 refclk = i9xx_get_refclk(crtc, 0);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006069 loopfilter = 5 << DPIO_CHV_PROP_COEFF_SHIFT |
6070 2 << DPIO_CHV_GAIN_CTRL_SHIFT;
6071 if (refclk == 100000)
6072 intcoeff = 11;
6073 else if (refclk == 38400)
6074 intcoeff = 10;
6075 else
6076 intcoeff = 9;
6077 loopfilter |= intcoeff << DPIO_CHV_INT_COEFF_SHIFT;
6078 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
6079
6080 /* AFC Recal */
6081 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
6082 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
6083 DPIO_AFC_RECAL);
6084
6085 mutex_unlock(&dev_priv->dpio_lock);
6086}
6087
Ville Syrjäläd288f652014-10-28 13:20:22 +02006088/**
6089 * vlv_force_pll_on - forcibly enable just the PLL
6090 * @dev_priv: i915 private structure
6091 * @pipe: pipe PLL to enable
6092 * @dpll: PLL configuration
6093 *
6094 * Enable the PLL for @pipe using the supplied @dpll config. To be used
6095 * in cases where we need the PLL enabled even when @pipe is not going to
6096 * be enabled.
6097 */
6098void vlv_force_pll_on(struct drm_device *dev, enum pipe pipe,
6099 const struct dpll *dpll)
6100{
6101 struct intel_crtc *crtc =
6102 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006103 struct intel_crtc_state pipe_config = {
Ville Syrjäläd288f652014-10-28 13:20:22 +02006104 .pixel_multiplier = 1,
6105 .dpll = *dpll,
6106 };
6107
6108 if (IS_CHERRYVIEW(dev)) {
6109 chv_update_pll(crtc, &pipe_config);
6110 chv_prepare_pll(crtc, &pipe_config);
6111 chv_enable_pll(crtc, &pipe_config);
6112 } else {
6113 vlv_update_pll(crtc, &pipe_config);
6114 vlv_prepare_pll(crtc, &pipe_config);
6115 vlv_enable_pll(crtc, &pipe_config);
6116 }
6117}
6118
6119/**
6120 * vlv_force_pll_off - forcibly disable just the PLL
6121 * @dev_priv: i915 private structure
6122 * @pipe: pipe PLL to disable
6123 *
6124 * Disable the PLL for @pipe. To be used in cases where we need
6125 * the PLL enabled even when @pipe is not going to be enabled.
6126 */
6127void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe)
6128{
6129 if (IS_CHERRYVIEW(dev))
6130 chv_disable_pll(to_i915(dev), pipe);
6131 else
6132 vlv_disable_pll(to_i915(dev), pipe);
6133}
6134
Daniel Vetterf47709a2013-03-28 10:42:02 +01006135static void i9xx_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006136 struct intel_crtc_state *crtc_state,
Daniel Vetterf47709a2013-03-28 10:42:02 +01006137 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006138 int num_connectors)
6139{
Daniel Vetterf47709a2013-03-28 10:42:02 +01006140 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006141 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006142 u32 dpll;
6143 bool is_sdvo;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006144 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006145
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006146 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05306147
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006148 is_sdvo = intel_pipe_will_have_type(crtc, INTEL_OUTPUT_SDVO) ||
6149 intel_pipe_will_have_type(crtc, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006150
6151 dpll = DPLL_VGA_MODE_DIS;
6152
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006153 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006154 dpll |= DPLLB_MODE_LVDS;
6155 else
6156 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01006157
Daniel Vetteref1b4602013-06-01 17:17:04 +02006158 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006159 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetter198a037f2013-04-19 11:14:37 +02006160 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006161 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02006162
6163 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006164 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02006165
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006166 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006167 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006168
6169 /* compute bitmask from p1 value */
6170 if (IS_PINEVIEW(dev))
6171 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
6172 else {
6173 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6174 if (IS_G4X(dev) && reduced_clock)
6175 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
6176 }
6177 switch (clock->p2) {
6178 case 5:
6179 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
6180 break;
6181 case 7:
6182 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
6183 break;
6184 case 10:
6185 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
6186 break;
6187 case 14:
6188 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
6189 break;
6190 }
6191 if (INTEL_INFO(dev)->gen >= 4)
6192 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
6193
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006194 if (crtc_state->sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006195 dpll |= PLL_REF_INPUT_TVCLKINBC;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006196 else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006197 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
6198 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
6199 else
6200 dpll |= PLL_REF_INPUT_DREFCLK;
6201
6202 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006203 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006204
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006205 if (INTEL_INFO(dev)->gen >= 4) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006206 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02006207 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006208 crtc_state->dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006209 }
6210}
6211
Daniel Vetterf47709a2013-03-28 10:42:02 +01006212static void i8xx_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006213 struct intel_crtc_state *crtc_state,
Daniel Vetterf47709a2013-03-28 10:42:02 +01006214 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006215 int num_connectors)
6216{
Daniel Vetterf47709a2013-03-28 10:42:02 +01006217 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006218 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006219 u32 dpll;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006220 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006221
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006222 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05306223
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006224 dpll = DPLL_VGA_MODE_DIS;
6225
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006226 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006227 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6228 } else {
6229 if (clock->p1 == 2)
6230 dpll |= PLL_P1_DIVIDE_BY_TWO;
6231 else
6232 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6233 if (clock->p2 == 4)
6234 dpll |= PLL_P2_DIVIDE_BY_4;
6235 }
6236
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006237 if (!IS_I830(dev) && intel_pipe_will_have_type(crtc, INTEL_OUTPUT_DVO))
Daniel Vetter4a33e482013-07-06 12:52:05 +02006238 dpll |= DPLL_DVO_2X_MODE;
6239
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006240 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006241 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
6242 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
6243 else
6244 dpll |= PLL_REF_INPUT_DREFCLK;
6245
6246 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006247 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006248}
6249
Daniel Vetter8a654f32013-06-01 17:16:22 +02006250static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006251{
6252 struct drm_device *dev = intel_crtc->base.dev;
6253 struct drm_i915_private *dev_priv = dev->dev_private;
6254 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006255 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Daniel Vetter8a654f32013-06-01 17:16:22 +02006256 struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006257 &intel_crtc->config->base.adjusted_mode;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02006258 uint32_t crtc_vtotal, crtc_vblank_end;
6259 int vsyncshift = 0;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006260
6261 /* We need to be careful not to changed the adjusted mode, for otherwise
6262 * the hw state checker will get angry at the mismatch. */
6263 crtc_vtotal = adjusted_mode->crtc_vtotal;
6264 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006265
Ville Syrjälä609aeac2014-03-28 23:29:30 +02006266 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006267 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006268 crtc_vtotal -= 1;
6269 crtc_vblank_end -= 1;
Ville Syrjälä609aeac2014-03-28 23:29:30 +02006270
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006271 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjälä609aeac2014-03-28 23:29:30 +02006272 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
6273 else
6274 vsyncshift = adjusted_mode->crtc_hsync_start -
6275 adjusted_mode->crtc_htotal / 2;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02006276 if (vsyncshift < 0)
6277 vsyncshift += adjusted_mode->crtc_htotal;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006278 }
6279
6280 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006281 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006282
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006283 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006284 (adjusted_mode->crtc_hdisplay - 1) |
6285 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006286 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006287 (adjusted_mode->crtc_hblank_start - 1) |
6288 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006289 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006290 (adjusted_mode->crtc_hsync_start - 1) |
6291 ((adjusted_mode->crtc_hsync_end - 1) << 16));
6292
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006293 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006294 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006295 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006296 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006297 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006298 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006299 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006300 (adjusted_mode->crtc_vsync_start - 1) |
6301 ((adjusted_mode->crtc_vsync_end - 1) << 16));
6302
Paulo Zanonib5e508d2012-10-24 11:34:43 -02006303 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
6304 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
6305 * documented on the DDI_FUNC_CTL register description, EDP Input Select
6306 * bits. */
6307 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
6308 (pipe == PIPE_B || pipe == PIPE_C))
6309 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
6310
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006311 /* pipesrc controls the size that is scaled from, which should
6312 * always be the user's requested size.
6313 */
6314 I915_WRITE(PIPESRC(pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006315 ((intel_crtc->config->pipe_src_w - 1) << 16) |
6316 (intel_crtc->config->pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006317}
6318
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006319static void intel_get_pipe_timings(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006320 struct intel_crtc_state *pipe_config)
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006321{
6322 struct drm_device *dev = crtc->base.dev;
6323 struct drm_i915_private *dev_priv = dev->dev_private;
6324 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
6325 uint32_t tmp;
6326
6327 tmp = I915_READ(HTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006328 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
6329 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006330 tmp = I915_READ(HBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006331 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
6332 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006333 tmp = I915_READ(HSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006334 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
6335 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006336
6337 tmp = I915_READ(VTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006338 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
6339 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006340 tmp = I915_READ(VBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006341 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
6342 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006343 tmp = I915_READ(VSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006344 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
6345 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006346
6347 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006348 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
6349 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
6350 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006351 }
6352
6353 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03006354 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
6355 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
6356
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006357 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
6358 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006359}
6360
Daniel Vetterf6a83282014-02-11 15:28:57 -08006361void intel_mode_from_pipe_config(struct drm_display_mode *mode,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006362 struct intel_crtc_state *pipe_config)
Jesse Barnesbabea612013-06-26 18:57:38 +03006363{
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006364 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
6365 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
6366 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
6367 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03006368
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006369 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
6370 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
6371 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
6372 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03006373
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006374 mode->flags = pipe_config->base.adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03006375
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006376 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
6377 mode->flags |= pipe_config->base.adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03006378}
6379
Daniel Vetter84b046f2013-02-19 18:48:54 +01006380static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
6381{
6382 struct drm_device *dev = intel_crtc->base.dev;
6383 struct drm_i915_private *dev_priv = dev->dev_private;
6384 uint32_t pipeconf;
6385
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02006386 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01006387
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03006388 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
6389 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
6390 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
Daniel Vetter67c72a12013-09-24 11:46:14 +02006391
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006392 if (intel_crtc->config->double_wide)
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006393 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01006394
Daniel Vetterff9ce462013-04-24 14:57:17 +02006395 /* only g4x and later have fancy bpc/dither controls */
6396 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02006397 /* Bspec claims that we can't use dithering for 30bpp pipes. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006398 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
Daniel Vetterff9ce462013-04-24 14:57:17 +02006399 pipeconf |= PIPECONF_DITHER_EN |
6400 PIPECONF_DITHER_TYPE_SP;
6401
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006402 switch (intel_crtc->config->pipe_bpp) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02006403 case 18:
6404 pipeconf |= PIPECONF_6BPC;
6405 break;
6406 case 24:
6407 pipeconf |= PIPECONF_8BPC;
6408 break;
6409 case 30:
6410 pipeconf |= PIPECONF_10BPC;
6411 break;
6412 default:
6413 /* Case prevented by intel_choose_pipe_bpp_dither. */
6414 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01006415 }
6416 }
6417
6418 if (HAS_PIPE_CXSR(dev)) {
6419 if (intel_crtc->lowfreq_avail) {
6420 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
6421 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
6422 } else {
6423 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01006424 }
6425 }
6426
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006427 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02006428 if (INTEL_INFO(dev)->gen < 4 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006429 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02006430 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
6431 else
6432 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
6433 } else
Daniel Vetter84b046f2013-02-19 18:48:54 +01006434 pipeconf |= PIPECONF_PROGRESSIVE;
6435
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006436 if (IS_VALLEYVIEW(dev) && intel_crtc->config->limited_color_range)
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02006437 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03006438
Daniel Vetter84b046f2013-02-19 18:48:54 +01006439 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
6440 POSTING_READ(PIPECONF(intel_crtc->pipe));
6441}
6442
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006443static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
6444 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08006445{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03006446 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08006447 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholtc751ce42010-03-25 11:48:48 -07006448 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07006449 intel_clock_t clock, reduced_clock;
Daniel Vettera16af7212013-04-30 14:01:44 +02006450 bool ok, has_reduced_clock = false;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006451 bool is_lvds = false, is_dsi = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01006452 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08006453 const intel_limit_t *limit;
Jesse Barnes79e53942008-11-07 14:24:08 -08006454
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006455 for_each_intel_encoder(dev, encoder) {
6456 if (encoder->new_crtc != crtc)
6457 continue;
6458
Chris Wilson5eddb702010-09-11 13:48:45 +01006459 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006460 case INTEL_OUTPUT_LVDS:
6461 is_lvds = true;
6462 break;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006463 case INTEL_OUTPUT_DSI:
6464 is_dsi = true;
6465 break;
Paulo Zanoni6847d712014-10-27 17:47:52 -02006466 default:
6467 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08006468 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05006469
Eric Anholtc751ce42010-03-25 11:48:48 -07006470 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08006471 }
6472
Jani Nikulaf2335332013-09-13 11:03:09 +03006473 if (is_dsi)
Daniel Vetter5b18e572014-04-24 23:55:06 +02006474 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006475
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006476 if (!crtc_state->clock_set) {
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006477 refclk = i9xx_get_refclk(crtc, num_connectors);
Jani Nikulaf2335332013-09-13 11:03:09 +03006478
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006479 /*
6480 * Returns a set of divisors for the desired target clock with
6481 * the given refclk, or FALSE. The returned values represent
6482 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
6483 * 2) / p1 / p2.
6484 */
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006485 limit = intel_limit(crtc, refclk);
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03006486 ok = dev_priv->display.find_dpll(limit, crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006487 crtc_state->port_clock,
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006488 refclk, NULL, &clock);
Jani Nikulaf2335332013-09-13 11:03:09 +03006489 if (!ok) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006490 DRM_ERROR("Couldn't find PLL settings for mode!\n");
6491 return -EINVAL;
6492 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006493
Jani Nikulaf2335332013-09-13 11:03:09 +03006494 if (is_lvds && dev_priv->lvds_downclock_avail) {
6495 /*
6496 * Ensure we match the reduced clock's P to the target
6497 * clock. If the clocks don't match, we can't switch
6498 * the display clock by using the FP0/FP1. In such case
6499 * we will disable the LVDS downclock feature.
6500 */
6501 has_reduced_clock =
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03006502 dev_priv->display.find_dpll(limit, crtc,
Jani Nikulaf2335332013-09-13 11:03:09 +03006503 dev_priv->lvds_downclock,
6504 refclk, &clock,
6505 &reduced_clock);
6506 }
6507 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006508 crtc_state->dpll.n = clock.n;
6509 crtc_state->dpll.m1 = clock.m1;
6510 crtc_state->dpll.m2 = clock.m2;
6511 crtc_state->dpll.p1 = clock.p1;
6512 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01006513 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006514
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006515 if (IS_GEN2(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006516 i8xx_update_pll(crtc, crtc_state,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05306517 has_reduced_clock ? &reduced_clock : NULL,
6518 num_connectors);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006519 } else if (IS_CHERRYVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006520 chv_update_pll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006521 } else if (IS_VALLEYVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006522 vlv_update_pll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006523 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006524 i9xx_update_pll(crtc, crtc_state,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006525 has_reduced_clock ? &reduced_clock : NULL,
Robin Schroereba905b2014-05-18 02:24:50 +02006526 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006527 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006528
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02006529 return 0;
Eric Anholtf564048e2011-03-30 13:01:02 -07006530}
6531
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006532static void i9xx_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006533 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006534{
6535 struct drm_device *dev = crtc->base.dev;
6536 struct drm_i915_private *dev_priv = dev->dev_private;
6537 uint32_t tmp;
6538
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02006539 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
6540 return;
6541
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006542 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02006543 if (!(tmp & PFIT_ENABLE))
6544 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006545
Daniel Vetter06922822013-07-11 13:35:40 +02006546 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006547 if (INTEL_INFO(dev)->gen < 4) {
6548 if (crtc->pipe != PIPE_B)
6549 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006550 } else {
6551 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
6552 return;
6553 }
6554
Daniel Vetter06922822013-07-11 13:35:40 +02006555 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006556 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
6557 if (INTEL_INFO(dev)->gen < 5)
6558 pipe_config->gmch_pfit.lvds_border_bits =
6559 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
6560}
6561
Jesse Barnesacbec812013-09-20 11:29:32 -07006562static void vlv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006563 struct intel_crtc_state *pipe_config)
Jesse Barnesacbec812013-09-20 11:29:32 -07006564{
6565 struct drm_device *dev = crtc->base.dev;
6566 struct drm_i915_private *dev_priv = dev->dev_private;
6567 int pipe = pipe_config->cpu_transcoder;
6568 intel_clock_t clock;
6569 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07006570 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07006571
Shobhit Kumarf573de52014-07-30 20:32:37 +05306572 /* In case of MIPI DPLL will not even be used */
6573 if (!(pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE))
6574 return;
6575
Jesse Barnesacbec812013-09-20 11:29:32 -07006576 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006577 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
Jesse Barnesacbec812013-09-20 11:29:32 -07006578 mutex_unlock(&dev_priv->dpio_lock);
6579
6580 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
6581 clock.m2 = mdiv & DPIO_M2DIV_MASK;
6582 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
6583 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
6584 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
6585
Ville Syrjäläf6466282013-10-14 14:50:31 +03006586 vlv_clock(refclk, &clock);
Jesse Barnesacbec812013-09-20 11:29:32 -07006587
Ville Syrjäläf6466282013-10-14 14:50:31 +03006588 /* clock.dot is the fast clock */
6589 pipe_config->port_clock = clock.dot / 5;
Jesse Barnesacbec812013-09-20 11:29:32 -07006590}
6591
Damien Lespiau5724dbd2015-01-20 12:51:52 +00006592static void
6593i9xx_get_initial_plane_config(struct intel_crtc *crtc,
6594 struct intel_initial_plane_config *plane_config)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006595{
6596 struct drm_device *dev = crtc->base.dev;
6597 struct drm_i915_private *dev_priv = dev->dev_private;
6598 u32 val, base, offset;
6599 int pipe = crtc->pipe, plane = crtc->plane;
6600 int fourcc, pixel_format;
6601 int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006602 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00006603 struct intel_framebuffer *intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006604
Damien Lespiaud9806c92015-01-21 14:07:19 +00006605 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00006606 if (!intel_fb) {
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006607 DRM_DEBUG_KMS("failed to alloc fb\n");
6608 return;
6609 }
6610
Damien Lespiau1b842c82015-01-21 13:50:54 +00006611 fb = &intel_fb->base;
6612
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006613 val = I915_READ(DSPCNTR(plane));
6614
6615 if (INTEL_INFO(dev)->gen >= 4)
6616 if (val & DISPPLANE_TILED)
Damien Lespiau49af4492015-01-20 12:51:44 +00006617 plane_config->tiling = I915_TILING_X;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006618
6619 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00006620 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006621 fb->pixel_format = fourcc;
6622 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006623
6624 if (INTEL_INFO(dev)->gen >= 4) {
Damien Lespiau49af4492015-01-20 12:51:44 +00006625 if (plane_config->tiling)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006626 offset = I915_READ(DSPTILEOFF(plane));
6627 else
6628 offset = I915_READ(DSPLINOFF(plane));
6629 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
6630 } else {
6631 base = I915_READ(DSPADDR(plane));
6632 }
6633 plane_config->base = base;
6634
6635 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006636 fb->width = ((val >> 16) & 0xfff) + 1;
6637 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006638
6639 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006640 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006641
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006642 aligned_height = intel_fb_align_height(dev, fb->height,
Damien Lespiauec2c9812015-01-20 12:51:45 +00006643 plane_config->tiling);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006644
Daniel Vetterf37b5c22015-02-10 23:12:27 +01006645 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006646
Damien Lespiau2844a922015-01-20 12:51:48 +00006647 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
6648 pipe_name(pipe), plane, fb->width, fb->height,
6649 fb->bits_per_pixel, base, fb->pitches[0],
6650 plane_config->size);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006651
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006652 crtc->base.primary->fb = fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006653}
6654
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006655static void chv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006656 struct intel_crtc_state *pipe_config)
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006657{
6658 struct drm_device *dev = crtc->base.dev;
6659 struct drm_i915_private *dev_priv = dev->dev_private;
6660 int pipe = pipe_config->cpu_transcoder;
6661 enum dpio_channel port = vlv_pipe_to_channel(pipe);
6662 intel_clock_t clock;
6663 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2;
6664 int refclk = 100000;
6665
6666 mutex_lock(&dev_priv->dpio_lock);
6667 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
6668 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
6669 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
6670 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
6671 mutex_unlock(&dev_priv->dpio_lock);
6672
6673 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
6674 clock.m2 = ((pll_dw0 & 0xff) << 22) | (pll_dw2 & 0x3fffff);
6675 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
6676 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
6677 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
6678
6679 chv_clock(refclk, &clock);
6680
6681 /* clock.dot is the fast clock */
6682 pipe_config->port_clock = clock.dot / 5;
6683}
6684
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006685static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006686 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006687{
6688 struct drm_device *dev = crtc->base.dev;
6689 struct drm_i915_private *dev_priv = dev->dev_private;
6690 uint32_t tmp;
6691
Daniel Vetterf458ebb2014-09-30 10:56:39 +02006692 if (!intel_display_power_is_enabled(dev_priv,
6693 POWER_DOMAIN_PIPE(crtc->pipe)))
Imre Deakb5482bd2014-03-05 16:20:55 +02006694 return false;
6695
Daniel Vettere143a212013-07-04 12:01:15 +02006696 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02006697 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02006698
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006699 tmp = I915_READ(PIPECONF(crtc->pipe));
6700 if (!(tmp & PIPECONF_ENABLE))
6701 return false;
6702
Ville Syrjälä42571ae2013-09-06 23:29:00 +03006703 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
6704 switch (tmp & PIPECONF_BPC_MASK) {
6705 case PIPECONF_6BPC:
6706 pipe_config->pipe_bpp = 18;
6707 break;
6708 case PIPECONF_8BPC:
6709 pipe_config->pipe_bpp = 24;
6710 break;
6711 case PIPECONF_10BPC:
6712 pipe_config->pipe_bpp = 30;
6713 break;
6714 default:
6715 break;
6716 }
6717 }
6718
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02006719 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
6720 pipe_config->limited_color_range = true;
6721
Ville Syrjälä282740f2013-09-04 18:30:03 +03006722 if (INTEL_INFO(dev)->gen < 4)
6723 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
6724
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006725 intel_get_pipe_timings(crtc, pipe_config);
6726
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006727 i9xx_get_pfit_config(crtc, pipe_config);
6728
Daniel Vetter6c49f242013-06-06 12:45:25 +02006729 if (INTEL_INFO(dev)->gen >= 4) {
6730 tmp = I915_READ(DPLL_MD(crtc->pipe));
6731 pipe_config->pixel_multiplier =
6732 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
6733 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006734 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02006735 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
6736 tmp = I915_READ(DPLL(crtc->pipe));
6737 pipe_config->pixel_multiplier =
6738 ((tmp & SDVO_MULTIPLIER_MASK)
6739 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
6740 } else {
6741 /* Note that on i915G/GM the pixel multiplier is in the sdvo
6742 * port and will be fixed up in the encoder->get_config
6743 * function. */
6744 pipe_config->pixel_multiplier = 1;
6745 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006746 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
6747 if (!IS_VALLEYVIEW(dev)) {
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03006748 /*
6749 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
6750 * on 830. Filter it out here so that we don't
6751 * report errors due to that.
6752 */
6753 if (IS_I830(dev))
6754 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
6755
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006756 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
6757 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03006758 } else {
6759 /* Mask out read-only status bits. */
6760 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
6761 DPLL_PORTC_READY_MASK |
6762 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006763 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02006764
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006765 if (IS_CHERRYVIEW(dev))
6766 chv_crtc_clock_get(crtc, pipe_config);
6767 else if (IS_VALLEYVIEW(dev))
Jesse Barnesacbec812013-09-20 11:29:32 -07006768 vlv_crtc_clock_get(crtc, pipe_config);
6769 else
6770 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03006771
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006772 return true;
6773}
6774
Paulo Zanonidde86e22012-12-01 12:04:25 -02006775static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07006776{
6777 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006778 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006779 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006780 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006781 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006782 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07006783 bool has_ck505 = false;
6784 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006785
6786 /* We need to take the global config into account */
Damien Lespiaub2784e12014-08-05 11:29:37 +01006787 for_each_intel_encoder(dev, encoder) {
Keith Packard199e5d72011-09-22 12:01:57 -07006788 switch (encoder->type) {
6789 case INTEL_OUTPUT_LVDS:
6790 has_panel = true;
6791 has_lvds = true;
6792 break;
6793 case INTEL_OUTPUT_EDP:
6794 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03006795 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07006796 has_cpu_edp = true;
6797 break;
Paulo Zanoni6847d712014-10-27 17:47:52 -02006798 default:
6799 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006800 }
6801 }
6802
Keith Packard99eb6a02011-09-26 14:29:12 -07006803 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006804 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07006805 can_ssc = has_ck505;
6806 } else {
6807 has_ck505 = false;
6808 can_ssc = true;
6809 }
6810
Imre Deak2de69052013-05-08 13:14:04 +03006811 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
6812 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006813
6814 /* Ironlake: try to setup display ref clock before DPLL
6815 * enabling. This is only under driver's control after
6816 * PCH B stepping, previous chipset stepping should be
6817 * ignoring this setting.
6818 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006819 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006820
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006821 /* As we must carefully and slowly disable/enable each source in turn,
6822 * compute the final state we want first and check if we need to
6823 * make any changes at all.
6824 */
6825 final = val;
6826 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07006827 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006828 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07006829 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006830 final |= DREF_NONSPREAD_SOURCE_ENABLE;
6831
6832 final &= ~DREF_SSC_SOURCE_MASK;
6833 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
6834 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006835
Keith Packard199e5d72011-09-22 12:01:57 -07006836 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006837 final |= DREF_SSC_SOURCE_ENABLE;
6838
6839 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6840 final |= DREF_SSC1_ENABLE;
6841
6842 if (has_cpu_edp) {
6843 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6844 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
6845 else
6846 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
6847 } else
6848 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6849 } else {
6850 final |= DREF_SSC_SOURCE_DISABLE;
6851 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6852 }
6853
6854 if (final == val)
6855 return;
6856
6857 /* Always enable nonspread source */
6858 val &= ~DREF_NONSPREAD_SOURCE_MASK;
6859
6860 if (has_ck505)
6861 val |= DREF_NONSPREAD_CK505_ENABLE;
6862 else
6863 val |= DREF_NONSPREAD_SOURCE_ENABLE;
6864
6865 if (has_panel) {
6866 val &= ~DREF_SSC_SOURCE_MASK;
6867 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006868
Keith Packard199e5d72011-09-22 12:01:57 -07006869 /* SSC must be turned on before enabling the CPU output */
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 panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006872 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02006873 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006874 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006875
6876 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006877 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006878 POSTING_READ(PCH_DREF_CONTROL);
6879 udelay(200);
6880
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006881 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006882
6883 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07006884 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07006885 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07006886 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006887 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Robin Schroereba905b2014-05-18 02:24:50 +02006888 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006889 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07006890 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006891 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006892
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006893 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006894 POSTING_READ(PCH_DREF_CONTROL);
6895 udelay(200);
6896 } else {
6897 DRM_DEBUG_KMS("Disabling SSC entirely\n");
6898
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006899 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07006900
6901 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006902 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006903
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006904 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006905 POSTING_READ(PCH_DREF_CONTROL);
6906 udelay(200);
6907
6908 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006909 val &= ~DREF_SSC_SOURCE_MASK;
6910 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006911
6912 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006913 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006914
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006915 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006916 POSTING_READ(PCH_DREF_CONTROL);
6917 udelay(200);
6918 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006919
6920 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006921}
6922
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006923static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02006924{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006925 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02006926
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006927 tmp = I915_READ(SOUTH_CHICKEN2);
6928 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
6929 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006930
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006931 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
6932 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
6933 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02006934
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006935 tmp = I915_READ(SOUTH_CHICKEN2);
6936 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
6937 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006938
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006939 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
6940 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
6941 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006942}
6943
6944/* WaMPhyProgramming:hsw */
6945static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
6946{
6947 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02006948
6949 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
6950 tmp &= ~(0xFF << 24);
6951 tmp |= (0x12 << 24);
6952 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
6953
Paulo Zanonidde86e22012-12-01 12:04:25 -02006954 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
6955 tmp |= (1 << 11);
6956 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
6957
6958 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
6959 tmp |= (1 << 11);
6960 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
6961
Paulo Zanonidde86e22012-12-01 12:04:25 -02006962 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
6963 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6964 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
6965
6966 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
6967 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6968 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
6969
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006970 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
6971 tmp &= ~(7 << 13);
6972 tmp |= (5 << 13);
6973 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006974
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006975 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
6976 tmp &= ~(7 << 13);
6977 tmp |= (5 << 13);
6978 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006979
6980 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
6981 tmp &= ~0xFF;
6982 tmp |= 0x1C;
6983 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
6984
6985 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
6986 tmp &= ~0xFF;
6987 tmp |= 0x1C;
6988 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
6989
6990 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
6991 tmp &= ~(0xFF << 16);
6992 tmp |= (0x1C << 16);
6993 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
6994
6995 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
6996 tmp &= ~(0xFF << 16);
6997 tmp |= (0x1C << 16);
6998 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
6999
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007000 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
7001 tmp |= (1 << 27);
7002 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007003
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007004 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
7005 tmp |= (1 << 27);
7006 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007007
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007008 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
7009 tmp &= ~(0xF << 28);
7010 tmp |= (4 << 28);
7011 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007012
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007013 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
7014 tmp &= ~(0xF << 28);
7015 tmp |= (4 << 28);
7016 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007017}
7018
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007019/* Implements 3 different sequences from BSpec chapter "Display iCLK
7020 * Programming" based on the parameters passed:
7021 * - Sequence to enable CLKOUT_DP
7022 * - Sequence to enable CLKOUT_DP without spread
7023 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
7024 */
7025static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
7026 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007027{
7028 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007029 uint32_t reg, tmp;
7030
7031 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
7032 with_spread = true;
7033 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
7034 with_fdi, "LP PCH doesn't have FDI\n"))
7035 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007036
7037 mutex_lock(&dev_priv->dpio_lock);
7038
7039 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7040 tmp &= ~SBI_SSCCTL_DISABLE;
7041 tmp |= SBI_SSCCTL_PATHALT;
7042 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7043
7044 udelay(24);
7045
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007046 if (with_spread) {
7047 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7048 tmp &= ~SBI_SSCCTL_PATHALT;
7049 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007050
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007051 if (with_fdi) {
7052 lpt_reset_fdi_mphy(dev_priv);
7053 lpt_program_fdi_mphy(dev_priv);
7054 }
7055 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02007056
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007057 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
7058 SBI_GEN0 : SBI_DBUFF0;
7059 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
7060 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
7061 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01007062
7063 mutex_unlock(&dev_priv->dpio_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007064}
7065
Paulo Zanoni47701c32013-07-23 11:19:25 -03007066/* Sequence to disable CLKOUT_DP */
7067static void lpt_disable_clkout_dp(struct drm_device *dev)
7068{
7069 struct drm_i915_private *dev_priv = dev->dev_private;
7070 uint32_t reg, tmp;
7071
7072 mutex_lock(&dev_priv->dpio_lock);
7073
7074 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
7075 SBI_GEN0 : SBI_DBUFF0;
7076 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
7077 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
7078 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
7079
7080 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7081 if (!(tmp & SBI_SSCCTL_DISABLE)) {
7082 if (!(tmp & SBI_SSCCTL_PATHALT)) {
7083 tmp |= SBI_SSCCTL_PATHALT;
7084 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7085 udelay(32);
7086 }
7087 tmp |= SBI_SSCCTL_DISABLE;
7088 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7089 }
7090
7091 mutex_unlock(&dev_priv->dpio_lock);
7092}
7093
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007094static void lpt_init_pch_refclk(struct drm_device *dev)
7095{
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007096 struct intel_encoder *encoder;
7097 bool has_vga = false;
7098
Damien Lespiaub2784e12014-08-05 11:29:37 +01007099 for_each_intel_encoder(dev, encoder) {
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007100 switch (encoder->type) {
7101 case INTEL_OUTPUT_ANALOG:
7102 has_vga = true;
7103 break;
Paulo Zanoni6847d712014-10-27 17:47:52 -02007104 default:
7105 break;
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007106 }
7107 }
7108
Paulo Zanoni47701c32013-07-23 11:19:25 -03007109 if (has_vga)
7110 lpt_enable_clkout_dp(dev, true, true);
7111 else
7112 lpt_disable_clkout_dp(dev);
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007113}
7114
Paulo Zanonidde86e22012-12-01 12:04:25 -02007115/*
7116 * Initialize reference clocks when the driver loads
7117 */
7118void intel_init_pch_refclk(struct drm_device *dev)
7119{
7120 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
7121 ironlake_init_pch_refclk(dev);
7122 else if (HAS_PCH_LPT(dev))
7123 lpt_init_pch_refclk(dev);
7124}
7125
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007126static int ironlake_get_refclk(struct drm_crtc *crtc)
7127{
7128 struct drm_device *dev = crtc->dev;
7129 struct drm_i915_private *dev_priv = dev->dev_private;
7130 struct intel_encoder *encoder;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007131 int num_connectors = 0;
7132 bool is_lvds = false;
7133
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02007134 for_each_intel_encoder(dev, encoder) {
7135 if (encoder->new_crtc != to_intel_crtc(crtc))
7136 continue;
7137
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007138 switch (encoder->type) {
7139 case INTEL_OUTPUT_LVDS:
7140 is_lvds = true;
7141 break;
Paulo Zanoni6847d712014-10-27 17:47:52 -02007142 default:
7143 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007144 }
7145 num_connectors++;
7146 }
7147
7148 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007149 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03007150 dev_priv->vbt.lvds_ssc_freq);
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007151 return dev_priv->vbt.lvds_ssc_freq;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007152 }
7153
7154 return 120000;
7155}
7156
Daniel Vetter6ff93602013-04-19 11:24:36 +02007157static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03007158{
7159 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
7160 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7161 int pipe = intel_crtc->pipe;
7162 uint32_t val;
7163
Daniel Vetter78114072013-06-13 00:54:57 +02007164 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03007165
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007166 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03007167 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007168 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007169 break;
7170 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007171 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007172 break;
7173 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007174 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007175 break;
7176 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007177 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007178 break;
7179 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03007180 /* Case prevented by intel_choose_pipe_bpp_dither. */
7181 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03007182 }
7183
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007184 if (intel_crtc->config->dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03007185 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
7186
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007187 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03007188 val |= PIPECONF_INTERLACED_ILK;
7189 else
7190 val |= PIPECONF_PROGRESSIVE;
7191
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007192 if (intel_crtc->config->limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02007193 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02007194
Paulo Zanonic8203562012-09-12 10:06:29 -03007195 I915_WRITE(PIPECONF(pipe), val);
7196 POSTING_READ(PIPECONF(pipe));
7197}
7198
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007199/*
7200 * Set up the pipe CSC unit.
7201 *
7202 * Currently only full range RGB to limited range RGB conversion
7203 * is supported, but eventually this should handle various
7204 * RGB<->YCbCr scenarios as well.
7205 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01007206static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007207{
7208 struct drm_device *dev = crtc->dev;
7209 struct drm_i915_private *dev_priv = dev->dev_private;
7210 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7211 int pipe = intel_crtc->pipe;
7212 uint16_t coeff = 0x7800; /* 1.0 */
7213
7214 /*
7215 * TODO: Check what kind of values actually come out of the pipe
7216 * with these coeff/postoff values and adjust to get the best
7217 * accuracy. Perhaps we even need to take the bpc value into
7218 * consideration.
7219 */
7220
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007221 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007222 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
7223
7224 /*
7225 * GY/GU and RY/RU should be the other way around according
7226 * to BSpec, but reality doesn't agree. Just set them up in
7227 * a way that results in the correct picture.
7228 */
7229 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
7230 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
7231
7232 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
7233 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
7234
7235 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
7236 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
7237
7238 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
7239 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
7240 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
7241
7242 if (INTEL_INFO(dev)->gen > 6) {
7243 uint16_t postoff = 0;
7244
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007245 if (intel_crtc->config->limited_color_range)
Ville Syrjälä32cf0cb2013-11-28 22:10:38 +02007246 postoff = (16 * (1 << 12) / 255) & 0x1fff;
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007247
7248 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
7249 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
7250 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
7251
7252 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
7253 } else {
7254 uint32_t mode = CSC_MODE_YUV_TO_RGB;
7255
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007256 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007257 mode |= CSC_BLACK_SCREEN_OFFSET;
7258
7259 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
7260 }
7261}
7262
Daniel Vetter6ff93602013-04-19 11:24:36 +02007263static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007264{
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007265 struct drm_device *dev = crtc->dev;
7266 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007267 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007268 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007269 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007270 uint32_t val;
7271
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02007272 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007273
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007274 if (IS_HASWELL(dev) && intel_crtc->config->dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007275 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
7276
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007277 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007278 val |= PIPECONF_INTERLACED_ILK;
7279 else
7280 val |= PIPECONF_PROGRESSIVE;
7281
Paulo Zanoni702e7a52012-10-23 18:29:59 -02007282 I915_WRITE(PIPECONF(cpu_transcoder), val);
7283 POSTING_READ(PIPECONF(cpu_transcoder));
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02007284
7285 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
7286 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007287
Satheeshakrishna M3cdf1222014-04-08 15:46:53 +05307288 if (IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007289 val = 0;
7290
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007291 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007292 case 18:
7293 val |= PIPEMISC_DITHER_6_BPC;
7294 break;
7295 case 24:
7296 val |= PIPEMISC_DITHER_8_BPC;
7297 break;
7298 case 30:
7299 val |= PIPEMISC_DITHER_10_BPC;
7300 break;
7301 case 36:
7302 val |= PIPEMISC_DITHER_12_BPC;
7303 break;
7304 default:
7305 /* Case prevented by pipe_config_set_bpp. */
7306 BUG();
7307 }
7308
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007309 if (intel_crtc->config->dither)
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007310 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
7311
7312 I915_WRITE(PIPEMISC(pipe), val);
7313 }
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007314}
7315
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007316static bool ironlake_compute_clocks(struct drm_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007317 struct intel_crtc_state *crtc_state,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007318 intel_clock_t *clock,
7319 bool *has_reduced_clock,
7320 intel_clock_t *reduced_clock)
7321{
7322 struct drm_device *dev = crtc->dev;
7323 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +03007324 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007325 int refclk;
7326 const intel_limit_t *limit;
Daniel Vettera16af7212013-04-30 14:01:44 +02007327 bool ret, is_lvds = false;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007328
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02007329 is_lvds = intel_pipe_will_have_type(intel_crtc, INTEL_OUTPUT_LVDS);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007330
7331 refclk = ironlake_get_refclk(crtc);
7332
7333 /*
7334 * Returns a set of divisors for the desired target clock with the given
7335 * refclk, or FALSE. The returned values represent the clock equation:
7336 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
7337 */
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007338 limit = intel_limit(intel_crtc, refclk);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +03007339 ret = dev_priv->display.find_dpll(limit, intel_crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007340 crtc_state->port_clock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02007341 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007342 if (!ret)
7343 return false;
7344
7345 if (is_lvds && dev_priv->lvds_downclock_avail) {
7346 /*
7347 * Ensure we match the reduced clock's P to the target clock.
7348 * If the clocks don't match, we can't switch the display clock
7349 * by using the FP0/FP1. In such case we will disable the LVDS
7350 * downclock feature.
7351 */
Daniel Vetteree9300b2013-06-03 22:40:22 +02007352 *has_reduced_clock =
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +03007353 dev_priv->display.find_dpll(limit, intel_crtc,
Daniel Vetteree9300b2013-06-03 22:40:22 +02007354 dev_priv->lvds_downclock,
7355 refclk, clock,
7356 reduced_clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007357 }
7358
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007359 return true;
7360}
7361
Paulo Zanonid4b19312012-11-29 11:29:32 -02007362int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
7363{
7364 /*
7365 * Account for spread spectrum to avoid
7366 * oversubscribing the link. Max center spread
7367 * is 2.5%; use 5% for safety's sake.
7368 */
7369 u32 bps = target_clock * bpp * 21 / 20;
Ville Syrjälä619d4d02014-02-27 14:23:14 +02007370 return DIV_ROUND_UP(bps, link_bw * 8);
Paulo Zanonid4b19312012-11-29 11:29:32 -02007371}
7372
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007373static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02007374{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007375 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03007376}
7377
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007378static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007379 struct intel_crtc_state *crtc_state,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007380 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02007381 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007382{
7383 struct drm_crtc *crtc = &intel_crtc->base;
7384 struct drm_device *dev = crtc->dev;
7385 struct drm_i915_private *dev_priv = dev->dev_private;
7386 struct intel_encoder *intel_encoder;
7387 uint32_t dpll;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01007388 int factor, num_connectors = 0;
Daniel Vetter09ede542013-04-30 14:01:45 +02007389 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007390
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02007391 for_each_intel_encoder(dev, intel_encoder) {
7392 if (intel_encoder->new_crtc != to_intel_crtc(crtc))
7393 continue;
7394
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007395 switch (intel_encoder->type) {
7396 case INTEL_OUTPUT_LVDS:
7397 is_lvds = true;
7398 break;
7399 case INTEL_OUTPUT_SDVO:
7400 case INTEL_OUTPUT_HDMI:
7401 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007402 break;
Paulo Zanoni6847d712014-10-27 17:47:52 -02007403 default:
7404 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007405 }
7406
7407 num_connectors++;
7408 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007409
Chris Wilsonc1858122010-12-03 21:35:48 +00007410 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07007411 factor = 21;
7412 if (is_lvds) {
7413 if ((intel_panel_use_ssc(dev_priv) &&
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007414 dev_priv->vbt.lvds_ssc_freq == 100000) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02007415 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07007416 factor = 25;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007417 } else if (crtc_state->sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07007418 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00007419
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007420 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02007421 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00007422
Daniel Vetter9a7c7892013-04-04 22:20:34 +02007423 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
7424 *fp2 |= FP_CB_TUNE;
7425
Chris Wilson5eddb702010-09-11 13:48:45 +01007426 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08007427
Eric Anholta07d6782011-03-30 13:01:08 -07007428 if (is_lvds)
7429 dpll |= DPLLB_MODE_LVDS;
7430 else
7431 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007432
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007433 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02007434 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007435
7436 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007437 dpll |= DPLL_SDVO_HIGH_SPEED;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007438 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007439 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08007440
Eric Anholta07d6782011-03-30 13:01:08 -07007441 /* compute bitmask from p1 value */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007442 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07007443 /* also FPA1 */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007444 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07007445
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007446 switch (crtc_state->dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07007447 case 5:
7448 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
7449 break;
7450 case 7:
7451 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
7452 break;
7453 case 10:
7454 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
7455 break;
7456 case 14:
7457 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
7458 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08007459 }
7460
Daniel Vetterb4c09f32013-04-30 14:01:42 +02007461 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05007462 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08007463 else
7464 dpll |= PLL_REF_INPUT_DREFCLK;
7465
Daniel Vetter959e16d2013-06-05 13:34:21 +02007466 return dpll | DPLL_VCO_ENABLE;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007467}
7468
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007469static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
7470 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08007471{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007472 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08007473 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007474 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03007475 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01007476 bool is_lvds = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02007477 struct intel_shared_dpll *pll;
Jesse Barnes79e53942008-11-07 14:24:08 -08007478
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007479 is_lvds = intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS);
Jesse Barnes79e53942008-11-07 14:24:08 -08007480
Paulo Zanoni5dc52982012-10-05 12:05:56 -03007481 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
7482 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
7483
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007484 ok = ironlake_compute_clocks(&crtc->base, crtc_state, &clock,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007485 &has_reduced_clock, &reduced_clock);
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007486 if (!ok && !crtc_state->clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08007487 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7488 return -EINVAL;
7489 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01007490 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007491 if (!crtc_state->clock_set) {
7492 crtc_state->dpll.n = clock.n;
7493 crtc_state->dpll.m1 = clock.m1;
7494 crtc_state->dpll.m2 = clock.m2;
7495 crtc_state->dpll.p1 = clock.p1;
7496 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01007497 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007498
Paulo Zanoni5dc52982012-10-05 12:05:56 -03007499 /* 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 +02007500 if (crtc_state->has_pch_encoder) {
7501 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007502 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007503 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007504
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007505 dpll = ironlake_compute_dpll(crtc, crtc_state,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007506 &fp, &reduced_clock,
7507 has_reduced_clock ? &fp2 : NULL);
7508
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007509 crtc_state->dpll_hw_state.dpll = dpll;
7510 crtc_state->dpll_hw_state.fp0 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02007511 if (has_reduced_clock)
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007512 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetter66e985c2013-06-05 13:34:20 +02007513 else
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007514 crtc_state->dpll_hw_state.fp1 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02007515
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007516 pll = intel_get_shared_dpll(crtc, crtc_state);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01007517 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03007518 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007519 pipe_name(crtc->pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07007520 return -EINVAL;
7521 }
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +02007522 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007523
Jani Nikulad330a952014-01-21 11:24:25 +02007524 if (is_lvds && has_reduced_clock && i915.powersave)
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007525 crtc->lowfreq_avail = true;
Daniel Vetterbcd644e2013-06-05 13:34:22 +02007526 else
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007527 crtc->lowfreq_avail = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02007528
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007529 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007530}
7531
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007532static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
7533 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02007534{
7535 struct drm_device *dev = crtc->base.dev;
7536 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007537 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02007538
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007539 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
7540 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
7541 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
7542 & ~TU_SIZE_MASK;
7543 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
7544 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
7545 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7546}
7547
7548static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
7549 enum transcoder transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007550 struct intel_link_m_n *m_n,
7551 struct intel_link_m_n *m2_n2)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007552{
7553 struct drm_device *dev = crtc->base.dev;
7554 struct drm_i915_private *dev_priv = dev->dev_private;
7555 enum pipe pipe = crtc->pipe;
7556
7557 if (INTEL_INFO(dev)->gen >= 5) {
7558 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
7559 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
7560 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
7561 & ~TU_SIZE_MASK;
7562 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
7563 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
7564 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007565 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
7566 * gen < 8) and if DRRS is supported (to make sure the
7567 * registers are not unnecessarily read).
7568 */
7569 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007570 crtc->config->has_drrs) {
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007571 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
7572 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
7573 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
7574 & ~TU_SIZE_MASK;
7575 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
7576 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
7577 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7578 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007579 } else {
7580 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
7581 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
7582 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
7583 & ~TU_SIZE_MASK;
7584 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
7585 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
7586 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7587 }
7588}
7589
7590void intel_dp_get_m_n(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007591 struct intel_crtc_state *pipe_config)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007592{
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02007593 if (pipe_config->has_pch_encoder)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007594 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
7595 else
7596 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007597 &pipe_config->dp_m_n,
7598 &pipe_config->dp_m2_n2);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007599}
7600
Daniel Vetter72419202013-04-04 13:28:53 +02007601static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007602 struct intel_crtc_state *pipe_config)
Daniel Vetter72419202013-04-04 13:28:53 +02007603{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007604 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007605 &pipe_config->fdi_m_n, NULL);
Daniel Vetter72419202013-04-04 13:28:53 +02007606}
7607
Jesse Barnesbd2e2442014-11-13 17:51:47 +00007608static void skylake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007609 struct intel_crtc_state *pipe_config)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00007610{
7611 struct drm_device *dev = crtc->base.dev;
7612 struct drm_i915_private *dev_priv = dev->dev_private;
7613 uint32_t tmp;
7614
7615 tmp = I915_READ(PS_CTL(crtc->pipe));
7616
7617 if (tmp & PS_ENABLE) {
7618 pipe_config->pch_pfit.enabled = true;
7619 pipe_config->pch_pfit.pos = I915_READ(PS_WIN_POS(crtc->pipe));
7620 pipe_config->pch_pfit.size = I915_READ(PS_WIN_SZ(crtc->pipe));
7621 }
7622}
7623
Damien Lespiau5724dbd2015-01-20 12:51:52 +00007624static void
7625skylake_get_initial_plane_config(struct intel_crtc *crtc,
7626 struct intel_initial_plane_config *plane_config)
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007627{
7628 struct drm_device *dev = crtc->base.dev;
7629 struct drm_i915_private *dev_priv = dev->dev_private;
7630 u32 val, base, offset, stride_mult;
7631 int pipe = crtc->pipe;
7632 int fourcc, pixel_format;
7633 int aligned_height;
7634 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00007635 struct intel_framebuffer *intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007636
Damien Lespiaud9806c92015-01-21 14:07:19 +00007637 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00007638 if (!intel_fb) {
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007639 DRM_DEBUG_KMS("failed to alloc fb\n");
7640 return;
7641 }
7642
Damien Lespiau1b842c82015-01-21 13:50:54 +00007643 fb = &intel_fb->base;
7644
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007645 val = I915_READ(PLANE_CTL(pipe, 0));
7646 if (val & PLANE_CTL_TILED_MASK)
7647 plane_config->tiling = I915_TILING_X;
7648
7649 pixel_format = val & PLANE_CTL_FORMAT_MASK;
7650 fourcc = skl_format_to_fourcc(pixel_format,
7651 val & PLANE_CTL_ORDER_RGBX,
7652 val & PLANE_CTL_ALPHA_MASK);
7653 fb->pixel_format = fourcc;
7654 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
7655
7656 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
7657 plane_config->base = base;
7658
7659 offset = I915_READ(PLANE_OFFSET(pipe, 0));
7660
7661 val = I915_READ(PLANE_SIZE(pipe, 0));
7662 fb->height = ((val >> 16) & 0xfff) + 1;
7663 fb->width = ((val >> 0) & 0x1fff) + 1;
7664
7665 val = I915_READ(PLANE_STRIDE(pipe, 0));
7666 switch (plane_config->tiling) {
7667 case I915_TILING_NONE:
7668 stride_mult = 64;
7669 break;
7670 case I915_TILING_X:
7671 stride_mult = 512;
7672 break;
7673 default:
7674 MISSING_CASE(plane_config->tiling);
7675 goto error;
7676 }
7677 fb->pitches[0] = (val & 0x3ff) * stride_mult;
7678
7679 aligned_height = intel_fb_align_height(dev, fb->height,
7680 plane_config->tiling);
7681
Daniel Vetterf37b5c22015-02-10 23:12:27 +01007682 plane_config->size = fb->pitches[0] * aligned_height;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007683
7684 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
7685 pipe_name(pipe), fb->width, fb->height,
7686 fb->bits_per_pixel, base, fb->pitches[0],
7687 plane_config->size);
7688
7689 crtc->base.primary->fb = fb;
7690 return;
7691
7692error:
7693 kfree(fb);
7694}
7695
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007696static void ironlake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007697 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007698{
7699 struct drm_device *dev = crtc->base.dev;
7700 struct drm_i915_private *dev_priv = dev->dev_private;
7701 uint32_t tmp;
7702
7703 tmp = I915_READ(PF_CTL(crtc->pipe));
7704
7705 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01007706 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007707 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
7708 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02007709
7710 /* We currently do not free assignements of panel fitters on
7711 * ivb/hsw (since we don't use the higher upscaling modes which
7712 * differentiates them) so just WARN about this case for now. */
7713 if (IS_GEN7(dev)) {
7714 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
7715 PF_PIPE_SEL_IVB(crtc->pipe));
7716 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007717 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007718}
7719
Damien Lespiau5724dbd2015-01-20 12:51:52 +00007720static void
7721ironlake_get_initial_plane_config(struct intel_crtc *crtc,
7722 struct intel_initial_plane_config *plane_config)
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007723{
7724 struct drm_device *dev = crtc->base.dev;
7725 struct drm_i915_private *dev_priv = dev->dev_private;
7726 u32 val, base, offset;
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007727 int pipe = crtc->pipe;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007728 int fourcc, pixel_format;
7729 int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007730 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00007731 struct intel_framebuffer *intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007732
Damien Lespiaud9806c92015-01-21 14:07:19 +00007733 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00007734 if (!intel_fb) {
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007735 DRM_DEBUG_KMS("failed to alloc fb\n");
7736 return;
7737 }
7738
Damien Lespiau1b842c82015-01-21 13:50:54 +00007739 fb = &intel_fb->base;
7740
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007741 val = I915_READ(DSPCNTR(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007742
7743 if (INTEL_INFO(dev)->gen >= 4)
7744 if (val & DISPPLANE_TILED)
Damien Lespiau49af4492015-01-20 12:51:44 +00007745 plane_config->tiling = I915_TILING_X;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007746
7747 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00007748 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007749 fb->pixel_format = fourcc;
7750 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007751
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007752 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007753 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007754 offset = I915_READ(DSPOFFSET(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007755 } else {
Damien Lespiau49af4492015-01-20 12:51:44 +00007756 if (plane_config->tiling)
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007757 offset = I915_READ(DSPTILEOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007758 else
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007759 offset = I915_READ(DSPLINOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007760 }
7761 plane_config->base = base;
7762
7763 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007764 fb->width = ((val >> 16) & 0xfff) + 1;
7765 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007766
7767 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007768 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007769
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007770 aligned_height = intel_fb_align_height(dev, fb->height,
Damien Lespiauec2c9812015-01-20 12:51:45 +00007771 plane_config->tiling);
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007772
Daniel Vetterf37b5c22015-02-10 23:12:27 +01007773 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007774
Damien Lespiau2844a922015-01-20 12:51:48 +00007775 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
7776 pipe_name(pipe), fb->width, fb->height,
7777 fb->bits_per_pixel, base, fb->pitches[0],
7778 plane_config->size);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007779
7780 crtc->base.primary->fb = fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007781}
7782
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007783static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007784 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007785{
7786 struct drm_device *dev = crtc->base.dev;
7787 struct drm_i915_private *dev_priv = dev->dev_private;
7788 uint32_t tmp;
7789
Daniel Vetterf458ebb2014-09-30 10:56:39 +02007790 if (!intel_display_power_is_enabled(dev_priv,
7791 POWER_DOMAIN_PIPE(crtc->pipe)))
Paulo Zanoni930e8c92014-07-04 13:38:34 -03007792 return false;
7793
Daniel Vettere143a212013-07-04 12:01:15 +02007794 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007795 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02007796
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007797 tmp = I915_READ(PIPECONF(crtc->pipe));
7798 if (!(tmp & PIPECONF_ENABLE))
7799 return false;
7800
Ville Syrjälä42571ae2013-09-06 23:29:00 +03007801 switch (tmp & PIPECONF_BPC_MASK) {
7802 case PIPECONF_6BPC:
7803 pipe_config->pipe_bpp = 18;
7804 break;
7805 case PIPECONF_8BPC:
7806 pipe_config->pipe_bpp = 24;
7807 break;
7808 case PIPECONF_10BPC:
7809 pipe_config->pipe_bpp = 30;
7810 break;
7811 case PIPECONF_12BPC:
7812 pipe_config->pipe_bpp = 36;
7813 break;
7814 default:
7815 break;
7816 }
7817
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02007818 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
7819 pipe_config->limited_color_range = true;
7820
Daniel Vetterab9412b2013-05-03 11:49:46 +02007821 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02007822 struct intel_shared_dpll *pll;
7823
Daniel Vetter88adfff2013-03-28 10:42:01 +01007824 pipe_config->has_pch_encoder = true;
7825
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007826 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
7827 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7828 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02007829
7830 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007831
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007832 if (HAS_PCH_IBX(dev_priv->dev)) {
Daniel Vetterd94ab062013-07-04 12:01:16 +02007833 pipe_config->shared_dpll =
7834 (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007835 } else {
7836 tmp = I915_READ(PCH_DPLL_SEL);
7837 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
7838 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
7839 else
7840 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
7841 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02007842
7843 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
7844
7845 WARN_ON(!pll->get_hw_state(dev_priv, pll,
7846 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02007847
7848 tmp = pipe_config->dpll_hw_state.dpll;
7849 pipe_config->pixel_multiplier =
7850 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
7851 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03007852
7853 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007854 } else {
7855 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007856 }
7857
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007858 intel_get_pipe_timings(crtc, pipe_config);
7859
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007860 ironlake_get_pfit_config(crtc, pipe_config);
7861
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007862 return true;
7863}
7864
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007865static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
7866{
7867 struct drm_device *dev = dev_priv->dev;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007868 struct intel_crtc *crtc;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007869
Damien Lespiaud3fcc802014-05-13 23:32:22 +01007870 for_each_intel_crtc(dev, crtc)
Rob Clarke2c719b2014-12-15 13:56:32 -05007871 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007872 pipe_name(crtc->pipe));
7873
Rob Clarke2c719b2014-12-15 13:56:32 -05007874 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
7875 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
7876 I915_STATE_WARN(I915_READ(WRPLL_CTL1) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
7877 I915_STATE_WARN(I915_READ(WRPLL_CTL2) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
7878 I915_STATE_WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
7879 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007880 "CPU PWM1 enabled\n");
Paulo Zanonic5107b82014-07-04 11:50:30 -03007881 if (IS_HASWELL(dev))
Rob Clarke2c719b2014-12-15 13:56:32 -05007882 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
Paulo Zanonic5107b82014-07-04 11:50:30 -03007883 "CPU PWM2 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05007884 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007885 "PCH PWM1 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05007886 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007887 "Utility pin enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05007888 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007889
Paulo Zanoni9926ada2014-04-01 19:39:47 -03007890 /*
7891 * In theory we can still leave IRQs enabled, as long as only the HPD
7892 * interrupts remain enabled. We used to check for that, but since it's
7893 * gen-specific and since we only disable LCPLL after we fully disable
7894 * the interrupts, the check below should be enough.
7895 */
Rob Clarke2c719b2014-12-15 13:56:32 -05007896 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007897}
7898
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007899static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
7900{
7901 struct drm_device *dev = dev_priv->dev;
7902
7903 if (IS_HASWELL(dev))
7904 return I915_READ(D_COMP_HSW);
7905 else
7906 return I915_READ(D_COMP_BDW);
7907}
7908
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007909static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
7910{
7911 struct drm_device *dev = dev_priv->dev;
7912
7913 if (IS_HASWELL(dev)) {
7914 mutex_lock(&dev_priv->rps.hw_lock);
7915 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
7916 val))
Paulo Zanonif475dad2014-07-04 11:59:57 -03007917 DRM_ERROR("Failed to write to D_COMP\n");
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007918 mutex_unlock(&dev_priv->rps.hw_lock);
7919 } else {
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007920 I915_WRITE(D_COMP_BDW, val);
7921 POSTING_READ(D_COMP_BDW);
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007922 }
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007923}
7924
7925/*
7926 * This function implements pieces of two sequences from BSpec:
7927 * - Sequence for display software to disable LCPLL
7928 * - Sequence for display software to allow package C8+
7929 * The steps implemented here are just the steps that actually touch the LCPLL
7930 * register. Callers should take care of disabling all the display engine
7931 * functions, doing the mode unset, fixing interrupts, etc.
7932 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03007933static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
7934 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007935{
7936 uint32_t val;
7937
7938 assert_can_disable_lcpll(dev_priv);
7939
7940 val = I915_READ(LCPLL_CTL);
7941
7942 if (switch_to_fclk) {
7943 val |= LCPLL_CD_SOURCE_FCLK;
7944 I915_WRITE(LCPLL_CTL, val);
7945
7946 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
7947 LCPLL_CD_SOURCE_FCLK_DONE, 1))
7948 DRM_ERROR("Switching to FCLK failed\n");
7949
7950 val = I915_READ(LCPLL_CTL);
7951 }
7952
7953 val |= LCPLL_PLL_DISABLE;
7954 I915_WRITE(LCPLL_CTL, val);
7955 POSTING_READ(LCPLL_CTL);
7956
7957 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
7958 DRM_ERROR("LCPLL still locked\n");
7959
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007960 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007961 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007962 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007963 ndelay(100);
7964
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007965 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
7966 1))
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007967 DRM_ERROR("D_COMP RCOMP still in progress\n");
7968
7969 if (allow_power_down) {
7970 val = I915_READ(LCPLL_CTL);
7971 val |= LCPLL_POWER_DOWN_ALLOW;
7972 I915_WRITE(LCPLL_CTL, val);
7973 POSTING_READ(LCPLL_CTL);
7974 }
7975}
7976
7977/*
7978 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
7979 * source.
7980 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03007981static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007982{
7983 uint32_t val;
7984
7985 val = I915_READ(LCPLL_CTL);
7986
7987 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
7988 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
7989 return;
7990
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007991 /*
7992 * Make sure we're not on PC8 state before disabling PC8, otherwise
7993 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007994 */
Mika Kuoppala59bad942015-01-16 11:34:40 +02007995 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Paulo Zanoni215733f2013-08-19 13:18:07 -03007996
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007997 if (val & LCPLL_POWER_DOWN_ALLOW) {
7998 val &= ~LCPLL_POWER_DOWN_ALLOW;
7999 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02008000 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008001 }
8002
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03008003 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008004 val |= D_COMP_COMP_FORCE;
8005 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03008006 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008007
8008 val = I915_READ(LCPLL_CTL);
8009 val &= ~LCPLL_PLL_DISABLE;
8010 I915_WRITE(LCPLL_CTL, val);
8011
8012 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
8013 DRM_ERROR("LCPLL not locked yet\n");
8014
8015 if (val & LCPLL_CD_SOURCE_FCLK) {
8016 val = I915_READ(LCPLL_CTL);
8017 val &= ~LCPLL_CD_SOURCE_FCLK;
8018 I915_WRITE(LCPLL_CTL, val);
8019
8020 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
8021 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
8022 DRM_ERROR("Switching back to LCPLL failed\n");
8023 }
Paulo Zanoni215733f2013-08-19 13:18:07 -03008024
Mika Kuoppala59bad942015-01-16 11:34:40 +02008025 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008026}
8027
Paulo Zanoni765dab62014-03-07 20:08:18 -03008028/*
8029 * Package states C8 and deeper are really deep PC states that can only be
8030 * reached when all the devices on the system allow it, so even if the graphics
8031 * device allows PC8+, it doesn't mean the system will actually get to these
8032 * states. Our driver only allows PC8+ when going into runtime PM.
8033 *
8034 * The requirements for PC8+ are that all the outputs are disabled, the power
8035 * well is disabled and most interrupts are disabled, and these are also
8036 * requirements for runtime PM. When these conditions are met, we manually do
8037 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
8038 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
8039 * hang the machine.
8040 *
8041 * When we really reach PC8 or deeper states (not just when we allow it) we lose
8042 * the state of some registers, so when we come back from PC8+ we need to
8043 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
8044 * need to take care of the registers kept by RC6. Notice that this happens even
8045 * if we don't put the device in PCI D3 state (which is what currently happens
8046 * because of the runtime PM support).
8047 *
8048 * For more, read "Display Sequences for Package C8" on the hardware
8049 * documentation.
8050 */
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03008051void hsw_enable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03008052{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008053 struct drm_device *dev = dev_priv->dev;
8054 uint32_t val;
8055
Paulo Zanonic67a4702013-08-19 13:18:09 -03008056 DRM_DEBUG_KMS("Enabling package C8+\n");
8057
Paulo Zanonic67a4702013-08-19 13:18:09 -03008058 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
8059 val = I915_READ(SOUTH_DSPCLK_GATE_D);
8060 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
8061 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
8062 }
8063
8064 lpt_disable_clkout_dp(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008065 hsw_disable_lcpll(dev_priv, true, true);
8066}
8067
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03008068void hsw_disable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03008069{
8070 struct drm_device *dev = dev_priv->dev;
8071 uint32_t val;
8072
Paulo Zanonic67a4702013-08-19 13:18:09 -03008073 DRM_DEBUG_KMS("Disabling package C8+\n");
8074
8075 hsw_restore_lcpll(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008076 lpt_init_pch_refclk(dev);
8077
8078 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
8079 val = I915_READ(SOUTH_DSPCLK_GATE_D);
8080 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
8081 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
8082 }
8083
8084 intel_prepare_ddi(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008085}
8086
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008087static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
8088 struct intel_crtc_state *crtc_state)
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03008089{
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008090 if (!intel_ddi_pll_select(crtc, crtc_state))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03008091 return -EINVAL;
Daniel Vetter716c2e52014-06-25 22:02:02 +03008092
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008093 crtc->lowfreq_avail = false;
Daniel Vetter644cef32014-04-24 23:55:07 +02008094
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02008095 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008096}
8097
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008098static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
8099 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008100 struct intel_crtc_state *pipe_config)
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008101{
Damien Lespiau3148ade2014-11-21 16:14:56 +00008102 u32 temp, dpll_ctl1;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008103
8104 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
8105 pipe_config->ddi_pll_sel = temp >> (port * 3 + 1);
8106
8107 switch (pipe_config->ddi_pll_sel) {
Damien Lespiau3148ade2014-11-21 16:14:56 +00008108 case SKL_DPLL0:
8109 /*
8110 * On SKL the eDP DPLL (DPLL0 as we don't use SSC) is not part
8111 * of the shared DPLL framework and thus needs to be read out
8112 * separately
8113 */
8114 dpll_ctl1 = I915_READ(DPLL_CTRL1);
8115 pipe_config->dpll_hw_state.ctrl1 = dpll_ctl1 & 0x3f;
8116 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008117 case SKL_DPLL1:
8118 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
8119 break;
8120 case SKL_DPLL2:
8121 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
8122 break;
8123 case SKL_DPLL3:
8124 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
8125 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008126 }
8127}
8128
Damien Lespiau7d2c8172014-07-29 18:06:18 +01008129static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
8130 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008131 struct intel_crtc_state *pipe_config)
Damien Lespiau7d2c8172014-07-29 18:06:18 +01008132{
8133 pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
8134
8135 switch (pipe_config->ddi_pll_sel) {
8136 case PORT_CLK_SEL_WRPLL1:
8137 pipe_config->shared_dpll = DPLL_ID_WRPLL1;
8138 break;
8139 case PORT_CLK_SEL_WRPLL2:
8140 pipe_config->shared_dpll = DPLL_ID_WRPLL2;
8141 break;
8142 }
8143}
8144
Daniel Vetter26804af2014-06-25 22:01:55 +03008145static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008146 struct intel_crtc_state *pipe_config)
Daniel Vetter26804af2014-06-25 22:01:55 +03008147{
8148 struct drm_device *dev = crtc->base.dev;
8149 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterd452c5b2014-07-04 11:27:39 -03008150 struct intel_shared_dpll *pll;
Daniel Vetter26804af2014-06-25 22:01:55 +03008151 enum port port;
8152 uint32_t tmp;
8153
8154 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
8155
8156 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
8157
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008158 if (IS_SKYLAKE(dev))
8159 skylake_get_ddi_pll(dev_priv, port, pipe_config);
8160 else
8161 haswell_get_ddi_pll(dev_priv, port, pipe_config);
Daniel Vetter9cd86932014-06-25 22:01:57 +03008162
Daniel Vetterd452c5b2014-07-04 11:27:39 -03008163 if (pipe_config->shared_dpll >= 0) {
8164 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
8165
8166 WARN_ON(!pll->get_hw_state(dev_priv, pll,
8167 &pipe_config->dpll_hw_state));
8168 }
8169
Daniel Vetter26804af2014-06-25 22:01:55 +03008170 /*
8171 * Haswell has only FDI/PCH transcoder A. It is which is connected to
8172 * DDI E. So just check whether this pipe is wired to DDI E and whether
8173 * the PCH transcoder is on.
8174 */
Damien Lespiauca370452013-12-03 13:56:24 +00008175 if (INTEL_INFO(dev)->gen < 9 &&
8176 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
Daniel Vetter26804af2014-06-25 22:01:55 +03008177 pipe_config->has_pch_encoder = true;
8178
8179 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
8180 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
8181 FDI_DP_PORT_WIDTH_SHIFT) + 1;
8182
8183 ironlake_get_fdi_m_n_config(crtc, pipe_config);
8184 }
8185}
8186
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008187static bool haswell_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008188 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008189{
8190 struct drm_device *dev = crtc->base.dev;
8191 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008192 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008193 uint32_t tmp;
8194
Daniel Vetterf458ebb2014-09-30 10:56:39 +02008195 if (!intel_display_power_is_enabled(dev_priv,
Imre Deakb5482bd2014-03-05 16:20:55 +02008196 POWER_DOMAIN_PIPE(crtc->pipe)))
8197 return false;
8198
Daniel Vettere143a212013-07-04 12:01:15 +02008199 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008200 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
8201
Daniel Vettereccb1402013-05-22 00:50:22 +02008202 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
8203 if (tmp & TRANS_DDI_FUNC_ENABLE) {
8204 enum pipe trans_edp_pipe;
8205 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
8206 default:
8207 WARN(1, "unknown pipe linked to edp transcoder\n");
8208 case TRANS_DDI_EDP_INPUT_A_ONOFF:
8209 case TRANS_DDI_EDP_INPUT_A_ON:
8210 trans_edp_pipe = PIPE_A;
8211 break;
8212 case TRANS_DDI_EDP_INPUT_B_ONOFF:
8213 trans_edp_pipe = PIPE_B;
8214 break;
8215 case TRANS_DDI_EDP_INPUT_C_ONOFF:
8216 trans_edp_pipe = PIPE_C;
8217 break;
8218 }
8219
8220 if (trans_edp_pipe == crtc->pipe)
8221 pipe_config->cpu_transcoder = TRANSCODER_EDP;
8222 }
8223
Daniel Vetterf458ebb2014-09-30 10:56:39 +02008224 if (!intel_display_power_is_enabled(dev_priv,
Daniel Vettereccb1402013-05-22 00:50:22 +02008225 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -03008226 return false;
8227
Daniel Vettereccb1402013-05-22 00:50:22 +02008228 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008229 if (!(tmp & PIPECONF_ENABLE))
8230 return false;
8231
Daniel Vetter26804af2014-06-25 22:01:55 +03008232 haswell_get_ddi_port_state(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02008233
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008234 intel_get_pipe_timings(crtc, pipe_config);
8235
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008236 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00008237 if (intel_display_power_is_enabled(dev_priv, pfit_domain)) {
8238 if (IS_SKYLAKE(dev))
8239 skylake_get_pfit_config(crtc, pipe_config);
8240 else
8241 ironlake_get_pfit_config(crtc, pipe_config);
8242 }
Daniel Vetter88adfff2013-03-28 10:42:01 +01008243
Jesse Barnese59150d2014-01-07 13:30:45 -08008244 if (IS_HASWELL(dev))
8245 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
8246 (I915_READ(IPS_CTL) & IPS_ENABLE);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03008247
Clint Taylorebb69c92014-09-30 10:30:22 -07008248 if (pipe_config->cpu_transcoder != TRANSCODER_EDP) {
8249 pipe_config->pixel_multiplier =
8250 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
8251 } else {
8252 pipe_config->pixel_multiplier = 1;
8253 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02008254
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008255 return true;
8256}
8257
Chris Wilson560b85b2010-08-07 11:01:38 +01008258static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
8259{
8260 struct drm_device *dev = crtc->dev;
8261 struct drm_i915_private *dev_priv = dev->dev_private;
8262 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälädc41c152014-08-13 11:57:05 +03008263 uint32_t cntl = 0, size = 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01008264
Ville Syrjälädc41c152014-08-13 11:57:05 +03008265 if (base) {
8266 unsigned int width = intel_crtc->cursor_width;
8267 unsigned int height = intel_crtc->cursor_height;
8268 unsigned int stride = roundup_pow_of_two(width) * 4;
8269
8270 switch (stride) {
8271 default:
8272 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
8273 width, stride);
8274 stride = 256;
8275 /* fallthrough */
8276 case 256:
8277 case 512:
8278 case 1024:
8279 case 2048:
8280 break;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008281 }
8282
Ville Syrjälädc41c152014-08-13 11:57:05 +03008283 cntl |= CURSOR_ENABLE |
8284 CURSOR_GAMMA_ENABLE |
8285 CURSOR_FORMAT_ARGB |
8286 CURSOR_STRIDE(stride);
8287
8288 size = (height << 12) | width;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008289 }
Chris Wilson560b85b2010-08-07 11:01:38 +01008290
Ville Syrjälädc41c152014-08-13 11:57:05 +03008291 if (intel_crtc->cursor_cntl != 0 &&
8292 (intel_crtc->cursor_base != base ||
8293 intel_crtc->cursor_size != size ||
8294 intel_crtc->cursor_cntl != cntl)) {
8295 /* On these chipsets we can only modify the base/size/stride
8296 * whilst the cursor is disabled.
8297 */
8298 I915_WRITE(_CURACNTR, 0);
8299 POSTING_READ(_CURACNTR);
8300 intel_crtc->cursor_cntl = 0;
8301 }
8302
Ville Syrjälä99d1f382014-09-12 20:53:32 +03008303 if (intel_crtc->cursor_base != base) {
Ville Syrjälädc41c152014-08-13 11:57:05 +03008304 I915_WRITE(_CURABASE, base);
Ville Syrjälä99d1f382014-09-12 20:53:32 +03008305 intel_crtc->cursor_base = base;
8306 }
Ville Syrjälädc41c152014-08-13 11:57:05 +03008307
8308 if (intel_crtc->cursor_size != size) {
8309 I915_WRITE(CURSIZE, size);
8310 intel_crtc->cursor_size = size;
8311 }
8312
Chris Wilson4b0e3332014-05-30 16:35:26 +03008313 if (intel_crtc->cursor_cntl != cntl) {
8314 I915_WRITE(_CURACNTR, cntl);
8315 POSTING_READ(_CURACNTR);
8316 intel_crtc->cursor_cntl = cntl;
8317 }
Chris Wilson560b85b2010-08-07 11:01:38 +01008318}
8319
8320static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
8321{
8322 struct drm_device *dev = crtc->dev;
8323 struct drm_i915_private *dev_priv = dev->dev_private;
8324 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8325 int pipe = intel_crtc->pipe;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008326 uint32_t cntl;
Chris Wilson560b85b2010-08-07 11:01:38 +01008327
Chris Wilson4b0e3332014-05-30 16:35:26 +03008328 cntl = 0;
8329 if (base) {
8330 cntl = MCURSOR_GAMMA_ENABLE;
8331 switch (intel_crtc->cursor_width) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308332 case 64:
8333 cntl |= CURSOR_MODE_64_ARGB_AX;
8334 break;
8335 case 128:
8336 cntl |= CURSOR_MODE_128_ARGB_AX;
8337 break;
8338 case 256:
8339 cntl |= CURSOR_MODE_256_ARGB_AX;
8340 break;
8341 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01008342 MISSING_CASE(intel_crtc->cursor_width);
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308343 return;
Chris Wilson560b85b2010-08-07 11:01:38 +01008344 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03008345 cntl |= pipe << 28; /* Connect to correct pipe */
Ville Syrjälä47bf17a2014-09-12 20:53:33 +03008346
8347 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
8348 cntl |= CURSOR_PIPE_CSC_ENABLE;
Chris Wilson560b85b2010-08-07 11:01:38 +01008349 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03008350
Matt Roper8e7d6882015-01-21 16:35:41 -08008351 if (crtc->cursor->state->rotation == BIT(DRM_ROTATE_180))
Ville Syrjälä4398ad42014-10-23 07:41:34 -07008352 cntl |= CURSOR_ROTATE_180;
8353
Chris Wilson4b0e3332014-05-30 16:35:26 +03008354 if (intel_crtc->cursor_cntl != cntl) {
8355 I915_WRITE(CURCNTR(pipe), cntl);
8356 POSTING_READ(CURCNTR(pipe));
8357 intel_crtc->cursor_cntl = cntl;
8358 }
8359
Jesse Barnes65a21cd2011-10-12 11:10:21 -07008360 /* and commit changes on next vblank */
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008361 I915_WRITE(CURBASE(pipe), base);
8362 POSTING_READ(CURBASE(pipe));
Ville Syrjälä99d1f382014-09-12 20:53:32 +03008363
8364 intel_crtc->cursor_base = base;
Jesse Barnes65a21cd2011-10-12 11:10:21 -07008365}
8366
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008367/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01008368static void intel_crtc_update_cursor(struct drm_crtc *crtc,
8369 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008370{
8371 struct drm_device *dev = crtc->dev;
8372 struct drm_i915_private *dev_priv = dev->dev_private;
8373 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8374 int pipe = intel_crtc->pipe;
Matt Roper3d7d6512014-06-10 08:28:13 -07008375 int x = crtc->cursor_x;
8376 int y = crtc->cursor_y;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008377 u32 base = 0, pos = 0;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008378
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008379 if (on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008380 base = intel_crtc->cursor_addr;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008381
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008382 if (x >= intel_crtc->config->pipe_src_w)
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008383 base = 0;
8384
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008385 if (y >= intel_crtc->config->pipe_src_h)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008386 base = 0;
8387
8388 if (x < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03008389 if (x + intel_crtc->cursor_width <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008390 base = 0;
8391
8392 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
8393 x = -x;
8394 }
8395 pos |= x << CURSOR_X_SHIFT;
8396
8397 if (y < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03008398 if (y + intel_crtc->cursor_height <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008399 base = 0;
8400
8401 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
8402 y = -y;
8403 }
8404 pos |= y << CURSOR_Y_SHIFT;
8405
Chris Wilson4b0e3332014-05-30 16:35:26 +03008406 if (base == 0 && intel_crtc->cursor_base == 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008407 return;
8408
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008409 I915_WRITE(CURPOS(pipe), pos);
8410
Ville Syrjälä4398ad42014-10-23 07:41:34 -07008411 /* ILK+ do this automagically */
8412 if (HAS_GMCH_DISPLAY(dev) &&
Matt Roper8e7d6882015-01-21 16:35:41 -08008413 crtc->cursor->state->rotation == BIT(DRM_ROTATE_180)) {
Ville Syrjälä4398ad42014-10-23 07:41:34 -07008414 base += (intel_crtc->cursor_height *
8415 intel_crtc->cursor_width - 1) * 4;
8416 }
8417
Ville Syrjälä8ac54662014-08-12 19:39:54 +03008418 if (IS_845G(dev) || IS_I865G(dev))
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008419 i845_update_cursor(crtc, base);
8420 else
8421 i9xx_update_cursor(crtc, base);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008422}
8423
Ville Syrjälädc41c152014-08-13 11:57:05 +03008424static bool cursor_size_ok(struct drm_device *dev,
8425 uint32_t width, uint32_t height)
8426{
8427 if (width == 0 || height == 0)
8428 return false;
8429
8430 /*
8431 * 845g/865g are special in that they are only limited by
8432 * the width of their cursors, the height is arbitrary up to
8433 * the precision of the register. Everything else requires
8434 * square cursors, limited to a few power-of-two sizes.
8435 */
8436 if (IS_845G(dev) || IS_I865G(dev)) {
8437 if ((width & 63) != 0)
8438 return false;
8439
8440 if (width > (IS_845G(dev) ? 64 : 512))
8441 return false;
8442
8443 if (height > 1023)
8444 return false;
8445 } else {
8446 switch (width | height) {
8447 case 256:
8448 case 128:
8449 if (IS_GEN2(dev))
8450 return false;
8451 case 64:
8452 break;
8453 default:
8454 return false;
8455 }
8456 }
8457
8458 return true;
8459}
8460
Jesse Barnes79e53942008-11-07 14:24:08 -08008461static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01008462 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08008463{
James Simmons72034252010-08-03 01:33:19 +01008464 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08008465 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008466
James Simmons72034252010-08-03 01:33:19 +01008467 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008468 intel_crtc->lut_r[i] = red[i] >> 8;
8469 intel_crtc->lut_g[i] = green[i] >> 8;
8470 intel_crtc->lut_b[i] = blue[i] >> 8;
8471 }
8472
8473 intel_crtc_load_lut(crtc);
8474}
8475
Jesse Barnes79e53942008-11-07 14:24:08 -08008476/* VESA 640x480x72Hz mode to set on the pipe */
8477static struct drm_display_mode load_detect_mode = {
8478 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
8479 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
8480};
8481
Daniel Vettera8bb6812014-02-10 18:00:39 +01008482struct drm_framebuffer *
8483__intel_framebuffer_create(struct drm_device *dev,
8484 struct drm_mode_fb_cmd2 *mode_cmd,
8485 struct drm_i915_gem_object *obj)
Chris Wilsond2dff872011-04-19 08:36:26 +01008486{
8487 struct intel_framebuffer *intel_fb;
8488 int ret;
8489
8490 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
8491 if (!intel_fb) {
Alexey Khoroshilov6ccb81f2014-11-08 01:41:23 +03008492 drm_gem_object_unreference(&obj->base);
Chris Wilsond2dff872011-04-19 08:36:26 +01008493 return ERR_PTR(-ENOMEM);
8494 }
8495
8496 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008497 if (ret)
8498 goto err;
Chris Wilsond2dff872011-04-19 08:36:26 +01008499
8500 return &intel_fb->base;
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008501err:
Alexey Khoroshilov6ccb81f2014-11-08 01:41:23 +03008502 drm_gem_object_unreference(&obj->base);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008503 kfree(intel_fb);
8504
8505 return ERR_PTR(ret);
Chris Wilsond2dff872011-04-19 08:36:26 +01008506}
8507
Daniel Vetterb5ea6422014-03-02 21:18:00 +01008508static struct drm_framebuffer *
Daniel Vettera8bb6812014-02-10 18:00:39 +01008509intel_framebuffer_create(struct drm_device *dev,
8510 struct drm_mode_fb_cmd2 *mode_cmd,
8511 struct drm_i915_gem_object *obj)
8512{
8513 struct drm_framebuffer *fb;
8514 int ret;
8515
8516 ret = i915_mutex_lock_interruptible(dev);
8517 if (ret)
8518 return ERR_PTR(ret);
8519 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
8520 mutex_unlock(&dev->struct_mutex);
8521
8522 return fb;
8523}
8524
Chris Wilsond2dff872011-04-19 08:36:26 +01008525static u32
8526intel_framebuffer_pitch_for_width(int width, int bpp)
8527{
8528 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
8529 return ALIGN(pitch, 64);
8530}
8531
8532static u32
8533intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
8534{
8535 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
Fabian Frederick1267a262014-07-01 20:39:41 +02008536 return PAGE_ALIGN(pitch * mode->vdisplay);
Chris Wilsond2dff872011-04-19 08:36:26 +01008537}
8538
8539static struct drm_framebuffer *
8540intel_framebuffer_create_for_mode(struct drm_device *dev,
8541 struct drm_display_mode *mode,
8542 int depth, int bpp)
8543{
8544 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +00008545 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +01008546
8547 obj = i915_gem_alloc_object(dev,
8548 intel_framebuffer_size_for_mode(mode, bpp));
8549 if (obj == NULL)
8550 return ERR_PTR(-ENOMEM);
8551
8552 mode_cmd.width = mode->hdisplay;
8553 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008554 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
8555 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00008556 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01008557
8558 return intel_framebuffer_create(dev, &mode_cmd, obj);
8559}
8560
8561static struct drm_framebuffer *
8562mode_fits_in_fbdev(struct drm_device *dev,
8563 struct drm_display_mode *mode)
8564{
Daniel Vetter4520f532013-10-09 09:18:51 +02008565#ifdef CONFIG_DRM_I915_FBDEV
Chris Wilsond2dff872011-04-19 08:36:26 +01008566 struct drm_i915_private *dev_priv = dev->dev_private;
8567 struct drm_i915_gem_object *obj;
8568 struct drm_framebuffer *fb;
8569
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008570 if (!dev_priv->fbdev)
8571 return NULL;
8572
8573 if (!dev_priv->fbdev->fb)
Chris Wilsond2dff872011-04-19 08:36:26 +01008574 return NULL;
8575
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008576 obj = dev_priv->fbdev->fb->obj;
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008577 BUG_ON(!obj);
Chris Wilsond2dff872011-04-19 08:36:26 +01008578
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008579 fb = &dev_priv->fbdev->fb->base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008580 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
8581 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01008582 return NULL;
8583
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008584 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01008585 return NULL;
8586
8587 return fb;
Daniel Vetter4520f532013-10-09 09:18:51 +02008588#else
8589 return NULL;
8590#endif
Chris Wilsond2dff872011-04-19 08:36:26 +01008591}
8592
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008593bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01008594 struct drm_display_mode *mode,
Rob Clark51fd3712013-11-19 12:10:12 -05008595 struct intel_load_detect_pipe *old,
8596 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -08008597{
8598 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008599 struct intel_encoder *intel_encoder =
8600 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08008601 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01008602 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08008603 struct drm_crtc *crtc = NULL;
8604 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02008605 struct drm_framebuffer *fb;
Rob Clark51fd3712013-11-19 12:10:12 -05008606 struct drm_mode_config *config = &dev->mode_config;
8607 int ret, i = -1;
Jesse Barnes79e53942008-11-07 14:24:08 -08008608
Chris Wilsond2dff872011-04-19 08:36:26 +01008609 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03008610 connector->base.id, connector->name,
Jani Nikula8e329a02014-06-03 14:56:21 +03008611 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +01008612
Rob Clark51fd3712013-11-19 12:10:12 -05008613retry:
8614 ret = drm_modeset_lock(&config->connection_mutex, ctx);
8615 if (ret)
8616 goto fail_unlock;
Daniel Vetter6e9f7982014-05-29 23:54:47 +02008617
Jesse Barnes79e53942008-11-07 14:24:08 -08008618 /*
8619 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01008620 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008621 * - if the connector already has an assigned crtc, use it (but make
8622 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01008623 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008624 * - try to find the first unused crtc that can drive this connector,
8625 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08008626 */
8627
8628 /* See if we already have a CRTC for this connector */
8629 if (encoder->crtc) {
8630 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01008631
Rob Clark51fd3712013-11-19 12:10:12 -05008632 ret = drm_modeset_lock(&crtc->mutex, ctx);
8633 if (ret)
8634 goto fail_unlock;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01008635 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
8636 if (ret)
8637 goto fail_unlock;
Daniel Vetter7b240562012-12-12 00:35:33 +01008638
Daniel Vetter24218aa2012-08-12 19:27:11 +02008639 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008640 old->load_detect_temp = false;
8641
8642 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008643 if (connector->dpms != DRM_MODE_DPMS_ON)
8644 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01008645
Chris Wilson71731882011-04-19 23:10:58 +01008646 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08008647 }
8648
8649 /* Find an unused one (if possible) */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008650 for_each_crtc(dev, possible_crtc) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008651 i++;
8652 if (!(encoder->possible_crtcs & (1 << i)))
8653 continue;
Ville Syrjäläa4592492014-08-11 13:15:36 +03008654 if (possible_crtc->enabled)
8655 continue;
8656 /* This can occur when applying the pipe A quirk on resume. */
8657 if (to_intel_crtc(possible_crtc)->new_enabled)
8658 continue;
8659
8660 crtc = possible_crtc;
8661 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08008662 }
8663
8664 /*
8665 * If we didn't find an unused CRTC, don't use any.
8666 */
8667 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01008668 DRM_DEBUG_KMS("no pipe available for load-detect\n");
Rob Clark51fd3712013-11-19 12:10:12 -05008669 goto fail_unlock;
Jesse Barnes79e53942008-11-07 14:24:08 -08008670 }
8671
Rob Clark51fd3712013-11-19 12:10:12 -05008672 ret = drm_modeset_lock(&crtc->mutex, ctx);
8673 if (ret)
8674 goto fail_unlock;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01008675 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
8676 if (ret)
8677 goto fail_unlock;
Daniel Vetterfc303102012-07-09 10:40:58 +02008678 intel_encoder->new_crtc = to_intel_crtc(crtc);
8679 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008680
8681 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008682 intel_crtc->new_enabled = true;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008683 intel_crtc->new_config = intel_crtc->config;
Daniel Vetter24218aa2012-08-12 19:27:11 +02008684 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008685 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01008686 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08008687
Chris Wilson64927112011-04-20 07:25:26 +01008688 if (!mode)
8689 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08008690
Chris Wilsond2dff872011-04-19 08:36:26 +01008691 /* We need a framebuffer large enough to accommodate all accesses
8692 * that the plane may generate whilst we perform load detection.
8693 * We can not rely on the fbcon either being present (we get called
8694 * during its initialisation to detect all boot displays, or it may
8695 * not even exist) or that it is large enough to satisfy the
8696 * requested mode.
8697 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02008698 fb = mode_fits_in_fbdev(dev, mode);
8699 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008700 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008701 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
8702 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01008703 } else
8704 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008705 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008706 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008707 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008708 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008709
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008710 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01008711 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01008712 if (old->release_fb)
8713 old->release_fb->funcs->destroy(old->release_fb);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008714 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008715 }
Daniel Vetter9128b042015-03-03 17:31:21 +01008716 crtc->primary->crtc = crtc;
Chris Wilson71731882011-04-19 23:10:58 +01008717
Jesse Barnes79e53942008-11-07 14:24:08 -08008718 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008719 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +01008720 return true;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008721
8722 fail:
8723 intel_crtc->new_enabled = crtc->enabled;
8724 if (intel_crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008725 intel_crtc->new_config = intel_crtc->config;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008726 else
8727 intel_crtc->new_config = NULL;
Rob Clark51fd3712013-11-19 12:10:12 -05008728fail_unlock:
8729 if (ret == -EDEADLK) {
8730 drm_modeset_backoff(ctx);
8731 goto retry;
8732 }
8733
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008734 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08008735}
8736
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008737void intel_release_load_detect_pipe(struct drm_connector *connector,
Ville Syrjälä208bf9f2014-08-11 13:15:35 +03008738 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08008739{
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008740 struct intel_encoder *intel_encoder =
8741 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01008742 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +01008743 struct drm_crtc *crtc = encoder->crtc;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008744 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008745
Chris Wilsond2dff872011-04-19 08:36:26 +01008746 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03008747 connector->base.id, connector->name,
Jani Nikula8e329a02014-06-03 14:56:21 +03008748 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +01008749
Chris Wilson8261b192011-04-19 23:18:09 +01008750 if (old->load_detect_temp) {
Daniel Vetterfc303102012-07-09 10:40:58 +02008751 to_intel_connector(connector)->new_encoder = NULL;
8752 intel_encoder->new_crtc = NULL;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008753 intel_crtc->new_enabled = false;
8754 intel_crtc->new_config = NULL;
Daniel Vetterfc303102012-07-09 10:40:58 +02008755 intel_set_mode(crtc, NULL, 0, 0, NULL);
Chris Wilsond2dff872011-04-19 08:36:26 +01008756
Daniel Vetter36206362012-12-10 20:42:17 +01008757 if (old->release_fb) {
8758 drm_framebuffer_unregister_private(old->release_fb);
8759 drm_framebuffer_unreference(old->release_fb);
8760 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008761
Chris Wilson0622a532011-04-21 09:32:11 +01008762 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008763 }
8764
Eric Anholtc751ce42010-03-25 11:48:48 -07008765 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008766 if (old->dpms_mode != DRM_MODE_DPMS_ON)
8767 connector->funcs->dpms(connector, old->dpms_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08008768}
8769
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008770static int i9xx_pll_refclk(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008771 const struct intel_crtc_state *pipe_config)
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008772{
8773 struct drm_i915_private *dev_priv = dev->dev_private;
8774 u32 dpll = pipe_config->dpll_hw_state.dpll;
8775
8776 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008777 return dev_priv->vbt.lvds_ssc_freq;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008778 else if (HAS_PCH_SPLIT(dev))
8779 return 120000;
8780 else if (!IS_GEN2(dev))
8781 return 96000;
8782 else
8783 return 48000;
8784}
8785
Jesse Barnes79e53942008-11-07 14:24:08 -08008786/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008787static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008788 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08008789{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008790 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08008791 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008792 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008793 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -08008794 u32 fp;
8795 intel_clock_t clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008796 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -08008797
8798 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +03008799 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008800 else
Ville Syrjälä293623f2013-09-13 16:18:46 +03008801 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -08008802
8803 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008804 if (IS_PINEVIEW(dev)) {
8805 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
8806 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08008807 } else {
8808 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
8809 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
8810 }
8811
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008812 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008813 if (IS_PINEVIEW(dev))
8814 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
8815 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08008816 else
8817 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08008818 DPLL_FPA01_P1_POST_DIV_SHIFT);
8819
8820 switch (dpll & DPLL_MODE_MASK) {
8821 case DPLLB_MODE_DAC_SERIAL:
8822 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
8823 5 : 10;
8824 break;
8825 case DPLLB_MODE_LVDS:
8826 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
8827 7 : 14;
8828 break;
8829 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08008830 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08008831 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008832 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008833 }
8834
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008835 if (IS_PINEVIEW(dev))
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008836 pineview_clock(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008837 else
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008838 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008839 } else {
Ville Syrjälä0fb58222014-01-10 14:06:46 +02008840 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008841 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
Jesse Barnes79e53942008-11-07 14:24:08 -08008842
8843 if (is_lvds) {
8844 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
8845 DPLL_FPA01_P1_POST_DIV_SHIFT);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008846
8847 if (lvds & LVDS_CLKB_POWER_UP)
8848 clock.p2 = 7;
8849 else
8850 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -08008851 } else {
8852 if (dpll & PLL_P1_DIVIDE_BY_TWO)
8853 clock.p1 = 2;
8854 else {
8855 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
8856 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
8857 }
8858 if (dpll & PLL_P2_DIVIDE_BY_4)
8859 clock.p2 = 4;
8860 else
8861 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -08008862 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008863
8864 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008865 }
8866
Ville Syrjälä18442d02013-09-13 16:00:08 +03008867 /*
8868 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +01008869 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +03008870 * encoder's get_config() function.
8871 */
8872 pipe_config->port_clock = clock.dot;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008873}
8874
Ville Syrjälä6878da02013-09-13 15:59:11 +03008875int intel_dotclock_calculate(int link_freq,
8876 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008877{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008878 /*
8879 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008880 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008881 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008882 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008883 *
8884 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008885 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -08008886 */
8887
Ville Syrjälä6878da02013-09-13 15:59:11 +03008888 if (!m_n->link_n)
8889 return 0;
8890
8891 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
8892}
8893
Ville Syrjälä18442d02013-09-13 16:00:08 +03008894static void ironlake_pch_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008895 struct intel_crtc_state *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +03008896{
8897 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä18442d02013-09-13 16:00:08 +03008898
8899 /* read out port_clock from the DPLL */
8900 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +03008901
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008902 /*
Ville Syrjälä18442d02013-09-13 16:00:08 +03008903 * This value does not include pixel_multiplier.
Damien Lespiau241bfc32013-09-25 16:45:37 +01008904 * We will check that port_clock and adjusted_mode.crtc_clock
Ville Syrjälä18442d02013-09-13 16:00:08 +03008905 * agree once we know their relationship in the encoder's
8906 * get_config() function.
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008907 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02008908 pipe_config->base.adjusted_mode.crtc_clock =
Ville Syrjälä18442d02013-09-13 16:00:08 +03008909 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
8910 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -08008911}
8912
8913/** Returns the currently programmed mode of the given pipe. */
8914struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
8915 struct drm_crtc *crtc)
8916{
Jesse Barnes548f2452011-02-17 10:40:53 -08008917 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08008918 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008919 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008920 struct drm_display_mode *mode;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008921 struct intel_crtc_state pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -02008922 int htot = I915_READ(HTOTAL(cpu_transcoder));
8923 int hsync = I915_READ(HSYNC(cpu_transcoder));
8924 int vtot = I915_READ(VTOTAL(cpu_transcoder));
8925 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +03008926 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08008927
8928 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
8929 if (!mode)
8930 return NULL;
8931
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008932 /*
8933 * Construct a pipe_config sufficient for getting the clock info
8934 * back out of crtc_clock_get.
8935 *
8936 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
8937 * to use a real value here instead.
8938 */
Ville Syrjälä293623f2013-09-13 16:18:46 +03008939 pipe_config.cpu_transcoder = (enum transcoder) pipe;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008940 pipe_config.pixel_multiplier = 1;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008941 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
8942 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
8943 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008944 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
8945
Ville Syrjälä773ae032013-09-23 17:48:20 +03008946 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -08008947 mode->hdisplay = (htot & 0xffff) + 1;
8948 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
8949 mode->hsync_start = (hsync & 0xffff) + 1;
8950 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
8951 mode->vdisplay = (vtot & 0xffff) + 1;
8952 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
8953 mode->vsync_start = (vsync & 0xffff) + 1;
8954 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
8955
8956 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08008957
8958 return mode;
8959}
8960
Jesse Barnes652c3932009-08-17 13:31:43 -07008961static void intel_decrease_pllclock(struct drm_crtc *crtc)
8962{
8963 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +03008964 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -07008965 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07008966
Sonika Jindalbaff2962014-07-22 11:16:35 +05308967 if (!HAS_GMCH_DISPLAY(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07008968 return;
8969
8970 if (!dev_priv->lvds_downclock_avail)
8971 return;
8972
8973 /*
8974 * Since this is called by a timer, we should never get here in
8975 * the manual case.
8976 */
8977 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01008978 int pipe = intel_crtc->pipe;
8979 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02008980 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01008981
Zhao Yakui44d98a62009-10-09 11:39:40 +08008982 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008983
Sean Paul8ac5a6d2012-02-13 13:14:51 -05008984 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008985
Chris Wilson074b5e12012-05-02 12:07:06 +01008986 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07008987 dpll |= DISPLAY_RATE_SELECT_FPA1;
8988 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008989 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008990 dpll = I915_READ(dpll_reg);
8991 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08008992 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008993 }
8994
8995}
8996
Chris Wilsonf047e392012-07-21 12:31:41 +01008997void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07008998{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008999 struct drm_i915_private *dev_priv = dev->dev_private;
9000
Chris Wilsonf62a0072014-02-21 17:55:39 +00009001 if (dev_priv->mm.busy)
9002 return;
9003
Paulo Zanoni43694d62014-03-07 20:08:08 -03009004 intel_runtime_pm_get(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009005 i915_update_gfx_val(dev_priv);
Chris Wilsonf62a0072014-02-21 17:55:39 +00009006 dev_priv->mm.busy = true;
Chris Wilsonf047e392012-07-21 12:31:41 +01009007}
9008
9009void intel_mark_idle(struct drm_device *dev)
9010{
Paulo Zanonic67a4702013-08-19 13:18:09 -03009011 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson725a5b52013-01-08 11:02:57 +00009012 struct drm_crtc *crtc;
9013
Chris Wilsonf62a0072014-02-21 17:55:39 +00009014 if (!dev_priv->mm.busy)
9015 return;
9016
9017 dev_priv->mm.busy = false;
9018
Jani Nikulad330a952014-01-21 11:24:25 +02009019 if (!i915.powersave)
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03009020 goto out;
Chris Wilson725a5b52013-01-08 11:02:57 +00009021
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01009022 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -07009023 if (!crtc->primary->fb)
Chris Wilson725a5b52013-01-08 11:02:57 +00009024 continue;
9025
9026 intel_decrease_pllclock(crtc);
9027 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01009028
Damien Lespiau3d13ef22014-02-07 19:12:47 +00009029 if (INTEL_INFO(dev)->gen >= 6)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01009030 gen6_rps_idle(dev->dev_private);
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03009031
9032out:
Paulo Zanoni43694d62014-03-07 20:08:08 -03009033 intel_runtime_pm_put(dev_priv);
Chris Wilsonf047e392012-07-21 12:31:41 +01009034}
9035
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +02009036static void intel_crtc_set_state(struct intel_crtc *crtc,
9037 struct intel_crtc_state *crtc_state)
9038{
9039 kfree(crtc->config);
9040 crtc->config = crtc_state;
Ander Conselvan de Oliveira16f3f652015-01-15 14:55:27 +02009041 crtc->base.state = &crtc_state->base;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +02009042}
9043
Jesse Barnes79e53942008-11-07 14:24:08 -08009044static void intel_crtc_destroy(struct drm_crtc *crtc)
9045{
9046 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009047 struct drm_device *dev = crtc->dev;
9048 struct intel_unpin_work *work;
Daniel Vetter67e77c52010-08-20 22:26:30 +02009049
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009050 spin_lock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009051 work = intel_crtc->unpin_work;
9052 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009053 spin_unlock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009054
9055 if (work) {
9056 cancel_work_sync(&work->work);
9057 kfree(work);
9058 }
Jesse Barnes79e53942008-11-07 14:24:08 -08009059
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +02009060 intel_crtc_set_state(intel_crtc, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08009061 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009062
Jesse Barnes79e53942008-11-07 14:24:08 -08009063 kfree(intel_crtc);
9064}
9065
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009066static void intel_unpin_work_fn(struct work_struct *__work)
9067{
9068 struct intel_unpin_work *work =
9069 container_of(__work, struct intel_unpin_work, work);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009070 struct drm_device *dev = work->crtc->dev;
Daniel Vetterf99d7062014-06-19 16:01:59 +02009071 enum pipe pipe = to_intel_crtc(work->crtc)->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009072
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009073 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01009074 intel_unpin_fb_obj(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00009075 drm_gem_object_unreference(&work->pending_flip_obj->base);
9076 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00009077
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02009078 intel_fbc_update(dev);
John Harrisonf06cc1b2014-11-24 18:49:37 +00009079
9080 if (work->flip_queued_req)
John Harrison146d84f2014-12-05 13:49:33 +00009081 i915_gem_request_assign(&work->flip_queued_req, NULL);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009082 mutex_unlock(&dev->struct_mutex);
9083
Daniel Vetterf99d7062014-06-19 16:01:59 +02009084 intel_frontbuffer_flip_complete(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
9085
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009086 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
9087 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
9088
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009089 kfree(work);
9090}
9091
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009092static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01009093 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009094{
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009095 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9096 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009097 unsigned long flags;
9098
9099 /* Ignore early vblank irqs */
9100 if (intel_crtc == NULL)
9101 return;
9102
Daniel Vetterf3260382014-09-15 14:55:23 +02009103 /*
9104 * This is called both by irq handlers and the reset code (to complete
9105 * lost pageflips) so needs the full irqsave spinlocks.
9106 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009107 spin_lock_irqsave(&dev->event_lock, flags);
9108 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +00009109
9110 /* Ensure we don't miss a work->pending update ... */
9111 smp_rmb();
9112
9113 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009114 spin_unlock_irqrestore(&dev->event_lock, flags);
9115 return;
9116 }
9117
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009118 page_flip_completed(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01009119
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009120 spin_unlock_irqrestore(&dev->event_lock, flags);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009121}
9122
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009123void intel_finish_page_flip(struct drm_device *dev, int pipe)
9124{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009125 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009126 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
9127
Mario Kleiner49b14a52010-12-09 07:00:07 +01009128 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009129}
9130
9131void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
9132{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009133 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009134 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
9135
Mario Kleiner49b14a52010-12-09 07:00:07 +01009136 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009137}
9138
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009139/* Is 'a' after or equal to 'b'? */
9140static bool g4x_flip_count_after_eq(u32 a, u32 b)
9141{
9142 return !((a - b) & 0x80000000);
9143}
9144
9145static bool page_flip_finished(struct intel_crtc *crtc)
9146{
9147 struct drm_device *dev = crtc->base.dev;
9148 struct drm_i915_private *dev_priv = dev->dev_private;
9149
Ville Syrjäläbdfa7542014-05-27 21:33:09 +03009150 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
9151 crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
9152 return true;
9153
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009154 /*
9155 * The relevant registers doen't exist on pre-ctg.
9156 * As the flip done interrupt doesn't trigger for mmio
9157 * flips on gmch platforms, a flip count check isn't
9158 * really needed there. But since ctg has the registers,
9159 * include it in the check anyway.
9160 */
9161 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
9162 return true;
9163
9164 /*
9165 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
9166 * used the same base address. In that case the mmio flip might
9167 * have completed, but the CS hasn't even executed the flip yet.
9168 *
9169 * A flip count check isn't enough as the CS might have updated
9170 * the base address just after start of vblank, but before we
9171 * managed to process the interrupt. This means we'd complete the
9172 * CS flip too soon.
9173 *
9174 * Combining both checks should get us a good enough result. It may
9175 * still happen that the CS flip has been executed, but has not
9176 * yet actually completed. But in case the base address is the same
9177 * anyway, we don't really care.
9178 */
9179 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
9180 crtc->unpin_work->gtt_offset &&
9181 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_GM45(crtc->pipe)),
9182 crtc->unpin_work->flip_count);
9183}
9184
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009185void intel_prepare_page_flip(struct drm_device *dev, int plane)
9186{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009187 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009188 struct intel_crtc *intel_crtc =
9189 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
9190 unsigned long flags;
9191
Daniel Vetterf3260382014-09-15 14:55:23 +02009192
9193 /*
9194 * This is called both by irq handlers and the reset code (to complete
9195 * lost pageflips) so needs the full irqsave spinlocks.
9196 *
9197 * NB: An MMIO update of the plane base pointer will also
Chris Wilsone7d841c2012-12-03 11:36:30 +00009198 * generate a page-flip completion irq, i.e. every modeset
9199 * is also accompanied by a spurious intel_prepare_page_flip().
9200 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009201 spin_lock_irqsave(&dev->event_lock, flags);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009202 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
Chris Wilsone7d841c2012-12-03 11:36:30 +00009203 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009204 spin_unlock_irqrestore(&dev->event_lock, flags);
9205}
9206
Robin Schroereba905b2014-05-18 02:24:50 +02009207static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
Chris Wilsone7d841c2012-12-03 11:36:30 +00009208{
9209 /* Ensure that the work item is consistent when activating it ... */
9210 smp_wmb();
9211 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
9212 /* and that it is marked active as soon as the irq could fire. */
9213 smp_wmb();
9214}
9215
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009216static int intel_gen2_queue_flip(struct drm_device *dev,
9217 struct drm_crtc *crtc,
9218 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009219 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009220 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009221 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009222{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009223 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009224 u32 flip_mask;
9225 int ret;
9226
Daniel Vetter6d90c952012-04-26 23:28:05 +02009227 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009228 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009229 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009230
9231 /* Can't queue multiple flips, so wait for the previous
9232 * one to finish before executing the next.
9233 */
9234 if (intel_crtc->plane)
9235 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
9236 else
9237 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009238 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
9239 intel_ring_emit(ring, MI_NOOP);
9240 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9241 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9242 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009243 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02009244 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +00009245
9246 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009247 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009248 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009249}
9250
9251static int intel_gen3_queue_flip(struct drm_device *dev,
9252 struct drm_crtc *crtc,
9253 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009254 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009255 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009256 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009257{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009258 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009259 u32 flip_mask;
9260 int ret;
9261
Daniel Vetter6d90c952012-04-26 23:28:05 +02009262 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009263 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009264 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009265
9266 if (intel_crtc->plane)
9267 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
9268 else
9269 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009270 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
9271 intel_ring_emit(ring, MI_NOOP);
9272 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
9273 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9274 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009275 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02009276 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009277
Chris Wilsone7d841c2012-12-03 11:36:30 +00009278 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009279 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009280 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009281}
9282
9283static int intel_gen4_queue_flip(struct drm_device *dev,
9284 struct drm_crtc *crtc,
9285 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009286 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009287 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009288 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009289{
9290 struct drm_i915_private *dev_priv = dev->dev_private;
9291 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9292 uint32_t pf, pipesrc;
9293 int ret;
9294
Daniel Vetter6d90c952012-04-26 23:28:05 +02009295 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009296 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009297 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009298
9299 /* i965+ uses the linear or tiled offsets from the
9300 * Display Registers (which do not change across a page-flip)
9301 * so we need only reprogram the base address.
9302 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02009303 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9304 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9305 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009306 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
Daniel Vetterc2c75132012-07-05 12:17:30 +02009307 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009308
9309 /* XXX Enabling the panel-fitter across page-flip is so far
9310 * untested on non-native modes, so ignore it for now.
9311 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
9312 */
9313 pf = 0;
9314 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009315 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009316
9317 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009318 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009319 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009320}
9321
9322static int intel_gen6_queue_flip(struct drm_device *dev,
9323 struct drm_crtc *crtc,
9324 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009325 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009326 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009327 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009328{
9329 struct drm_i915_private *dev_priv = dev->dev_private;
9330 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9331 uint32_t pf, pipesrc;
9332 int ret;
9333
Daniel Vetter6d90c952012-04-26 23:28:05 +02009334 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009335 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009336 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009337
Daniel Vetter6d90c952012-04-26 23:28:05 +02009338 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9339 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9340 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009341 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009342
Chris Wilson99d9acd2012-04-17 20:37:00 +01009343 /* Contrary to the suggestions in the documentation,
9344 * "Enable Panel Fitter" does not seem to be required when page
9345 * flipping with a non-native mode, and worse causes a normal
9346 * modeset to fail.
9347 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
9348 */
9349 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009350 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009351 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009352
9353 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009354 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009355 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009356}
9357
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009358static int intel_gen7_queue_flip(struct drm_device *dev,
9359 struct drm_crtc *crtc,
9360 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009361 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009362 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009363 uint32_t flags)
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009364{
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009365 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009366 uint32_t plane_bit = 0;
Chris Wilsonffe74d72013-08-26 20:58:12 +01009367 int len, ret;
9368
Robin Schroereba905b2014-05-18 02:24:50 +02009369 switch (intel_crtc->plane) {
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009370 case PLANE_A:
9371 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
9372 break;
9373 case PLANE_B:
9374 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
9375 break;
9376 case PLANE_C:
9377 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
9378 break;
9379 default:
9380 WARN_ONCE(1, "unknown plane in flip command\n");
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009381 return -ENODEV;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009382 }
9383
Chris Wilsonffe74d72013-08-26 20:58:12 +01009384 len = 4;
Damien Lespiauf4768282014-04-07 20:24:34 +01009385 if (ring->id == RCS) {
Chris Wilsonffe74d72013-08-26 20:58:12 +01009386 len += 6;
Damien Lespiauf4768282014-04-07 20:24:34 +01009387 /*
9388 * On Gen 8, SRM is now taking an extra dword to accommodate
9389 * 48bits addresses, and we need a NOOP for the batch size to
9390 * stay even.
9391 */
9392 if (IS_GEN8(dev))
9393 len += 2;
9394 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009395
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009396 /*
9397 * BSpec MI_DISPLAY_FLIP for IVB:
9398 * "The full packet must be contained within the same cache line."
9399 *
9400 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
9401 * cacheline, if we ever start emitting more commands before
9402 * the MI_DISPLAY_FLIP we may need to first emit everything else,
9403 * then do the cacheline alignment, and finally emit the
9404 * MI_DISPLAY_FLIP.
9405 */
9406 ret = intel_ring_cacheline_align(ring);
9407 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009408 return ret;
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009409
Chris Wilsonffe74d72013-08-26 20:58:12 +01009410 ret = intel_ring_begin(ring, len);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009411 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009412 return ret;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009413
Chris Wilsonffe74d72013-08-26 20:58:12 +01009414 /* Unmask the flip-done completion message. Note that the bspec says that
9415 * we should do this for both the BCS and RCS, and that we must not unmask
9416 * more than one flip event at any time (or ensure that one flip message
9417 * can be sent by waiting for flip-done prior to queueing new flips).
9418 * Experimentation says that BCS works despite DERRMR masking all
9419 * flip-done completion events and that unmasking all planes at once
9420 * for the RCS also doesn't appear to drop events. Setting the DERRMR
9421 * to zero does lead to lockups within MI_DISPLAY_FLIP.
9422 */
9423 if (ring->id == RCS) {
9424 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9425 intel_ring_emit(ring, DERRMR);
9426 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9427 DERRMR_PIPEB_PRI_FLIP_DONE |
9428 DERRMR_PIPEC_PRI_FLIP_DONE));
Damien Lespiauf4768282014-04-07 20:24:34 +01009429 if (IS_GEN8(dev))
9430 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9431 MI_SRM_LRM_GLOBAL_GTT);
9432 else
9433 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) |
9434 MI_SRM_LRM_GLOBAL_GTT);
Chris Wilsonffe74d72013-08-26 20:58:12 +01009435 intel_ring_emit(ring, DERRMR);
9436 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Damien Lespiauf4768282014-04-07 20:24:34 +01009437 if (IS_GEN8(dev)) {
9438 intel_ring_emit(ring, 0);
9439 intel_ring_emit(ring, MI_NOOP);
9440 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009441 }
9442
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009443 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02009444 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009445 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009446 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +00009447
9448 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009449 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009450 return 0;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009451}
9452
Sourab Gupta84c33a62014-06-02 16:47:17 +05309453static bool use_mmio_flip(struct intel_engine_cs *ring,
9454 struct drm_i915_gem_object *obj)
9455{
9456 /*
9457 * This is not being used for older platforms, because
9458 * non-availability of flip done interrupt forces us to use
9459 * CS flips. Older platforms derive flip done using some clever
9460 * tricks involving the flip_pending status bits and vblank irqs.
9461 * So using MMIO flips there would disrupt this mechanism.
9462 */
9463
Chris Wilson8e09bf82014-07-08 10:40:30 +01009464 if (ring == NULL)
9465 return true;
9466
Sourab Gupta84c33a62014-06-02 16:47:17 +05309467 if (INTEL_INFO(ring->dev)->gen < 5)
9468 return false;
9469
9470 if (i915.use_mmio_flip < 0)
9471 return false;
9472 else if (i915.use_mmio_flip > 0)
9473 return true;
Oscar Mateo14bf9932014-07-24 17:04:34 +01009474 else if (i915.enable_execlists)
9475 return true;
Sourab Gupta84c33a62014-06-02 16:47:17 +05309476 else
John Harrison41c52412014-11-24 18:49:43 +00009477 return ring != i915_gem_request_get_ring(obj->last_read_req);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309478}
9479
Damien Lespiauff944562014-11-20 14:58:16 +00009480static void skl_do_mmio_flip(struct intel_crtc *intel_crtc)
9481{
9482 struct drm_device *dev = intel_crtc->base.dev;
9483 struct drm_i915_private *dev_priv = dev->dev_private;
9484 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
9485 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
9486 struct drm_i915_gem_object *obj = intel_fb->obj;
9487 const enum pipe pipe = intel_crtc->pipe;
9488 u32 ctl, stride;
9489
9490 ctl = I915_READ(PLANE_CTL(pipe, 0));
9491 ctl &= ~PLANE_CTL_TILED_MASK;
9492 if (obj->tiling_mode == I915_TILING_X)
9493 ctl |= PLANE_CTL_TILED_X;
9494
9495 /*
9496 * The stride is either expressed as a multiple of 64 bytes chunks for
9497 * linear buffers or in number of tiles for tiled buffers.
9498 */
9499 stride = fb->pitches[0] >> 6;
9500 if (obj->tiling_mode == I915_TILING_X)
9501 stride = fb->pitches[0] >> 9; /* X tiles are 512 bytes wide */
9502
9503 /*
9504 * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on
9505 * PLANE_SURF updates, the update is then guaranteed to be atomic.
9506 */
9507 I915_WRITE(PLANE_CTL(pipe, 0), ctl);
9508 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
9509
9510 I915_WRITE(PLANE_SURF(pipe, 0), intel_crtc->unpin_work->gtt_offset);
9511 POSTING_READ(PLANE_SURF(pipe, 0));
9512}
9513
9514static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc)
Sourab Gupta84c33a62014-06-02 16:47:17 +05309515{
9516 struct drm_device *dev = intel_crtc->base.dev;
9517 struct drm_i915_private *dev_priv = dev->dev_private;
9518 struct intel_framebuffer *intel_fb =
9519 to_intel_framebuffer(intel_crtc->base.primary->fb);
9520 struct drm_i915_gem_object *obj = intel_fb->obj;
9521 u32 dspcntr;
9522 u32 reg;
9523
Sourab Gupta84c33a62014-06-02 16:47:17 +05309524 reg = DSPCNTR(intel_crtc->plane);
9525 dspcntr = I915_READ(reg);
9526
Damien Lespiauc5d97472014-10-25 00:11:11 +01009527 if (obj->tiling_mode != I915_TILING_NONE)
9528 dspcntr |= DISPPLANE_TILED;
9529 else
9530 dspcntr &= ~DISPPLANE_TILED;
9531
Sourab Gupta84c33a62014-06-02 16:47:17 +05309532 I915_WRITE(reg, dspcntr);
9533
9534 I915_WRITE(DSPSURF(intel_crtc->plane),
9535 intel_crtc->unpin_work->gtt_offset);
9536 POSTING_READ(DSPSURF(intel_crtc->plane));
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009537
Damien Lespiauff944562014-11-20 14:58:16 +00009538}
9539
9540/*
9541 * XXX: This is the temporary way to update the plane registers until we get
9542 * around to using the usual plane update functions for MMIO flips
9543 */
9544static void intel_do_mmio_flip(struct intel_crtc *intel_crtc)
9545{
9546 struct drm_device *dev = intel_crtc->base.dev;
9547 bool atomic_update;
9548 u32 start_vbl_count;
9549
9550 intel_mark_page_flip_active(intel_crtc);
9551
9552 atomic_update = intel_pipe_update_start(intel_crtc, &start_vbl_count);
9553
9554 if (INTEL_INFO(dev)->gen >= 9)
9555 skl_do_mmio_flip(intel_crtc);
9556 else
9557 /* use_mmio_flip() retricts MMIO flips to ilk+ */
9558 ilk_do_mmio_flip(intel_crtc);
9559
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009560 if (atomic_update)
9561 intel_pipe_update_end(intel_crtc, start_vbl_count);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309562}
9563
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009564static void intel_mmio_flip_work_func(struct work_struct *work)
Sourab Gupta84c33a62014-06-02 16:47:17 +05309565{
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009566 struct intel_crtc *crtc =
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009567 container_of(work, struct intel_crtc, mmio_flip.work);
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009568 struct intel_mmio_flip *mmio_flip;
Sourab Gupta84c33a62014-06-02 16:47:17 +05309569
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009570 mmio_flip = &crtc->mmio_flip;
9571 if (mmio_flip->req)
John Harrison9c654812014-11-24 18:49:35 +00009572 WARN_ON(__i915_wait_request(mmio_flip->req,
9573 crtc->reset_counter,
9574 false, NULL, NULL) != 0);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309575
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009576 intel_do_mmio_flip(crtc);
9577 if (mmio_flip->req) {
9578 mutex_lock(&crtc->base.dev->struct_mutex);
John Harrison146d84f2014-12-05 13:49:33 +00009579 i915_gem_request_assign(&mmio_flip->req, NULL);
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009580 mutex_unlock(&crtc->base.dev->struct_mutex);
9581 }
Sourab Gupta84c33a62014-06-02 16:47:17 +05309582}
9583
9584static int intel_queue_mmio_flip(struct drm_device *dev,
9585 struct drm_crtc *crtc,
9586 struct drm_framebuffer *fb,
9587 struct drm_i915_gem_object *obj,
9588 struct intel_engine_cs *ring,
9589 uint32_t flags)
9590{
Sourab Gupta84c33a62014-06-02 16:47:17 +05309591 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309592
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009593 i915_gem_request_assign(&intel_crtc->mmio_flip.req,
9594 obj->last_write_req);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309595
Ander Conselvan de Oliveira536f5b52014-11-06 11:03:40 +02009596 schedule_work(&intel_crtc->mmio_flip.work);
9597
Sourab Gupta84c33a62014-06-02 16:47:17 +05309598 return 0;
9599}
9600
Damien Lespiau830c81d2014-11-13 17:51:46 +00009601static int intel_gen9_queue_flip(struct drm_device *dev,
9602 struct drm_crtc *crtc,
9603 struct drm_framebuffer *fb,
9604 struct drm_i915_gem_object *obj,
9605 struct intel_engine_cs *ring,
9606 uint32_t flags)
9607{
9608 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9609 uint32_t plane = 0, stride;
9610 int ret;
9611
9612 switch(intel_crtc->pipe) {
9613 case PIPE_A:
9614 plane = MI_DISPLAY_FLIP_SKL_PLANE_1_A;
9615 break;
9616 case PIPE_B:
9617 plane = MI_DISPLAY_FLIP_SKL_PLANE_1_B;
9618 break;
9619 case PIPE_C:
9620 plane = MI_DISPLAY_FLIP_SKL_PLANE_1_C;
9621 break;
9622 default:
9623 WARN_ONCE(1, "unknown plane in flip command\n");
9624 return -ENODEV;
9625 }
9626
9627 switch (obj->tiling_mode) {
9628 case I915_TILING_NONE:
9629 stride = fb->pitches[0] >> 6;
9630 break;
9631 case I915_TILING_X:
9632 stride = fb->pitches[0] >> 9;
9633 break;
9634 default:
9635 WARN_ONCE(1, "unknown tiling in flip command\n");
9636 return -ENODEV;
9637 }
9638
9639 ret = intel_ring_begin(ring, 10);
9640 if (ret)
9641 return ret;
9642
9643 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9644 intel_ring_emit(ring, DERRMR);
9645 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9646 DERRMR_PIPEB_PRI_FLIP_DONE |
9647 DERRMR_PIPEC_PRI_FLIP_DONE));
9648 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9649 MI_SRM_LRM_GLOBAL_GTT);
9650 intel_ring_emit(ring, DERRMR);
9651 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
9652 intel_ring_emit(ring, 0);
9653
9654 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane);
9655 intel_ring_emit(ring, stride << 6 | obj->tiling_mode);
9656 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
9657
9658 intel_mark_page_flip_active(intel_crtc);
9659 __intel_ring_advance(ring);
9660
9661 return 0;
9662}
9663
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009664static int intel_default_queue_flip(struct drm_device *dev,
9665 struct drm_crtc *crtc,
9666 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009667 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009668 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009669 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009670{
9671 return -ENODEV;
9672}
9673
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009674static bool __intel_pageflip_stall_check(struct drm_device *dev,
9675 struct drm_crtc *crtc)
9676{
9677 struct drm_i915_private *dev_priv = dev->dev_private;
9678 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9679 struct intel_unpin_work *work = intel_crtc->unpin_work;
9680 u32 addr;
9681
9682 if (atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE)
9683 return true;
9684
9685 if (!work->enable_stall_check)
9686 return false;
9687
9688 if (work->flip_ready_vblank == 0) {
Daniel Vetter3a8a9462014-11-26 14:39:48 +01009689 if (work->flip_queued_req &&
9690 !i915_gem_request_completed(work->flip_queued_req, true))
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009691 return false;
9692
9693 work->flip_ready_vblank = drm_vblank_count(dev, intel_crtc->pipe);
9694 }
9695
9696 if (drm_vblank_count(dev, intel_crtc->pipe) - work->flip_ready_vblank < 3)
9697 return false;
9698
9699 /* Potential stall - if we see that the flip has happened,
9700 * assume a missed interrupt. */
9701 if (INTEL_INFO(dev)->gen >= 4)
9702 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane)));
9703 else
9704 addr = I915_READ(DSPADDR(intel_crtc->plane));
9705
9706 /* There is a potential issue here with a false positive after a flip
9707 * to the same address. We could address this by checking for a
9708 * non-incrementing frame counter.
9709 */
9710 return addr == work->gtt_offset;
9711}
9712
9713void intel_check_page_flip(struct drm_device *dev, int pipe)
9714{
9715 struct drm_i915_private *dev_priv = dev->dev_private;
9716 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
9717 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetterf3260382014-09-15 14:55:23 +02009718
9719 WARN_ON(!in_irq());
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009720
9721 if (crtc == NULL)
9722 return;
9723
Daniel Vetterf3260382014-09-15 14:55:23 +02009724 spin_lock(&dev->event_lock);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009725 if (intel_crtc->unpin_work && __intel_pageflip_stall_check(dev, crtc)) {
9726 WARN_ONCE(1, "Kicking stuck page flip: queued at %d, now %d\n",
9727 intel_crtc->unpin_work->flip_queued_vblank, drm_vblank_count(dev, pipe));
9728 page_flip_completed(intel_crtc);
9729 }
Daniel Vetterf3260382014-09-15 14:55:23 +02009730 spin_unlock(&dev->event_lock);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009731}
9732
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009733static int intel_crtc_page_flip(struct drm_crtc *crtc,
9734 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009735 struct drm_pending_vblank_event *event,
9736 uint32_t page_flip_flags)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009737{
9738 struct drm_device *dev = crtc->dev;
9739 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperf4510a22014-04-01 15:22:40 -07009740 struct drm_framebuffer *old_fb = crtc->primary->fb;
Matt Roper2ff8fde2014-07-08 07:50:07 -07009741 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009742 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Gustavo Padovan455a6802014-12-01 15:40:11 -08009743 struct drm_plane *primary = crtc->primary;
Daniel Vettera071fa02014-06-18 23:28:09 +02009744 enum pipe pipe = intel_crtc->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009745 struct intel_unpin_work *work;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009746 struct intel_engine_cs *ring;
Chris Wilson52e68632010-08-08 10:15:59 +01009747 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009748
Matt Roper2ff8fde2014-07-08 07:50:07 -07009749 /*
9750 * drm_mode_page_flip_ioctl() should already catch this, but double
9751 * check to be safe. In the future we may enable pageflipping from
9752 * a disabled primary plane.
9753 */
9754 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
9755 return -EBUSY;
9756
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009757 /* Can't change pixel format via MI display flips. */
Matt Roperf4510a22014-04-01 15:22:40 -07009758 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009759 return -EINVAL;
9760
9761 /*
9762 * TILEOFF/LINOFF registers can't be changed via MI display flips.
9763 * Note that pitch changes could also affect these register.
9764 */
9765 if (INTEL_INFO(dev)->gen > 3 &&
Matt Roperf4510a22014-04-01 15:22:40 -07009766 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
9767 fb->pitches[0] != crtc->primary->fb->pitches[0]))
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009768 return -EINVAL;
9769
Chris Wilsonf900db42014-02-20 09:26:13 +00009770 if (i915_terminally_wedged(&dev_priv->gpu_error))
9771 goto out_hang;
9772
Daniel Vetterb14c5672013-09-19 12:18:32 +02009773 work = kzalloc(sizeof(*work), GFP_KERNEL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009774 if (work == NULL)
9775 return -ENOMEM;
9776
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009777 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009778 work->crtc = crtc;
Matt Roper2ff8fde2014-07-08 07:50:07 -07009779 work->old_fb_obj = intel_fb_obj(old_fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009780 INIT_WORK(&work->work, intel_unpin_work_fn);
9781
Daniel Vetter87b6b102014-05-15 15:33:46 +02009782 ret = drm_crtc_vblank_get(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009783 if (ret)
9784 goto free_work;
9785
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009786 /* We borrow the event spin lock for protecting unpin_work */
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009787 spin_lock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009788 if (intel_crtc->unpin_work) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009789 /* Before declaring the flip queue wedged, check if
9790 * the hardware completed the operation behind our backs.
9791 */
9792 if (__intel_pageflip_stall_check(dev, crtc)) {
9793 DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n");
9794 page_flip_completed(intel_crtc);
9795 } else {
9796 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009797 spin_unlock_irq(&dev->event_lock);
Chris Wilson468f0b42010-05-27 13:18:13 +01009798
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009799 drm_crtc_vblank_put(crtc);
9800 kfree(work);
9801 return -EBUSY;
9802 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009803 }
9804 intel_crtc->unpin_work = work;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009805 spin_unlock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009806
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009807 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
9808 flush_workqueue(dev_priv->wq);
9809
Chris Wilson79158102012-05-23 11:13:58 +01009810 ret = i915_mutex_lock_interruptible(dev);
9811 if (ret)
9812 goto cleanup;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009813
Jesse Barnes75dfca82010-02-10 15:09:44 -08009814 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00009815 drm_gem_object_reference(&work->old_fb_obj->base);
9816 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009817
Matt Roperf4510a22014-04-01 15:22:40 -07009818 crtc->primary->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01009819
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009820 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009821
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009822 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +02009823 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009824
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009825 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
Daniel Vettera071fa02014-06-18 23:28:09 +02009826 work->flip_count = I915_READ(PIPE_FLIPCOUNT_GM45(pipe)) + 1;
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009827
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009828 if (IS_VALLEYVIEW(dev)) {
9829 ring = &dev_priv->ring[BCS];
Chris Wilson8e09bf82014-07-08 10:40:30 +01009830 if (obj->tiling_mode != work->old_fb_obj->tiling_mode)
9831 /* vlv: DISPLAY_FLIP fails to change tiling */
9832 ring = NULL;
Chris Wilson48bf5b22014-12-27 09:48:28 +00009833 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Chris Wilson2a92d5b2014-07-08 10:40:29 +01009834 ring = &dev_priv->ring[BCS];
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009835 } else if (INTEL_INFO(dev)->gen >= 7) {
John Harrison41c52412014-11-24 18:49:43 +00009836 ring = i915_gem_request_get_ring(obj->last_read_req);
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009837 if (ring == NULL || ring->id != RCS)
9838 ring = &dev_priv->ring[BCS];
9839 } else {
9840 ring = &dev_priv->ring[RCS];
9841 }
9842
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00009843 ret = intel_pin_and_fence_fb_obj(crtc->primary, fb, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009844 if (ret)
9845 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009846
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009847 work->gtt_offset =
9848 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset;
9849
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009850 if (use_mmio_flip(ring, obj)) {
Sourab Gupta84c33a62014-06-02 16:47:17 +05309851 ret = intel_queue_mmio_flip(dev, crtc, fb, obj, ring,
9852 page_flip_flags);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009853 if (ret)
9854 goto cleanup_unpin;
9855
John Harrisonf06cc1b2014-11-24 18:49:37 +00009856 i915_gem_request_assign(&work->flip_queued_req,
9857 obj->last_write_req);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009858 } else {
Sourab Gupta84c33a62014-06-02 16:47:17 +05309859 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, ring,
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009860 page_flip_flags);
9861 if (ret)
9862 goto cleanup_unpin;
9863
John Harrisonf06cc1b2014-11-24 18:49:37 +00009864 i915_gem_request_assign(&work->flip_queued_req,
9865 intel_ring_get_request(ring));
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009866 }
9867
9868 work->flip_queued_vblank = drm_vblank_count(dev, intel_crtc->pipe);
9869 work->enable_stall_check = true;
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009870
Daniel Vettera071fa02014-06-18 23:28:09 +02009871 i915_gem_track_fb(work->old_fb_obj, obj,
9872 INTEL_FRONTBUFFER_PRIMARY(pipe));
9873
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02009874 intel_fbc_disable(dev);
Daniel Vetterf99d7062014-06-19 16:01:59 +02009875 intel_frontbuffer_flip_prepare(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009876 mutex_unlock(&dev->struct_mutex);
9877
Jesse Barnese5510fa2010-07-01 16:48:37 -07009878 trace_i915_flip_request(intel_crtc->plane, obj);
9879
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009880 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01009881
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009882cleanup_unpin:
9883 intel_unpin_fb_obj(obj);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009884cleanup_pending:
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009885 atomic_dec(&intel_crtc->unpin_work_count);
Matt Roperf4510a22014-04-01 15:22:40 -07009886 crtc->primary->fb = old_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00009887 drm_gem_object_unreference(&work->old_fb_obj->base);
9888 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01009889 mutex_unlock(&dev->struct_mutex);
9890
Chris Wilson79158102012-05-23 11:13:58 +01009891cleanup:
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009892 spin_lock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +01009893 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009894 spin_unlock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +01009895
Daniel Vetter87b6b102014-05-15 15:33:46 +02009896 drm_crtc_vblank_put(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009897free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01009898 kfree(work);
9899
Chris Wilsonf900db42014-02-20 09:26:13 +00009900 if (ret == -EIO) {
9901out_hang:
Matt Roper53a366b2014-12-23 10:41:53 -08009902 ret = intel_plane_restore(primary);
Chris Wilsonf0d3dad2014-09-07 16:51:12 +01009903 if (ret == 0 && event) {
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009904 spin_lock_irq(&dev->event_lock);
Daniel Vettera071fa02014-06-18 23:28:09 +02009905 drm_send_vblank_event(dev, pipe, event);
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009906 spin_unlock_irq(&dev->event_lock);
Chris Wilsonf0d3dad2014-09-07 16:51:12 +01009907 }
Chris Wilsonf900db42014-02-20 09:26:13 +00009908 }
Chris Wilson96b099f2010-06-07 14:03:04 +01009909 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009910}
9911
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009912static struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009913 .mode_set_base_atomic = intel_pipe_set_base_atomic,
9914 .load_lut = intel_crtc_load_lut,
Matt Roperea2c67b2014-12-23 10:41:52 -08009915 .atomic_begin = intel_begin_crtc_commit,
9916 .atomic_flush = intel_finish_crtc_commit,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009917};
9918
Daniel Vetter9a935852012-07-05 22:34:27 +02009919/**
9920 * intel_modeset_update_staged_output_state
9921 *
9922 * Updates the staged output configuration state, e.g. after we've read out the
9923 * current hw state.
9924 */
9925static void intel_modeset_update_staged_output_state(struct drm_device *dev)
9926{
Ville Syrjälä76688512014-01-10 11:28:06 +02009927 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009928 struct intel_encoder *encoder;
9929 struct intel_connector *connector;
9930
9931 list_for_each_entry(connector, &dev->mode_config.connector_list,
9932 base.head) {
9933 connector->new_encoder =
9934 to_intel_encoder(connector->base.encoder);
9935 }
9936
Damien Lespiaub2784e12014-08-05 11:29:37 +01009937 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +02009938 encoder->new_crtc =
9939 to_intel_crtc(encoder->base.crtc);
9940 }
Ville Syrjälä76688512014-01-10 11:28:06 +02009941
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009942 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009943 crtc->new_enabled = crtc->base.enabled;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +02009944
9945 if (crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009946 crtc->new_config = crtc->config;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +02009947 else
9948 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +02009949 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009950}
9951
9952/**
9953 * intel_modeset_commit_output_state
9954 *
9955 * This function copies the stage display pipe configuration to the real one.
9956 */
9957static void intel_modeset_commit_output_state(struct drm_device *dev)
9958{
Ville Syrjälä76688512014-01-10 11:28:06 +02009959 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009960 struct intel_encoder *encoder;
9961 struct intel_connector *connector;
9962
9963 list_for_each_entry(connector, &dev->mode_config.connector_list,
9964 base.head) {
9965 connector->base.encoder = &connector->new_encoder->base;
9966 }
9967
Damien Lespiaub2784e12014-08-05 11:29:37 +01009968 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +02009969 encoder->base.crtc = &encoder->new_crtc->base;
9970 }
Ville Syrjälä76688512014-01-10 11:28:06 +02009971
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009972 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009973 crtc->base.enabled = crtc->new_enabled;
9974 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009975}
9976
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009977static void
Robin Schroereba905b2014-05-18 02:24:50 +02009978connected_sink_compute_bpp(struct intel_connector *connector,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009979 struct intel_crtc_state *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009980{
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009981 int bpp = pipe_config->pipe_bpp;
9982
9983 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
9984 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03009985 connector->base.name);
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009986
9987 /* Don't use an invalid EDID bpc value */
9988 if (connector->base.display_info.bpc &&
9989 connector->base.display_info.bpc * 3 < bpp) {
9990 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
9991 bpp, connector->base.display_info.bpc*3);
9992 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
9993 }
9994
9995 /* Clamp bpp to 8 on screens without EDID 1.4 */
9996 if (connector->base.display_info.bpc == 0 && bpp > 24) {
9997 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
9998 bpp);
9999 pipe_config->pipe_bpp = 24;
10000 }
10001}
10002
10003static int
10004compute_baseline_pipe_bpp(struct intel_crtc *crtc,
10005 struct drm_framebuffer *fb,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010006 struct intel_crtc_state *pipe_config)
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010007{
10008 struct drm_device *dev = crtc->base.dev;
10009 struct intel_connector *connector;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010010 int bpp;
10011
Daniel Vetterd42264b2013-03-28 16:38:08 +010010012 switch (fb->pixel_format) {
10013 case DRM_FORMAT_C8:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010014 bpp = 8*3; /* since we go through a colormap */
10015 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +010010016 case DRM_FORMAT_XRGB1555:
10017 case DRM_FORMAT_ARGB1555:
10018 /* checked in intel_framebuffer_init already */
10019 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
10020 return -EINVAL;
10021 case DRM_FORMAT_RGB565:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010022 bpp = 6*3; /* min is 18bpp */
10023 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +010010024 case DRM_FORMAT_XBGR8888:
10025 case DRM_FORMAT_ABGR8888:
10026 /* checked in intel_framebuffer_init already */
10027 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
10028 return -EINVAL;
10029 case DRM_FORMAT_XRGB8888:
10030 case DRM_FORMAT_ARGB8888:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010031 bpp = 8*3;
10032 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +010010033 case DRM_FORMAT_XRGB2101010:
10034 case DRM_FORMAT_ARGB2101010:
10035 case DRM_FORMAT_XBGR2101010:
10036 case DRM_FORMAT_ABGR2101010:
10037 /* checked in intel_framebuffer_init already */
10038 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
Daniel Vetterbaba1332013-03-27 00:45:00 +010010039 return -EINVAL;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010040 bpp = 10*3;
10041 break;
Daniel Vetterbaba1332013-03-27 00:45:00 +010010042 /* TODO: gen4+ supports 16 bpc floating point, too. */
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010043 default:
10044 DRM_DEBUG_KMS("unsupported depth\n");
10045 return -EINVAL;
10046 }
10047
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010048 pipe_config->pipe_bpp = bpp;
10049
10050 /* Clamp display bpp to EDID value */
10051 list_for_each_entry(connector, &dev->mode_config.connector_list,
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010052 base.head) {
Daniel Vetter1b829e02013-06-02 13:26:24 +020010053 if (!connector->new_encoder ||
10054 connector->new_encoder->new_crtc != crtc)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010055 continue;
10056
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010057 connected_sink_compute_bpp(connector, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010058 }
10059
10060 return bpp;
10061}
10062
Daniel Vetter644db712013-09-19 14:53:58 +020010063static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
10064{
10065 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
10066 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +010010067 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +020010068 mode->crtc_hdisplay, mode->crtc_hsync_start,
10069 mode->crtc_hsync_end, mode->crtc_htotal,
10070 mode->crtc_vdisplay, mode->crtc_vsync_start,
10071 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
10072}
10073
Daniel Vetterc0b03412013-05-28 12:05:54 +020010074static void intel_dump_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010075 struct intel_crtc_state *pipe_config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020010076 const char *context)
10077{
10078 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
10079 context, pipe_name(crtc->pipe));
10080
10081 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
10082 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
10083 pipe_config->pipe_bpp, pipe_config->dither);
10084 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
10085 pipe_config->has_pch_encoder,
10086 pipe_config->fdi_lanes,
10087 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
10088 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
10089 pipe_config->fdi_m_n.tu);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010090 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
10091 pipe_config->has_dp_encoder,
10092 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
10093 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
10094 pipe_config->dp_m_n.tu);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010095
10096 DRM_DEBUG_KMS("dp: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n",
10097 pipe_config->has_dp_encoder,
10098 pipe_config->dp_m2_n2.gmch_m,
10099 pipe_config->dp_m2_n2.gmch_n,
10100 pipe_config->dp_m2_n2.link_m,
10101 pipe_config->dp_m2_n2.link_n,
10102 pipe_config->dp_m2_n2.tu);
10103
Daniel Vetter55072d12014-11-20 16:10:28 +010010104 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
10105 pipe_config->has_audio,
10106 pipe_config->has_infoframe);
10107
Daniel Vetterc0b03412013-05-28 12:05:54 +020010108 DRM_DEBUG_KMS("requested mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010109 drm_mode_debug_printmodeline(&pipe_config->base.mode);
Daniel Vetterc0b03412013-05-28 12:05:54 +020010110 DRM_DEBUG_KMS("adjusted mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010111 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
10112 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +030010113 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010114 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
10115 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Daniel Vetterc0b03412013-05-28 12:05:54 +020010116 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
10117 pipe_config->gmch_pfit.control,
10118 pipe_config->gmch_pfit.pgm_ratios,
10119 pipe_config->gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010120 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
Daniel Vetterc0b03412013-05-28 12:05:54 +020010121 pipe_config->pch_pfit.pos,
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010122 pipe_config->pch_pfit.size,
10123 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
Paulo Zanoni42db64e2013-05-31 16:33:22 -030010124 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Ville Syrjäläcf532bb2013-09-04 18:30:02 +030010125 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
Daniel Vetterc0b03412013-05-28 12:05:54 +020010126}
10127
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010128static bool encoders_cloneable(const struct intel_encoder *a,
10129 const struct intel_encoder *b)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010130{
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010131 /* masks could be asymmetric, so check both ways */
10132 return a == b || (a->cloneable & (1 << b->type) &&
10133 b->cloneable & (1 << a->type));
10134}
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010135
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010136static bool check_single_encoder_cloning(struct intel_crtc *crtc,
10137 struct intel_encoder *encoder)
10138{
10139 struct drm_device *dev = crtc->base.dev;
10140 struct intel_encoder *source_encoder;
10141
Damien Lespiaub2784e12014-08-05 11:29:37 +010010142 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010143 if (source_encoder->new_crtc != crtc)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010144 continue;
10145
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010146 if (!encoders_cloneable(encoder, source_encoder))
10147 return false;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010148 }
10149
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010150 return true;
10151}
10152
10153static bool check_encoder_cloning(struct intel_crtc *crtc)
10154{
10155 struct drm_device *dev = crtc->base.dev;
10156 struct intel_encoder *encoder;
10157
Damien Lespiaub2784e12014-08-05 11:29:37 +010010158 for_each_intel_encoder(dev, encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010159 if (encoder->new_crtc != crtc)
10160 continue;
10161
10162 if (!check_single_encoder_cloning(crtc, encoder))
10163 return false;
10164 }
10165
10166 return true;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010167}
10168
Ville Syrjälä00f0b372014-12-02 14:10:46 +020010169static bool check_digital_port_conflicts(struct drm_device *dev)
10170{
10171 struct intel_connector *connector;
10172 unsigned int used_ports = 0;
10173
10174 /*
10175 * Walk the connector list instead of the encoder
10176 * list to detect the problem on ddi platforms
10177 * where there's just one encoder per digital port.
10178 */
10179 list_for_each_entry(connector,
10180 &dev->mode_config.connector_list, base.head) {
10181 struct intel_encoder *encoder = connector->new_encoder;
10182
10183 if (!encoder)
10184 continue;
10185
10186 WARN_ON(!encoder->new_crtc);
10187
10188 switch (encoder->type) {
10189 unsigned int port_mask;
10190 case INTEL_OUTPUT_UNKNOWN:
10191 if (WARN_ON(!HAS_DDI(dev)))
10192 break;
10193 case INTEL_OUTPUT_DISPLAYPORT:
10194 case INTEL_OUTPUT_HDMI:
10195 case INTEL_OUTPUT_EDP:
10196 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
10197
10198 /* the same port mustn't appear more than once */
10199 if (used_ports & port_mask)
10200 return false;
10201
10202 used_ports |= port_mask;
10203 default:
10204 break;
10205 }
10206 }
10207
10208 return true;
10209}
10210
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010211static struct intel_crtc_state *
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010212intel_modeset_pipe_config(struct drm_crtc *crtc,
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010213 struct drm_framebuffer *fb,
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010214 struct drm_display_mode *mode)
Daniel Vetter7758a112012-07-08 19:40:39 +020010215{
10216 struct drm_device *dev = crtc->dev;
Daniel Vetter7758a112012-07-08 19:40:39 +020010217 struct intel_encoder *encoder;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010218 struct intel_crtc_state *pipe_config;
Daniel Vettere29c22c2013-02-21 00:00:16 +010010219 int plane_bpp, ret = -EINVAL;
10220 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +020010221
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010222 if (!check_encoder_cloning(to_intel_crtc(crtc))) {
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010223 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
10224 return ERR_PTR(-EINVAL);
10225 }
10226
Ville Syrjälä00f0b372014-12-02 14:10:46 +020010227 if (!check_digital_port_conflicts(dev)) {
10228 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
10229 return ERR_PTR(-EINVAL);
10230 }
10231
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010232 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
10233 if (!pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +020010234 return ERR_PTR(-ENOMEM);
10235
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010236 drm_mode_copy(&pipe_config->base.adjusted_mode, mode);
10237 drm_mode_copy(&pipe_config->base.mode, mode);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010238
Daniel Vettere143a212013-07-04 12:01:15 +020010239 pipe_config->cpu_transcoder =
10240 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010241 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010242
Imre Deak2960bc92013-07-30 13:36:32 +030010243 /*
10244 * Sanitize sync polarity flags based on requested ones. If neither
10245 * positive or negative polarity is requested, treat this as meaning
10246 * negative polarity.
10247 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010248 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030010249 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010250 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030010251
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010252 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030010253 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010254 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030010255
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010256 /* Compute a starting value for pipe_config->pipe_bpp taking the source
10257 * plane pixel format and any sink constraints into account. Returns the
10258 * source plane bpp so that dithering can be selected on mismatches
10259 * after encoders and crtc also have had their say. */
10260 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
10261 fb, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010262 if (plane_bpp < 0)
10263 goto fail;
10264
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030010265 /*
10266 * Determine the real pipe dimensions. Note that stereo modes can
10267 * increase the actual pipe size due to the frame doubling and
10268 * insertion of additional space for blanks between the frame. This
10269 * is stored in the crtc timings. We use the requested mode to do this
10270 * computation to clearly distinguish it from the adjusted mode, which
10271 * can be changed by the connectors in the below retry loop.
10272 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010273 drm_crtc_get_hv_timing(&pipe_config->base.mode,
Gustavo Padovanecb7e162014-12-01 15:40:09 -080010274 &pipe_config->pipe_src_w,
10275 &pipe_config->pipe_src_h);
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030010276
Daniel Vettere29c22c2013-02-21 00:00:16 +010010277encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +020010278 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +020010279 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +020010280 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +020010281
Daniel Vetter135c81b2013-07-21 21:37:09 +020010282 /* Fill in default crtc timings, allow encoders to overwrite them. */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010283 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
10284 CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +020010285
Daniel Vetter7758a112012-07-08 19:40:39 +020010286 /* Pass our mode to the connectors and the CRTC to give them a chance to
10287 * adjust it according to limitations or connector properties, and also
10288 * a chance to reject the mode entirely.
10289 */
Damien Lespiaub2784e12014-08-05 11:29:37 +010010290 for_each_intel_encoder(dev, encoder) {
Daniel Vetter7758a112012-07-08 19:40:39 +020010291
10292 if (&encoder->new_crtc->base != crtc)
10293 continue;
Daniel Vetter7ae89232013-03-27 00:44:52 +010010294
Daniel Vetterefea6e82013-07-21 21:36:59 +020010295 if (!(encoder->compute_config(encoder, pipe_config))) {
10296 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +020010297 goto fail;
10298 }
10299 }
10300
Daniel Vetterff9a6752013-06-01 17:16:21 +020010301 /* Set default port clock if not overwritten by the encoder. Needs to be
10302 * done afterwards in case the encoder adjusts the mode. */
10303 if (!pipe_config->port_clock)
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010304 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
Damien Lespiau241bfc32013-09-25 16:45:37 +010010305 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +020010306
Daniel Vettera43f6e02013-06-07 23:10:32 +020010307 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010010308 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +020010309 DRM_DEBUG_KMS("CRTC fixup failed\n");
10310 goto fail;
10311 }
Daniel Vettere29c22c2013-02-21 00:00:16 +010010312
10313 if (ret == RETRY) {
10314 if (WARN(!retry, "loop in pipe configuration computation\n")) {
10315 ret = -EINVAL;
10316 goto fail;
10317 }
10318
10319 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
10320 retry = false;
10321 goto encoder_retry;
10322 }
10323
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010324 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
10325 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
10326 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
10327
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010328 return pipe_config;
Daniel Vetter7758a112012-07-08 19:40:39 +020010329fail:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010330 kfree(pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010010331 return ERR_PTR(ret);
Daniel Vetter7758a112012-07-08 19:40:39 +020010332}
10333
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010334/* Computes which crtcs are affected and sets the relevant bits in the mask. For
10335 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
10336static void
10337intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
10338 unsigned *prepare_pipes, unsigned *disable_pipes)
10339{
10340 struct intel_crtc *intel_crtc;
10341 struct drm_device *dev = crtc->dev;
10342 struct intel_encoder *encoder;
10343 struct intel_connector *connector;
10344 struct drm_crtc *tmp_crtc;
10345
10346 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
10347
10348 /* Check which crtcs have changed outputs connected to them, these need
10349 * to be part of the prepare_pipes mask. We don't (yet) support global
10350 * modeset across multiple crtcs, so modeset_pipes will only have one
10351 * bit set at most. */
10352 list_for_each_entry(connector, &dev->mode_config.connector_list,
10353 base.head) {
10354 if (connector->base.encoder == &connector->new_encoder->base)
10355 continue;
10356
10357 if (connector->base.encoder) {
10358 tmp_crtc = connector->base.encoder->crtc;
10359
10360 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
10361 }
10362
10363 if (connector->new_encoder)
10364 *prepare_pipes |=
10365 1 << connector->new_encoder->new_crtc->pipe;
10366 }
10367
Damien Lespiaub2784e12014-08-05 11:29:37 +010010368 for_each_intel_encoder(dev, encoder) {
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010369 if (encoder->base.crtc == &encoder->new_crtc->base)
10370 continue;
10371
10372 if (encoder->base.crtc) {
10373 tmp_crtc = encoder->base.crtc;
10374
10375 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
10376 }
10377
10378 if (encoder->new_crtc)
10379 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
10380 }
10381
Ville Syrjälä76688512014-01-10 11:28:06 +020010382 /* Check for pipes that will be enabled/disabled ... */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010383 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010384 if (intel_crtc->base.enabled == intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010385 continue;
10386
Ville Syrjälä76688512014-01-10 11:28:06 +020010387 if (!intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010388 *disable_pipes |= 1 << intel_crtc->pipe;
Ville Syrjälä76688512014-01-10 11:28:06 +020010389 else
10390 *prepare_pipes |= 1 << intel_crtc->pipe;
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010391 }
10392
10393
10394 /* set_mode is also used to update properties on life display pipes. */
10395 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä76688512014-01-10 11:28:06 +020010396 if (intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010397 *prepare_pipes |= 1 << intel_crtc->pipe;
10398
Daniel Vetterb6c51642013-04-12 18:48:43 +020010399 /*
10400 * For simplicity do a full modeset on any pipe where the output routing
10401 * changed. We could be more clever, but that would require us to be
10402 * more careful with calling the relevant encoder->mode_set functions.
10403 */
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010404 if (*prepare_pipes)
10405 *modeset_pipes = *prepare_pipes;
10406
10407 /* ... and mask these out. */
10408 *modeset_pipes &= ~(*disable_pipes);
10409 *prepare_pipes &= ~(*disable_pipes);
Daniel Vetterb6c51642013-04-12 18:48:43 +020010410
10411 /*
10412 * HACK: We don't (yet) fully support global modesets. intel_set_config
10413 * obies this rule, but the modeset restore mode of
10414 * intel_modeset_setup_hw_state does not.
10415 */
10416 *modeset_pipes &= 1 << intel_crtc->pipe;
10417 *prepare_pipes &= 1 << intel_crtc->pipe;
Daniel Vettere3641d32013-04-11 19:49:07 +020010418
10419 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
10420 *modeset_pipes, *prepare_pipes, *disable_pipes);
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010421}
10422
Daniel Vetterea9d7582012-07-10 10:42:52 +020010423static bool intel_crtc_in_use(struct drm_crtc *crtc)
10424{
10425 struct drm_encoder *encoder;
10426 struct drm_device *dev = crtc->dev;
10427
10428 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
10429 if (encoder->crtc == crtc)
10430 return true;
10431
10432 return false;
10433}
10434
10435static void
10436intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
10437{
Daniel Vetterba41c0de2014-11-03 15:04:55 +010010438 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterea9d7582012-07-10 10:42:52 +020010439 struct intel_encoder *intel_encoder;
10440 struct intel_crtc *intel_crtc;
10441 struct drm_connector *connector;
10442
Daniel Vetterba41c0de2014-11-03 15:04:55 +010010443 intel_shared_dpll_commit(dev_priv);
10444
Damien Lespiaub2784e12014-08-05 11:29:37 +010010445 for_each_intel_encoder(dev, intel_encoder) {
Daniel Vetterea9d7582012-07-10 10:42:52 +020010446 if (!intel_encoder->base.crtc)
10447 continue;
10448
10449 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
10450
10451 if (prepare_pipes & (1 << intel_crtc->pipe))
10452 intel_encoder->connectors_active = false;
10453 }
10454
10455 intel_modeset_commit_output_state(dev);
10456
Ville Syrjälä76688512014-01-10 11:28:06 +020010457 /* Double check state. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010458 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010459 WARN_ON(intel_crtc->base.enabled != intel_crtc_in_use(&intel_crtc->base));
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010460 WARN_ON(intel_crtc->new_config &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010461 intel_crtc->new_config != intel_crtc->config);
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010462 WARN_ON(intel_crtc->base.enabled != !!intel_crtc->new_config);
Daniel Vetterea9d7582012-07-10 10:42:52 +020010463 }
10464
10465 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
10466 if (!connector->encoder || !connector->encoder->crtc)
10467 continue;
10468
10469 intel_crtc = to_intel_crtc(connector->encoder->crtc);
10470
10471 if (prepare_pipes & (1 << intel_crtc->pipe)) {
Daniel Vetter68d34722012-09-06 22:08:35 +020010472 struct drm_property *dpms_property =
10473 dev->mode_config.dpms_property;
10474
Daniel Vetterea9d7582012-07-10 10:42:52 +020010475 connector->dpms = DRM_MODE_DPMS_ON;
Rob Clark662595d2012-10-11 20:36:04 -050010476 drm_object_property_set_value(&connector->base,
Daniel Vetter68d34722012-09-06 22:08:35 +020010477 dpms_property,
10478 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +020010479
10480 intel_encoder = to_intel_encoder(connector->encoder);
10481 intel_encoder->connectors_active = true;
10482 }
10483 }
10484
10485}
10486
Ville Syrjälä3bd26262013-09-06 23:29:02 +030010487static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010488{
Ville Syrjälä3bd26262013-09-06 23:29:02 +030010489 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010490
10491 if (clock1 == clock2)
10492 return true;
10493
10494 if (!clock1 || !clock2)
10495 return false;
10496
10497 diff = abs(clock1 - clock2);
10498
10499 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
10500 return true;
10501
10502 return false;
10503}
10504
Daniel Vetter25c5b262012-07-08 22:08:04 +020010505#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
10506 list_for_each_entry((intel_crtc), \
10507 &(dev)->mode_config.crtc_list, \
10508 base.head) \
Daniel Vetter0973f182013-04-19 11:25:33 +020010509 if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +020010510
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010511static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020010512intel_pipe_config_compare(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010513 struct intel_crtc_state *current_config,
10514 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010515{
Daniel Vetter66e985c2013-06-05 13:34:20 +020010516#define PIPE_CONF_CHECK_X(name) \
10517 if (current_config->name != pipe_config->name) { \
10518 DRM_ERROR("mismatch in " #name " " \
10519 "(expected 0x%08x, found 0x%08x)\n", \
10520 current_config->name, \
10521 pipe_config->name); \
10522 return false; \
10523 }
10524
Daniel Vetter08a24032013-04-19 11:25:34 +020010525#define PIPE_CONF_CHECK_I(name) \
10526 if (current_config->name != pipe_config->name) { \
10527 DRM_ERROR("mismatch in " #name " " \
10528 "(expected %i, found %i)\n", \
10529 current_config->name, \
10530 pipe_config->name); \
10531 return false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +010010532 }
10533
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010534/* This is required for BDW+ where there is only one set of registers for
10535 * switching between high and low RR.
10536 * This macro can be used whenever a comparison has to be made between one
10537 * hw state and multiple sw state variables.
10538 */
10539#define PIPE_CONF_CHECK_I_ALT(name, alt_name) \
10540 if ((current_config->name != pipe_config->name) && \
10541 (current_config->alt_name != pipe_config->name)) { \
10542 DRM_ERROR("mismatch in " #name " " \
10543 "(expected %i or %i, found %i)\n", \
10544 current_config->name, \
10545 current_config->alt_name, \
10546 pipe_config->name); \
10547 return false; \
10548 }
10549
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010550#define PIPE_CONF_CHECK_FLAGS(name, mask) \
10551 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Jesse Barnes6f024882013-07-01 10:19:09 -070010552 DRM_ERROR("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010553 "(expected %i, found %i)\n", \
10554 current_config->name & (mask), \
10555 pipe_config->name & (mask)); \
10556 return false; \
10557 }
10558
Ville Syrjälä5e550652013-09-06 23:29:07 +030010559#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
10560 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
10561 DRM_ERROR("mismatch in " #name " " \
10562 "(expected %i, found %i)\n", \
10563 current_config->name, \
10564 pipe_config->name); \
10565 return false; \
10566 }
10567
Daniel Vetterbb760062013-06-06 14:55:52 +020010568#define PIPE_CONF_QUIRK(quirk) \
10569 ((current_config->quirks | pipe_config->quirks) & (quirk))
10570
Daniel Vettereccb1402013-05-22 00:50:22 +020010571 PIPE_CONF_CHECK_I(cpu_transcoder);
10572
Daniel Vetter08a24032013-04-19 11:25:34 +020010573 PIPE_CONF_CHECK_I(has_pch_encoder);
10574 PIPE_CONF_CHECK_I(fdi_lanes);
Daniel Vetter72419202013-04-04 13:28:53 +020010575 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
10576 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
10577 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
10578 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
10579 PIPE_CONF_CHECK_I(fdi_m_n.tu);
Daniel Vetter08a24032013-04-19 11:25:34 +020010580
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010581 PIPE_CONF_CHECK_I(has_dp_encoder);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010582
10583 if (INTEL_INFO(dev)->gen < 8) {
10584 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
10585 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
10586 PIPE_CONF_CHECK_I(dp_m_n.link_m);
10587 PIPE_CONF_CHECK_I(dp_m_n.link_n);
10588 PIPE_CONF_CHECK_I(dp_m_n.tu);
10589
10590 if (current_config->has_drrs) {
10591 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_m);
10592 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_n);
10593 PIPE_CONF_CHECK_I(dp_m2_n2.link_m);
10594 PIPE_CONF_CHECK_I(dp_m2_n2.link_n);
10595 PIPE_CONF_CHECK_I(dp_m2_n2.tu);
10596 }
10597 } else {
10598 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_m, dp_m2_n2.gmch_m);
10599 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_n, dp_m2_n2.gmch_n);
10600 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_m, dp_m2_n2.link_m);
10601 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_n, dp_m2_n2.link_n);
10602 PIPE_CONF_CHECK_I_ALT(dp_m_n.tu, dp_m2_n2.tu);
10603 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010604
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010605 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
10606 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
10607 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
10608 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
10609 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
10610 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010611
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010612 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
10613 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
10614 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
10615 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
10616 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
10617 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010618
Daniel Vetterc93f54c2013-06-27 19:47:19 +020010619 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6897b4b2014-04-24 23:54:47 +020010620 PIPE_CONF_CHECK_I(has_hdmi_sink);
Daniel Vetterb5a9fa02014-04-24 23:54:49 +020010621 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
10622 IS_VALLEYVIEW(dev))
10623 PIPE_CONF_CHECK_I(limited_color_range);
Jesse Barnese43823e2014-11-05 14:26:08 -080010624 PIPE_CONF_CHECK_I(has_infoframe);
Daniel Vetter6c49f242013-06-06 12:45:25 +020010625
Daniel Vetter9ed109a2014-04-24 23:54:52 +020010626 PIPE_CONF_CHECK_I(has_audio);
10627
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010628 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010629 DRM_MODE_FLAG_INTERLACE);
10630
Daniel Vetterbb760062013-06-06 14:55:52 +020010631 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010632 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010633 DRM_MODE_FLAG_PHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010634 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010635 DRM_MODE_FLAG_NHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010636 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010637 DRM_MODE_FLAG_PVSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010638 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010639 DRM_MODE_FLAG_NVSYNC);
10640 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010641
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010642 PIPE_CONF_CHECK_I(pipe_src_w);
10643 PIPE_CONF_CHECK_I(pipe_src_h);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010644
Daniel Vetter99535992014-04-13 12:00:33 +020010645 /*
10646 * FIXME: BIOS likes to set up a cloned config with lvds+external
10647 * screen. Since we don't yet re-compute the pipe config when moving
10648 * just the lvds port away to another pipe the sw tracking won't match.
10649 *
10650 * Proper atomic modesets with recomputed global state will fix this.
10651 * Until then just don't check gmch state for inherited modes.
10652 */
10653 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE)) {
10654 PIPE_CONF_CHECK_I(gmch_pfit.control);
10655 /* pfit ratios are autocomputed by the hw on gen4+ */
10656 if (INTEL_INFO(dev)->gen < 4)
10657 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
10658 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
10659 }
10660
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010661 PIPE_CONF_CHECK_I(pch_pfit.enabled);
10662 if (current_config->pch_pfit.enabled) {
10663 PIPE_CONF_CHECK_I(pch_pfit.pos);
10664 PIPE_CONF_CHECK_I(pch_pfit.size);
10665 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020010666
Jesse Barnese59150d2014-01-07 13:30:45 -080010667 /* BDW+ don't expose a synchronous way to read the state */
10668 if (IS_HASWELL(dev))
10669 PIPE_CONF_CHECK_I(ips_enabled);
Paulo Zanoni42db64e2013-05-31 16:33:22 -030010670
Ville Syrjälä282740f2013-09-04 18:30:03 +030010671 PIPE_CONF_CHECK_I(double_wide);
10672
Daniel Vetter26804af2014-06-25 22:01:55 +030010673 PIPE_CONF_CHECK_X(ddi_pll_sel);
10674
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010675 PIPE_CONF_CHECK_I(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010676 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +020010677 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010678 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
10679 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterd452c5b2014-07-04 11:27:39 -030010680 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
Damien Lespiau3f4cd192014-11-13 14:55:21 +000010681 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
10682 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
10683 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010684
Ville Syrjälä42571ae2013-09-06 23:29:00 +030010685 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
10686 PIPE_CONF_CHECK_I(pipe_bpp);
10687
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010688 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
Jesse Barnesa9a7e982014-01-20 14:18:04 -080010689 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
Ville Syrjälä5e550652013-09-06 23:29:07 +030010690
Daniel Vetter66e985c2013-06-05 13:34:20 +020010691#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +020010692#undef PIPE_CONF_CHECK_I
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010693#undef PIPE_CONF_CHECK_I_ALT
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010694#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +030010695#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +020010696#undef PIPE_CONF_QUIRK
Daniel Vetter627eb5a2013-04-29 19:33:42 +020010697
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010698 return true;
10699}
10700
Damien Lespiau08db6652014-11-04 17:06:52 +000010701static void check_wm_state(struct drm_device *dev)
10702{
10703 struct drm_i915_private *dev_priv = dev->dev_private;
10704 struct skl_ddb_allocation hw_ddb, *sw_ddb;
10705 struct intel_crtc *intel_crtc;
10706 int plane;
10707
10708 if (INTEL_INFO(dev)->gen < 9)
10709 return;
10710
10711 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
10712 sw_ddb = &dev_priv->wm.skl_hw.ddb;
10713
10714 for_each_intel_crtc(dev, intel_crtc) {
10715 struct skl_ddb_entry *hw_entry, *sw_entry;
10716 const enum pipe pipe = intel_crtc->pipe;
10717
10718 if (!intel_crtc->active)
10719 continue;
10720
10721 /* planes */
10722 for_each_plane(pipe, plane) {
10723 hw_entry = &hw_ddb.plane[pipe][plane];
10724 sw_entry = &sw_ddb->plane[pipe][plane];
10725
10726 if (skl_ddb_entry_equal(hw_entry, sw_entry))
10727 continue;
10728
10729 DRM_ERROR("mismatch in DDB state pipe %c plane %d "
10730 "(expected (%u,%u), found (%u,%u))\n",
10731 pipe_name(pipe), plane + 1,
10732 sw_entry->start, sw_entry->end,
10733 hw_entry->start, hw_entry->end);
10734 }
10735
10736 /* cursor */
10737 hw_entry = &hw_ddb.cursor[pipe];
10738 sw_entry = &sw_ddb->cursor[pipe];
10739
10740 if (skl_ddb_entry_equal(hw_entry, sw_entry))
10741 continue;
10742
10743 DRM_ERROR("mismatch in DDB state pipe %c cursor "
10744 "(expected (%u,%u), found (%u,%u))\n",
10745 pipe_name(pipe),
10746 sw_entry->start, sw_entry->end,
10747 hw_entry->start, hw_entry->end);
10748 }
10749}
10750
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010751static void
10752check_connector_state(struct drm_device *dev)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010753{
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010754 struct intel_connector *connector;
10755
10756 list_for_each_entry(connector, &dev->mode_config.connector_list,
10757 base.head) {
10758 /* This also checks the encoder/connector hw state with the
10759 * ->get_hw_state callbacks. */
10760 intel_connector_check_state(connector);
10761
Rob Clarke2c719b2014-12-15 13:56:32 -050010762 I915_STATE_WARN(&connector->new_encoder->base != connector->base.encoder,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010763 "connector's staged encoder doesn't match current encoder\n");
10764 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010765}
10766
10767static void
10768check_encoder_state(struct drm_device *dev)
10769{
10770 struct intel_encoder *encoder;
10771 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010772
Damien Lespiaub2784e12014-08-05 11:29:37 +010010773 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010774 bool enabled = false;
10775 bool active = false;
10776 enum pipe pipe, tracked_pipe;
10777
10778 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
10779 encoder->base.base.id,
Jani Nikula8e329a02014-06-03 14:56:21 +030010780 encoder->base.name);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010781
Rob Clarke2c719b2014-12-15 13:56:32 -050010782 I915_STATE_WARN(&encoder->new_crtc->base != encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010783 "encoder's stage crtc doesn't match current crtc\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050010784 I915_STATE_WARN(encoder->connectors_active && !encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010785 "encoder's active_connectors set, but no crtc\n");
10786
10787 list_for_each_entry(connector, &dev->mode_config.connector_list,
10788 base.head) {
10789 if (connector->base.encoder != &encoder->base)
10790 continue;
10791 enabled = true;
10792 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
10793 active = true;
10794 }
Dave Airlie0e32b392014-05-02 14:02:48 +100010795 /*
10796 * for MST connectors if we unplug the connector is gone
10797 * away but the encoder is still connected to a crtc
10798 * until a modeset happens in response to the hotplug.
10799 */
10800 if (!enabled && encoder->base.encoder_type == DRM_MODE_ENCODER_DPMST)
10801 continue;
10802
Rob Clarke2c719b2014-12-15 13:56:32 -050010803 I915_STATE_WARN(!!encoder->base.crtc != enabled,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010804 "encoder's enabled state mismatch "
10805 "(expected %i, found %i)\n",
10806 !!encoder->base.crtc, enabled);
Rob Clarke2c719b2014-12-15 13:56:32 -050010807 I915_STATE_WARN(active && !encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010808 "active encoder with no crtc\n");
10809
Rob Clarke2c719b2014-12-15 13:56:32 -050010810 I915_STATE_WARN(encoder->connectors_active != active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010811 "encoder's computed active state doesn't match tracked active state "
10812 "(expected %i, found %i)\n", active, encoder->connectors_active);
10813
10814 active = encoder->get_hw_state(encoder, &pipe);
Rob Clarke2c719b2014-12-15 13:56:32 -050010815 I915_STATE_WARN(active != encoder->connectors_active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010816 "encoder's hw state doesn't match sw tracking "
10817 "(expected %i, found %i)\n",
10818 encoder->connectors_active, active);
10819
10820 if (!encoder->base.crtc)
10821 continue;
10822
10823 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
Rob Clarke2c719b2014-12-15 13:56:32 -050010824 I915_STATE_WARN(active && pipe != tracked_pipe,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010825 "active encoder's pipe doesn't match"
10826 "(expected %i, found %i)\n",
10827 tracked_pipe, pipe);
10828
10829 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010830}
10831
10832static void
10833check_crtc_state(struct drm_device *dev)
10834{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010835 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010836 struct intel_crtc *crtc;
10837 struct intel_encoder *encoder;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010838 struct intel_crtc_state pipe_config;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010839
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010840 for_each_intel_crtc(dev, crtc) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010841 bool enabled = false;
10842 bool active = false;
10843
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010844 memset(&pipe_config, 0, sizeof(pipe_config));
10845
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010846 DRM_DEBUG_KMS("[CRTC:%d]\n",
10847 crtc->base.base.id);
10848
Rob Clarke2c719b2014-12-15 13:56:32 -050010849 I915_STATE_WARN(crtc->active && !crtc->base.enabled,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010850 "active crtc, but not enabled in sw tracking\n");
10851
Damien Lespiaub2784e12014-08-05 11:29:37 +010010852 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010853 if (encoder->base.crtc != &crtc->base)
10854 continue;
10855 enabled = true;
10856 if (encoder->connectors_active)
10857 active = true;
10858 }
Daniel Vetter6c49f242013-06-06 12:45:25 +020010859
Rob Clarke2c719b2014-12-15 13:56:32 -050010860 I915_STATE_WARN(active != crtc->active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010861 "crtc's computed active state doesn't match tracked active state "
10862 "(expected %i, found %i)\n", active, crtc->active);
Rob Clarke2c719b2014-12-15 13:56:32 -050010863 I915_STATE_WARN(enabled != crtc->base.enabled,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010864 "crtc's computed enabled state doesn't match tracked enabled state "
10865 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
10866
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010867 active = dev_priv->display.get_pipe_config(crtc,
10868 &pipe_config);
Daniel Vetterd62cf622013-05-29 10:41:29 +020010869
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030010870 /* hw state is inconsistent with the pipe quirk */
10871 if ((crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
10872 (crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Daniel Vetterd62cf622013-05-29 10:41:29 +020010873 active = crtc->active;
10874
Damien Lespiaub2784e12014-08-05 11:29:37 +010010875 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä3eaba512013-08-05 17:57:48 +030010876 enum pipe pipe;
Daniel Vetter6c49f242013-06-06 12:45:25 +020010877 if (encoder->base.crtc != &crtc->base)
10878 continue;
Daniel Vetter1d37b682013-11-18 09:00:59 +010010879 if (encoder->get_hw_state(encoder, &pipe))
Daniel Vetter6c49f242013-06-06 12:45:25 +020010880 encoder->get_config(encoder, &pipe_config);
10881 }
10882
Rob Clarke2c719b2014-12-15 13:56:32 -050010883 I915_STATE_WARN(crtc->active != active,
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010884 "crtc active state doesn't match with hw state "
10885 "(expected %i, found %i)\n", crtc->active, active);
10886
Daniel Vetterc0b03412013-05-28 12:05:54 +020010887 if (active &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010888 !intel_pipe_config_compare(dev, crtc->config, &pipe_config)) {
Rob Clarke2c719b2014-12-15 13:56:32 -050010889 I915_STATE_WARN(1, "pipe state doesn't match!\n");
Daniel Vetterc0b03412013-05-28 12:05:54 +020010890 intel_dump_pipe_config(crtc, &pipe_config,
10891 "[hw state]");
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010892 intel_dump_pipe_config(crtc, crtc->config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020010893 "[sw state]");
10894 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010895 }
10896}
10897
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010898static void
10899check_shared_dpll_state(struct drm_device *dev)
10900{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010901 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010902 struct intel_crtc *crtc;
10903 struct intel_dpll_hw_state dpll_hw_state;
10904 int i;
Daniel Vetter53589012013-06-05 13:34:16 +020010905
10906 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
10907 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
10908 int enabled_crtcs = 0, active_crtcs = 0;
10909 bool active;
10910
10911 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
10912
10913 DRM_DEBUG_KMS("%s\n", pll->name);
10914
10915 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
10916
Rob Clarke2c719b2014-12-15 13:56:32 -050010917 I915_STATE_WARN(pll->active > hweight32(pll->config.crtc_mask),
Daniel Vetter53589012013-06-05 13:34:16 +020010918 "more active pll users than references: %i vs %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020010919 pll->active, hweight32(pll->config.crtc_mask));
Rob Clarke2c719b2014-12-15 13:56:32 -050010920 I915_STATE_WARN(pll->active && !pll->on,
Daniel Vetter53589012013-06-05 13:34:16 +020010921 "pll in active use but not on in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050010922 I915_STATE_WARN(pll->on && !pll->active,
Daniel Vetter35c95372013-07-17 06:55:04 +020010923 "pll in on but not on in use in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050010924 I915_STATE_WARN(pll->on != active,
Daniel Vetter53589012013-06-05 13:34:16 +020010925 "pll on state mismatch (expected %i, found %i)\n",
10926 pll->on, active);
10927
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010928 for_each_intel_crtc(dev, crtc) {
Daniel Vetter53589012013-06-05 13:34:16 +020010929 if (crtc->base.enabled && intel_crtc_to_shared_dpll(crtc) == pll)
10930 enabled_crtcs++;
10931 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
10932 active_crtcs++;
10933 }
Rob Clarke2c719b2014-12-15 13:56:32 -050010934 I915_STATE_WARN(pll->active != active_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020010935 "pll active crtcs mismatch (expected %i, found %i)\n",
10936 pll->active, active_crtcs);
Rob Clarke2c719b2014-12-15 13:56:32 -050010937 I915_STATE_WARN(hweight32(pll->config.crtc_mask) != enabled_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020010938 "pll enabled crtcs mismatch (expected %i, found %i)\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020010939 hweight32(pll->config.crtc_mask), enabled_crtcs);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010940
Rob Clarke2c719b2014-12-15 13:56:32 -050010941 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state, &dpll_hw_state,
Daniel Vetter66e985c2013-06-05 13:34:20 +020010942 sizeof(dpll_hw_state)),
10943 "pll hw state mismatch\n");
Daniel Vetter53589012013-06-05 13:34:16 +020010944 }
Daniel Vettera6778b32012-07-02 09:56:42 +020010945}
10946
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010947void
10948intel_modeset_check_state(struct drm_device *dev)
10949{
Damien Lespiau08db6652014-11-04 17:06:52 +000010950 check_wm_state(dev);
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010951 check_connector_state(dev);
10952 check_encoder_state(dev);
10953 check_crtc_state(dev);
10954 check_shared_dpll_state(dev);
10955}
10956
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010957void ironlake_check_encoder_dotclock(const struct intel_crtc_state *pipe_config,
Ville Syrjälä18442d02013-09-13 16:00:08 +030010958 int dotclock)
10959{
10960 /*
10961 * FDI already provided one idea for the dotclock.
10962 * Yell if the encoder disagrees.
10963 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010964 WARN(!intel_fuzzy_clock_check(pipe_config->base.adjusted_mode.crtc_clock, dotclock),
Ville Syrjälä18442d02013-09-13 16:00:08 +030010965 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010966 pipe_config->base.adjusted_mode.crtc_clock, dotclock);
Ville Syrjälä18442d02013-09-13 16:00:08 +030010967}
10968
Ville Syrjälä80715b22014-05-15 20:23:23 +030010969static void update_scanline_offset(struct intel_crtc *crtc)
10970{
10971 struct drm_device *dev = crtc->base.dev;
10972
10973 /*
10974 * The scanline counter increments at the leading edge of hsync.
10975 *
10976 * On most platforms it starts counting from vtotal-1 on the
10977 * first active line. That means the scanline counter value is
10978 * always one less than what we would expect. Ie. just after
10979 * start of vblank, which also occurs at start of hsync (on the
10980 * last active line), the scanline counter will read vblank_start-1.
10981 *
10982 * On gen2 the scanline counter starts counting from 1 instead
10983 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
10984 * to keep the value positive), instead of adding one.
10985 *
10986 * On HSW+ the behaviour of the scanline counter depends on the output
10987 * type. For DP ports it behaves like most other platforms, but on HDMI
10988 * there's an extra 1 line difference. So we need to add two instead of
10989 * one to the value.
10990 */
10991 if (IS_GEN2(dev)) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010992 const struct drm_display_mode *mode = &crtc->config->base.adjusted_mode;
Ville Syrjälä80715b22014-05-15 20:23:23 +030010993 int vtotal;
10994
10995 vtotal = mode->crtc_vtotal;
10996 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
10997 vtotal /= 2;
10998
10999 crtc->scanline_offset = vtotal - 1;
11000 } else if (HAS_DDI(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +030011001 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) {
Ville Syrjälä80715b22014-05-15 20:23:23 +030011002 crtc->scanline_offset = 2;
11003 } else
11004 crtc->scanline_offset = 1;
11005}
11006
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011007static struct intel_crtc_state *
Jesse Barnes7f271262014-11-05 14:26:06 -080011008intel_modeset_compute_config(struct drm_crtc *crtc,
11009 struct drm_display_mode *mode,
11010 struct drm_framebuffer *fb,
11011 unsigned *modeset_pipes,
11012 unsigned *prepare_pipes,
11013 unsigned *disable_pipes)
11014{
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011015 struct intel_crtc_state *pipe_config = NULL;
Jesse Barnes7f271262014-11-05 14:26:06 -080011016
11017 intel_modeset_affected_pipes(crtc, modeset_pipes,
11018 prepare_pipes, disable_pipes);
11019
11020 if ((*modeset_pipes) == 0)
11021 goto out;
11022
11023 /*
11024 * Note this needs changes when we start tracking multiple modes
11025 * and crtcs. At that point we'll need to compute the whole config
11026 * (i.e. one pipe_config for each crtc) rather than just the one
11027 * for this crtc.
11028 */
11029 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
11030 if (IS_ERR(pipe_config)) {
11031 goto out;
11032 }
11033 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
11034 "[modeset]");
Jesse Barnes7f271262014-11-05 14:26:06 -080011035
11036out:
11037 return pipe_config;
11038}
11039
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020011040static int __intel_set_mode_setup_plls(struct drm_device *dev,
11041 unsigned modeset_pipes,
11042 unsigned disable_pipes)
11043{
11044 struct drm_i915_private *dev_priv = to_i915(dev);
11045 unsigned clear_pipes = modeset_pipes | disable_pipes;
11046 struct intel_crtc *intel_crtc;
11047 int ret = 0;
11048
11049 if (!dev_priv->display.crtc_compute_clock)
11050 return 0;
11051
11052 ret = intel_shared_dpll_start_config(dev_priv, clear_pipes);
11053 if (ret)
11054 goto done;
11055
11056 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
11057 struct intel_crtc_state *state = intel_crtc->new_config;
11058 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
11059 state);
11060 if (ret) {
11061 intel_shared_dpll_abort_config(dev_priv);
11062 goto done;
11063 }
11064 }
11065
11066done:
11067 return ret;
11068}
11069
Daniel Vetterf30da182013-04-11 20:22:50 +020011070static int __intel_set_mode(struct drm_crtc *crtc,
11071 struct drm_display_mode *mode,
Jesse Barnes7f271262014-11-05 14:26:06 -080011072 int x, int y, struct drm_framebuffer *fb,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011073 struct intel_crtc_state *pipe_config,
Jesse Barnes7f271262014-11-05 14:26:06 -080011074 unsigned modeset_pipes,
11075 unsigned prepare_pipes,
11076 unsigned disable_pipes)
Daniel Vettera6778b32012-07-02 09:56:42 +020011077{
11078 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +030011079 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030011080 struct drm_display_mode *saved_mode;
Daniel Vetter25c5b262012-07-08 22:08:04 +020011081 struct intel_crtc *intel_crtc;
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011082 int ret = 0;
Daniel Vettera6778b32012-07-02 09:56:42 +020011083
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030011084 saved_mode = kmalloc(sizeof(*saved_mode), GFP_KERNEL);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011085 if (!saved_mode)
11086 return -ENOMEM;
Daniel Vettera6778b32012-07-02 09:56:42 +020011087
Tim Gardner3ac18232012-12-07 07:54:26 -070011088 *saved_mode = crtc->mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020011089
Ville Syrjäläb9950a12014-11-21 21:00:36 +020011090 if (modeset_pipes)
11091 to_intel_crtc(crtc)->new_config = pipe_config;
11092
Jesse Barnes30a970c2013-11-04 13:48:12 -080011093 /*
11094 * See if the config requires any additional preparation, e.g.
11095 * to adjust global state with pipes off. We need to do this
11096 * here so we can get the modeset_pipe updated config for the new
11097 * mode set on this crtc. For other crtcs we need to use the
11098 * adjusted_mode bits in the crtc directly.
11099 */
Ville Syrjäläc164f832013-11-05 22:34:12 +020011100 if (IS_VALLEYVIEW(dev)) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +020011101 valleyview_modeset_global_pipes(dev, &prepare_pipes);
Jesse Barnes30a970c2013-11-04 13:48:12 -080011102
Ville Syrjäläc164f832013-11-05 22:34:12 +020011103 /* may have added more to prepare_pipes than we should */
11104 prepare_pipes &= ~disable_pipes;
11105 }
11106
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020011107 ret = __intel_set_mode_setup_plls(dev, modeset_pipes, disable_pipes);
11108 if (ret)
11109 goto done;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +020011110
Daniel Vetter460da9162013-03-27 00:44:51 +010011111 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
11112 intel_crtc_disable(&intel_crtc->base);
11113
Daniel Vetterea9d7582012-07-10 10:42:52 +020011114 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
11115 if (intel_crtc->base.enabled)
11116 dev_priv->display.crtc_disable(&intel_crtc->base);
11117 }
Daniel Vettera6778b32012-07-02 09:56:42 +020011118
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020011119 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
11120 * to set it here already despite that we pass it down the callchain.
Jesse Barnes7f271262014-11-05 14:26:06 -080011121 *
11122 * Note we'll need to fix this up when we start tracking multiple
11123 * pipes; here we assume a single modeset_pipe and only track the
11124 * single crtc and mode.
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020011125 */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011126 if (modeset_pipes) {
Daniel Vetter25c5b262012-07-08 22:08:04 +020011127 crtc->mode = *mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011128 /* mode_set/enable/disable functions rely on a correct pipe
11129 * config. */
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020011130 intel_crtc_set_state(to_intel_crtc(crtc), pipe_config);
Ville Syrjäläc326c0a2013-10-28 12:53:41 +020011131
11132 /*
11133 * Calculate and store various constants which
11134 * are later needed by vblank and swap-completion
11135 * timestamping. They are derived from true hwmode.
11136 */
11137 drm_calc_timestamping_constants(crtc,
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011138 &pipe_config->base.adjusted_mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011139 }
Daniel Vetter7758a112012-07-08 19:40:39 +020011140
Daniel Vetterea9d7582012-07-10 10:42:52 +020011141 /* Only after disabling all output pipelines that will be changed can we
11142 * update the the output configuration. */
11143 intel_modeset_update_state(dev, prepare_pipes);
11144
Ville Syrjälä50f6e502014-11-06 14:49:12 +020011145 modeset_update_crtc_power_domains(dev);
Daniel Vetter47fab732012-10-26 10:58:18 +020011146
Daniel Vettera6778b32012-07-02 09:56:42 +020011147 /* Set up the DPLL and any encoders state that needs to adjust or depend
11148 * on the DPLL.
11149 */
Daniel Vetter25c5b262012-07-08 22:08:04 +020011150 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
Gustavo Padovan455a6802014-12-01 15:40:11 -080011151 struct drm_plane *primary = intel_crtc->base.primary;
11152 int vdisplay, hdisplay;
Daniel Vetter4c107942014-04-24 23:55:05 +020011153
Gustavo Padovan455a6802014-12-01 15:40:11 -080011154 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
11155 ret = primary->funcs->update_plane(primary, &intel_crtc->base,
11156 fb, 0, 0,
11157 hdisplay, vdisplay,
11158 x << 16, y << 16,
11159 hdisplay << 16, vdisplay << 16);
Daniel Vettera6778b32012-07-02 09:56:42 +020011160 }
11161
11162 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Ville Syrjälä80715b22014-05-15 20:23:23 +030011163 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
11164 update_scanline_offset(intel_crtc);
11165
Daniel Vetter25c5b262012-07-08 22:08:04 +020011166 dev_priv->display.crtc_enable(&intel_crtc->base);
Ville Syrjälä80715b22014-05-15 20:23:23 +030011167 }
Daniel Vettera6778b32012-07-02 09:56:42 +020011168
Daniel Vettera6778b32012-07-02 09:56:42 +020011169 /* FIXME: add subpixel order */
11170done:
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030011171 if (ret && crtc->enabled)
Tim Gardner3ac18232012-12-07 07:54:26 -070011172 crtc->mode = *saved_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020011173
Tim Gardner3ac18232012-12-07 07:54:26 -070011174 kfree(saved_mode);
Daniel Vettera6778b32012-07-02 09:56:42 +020011175 return ret;
11176}
11177
Jesse Barnes7f271262014-11-05 14:26:06 -080011178static int intel_set_mode_pipes(struct drm_crtc *crtc,
11179 struct drm_display_mode *mode,
11180 int x, int y, struct drm_framebuffer *fb,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011181 struct intel_crtc_state *pipe_config,
Jesse Barnes7f271262014-11-05 14:26:06 -080011182 unsigned modeset_pipes,
11183 unsigned prepare_pipes,
11184 unsigned disable_pipes)
11185{
11186 int ret;
11187
11188 ret = __intel_set_mode(crtc, mode, x, y, fb, pipe_config, modeset_pipes,
11189 prepare_pipes, disable_pipes);
11190
11191 if (ret == 0)
11192 intel_modeset_check_state(crtc->dev);
11193
11194 return ret;
11195}
11196
Damien Lespiaue7457a92013-08-08 22:28:59 +010011197static int intel_set_mode(struct drm_crtc *crtc,
11198 struct drm_display_mode *mode,
11199 int x, int y, struct drm_framebuffer *fb)
Daniel Vetterf30da182013-04-11 20:22:50 +020011200{
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011201 struct intel_crtc_state *pipe_config;
Jesse Barnes7f271262014-11-05 14:26:06 -080011202 unsigned modeset_pipes, prepare_pipes, disable_pipes;
Daniel Vetterf30da182013-04-11 20:22:50 +020011203
Jesse Barnes7f271262014-11-05 14:26:06 -080011204 pipe_config = intel_modeset_compute_config(crtc, mode, fb,
11205 &modeset_pipes,
11206 &prepare_pipes,
11207 &disable_pipes);
Daniel Vetterf30da182013-04-11 20:22:50 +020011208
Jesse Barnes7f271262014-11-05 14:26:06 -080011209 if (IS_ERR(pipe_config))
11210 return PTR_ERR(pipe_config);
Daniel Vetterf30da182013-04-11 20:22:50 +020011211
Jesse Barnes7f271262014-11-05 14:26:06 -080011212 return intel_set_mode_pipes(crtc, mode, x, y, fb, pipe_config,
11213 modeset_pipes, prepare_pipes,
11214 disable_pipes);
Daniel Vetterf30da182013-04-11 20:22:50 +020011215}
11216
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011217void intel_crtc_restore_mode(struct drm_crtc *crtc)
11218{
Matt Roperf4510a22014-04-01 15:22:40 -070011219 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->primary->fb);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011220}
11221
Daniel Vetter25c5b262012-07-08 22:08:04 +020011222#undef for_each_intel_crtc_masked
11223
Daniel Vetterd9e55602012-07-04 22:16:09 +020011224static void intel_set_config_free(struct intel_set_config *config)
11225{
11226 if (!config)
11227 return;
11228
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011229 kfree(config->save_connector_encoders);
11230 kfree(config->save_encoder_crtcs);
Ville Syrjälä76688512014-01-10 11:28:06 +020011231 kfree(config->save_crtc_enabled);
Daniel Vetterd9e55602012-07-04 22:16:09 +020011232 kfree(config);
11233}
11234
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011235static int intel_set_config_save_state(struct drm_device *dev,
11236 struct intel_set_config *config)
11237{
Ville Syrjälä76688512014-01-10 11:28:06 +020011238 struct drm_crtc *crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011239 struct drm_encoder *encoder;
11240 struct drm_connector *connector;
11241 int count;
11242
Ville Syrjälä76688512014-01-10 11:28:06 +020011243 config->save_crtc_enabled =
11244 kcalloc(dev->mode_config.num_crtc,
11245 sizeof(bool), GFP_KERNEL);
11246 if (!config->save_crtc_enabled)
11247 return -ENOMEM;
11248
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011249 config->save_encoder_crtcs =
11250 kcalloc(dev->mode_config.num_encoder,
11251 sizeof(struct drm_crtc *), GFP_KERNEL);
11252 if (!config->save_encoder_crtcs)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011253 return -ENOMEM;
11254
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011255 config->save_connector_encoders =
11256 kcalloc(dev->mode_config.num_connector,
11257 sizeof(struct drm_encoder *), GFP_KERNEL);
11258 if (!config->save_connector_encoders)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011259 return -ENOMEM;
11260
11261 /* Copy data. Note that driver private data is not affected.
11262 * Should anything bad happen only the expected state is
11263 * restored, not the drivers personal bookkeeping.
11264 */
11265 count = 0;
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010011266 for_each_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011267 config->save_crtc_enabled[count++] = crtc->enabled;
11268 }
11269
11270 count = 0;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011271 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011272 config->save_encoder_crtcs[count++] = encoder->crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011273 }
11274
11275 count = 0;
11276 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011277 config->save_connector_encoders[count++] = connector->encoder;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011278 }
11279
11280 return 0;
11281}
11282
11283static void intel_set_config_restore_state(struct drm_device *dev,
11284 struct intel_set_config *config)
11285{
Ville Syrjälä76688512014-01-10 11:28:06 +020011286 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020011287 struct intel_encoder *encoder;
11288 struct intel_connector *connector;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011289 int count;
11290
11291 count = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011292 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011293 crtc->new_enabled = config->save_crtc_enabled[count++];
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011294
11295 if (crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011296 crtc->new_config = crtc->config;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011297 else
11298 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020011299 }
11300
11301 count = 0;
Damien Lespiaub2784e12014-08-05 11:29:37 +010011302 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011303 encoder->new_crtc =
11304 to_intel_crtc(config->save_encoder_crtcs[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011305 }
11306
11307 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020011308 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
11309 connector->new_encoder =
11310 to_intel_encoder(config->save_connector_encoders[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011311 }
11312}
11313
Imre Deake3de42b2013-05-03 19:44:07 +020011314static bool
Chris Wilson2e57f472013-07-17 12:14:40 +010011315is_crtc_connector_off(struct drm_mode_set *set)
Imre Deake3de42b2013-05-03 19:44:07 +020011316{
11317 int i;
11318
Chris Wilson2e57f472013-07-17 12:14:40 +010011319 if (set->num_connectors == 0)
11320 return false;
11321
11322 if (WARN_ON(set->connectors == NULL))
11323 return false;
11324
11325 for (i = 0; i < set->num_connectors; i++)
11326 if (set->connectors[i]->encoder &&
11327 set->connectors[i]->encoder->crtc == set->crtc &&
11328 set->connectors[i]->dpms != DRM_MODE_DPMS_ON)
Imre Deake3de42b2013-05-03 19:44:07 +020011329 return true;
11330
11331 return false;
11332}
11333
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011334static void
11335intel_set_config_compute_mode_changes(struct drm_mode_set *set,
11336 struct intel_set_config *config)
11337{
11338
11339 /* We should be able to check here if the fb has the same properties
11340 * and then just flip_or_move it */
Chris Wilson2e57f472013-07-17 12:14:40 +010011341 if (is_crtc_connector_off(set)) {
11342 config->mode_changed = true;
Matt Roperf4510a22014-04-01 15:22:40 -070011343 } else if (set->crtc->primary->fb != set->fb) {
Matt Roper3b150f02014-05-29 08:06:53 -070011344 /*
11345 * If we have no fb, we can only flip as long as the crtc is
11346 * active, otherwise we need a full mode set. The crtc may
11347 * be active if we've only disabled the primary plane, or
11348 * in fastboot situations.
11349 */
Matt Roperf4510a22014-04-01 15:22:40 -070011350 if (set->crtc->primary->fb == NULL) {
Jesse Barnes319d9822013-06-26 01:38:19 +030011351 struct intel_crtc *intel_crtc =
11352 to_intel_crtc(set->crtc);
11353
Matt Roper3b150f02014-05-29 08:06:53 -070011354 if (intel_crtc->active) {
Jesse Barnes319d9822013-06-26 01:38:19 +030011355 DRM_DEBUG_KMS("crtc has no fb, will flip\n");
11356 config->fb_changed = true;
11357 } else {
11358 DRM_DEBUG_KMS("inactive crtc, full mode set\n");
11359 config->mode_changed = true;
11360 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011361 } else if (set->fb == NULL) {
11362 config->mode_changed = true;
Daniel Vetter72f49012013-03-28 16:01:35 +010011363 } else if (set->fb->pixel_format !=
Matt Roperf4510a22014-04-01 15:22:40 -070011364 set->crtc->primary->fb->pixel_format) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011365 config->mode_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020011366 } else {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011367 config->fb_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020011368 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011369 }
11370
Daniel Vetter835c5872012-07-10 18:11:08 +020011371 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011372 config->fb_changed = true;
11373
11374 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
11375 DRM_DEBUG_KMS("modes are different, full mode set\n");
11376 drm_mode_debug_printmodeline(&set->crtc->mode);
11377 drm_mode_debug_printmodeline(set->mode);
11378 config->mode_changed = true;
11379 }
Chris Wilsona1d95702013-08-13 18:48:47 +010011380
11381 DRM_DEBUG_KMS("computed changes for [CRTC:%d], mode_changed=%d, fb_changed=%d\n",
11382 set->crtc->base.id, config->mode_changed, config->fb_changed);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011383}
11384
Daniel Vetter2e431052012-07-04 22:42:15 +020011385static int
Daniel Vetter9a935852012-07-05 22:34:27 +020011386intel_modeset_stage_output_state(struct drm_device *dev,
11387 struct drm_mode_set *set,
11388 struct intel_set_config *config)
Daniel Vetter50f56112012-07-02 09:35:43 +020011389{
Daniel Vetter9a935852012-07-05 22:34:27 +020011390 struct intel_connector *connector;
11391 struct intel_encoder *encoder;
Ville Syrjälä76688512014-01-10 11:28:06 +020011392 struct intel_crtc *crtc;
Paulo Zanonif3f08572013-08-12 14:56:53 -030011393 int ro;
Daniel Vetter50f56112012-07-02 09:35:43 +020011394
Damien Lespiau9abdda72013-02-13 13:29:23 +000011395 /* The upper layers ensure that we either disable a crtc or have a list
Daniel Vetter9a935852012-07-05 22:34:27 +020011396 * of connectors. For paranoia, double-check this. */
11397 WARN_ON(!set->fb && (set->num_connectors != 0));
11398 WARN_ON(set->fb && (set->num_connectors == 0));
11399
Daniel Vetter9a935852012-07-05 22:34:27 +020011400 list_for_each_entry(connector, &dev->mode_config.connector_list,
11401 base.head) {
11402 /* Otherwise traverse passed in connector list and get encoders
11403 * for them. */
Daniel Vetter50f56112012-07-02 09:35:43 +020011404 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011405 if (set->connectors[ro] == &connector->base) {
Dave Airlie0e32b392014-05-02 14:02:48 +100011406 connector->new_encoder = intel_find_encoder(connector, to_intel_crtc(set->crtc)->pipe);
Daniel Vetter50f56112012-07-02 09:35:43 +020011407 break;
11408 }
11409 }
11410
Daniel Vetter9a935852012-07-05 22:34:27 +020011411 /* If we disable the crtc, disable all its connectors. Also, if
11412 * the connector is on the changing crtc but not on the new
11413 * connector list, disable it. */
11414 if ((!set->fb || ro == set->num_connectors) &&
11415 connector->base.encoder &&
11416 connector->base.encoder->crtc == set->crtc) {
11417 connector->new_encoder = NULL;
11418
11419 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
11420 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030011421 connector->base.name);
Daniel Vetter9a935852012-07-05 22:34:27 +020011422 }
11423
11424
11425 if (&connector->new_encoder->base != connector->base.encoder) {
Daniel Vetter50f56112012-07-02 09:35:43 +020011426 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011427 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020011428 }
Daniel Vetter9a935852012-07-05 22:34:27 +020011429 }
11430 /* connector->new_encoder is now updated for all connectors. */
11431
11432 /* Update crtc of enabled connectors. */
Daniel Vetter9a935852012-07-05 22:34:27 +020011433 list_for_each_entry(connector, &dev->mode_config.connector_list,
11434 base.head) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011435 struct drm_crtc *new_crtc;
11436
Daniel Vetter9a935852012-07-05 22:34:27 +020011437 if (!connector->new_encoder)
Daniel Vetter50f56112012-07-02 09:35:43 +020011438 continue;
11439
Daniel Vetter9a935852012-07-05 22:34:27 +020011440 new_crtc = connector->new_encoder->base.crtc;
Daniel Vetter50f56112012-07-02 09:35:43 +020011441
11442 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011443 if (set->connectors[ro] == &connector->base)
Daniel Vetter50f56112012-07-02 09:35:43 +020011444 new_crtc = set->crtc;
11445 }
11446
11447 /* Make sure the new CRTC will work with the encoder */
Thierry Reding14509912014-01-13 12:00:22 +010011448 if (!drm_encoder_crtc_ok(&connector->new_encoder->base,
11449 new_crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011450 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +020011451 }
Dave Airlie0e32b392014-05-02 14:02:48 +100011452 connector->new_encoder->new_crtc = to_intel_crtc(new_crtc);
Daniel Vetter9a935852012-07-05 22:34:27 +020011453
11454 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
11455 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030011456 connector->base.name,
Daniel Vetter9a935852012-07-05 22:34:27 +020011457 new_crtc->base.id);
11458 }
11459
11460 /* Check for any encoders that needs to be disabled. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010011461 for_each_intel_encoder(dev, encoder) {
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011462 int num_connectors = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020011463 list_for_each_entry(connector,
11464 &dev->mode_config.connector_list,
11465 base.head) {
11466 if (connector->new_encoder == encoder) {
11467 WARN_ON(!connector->new_encoder->new_crtc);
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011468 num_connectors++;
Daniel Vetter9a935852012-07-05 22:34:27 +020011469 }
11470 }
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011471
11472 if (num_connectors == 0)
11473 encoder->new_crtc = NULL;
11474 else if (num_connectors > 1)
11475 return -EINVAL;
11476
Daniel Vetter9a935852012-07-05 22:34:27 +020011477 /* Only now check for crtc changes so we don't miss encoders
11478 * that will be disabled. */
11479 if (&encoder->new_crtc->base != encoder->base.crtc) {
Daniel Vetter50f56112012-07-02 09:35:43 +020011480 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011481 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020011482 }
11483 }
Daniel Vetter9a935852012-07-05 22:34:27 +020011484 /* Now we've also updated encoder->new_crtc for all encoders. */
Dave Airlie0e32b392014-05-02 14:02:48 +100011485 list_for_each_entry(connector, &dev->mode_config.connector_list,
11486 base.head) {
11487 if (connector->new_encoder)
11488 if (connector->new_encoder != connector->encoder)
11489 connector->encoder = connector->new_encoder;
11490 }
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011491 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011492 crtc->new_enabled = false;
11493
Damien Lespiaub2784e12014-08-05 11:29:37 +010011494 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011495 if (encoder->new_crtc == crtc) {
11496 crtc->new_enabled = true;
11497 break;
11498 }
11499 }
11500
11501 if (crtc->new_enabled != crtc->base.enabled) {
11502 DRM_DEBUG_KMS("crtc %sabled, full mode switch\n",
11503 crtc->new_enabled ? "en" : "dis");
11504 config->mode_changed = true;
11505 }
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011506
11507 if (crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011508 crtc->new_config = crtc->config;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011509 else
11510 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020011511 }
11512
Daniel Vetter2e431052012-07-04 22:42:15 +020011513 return 0;
11514}
11515
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011516static void disable_crtc_nofb(struct intel_crtc *crtc)
11517{
11518 struct drm_device *dev = crtc->base.dev;
11519 struct intel_encoder *encoder;
11520 struct intel_connector *connector;
11521
11522 DRM_DEBUG_KMS("Trying to restore without FB -> disabling pipe %c\n",
11523 pipe_name(crtc->pipe));
11524
11525 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
11526 if (connector->new_encoder &&
11527 connector->new_encoder->new_crtc == crtc)
11528 connector->new_encoder = NULL;
11529 }
11530
Damien Lespiaub2784e12014-08-05 11:29:37 +010011531 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011532 if (encoder->new_crtc == crtc)
11533 encoder->new_crtc = NULL;
11534 }
11535
11536 crtc->new_enabled = false;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011537 crtc->new_config = NULL;
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011538}
11539
Daniel Vetter2e431052012-07-04 22:42:15 +020011540static int intel_crtc_set_config(struct drm_mode_set *set)
11541{
11542 struct drm_device *dev;
Daniel Vetter2e431052012-07-04 22:42:15 +020011543 struct drm_mode_set save_set;
11544 struct intel_set_config *config;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011545 struct intel_crtc_state *pipe_config;
Jesse Barnes50f52752014-11-07 13:11:00 -080011546 unsigned modeset_pipes, prepare_pipes, disable_pipes;
Daniel Vetter2e431052012-07-04 22:42:15 +020011547 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +020011548
Daniel Vetter8d3e3752012-07-05 16:09:09 +020011549 BUG_ON(!set);
11550 BUG_ON(!set->crtc);
11551 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +020011552
Daniel Vetter7e53f3a2013-01-21 10:52:17 +010011553 /* Enforce sane interface api - has been abused by the fb helper. */
11554 BUG_ON(!set->mode && set->fb);
11555 BUG_ON(set->fb && set->num_connectors == 0);
Daniel Vetter431e50f2012-07-10 17:53:42 +020011556
Daniel Vetter2e431052012-07-04 22:42:15 +020011557 if (set->fb) {
11558 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
11559 set->crtc->base.id, set->fb->base.id,
11560 (int)set->num_connectors, set->x, set->y);
11561 } else {
11562 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +020011563 }
11564
11565 dev = set->crtc->dev;
11566
11567 ret = -ENOMEM;
11568 config = kzalloc(sizeof(*config), GFP_KERNEL);
11569 if (!config)
11570 goto out_config;
11571
11572 ret = intel_set_config_save_state(dev, config);
11573 if (ret)
11574 goto out_config;
11575
11576 save_set.crtc = set->crtc;
11577 save_set.mode = &set->crtc->mode;
11578 save_set.x = set->crtc->x;
11579 save_set.y = set->crtc->y;
Matt Roperf4510a22014-04-01 15:22:40 -070011580 save_set.fb = set->crtc->primary->fb;
Daniel Vetter2e431052012-07-04 22:42:15 +020011581
11582 /* Compute whether we need a full modeset, only an fb base update or no
11583 * change at all. In the future we might also check whether only the
11584 * mode changed, e.g. for LVDS where we only change the panel fitter in
11585 * such cases. */
11586 intel_set_config_compute_mode_changes(set, config);
11587
Daniel Vetter9a935852012-07-05 22:34:27 +020011588 ret = intel_modeset_stage_output_state(dev, set, config);
Daniel Vetter2e431052012-07-04 22:42:15 +020011589 if (ret)
11590 goto fail;
11591
Jesse Barnes50f52752014-11-07 13:11:00 -080011592 pipe_config = intel_modeset_compute_config(set->crtc, set->mode,
11593 set->fb,
11594 &modeset_pipes,
11595 &prepare_pipes,
11596 &disable_pipes);
Jesse Barnes20664592014-11-05 14:26:09 -080011597 if (IS_ERR(pipe_config)) {
Matt Roper6ac04832014-11-17 09:59:28 -080011598 ret = PTR_ERR(pipe_config);
Jesse Barnes50f52752014-11-07 13:11:00 -080011599 goto fail;
Jesse Barnes20664592014-11-05 14:26:09 -080011600 } else if (pipe_config) {
Ville Syrjäläb9950a12014-11-21 21:00:36 +020011601 if (pipe_config->has_audio !=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011602 to_intel_crtc(set->crtc)->config->has_audio)
Jesse Barnes20664592014-11-05 14:26:09 -080011603 config->mode_changed = true;
11604
Jesse Barnesaf15d2c2014-12-01 09:54:28 -080011605 /*
11606 * Note we have an issue here with infoframes: current code
11607 * only updates them on the full mode set path per hw
11608 * requirements. So here we should be checking for any
11609 * required changes and forcing a mode set.
11610 */
Jesse Barnes20664592014-11-05 14:26:09 -080011611 }
Jesse Barnes50f52752014-11-07 13:11:00 -080011612
11613 /* set_mode will free it in the mode_changed case */
11614 if (!config->mode_changed)
11615 kfree(pipe_config);
11616
Jesse Barnes1f9954d2014-11-05 14:26:10 -080011617 intel_update_pipe_size(to_intel_crtc(set->crtc));
11618
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011619 if (config->mode_changed) {
Jesse Barnes50f52752014-11-07 13:11:00 -080011620 ret = intel_set_mode_pipes(set->crtc, set->mode,
11621 set->x, set->y, set->fb, pipe_config,
11622 modeset_pipes, prepare_pipes,
11623 disable_pipes);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011624 } else if (config->fb_changed) {
Matt Roper3b150f02014-05-29 08:06:53 -070011625 struct intel_crtc *intel_crtc = to_intel_crtc(set->crtc);
Gustavo Padovan455a6802014-12-01 15:40:11 -080011626 struct drm_plane *primary = set->crtc->primary;
11627 int vdisplay, hdisplay;
Matt Roper3b150f02014-05-29 08:06:53 -070011628
Gustavo Padovan455a6802014-12-01 15:40:11 -080011629 drm_crtc_get_hv_timing(set->mode, &hdisplay, &vdisplay);
11630 ret = primary->funcs->update_plane(primary, set->crtc, set->fb,
11631 0, 0, hdisplay, vdisplay,
11632 set->x << 16, set->y << 16,
11633 hdisplay << 16, vdisplay << 16);
Matt Roper3b150f02014-05-29 08:06:53 -070011634
11635 /*
11636 * We need to make sure the primary plane is re-enabled if it
11637 * has previously been turned off.
11638 */
11639 if (!intel_crtc->primary_enabled && ret == 0) {
11640 WARN_ON(!intel_crtc->active);
Ville Syrjäläfdd508a2014-08-08 21:51:11 +030011641 intel_enable_primary_hw_plane(set->crtc->primary, set->crtc);
Matt Roper3b150f02014-05-29 08:06:53 -070011642 }
11643
Jesse Barnes7ca51a32014-01-07 13:50:49 -080011644 /*
11645 * In the fastboot case this may be our only check of the
11646 * state after boot. It would be better to only do it on
11647 * the first update, but we don't have a nice way of doing that
11648 * (and really, set_config isn't used much for high freq page
11649 * flipping, so increasing its cost here shouldn't be a big
11650 * deal).
11651 */
Jani Nikulad330a952014-01-21 11:24:25 +020011652 if (i915.fastboot && ret == 0)
Jesse Barnes7ca51a32014-01-07 13:50:49 -080011653 intel_modeset_check_state(set->crtc->dev);
Daniel Vetter50f56112012-07-02 09:35:43 +020011654 }
11655
Chris Wilson2d05eae2013-05-03 17:36:25 +010011656 if (ret) {
Daniel Vetterbf67dfe2013-06-25 11:06:52 +020011657 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
11658 set->crtc->base.id, ret);
Daniel Vetter50f56112012-07-02 09:35:43 +020011659fail:
Chris Wilson2d05eae2013-05-03 17:36:25 +010011660 intel_set_config_restore_state(dev, config);
Daniel Vetter50f56112012-07-02 09:35:43 +020011661
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011662 /*
11663 * HACK: if the pipe was on, but we didn't have a framebuffer,
11664 * force the pipe off to avoid oopsing in the modeset code
11665 * due to fb==NULL. This should only happen during boot since
11666 * we don't yet reconstruct the FB from the hardware state.
11667 */
11668 if (to_intel_crtc(save_set.crtc)->new_enabled && !save_set.fb)
11669 disable_crtc_nofb(to_intel_crtc(save_set.crtc));
11670
Chris Wilson2d05eae2013-05-03 17:36:25 +010011671 /* Try to restore the config */
11672 if (config->mode_changed &&
11673 intel_set_mode(save_set.crtc, save_set.mode,
11674 save_set.x, save_set.y, save_set.fb))
11675 DRM_ERROR("failed to restore config after modeset failure\n");
11676 }
Daniel Vetter50f56112012-07-02 09:35:43 +020011677
Daniel Vetterd9e55602012-07-04 22:16:09 +020011678out_config:
11679 intel_set_config_free(config);
Daniel Vetter50f56112012-07-02 09:35:43 +020011680 return ret;
11681}
11682
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011683static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011684 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +020011685 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011686 .destroy = intel_crtc_destroy,
11687 .page_flip = intel_crtc_page_flip,
Matt Roper13568372015-01-21 16:35:47 -080011688 .atomic_duplicate_state = intel_crtc_duplicate_state,
11689 .atomic_destroy_state = intel_crtc_destroy_state,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011690};
11691
Daniel Vetter53589012013-06-05 13:34:16 +020011692static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
11693 struct intel_shared_dpll *pll,
11694 struct intel_dpll_hw_state *hw_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011695{
Daniel Vetter53589012013-06-05 13:34:16 +020011696 uint32_t val;
11697
Daniel Vetterf458ebb2014-09-30 10:56:39 +020011698 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_PLLS))
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030011699 return false;
11700
Daniel Vetter53589012013-06-05 13:34:16 +020011701 val = I915_READ(PCH_DPLL(pll->id));
Daniel Vetter66e985c2013-06-05 13:34:20 +020011702 hw_state->dpll = val;
11703 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
11704 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
Daniel Vetter53589012013-06-05 13:34:16 +020011705
11706 return val & DPLL_VCO_ENABLE;
11707}
11708
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011709static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
11710 struct intel_shared_dpll *pll)
11711{
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011712 I915_WRITE(PCH_FP0(pll->id), pll->config.hw_state.fp0);
11713 I915_WRITE(PCH_FP1(pll->id), pll->config.hw_state.fp1);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011714}
11715
Daniel Vettere7b903d2013-06-05 13:34:14 +020011716static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
11717 struct intel_shared_dpll *pll)
11718{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011719 /* PCH refclock must be enabled first */
Paulo Zanoni89eff4b2014-01-08 11:12:28 -020011720 ibx_assert_pch_refclk_enabled(dev_priv);
Daniel Vettere7b903d2013-06-05 13:34:14 +020011721
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011722 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011723
11724 /* Wait for the clocks to stabilize. */
11725 POSTING_READ(PCH_DPLL(pll->id));
11726 udelay(150);
11727
11728 /* The pixel multiplier can only be updated once the
11729 * DPLL is enabled and the clocks are stable.
11730 *
11731 * So write it again.
11732 */
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011733 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011734 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020011735 udelay(200);
11736}
11737
11738static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
11739 struct intel_shared_dpll *pll)
11740{
11741 struct drm_device *dev = dev_priv->dev;
11742 struct intel_crtc *crtc;
Daniel Vettere7b903d2013-06-05 13:34:14 +020011743
11744 /* Make sure no transcoder isn't still depending on us. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011745 for_each_intel_crtc(dev, crtc) {
Daniel Vettere7b903d2013-06-05 13:34:14 +020011746 if (intel_crtc_to_shared_dpll(crtc) == pll)
11747 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
11748 }
11749
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011750 I915_WRITE(PCH_DPLL(pll->id), 0);
11751 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020011752 udelay(200);
11753}
11754
Daniel Vetter46edb022013-06-05 13:34:12 +020011755static char *ibx_pch_dpll_names[] = {
11756 "PCH DPLL A",
11757 "PCH DPLL B",
11758};
11759
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011760static void ibx_pch_dpll_init(struct drm_device *dev)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011761{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011762 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011763 int i;
11764
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011765 dev_priv->num_shared_dpll = 2;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011766
Daniel Vettere72f9fb2013-06-05 13:34:06 +020011767 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
Daniel Vetter46edb022013-06-05 13:34:12 +020011768 dev_priv->shared_dplls[i].id = i;
11769 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011770 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
Daniel Vettere7b903d2013-06-05 13:34:14 +020011771 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
11772 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
Daniel Vetter53589012013-06-05 13:34:16 +020011773 dev_priv->shared_dplls[i].get_hw_state =
11774 ibx_pch_dpll_get_hw_state;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011775 }
11776}
11777
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011778static void intel_shared_dpll_init(struct drm_device *dev)
11779{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011780 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011781
Daniel Vetter9cd86932014-06-25 22:01:57 +030011782 if (HAS_DDI(dev))
11783 intel_ddi_pll_init(dev);
11784 else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011785 ibx_pch_dpll_init(dev);
11786 else
11787 dev_priv->num_shared_dpll = 0;
11788
11789 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011790}
11791
Matt Roper6beb8c232014-12-01 15:40:14 -080011792/**
11793 * intel_prepare_plane_fb - Prepare fb for usage on plane
11794 * @plane: drm plane to prepare for
11795 * @fb: framebuffer to prepare for presentation
11796 *
11797 * Prepares a framebuffer for usage on a display plane. Generally this
11798 * involves pinning the underlying object and updating the frontbuffer tracking
11799 * bits. Some older platforms need special physical address handling for
11800 * cursor planes.
11801 *
11802 * Returns 0 on success, negative error code on failure.
11803 */
11804int
11805intel_prepare_plane_fb(struct drm_plane *plane,
11806 struct drm_framebuffer *fb)
Matt Roper465c1202014-05-29 08:06:54 -070011807{
11808 struct drm_device *dev = plane->dev;
Matt Roper6beb8c232014-12-01 15:40:14 -080011809 struct intel_plane *intel_plane = to_intel_plane(plane);
11810 enum pipe pipe = intel_plane->pipe;
11811 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
11812 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->fb);
11813 unsigned frontbuffer_bits = 0;
11814 int ret = 0;
Matt Roper465c1202014-05-29 08:06:54 -070011815
Matt Roperea2c67b2014-12-23 10:41:52 -080011816 if (!obj)
Matt Roper465c1202014-05-29 08:06:54 -070011817 return 0;
11818
Matt Roper6beb8c232014-12-01 15:40:14 -080011819 switch (plane->type) {
11820 case DRM_PLANE_TYPE_PRIMARY:
11821 frontbuffer_bits = INTEL_FRONTBUFFER_PRIMARY(pipe);
11822 break;
11823 case DRM_PLANE_TYPE_CURSOR:
11824 frontbuffer_bits = INTEL_FRONTBUFFER_CURSOR(pipe);
11825 break;
11826 case DRM_PLANE_TYPE_OVERLAY:
11827 frontbuffer_bits = INTEL_FRONTBUFFER_SPRITE(pipe);
11828 break;
11829 }
Matt Roper465c1202014-05-29 08:06:54 -070011830
Matt Roper4c345742014-07-09 16:22:10 -070011831 mutex_lock(&dev->struct_mutex);
Matt Roper465c1202014-05-29 08:06:54 -070011832
Matt Roper6beb8c232014-12-01 15:40:14 -080011833 if (plane->type == DRM_PLANE_TYPE_CURSOR &&
11834 INTEL_INFO(dev)->cursor_needs_physical) {
11835 int align = IS_I830(dev) ? 16 * 1024 : 256;
11836 ret = i915_gem_object_attach_phys(obj, align);
11837 if (ret)
11838 DRM_DEBUG_KMS("failed to attach phys object\n");
11839 } else {
11840 ret = intel_pin_and_fence_fb_obj(plane, fb, NULL);
11841 }
11842
11843 if (ret == 0)
11844 i915_gem_track_fb(old_obj, obj, frontbuffer_bits);
11845
11846 mutex_unlock(&dev->struct_mutex);
11847
11848 return ret;
11849}
11850
Matt Roper38f3ce32014-12-02 07:45:25 -080011851/**
11852 * intel_cleanup_plane_fb - Cleans up an fb after plane use
11853 * @plane: drm plane to clean up for
11854 * @fb: old framebuffer that was on plane
11855 *
11856 * Cleans up a framebuffer that has just been removed from a plane.
11857 */
11858void
11859intel_cleanup_plane_fb(struct drm_plane *plane,
11860 struct drm_framebuffer *fb)
11861{
11862 struct drm_device *dev = plane->dev;
11863 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
11864
11865 if (WARN_ON(!obj))
11866 return;
11867
11868 if (plane->type != DRM_PLANE_TYPE_CURSOR ||
11869 !INTEL_INFO(dev)->cursor_needs_physical) {
11870 mutex_lock(&dev->struct_mutex);
11871 intel_unpin_fb_obj(obj);
11872 mutex_unlock(&dev->struct_mutex);
11873 }
Matt Roper465c1202014-05-29 08:06:54 -070011874}
11875
11876static int
Gustavo Padovan3c692a42014-09-05 17:04:49 -030011877intel_check_primary_plane(struct drm_plane *plane,
11878 struct intel_plane_state *state)
Matt Roper465c1202014-05-29 08:06:54 -070011879{
Matt Roper32b7eee2014-12-24 07:59:06 -080011880 struct drm_device *dev = plane->dev;
11881 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roper2b875c22014-12-01 15:40:13 -080011882 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080011883 struct intel_crtc *intel_crtc;
Matt Roper2b875c22014-12-01 15:40:13 -080011884 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030011885 struct drm_rect *dest = &state->dst;
11886 struct drm_rect *src = &state->src;
11887 const struct drm_rect *clip = &state->clip;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011888 int ret;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030011889
Matt Roperea2c67b2014-12-23 10:41:52 -080011890 crtc = crtc ? crtc : plane->crtc;
11891 intel_crtc = to_intel_crtc(crtc);
11892
Matt Roperc59cb172014-12-01 15:40:16 -080011893 ret = drm_plane_helper_check_update(plane, crtc, fb,
11894 src, dest, clip,
11895 DRM_PLANE_HELPER_NO_SCALING,
11896 DRM_PLANE_HELPER_NO_SCALING,
11897 false, true, &state->visible);
11898 if (ret)
11899 return ret;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011900
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011901 if (intel_crtc->active) {
Matt Roper32b7eee2014-12-24 07:59:06 -080011902 intel_crtc->atomic.wait_for_flips = true;
11903
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011904 /*
11905 * FBC does not work on some platforms for rotated
11906 * planes, so disable it when rotation is not 0 and
11907 * update it when rotation is set back to 0.
11908 *
11909 * FIXME: This is redundant with the fbc update done in
11910 * the primary plane enable function except that that
11911 * one is done too late. We eventually need to unify
11912 * this.
11913 */
11914 if (intel_crtc->primary_enabled &&
11915 INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev) &&
11916 dev_priv->fbc.plane == intel_crtc->plane &&
Matt Roper8e7d6882015-01-21 16:35:41 -080011917 state->base.rotation != BIT(DRM_ROTATE_0)) {
Matt Roper32b7eee2014-12-24 07:59:06 -080011918 intel_crtc->atomic.disable_fbc = true;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011919 }
11920
11921 if (state->visible) {
Matt Roper32b7eee2014-12-24 07:59:06 -080011922 /*
11923 * BDW signals flip done immediately if the plane
11924 * is disabled, even if the plane enable is already
11925 * armed to occur at the next vblank :(
11926 */
11927 if (IS_BROADWELL(dev) && !intel_crtc->primary_enabled)
11928 intel_crtc->atomic.wait_vblank = true;
11929 }
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011930
Matt Roper32b7eee2014-12-24 07:59:06 -080011931 intel_crtc->atomic.fb_bits |=
11932 INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
11933
11934 intel_crtc->atomic.update_fbc = true;
Matt Roperc59cb172014-12-01 15:40:16 -080011935 }
11936
11937 return 0;
Matt Roper465c1202014-05-29 08:06:54 -070011938}
11939
Sonika Jindal48404c12014-08-22 14:06:04 +053011940static void
11941intel_commit_primary_plane(struct drm_plane *plane,
11942 struct intel_plane_state *state)
11943{
Matt Roper2b875c22014-12-01 15:40:13 -080011944 struct drm_crtc *crtc = state->base.crtc;
11945 struct drm_framebuffer *fb = state->base.fb;
11946 struct drm_device *dev = plane->dev;
Sonika Jindal48404c12014-08-22 14:06:04 +053011947 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperea2c67b2014-12-23 10:41:52 -080011948 struct intel_crtc *intel_crtc;
Sonika Jindal48404c12014-08-22 14:06:04 +053011949 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Sonika Jindalce54d852014-08-21 11:44:39 +053011950 struct intel_plane *intel_plane = to_intel_plane(plane);
11951 struct drm_rect *src = &state->src;
Matt Ropercf4c7c12014-12-04 10:27:42 -080011952
Matt Roperea2c67b2014-12-23 10:41:52 -080011953 crtc = crtc ? crtc : plane->crtc;
11954 intel_crtc = to_intel_crtc(crtc);
11955
Matt Ropercf4c7c12014-12-04 10:27:42 -080011956 plane->fb = fb;
Sonika Jindalce54d852014-08-21 11:44:39 +053011957 crtc->x = src->x1 >> 16;
Matt Roper465c1202014-05-29 08:06:54 -070011958 crtc->y = src->y1 >> 16;
11959
Sonika Jindalce54d852014-08-21 11:44:39 +053011960 intel_plane->obj = obj;
Matt Roper465c1202014-05-29 08:06:54 -070011961
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011962 if (intel_crtc->active) {
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011963 if (state->visible) {
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011964 /* FIXME: kill this fastboot hack */
11965 intel_update_pipe_size(intel_crtc);
11966
11967 intel_crtc->primary_enabled = true;
11968
11969 dev_priv->display.update_primary_plane(crtc, plane->fb,
11970 crtc->x, crtc->y);
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011971 } else {
11972 /*
11973 * If clipping results in a non-visible primary plane,
11974 * we'll disable the primary plane. Note that this is
11975 * a bit different than what happens if userspace
11976 * explicitly disables the plane by passing fb=0
11977 * because plane->fb still gets set and pinned.
11978 */
11979 intel_disable_primary_hw_plane(plane, crtc);
11980 }
Matt Roper32b7eee2014-12-24 07:59:06 -080011981 }
11982}
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011983
Matt Roper32b7eee2014-12-24 07:59:06 -080011984static void intel_begin_crtc_commit(struct drm_crtc *crtc)
11985{
11986 struct drm_device *dev = crtc->dev;
11987 struct drm_i915_private *dev_priv = dev->dev_private;
11988 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roperea2c67b2014-12-23 10:41:52 -080011989 struct intel_plane *intel_plane;
11990 struct drm_plane *p;
11991 unsigned fb_bits = 0;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011992
Matt Roperea2c67b2014-12-23 10:41:52 -080011993 /* Track fb's for any planes being disabled */
11994 list_for_each_entry(p, &dev->mode_config.plane_list, head) {
11995 intel_plane = to_intel_plane(p);
11996
11997 if (intel_crtc->atomic.disabled_planes &
11998 (1 << drm_plane_index(p))) {
11999 switch (p->type) {
12000 case DRM_PLANE_TYPE_PRIMARY:
12001 fb_bits = INTEL_FRONTBUFFER_PRIMARY(intel_plane->pipe);
12002 break;
12003 case DRM_PLANE_TYPE_CURSOR:
12004 fb_bits = INTEL_FRONTBUFFER_CURSOR(intel_plane->pipe);
12005 break;
12006 case DRM_PLANE_TYPE_OVERLAY:
12007 fb_bits = INTEL_FRONTBUFFER_SPRITE(intel_plane->pipe);
12008 break;
12009 }
12010
12011 mutex_lock(&dev->struct_mutex);
12012 i915_gem_track_fb(intel_fb_obj(p->fb), NULL, fb_bits);
12013 mutex_unlock(&dev->struct_mutex);
12014 }
12015 }
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012016
Matt Roper32b7eee2014-12-24 07:59:06 -080012017 if (intel_crtc->atomic.wait_for_flips)
12018 intel_crtc_wait_for_pending_flips(crtc);
12019
12020 if (intel_crtc->atomic.disable_fbc)
12021 intel_fbc_disable(dev);
12022
12023 if (intel_crtc->atomic.pre_disable_primary)
12024 intel_pre_disable_primary(crtc);
12025
12026 if (intel_crtc->atomic.update_wm)
12027 intel_update_watermarks(crtc);
12028
12029 intel_runtime_pm_get(dev_priv);
Matt Roperc34c9ee2014-12-23 10:41:50 -080012030
12031 /* Perform vblank evasion around commit operation */
12032 if (intel_crtc->active)
12033 intel_crtc->atomic.evade =
12034 intel_pipe_update_start(intel_crtc,
12035 &intel_crtc->atomic.start_vbl_count);
Matt Roper32b7eee2014-12-24 07:59:06 -080012036}
12037
12038static void intel_finish_crtc_commit(struct drm_crtc *crtc)
12039{
12040 struct drm_device *dev = crtc->dev;
12041 struct drm_i915_private *dev_priv = dev->dev_private;
12042 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12043 struct drm_plane *p;
12044
Matt Roperc34c9ee2014-12-23 10:41:50 -080012045 if (intel_crtc->atomic.evade)
12046 intel_pipe_update_end(intel_crtc,
12047 intel_crtc->atomic.start_vbl_count);
12048
Matt Roper32b7eee2014-12-24 07:59:06 -080012049 intel_runtime_pm_put(dev_priv);
12050
12051 if (intel_crtc->atomic.wait_vblank)
12052 intel_wait_for_vblank(dev, intel_crtc->pipe);
12053
12054 intel_frontbuffer_flip(dev, intel_crtc->atomic.fb_bits);
12055
12056 if (intel_crtc->atomic.update_fbc) {
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012057 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020012058 intel_fbc_update(dev);
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012059 mutex_unlock(&dev->struct_mutex);
12060 }
Matt Roper465c1202014-05-29 08:06:54 -070012061
Matt Roper32b7eee2014-12-24 07:59:06 -080012062 if (intel_crtc->atomic.post_enable_primary)
12063 intel_post_enable_primary(crtc);
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012064
Matt Roper32b7eee2014-12-24 07:59:06 -080012065 drm_for_each_legacy_plane(p, &dev->mode_config.plane_list)
12066 if (intel_crtc->atomic.update_sprite_watermarks & drm_plane_index(p))
12067 intel_update_sprite_watermarks(p, crtc, 0, 0, 0,
12068 false, false);
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012069
Matt Roper32b7eee2014-12-24 07:59:06 -080012070 memset(&intel_crtc->atomic, 0, sizeof(intel_crtc->atomic));
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012071}
12072
Matt Ropercf4c7c12014-12-04 10:27:42 -080012073/**
Matt Roper4a3b8762014-12-23 10:41:51 -080012074 * intel_plane_destroy - destroy a plane
12075 * @plane: plane to destroy
Matt Ropercf4c7c12014-12-04 10:27:42 -080012076 *
Matt Roper4a3b8762014-12-23 10:41:51 -080012077 * Common destruction function for all types of planes (primary, cursor,
12078 * sprite).
Matt Ropercf4c7c12014-12-04 10:27:42 -080012079 */
Matt Roper4a3b8762014-12-23 10:41:51 -080012080void intel_plane_destroy(struct drm_plane *plane)
Matt Roper465c1202014-05-29 08:06:54 -070012081{
12082 struct intel_plane *intel_plane = to_intel_plane(plane);
12083 drm_plane_cleanup(plane);
12084 kfree(intel_plane);
12085}
12086
Matt Roper65a3fea2015-01-21 16:35:42 -080012087const struct drm_plane_funcs intel_plane_funcs = {
Matt Roperea2c67b2014-12-23 10:41:52 -080012088 .update_plane = drm_plane_helper_update,
12089 .disable_plane = drm_plane_helper_disable,
Matt Roper3d7d6512014-06-10 08:28:13 -070012090 .destroy = intel_plane_destroy,
Matt Roperc196e1d2015-01-21 16:35:48 -080012091 .set_property = drm_atomic_helper_plane_set_property,
Matt Ropera98b3432015-01-21 16:35:43 -080012092 .atomic_get_property = intel_plane_atomic_get_property,
12093 .atomic_set_property = intel_plane_atomic_set_property,
Matt Roperea2c67b2014-12-23 10:41:52 -080012094 .atomic_duplicate_state = intel_plane_duplicate_state,
12095 .atomic_destroy_state = intel_plane_destroy_state,
12096
Matt Roper465c1202014-05-29 08:06:54 -070012097};
12098
12099static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
12100 int pipe)
12101{
12102 struct intel_plane *primary;
Matt Roper8e7d6882015-01-21 16:35:41 -080012103 struct intel_plane_state *state;
Matt Roper465c1202014-05-29 08:06:54 -070012104 const uint32_t *intel_primary_formats;
12105 int num_formats;
12106
12107 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
12108 if (primary == NULL)
12109 return NULL;
12110
Matt Roper8e7d6882015-01-21 16:35:41 -080012111 state = intel_create_plane_state(&primary->base);
12112 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080012113 kfree(primary);
12114 return NULL;
12115 }
Matt Roper8e7d6882015-01-21 16:35:41 -080012116 primary->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080012117
Matt Roper465c1202014-05-29 08:06:54 -070012118 primary->can_scale = false;
12119 primary->max_downscale = 1;
12120 primary->pipe = pipe;
12121 primary->plane = pipe;
Matt Roperc59cb172014-12-01 15:40:16 -080012122 primary->check_plane = intel_check_primary_plane;
12123 primary->commit_plane = intel_commit_primary_plane;
Matt Roper465c1202014-05-29 08:06:54 -070012124 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
12125 primary->plane = !pipe;
12126
12127 if (INTEL_INFO(dev)->gen <= 3) {
12128 intel_primary_formats = intel_primary_formats_gen2;
12129 num_formats = ARRAY_SIZE(intel_primary_formats_gen2);
12130 } else {
12131 intel_primary_formats = intel_primary_formats_gen4;
12132 num_formats = ARRAY_SIZE(intel_primary_formats_gen4);
12133 }
12134
12135 drm_universal_plane_init(dev, &primary->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080012136 &intel_plane_funcs,
Matt Roper465c1202014-05-29 08:06:54 -070012137 intel_primary_formats, num_formats,
12138 DRM_PLANE_TYPE_PRIMARY);
Sonika Jindal48404c12014-08-22 14:06:04 +053012139
12140 if (INTEL_INFO(dev)->gen >= 4) {
12141 if (!dev->mode_config.rotation_property)
12142 dev->mode_config.rotation_property =
12143 drm_mode_create_rotation_property(dev,
12144 BIT(DRM_ROTATE_0) |
12145 BIT(DRM_ROTATE_180));
12146 if (dev->mode_config.rotation_property)
12147 drm_object_attach_property(&primary->base.base,
12148 dev->mode_config.rotation_property,
Matt Roper8e7d6882015-01-21 16:35:41 -080012149 state->base.rotation);
Sonika Jindal48404c12014-08-22 14:06:04 +053012150 }
12151
Matt Roperea2c67b2014-12-23 10:41:52 -080012152 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
12153
Matt Roper465c1202014-05-29 08:06:54 -070012154 return &primary->base;
12155}
12156
Matt Roper3d7d6512014-06-10 08:28:13 -070012157static int
Gustavo Padovan852e7872014-09-05 17:22:31 -030012158intel_check_cursor_plane(struct drm_plane *plane,
12159 struct intel_plane_state *state)
Matt Roper3d7d6512014-06-10 08:28:13 -070012160{
Matt Roper2b875c22014-12-01 15:40:13 -080012161 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080012162 struct drm_device *dev = plane->dev;
Matt Roper2b875c22014-12-01 15:40:13 -080012163 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan852e7872014-09-05 17:22:31 -030012164 struct drm_rect *dest = &state->dst;
12165 struct drm_rect *src = &state->src;
12166 const struct drm_rect *clip = &state->clip;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012167 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Matt Roperea2c67b2014-12-23 10:41:52 -080012168 struct intel_crtc *intel_crtc;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012169 unsigned stride;
12170 int ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030012171
Matt Roperea2c67b2014-12-23 10:41:52 -080012172 crtc = crtc ? crtc : plane->crtc;
12173 intel_crtc = to_intel_crtc(crtc);
12174
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012175 ret = drm_plane_helper_check_update(plane, crtc, fb,
Gustavo Padovan852e7872014-09-05 17:22:31 -030012176 src, dest, clip,
12177 DRM_PLANE_HELPER_NO_SCALING,
12178 DRM_PLANE_HELPER_NO_SCALING,
12179 true, true, &state->visible);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012180 if (ret)
12181 return ret;
12182
12183
12184 /* if we want to turn off the cursor ignore width and height */
12185 if (!obj)
Matt Roper32b7eee2014-12-24 07:59:06 -080012186 goto finish;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012187
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012188 /* Check for which cursor types we support */
Matt Roperea2c67b2014-12-23 10:41:52 -080012189 if (!cursor_size_ok(dev, state->base.crtc_w, state->base.crtc_h)) {
12190 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
12191 state->base.crtc_w, state->base.crtc_h);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012192 return -EINVAL;
12193 }
12194
Matt Roperea2c67b2014-12-23 10:41:52 -080012195 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
12196 if (obj->base.size < stride * state->base.crtc_h) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012197 DRM_DEBUG_KMS("buffer is too small\n");
12198 return -ENOMEM;
12199 }
12200
12201 /* we only need to pin inside GTT if cursor is non-phy */
12202 mutex_lock(&dev->struct_mutex);
12203 if (!INTEL_INFO(dev)->cursor_needs_physical && obj->tiling_mode) {
12204 DRM_DEBUG_KMS("cursor cannot be tiled\n");
12205 ret = -EINVAL;
12206 }
12207 mutex_unlock(&dev->struct_mutex);
12208
Matt Roper32b7eee2014-12-24 07:59:06 -080012209finish:
12210 if (intel_crtc->active) {
Matt Roperea2c67b2014-12-23 10:41:52 -080012211 if (intel_crtc->cursor_width != state->base.crtc_w)
Matt Roper32b7eee2014-12-24 07:59:06 -080012212 intel_crtc->atomic.update_wm = true;
12213
12214 intel_crtc->atomic.fb_bits |=
12215 INTEL_FRONTBUFFER_CURSOR(intel_crtc->pipe);
12216 }
12217
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012218 return ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030012219}
12220
Matt Roperf4a2cf22014-12-01 15:40:12 -080012221static void
Gustavo Padovan852e7872014-09-05 17:22:31 -030012222intel_commit_cursor_plane(struct drm_plane *plane,
12223 struct intel_plane_state *state)
12224{
Matt Roper2b875c22014-12-01 15:40:13 -080012225 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080012226 struct drm_device *dev = plane->dev;
12227 struct intel_crtc *intel_crtc;
Sonika Jindala919db92014-10-23 07:41:33 -070012228 struct intel_plane *intel_plane = to_intel_plane(plane);
Matt Roper2b875c22014-12-01 15:40:13 -080012229 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
Gustavo Padovana912f122014-12-01 15:40:10 -080012230 uint32_t addr;
Matt Roper3d7d6512014-06-10 08:28:13 -070012231
Matt Roperea2c67b2014-12-23 10:41:52 -080012232 crtc = crtc ? crtc : plane->crtc;
12233 intel_crtc = to_intel_crtc(crtc);
Sonika Jindala919db92014-10-23 07:41:33 -070012234
Matt Roperea2c67b2014-12-23 10:41:52 -080012235 plane->fb = state->base.fb;
12236 crtc->cursor_x = state->base.crtc_x;
12237 crtc->cursor_y = state->base.crtc_y;
12238
Sonika Jindala919db92014-10-23 07:41:33 -070012239 intel_plane->obj = obj;
12240
Gustavo Padovana912f122014-12-01 15:40:10 -080012241 if (intel_crtc->cursor_bo == obj)
12242 goto update;
12243
Matt Roperf4a2cf22014-12-01 15:40:12 -080012244 if (!obj)
Gustavo Padovana912f122014-12-01 15:40:10 -080012245 addr = 0;
Matt Roperf4a2cf22014-12-01 15:40:12 -080012246 else if (!INTEL_INFO(dev)->cursor_needs_physical)
Gustavo Padovana912f122014-12-01 15:40:10 -080012247 addr = i915_gem_obj_ggtt_offset(obj);
Matt Roperf4a2cf22014-12-01 15:40:12 -080012248 else
Gustavo Padovana912f122014-12-01 15:40:10 -080012249 addr = obj->phys_handle->busaddr;
Gustavo Padovana912f122014-12-01 15:40:10 -080012250
Gustavo Padovana912f122014-12-01 15:40:10 -080012251 intel_crtc->cursor_addr = addr;
12252 intel_crtc->cursor_bo = obj;
12253update:
Matt Roperea2c67b2014-12-23 10:41:52 -080012254 intel_crtc->cursor_width = state->base.crtc_w;
12255 intel_crtc->cursor_height = state->base.crtc_h;
Gustavo Padovana912f122014-12-01 15:40:10 -080012256
Matt Roper32b7eee2014-12-24 07:59:06 -080012257 if (intel_crtc->active)
Gustavo Padovan852e7872014-09-05 17:22:31 -030012258 intel_crtc_update_cursor(crtc, state->visible);
Matt Roper3d7d6512014-06-10 08:28:13 -070012259}
Gustavo Padovan852e7872014-09-05 17:22:31 -030012260
Matt Roper3d7d6512014-06-10 08:28:13 -070012261static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
12262 int pipe)
12263{
12264 struct intel_plane *cursor;
Matt Roper8e7d6882015-01-21 16:35:41 -080012265 struct intel_plane_state *state;
Matt Roper3d7d6512014-06-10 08:28:13 -070012266
12267 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
12268 if (cursor == NULL)
12269 return NULL;
12270
Matt Roper8e7d6882015-01-21 16:35:41 -080012271 state = intel_create_plane_state(&cursor->base);
12272 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080012273 kfree(cursor);
12274 return NULL;
12275 }
Matt Roper8e7d6882015-01-21 16:35:41 -080012276 cursor->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080012277
Matt Roper3d7d6512014-06-10 08:28:13 -070012278 cursor->can_scale = false;
12279 cursor->max_downscale = 1;
12280 cursor->pipe = pipe;
12281 cursor->plane = pipe;
Matt Roperc59cb172014-12-01 15:40:16 -080012282 cursor->check_plane = intel_check_cursor_plane;
12283 cursor->commit_plane = intel_commit_cursor_plane;
Matt Roper3d7d6512014-06-10 08:28:13 -070012284
12285 drm_universal_plane_init(dev, &cursor->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080012286 &intel_plane_funcs,
Matt Roper3d7d6512014-06-10 08:28:13 -070012287 intel_cursor_formats,
12288 ARRAY_SIZE(intel_cursor_formats),
12289 DRM_PLANE_TYPE_CURSOR);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070012290
12291 if (INTEL_INFO(dev)->gen >= 4) {
12292 if (!dev->mode_config.rotation_property)
12293 dev->mode_config.rotation_property =
12294 drm_mode_create_rotation_property(dev,
12295 BIT(DRM_ROTATE_0) |
12296 BIT(DRM_ROTATE_180));
12297 if (dev->mode_config.rotation_property)
12298 drm_object_attach_property(&cursor->base.base,
12299 dev->mode_config.rotation_property,
Matt Roper8e7d6882015-01-21 16:35:41 -080012300 state->base.rotation);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070012301 }
12302
Matt Roperea2c67b2014-12-23 10:41:52 -080012303 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
12304
Matt Roper3d7d6512014-06-10 08:28:13 -070012305 return &cursor->base;
12306}
12307
Hannes Ederb358d0a2008-12-18 21:18:47 +010012308static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -080012309{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012310 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080012311 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020012312 struct intel_crtc_state *crtc_state = NULL;
Matt Roper3d7d6512014-06-10 08:28:13 -070012313 struct drm_plane *primary = NULL;
12314 struct drm_plane *cursor = NULL;
Matt Roper465c1202014-05-29 08:06:54 -070012315 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080012316
Daniel Vetter955382f2013-09-19 14:05:45 +020012317 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -080012318 if (intel_crtc == NULL)
12319 return;
12320
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020012321 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
12322 if (!crtc_state)
12323 goto fail;
12324 intel_crtc_set_state(intel_crtc, crtc_state);
12325
Matt Roper465c1202014-05-29 08:06:54 -070012326 primary = intel_primary_plane_create(dev, pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070012327 if (!primary)
12328 goto fail;
12329
12330 cursor = intel_cursor_plane_create(dev, pipe);
12331 if (!cursor)
12332 goto fail;
12333
Matt Roper465c1202014-05-29 08:06:54 -070012334 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
Matt Roper3d7d6512014-06-10 08:28:13 -070012335 cursor, &intel_crtc_funcs);
12336 if (ret)
12337 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080012338
12339 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -080012340 for (i = 0; i < 256; i++) {
12341 intel_crtc->lut_r[i] = i;
12342 intel_crtc->lut_g[i] = i;
12343 intel_crtc->lut_b[i] = i;
12344 }
12345
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020012346 /*
12347 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
Daniel Vetter8c0f92e2014-06-16 02:08:26 +020012348 * is hooked to pipe B. Hence we want plane A feeding pipe B.
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020012349 */
Jesse Barnes80824002009-09-10 15:28:06 -070012350 intel_crtc->pipe = pipe;
12351 intel_crtc->plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +010012352 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
Zhao Yakui28c97732009-10-09 11:39:41 +080012353 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +010012354 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -070012355 }
12356
Chris Wilson4b0e3332014-05-30 16:35:26 +030012357 intel_crtc->cursor_base = ~0;
12358 intel_crtc->cursor_cntl = ~0;
Ville Syrjälädc41c152014-08-13 11:57:05 +030012359 intel_crtc->cursor_size = ~0;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030012360
Jesse Barnes22fd0fa2009-12-02 13:42:53 -080012361 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
12362 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
12363 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
12364 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
12365
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020012366 INIT_WORK(&intel_crtc->mmio_flip.work, intel_mmio_flip_work_func);
12367
Jesse Barnes79e53942008-11-07 14:24:08 -080012368 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Daniel Vetter87b6b102014-05-15 15:33:46 +020012369
12370 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070012371 return;
12372
12373fail:
12374 if (primary)
12375 drm_plane_cleanup(primary);
12376 if (cursor)
12377 drm_plane_cleanup(cursor);
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020012378 kfree(crtc_state);
Matt Roper3d7d6512014-06-10 08:28:13 -070012379 kfree(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -080012380}
12381
Jesse Barnes752aa882013-10-31 18:55:49 +020012382enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
12383{
12384 struct drm_encoder *encoder = connector->base.encoder;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020012385 struct drm_device *dev = connector->base.dev;
Jesse Barnes752aa882013-10-31 18:55:49 +020012386
Rob Clark51fd3712013-11-19 12:10:12 -050012387 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Jesse Barnes752aa882013-10-31 18:55:49 +020012388
Ville Syrjäläd3babd32014-11-07 11:16:01 +020012389 if (!encoder || WARN_ON(!encoder->crtc))
Jesse Barnes752aa882013-10-31 18:55:49 +020012390 return INVALID_PIPE;
12391
12392 return to_intel_crtc(encoder->crtc)->pipe;
12393}
12394
Carl Worth08d7b3d2009-04-29 14:43:54 -070012395int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +000012396 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -070012397{
Carl Worth08d7b3d2009-04-29 14:43:54 -070012398 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Rob Clark7707e652014-07-17 23:30:04 -040012399 struct drm_crtc *drmmode_crtc;
Daniel Vetterc05422d2009-08-11 16:05:30 +020012400 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012401
Daniel Vetter1cff8f62012-04-24 09:55:08 +020012402 if (!drm_core_check_feature(dev, DRIVER_MODESET))
12403 return -ENODEV;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012404
Rob Clark7707e652014-07-17 23:30:04 -040012405 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
Carl Worth08d7b3d2009-04-29 14:43:54 -070012406
Rob Clark7707e652014-07-17 23:30:04 -040012407 if (!drmmode_crtc) {
Carl Worth08d7b3d2009-04-29 14:43:54 -070012408 DRM_ERROR("no such CRTC id\n");
Ville Syrjälä3f2c2052013-10-17 13:35:03 +030012409 return -ENOENT;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012410 }
12411
Rob Clark7707e652014-07-17 23:30:04 -040012412 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetterc05422d2009-08-11 16:05:30 +020012413 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012414
Daniel Vetterc05422d2009-08-11 16:05:30 +020012415 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012416}
12417
Daniel Vetter66a92782012-07-12 20:08:18 +020012418static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080012419{
Daniel Vetter66a92782012-07-12 20:08:18 +020012420 struct drm_device *dev = encoder->base.dev;
12421 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080012422 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080012423 int entry = 0;
12424
Damien Lespiaub2784e12014-08-05 11:29:37 +010012425 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020012426 if (encoders_cloneable(encoder, source_encoder))
Daniel Vetter66a92782012-07-12 20:08:18 +020012427 index_mask |= (1 << entry);
12428
Jesse Barnes79e53942008-11-07 14:24:08 -080012429 entry++;
12430 }
Chris Wilson4ef69c72010-09-09 15:14:28 +010012431
Jesse Barnes79e53942008-11-07 14:24:08 -080012432 return index_mask;
12433}
12434
Chris Wilson4d302442010-12-14 19:21:29 +000012435static bool has_edp_a(struct drm_device *dev)
12436{
12437 struct drm_i915_private *dev_priv = dev->dev_private;
12438
12439 if (!IS_MOBILE(dev))
12440 return false;
12441
12442 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
12443 return false;
12444
Damien Lespiaue3589902014-02-07 19:12:50 +000012445 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
Chris Wilson4d302442010-12-14 19:21:29 +000012446 return false;
12447
12448 return true;
12449}
12450
Jesse Barnes84b4e042014-06-25 08:24:29 -070012451static bool intel_crt_present(struct drm_device *dev)
12452{
12453 struct drm_i915_private *dev_priv = dev->dev_private;
12454
Damien Lespiau884497e2013-12-03 13:56:23 +000012455 if (INTEL_INFO(dev)->gen >= 9)
12456 return false;
12457
Damien Lespiaucf404ce2014-10-01 20:04:15 +010012458 if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
Jesse Barnes84b4e042014-06-25 08:24:29 -070012459 return false;
12460
12461 if (IS_CHERRYVIEW(dev))
12462 return false;
12463
12464 if (IS_VALLEYVIEW(dev) && !dev_priv->vbt.int_crt_support)
12465 return false;
12466
12467 return true;
12468}
12469
Jesse Barnes79e53942008-11-07 14:24:08 -080012470static void intel_setup_outputs(struct drm_device *dev)
12471{
Eric Anholt725e30a2009-01-22 13:01:02 -080012472 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +010012473 struct intel_encoder *encoder;
Matt Roperc6f95f22015-01-22 16:50:32 -080012474 struct drm_connector *connector;
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012475 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -080012476
Daniel Vetterc9093352013-06-06 22:22:47 +020012477 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080012478
Jesse Barnes84b4e042014-06-25 08:24:29 -070012479 if (intel_crt_present(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -020012480 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012481
Paulo Zanoniaffa9352012-11-23 15:30:39 -020012482 if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030012483 int found;
12484
12485 /* Haswell uses DDI functions to detect digital outputs */
12486 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
12487 /* DDI A only supports eDP */
12488 if (found)
12489 intel_ddi_init(dev, PORT_A);
12490
12491 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
12492 * register */
12493 found = I915_READ(SFUSE_STRAP);
12494
12495 if (found & SFUSE_STRAP_DDIB_DETECTED)
12496 intel_ddi_init(dev, PORT_B);
12497 if (found & SFUSE_STRAP_DDIC_DETECTED)
12498 intel_ddi_init(dev, PORT_C);
12499 if (found & SFUSE_STRAP_DDID_DETECTED)
12500 intel_ddi_init(dev, PORT_D);
12501 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012502 int found;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020012503 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
Daniel Vetter270b3042012-10-27 15:52:05 +020012504
12505 if (has_edp_a(dev))
12506 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012507
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012508 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +080012509 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +010012510 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012511 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012512 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012513 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012514 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012515 }
12516
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012517 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012518 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012519
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012520 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012521 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012522
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012523 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012524 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012525
Daniel Vetter270b3042012-10-27 15:52:05 +020012526 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012527 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -070012528 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012529 /*
12530 * The DP_DETECTED bit is the latched state of the DDC
12531 * SDA pin at boot. However since eDP doesn't require DDC
12532 * (no way to plug in a DP->HDMI dongle) the DDC pins for
12533 * eDP ports may have been muxed to an alternate function.
12534 * Thus we can't rely on the DP_DETECTED bit alone to detect
12535 * eDP ports. Consult the VBT as well as DP_DETECTED to
12536 * detect eDP ports.
12537 */
Ville Syrjäläd2182a62015-01-09 14:21:14 +020012538 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED &&
12539 !intel_dp_is_edp(dev, PORT_B))
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030012540 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
12541 PORT_B);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012542 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED ||
12543 intel_dp_is_edp(dev, PORT_B))
12544 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030012545
Ville Syrjäläd2182a62015-01-09 14:21:14 +020012546 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED &&
12547 !intel_dp_is_edp(dev, PORT_C))
Jesse Barnes6f6005a2013-08-09 09:34:35 -070012548 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
12549 PORT_C);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012550 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED ||
12551 intel_dp_is_edp(dev, PORT_C))
12552 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
Gajanan Bhat19c03922012-09-27 19:13:07 +053012553
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030012554 if (IS_CHERRYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012555 if (I915_READ(VLV_DISPLAY_BASE + CHV_HDMID) & SDVO_DETECTED)
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030012556 intel_hdmi_init(dev, VLV_DISPLAY_BASE + CHV_HDMID,
12557 PORT_D);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012558 /* eDP not supported on port D, so don't check VBT */
12559 if (I915_READ(VLV_DISPLAY_BASE + DP_D) & DP_DETECTED)
12560 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_D, PORT_D);
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030012561 }
12562
Jani Nikula3cfca972013-08-27 15:12:26 +030012563 intel_dsi_init(dev);
Zhenyu Wang103a1962009-11-27 11:44:36 +080012564 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +080012565 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -080012566
Paulo Zanonie2debe92013-02-18 19:00:27 -030012567 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012568 DRM_DEBUG_KMS("probing SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012569 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012570 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
12571 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012572 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012573 }
Ma Ling27185ae2009-08-24 13:50:23 +080012574
Imre Deake7281ea2013-05-08 13:14:08 +030012575 if (!found && SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012576 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -080012577 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -040012578
12579 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -040012580
Paulo Zanonie2debe92013-02-18 19:00:27 -030012581 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012582 DRM_DEBUG_KMS("probing SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012583 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012584 }
Ma Ling27185ae2009-08-24 13:50:23 +080012585
Paulo Zanonie2debe92013-02-18 19:00:27 -030012586 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +080012587
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012588 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
12589 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012590 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012591 }
Imre Deake7281ea2013-05-08 13:14:08 +030012592 if (SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012593 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -080012594 }
Ma Ling27185ae2009-08-24 13:50:23 +080012595
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012596 if (SUPPORTS_INTEGRATED_DP(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +030012597 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012598 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -070012599 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080012600 intel_dvo_init(dev);
12601
Zhenyu Wang103a1962009-11-27 11:44:36 +080012602 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080012603 intel_tv_init(dev);
12604
Matt Roperc6f95f22015-01-22 16:50:32 -080012605 /*
12606 * FIXME: We don't have full atomic support yet, but we want to be
12607 * able to enable/test plane updates via the atomic interface in the
12608 * meantime. However as soon as we flip DRIVER_ATOMIC on, the DRM core
12609 * will take some atomic codepaths to lookup properties during
12610 * drmModeGetConnector() that unconditionally dereference
12611 * connector->state.
12612 *
12613 * We create a dummy connector state here for each connector to ensure
12614 * the DRM core doesn't try to dereference a NULL connector->state.
12615 * The actual connector properties will never be updated or contain
12616 * useful information, but since we're doing this specifically for
12617 * testing/debug of the plane operations (and only when a specific
12618 * kernel module option is given), that shouldn't really matter.
12619 *
12620 * Once atomic support for crtc's + connectors lands, this loop should
12621 * be removed since we'll be setting up real connector state, which
12622 * will contain Intel-specific properties.
12623 */
12624 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
12625 list_for_each_entry(connector,
12626 &dev->mode_config.connector_list,
12627 head) {
12628 if (!WARN_ON(connector->state)) {
12629 connector->state =
12630 kzalloc(sizeof(*connector->state),
12631 GFP_KERNEL);
12632 }
12633 }
12634 }
12635
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -080012636 intel_psr_init(dev);
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -070012637
Damien Lespiaub2784e12014-08-05 11:29:37 +010012638 for_each_intel_encoder(dev, encoder) {
Chris Wilson4ef69c72010-09-09 15:14:28 +010012639 encoder->base.possible_crtcs = encoder->crtc_mask;
12640 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +020012641 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -080012642 }
Chris Wilson47356eb2011-01-11 17:06:04 +000012643
Paulo Zanonidde86e22012-12-01 12:04:25 -020012644 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +020012645
12646 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080012647}
12648
12649static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
12650{
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012651 struct drm_device *dev = fb->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -080012652 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -080012653
Daniel Vetteref2d6332014-02-10 18:00:38 +010012654 drm_framebuffer_cleanup(fb);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012655 mutex_lock(&dev->struct_mutex);
Daniel Vetteref2d6332014-02-10 18:00:38 +010012656 WARN_ON(!intel_fb->obj->framebuffer_references--);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012657 drm_gem_object_unreference(&intel_fb->obj->base);
12658 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080012659 kfree(intel_fb);
12660}
12661
12662static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +000012663 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -080012664 unsigned int *handle)
12665{
12666 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +000012667 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080012668
Chris Wilson05394f32010-11-08 19:18:58 +000012669 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -080012670}
12671
12672static const struct drm_framebuffer_funcs intel_fb_funcs = {
12673 .destroy = intel_user_framebuffer_destroy,
12674 .create_handle = intel_user_framebuffer_create_handle,
12675};
12676
Daniel Vetterb5ea6422014-03-02 21:18:00 +010012677static int intel_framebuffer_init(struct drm_device *dev,
12678 struct intel_framebuffer *intel_fb,
12679 struct drm_mode_fb_cmd2 *mode_cmd,
12680 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -080012681{
Jesse Barnesa57ce0b2014-02-07 12:10:35 -080012682 int aligned_height;
Chris Wilsona35cdaa2013-06-25 17:26:45 +010012683 int pitch_limit;
Jesse Barnes79e53942008-11-07 14:24:08 -080012684 int ret;
12685
Daniel Vetterdd4916c2013-10-09 21:23:51 +020012686 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
12687
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012688 if (obj->tiling_mode == I915_TILING_Y) {
12689 DRM_DEBUG("hardware does not support tiling Y\n");
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 Wilsonc16ed4b2012-12-18 22:13:14 +000012693 if (mode_cmd->pitches[0] & 63) {
12694 DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n",
12695 mode_cmd->pitches[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +010012696 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012697 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012698
Chris Wilsona35cdaa2013-06-25 17:26:45 +010012699 if (INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev)) {
12700 pitch_limit = 32*1024;
12701 } else if (INTEL_INFO(dev)->gen >= 4) {
12702 if (obj->tiling_mode)
12703 pitch_limit = 16*1024;
12704 else
12705 pitch_limit = 32*1024;
12706 } else if (INTEL_INFO(dev)->gen >= 3) {
12707 if (obj->tiling_mode)
12708 pitch_limit = 8*1024;
12709 else
12710 pitch_limit = 16*1024;
12711 } else
12712 /* XXX DSPC is limited to 4k tiled */
12713 pitch_limit = 8*1024;
12714
12715 if (mode_cmd->pitches[0] > pitch_limit) {
12716 DRM_DEBUG("%s pitch (%d) must be at less than %d\n",
12717 obj->tiling_mode ? "tiled" : "linear",
12718 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012719 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012720 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012721
12722 if (obj->tiling_mode != I915_TILING_NONE &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012723 mode_cmd->pitches[0] != obj->stride) {
12724 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
12725 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012726 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012727 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012728
Ville Syrjälä57779d02012-10-31 17:50:14 +020012729 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080012730 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020012731 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020012732 case DRM_FORMAT_RGB565:
12733 case DRM_FORMAT_XRGB8888:
12734 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020012735 break;
12736 case DRM_FORMAT_XRGB1555:
12737 case DRM_FORMAT_ARGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012738 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012739 DRM_DEBUG("unsupported pixel format: %s\n",
12740 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012741 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012742 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020012743 break;
12744 case DRM_FORMAT_XBGR8888:
12745 case DRM_FORMAT_ABGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020012746 case DRM_FORMAT_XRGB2101010:
12747 case DRM_FORMAT_ARGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020012748 case DRM_FORMAT_XBGR2101010:
12749 case DRM_FORMAT_ABGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012750 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012751 DRM_DEBUG("unsupported pixel format: %s\n",
12752 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012753 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012754 }
Jesse Barnesb5626742011-06-24 12:19:27 -070012755 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020012756 case DRM_FORMAT_YUYV:
12757 case DRM_FORMAT_UYVY:
12758 case DRM_FORMAT_YVYU:
12759 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012760 if (INTEL_INFO(dev)->gen < 5) {
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));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012763 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012764 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012765 break;
12766 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012767 DRM_DEBUG("unsupported pixel format: %s\n",
12768 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010012769 return -EINVAL;
12770 }
12771
Ville Syrjälä90f9a332012-10-31 17:50:19 +020012772 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
12773 if (mode_cmd->offsets[0] != 0)
12774 return -EINVAL;
12775
Damien Lespiauec2c9812015-01-20 12:51:45 +000012776 aligned_height = intel_fb_align_height(dev, mode_cmd->height,
12777 obj->tiling_mode);
Daniel Vetter53155c02013-10-09 21:55:33 +020012778 /* FIXME drm helper for size checks (especially planar formats)? */
12779 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
12780 return -EINVAL;
12781
Daniel Vetterc7d73f62012-12-13 23:38:38 +010012782 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
12783 intel_fb->obj = obj;
Daniel Vetter80075d42013-10-09 21:23:52 +020012784 intel_fb->obj->framebuffer_references++;
Daniel Vetterc7d73f62012-12-13 23:38:38 +010012785
Jesse Barnes79e53942008-11-07 14:24:08 -080012786 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
12787 if (ret) {
12788 DRM_ERROR("framebuffer init failed %d\n", ret);
12789 return ret;
12790 }
12791
Jesse Barnes79e53942008-11-07 14:24:08 -080012792 return 0;
12793}
12794
Jesse Barnes79e53942008-11-07 14:24:08 -080012795static struct drm_framebuffer *
12796intel_user_framebuffer_create(struct drm_device *dev,
12797 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -080012798 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080012799{
Chris Wilson05394f32010-11-08 19:18:58 +000012800 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080012801
Jesse Barnes308e5bc2011-11-14 14:51:28 -080012802 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
12803 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +000012804 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010012805 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080012806
Chris Wilsond2dff872011-04-19 08:36:26 +010012807 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -080012808}
12809
Daniel Vetter4520f532013-10-09 09:18:51 +020012810#ifndef CONFIG_DRM_I915_FBDEV
Daniel Vetter0632fef2013-10-08 17:44:49 +020012811static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
Daniel Vetter4520f532013-10-09 09:18:51 +020012812{
12813}
12814#endif
12815
Jesse Barnes79e53942008-11-07 14:24:08 -080012816static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080012817 .fb_create = intel_user_framebuffer_create,
Daniel Vetter0632fef2013-10-08 17:44:49 +020012818 .output_poll_changed = intel_fbdev_output_poll_changed,
Matt Roper5ee67f12015-01-21 16:35:44 -080012819 .atomic_check = intel_atomic_check,
12820 .atomic_commit = intel_atomic_commit,
Jesse Barnes79e53942008-11-07 14:24:08 -080012821};
12822
Jesse Barnese70236a2009-09-21 10:42:27 -070012823/* Set up chip specific display functions */
12824static void intel_init_display(struct drm_device *dev)
12825{
12826 struct drm_i915_private *dev_priv = dev->dev_private;
12827
Daniel Vetteree9300b2013-06-03 22:40:22 +020012828 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
12829 dev_priv->display.find_dpll = g4x_find_best_dpll;
Chon Ming Leeef9348c2014-04-09 13:28:18 +030012830 else if (IS_CHERRYVIEW(dev))
12831 dev_priv->display.find_dpll = chv_find_best_dpll;
Daniel Vetteree9300b2013-06-03 22:40:22 +020012832 else if (IS_VALLEYVIEW(dev))
12833 dev_priv->display.find_dpll = vlv_find_best_dpll;
12834 else if (IS_PINEVIEW(dev))
12835 dev_priv->display.find_dpll = pnv_find_best_dpll;
12836 else
12837 dev_priv->display.find_dpll = i9xx_find_best_dpll;
12838
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000012839 if (INTEL_INFO(dev)->gen >= 9) {
12840 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000012841 dev_priv->display.get_initial_plane_config =
12842 skylake_get_initial_plane_config;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000012843 dev_priv->display.crtc_compute_clock =
12844 haswell_crtc_compute_clock;
12845 dev_priv->display.crtc_enable = haswell_crtc_enable;
12846 dev_priv->display.crtc_disable = haswell_crtc_disable;
12847 dev_priv->display.off = ironlake_crtc_off;
12848 dev_priv->display.update_primary_plane =
12849 skylake_update_primary_plane;
12850 } else if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012851 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000012852 dev_priv->display.get_initial_plane_config =
12853 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira797d0252014-10-29 11:32:34 +020012854 dev_priv->display.crtc_compute_clock =
12855 haswell_crtc_compute_clock;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020012856 dev_priv->display.crtc_enable = haswell_crtc_enable;
12857 dev_priv->display.crtc_disable = haswell_crtc_disable;
Daniel Vetterdf8ad702014-06-25 22:02:03 +030012858 dev_priv->display.off = ironlake_crtc_off;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000012859 dev_priv->display.update_primary_plane =
12860 ironlake_update_primary_plane;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030012861 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012862 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000012863 dev_priv->display.get_initial_plane_config =
12864 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +020012865 dev_priv->display.crtc_compute_clock =
12866 ironlake_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020012867 dev_priv->display.crtc_enable = ironlake_crtc_enable;
12868 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010012869 dev_priv->display.off = ironlake_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070012870 dev_priv->display.update_primary_plane =
12871 ironlake_update_primary_plane;
Jesse Barnes89b667f2013-04-18 14:51:36 -070012872 } else if (IS_VALLEYVIEW(dev)) {
12873 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000012874 dev_priv->display.get_initial_plane_config =
12875 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020012876 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Jesse Barnes89b667f2013-04-18 14:51:36 -070012877 dev_priv->display.crtc_enable = valleyview_crtc_enable;
12878 dev_priv->display.crtc_disable = i9xx_crtc_disable;
12879 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070012880 dev_priv->display.update_primary_plane =
12881 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070012882 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012883 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000012884 dev_priv->display.get_initial_plane_config =
12885 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020012886 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020012887 dev_priv->display.crtc_enable = i9xx_crtc_enable;
12888 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010012889 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070012890 dev_priv->display.update_primary_plane =
12891 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070012892 }
Jesse Barnese70236a2009-09-21 10:42:27 -070012893
Jesse Barnese70236a2009-09-21 10:42:27 -070012894 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070012895 if (IS_VALLEYVIEW(dev))
12896 dev_priv->display.get_display_clock_speed =
12897 valleyview_get_display_clock_speed;
12898 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -070012899 dev_priv->display.get_display_clock_speed =
12900 i945_get_display_clock_speed;
12901 else if (IS_I915G(dev))
12902 dev_priv->display.get_display_clock_speed =
12903 i915_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020012904 else if (IS_I945GM(dev) || IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070012905 dev_priv->display.get_display_clock_speed =
12906 i9xx_misc_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020012907 else if (IS_PINEVIEW(dev))
12908 dev_priv->display.get_display_clock_speed =
12909 pnv_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070012910 else if (IS_I915GM(dev))
12911 dev_priv->display.get_display_clock_speed =
12912 i915gm_get_display_clock_speed;
12913 else if (IS_I865G(dev))
12914 dev_priv->display.get_display_clock_speed =
12915 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +020012916 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070012917 dev_priv->display.get_display_clock_speed =
12918 i855_get_display_clock_speed;
12919 else /* 852, 830 */
12920 dev_priv->display.get_display_clock_speed =
12921 i830_get_display_clock_speed;
12922
Jani Nikula7c10a2b2014-10-27 16:26:43 +020012923 if (IS_GEN5(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053012924 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053012925 } else if (IS_GEN6(dev)) {
12926 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053012927 } else if (IS_IVYBRIDGE(dev)) {
12928 /* FIXME: detect B0+ stepping and use auto training */
12929 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053012930 dev_priv->display.modeset_global_resources =
12931 ivb_modeset_global_resources;
Paulo Zanoni059b2fe2014-09-02 16:53:57 -030012932 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053012933 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Jesse Barnes30a970c2013-11-04 13:48:12 -080012934 } else if (IS_VALLEYVIEW(dev)) {
12935 dev_priv->display.modeset_global_resources =
12936 valleyview_modeset_global_resources;
Jesse Barnese70236a2009-09-21 10:42:27 -070012937 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070012938
12939 /* Default just returns -ENODEV to indicate unsupported */
12940 dev_priv->display.queue_flip = intel_default_queue_flip;
12941
12942 switch (INTEL_INFO(dev)->gen) {
12943 case 2:
12944 dev_priv->display.queue_flip = intel_gen2_queue_flip;
12945 break;
12946
12947 case 3:
12948 dev_priv->display.queue_flip = intel_gen3_queue_flip;
12949 break;
12950
12951 case 4:
12952 case 5:
12953 dev_priv->display.queue_flip = intel_gen4_queue_flip;
12954 break;
12955
12956 case 6:
12957 dev_priv->display.queue_flip = intel_gen6_queue_flip;
12958 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070012959 case 7:
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070012960 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
Jesse Barnes7c9017e2011-06-16 12:18:54 -070012961 dev_priv->display.queue_flip = intel_gen7_queue_flip;
12962 break;
Damien Lespiau830c81d2014-11-13 17:51:46 +000012963 case 9:
12964 dev_priv->display.queue_flip = intel_gen9_queue_flip;
12965 break;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070012966 }
Jani Nikula7bd688c2013-11-08 16:48:56 +020012967
12968 intel_panel_init_backlight_funcs(dev);
Ville Syrjäläe39b9992014-09-04 14:53:14 +030012969
12970 mutex_init(&dev_priv->pps_mutex);
Jesse Barnese70236a2009-09-21 10:42:27 -070012971}
12972
Jesse Barnesb690e962010-07-19 13:53:12 -070012973/*
12974 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
12975 * resume, or other times. This quirk makes sure that's the case for
12976 * affected systems.
12977 */
Akshay Joshi0206e352011-08-16 15:34:10 -040012978static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070012979{
12980 struct drm_i915_private *dev_priv = dev->dev_private;
12981
12982 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020012983 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070012984}
12985
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030012986static void quirk_pipeb_force(struct drm_device *dev)
12987{
12988 struct drm_i915_private *dev_priv = dev->dev_private;
12989
12990 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
12991 DRM_INFO("applying pipe b force quirk\n");
12992}
12993
Keith Packard435793d2011-07-12 14:56:22 -070012994/*
12995 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
12996 */
12997static void quirk_ssc_force_disable(struct drm_device *dev)
12998{
12999 struct drm_i915_private *dev_priv = dev->dev_private;
13000 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020013001 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070013002}
13003
Carsten Emde4dca20e2012-03-15 15:56:26 +010013004/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010013005 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
13006 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010013007 */
13008static void quirk_invert_brightness(struct drm_device *dev)
13009{
13010 struct drm_i915_private *dev_priv = dev->dev_private;
13011 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020013012 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070013013}
13014
Scot Doyle9c72cc62014-07-03 23:27:50 +000013015/* Some VBT's incorrectly indicate no backlight is present */
13016static void quirk_backlight_present(struct drm_device *dev)
13017{
13018 struct drm_i915_private *dev_priv = dev->dev_private;
13019 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
13020 DRM_INFO("applying backlight present quirk\n");
13021}
13022
Jesse Barnesb690e962010-07-19 13:53:12 -070013023struct intel_quirk {
13024 int device;
13025 int subsystem_vendor;
13026 int subsystem_device;
13027 void (*hook)(struct drm_device *dev);
13028};
13029
Egbert Eich5f85f1762012-10-14 15:46:38 +020013030/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
13031struct intel_dmi_quirk {
13032 void (*hook)(struct drm_device *dev);
13033 const struct dmi_system_id (*dmi_id_list)[];
13034};
13035
13036static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
13037{
13038 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
13039 return 1;
13040}
13041
13042static const struct intel_dmi_quirk intel_dmi_quirks[] = {
13043 {
13044 .dmi_id_list = &(const struct dmi_system_id[]) {
13045 {
13046 .callback = intel_dmi_reverse_brightness,
13047 .ident = "NCR Corporation",
13048 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
13049 DMI_MATCH(DMI_PRODUCT_NAME, ""),
13050 },
13051 },
13052 { } /* terminating entry */
13053 },
13054 .hook = quirk_invert_brightness,
13055 },
13056};
13057
Ben Widawskyc43b5632012-04-16 14:07:40 -070013058static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070013059 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -040013060 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -070013061
Jesse Barnesb690e962010-07-19 13:53:12 -070013062 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
13063 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
13064
Jesse Barnesb690e962010-07-19 13:53:12 -070013065 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
13066 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
13067
Ville Syrjälä5f080c02014-08-15 01:22:06 +030013068 /* 830 needs to leave pipe A & dpll A up */
13069 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
13070
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030013071 /* 830 needs to leave pipe B & dpll B up */
13072 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
13073
Keith Packard435793d2011-07-12 14:56:22 -070013074 /* Lenovo U160 cannot use SSC on LVDS */
13075 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020013076
13077 /* Sony Vaio Y cannot use SSC on LVDS */
13078 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010013079
Alexander van Heukelumbe505f62013-12-28 21:00:39 +010013080 /* Acer Aspire 5734Z must invert backlight brightness */
13081 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
13082
13083 /* Acer/eMachines G725 */
13084 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
13085
13086 /* Acer/eMachines e725 */
13087 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
13088
13089 /* Acer/Packard Bell NCL20 */
13090 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
13091
13092 /* Acer Aspire 4736Z */
13093 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jani Nikula0f540c32014-01-13 17:30:34 +020013094
13095 /* Acer Aspire 5336 */
13096 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
Scot Doyle2e93a1a2014-07-03 23:27:51 +000013097
13098 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
13099 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
Scot Doyled4967d82014-07-03 23:27:52 +000013100
Scot Doyledfb3d47b2014-08-21 16:08:02 +000013101 /* Acer C720 Chromebook (Core i3 4005U) */
13102 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
13103
jens steinb2a96012014-10-28 20:25:53 +010013104 /* Apple Macbook 2,1 (Core 2 T7400) */
13105 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
13106
Scot Doyled4967d82014-07-03 23:27:52 +000013107 /* Toshiba CB35 Chromebook (Celeron 2955U) */
13108 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
Scot Doyle724cb062014-07-11 22:16:30 +000013109
13110 /* HP Chromebook 14 (Celeron 2955U) */
13111 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
Jani Nikulacf6f0af2015-02-19 10:53:39 +020013112
13113 /* Dell Chromebook 11 */
13114 { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present },
Jesse Barnesb690e962010-07-19 13:53:12 -070013115};
13116
13117static void intel_init_quirks(struct drm_device *dev)
13118{
13119 struct pci_dev *d = dev->pdev;
13120 int i;
13121
13122 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
13123 struct intel_quirk *q = &intel_quirks[i];
13124
13125 if (d->device == q->device &&
13126 (d->subsystem_vendor == q->subsystem_vendor ||
13127 q->subsystem_vendor == PCI_ANY_ID) &&
13128 (d->subsystem_device == q->subsystem_device ||
13129 q->subsystem_device == PCI_ANY_ID))
13130 q->hook(dev);
13131 }
Egbert Eich5f85f1762012-10-14 15:46:38 +020013132 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
13133 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
13134 intel_dmi_quirks[i].hook(dev);
13135 }
Jesse Barnesb690e962010-07-19 13:53:12 -070013136}
13137
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013138/* Disable the VGA plane that we never use */
13139static void i915_disable_vga(struct drm_device *dev)
13140{
13141 struct drm_i915_private *dev_priv = dev->dev_private;
13142 u8 sr1;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020013143 u32 vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013144
Ville Syrjälä2b37c612014-01-22 21:32:38 +020013145 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013146 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070013147 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013148 sr1 = inb(VGA_SR_DATA);
13149 outb(sr1 | 1<<5, VGA_SR_DATA);
13150 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
13151 udelay(300);
13152
Ville Syrjälä01f5a622014-12-16 18:38:37 +020013153 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013154 POSTING_READ(vga_reg);
13155}
13156
Daniel Vetterf8175862012-04-10 15:50:11 +020013157void intel_modeset_init_hw(struct drm_device *dev)
13158{
Eugeni Dodonova8f78b52012-06-28 15:55:35 -030013159 intel_prepare_ddi(dev);
13160
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +030013161 if (IS_VALLEYVIEW(dev))
13162 vlv_update_cdclk(dev);
13163
Daniel Vetterf8175862012-04-10 15:50:11 +020013164 intel_init_clock_gating(dev);
13165
Daniel Vetter8090c6b2012-06-24 16:42:32 +020013166 intel_enable_gt_powersave(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020013167}
13168
Jesse Barnes79e53942008-11-07 14:24:08 -080013169void intel_modeset_init(struct drm_device *dev)
13170{
Jesse Barnes652c3932009-08-17 13:31:43 -070013171 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau1fe47782014-03-03 17:31:47 +000013172 int sprite, ret;
Damien Lespiau8cc87b72014-03-03 17:31:44 +000013173 enum pipe pipe;
Jesse Barnes46f297f2014-03-07 08:57:48 -080013174 struct intel_crtc *crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -080013175
13176 drm_mode_config_init(dev);
13177
13178 dev->mode_config.min_width = 0;
13179 dev->mode_config.min_height = 0;
13180
Dave Airlie019d96c2011-09-29 16:20:42 +010013181 dev->mode_config.preferred_depth = 24;
13182 dev->mode_config.prefer_shadow = 1;
13183
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020013184 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080013185
Jesse Barnesb690e962010-07-19 13:53:12 -070013186 intel_init_quirks(dev);
13187
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030013188 intel_init_pm(dev);
13189
Ben Widawskye3c74752013-04-05 13:12:39 -070013190 if (INTEL_INFO(dev)->num_pipes == 0)
13191 return;
13192
Jesse Barnese70236a2009-09-21 10:42:27 -070013193 intel_init_display(dev);
Jani Nikula7c10a2b2014-10-27 16:26:43 +020013194 intel_init_audio(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070013195
Chris Wilsona6c45cf2010-09-17 00:32:17 +010013196 if (IS_GEN2(dev)) {
13197 dev->mode_config.max_width = 2048;
13198 dev->mode_config.max_height = 2048;
13199 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070013200 dev->mode_config.max_width = 4096;
13201 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080013202 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010013203 dev->mode_config.max_width = 8192;
13204 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080013205 }
Damien Lespiau068be562014-03-28 14:17:49 +000013206
Ville Syrjälädc41c152014-08-13 11:57:05 +030013207 if (IS_845G(dev) || IS_I865G(dev)) {
13208 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
13209 dev->mode_config.cursor_height = 1023;
13210 } else if (IS_GEN2(dev)) {
Damien Lespiau068be562014-03-28 14:17:49 +000013211 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
13212 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
13213 } else {
13214 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
13215 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
13216 }
13217
Ben Widawsky5d4545a2013-01-17 12:45:15 -080013218 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080013219
Zhao Yakui28c97732009-10-09 11:39:41 +080013220 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070013221 INTEL_INFO(dev)->num_pipes,
13222 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080013223
Damien Lespiau055e3932014-08-18 13:49:10 +010013224 for_each_pipe(dev_priv, pipe) {
Damien Lespiau8cc87b72014-03-03 17:31:44 +000013225 intel_crtc_init(dev, pipe);
Damien Lespiau1fe47782014-03-03 17:31:47 +000013226 for_each_sprite(pipe, sprite) {
13227 ret = intel_plane_init(dev, pipe, sprite);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070013228 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030013229 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +000013230 pipe_name(pipe), sprite_name(pipe, sprite), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070013231 }
Jesse Barnes79e53942008-11-07 14:24:08 -080013232 }
13233
Jesse Barnesf42bb702013-12-16 16:34:23 -080013234 intel_init_dpio(dev);
13235
Daniel Vettere72f9fb2013-06-05 13:34:06 +020013236 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013237
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013238 /* Just disable it once at startup */
13239 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080013240 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000013241
13242 /* Just in case the BIOS is doing something questionable. */
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020013243 intel_fbc_disable(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080013244
Daniel Vetter6e9f7982014-05-29 23:54:47 +020013245 drm_modeset_lock_all(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080013246 intel_modeset_setup_hw_state(dev, false);
Daniel Vetter6e9f7982014-05-29 23:54:47 +020013247 drm_modeset_unlock_all(dev);
Jesse Barnes46f297f2014-03-07 08:57:48 -080013248
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013249 for_each_intel_crtc(dev, crtc) {
Jesse Barnes46f297f2014-03-07 08:57:48 -080013250 if (!crtc->active)
13251 continue;
13252
Jesse Barnes46f297f2014-03-07 08:57:48 -080013253 /*
Jesse Barnes46f297f2014-03-07 08:57:48 -080013254 * Note that reserving the BIOS fb up front prevents us
13255 * from stuffing other stolen allocations like the ring
13256 * on top. This prevents some ugliness at boot time, and
13257 * can even allow for smooth boot transitions if the BIOS
13258 * fb is large enough for the active pipe configuration.
13259 */
Damien Lespiau5724dbd2015-01-20 12:51:52 +000013260 if (dev_priv->display.get_initial_plane_config) {
13261 dev_priv->display.get_initial_plane_config(crtc,
Jesse Barnes46f297f2014-03-07 08:57:48 -080013262 &crtc->plane_config);
13263 /*
13264 * If the fb is shared between multiple heads, we'll
13265 * just get the first one.
13266 */
Jesse Barnes484b41d2014-03-07 08:57:55 -080013267 intel_find_plane_obj(crtc, &crtc->plane_config);
Jesse Barnes46f297f2014-03-07 08:57:48 -080013268 }
Jesse Barnes46f297f2014-03-07 08:57:48 -080013269 }
Chris Wilson2c7111d2011-03-29 10:40:27 +010013270}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080013271
Daniel Vetter7fad7982012-07-04 17:51:47 +020013272static void intel_enable_pipe_a(struct drm_device *dev)
13273{
13274 struct intel_connector *connector;
13275 struct drm_connector *crt = NULL;
13276 struct intel_load_detect_pipe load_detect_temp;
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030013277 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
Daniel Vetter7fad7982012-07-04 17:51:47 +020013278
13279 /* We can't just switch on the pipe A, we need to set things up with a
13280 * proper mode and output configuration. As a gross hack, enable pipe A
13281 * by enabling the load detect pipe once. */
13282 list_for_each_entry(connector,
13283 &dev->mode_config.connector_list,
13284 base.head) {
13285 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
13286 crt = &connector->base;
13287 break;
13288 }
13289 }
13290
13291 if (!crt)
13292 return;
13293
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030013294 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
13295 intel_release_load_detect_pipe(crt, &load_detect_temp);
Daniel Vetter7fad7982012-07-04 17:51:47 +020013296}
13297
Daniel Vetterfa555832012-10-10 23:14:00 +020013298static bool
13299intel_check_plane_mapping(struct intel_crtc *crtc)
13300{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070013301 struct drm_device *dev = crtc->base.dev;
13302 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020013303 u32 reg, val;
13304
Ben Widawsky7eb552a2013-03-13 14:05:41 -070013305 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020013306 return true;
13307
13308 reg = DSPCNTR(!crtc->plane);
13309 val = I915_READ(reg);
13310
13311 if ((val & DISPLAY_PLANE_ENABLE) &&
13312 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
13313 return false;
13314
13315 return true;
13316}
13317
Daniel Vetter24929352012-07-02 20:28:59 +020013318static void intel_sanitize_crtc(struct intel_crtc *crtc)
13319{
13320 struct drm_device *dev = crtc->base.dev;
13321 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020013322 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +020013323
Daniel Vetter24929352012-07-02 20:28:59 +020013324 /* Clear any frame start delays used for debugging left by the BIOS */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013325 reg = PIPECONF(crtc->config->cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +020013326 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
13327
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030013328 /* restore vblank interrupts to correct state */
Ville Syrjäläd297e102014-08-06 14:50:01 +030013329 if (crtc->active) {
13330 update_scanline_offset(crtc);
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030013331 drm_vblank_on(dev, crtc->pipe);
Ville Syrjäläd297e102014-08-06 14:50:01 +030013332 } else
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030013333 drm_vblank_off(dev, crtc->pipe);
13334
Daniel Vetter24929352012-07-02 20:28:59 +020013335 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020013336 * disable the crtc (and hence change the state) if it is wrong. Note
13337 * that gen4+ has a fixed plane -> pipe mapping. */
13338 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020013339 struct intel_connector *connector;
13340 bool plane;
13341
Daniel Vetter24929352012-07-02 20:28:59 +020013342 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
13343 crtc->base.base.id);
13344
13345 /* Pipe has the wrong plane attached and the plane is active.
13346 * Temporarily change the plane mapping and disable everything
13347 * ... */
13348 plane = crtc->plane;
13349 crtc->plane = !plane;
Daniel Vetter9c8958b2014-07-14 19:35:31 +020013350 crtc->primary_enabled = true;
Daniel Vetter24929352012-07-02 20:28:59 +020013351 dev_priv->display.crtc_disable(&crtc->base);
13352 crtc->plane = plane;
13353
13354 /* ... and break all links. */
13355 list_for_each_entry(connector, &dev->mode_config.connector_list,
13356 base.head) {
13357 if (connector->encoder->base.crtc != &crtc->base)
13358 continue;
13359
Egbert Eich7f1950f2014-04-25 10:56:22 +020013360 connector->base.dpms = DRM_MODE_DPMS_OFF;
13361 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020013362 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020013363 /* multiple connectors may have the same encoder:
13364 * handle them and break crtc link separately */
13365 list_for_each_entry(connector, &dev->mode_config.connector_list,
13366 base.head)
13367 if (connector->encoder->base.crtc == &crtc->base) {
13368 connector->encoder->base.crtc = NULL;
13369 connector->encoder->connectors_active = false;
13370 }
Daniel Vetter24929352012-07-02 20:28:59 +020013371
13372 WARN_ON(crtc->active);
13373 crtc->base.enabled = false;
13374 }
Daniel Vetter24929352012-07-02 20:28:59 +020013375
Daniel Vetter7fad7982012-07-04 17:51:47 +020013376 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
13377 crtc->pipe == PIPE_A && !crtc->active) {
13378 /* BIOS forgot to enable pipe A, this mostly happens after
13379 * resume. Force-enable the pipe to fix this, the update_dpms
13380 * call below we restore the pipe to the right state, but leave
13381 * the required bits on. */
13382 intel_enable_pipe_a(dev);
13383 }
13384
Daniel Vetter24929352012-07-02 20:28:59 +020013385 /* Adjust the state of the output pipe according to whether we
13386 * have active connectors/encoders. */
13387 intel_crtc_update_dpms(&crtc->base);
13388
13389 if (crtc->active != crtc->base.enabled) {
13390 struct intel_encoder *encoder;
13391
13392 /* This can happen either due to bugs in the get_hw_state
13393 * functions or because the pipe is force-enabled due to the
13394 * pipe A quirk. */
13395 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
13396 crtc->base.base.id,
13397 crtc->base.enabled ? "enabled" : "disabled",
13398 crtc->active ? "enabled" : "disabled");
13399
13400 crtc->base.enabled = crtc->active;
13401
13402 /* Because we only establish the connector -> encoder ->
13403 * crtc links if something is active, this means the
13404 * crtc is now deactivated. Break the links. connector
13405 * -> encoder links are only establish when things are
13406 * actually up, hence no need to break them. */
13407 WARN_ON(crtc->active);
13408
13409 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
13410 WARN_ON(encoder->connectors_active);
13411 encoder->base.crtc = NULL;
13412 }
13413 }
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020013414
Ville Syrjäläa3ed6aa2014-09-03 14:09:52 +030013415 if (crtc->active || HAS_GMCH_DISPLAY(dev)) {
Daniel Vetter4cc31482014-03-24 00:01:41 +010013416 /*
13417 * We start out with underrun reporting disabled to avoid races.
13418 * For correct bookkeeping mark this on active crtcs.
13419 *
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020013420 * Also on gmch platforms we dont have any hardware bits to
13421 * disable the underrun reporting. Which means we need to start
13422 * out with underrun reporting disabled also on inactive pipes,
13423 * since otherwise we'll complain about the garbage we read when
13424 * e.g. coming up after runtime pm.
13425 *
Daniel Vetter4cc31482014-03-24 00:01:41 +010013426 * No protection against concurrent access is required - at
13427 * worst a fifo underrun happens which also sets this to false.
13428 */
13429 crtc->cpu_fifo_underrun_disabled = true;
13430 crtc->pch_fifo_underrun_disabled = true;
13431 }
Daniel Vetter24929352012-07-02 20:28:59 +020013432}
13433
13434static void intel_sanitize_encoder(struct intel_encoder *encoder)
13435{
13436 struct intel_connector *connector;
13437 struct drm_device *dev = encoder->base.dev;
13438
13439 /* We need to check both for a crtc link (meaning that the
13440 * encoder is active and trying to read from a pipe) and the
13441 * pipe itself being active. */
13442 bool has_active_crtc = encoder->base.crtc &&
13443 to_intel_crtc(encoder->base.crtc)->active;
13444
13445 if (encoder->connectors_active && !has_active_crtc) {
13446 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
13447 encoder->base.base.id,
Jani Nikula8e329a02014-06-03 14:56:21 +030013448 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020013449
13450 /* Connector is active, but has no active pipe. This is
13451 * fallout from our resume register restoring. Disable
13452 * the encoder manually again. */
13453 if (encoder->base.crtc) {
13454 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
13455 encoder->base.base.id,
Jani Nikula8e329a02014-06-03 14:56:21 +030013456 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020013457 encoder->disable(encoder);
Ville Syrjäläa62d1492014-06-28 02:04:01 +030013458 if (encoder->post_disable)
13459 encoder->post_disable(encoder);
Daniel Vetter24929352012-07-02 20:28:59 +020013460 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020013461 encoder->base.crtc = NULL;
13462 encoder->connectors_active = false;
Daniel Vetter24929352012-07-02 20:28:59 +020013463
13464 /* Inconsistent output/port/pipe state happens presumably due to
13465 * a bug in one of the get_hw_state functions. Or someplace else
13466 * in our code, like the register restore mess on resume. Clamp
13467 * things to off as a safer default. */
13468 list_for_each_entry(connector,
13469 &dev->mode_config.connector_list,
13470 base.head) {
13471 if (connector->encoder != encoder)
13472 continue;
Egbert Eich7f1950f2014-04-25 10:56:22 +020013473 connector->base.dpms = DRM_MODE_DPMS_OFF;
13474 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020013475 }
13476 }
13477 /* Enabled encoders without active connectors will be fixed in
13478 * the crtc fixup. */
13479}
13480
Imre Deak04098752014-02-18 00:02:16 +020013481void i915_redisable_vga_power_on(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013482{
13483 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020013484 u32 vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013485
Imre Deak04098752014-02-18 00:02:16 +020013486 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
13487 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
13488 i915_disable_vga(dev);
13489 }
13490}
13491
13492void i915_redisable_vga(struct drm_device *dev)
13493{
13494 struct drm_i915_private *dev_priv = dev->dev_private;
13495
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030013496 /* This function can be called both from intel_modeset_setup_hw_state or
13497 * at a very early point in our resume sequence, where the power well
13498 * structures are not yet restored. Since this function is at a very
13499 * paranoid "someone might have enabled VGA while we were not looking"
13500 * level, just check if the power well is enabled instead of trying to
13501 * follow the "don't touch the power well if we don't need it" policy
13502 * the rest of the driver uses. */
Daniel Vetterf458ebb2014-09-30 10:56:39 +020013503 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_VGA))
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030013504 return;
13505
Imre Deak04098752014-02-18 00:02:16 +020013506 i915_redisable_vga_power_on(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013507}
13508
Ville Syrjälä98ec7732014-04-30 17:43:01 +030013509static bool primary_get_hw_state(struct intel_crtc *crtc)
13510{
13511 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
13512
13513 if (!crtc->active)
13514 return false;
13515
13516 return I915_READ(DSPCNTR(crtc->plane)) & DISPLAY_PLANE_ENABLE;
13517}
13518
Daniel Vetter30e984d2013-06-05 13:34:17 +020013519static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020013520{
13521 struct drm_i915_private *dev_priv = dev->dev_private;
13522 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020013523 struct intel_crtc *crtc;
13524 struct intel_encoder *encoder;
13525 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020013526 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020013527
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013528 for_each_intel_crtc(dev, crtc) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013529 memset(crtc->config, 0, sizeof(*crtc->config));
Daniel Vetter3b117c82013-04-17 20:15:07 +020013530
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013531 crtc->config->quirks |= PIPE_CONFIG_QUIRK_INHERITED_MODE;
Daniel Vetter99535992014-04-13 12:00:33 +020013532
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010013533 crtc->active = dev_priv->display.get_pipe_config(crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013534 crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020013535
13536 crtc->base.enabled = crtc->active;
Ville Syrjälä98ec7732014-04-30 17:43:01 +030013537 crtc->primary_enabled = primary_get_hw_state(crtc);
Daniel Vetter24929352012-07-02 20:28:59 +020013538
13539 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
13540 crtc->base.base.id,
13541 crtc->active ? "enabled" : "disabled");
13542 }
13543
Daniel Vetter53589012013-06-05 13:34:16 +020013544 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13545 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13546
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013547 pll->on = pll->get_hw_state(dev_priv, pll,
13548 &pll->config.hw_state);
Daniel Vetter53589012013-06-05 13:34:16 +020013549 pll->active = 0;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013550 pll->config.crtc_mask = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013551 for_each_intel_crtc(dev, crtc) {
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020013552 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll) {
Daniel Vetter53589012013-06-05 13:34:16 +020013553 pll->active++;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013554 pll->config.crtc_mask |= 1 << crtc->pipe;
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020013555 }
Daniel Vetter53589012013-06-05 13:34:16 +020013556 }
Daniel Vetter53589012013-06-05 13:34:16 +020013557
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020013558 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013559 pll->name, pll->config.crtc_mask, pll->on);
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030013560
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013561 if (pll->config.crtc_mask)
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030013562 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
Daniel Vetter53589012013-06-05 13:34:16 +020013563 }
13564
Damien Lespiaub2784e12014-08-05 11:29:37 +010013565 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020013566 pipe = 0;
13567
13568 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -070013569 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
13570 encoder->base.crtc = &crtc->base;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013571 encoder->get_config(encoder, crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020013572 } else {
13573 encoder->base.crtc = NULL;
13574 }
13575
13576 encoder->connectors_active = false;
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010013577 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
Daniel Vetter24929352012-07-02 20:28:59 +020013578 encoder->base.base.id,
Jani Nikula8e329a02014-06-03 14:56:21 +030013579 encoder->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020013580 encoder->base.crtc ? "enabled" : "disabled",
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010013581 pipe_name(pipe));
Daniel Vetter24929352012-07-02 20:28:59 +020013582 }
13583
13584 list_for_each_entry(connector, &dev->mode_config.connector_list,
13585 base.head) {
13586 if (connector->get_hw_state(connector)) {
13587 connector->base.dpms = DRM_MODE_DPMS_ON;
13588 connector->encoder->connectors_active = true;
13589 connector->base.encoder = &connector->encoder->base;
13590 } else {
13591 connector->base.dpms = DRM_MODE_DPMS_OFF;
13592 connector->base.encoder = NULL;
13593 }
13594 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
13595 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030013596 connector->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020013597 connector->base.encoder ? "enabled" : "disabled");
13598 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020013599}
13600
13601/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
13602 * and i915 state tracking structures. */
13603void intel_modeset_setup_hw_state(struct drm_device *dev,
13604 bool force_restore)
13605{
13606 struct drm_i915_private *dev_priv = dev->dev_private;
13607 enum pipe pipe;
Daniel Vetter30e984d2013-06-05 13:34:17 +020013608 struct intel_crtc *crtc;
13609 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020013610 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020013611
13612 intel_modeset_readout_hw_state(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020013613
Jesse Barnesbabea612013-06-26 18:57:38 +030013614 /*
13615 * Now that we have the config, copy it to each CRTC struct
13616 * Note that this could go away if we move to using crtc_config
13617 * checking everywhere.
13618 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013619 for_each_intel_crtc(dev, crtc) {
Jani Nikulad330a952014-01-21 11:24:25 +020013620 if (crtc->active && i915.fastboot) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013621 intel_mode_from_pipe_config(&crtc->base.mode,
13622 crtc->config);
Jesse Barnesbabea612013-06-26 18:57:38 +030013623 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
13624 crtc->base.base.id);
13625 drm_mode_debug_printmodeline(&crtc->base.mode);
13626 }
13627 }
13628
Daniel Vetter24929352012-07-02 20:28:59 +020013629 /* HW state is read out, now we need to sanitize this mess. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010013630 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020013631 intel_sanitize_encoder(encoder);
13632 }
13633
Damien Lespiau055e3932014-08-18 13:49:10 +010013634 for_each_pipe(dev_priv, pipe) {
Daniel Vetter24929352012-07-02 20:28:59 +020013635 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
13636 intel_sanitize_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013637 intel_dump_pipe_config(crtc, crtc->config,
13638 "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020013639 }
Daniel Vetter9a935852012-07-05 22:34:27 +020013640
Daniel Vetter35c95372013-07-17 06:55:04 +020013641 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13642 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13643
13644 if (!pll->on || pll->active)
13645 continue;
13646
13647 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
13648
13649 pll->disable(dev_priv, pll);
13650 pll->on = false;
13651 }
13652
Pradeep Bhat30789992014-11-04 17:06:45 +000013653 if (IS_GEN9(dev))
13654 skl_wm_get_hw_state(dev);
13655 else if (HAS_PCH_SPLIT(dev))
Ville Syrjälä243e6a42013-10-14 14:55:24 +030013656 ilk_wm_get_hw_state(dev);
13657
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010013658 if (force_restore) {
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030013659 i915_redisable_vga(dev);
13660
Daniel Vetterf30da182013-04-11 20:22:50 +020013661 /*
13662 * We need to use raw interfaces for restoring state to avoid
13663 * checking (bogus) intermediate states.
13664 */
Damien Lespiau055e3932014-08-18 13:49:10 +010013665 for_each_pipe(dev_priv, pipe) {
Jesse Barnesb5644d02013-03-26 13:25:27 -070013666 struct drm_crtc *crtc =
13667 dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vetterf30da182013-04-11 20:22:50 +020013668
Jesse Barnes7f271262014-11-05 14:26:06 -080013669 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
13670 crtc->primary->fb);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010013671 }
13672 } else {
13673 intel_modeset_update_staged_output_state(dev);
13674 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013675
13676 intel_modeset_check_state(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +010013677}
13678
13679void intel_modeset_gem_init(struct drm_device *dev)
13680{
Jesse Barnes92122782014-10-09 12:57:42 -070013681 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes484b41d2014-03-07 08:57:55 -080013682 struct drm_crtc *c;
Matt Roper2ff8fde2014-07-08 07:50:07 -070013683 struct drm_i915_gem_object *obj;
Jesse Barnes484b41d2014-03-07 08:57:55 -080013684
Imre Deakae484342014-03-31 15:10:44 +030013685 mutex_lock(&dev->struct_mutex);
13686 intel_init_gt_powersave(dev);
13687 mutex_unlock(&dev->struct_mutex);
13688
Jesse Barnes92122782014-10-09 12:57:42 -070013689 /*
13690 * There may be no VBT; and if the BIOS enabled SSC we can
13691 * just keep using it to avoid unnecessary flicker. Whereas if the
13692 * BIOS isn't using it, don't assume it will work even if the VBT
13693 * indicates as much.
13694 */
13695 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
13696 dev_priv->vbt.lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
13697 DREF_SSC1_ENABLE);
13698
Chris Wilson1833b132012-05-09 11:56:28 +010013699 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020013700
13701 intel_setup_overlay(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -080013702
13703 /*
13704 * Make sure any fbs we allocated at startup are properly
13705 * pinned & fenced. When we do the allocation it's too early
13706 * for this.
13707 */
13708 mutex_lock(&dev->struct_mutex);
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010013709 for_each_crtc(dev, c) {
Matt Roper2ff8fde2014-07-08 07:50:07 -070013710 obj = intel_fb_obj(c->primary->fb);
13711 if (obj == NULL)
Jesse Barnes484b41d2014-03-07 08:57:55 -080013712 continue;
13713
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +000013714 if (intel_pin_and_fence_fb_obj(c->primary,
13715 c->primary->fb,
13716 NULL)) {
Jesse Barnes484b41d2014-03-07 08:57:55 -080013717 DRM_ERROR("failed to pin boot fb on pipe %d\n",
13718 to_intel_crtc(c)->pipe);
Dave Airlie66e514c2014-04-03 07:51:54 +100013719 drm_framebuffer_unreference(c->primary->fb);
13720 c->primary->fb = NULL;
Jesse Barnes484b41d2014-03-07 08:57:55 -080013721 }
13722 }
13723 mutex_unlock(&dev->struct_mutex);
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020013724
13725 intel_backlight_register(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080013726}
13727
Imre Deak4932e2c2014-02-11 17:12:48 +020013728void intel_connector_unregister(struct intel_connector *intel_connector)
13729{
13730 struct drm_connector *connector = &intel_connector->base;
13731
13732 intel_panel_destroy_backlight(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +010013733 drm_connector_unregister(connector);
Imre Deak4932e2c2014-02-11 17:12:48 +020013734}
13735
Jesse Barnes79e53942008-11-07 14:24:08 -080013736void intel_modeset_cleanup(struct drm_device *dev)
13737{
Jesse Barnes652c3932009-08-17 13:31:43 -070013738 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid9255d52013-09-26 20:05:59 -030013739 struct drm_connector *connector;
Jesse Barnes652c3932009-08-17 13:31:43 -070013740
Imre Deak2eb52522014-11-19 15:30:05 +020013741 intel_disable_gt_powersave(dev);
13742
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020013743 intel_backlight_unregister(dev);
13744
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013745 /*
13746 * Interrupts and polling as the first thing to avoid creating havoc.
Imre Deak2eb52522014-11-19 15:30:05 +020013747 * Too much stuff here (turning of connectors, ...) would
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013748 * experience fancy races otherwise.
13749 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +020013750 intel_irq_uninstall(dev_priv);
Jesse Barneseb21b922014-06-20 11:57:33 -070013751
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013752 /*
13753 * Due to the hpd irq storm handling the hotplug work can re-arm the
13754 * poll handlers. Hence disable polling after hpd handling is shut down.
13755 */
Keith Packardf87ea762010-10-03 19:36:26 -070013756 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013757
Jesse Barnes652c3932009-08-17 13:31:43 -070013758 mutex_lock(&dev->struct_mutex);
13759
Jesse Barnes723bfd72010-10-07 16:01:13 -070013760 intel_unregister_dsm_handler();
13761
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020013762 intel_fbc_disable(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070013763
Daniel Vetter930ebb42012-06-29 23:32:16 +020013764 ironlake_teardown_rc6(dev);
13765
Kristian Høgsberg69341a52009-11-11 12:19:17 -050013766 mutex_unlock(&dev->struct_mutex);
13767
Chris Wilson1630fe72011-07-08 12:22:42 +010013768 /* flush any delayed tasks or pending work */
13769 flush_scheduled_work();
13770
Jani Nikuladb31af12013-11-08 16:48:53 +020013771 /* destroy the backlight and sysfs files before encoders/connectors */
13772 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Imre Deak4932e2c2014-02-11 17:12:48 +020013773 struct intel_connector *intel_connector;
13774
13775 intel_connector = to_intel_connector(connector);
13776 intel_connector->unregister(intel_connector);
Jani Nikuladb31af12013-11-08 16:48:53 +020013777 }
Paulo Zanonid9255d52013-09-26 20:05:59 -030013778
Jesse Barnes79e53942008-11-07 14:24:08 -080013779 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010013780
13781 intel_cleanup_overlay(dev);
Imre Deakae484342014-03-31 15:10:44 +030013782
13783 mutex_lock(&dev->struct_mutex);
13784 intel_cleanup_gt_powersave(dev);
13785 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080013786}
13787
Dave Airlie28d52042009-09-21 14:33:58 +100013788/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +080013789 * Return which encoder is currently attached for connector.
13790 */
Chris Wilsondf0e9242010-09-09 16:20:55 +010013791struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -080013792{
Chris Wilsondf0e9242010-09-09 16:20:55 +010013793 return &intel_attached_encoder(connector)->base;
13794}
Jesse Barnes79e53942008-11-07 14:24:08 -080013795
Chris Wilsondf0e9242010-09-09 16:20:55 +010013796void intel_connector_attach_encoder(struct intel_connector *connector,
13797 struct intel_encoder *encoder)
13798{
13799 connector->encoder = encoder;
13800 drm_mode_connector_attach_encoder(&connector->base,
13801 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080013802}
Dave Airlie28d52042009-09-21 14:33:58 +100013803
13804/*
13805 * set vga decode state - true == enable VGA decode
13806 */
13807int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
13808{
13809 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona885b3c2013-12-17 14:34:50 +000013810 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
Dave Airlie28d52042009-09-21 14:33:58 +100013811 u16 gmch_ctrl;
13812
Chris Wilson75fa0412014-02-07 18:37:02 -020013813 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
13814 DRM_ERROR("failed to read control word\n");
13815 return -EIO;
13816 }
13817
Chris Wilsonc0cc8a52014-02-07 18:37:03 -020013818 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
13819 return 0;
13820
Dave Airlie28d52042009-09-21 14:33:58 +100013821 if (state)
13822 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
13823 else
13824 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
Chris Wilson75fa0412014-02-07 18:37:02 -020013825
13826 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
13827 DRM_ERROR("failed to write control word\n");
13828 return -EIO;
13829 }
13830
Dave Airlie28d52042009-09-21 14:33:58 +100013831 return 0;
13832}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013833
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013834struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030013835
13836 u32 power_well_driver;
13837
Chris Wilson63b66e52013-08-08 15:12:06 +020013838 int num_transcoders;
13839
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013840 struct intel_cursor_error_state {
13841 u32 control;
13842 u32 position;
13843 u32 base;
13844 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010013845 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013846
13847 struct intel_pipe_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020013848 bool power_domain_on;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013849 u32 source;
Imre Deakf301b1e2014-04-18 15:55:04 +030013850 u32 stat;
Damien Lespiau52331302012-08-15 19:23:25 +010013851 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013852
13853 struct intel_plane_error_state {
13854 u32 control;
13855 u32 stride;
13856 u32 size;
13857 u32 pos;
13858 u32 addr;
13859 u32 surface;
13860 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010013861 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020013862
13863 struct intel_transcoder_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020013864 bool power_domain_on;
Chris Wilson63b66e52013-08-08 15:12:06 +020013865 enum transcoder cpu_transcoder;
13866
13867 u32 conf;
13868
13869 u32 htotal;
13870 u32 hblank;
13871 u32 hsync;
13872 u32 vtotal;
13873 u32 vblank;
13874 u32 vsync;
13875 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013876};
13877
13878struct intel_display_error_state *
13879intel_display_capture_error_state(struct drm_device *dev)
13880{
Jani Nikulafbee40d2014-03-31 14:27:18 +030013881 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013882 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020013883 int transcoders[] = {
13884 TRANSCODER_A,
13885 TRANSCODER_B,
13886 TRANSCODER_C,
13887 TRANSCODER_EDP,
13888 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013889 int i;
13890
Chris Wilson63b66e52013-08-08 15:12:06 +020013891 if (INTEL_INFO(dev)->num_pipes == 0)
13892 return NULL;
13893
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020013894 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013895 if (error == NULL)
13896 return NULL;
13897
Imre Deak190be112013-11-25 17:15:31 +020013898 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030013899 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
13900
Damien Lespiau055e3932014-08-18 13:49:10 +010013901 for_each_pipe(dev_priv, i) {
Imre Deakddf9c532013-11-27 22:02:02 +020013902 error->pipe[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020013903 __intel_display_power_is_enabled(dev_priv,
13904 POWER_DOMAIN_PIPE(i));
Imre Deakddf9c532013-11-27 22:02:02 +020013905 if (!error->pipe[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020013906 continue;
13907
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030013908 error->cursor[i].control = I915_READ(CURCNTR(i));
13909 error->cursor[i].position = I915_READ(CURPOS(i));
13910 error->cursor[i].base = I915_READ(CURBASE(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013911
13912 error->plane[i].control = I915_READ(DSPCNTR(i));
13913 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030013914 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030013915 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030013916 error->plane[i].pos = I915_READ(DSPPOS(i));
13917 }
Paulo Zanonica291362013-03-06 20:03:14 -030013918 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
13919 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013920 if (INTEL_INFO(dev)->gen >= 4) {
13921 error->plane[i].surface = I915_READ(DSPSURF(i));
13922 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
13923 }
13924
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013925 error->pipe[i].source = I915_READ(PIPESRC(i));
Imre Deakf301b1e2014-04-18 15:55:04 +030013926
Sonika Jindal3abfce72014-07-21 15:23:43 +053013927 if (HAS_GMCH_DISPLAY(dev))
Imre Deakf301b1e2014-04-18 15:55:04 +030013928 error->pipe[i].stat = I915_READ(PIPESTAT(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020013929 }
13930
13931 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
13932 if (HAS_DDI(dev_priv->dev))
13933 error->num_transcoders++; /* Account for eDP. */
13934
13935 for (i = 0; i < error->num_transcoders; i++) {
13936 enum transcoder cpu_transcoder = transcoders[i];
13937
Imre Deakddf9c532013-11-27 22:02:02 +020013938 error->transcoder[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020013939 __intel_display_power_is_enabled(dev_priv,
Paulo Zanoni38cc1da2013-12-20 15:09:41 -020013940 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020013941 if (!error->transcoder[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020013942 continue;
13943
Chris Wilson63b66e52013-08-08 15:12:06 +020013944 error->transcoder[i].cpu_transcoder = cpu_transcoder;
13945
13946 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
13947 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
13948 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
13949 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
13950 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
13951 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
13952 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013953 }
13954
13955 return error;
13956}
13957
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013958#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
13959
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013960void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013961intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013962 struct drm_device *dev,
13963 struct intel_display_error_state *error)
13964{
Damien Lespiau055e3932014-08-18 13:49:10 +010013965 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013966 int i;
13967
Chris Wilson63b66e52013-08-08 15:12:06 +020013968 if (!error)
13969 return;
13970
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013971 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Imre Deak190be112013-11-25 17:15:31 +020013972 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013973 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030013974 error->power_well_driver);
Damien Lespiau055e3932014-08-18 13:49:10 +010013975 for_each_pipe(dev_priv, i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013976 err_printf(m, "Pipe [%d]:\n", i);
Imre Deakddf9c532013-11-27 22:02:02 +020013977 err_printf(m, " Power: %s\n",
13978 error->pipe[i].power_domain_on ? "on" : "off");
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013979 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Imre Deakf301b1e2014-04-18 15:55:04 +030013980 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013981
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013982 err_printf(m, "Plane [%d]:\n", i);
13983 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
13984 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030013985 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013986 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
13987 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030013988 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030013989 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013990 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013991 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013992 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
13993 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013994 }
13995
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013996 err_printf(m, "Cursor [%d]:\n", i);
13997 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
13998 err_printf(m, " POS: %08x\n", error->cursor[i].position);
13999 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014000 }
Chris Wilson63b66e52013-08-08 15:12:06 +020014001
14002 for (i = 0; i < error->num_transcoders; i++) {
Chris Wilson1cf84bb2013-10-21 09:10:33 +010014003 err_printf(m, "CPU transcoder: %c\n",
Chris Wilson63b66e52013-08-08 15:12:06 +020014004 transcoder_name(error->transcoder[i].cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020014005 err_printf(m, " Power: %s\n",
14006 error->transcoder[i].power_domain_on ? "on" : "off");
Chris Wilson63b66e52013-08-08 15:12:06 +020014007 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
14008 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
14009 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
14010 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
14011 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
14012 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
14013 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
14014 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014015}
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014016
14017void intel_modeset_preclose(struct drm_device *dev, struct drm_file *file)
14018{
14019 struct intel_crtc *crtc;
14020
14021 for_each_intel_crtc(dev, crtc) {
14022 struct intel_unpin_work *work;
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014023
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020014024 spin_lock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014025
14026 work = crtc->unpin_work;
14027
14028 if (work && work->event &&
14029 work->event->base.file_priv == file) {
14030 kfree(work->event);
14031 work->event = NULL;
14032 }
14033
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020014034 spin_unlock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014035 }
14036}