blob: 2f47978fe808fc2d60781be7d545f6077d6c84df [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"
David Howells760285e2012-10-02 18:01:07 +010040#include <drm/drm_dp_helper.h>
41#include <drm/drm_crtc_helper.h>
Matt Roper465c1202014-05-29 08:06:54 -070042#include <drm/drm_plane_helper.h>
43#include <drm/drm_rect.h>
Keith Packardc0f372b32011-11-16 22:24:52 -080044#include <linux/dma_remapping.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080045
Matt Roper465c1202014-05-29 08:06:54 -070046/* Primary plane formats supported by all gen */
47#define COMMON_PRIMARY_FORMATS \
48 DRM_FORMAT_C8, \
49 DRM_FORMAT_RGB565, \
50 DRM_FORMAT_XRGB8888, \
51 DRM_FORMAT_ARGB8888
52
53/* Primary plane formats for gen <= 3 */
54static const uint32_t intel_primary_formats_gen2[] = {
55 COMMON_PRIMARY_FORMATS,
56 DRM_FORMAT_XRGB1555,
57 DRM_FORMAT_ARGB1555,
58};
59
60/* Primary plane formats for gen >= 4 */
61static const uint32_t intel_primary_formats_gen4[] = {
62 COMMON_PRIMARY_FORMATS, \
63 DRM_FORMAT_XBGR8888,
64 DRM_FORMAT_ABGR8888,
65 DRM_FORMAT_XRGB2101010,
66 DRM_FORMAT_ARGB2101010,
67 DRM_FORMAT_XBGR2101010,
68 DRM_FORMAT_ABGR2101010,
69};
70
Matt Roper3d7d6512014-06-10 08:28:13 -070071/* Cursor formats */
72static const uint32_t intel_cursor_formats[] = {
73 DRM_FORMAT_ARGB8888,
74};
75
Chon Ming Leeef9348c2014-04-09 13:28:18 +030076#define DIV_ROUND_CLOSEST_ULL(ll, d) \
Matt Roper465c1202014-05-29 08:06:54 -070077({ unsigned long long _tmp = (ll)+(d)/2; do_div(_tmp, d); _tmp; })
Chon Ming Leeef9348c2014-04-09 13:28:18 +030078
Daniel Vettercc365132014-06-18 13:59:13 +020079static void intel_increase_pllclock(struct drm_device *dev,
80 enum pipe pipe);
Chris Wilson6b383a72010-09-13 13:54:26 +010081static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
Jesse Barnes79e53942008-11-07 14:24:08 -080082
Jesse Barnesf1f644d2013-06-27 00:39:25 +030083static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
84 struct intel_crtc_config *pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +030085static void ironlake_pch_clock_get(struct intel_crtc *crtc,
86 struct intel_crtc_config *pipe_config);
Jesse Barnesf1f644d2013-06-27 00:39:25 +030087
Damien Lespiaue7457a92013-08-08 22:28:59 +010088static int intel_set_mode(struct drm_crtc *crtc, struct drm_display_mode *mode,
89 int x, int y, struct drm_framebuffer *old_fb);
Jesse Barneseb1bfe82014-02-12 12:26:25 -080090static int intel_framebuffer_init(struct drm_device *dev,
91 struct intel_framebuffer *ifb,
92 struct drm_mode_fb_cmd2 *mode_cmd,
93 struct drm_i915_gem_object *obj);
Daniel Vetter5b18e572014-04-24 23:55:06 +020094static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc);
95static void intel_set_pipe_timings(struct intel_crtc *intel_crtc);
Daniel Vetter29407aa2014-04-24 23:55:08 +020096static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -070097 struct intel_link_m_n *m_n,
98 struct intel_link_m_n *m2_n2);
Daniel Vetter29407aa2014-04-24 23:55:08 +020099static void ironlake_set_pipeconf(struct drm_crtc *crtc);
Daniel Vetter229fca92014-04-24 23:55:09 +0200100static void haswell_set_pipeconf(struct drm_crtc *crtc);
101static void intel_set_pipe_csc(struct drm_crtc *crtc);
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +0200102static void vlv_prepare_pll(struct intel_crtc *crtc);
Ville Syrjälä1ae0d132014-06-28 02:04:00 +0300103static void chv_prepare_pll(struct intel_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 */
414static bool intel_pipe_has_type(struct drm_crtc *crtc, int type)
415{
416 struct drm_device *dev = crtc->dev;
417 struct intel_encoder *encoder;
418
419 for_each_encoder_on_crtc(dev, crtc, encoder)
420 if (encoder->type == type)
421 return true;
422
423 return false;
424}
425
Chris Wilson1b894b52010-12-14 20:04:54 +0000426static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc,
427 int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800428{
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800429 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800430 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800431
432 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100433 if (intel_is_dual_link_lvds(dev)) {
Chris Wilson1b894b52010-12-14 20:04:54 +0000434 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800435 limit = &intel_limits_ironlake_dual_lvds_100m;
436 else
437 limit = &intel_limits_ironlake_dual_lvds;
438 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000439 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800440 limit = &intel_limits_ironlake_single_lvds_100m;
441 else
442 limit = &intel_limits_ironlake_single_lvds;
443 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200444 } else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800445 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800446
447 return limit;
448}
449
Ma Ling044c7c42009-03-18 20:13:23 +0800450static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
451{
452 struct drm_device *dev = crtc->dev;
Ma Ling044c7c42009-03-18 20:13:23 +0800453 const intel_limit_t *limit;
454
455 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100456 if (intel_is_dual_link_lvds(dev))
Keith Packarde4b36692009-06-05 19:22:17 -0700457 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800458 else
Keith Packarde4b36692009-06-05 19:22:17 -0700459 limit = &intel_limits_g4x_single_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800460 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
461 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700462 limit = &intel_limits_g4x_hdmi;
Ma Ling044c7c42009-03-18 20:13:23 +0800463 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700464 limit = &intel_limits_g4x_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800465 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700466 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800467
468 return limit;
469}
470
Chris Wilson1b894b52010-12-14 20:04:54 +0000471static const intel_limit_t *intel_limit(struct drm_crtc *crtc, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800472{
473 struct drm_device *dev = crtc->dev;
474 const intel_limit_t *limit;
475
Eric Anholtbad720f2009-10-22 16:11:14 -0700476 if (HAS_PCH_SPLIT(dev))
Chris Wilson1b894b52010-12-14 20:04:54 +0000477 limit = intel_ironlake_limit(crtc, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800478 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800479 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500480 } else if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +0800481 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500482 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800483 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500484 limit = &intel_limits_pineview_sdvo;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300485 } else if (IS_CHERRYVIEW(dev)) {
486 limit = &intel_limits_chv;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700487 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälädc730512013-09-24 21:26:30 +0300488 limit = &intel_limits_vlv;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100489 } else if (!IS_GEN2(dev)) {
490 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
491 limit = &intel_limits_i9xx_lvds;
492 else
493 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800494 } else {
495 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700496 limit = &intel_limits_i8xx_lvds;
Daniel Vetter5d536e22013-07-06 12:52:06 +0200497 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO))
Keith Packarde4b36692009-06-05 19:22:17 -0700498 limit = &intel_limits_i8xx_dvo;
Daniel Vetter5d536e22013-07-06 12:52:06 +0200499 else
500 limit = &intel_limits_i8xx_dac;
Jesse Barnes79e53942008-11-07 14:24:08 -0800501 }
502 return limit;
503}
504
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500505/* m1 is reserved as 0 in Pineview, n is a ring counter */
506static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800507{
Shaohua Li21778322009-02-23 15:19:16 +0800508 clock->m = clock->m2 + 2;
509 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200510 if (WARN_ON(clock->n == 0 || clock->p == 0))
511 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300512 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
513 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Shaohua Li21778322009-02-23 15:19:16 +0800514}
515
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200516static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
517{
518 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
519}
520
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200521static void i9xx_clock(int refclk, intel_clock_t *clock)
Shaohua Li21778322009-02-23 15:19:16 +0800522{
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200523 clock->m = i9xx_dpll_compute_m(clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800524 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200525 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
526 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300527 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
528 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Jesse Barnes79e53942008-11-07 14:24:08 -0800529}
530
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300531static void chv_clock(int refclk, intel_clock_t *clock)
532{
533 clock->m = clock->m1 * clock->m2;
534 clock->p = clock->p1 * clock->p2;
535 if (WARN_ON(clock->n == 0 || clock->p == 0))
536 return;
537 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
538 clock->n << 22);
539 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
540}
541
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800542#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800543/**
544 * Returns whether the given set of divisors are valid for a given refclk with
545 * the given connectors.
546 */
547
Chris Wilson1b894b52010-12-14 20:04:54 +0000548static bool intel_PLL_is_valid(struct drm_device *dev,
549 const intel_limit_t *limit,
550 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800551{
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300552 if (clock->n < limit->n.min || limit->n.max < clock->n)
553 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800554 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400555 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800556 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400557 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800558 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400559 INTELPllInvalid("m1 out of range\n");
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300560
561 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev))
562 if (clock->m1 <= clock->m2)
563 INTELPllInvalid("m1 <= m2\n");
564
565 if (!IS_VALLEYVIEW(dev)) {
566 if (clock->p < limit->p.min || limit->p.max < clock->p)
567 INTELPllInvalid("p out of range\n");
568 if (clock->m < limit->m.min || limit->m.max < clock->m)
569 INTELPllInvalid("m out of range\n");
570 }
571
Jesse Barnes79e53942008-11-07 14:24:08 -0800572 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400573 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800574 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
575 * connector, etc., rather than just a single range.
576 */
577 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400578 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800579
580 return true;
581}
582
Ma Lingd4906092009-03-18 20:13:27 +0800583static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200584i9xx_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800585 int target, int refclk, intel_clock_t *match_clock,
586 intel_clock_t *best_clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800587{
588 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800589 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800590 int err = target;
591
Daniel Vettera210b022012-11-26 17:22:08 +0100592 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800593 /*
Daniel Vettera210b022012-11-26 17:22:08 +0100594 * For LVDS just rely on its current settings for dual-channel.
595 * We haven't figured out how to reliably set up different
596 * single/dual channel state, if we even can.
Jesse Barnes79e53942008-11-07 14:24:08 -0800597 */
Daniel Vetter1974cad2012-11-26 17:22:09 +0100598 if (intel_is_dual_link_lvds(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800599 clock.p2 = limit->p2.p2_fast;
600 else
601 clock.p2 = limit->p2.p2_slow;
602 } else {
603 if (target < limit->p2.dot_limit)
604 clock.p2 = limit->p2.p2_slow;
605 else
606 clock.p2 = limit->p2.p2_fast;
607 }
608
Akshay Joshi0206e352011-08-16 15:34:10 -0400609 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800610
Zhao Yakui42158662009-11-20 11:24:18 +0800611 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
612 clock.m1++) {
613 for (clock.m2 = limit->m2.min;
614 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterc0efc382013-06-03 20:56:24 +0200615 if (clock.m2 >= clock.m1)
Zhao Yakui42158662009-11-20 11:24:18 +0800616 break;
617 for (clock.n = limit->n.min;
618 clock.n <= limit->n.max; clock.n++) {
619 for (clock.p1 = limit->p1.min;
620 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800621 int this_err;
622
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200623 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000624 if (!intel_PLL_is_valid(dev, limit,
625 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800626 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800627 if (match_clock &&
628 clock.p != match_clock->p)
629 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800630
631 this_err = abs(clock.dot - target);
632 if (this_err < err) {
633 *best_clock = clock;
634 err = this_err;
635 }
636 }
637 }
638 }
639 }
640
641 return (err != target);
642}
643
Ma Lingd4906092009-03-18 20:13:27 +0800644static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200645pnv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
646 int target, int refclk, intel_clock_t *match_clock,
647 intel_clock_t *best_clock)
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200648{
649 struct drm_device *dev = crtc->dev;
650 intel_clock_t clock;
651 int err = target;
652
653 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
654 /*
655 * For LVDS just rely on its current settings for dual-channel.
656 * We haven't figured out how to reliably set up different
657 * single/dual channel state, if we even can.
658 */
659 if (intel_is_dual_link_lvds(dev))
660 clock.p2 = limit->p2.p2_fast;
661 else
662 clock.p2 = limit->p2.p2_slow;
663 } else {
664 if (target < limit->p2.dot_limit)
665 clock.p2 = limit->p2.p2_slow;
666 else
667 clock.p2 = limit->p2.p2_fast;
668 }
669
670 memset(best_clock, 0, sizeof(*best_clock));
671
672 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
673 clock.m1++) {
674 for (clock.m2 = limit->m2.min;
675 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200676 for (clock.n = limit->n.min;
677 clock.n <= limit->n.max; clock.n++) {
678 for (clock.p1 = limit->p1.min;
679 clock.p1 <= limit->p1.max; clock.p1++) {
680 int this_err;
681
682 pineview_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800683 if (!intel_PLL_is_valid(dev, limit,
684 &clock))
685 continue;
686 if (match_clock &&
687 clock.p != match_clock->p)
688 continue;
689
690 this_err = abs(clock.dot - target);
691 if (this_err < err) {
692 *best_clock = clock;
693 err = this_err;
694 }
695 }
696 }
697 }
698 }
699
700 return (err != target);
701}
702
Ma Lingd4906092009-03-18 20:13:27 +0800703static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200704g4x_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
705 int target, int refclk, intel_clock_t *match_clock,
706 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800707{
708 struct drm_device *dev = crtc->dev;
Ma Lingd4906092009-03-18 20:13:27 +0800709 intel_clock_t clock;
710 int max_n;
711 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400712 /* approximately equals target * 0.00585 */
713 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800714 found = false;
715
716 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100717 if (intel_is_dual_link_lvds(dev))
Ma Lingd4906092009-03-18 20:13:27 +0800718 clock.p2 = limit->p2.p2_fast;
719 else
720 clock.p2 = limit->p2.p2_slow;
721 } else {
722 if (target < limit->p2.dot_limit)
723 clock.p2 = limit->p2.p2_slow;
724 else
725 clock.p2 = limit->p2.p2_fast;
726 }
727
728 memset(best_clock, 0, sizeof(*best_clock));
729 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200730 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800731 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200732 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800733 for (clock.m1 = limit->m1.max;
734 clock.m1 >= limit->m1.min; clock.m1--) {
735 for (clock.m2 = limit->m2.max;
736 clock.m2 >= limit->m2.min; clock.m2--) {
737 for (clock.p1 = limit->p1.max;
738 clock.p1 >= limit->p1.min; clock.p1--) {
739 int this_err;
740
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200741 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000742 if (!intel_PLL_is_valid(dev, limit,
743 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800744 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000745
746 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800747 if (this_err < err_most) {
748 *best_clock = clock;
749 err_most = this_err;
750 max_n = clock.n;
751 found = true;
752 }
753 }
754 }
755 }
756 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800757 return found;
758}
Ma Lingd4906092009-03-18 20:13:27 +0800759
Zhenyu Wang2c072452009-06-05 15:38:42 +0800760static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200761vlv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
762 int target, int refclk, intel_clock_t *match_clock,
763 intel_clock_t *best_clock)
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700764{
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300765 struct drm_device *dev = crtc->dev;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300766 intel_clock_t clock;
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300767 unsigned int bestppm = 1000000;
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300768 /* min update 19.2 MHz */
769 int max_n = min(limit->n.max, refclk / 19200);
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300770 bool found = false;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700771
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300772 target *= 5; /* fast clock */
773
774 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700775
776 /* based on hardware requirement, prefer smaller n to precision */
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300777 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Ville Syrjälä811bbf02013-09-24 21:26:25 +0300778 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
Ville Syrjälä889059d2013-09-24 21:26:27 +0300779 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
Ville Syrjäläc1a9ae42013-09-24 21:26:23 +0300780 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300781 clock.p = clock.p1 * clock.p2;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700782 /* based on hardware requirement, prefer bigger m1,m2 values */
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300783 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300784 unsigned int ppm, diff;
785
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300786 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
787 refclk * clock.m1);
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300788
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300789 vlv_clock(refclk, &clock);
790
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300791 if (!intel_PLL_is_valid(dev, limit,
792 &clock))
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300793 continue;
794
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300795 diff = abs(clock.dot - target);
796 ppm = div_u64(1000000ULL * diff, target);
797
798 if (ppm < 100 && clock.p > best_clock->p) {
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300799 bestppm = 0;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300800 *best_clock = clock;
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300801 found = true;
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300802 }
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300803
Ville Syrjäläc6861222013-09-24 21:26:21 +0300804 if (bestppm >= 10 && ppm < bestppm - 10) {
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300805 bestppm = ppm;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300806 *best_clock = clock;
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300807 found = true;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700808 }
809 }
810 }
811 }
812 }
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700813
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300814 return found;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700815}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700816
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300817static bool
818chv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
819 int target, int refclk, intel_clock_t *match_clock,
820 intel_clock_t *best_clock)
821{
822 struct drm_device *dev = crtc->dev;
823 intel_clock_t clock;
824 uint64_t m2;
825 int found = false;
826
827 memset(best_clock, 0, sizeof(*best_clock));
828
829 /*
830 * Based on hardware doc, the n always set to 1, and m1 always
831 * set to 2. If requires to support 200Mhz refclk, we need to
832 * revisit this because n may not 1 anymore.
833 */
834 clock.n = 1, clock.m1 = 2;
835 target *= 5; /* fast clock */
836
837 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
838 for (clock.p2 = limit->p2.p2_fast;
839 clock.p2 >= limit->p2.p2_slow;
840 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
841
842 clock.p = clock.p1 * clock.p2;
843
844 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
845 clock.n) << 22, refclk * clock.m1);
846
847 if (m2 > INT_MAX/clock.m1)
848 continue;
849
850 clock.m2 = m2;
851
852 chv_clock(refclk, &clock);
853
854 if (!intel_PLL_is_valid(dev, limit, &clock))
855 continue;
856
857 /* based on hardware requirement, prefer bigger p
858 */
859 if (clock.p > best_clock->p) {
860 *best_clock = clock;
861 found = true;
862 }
863 }
864 }
865
866 return found;
867}
868
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300869bool intel_crtc_active(struct drm_crtc *crtc)
870{
871 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
872
873 /* Be paranoid as we can arrive here with only partial
874 * state retrieved from the hardware during setup.
875 *
Damien Lespiau241bfc32013-09-25 16:45:37 +0100876 * We can ditch the adjusted_mode.crtc_clock check as soon
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300877 * as Haswell has gained clock readout/fastboot support.
878 *
Dave Airlie66e514c2014-04-03 07:51:54 +1000879 * We can ditch the crtc->primary->fb check as soon as we can
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300880 * properly reconstruct framebuffers.
881 */
Matt Roperf4510a22014-04-01 15:22:40 -0700882 return intel_crtc->active && crtc->primary->fb &&
Damien Lespiau241bfc32013-09-25 16:45:37 +0100883 intel_crtc->config.adjusted_mode.crtc_clock;
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300884}
885
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200886enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
887 enum pipe pipe)
888{
889 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
890 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
891
Daniel Vetter3b117c82013-04-17 20:15:07 +0200892 return intel_crtc->config.cpu_transcoder;
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200893}
894
Ville Syrjälä57e22f42013-11-06 13:56:28 -0200895static void g4x_wait_for_vblank(struct drm_device *dev, int pipe)
Paulo Zanonia928d532012-05-04 17:18:15 -0300896{
897 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä57e22f42013-11-06 13:56:28 -0200898 u32 frame, frame_reg = PIPE_FRMCOUNT_GM45(pipe);
Paulo Zanonia928d532012-05-04 17:18:15 -0300899
900 frame = I915_READ(frame_reg);
901
902 if (wait_for(I915_READ_NOTRACE(frame_reg) != frame, 50))
Damien Lespiau31e4b892014-08-18 13:51:00 +0100903 WARN(1, "vblank wait on pipe %c timed out\n",
904 pipe_name(pipe));
Paulo Zanonia928d532012-05-04 17:18:15 -0300905}
906
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700907/**
908 * intel_wait_for_vblank - wait for vblank on a given pipe
909 * @dev: drm device
910 * @pipe: pipe to wait for
911 *
912 * Wait for vblank to occur on a given pipe. Needed for various bits of
913 * mode setting code.
914 */
915void intel_wait_for_vblank(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -0800916{
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700917 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800918 int pipestat_reg = PIPESTAT(pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700919
Ville Syrjälä57e22f42013-11-06 13:56:28 -0200920 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
921 g4x_wait_for_vblank(dev, pipe);
Paulo Zanonia928d532012-05-04 17:18:15 -0300922 return;
923 }
924
Chris Wilson300387c2010-09-05 20:25:43 +0100925 /* Clear existing vblank status. Note this will clear any other
926 * sticky status fields as well.
927 *
928 * This races with i915_driver_irq_handler() with the result
929 * that either function could miss a vblank event. Here it is not
930 * fatal, as we will either wait upon the next vblank interrupt or
931 * timeout. Generally speaking intel_wait_for_vblank() is only
932 * called during modeset at which time the GPU should be idle and
933 * should *not* be performing page flips and thus not waiting on
934 * vblanks...
935 * Currently, the result of us stealing a vblank from the irq
936 * handler is that a single frame will be skipped during swapbuffers.
937 */
938 I915_WRITE(pipestat_reg,
939 I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS);
940
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700941 /* Wait for vblank interrupt bit to set */
Chris Wilson481b6af2010-08-23 17:43:35 +0100942 if (wait_for(I915_READ(pipestat_reg) &
943 PIPE_VBLANK_INTERRUPT_STATUS,
944 50))
Damien Lespiau31e4b892014-08-18 13:51:00 +0100945 DRM_DEBUG_KMS("vblank wait on pipe %c timed out\n",
946 pipe_name(pipe));
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700947}
948
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +0300949static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
950{
951 struct drm_i915_private *dev_priv = dev->dev_private;
952 u32 reg = PIPEDSL(pipe);
953 u32 line1, line2;
954 u32 line_mask;
955
956 if (IS_GEN2(dev))
957 line_mask = DSL_LINEMASK_GEN2;
958 else
959 line_mask = DSL_LINEMASK_GEN3;
960
961 line1 = I915_READ(reg) & line_mask;
962 mdelay(5);
963 line2 = I915_READ(reg) & line_mask;
964
965 return line1 == line2;
966}
967
Keith Packardab7ad7f2010-10-03 00:33:06 -0700968/*
969 * intel_wait_for_pipe_off - wait for pipe to turn off
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300970 * @crtc: crtc whose pipe to wait for
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700971 *
972 * After disabling a pipe, we can't wait for vblank in the usual way,
973 * spinning on the vblank interrupt status bit, since we won't actually
974 * see an interrupt when the pipe is disabled.
975 *
Keith Packardab7ad7f2010-10-03 00:33:06 -0700976 * On Gen4 and above:
977 * wait for the pipe register state bit to turn off
978 *
979 * Otherwise:
980 * wait for the display line value to settle (it usually
981 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +0100982 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700983 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300984static void intel_wait_for_pipe_off(struct intel_crtc *crtc)
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700985{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300986 struct drm_device *dev = crtc->base.dev;
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700987 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300988 enum transcoder cpu_transcoder = crtc->config.cpu_transcoder;
989 enum pipe pipe = crtc->pipe;
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700990
Keith Packardab7ad7f2010-10-03 00:33:06 -0700991 if (INTEL_INFO(dev)->gen >= 4) {
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200992 int reg = PIPECONF(cpu_transcoder);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700993
Keith Packardab7ad7f2010-10-03 00:33:06 -0700994 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100995 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
996 100))
Daniel Vetter284637d2012-07-09 09:51:57 +0200997 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700998 } else {
Keith Packardab7ad7f2010-10-03 00:33:06 -0700999 /* Wait for the display line to settle */
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +03001000 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
Daniel Vetter284637d2012-07-09 09:51:57 +02001001 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -07001002 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001003}
1004
Damien Lespiaub0ea7d32012-12-13 16:09:00 +00001005/*
1006 * ibx_digital_port_connected - is the specified port connected?
1007 * @dev_priv: i915 private structure
1008 * @port: the port to test
1009 *
1010 * Returns true if @port is connected, false otherwise.
1011 */
1012bool ibx_digital_port_connected(struct drm_i915_private *dev_priv,
1013 struct intel_digital_port *port)
1014{
1015 u32 bit;
1016
Damien Lespiauc36346e2012-12-13 16:09:03 +00001017 if (HAS_PCH_IBX(dev_priv->dev)) {
Robin Schroereba905b2014-05-18 02:24:50 +02001018 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +00001019 case PORT_B:
1020 bit = SDE_PORTB_HOTPLUG;
1021 break;
1022 case PORT_C:
1023 bit = SDE_PORTC_HOTPLUG;
1024 break;
1025 case PORT_D:
1026 bit = SDE_PORTD_HOTPLUG;
1027 break;
1028 default:
1029 return true;
1030 }
1031 } else {
Robin Schroereba905b2014-05-18 02:24:50 +02001032 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +00001033 case PORT_B:
1034 bit = SDE_PORTB_HOTPLUG_CPT;
1035 break;
1036 case PORT_C:
1037 bit = SDE_PORTC_HOTPLUG_CPT;
1038 break;
1039 case PORT_D:
1040 bit = SDE_PORTD_HOTPLUG_CPT;
1041 break;
1042 default:
1043 return true;
1044 }
Damien Lespiaub0ea7d32012-12-13 16:09:00 +00001045 }
1046
1047 return I915_READ(SDEISR) & bit;
1048}
1049
Jesse Barnesb24e7172011-01-04 15:09:30 -08001050static const char *state_string(bool enabled)
1051{
1052 return enabled ? "on" : "off";
1053}
1054
1055/* Only for pre-ILK configs */
Daniel Vetter55607e82013-06-16 21:42:39 +02001056void assert_pll(struct drm_i915_private *dev_priv,
1057 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001058{
1059 int reg;
1060 u32 val;
1061 bool cur_state;
1062
1063 reg = DPLL(pipe);
1064 val = I915_READ(reg);
1065 cur_state = !!(val & DPLL_VCO_ENABLE);
1066 WARN(cur_state != state,
1067 "PLL state assertion failure (expected %s, current %s)\n",
1068 state_string(state), state_string(cur_state));
1069}
Jesse Barnesb24e7172011-01-04 15:09:30 -08001070
Jani Nikula23538ef2013-08-27 15:12:22 +03001071/* XXX: the dsi pll is shared between MIPI DSI ports */
1072static void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
1073{
1074 u32 val;
1075 bool cur_state;
1076
1077 mutex_lock(&dev_priv->dpio_lock);
1078 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
1079 mutex_unlock(&dev_priv->dpio_lock);
1080
1081 cur_state = val & DSI_PLL_VCO_EN;
1082 WARN(cur_state != state,
1083 "DSI PLL state assertion failure (expected %s, current %s)\n",
1084 state_string(state), state_string(cur_state));
1085}
1086#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1087#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1088
Daniel Vetter55607e82013-06-16 21:42:39 +02001089struct intel_shared_dpll *
Daniel Vettere2b78262013-06-07 23:10:03 +02001090intel_crtc_to_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes040484a2011-01-03 12:14:26 -08001091{
Daniel Vettere2b78262013-06-07 23:10:03 +02001092 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1093
Daniel Vettera43f6e02013-06-07 23:10:32 +02001094 if (crtc->config.shared_dpll < 0)
Daniel Vettere2b78262013-06-07 23:10:03 +02001095 return NULL;
1096
Daniel Vettera43f6e02013-06-07 23:10:32 +02001097 return &dev_priv->shared_dplls[crtc->config.shared_dpll];
Daniel Vettere2b78262013-06-07 23:10:03 +02001098}
1099
Jesse Barnesb24e7172011-01-04 15:09:30 -08001100/* For ILK+ */
Daniel Vetter55607e82013-06-16 21:42:39 +02001101void assert_shared_dpll(struct drm_i915_private *dev_priv,
1102 struct intel_shared_dpll *pll,
1103 bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001104{
Jesse Barnes040484a2011-01-03 12:14:26 -08001105 bool cur_state;
Daniel Vetter53589012013-06-05 13:34:16 +02001106 struct intel_dpll_hw_state hw_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001107
Chris Wilson92b27b02012-05-20 18:10:50 +01001108 if (WARN (!pll,
Daniel Vetter46edb022013-06-05 13:34:12 +02001109 "asserting DPLL %s with no DPLL\n", state_string(state)))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001110 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001111
Daniel Vetter53589012013-06-05 13:34:16 +02001112 cur_state = pll->get_hw_state(dev_priv, pll, &hw_state);
Chris Wilson92b27b02012-05-20 18:10:50 +01001113 WARN(cur_state != state,
Daniel Vetter53589012013-06-05 13:34:16 +02001114 "%s assertion failure (expected %s, current %s)\n",
1115 pll->name, state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001116}
Jesse Barnes040484a2011-01-03 12:14:26 -08001117
1118static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1119 enum pipe pipe, bool state)
1120{
1121 int reg;
1122 u32 val;
1123 bool cur_state;
Paulo Zanoniad80a812012-10-24 16:06:19 -02001124 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1125 pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001126
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001127 if (HAS_DDI(dev_priv->dev)) {
1128 /* DDI does not have a specific FDI_TX register */
Paulo Zanoniad80a812012-10-24 16:06:19 -02001129 reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001130 val = I915_READ(reg);
Paulo Zanoniad80a812012-10-24 16:06:19 -02001131 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001132 } else {
1133 reg = FDI_TX_CTL(pipe);
1134 val = I915_READ(reg);
1135 cur_state = !!(val & FDI_TX_ENABLE);
1136 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001137 WARN(cur_state != state,
1138 "FDI TX state assertion failure (expected %s, current %s)\n",
1139 state_string(state), state_string(cur_state));
1140}
1141#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1142#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1143
1144static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1145 enum pipe pipe, bool state)
1146{
1147 int reg;
1148 u32 val;
1149 bool cur_state;
1150
Paulo Zanonid63fa0d2012-11-20 13:27:35 -02001151 reg = FDI_RX_CTL(pipe);
1152 val = I915_READ(reg);
1153 cur_state = !!(val & FDI_RX_ENABLE);
Jesse Barnes040484a2011-01-03 12:14:26 -08001154 WARN(cur_state != state,
1155 "FDI RX state assertion failure (expected %s, current %s)\n",
1156 state_string(state), state_string(cur_state));
1157}
1158#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1159#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1160
1161static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1162 enum pipe pipe)
1163{
1164 int reg;
1165 u32 val;
1166
1167 /* ILK FDI PLL is always enabled */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001168 if (INTEL_INFO(dev_priv->dev)->gen == 5)
Jesse Barnes040484a2011-01-03 12:14:26 -08001169 return;
1170
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001171 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001172 if (HAS_DDI(dev_priv->dev))
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001173 return;
1174
Jesse Barnes040484a2011-01-03 12:14:26 -08001175 reg = FDI_TX_CTL(pipe);
1176 val = I915_READ(reg);
1177 WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
1178}
1179
Daniel Vetter55607e82013-06-16 21:42:39 +02001180void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1181 enum pipe pipe, bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001182{
1183 int reg;
1184 u32 val;
Daniel Vetter55607e82013-06-16 21:42:39 +02001185 bool cur_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001186
1187 reg = FDI_RX_CTL(pipe);
1188 val = I915_READ(reg);
Daniel Vetter55607e82013-06-16 21:42:39 +02001189 cur_state = !!(val & FDI_RX_PLL_ENABLE);
1190 WARN(cur_state != state,
1191 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1192 state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001193}
1194
Jesse Barnesea0760c2011-01-04 15:09:32 -08001195static void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1196 enum pipe pipe)
1197{
Jani Nikulabedd4db2014-08-22 15:04:13 +03001198 struct drm_device *dev = dev_priv->dev;
1199 int pp_reg;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001200 u32 val;
1201 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001202 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001203
Jani Nikulabedd4db2014-08-22 15:04:13 +03001204 if (WARN_ON(HAS_DDI(dev)))
1205 return;
1206
1207 if (HAS_PCH_SPLIT(dev)) {
1208 u32 port_sel;
1209
Jesse Barnesea0760c2011-01-04 15:09:32 -08001210 pp_reg = PCH_PP_CONTROL;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001211 port_sel = I915_READ(PCH_PP_ON_DELAYS) & PANEL_PORT_SELECT_MASK;
1212
1213 if (port_sel == PANEL_PORT_SELECT_LVDS &&
1214 I915_READ(PCH_LVDS) & LVDS_PIPEB_SELECT)
1215 panel_pipe = PIPE_B;
1216 /* XXX: else fix for eDP */
1217 } else if (IS_VALLEYVIEW(dev)) {
1218 /* presumably write lock depends on pipe, not port select */
1219 pp_reg = VLV_PIPE_PP_CONTROL(pipe);
1220 panel_pipe = pipe;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001221 } else {
1222 pp_reg = PP_CONTROL;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001223 if (I915_READ(LVDS) & LVDS_PIPEB_SELECT)
1224 panel_pipe = PIPE_B;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001225 }
1226
1227 val = I915_READ(pp_reg);
1228 if (!(val & PANEL_POWER_ON) ||
Jani Nikulaec49ba22014-08-21 15:06:25 +03001229 ((val & PANEL_UNLOCK_MASK) == PANEL_UNLOCK_REGS))
Jesse Barnesea0760c2011-01-04 15:09:32 -08001230 locked = false;
1231
Jesse Barnesea0760c2011-01-04 15:09:32 -08001232 WARN(panel_pipe == pipe && locked,
1233 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001234 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001235}
1236
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001237static void assert_cursor(struct drm_i915_private *dev_priv,
1238 enum pipe pipe, bool state)
1239{
1240 struct drm_device *dev = dev_priv->dev;
1241 bool cur_state;
1242
Paulo Zanonid9d82082014-02-27 16:30:56 -03001243 if (IS_845G(dev) || IS_I865G(dev))
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001244 cur_state = I915_READ(_CURACNTR) & CURSOR_ENABLE;
Paulo Zanonid9d82082014-02-27 16:30:56 -03001245 else
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03001246 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001247
1248 WARN(cur_state != state,
1249 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
1250 pipe_name(pipe), state_string(state), state_string(cur_state));
1251}
1252#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1253#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1254
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001255void assert_pipe(struct drm_i915_private *dev_priv,
1256 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001257{
1258 int reg;
1259 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001260 bool cur_state;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001261 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1262 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001263
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001264 /* if we need the pipe quirk it must be always on */
1265 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1266 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Daniel Vetter8e636782012-01-22 01:36:48 +01001267 state = true;
1268
Imre Deakda7e29b2014-02-18 00:02:02 +02001269 if (!intel_display_power_enabled(dev_priv,
Paulo Zanonib97186f2013-05-03 12:15:36 -03001270 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
Paulo Zanoni69310162013-01-29 16:35:19 -02001271 cur_state = false;
1272 } else {
1273 reg = PIPECONF(cpu_transcoder);
1274 val = I915_READ(reg);
1275 cur_state = !!(val & PIPECONF_ENABLE);
1276 }
1277
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001278 WARN(cur_state != state,
1279 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001280 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001281}
1282
Chris Wilson931872f2012-01-16 23:01:13 +00001283static void assert_plane(struct drm_i915_private *dev_priv,
1284 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001285{
1286 int reg;
1287 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001288 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001289
1290 reg = DSPCNTR(plane);
1291 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001292 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
1293 WARN(cur_state != state,
1294 "plane %c assertion failure (expected %s, current %s)\n",
1295 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001296}
1297
Chris Wilson931872f2012-01-16 23:01:13 +00001298#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1299#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1300
Jesse Barnesb24e7172011-01-04 15:09:30 -08001301static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1302 enum pipe pipe)
1303{
Ville Syrjälä653e1022013-06-04 13:49:05 +03001304 struct drm_device *dev = dev_priv->dev;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001305 int reg, i;
1306 u32 val;
1307 int cur_pipe;
1308
Ville Syrjälä653e1022013-06-04 13:49:05 +03001309 /* Primary planes are fixed to pipes on gen4+ */
1310 if (INTEL_INFO(dev)->gen >= 4) {
Adam Jackson28c057942011-10-07 14:38:42 -04001311 reg = DSPCNTR(pipe);
1312 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001313 WARN(val & DISPLAY_PLANE_ENABLE,
Adam Jackson28c057942011-10-07 14:38:42 -04001314 "plane %c assertion failure, should be disabled but not\n",
1315 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001316 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001317 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001318
Jesse Barnesb24e7172011-01-04 15:09:30 -08001319 /* Need to check both planes against the pipe */
Damien Lespiau055e3932014-08-18 13:49:10 +01001320 for_each_pipe(dev_priv, i) {
Jesse Barnesb24e7172011-01-04 15:09:30 -08001321 reg = DSPCNTR(i);
1322 val = I915_READ(reg);
1323 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1324 DISPPLANE_SEL_PIPE_SHIFT;
1325 WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001326 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1327 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001328 }
1329}
1330
Jesse Barnes19332d72013-03-28 09:55:38 -07001331static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1332 enum pipe pipe)
1333{
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001334 struct drm_device *dev = dev_priv->dev;
Damien Lespiau1fe47782014-03-03 17:31:47 +00001335 int reg, sprite;
Jesse Barnes19332d72013-03-28 09:55:38 -07001336 u32 val;
1337
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001338 if (IS_VALLEYVIEW(dev)) {
Damien Lespiau1fe47782014-03-03 17:31:47 +00001339 for_each_sprite(pipe, sprite) {
1340 reg = SPCNTR(pipe, sprite);
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001341 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001342 WARN(val & SP_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001343 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +00001344 sprite_name(pipe, sprite), pipe_name(pipe));
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001345 }
1346 } else if (INTEL_INFO(dev)->gen >= 7) {
1347 reg = SPRCTL(pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07001348 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001349 WARN(val & SPRITE_ENABLE,
Ville Syrjälä06da8da2013-04-17 17:48:51 +03001350 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001351 plane_name(pipe), pipe_name(pipe));
1352 } else if (INTEL_INFO(dev)->gen >= 5) {
1353 reg = DVSCNTR(pipe);
1354 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001355 WARN(val & DVS_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001356 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1357 plane_name(pipe), pipe_name(pipe));
Jesse Barnes19332d72013-03-28 09:55:38 -07001358 }
1359}
1360
Paulo Zanoni89eff4b2014-01-08 11:12:28 -02001361static void ibx_assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
Jesse Barnes92f25842011-01-04 15:09:34 -08001362{
1363 u32 val;
1364 bool enabled;
1365
Paulo Zanoni89eff4b2014-01-08 11:12:28 -02001366 WARN_ON(!(HAS_PCH_IBX(dev_priv->dev) || HAS_PCH_CPT(dev_priv->dev)));
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001367
Jesse Barnes92f25842011-01-04 15:09:34 -08001368 val = I915_READ(PCH_DREF_CONTROL);
1369 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1370 DREF_SUPERSPREAD_SOURCE_MASK));
1371 WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
1372}
1373
Daniel Vetterab9412b2013-05-03 11:49:46 +02001374static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1375 enum pipe pipe)
Jesse Barnes92f25842011-01-04 15:09:34 -08001376{
1377 int reg;
1378 u32 val;
1379 bool enabled;
1380
Daniel Vetterab9412b2013-05-03 11:49:46 +02001381 reg = PCH_TRANSCONF(pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001382 val = I915_READ(reg);
1383 enabled = !!(val & TRANS_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001384 WARN(enabled,
1385 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1386 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001387}
1388
Keith Packard4e634382011-08-06 10:39:45 -07001389static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1390 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001391{
1392 if ((val & DP_PORT_EN) == 0)
1393 return false;
1394
1395 if (HAS_PCH_CPT(dev_priv->dev)) {
1396 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1397 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1398 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1399 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001400 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1401 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1402 return false;
Keith Packardf0575e92011-07-25 22:12:43 -07001403 } else {
1404 if ((val & DP_PIPE_MASK) != (pipe << 30))
1405 return false;
1406 }
1407 return true;
1408}
1409
Keith Packard1519b992011-08-06 10:35:34 -07001410static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1411 enum pipe pipe, u32 val)
1412{
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001413 if ((val & SDVO_ENABLE) == 0)
Keith Packard1519b992011-08-06 10:35:34 -07001414 return false;
1415
1416 if (HAS_PCH_CPT(dev_priv->dev)) {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001417 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001418 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001419 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1420 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1421 return false;
Keith Packard1519b992011-08-06 10:35:34 -07001422 } else {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001423 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001424 return false;
1425 }
1426 return true;
1427}
1428
1429static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1430 enum pipe pipe, u32 val)
1431{
1432 if ((val & LVDS_PORT_EN) == 0)
1433 return false;
1434
1435 if (HAS_PCH_CPT(dev_priv->dev)) {
1436 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1437 return false;
1438 } else {
1439 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1440 return false;
1441 }
1442 return true;
1443}
1444
1445static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1446 enum pipe pipe, u32 val)
1447{
1448 if ((val & ADPA_DAC_ENABLE) == 0)
1449 return false;
1450 if (HAS_PCH_CPT(dev_priv->dev)) {
1451 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1452 return false;
1453 } else {
1454 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1455 return false;
1456 }
1457 return true;
1458}
1459
Jesse Barnes291906f2011-02-02 12:28:03 -08001460static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001461 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001462{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001463 u32 val = I915_READ(reg);
Keith Packard4e634382011-08-06 10:39:45 -07001464 WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001465 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001466 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001467
Daniel Vetter75c5da22012-09-10 21:58:29 +02001468 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
1469 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001470 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001471}
1472
1473static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1474 enum pipe pipe, int reg)
1475{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001476 u32 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001477 WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001478 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001479 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001480
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001481 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001482 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001483 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001484}
1485
1486static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1487 enum pipe pipe)
1488{
1489 int reg;
1490 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001491
Keith Packardf0575e92011-07-25 22:12:43 -07001492 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1493 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1494 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001495
1496 reg = PCH_ADPA;
1497 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001498 WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001499 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001500 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001501
1502 reg = PCH_LVDS;
1503 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001504 WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001505 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001506 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001507
Paulo Zanonie2debe92013-02-18 19:00:27 -03001508 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1509 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1510 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
Jesse Barnes291906f2011-02-02 12:28:03 -08001511}
1512
Jesse Barnes40e9cf62013-10-03 11:35:46 -07001513static void intel_init_dpio(struct drm_device *dev)
1514{
1515 struct drm_i915_private *dev_priv = dev->dev_private;
1516
1517 if (!IS_VALLEYVIEW(dev))
1518 return;
1519
Chon Ming Leea09cadd2014-04-09 13:28:14 +03001520 /*
1521 * IOSF_PORT_DPIO is used for VLV x2 PHY (DP/HDMI B and C),
1522 * CHV x1 PHY (DP/HDMI D)
1523 * IOSF_PORT_DPIO_2 is used for CHV x2 PHY (DP/HDMI B and C)
1524 */
1525 if (IS_CHERRYVIEW(dev)) {
1526 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO_2;
1527 DPIO_PHY_IOSF_PORT(DPIO_PHY1) = IOSF_PORT_DPIO;
1528 } else {
1529 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO;
1530 }
Jesse Barnes5382f5f352013-12-16 16:34:24 -08001531}
1532
Daniel Vetter426115c2013-07-11 22:13:42 +02001533static void vlv_enable_pll(struct intel_crtc *crtc)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001534{
Daniel Vetter426115c2013-07-11 22:13:42 +02001535 struct drm_device *dev = crtc->base.dev;
1536 struct drm_i915_private *dev_priv = dev->dev_private;
1537 int reg = DPLL(crtc->pipe);
1538 u32 dpll = crtc->config.dpll_hw_state.dpll;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001539
Daniel Vetter426115c2013-07-11 22:13:42 +02001540 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001541
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001542 /* No really, not for ILK+ */
Daniel Vetter87442f72013-06-06 00:52:17 +02001543 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev));
1544
1545 /* PLL is protected by panel, make sure we can write it */
Jani Nikula6a9e7362014-08-22 15:06:35 +03001546 if (IS_MOBILE(dev_priv->dev))
Daniel Vetter426115c2013-07-11 22:13:42 +02001547 assert_panel_unlocked(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001548
Daniel Vetter426115c2013-07-11 22:13:42 +02001549 I915_WRITE(reg, dpll);
1550 POSTING_READ(reg);
1551 udelay(150);
1552
1553 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1554 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1555
1556 I915_WRITE(DPLL_MD(crtc->pipe), crtc->config.dpll_hw_state.dpll_md);
1557 POSTING_READ(DPLL_MD(crtc->pipe));
Daniel Vetter87442f72013-06-06 00:52:17 +02001558
1559 /* We do this three times for luck */
Daniel Vetter426115c2013-07-11 22:13:42 +02001560 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001561 POSTING_READ(reg);
1562 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001563 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001564 POSTING_READ(reg);
1565 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001566 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001567 POSTING_READ(reg);
1568 udelay(150); /* wait for warmup */
1569}
1570
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001571static void chv_enable_pll(struct intel_crtc *crtc)
1572{
1573 struct drm_device *dev = crtc->base.dev;
1574 struct drm_i915_private *dev_priv = dev->dev_private;
1575 int pipe = crtc->pipe;
1576 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001577 u32 tmp;
1578
1579 assert_pipe_disabled(dev_priv, crtc->pipe);
1580
1581 BUG_ON(!IS_CHERRYVIEW(dev_priv->dev));
1582
1583 mutex_lock(&dev_priv->dpio_lock);
1584
1585 /* Enable back the 10bit clock to display controller */
1586 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1587 tmp |= DPIO_DCLKP_EN;
1588 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1589
1590 /*
1591 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1592 */
1593 udelay(1);
1594
1595 /* Enable PLL */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001596 I915_WRITE(DPLL(pipe), crtc->config.dpll_hw_state.dpll);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001597
1598 /* Check PLL is locked */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001599 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001600 DRM_ERROR("PLL %d failed to lock\n", pipe);
1601
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001602 /* not sure when this should be written */
1603 I915_WRITE(DPLL_MD(pipe), crtc->config.dpll_hw_state.dpll_md);
1604 POSTING_READ(DPLL_MD(pipe));
1605
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001606 mutex_unlock(&dev_priv->dpio_lock);
1607}
1608
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001609static void i9xx_enable_pll(struct intel_crtc *crtc)
Daniel Vetter87442f72013-06-06 00:52:17 +02001610{
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001611 struct drm_device *dev = crtc->base.dev;
1612 struct drm_i915_private *dev_priv = dev->dev_private;
1613 int reg = DPLL(crtc->pipe);
1614 u32 dpll = crtc->config.dpll_hw_state.dpll;
Daniel Vetter87442f72013-06-06 00:52:17 +02001615
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001616 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001617
1618 /* No really, not for ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001619 BUG_ON(INTEL_INFO(dev)->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001620
1621 /* PLL is protected by panel, make sure we can write it */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001622 if (IS_MOBILE(dev) && !IS_I830(dev))
1623 assert_panel_unlocked(dev_priv, crtc->pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001624
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001625 I915_WRITE(reg, dpll);
1626
1627 /* Wait for the clocks to stabilize. */
1628 POSTING_READ(reg);
1629 udelay(150);
1630
1631 if (INTEL_INFO(dev)->gen >= 4) {
1632 I915_WRITE(DPLL_MD(crtc->pipe),
1633 crtc->config.dpll_hw_state.dpll_md);
1634 } else {
1635 /* The pixel multiplier can only be updated once the
1636 * DPLL is enabled and the clocks are stable.
1637 *
1638 * So write it again.
1639 */
1640 I915_WRITE(reg, dpll);
1641 }
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001642
1643 /* We do this three times for luck */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001644 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001645 POSTING_READ(reg);
1646 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001647 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001648 POSTING_READ(reg);
1649 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001650 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001651 POSTING_READ(reg);
1652 udelay(150); /* wait for warmup */
1653}
1654
1655/**
Daniel Vetter50b44a42013-06-05 13:34:33 +02001656 * i9xx_disable_pll - disable a PLL
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001657 * @dev_priv: i915 private structure
1658 * @pipe: pipe PLL to disable
1659 *
1660 * Disable the PLL for @pipe, making sure the pipe is off first.
1661 *
1662 * Note! This is for pre-ILK only.
1663 */
Daniel Vetter50b44a42013-06-05 13:34:33 +02001664static void i9xx_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001665{
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001666 /* Don't disable pipe or pipe PLLs if needed */
1667 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1668 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001669 return;
1670
1671 /* Make sure the pipe isn't still relying on us */
1672 assert_pipe_disabled(dev_priv, pipe);
1673
Daniel Vetter50b44a42013-06-05 13:34:33 +02001674 I915_WRITE(DPLL(pipe), 0);
1675 POSTING_READ(DPLL(pipe));
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001676}
1677
Jesse Barnesf6071162013-10-01 10:41:38 -07001678static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1679{
1680 u32 val = 0;
1681
1682 /* Make sure the pipe isn't still relying on us */
1683 assert_pipe_disabled(dev_priv, pipe);
1684
Imre Deake5cbfbf2014-01-09 17:08:16 +02001685 /*
1686 * Leave integrated clock source and reference clock enabled for pipe B.
1687 * The latter is needed for VGA hotplug / manual detection.
1688 */
Jesse Barnesf6071162013-10-01 10:41:38 -07001689 if (pipe == PIPE_B)
Imre Deake5cbfbf2014-01-09 17:08:16 +02001690 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REFA_CLK_ENABLE_VLV;
Jesse Barnesf6071162013-10-01 10:41:38 -07001691 I915_WRITE(DPLL(pipe), val);
1692 POSTING_READ(DPLL(pipe));
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001693
1694}
1695
1696static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1697{
Ville Syrjäläd7520482014-04-09 13:28:59 +03001698 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001699 u32 val;
1700
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001701 /* Make sure the pipe isn't still relying on us */
1702 assert_pipe_disabled(dev_priv, pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001703
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001704 /* Set PLL en = 0 */
Ville Syrjäläd17ec4c2014-06-28 02:03:59 +03001705 val = DPLL_SSC_REF_CLOCK_CHV | DPLL_REFA_CLK_ENABLE_VLV;
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001706 if (pipe != PIPE_A)
1707 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1708 I915_WRITE(DPLL(pipe), val);
1709 POSTING_READ(DPLL(pipe));
Ville Syrjäläd7520482014-04-09 13:28:59 +03001710
1711 mutex_lock(&dev_priv->dpio_lock);
1712
1713 /* Disable 10bit clock to display controller */
1714 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1715 val &= ~DPIO_DCLKP_EN;
1716 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1717
Ville Syrjälä61407f62014-05-27 16:32:55 +03001718 /* disable left/right clock distribution */
1719 if (pipe != PIPE_B) {
1720 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1721 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1722 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1723 } else {
1724 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1725 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1726 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1727 }
1728
Ville Syrjäläd7520482014-04-09 13:28:59 +03001729 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesf6071162013-10-01 10:41:38 -07001730}
1731
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001732void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
1733 struct intel_digital_port *dport)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001734{
1735 u32 port_mask;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001736 int dpll_reg;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001737
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001738 switch (dport->port) {
1739 case PORT_B:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001740 port_mask = DPLL_PORTB_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001741 dpll_reg = DPLL(0);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001742 break;
1743 case PORT_C:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001744 port_mask = DPLL_PORTC_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001745 dpll_reg = DPLL(0);
1746 break;
1747 case PORT_D:
1748 port_mask = DPLL_PORTD_READY_MASK;
1749 dpll_reg = DPIO_PHY_STATUS;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001750 break;
1751 default:
1752 BUG();
1753 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07001754
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001755 if (wait_for((I915_READ(dpll_reg) & port_mask) == 0, 1000))
Jesse Barnes89b667f2013-04-18 14:51:36 -07001756 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001757 port_name(dport->port), I915_READ(dpll_reg));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001758}
1759
Daniel Vetterb14b1052014-04-24 23:55:13 +02001760static void intel_prepare_shared_dpll(struct intel_crtc *crtc)
1761{
1762 struct drm_device *dev = crtc->base.dev;
1763 struct drm_i915_private *dev_priv = dev->dev_private;
1764 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
1765
Chris Wilsonbe19f0f2014-05-28 16:16:42 +01001766 if (WARN_ON(pll == NULL))
1767 return;
1768
Daniel Vetterb14b1052014-04-24 23:55:13 +02001769 WARN_ON(!pll->refcount);
1770 if (pll->active == 0) {
1771 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
1772 WARN_ON(pll->on);
1773 assert_shared_dpll_disabled(dev_priv, pll);
1774
1775 pll->mode_set(dev_priv, pll);
1776 }
1777}
1778
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001779/**
Daniel Vetter85b38942014-04-24 23:55:14 +02001780 * intel_enable_shared_dpll - enable PCH PLL
Jesse Barnes92f25842011-01-04 15:09:34 -08001781 * @dev_priv: i915 private structure
1782 * @pipe: pipe PLL to enable
1783 *
1784 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1785 * drives the transcoder clock.
1786 */
Daniel Vetter85b38942014-04-24 23:55:14 +02001787static void intel_enable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001788{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001789 struct drm_device *dev = crtc->base.dev;
1790 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001791 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes92f25842011-01-04 15:09:34 -08001792
Daniel Vetter87a875b2013-06-05 13:34:19 +02001793 if (WARN_ON(pll == NULL))
Chris Wilson48da64a2012-05-13 20:16:12 +01001794 return;
1795
1796 if (WARN_ON(pll->refcount == 0))
1797 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001798
Damien Lespiau74dd6922014-07-29 18:06:17 +01001799 DRM_DEBUG_KMS("enable %s (active %d, on? %d) for crtc %d\n",
Daniel Vetter46edb022013-06-05 13:34:12 +02001800 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001801 crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001802
Daniel Vettercdbd2312013-06-05 13:34:03 +02001803 if (pll->active++) {
1804 WARN_ON(!pll->on);
Daniel Vettere9d69442013-06-05 13:34:15 +02001805 assert_shared_dpll_enabled(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001806 return;
1807 }
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001808 WARN_ON(pll->on);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001809
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001810 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
1811
Daniel Vetter46edb022013-06-05 13:34:12 +02001812 DRM_DEBUG_KMS("enabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001813 pll->enable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001814 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001815}
1816
Damien Lespiauf6daaec2014-08-09 23:00:56 +01001817static void intel_disable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001818{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001819 struct drm_device *dev = crtc->base.dev;
1820 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001821 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001822
Jesse Barnes92f25842011-01-04 15:09:34 -08001823 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001824 BUG_ON(INTEL_INFO(dev)->gen < 5);
Daniel Vetter87a875b2013-06-05 13:34:19 +02001825 if (WARN_ON(pll == NULL))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001826 return;
1827
Chris Wilson48da64a2012-05-13 20:16:12 +01001828 if (WARN_ON(pll->refcount == 0))
1829 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001830
Daniel Vetter46edb022013-06-05 13:34:12 +02001831 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1832 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001833 crtc->base.base.id);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001834
Chris Wilson48da64a2012-05-13 20:16:12 +01001835 if (WARN_ON(pll->active == 0)) {
Daniel Vettere9d69442013-06-05 13:34:15 +02001836 assert_shared_dpll_disabled(dev_priv, pll);
Chris Wilson48da64a2012-05-13 20:16:12 +01001837 return;
1838 }
1839
Daniel Vettere9d69442013-06-05 13:34:15 +02001840 assert_shared_dpll_enabled(dev_priv, pll);
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001841 WARN_ON(!pll->on);
Daniel Vettercdbd2312013-06-05 13:34:03 +02001842 if (--pll->active)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001843 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001844
Daniel Vetter46edb022013-06-05 13:34:12 +02001845 DRM_DEBUG_KMS("disabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001846 pll->disable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001847 pll->on = false;
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001848
1849 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
Jesse Barnes92f25842011-01-04 15:09:34 -08001850}
1851
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001852static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1853 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001854{
Daniel Vetter23670b322012-11-01 09:15:30 +01001855 struct drm_device *dev = dev_priv->dev;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001856 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vettere2b78262013-06-07 23:10:03 +02001857 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter23670b322012-11-01 09:15:30 +01001858 uint32_t reg, val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001859
1860 /* PCH only available on ILK+ */
Ville Syrjälä55522f32014-09-03 14:09:53 +03001861 BUG_ON(!HAS_PCH_SPLIT(dev));
Jesse Barnes040484a2011-01-03 12:14:26 -08001862
1863 /* Make sure PCH DPLL is enabled */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02001864 assert_shared_dpll_enabled(dev_priv,
Daniel Vettere9d69442013-06-05 13:34:15 +02001865 intel_crtc_to_shared_dpll(intel_crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001866
1867 /* FDI must be feeding us bits for PCH ports */
1868 assert_fdi_tx_enabled(dev_priv, pipe);
1869 assert_fdi_rx_enabled(dev_priv, pipe);
1870
Daniel Vetter23670b322012-11-01 09:15:30 +01001871 if (HAS_PCH_CPT(dev)) {
1872 /* Workaround: Set the timing override bit before enabling the
1873 * pch transcoder. */
1874 reg = TRANS_CHICKEN2(pipe);
1875 val = I915_READ(reg);
1876 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1877 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001878 }
Daniel Vetter23670b322012-11-01 09:15:30 +01001879
Daniel Vetterab9412b2013-05-03 11:49:46 +02001880 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001881 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001882 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001883
1884 if (HAS_PCH_IBX(dev_priv->dev)) {
1885 /*
1886 * make the BPC in transcoder be consistent with
1887 * that in pipeconf reg.
1888 */
Daniel Vetterdfd07d72012-12-17 11:21:38 +01001889 val &= ~PIPECONF_BPC_MASK;
1890 val |= pipeconf_val & PIPECONF_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001891 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001892
1893 val &= ~TRANS_INTERLACE_MASK;
1894 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001895 if (HAS_PCH_IBX(dev_priv->dev) &&
1896 intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO))
1897 val |= TRANS_LEGACY_INTERLACED_ILK;
1898 else
1899 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001900 else
1901 val |= TRANS_PROGRESSIVE;
1902
Jesse Barnes040484a2011-01-03 12:14:26 -08001903 I915_WRITE(reg, val | TRANS_ENABLE);
1904 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001905 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
Jesse Barnes040484a2011-01-03 12:14:26 -08001906}
1907
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001908static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02001909 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08001910{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001911 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001912
1913 /* PCH only available on ILK+ */
Ville Syrjälä55522f32014-09-03 14:09:53 +03001914 BUG_ON(!HAS_PCH_SPLIT(dev_priv->dev));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001915
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001916 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01001917 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02001918 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001919
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001920 /* Workaround: set timing override bit. */
1921 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001922 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001923 I915_WRITE(_TRANSA_CHICKEN2, val);
1924
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02001925 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02001926 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001927
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02001928 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1929 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02001930 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001931 else
1932 val |= TRANS_PROGRESSIVE;
1933
Daniel Vetterab9412b2013-05-03 11:49:46 +02001934 I915_WRITE(LPT_TRANSCONF, val);
1935 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
Paulo Zanoni937bb612012-10-31 18:12:47 -02001936 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001937}
1938
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001939static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1940 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001941{
Daniel Vetter23670b322012-11-01 09:15:30 +01001942 struct drm_device *dev = dev_priv->dev;
1943 uint32_t reg, val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001944
1945 /* FDI relies on the transcoder */
1946 assert_fdi_tx_disabled(dev_priv, pipe);
1947 assert_fdi_rx_disabled(dev_priv, pipe);
1948
Jesse Barnes291906f2011-02-02 12:28:03 -08001949 /* Ports must be off as well */
1950 assert_pch_ports_disabled(dev_priv, pipe);
1951
Daniel Vetterab9412b2013-05-03 11:49:46 +02001952 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001953 val = I915_READ(reg);
1954 val &= ~TRANS_ENABLE;
1955 I915_WRITE(reg, val);
1956 /* wait for PCH transcoder off, transcoder state */
1957 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001958 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
Daniel Vetter23670b322012-11-01 09:15:30 +01001959
1960 if (!HAS_PCH_IBX(dev)) {
1961 /* Workaround: Clear the timing override chicken bit again. */
1962 reg = TRANS_CHICKEN2(pipe);
1963 val = I915_READ(reg);
1964 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1965 I915_WRITE(reg, val);
1966 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001967}
1968
Paulo Zanoniab4d9662012-10-31 18:12:55 -02001969static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001970{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001971 u32 val;
1972
Daniel Vetterab9412b2013-05-03 11:49:46 +02001973 val = I915_READ(LPT_TRANSCONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001974 val &= ~TRANS_ENABLE;
Daniel Vetterab9412b2013-05-03 11:49:46 +02001975 I915_WRITE(LPT_TRANSCONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001976 /* wait for PCH transcoder off, transcoder state */
Daniel Vetterab9412b2013-05-03 11:49:46 +02001977 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02001978 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001979
1980 /* Workaround: clear timing override bit. */
1981 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001982 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001983 I915_WRITE(_TRANSA_CHICKEN2, val);
Jesse Barnes92f25842011-01-04 15:09:34 -08001984}
1985
1986/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001987 * intel_enable_pipe - enable a pipe, asserting requirements
Paulo Zanoni03722642014-01-17 13:51:09 -02001988 * @crtc: crtc responsible for the pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08001989 *
Paulo Zanoni03722642014-01-17 13:51:09 -02001990 * Enable @crtc's pipe, making sure that various hardware specific requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001991 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08001992 */
Paulo Zanonie1fdc472014-01-17 13:51:12 -02001993static void intel_enable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001994{
Paulo Zanoni03722642014-01-17 13:51:09 -02001995 struct drm_device *dev = crtc->base.dev;
1996 struct drm_i915_private *dev_priv = dev->dev_private;
1997 enum pipe pipe = crtc->pipe;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001998 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1999 pipe);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002000 enum pipe pch_transcoder;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002001 int reg;
2002 u32 val;
2003
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002004 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002005 assert_cursor_disabled(dev_priv, pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002006 assert_sprites_disabled(dev_priv, pipe);
2007
Paulo Zanoni681e5812012-12-06 11:12:38 -02002008 if (HAS_PCH_LPT(dev_priv->dev))
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002009 pch_transcoder = TRANSCODER_A;
2010 else
2011 pch_transcoder = pipe;
2012
Jesse Barnesb24e7172011-01-04 15:09:30 -08002013 /*
2014 * A pipe without a PLL won't actually be able to drive bits from
2015 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
2016 * need the check.
2017 */
2018 if (!HAS_PCH_SPLIT(dev_priv->dev))
Paulo Zanonifbf32182014-01-17 13:51:11 -02002019 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DSI))
Jani Nikula23538ef2013-08-27 15:12:22 +03002020 assert_dsi_pll_enabled(dev_priv);
2021 else
2022 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002023 else {
Paulo Zanoni30421c42014-01-17 13:51:10 -02002024 if (crtc->config.has_pch_encoder) {
Jesse Barnes040484a2011-01-03 12:14:26 -08002025 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002026 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002027 assert_fdi_tx_pll_enabled(dev_priv,
2028 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08002029 }
2030 /* FIXME: assert CPU port conditions for SNB+ */
2031 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08002032
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002033 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002034 val = I915_READ(reg);
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002035 if (val & PIPECONF_ENABLE) {
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002036 WARN_ON(!((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
2037 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)));
Chris Wilson00d70b12011-03-17 07:18:29 +00002038 return;
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002039 }
Chris Wilson00d70b12011-03-17 07:18:29 +00002040
2041 I915_WRITE(reg, val | PIPECONF_ENABLE);
Paulo Zanoni851855d2013-12-19 19:12:29 -02002042 POSTING_READ(reg);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002043}
2044
2045/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002046 * intel_disable_pipe - disable a pipe, asserting requirements
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002047 * @crtc: crtc whose pipes is to be disabled
Jesse Barnesb24e7172011-01-04 15:09:30 -08002048 *
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002049 * Disable the pipe of @crtc, making sure that various hardware
2050 * specific requirements are met, if applicable, e.g. plane
2051 * disabled, panel fitter off, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002052 *
2053 * Will wait until the pipe has shut down before returning.
2054 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002055static void intel_disable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002056{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002057 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
2058 enum transcoder cpu_transcoder = crtc->config.cpu_transcoder;
2059 enum pipe pipe = crtc->pipe;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002060 int reg;
2061 u32 val;
2062
2063 /*
2064 * Make sure planes won't keep trying to pump pixels to us,
2065 * or we might hang the display.
2066 */
2067 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002068 assert_cursor_disabled(dev_priv, pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07002069 assert_sprites_disabled(dev_priv, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002070
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002071 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002072 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00002073 if ((val & PIPECONF_ENABLE) == 0)
2074 return;
2075
Ville Syrjälä67adc642014-08-15 01:21:57 +03002076 /*
2077 * Double wide has implications for planes
2078 * so best keep it disabled when not needed.
2079 */
2080 if (crtc->config.double_wide)
2081 val &= ~PIPECONF_DOUBLE_WIDE;
2082
2083 /* Don't disable pipe or pipe PLLs if needed */
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002084 if (!(pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) &&
2085 !(pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Ville Syrjälä67adc642014-08-15 01:21:57 +03002086 val &= ~PIPECONF_ENABLE;
2087
2088 I915_WRITE(reg, val);
2089 if ((val & PIPECONF_ENABLE) == 0)
2090 intel_wait_for_pipe_off(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002091}
2092
Keith Packardd74362c2011-07-28 14:47:14 -07002093/*
2094 * Plane regs are double buffered, going from enabled->disabled needs a
2095 * trigger in order to latch. The display address reg provides this.
2096 */
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002097void intel_flush_primary_plane(struct drm_i915_private *dev_priv,
2098 enum plane plane)
Keith Packardd74362c2011-07-28 14:47:14 -07002099{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00002100 struct drm_device *dev = dev_priv->dev;
2101 u32 reg = INTEL_INFO(dev)->gen >= 4 ? DSPSURF(plane) : DSPADDR(plane);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002102
2103 I915_WRITE(reg, I915_READ(reg));
2104 POSTING_READ(reg);
Keith Packardd74362c2011-07-28 14:47:14 -07002105}
2106
Jesse Barnesb24e7172011-01-04 15:09:30 -08002107/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002108 * intel_enable_primary_hw_plane - enable the primary plane on a given pipe
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002109 * @plane: plane to be enabled
2110 * @crtc: crtc for the plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002111 *
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002112 * Enable @plane on @crtc, making sure that the pipe is running first.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002113 */
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002114static void intel_enable_primary_hw_plane(struct drm_plane *plane,
2115 struct drm_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002116{
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002117 struct drm_device *dev = plane->dev;
2118 struct drm_i915_private *dev_priv = dev->dev_private;
2119 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002120
2121 /* If the pipe isn't enabled, we can't pump pixels and may hang */
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002122 assert_pipe_enabled(dev_priv, intel_crtc->pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002123
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002124 if (intel_crtc->primary_enabled)
2125 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002126
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002127 intel_crtc->primary_enabled = true;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002128
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002129 dev_priv->display.update_primary_plane(crtc, plane->fb,
2130 crtc->x, crtc->y);
Ville Syrjälä33c3b0d2014-06-24 13:59:28 +03002131
2132 /*
2133 * BDW signals flip done immediately if the plane
2134 * is disabled, even if the plane enable is already
2135 * armed to occur at the next vblank :(
2136 */
2137 if (IS_BROADWELL(dev))
2138 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002139}
2140
Jesse Barnesb24e7172011-01-04 15:09:30 -08002141/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002142 * intel_disable_primary_hw_plane - disable the primary hardware plane
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002143 * @plane: plane to be disabled
2144 * @crtc: crtc for the plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002145 *
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002146 * Disable @plane on @crtc, making sure that the pipe is running first.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002147 */
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002148static void intel_disable_primary_hw_plane(struct drm_plane *plane,
2149 struct drm_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002150{
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002151 struct drm_device *dev = plane->dev;
2152 struct drm_i915_private *dev_priv = dev->dev_private;
2153 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2154
2155 assert_pipe_enabled(dev_priv, intel_crtc->pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002156
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002157 if (!intel_crtc->primary_enabled)
2158 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002159
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002160 intel_crtc->primary_enabled = false;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002161
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002162 dev_priv->display.update_primary_plane(crtc, plane->fb,
2163 crtc->x, crtc->y);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002164}
2165
Chris Wilson693db182013-03-05 14:52:39 +00002166static bool need_vtd_wa(struct drm_device *dev)
2167{
2168#ifdef CONFIG_INTEL_IOMMU
2169 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2170 return true;
2171#endif
2172 return false;
2173}
2174
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002175static int intel_align_height(struct drm_device *dev, int height, bool tiled)
2176{
2177 int tile_height;
2178
2179 tile_height = tiled ? (IS_GEN2(dev) ? 16 : 8) : 1;
2180 return ALIGN(height, tile_height);
2181}
2182
Chris Wilson127bd2a2010-07-23 23:32:05 +01002183int
Chris Wilson48b956c2010-09-14 12:50:34 +01002184intel_pin_and_fence_fb_obj(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00002185 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002186 struct intel_engine_cs *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002187{
Chris Wilsonce453d82011-02-21 14:43:56 +00002188 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002189 u32 alignment;
2190 int ret;
2191
Matt Roperebcdd392014-07-09 16:22:11 -07002192 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
2193
Chris Wilson05394f32010-11-08 19:18:58 +00002194 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002195 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01002196 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
2197 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002198 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01002199 alignment = 4 * 1024;
2200 else
2201 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002202 break;
2203 case I915_TILING_X:
2204 /* pin() will align the object as required by fence */
2205 alignment = 0;
2206 break;
2207 case I915_TILING_Y:
Daniel Vetter80075d42013-10-09 21:23:52 +02002208 WARN(1, "Y tiled bo slipped through, driver bug!\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002209 return -EINVAL;
2210 default:
2211 BUG();
2212 }
2213
Chris Wilson693db182013-03-05 14:52:39 +00002214 /* Note that the w/a also requires 64 PTE of padding following the
2215 * bo. We currently fill all unused PTE with the shadow page and so
2216 * we should always have valid PTE following the scanout preventing
2217 * the VT-d warning.
2218 */
2219 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2220 alignment = 256 * 1024;
2221
Chris Wilsonce453d82011-02-21 14:43:56 +00002222 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002223 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01002224 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00002225 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002226
2227 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2228 * fence, whereas 965+ only requires a fence if using
2229 * framebuffer compression. For simplicity, we always install
2230 * a fence as the cost is not that onerous.
2231 */
Chris Wilson06d98132012-04-17 15:31:24 +01002232 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002233 if (ret)
2234 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002235
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002236 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002237
Chris Wilsonce453d82011-02-21 14:43:56 +00002238 dev_priv->mm.interruptible = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002239 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01002240
2241err_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01002242 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00002243err_interruptible:
2244 dev_priv->mm.interruptible = true;
Chris Wilson48b956c2010-09-14 12:50:34 +01002245 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002246}
2247
Chris Wilson1690e1e2011-12-14 13:57:08 +01002248void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
2249{
Matt Roperebcdd392014-07-09 16:22:11 -07002250 WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex));
2251
Chris Wilson1690e1e2011-12-14 13:57:08 +01002252 i915_gem_object_unpin_fence(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01002253 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002254}
2255
Daniel Vetterc2c75132012-07-05 12:17:30 +02002256/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2257 * is assumed to be a power-of-two. */
Chris Wilsonbc752862013-02-21 20:04:31 +00002258unsigned long intel_gen4_compute_page_offset(int *x, int *y,
2259 unsigned int tiling_mode,
2260 unsigned int cpp,
2261 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02002262{
Chris Wilsonbc752862013-02-21 20:04:31 +00002263 if (tiling_mode != I915_TILING_NONE) {
2264 unsigned int tile_rows, tiles;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002265
Chris Wilsonbc752862013-02-21 20:04:31 +00002266 tile_rows = *y / 8;
2267 *y %= 8;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002268
Chris Wilsonbc752862013-02-21 20:04:31 +00002269 tiles = *x / (512/cpp);
2270 *x %= 512/cpp;
2271
2272 return tile_rows * pitch * 8 + tiles * 4096;
2273 } else {
2274 unsigned int offset;
2275
2276 offset = *y * pitch + *x * cpp;
2277 *y = 0;
2278 *x = (offset & 4095) / cpp;
2279 return offset & -4096;
2280 }
Daniel Vetterc2c75132012-07-05 12:17:30 +02002281}
2282
Jesse Barnes46f297f2014-03-07 08:57:48 -08002283int intel_format_to_fourcc(int format)
2284{
2285 switch (format) {
2286 case DISPPLANE_8BPP:
2287 return DRM_FORMAT_C8;
2288 case DISPPLANE_BGRX555:
2289 return DRM_FORMAT_XRGB1555;
2290 case DISPPLANE_BGRX565:
2291 return DRM_FORMAT_RGB565;
2292 default:
2293 case DISPPLANE_BGRX888:
2294 return DRM_FORMAT_XRGB8888;
2295 case DISPPLANE_RGBX888:
2296 return DRM_FORMAT_XBGR8888;
2297 case DISPPLANE_BGRX101010:
2298 return DRM_FORMAT_XRGB2101010;
2299 case DISPPLANE_RGBX101010:
2300 return DRM_FORMAT_XBGR2101010;
2301 }
2302}
2303
Jesse Barnes484b41d2014-03-07 08:57:55 -08002304static bool intel_alloc_plane_obj(struct intel_crtc *crtc,
Jesse Barnes46f297f2014-03-07 08:57:48 -08002305 struct intel_plane_config *plane_config)
2306{
2307 struct drm_device *dev = crtc->base.dev;
2308 struct drm_i915_gem_object *obj = NULL;
2309 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
2310 u32 base = plane_config->base;
2311
Chris Wilsonff2652e2014-03-10 08:07:02 +00002312 if (plane_config->size == 0)
2313 return false;
2314
Jesse Barnes46f297f2014-03-07 08:57:48 -08002315 obj = i915_gem_object_create_stolen_for_preallocated(dev, base, base,
2316 plane_config->size);
2317 if (!obj)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002318 return false;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002319
2320 if (plane_config->tiled) {
2321 obj->tiling_mode = I915_TILING_X;
Dave Airlie66e514c2014-04-03 07:51:54 +10002322 obj->stride = crtc->base.primary->fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002323 }
2324
Dave Airlie66e514c2014-04-03 07:51:54 +10002325 mode_cmd.pixel_format = crtc->base.primary->fb->pixel_format;
2326 mode_cmd.width = crtc->base.primary->fb->width;
2327 mode_cmd.height = crtc->base.primary->fb->height;
2328 mode_cmd.pitches[0] = crtc->base.primary->fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002329
2330 mutex_lock(&dev->struct_mutex);
2331
Dave Airlie66e514c2014-04-03 07:51:54 +10002332 if (intel_framebuffer_init(dev, to_intel_framebuffer(crtc->base.primary->fb),
Jesse Barnes484b41d2014-03-07 08:57:55 -08002333 &mode_cmd, obj)) {
Jesse Barnes46f297f2014-03-07 08:57:48 -08002334 DRM_DEBUG_KMS("intel fb init failed\n");
2335 goto out_unref_obj;
2336 }
2337
Daniel Vettera071fa02014-06-18 23:28:09 +02002338 obj->frontbuffer_bits = INTEL_FRONTBUFFER_PRIMARY(crtc->pipe);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002339 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002340
2341 DRM_DEBUG_KMS("plane fb obj %p\n", obj);
2342 return true;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002343
2344out_unref_obj:
2345 drm_gem_object_unreference(&obj->base);
2346 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002347 return false;
2348}
2349
2350static void intel_find_plane_obj(struct intel_crtc *intel_crtc,
2351 struct intel_plane_config *plane_config)
2352{
2353 struct drm_device *dev = intel_crtc->base.dev;
2354 struct drm_crtc *c;
2355 struct intel_crtc *i;
Matt Roper2ff8fde2014-07-08 07:50:07 -07002356 struct drm_i915_gem_object *obj;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002357
Dave Airlie66e514c2014-04-03 07:51:54 +10002358 if (!intel_crtc->base.primary->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002359 return;
2360
2361 if (intel_alloc_plane_obj(intel_crtc, plane_config))
2362 return;
2363
Dave Airlie66e514c2014-04-03 07:51:54 +10002364 kfree(intel_crtc->base.primary->fb);
2365 intel_crtc->base.primary->fb = NULL;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002366
2367 /*
2368 * Failed to alloc the obj, check to see if we should share
2369 * an fb with another CRTC instead
2370 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002371 for_each_crtc(dev, c) {
Jesse Barnes484b41d2014-03-07 08:57:55 -08002372 i = to_intel_crtc(c);
2373
2374 if (c == &intel_crtc->base)
2375 continue;
2376
Matt Roper2ff8fde2014-07-08 07:50:07 -07002377 if (!i->active)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002378 continue;
2379
Matt Roper2ff8fde2014-07-08 07:50:07 -07002380 obj = intel_fb_obj(c->primary->fb);
2381 if (obj == NULL)
2382 continue;
2383
2384 if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) {
Dave Airlie66e514c2014-04-03 07:51:54 +10002385 drm_framebuffer_reference(c->primary->fb);
2386 intel_crtc->base.primary->fb = c->primary->fb;
Matt Roper2ff8fde2014-07-08 07:50:07 -07002387 obj->frontbuffer_bits |= INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002388 break;
2389 }
2390 }
Jesse Barnes46f297f2014-03-07 08:57:48 -08002391}
2392
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002393static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2394 struct drm_framebuffer *fb,
2395 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07002396{
2397 struct drm_device *dev = crtc->dev;
2398 struct drm_i915_private *dev_priv = dev->dev_private;
2399 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002400 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002401 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002402 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002403 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002404 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302405 int pixel_size;
2406
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002407 if (!intel_crtc->primary_enabled) {
2408 I915_WRITE(reg, 0);
2409 if (INTEL_INFO(dev)->gen >= 4)
2410 I915_WRITE(DSPSURF(plane), 0);
2411 else
2412 I915_WRITE(DSPADDR(plane), 0);
2413 POSTING_READ(reg);
2414 return;
2415 }
2416
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002417 obj = intel_fb_obj(fb);
2418 if (WARN_ON(obj == NULL))
2419 return;
2420
2421 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2422
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002423 dspcntr = DISPPLANE_GAMMA_ENABLE;
2424
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002425 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002426
2427 if (INTEL_INFO(dev)->gen < 4) {
2428 if (intel_crtc->pipe == PIPE_B)
2429 dspcntr |= DISPPLANE_SEL_PIPE_B;
2430
2431 /* pipesrc and dspsize control the size that is scaled from,
2432 * which should always be the user's requested size.
2433 */
2434 I915_WRITE(DSPSIZE(plane),
2435 ((intel_crtc->config.pipe_src_h - 1) << 16) |
2436 (intel_crtc->config.pipe_src_w - 1));
2437 I915_WRITE(DSPPOS(plane), 0);
2438 }
2439
Ville Syrjälä57779d02012-10-31 17:50:14 +02002440 switch (fb->pixel_format) {
2441 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002442 dspcntr |= DISPPLANE_8BPP;
2443 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002444 case DRM_FORMAT_XRGB1555:
2445 case DRM_FORMAT_ARGB1555:
2446 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002447 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002448 case DRM_FORMAT_RGB565:
2449 dspcntr |= DISPPLANE_BGRX565;
2450 break;
2451 case DRM_FORMAT_XRGB8888:
2452 case DRM_FORMAT_ARGB8888:
2453 dspcntr |= DISPPLANE_BGRX888;
2454 break;
2455 case DRM_FORMAT_XBGR8888:
2456 case DRM_FORMAT_ABGR8888:
2457 dspcntr |= DISPPLANE_RGBX888;
2458 break;
2459 case DRM_FORMAT_XRGB2101010:
2460 case DRM_FORMAT_ARGB2101010:
2461 dspcntr |= DISPPLANE_BGRX101010;
2462 break;
2463 case DRM_FORMAT_XBGR2101010:
2464 case DRM_FORMAT_ABGR2101010:
2465 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002466 break;
2467 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002468 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07002469 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002470
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002471 if (INTEL_INFO(dev)->gen >= 4 &&
2472 obj->tiling_mode != I915_TILING_NONE)
2473 dspcntr |= DISPPLANE_TILED;
Jesse Barnes81255562010-08-02 12:07:50 -07002474
Ville Syrjäläde1aa622013-06-07 10:47:01 +03002475 if (IS_G4X(dev))
2476 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2477
Ville Syrjäläb98971272014-08-27 16:51:22 +03002478 linear_offset = y * fb->pitches[0] + x * pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002479
Daniel Vetterc2c75132012-07-05 12:17:30 +02002480 if (INTEL_INFO(dev)->gen >= 4) {
2481 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002482 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002483 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002484 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002485 linear_offset -= intel_crtc->dspaddr_offset;
2486 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002487 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002488 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002489
Sonika Jindal48404c12014-08-22 14:06:04 +05302490 if (to_intel_plane(crtc->primary)->rotation == BIT(DRM_ROTATE_180)) {
2491 dspcntr |= DISPPLANE_ROTATE_180;
2492
2493 x += (intel_crtc->config.pipe_src_w - 1);
2494 y += (intel_crtc->config.pipe_src_h - 1);
2495
2496 /* Finding the last pixel of the last line of the display
2497 data and adding to linear_offset*/
2498 linear_offset +=
2499 (intel_crtc->config.pipe_src_h - 1) * fb->pitches[0] +
2500 (intel_crtc->config.pipe_src_w - 1) * pixel_size;
2501 }
2502
2503 I915_WRITE(reg, dspcntr);
2504
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002505 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2506 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2507 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002508 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002509 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002510 I915_WRITE(DSPSURF(plane),
2511 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002512 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002513 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002514 } else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002515 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002516 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002517}
2518
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002519static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2520 struct drm_framebuffer *fb,
2521 int x, int y)
Jesse Barnes17638cd2011-06-24 12:19:23 -07002522{
2523 struct drm_device *dev = crtc->dev;
2524 struct drm_i915_private *dev_priv = dev->dev_private;
2525 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002526 struct drm_i915_gem_object *obj;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002527 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002528 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002529 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002530 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302531 int pixel_size;
2532
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002533 if (!intel_crtc->primary_enabled) {
2534 I915_WRITE(reg, 0);
2535 I915_WRITE(DSPSURF(plane), 0);
2536 POSTING_READ(reg);
2537 return;
2538 }
2539
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002540 obj = intel_fb_obj(fb);
2541 if (WARN_ON(obj == NULL))
2542 return;
2543
2544 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2545
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002546 dspcntr = DISPPLANE_GAMMA_ENABLE;
2547
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002548 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002549
2550 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
2551 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
2552
Ville Syrjälä57779d02012-10-31 17:50:14 +02002553 switch (fb->pixel_format) {
2554 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002555 dspcntr |= DISPPLANE_8BPP;
2556 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002557 case DRM_FORMAT_RGB565:
2558 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002559 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002560 case DRM_FORMAT_XRGB8888:
2561 case DRM_FORMAT_ARGB8888:
2562 dspcntr |= DISPPLANE_BGRX888;
2563 break;
2564 case DRM_FORMAT_XBGR8888:
2565 case DRM_FORMAT_ABGR8888:
2566 dspcntr |= DISPPLANE_RGBX888;
2567 break;
2568 case DRM_FORMAT_XRGB2101010:
2569 case DRM_FORMAT_ARGB2101010:
2570 dspcntr |= DISPPLANE_BGRX101010;
2571 break;
2572 case DRM_FORMAT_XBGR2101010:
2573 case DRM_FORMAT_ABGR2101010:
2574 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002575 break;
2576 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002577 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002578 }
2579
2580 if (obj->tiling_mode != I915_TILING_NONE)
2581 dspcntr |= DISPPLANE_TILED;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002582
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002583 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03002584 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002585
Ville Syrjäläb98971272014-08-27 16:51:22 +03002586 linear_offset = y * fb->pitches[0] + x * pixel_size;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002587 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002588 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002589 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002590 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002591 linear_offset -= intel_crtc->dspaddr_offset;
Sonika Jindal48404c12014-08-22 14:06:04 +05302592 if (to_intel_plane(crtc->primary)->rotation == BIT(DRM_ROTATE_180)) {
2593 dspcntr |= DISPPLANE_ROTATE_180;
2594
2595 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
2596 x += (intel_crtc->config.pipe_src_w - 1);
2597 y += (intel_crtc->config.pipe_src_h - 1);
2598
2599 /* Finding the last pixel of the last line of the display
2600 data and adding to linear_offset*/
2601 linear_offset +=
2602 (intel_crtc->config.pipe_src_h - 1) * fb->pitches[0] +
2603 (intel_crtc->config.pipe_src_w - 1) * pixel_size;
2604 }
2605 }
2606
2607 I915_WRITE(reg, dspcntr);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002608
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002609 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2610 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2611 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002612 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002613 I915_WRITE(DSPSURF(plane),
2614 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Paulo Zanonib3dc6852013-11-02 21:07:33 -07002615 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002616 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2617 } else {
2618 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2619 I915_WRITE(DSPLINOFF(plane), linear_offset);
2620 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002621 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002622}
2623
2624/* Assume fb object is pinned & idle & fenced and just update base pointers */
2625static int
2626intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2627 int x, int y, enum mode_set_atomic state)
2628{
2629 struct drm_device *dev = crtc->dev;
2630 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002631
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002632 if (dev_priv->display.disable_fbc)
2633 dev_priv->display.disable_fbc(dev);
Daniel Vettercc365132014-06-18 13:59:13 +02002634 intel_increase_pllclock(dev, to_intel_crtc(crtc)->pipe);
Jesse Barnes81255562010-08-02 12:07:50 -07002635
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002636 dev_priv->display.update_primary_plane(crtc, fb, x, y);
2637
2638 return 0;
Jesse Barnes81255562010-08-02 12:07:50 -07002639}
2640
Ville Syrjälä96a02912013-02-18 19:08:49 +02002641void intel_display_handle_reset(struct drm_device *dev)
2642{
2643 struct drm_i915_private *dev_priv = dev->dev_private;
2644 struct drm_crtc *crtc;
2645
2646 /*
2647 * Flips in the rings have been nuked by the reset,
2648 * so complete all pending flips so that user space
2649 * will get its events and not get stuck.
2650 *
2651 * Also update the base address of all primary
2652 * planes to the the last fb to make sure we're
2653 * showing the correct fb after a reset.
2654 *
2655 * Need to make two loops over the crtcs so that we
2656 * don't try to grab a crtc mutex before the
2657 * pending_flip_queue really got woken up.
2658 */
2659
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002660 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002661 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2662 enum plane plane = intel_crtc->plane;
2663
2664 intel_prepare_page_flip(dev, plane);
2665 intel_finish_page_flip_plane(dev, plane);
2666 }
2667
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002668 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002669 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2670
Rob Clark51fd3712013-11-19 12:10:12 -05002671 drm_modeset_lock(&crtc->mutex, NULL);
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002672 /*
2673 * FIXME: Once we have proper support for primary planes (and
2674 * disabling them without disabling the entire crtc) allow again
Dave Airlie66e514c2014-04-03 07:51:54 +10002675 * a NULL crtc->primary->fb.
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002676 */
Matt Roperf4510a22014-04-01 15:22:40 -07002677 if (intel_crtc->active && crtc->primary->fb)
Matt Roper262ca2b2014-03-18 17:22:55 -07002678 dev_priv->display.update_primary_plane(crtc,
Dave Airlie66e514c2014-04-03 07:51:54 +10002679 crtc->primary->fb,
Matt Roper262ca2b2014-03-18 17:22:55 -07002680 crtc->x,
2681 crtc->y);
Rob Clark51fd3712013-11-19 12:10:12 -05002682 drm_modeset_unlock(&crtc->mutex);
Ville Syrjälä96a02912013-02-18 19:08:49 +02002683 }
2684}
2685
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002686static int
Chris Wilson14667a42012-04-03 17:58:35 +01002687intel_finish_fb(struct drm_framebuffer *old_fb)
2688{
Matt Roper2ff8fde2014-07-08 07:50:07 -07002689 struct drm_i915_gem_object *obj = intel_fb_obj(old_fb);
Chris Wilson14667a42012-04-03 17:58:35 +01002690 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2691 bool was_interruptible = dev_priv->mm.interruptible;
2692 int ret;
2693
Chris Wilson14667a42012-04-03 17:58:35 +01002694 /* Big Hammer, we also need to ensure that any pending
2695 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2696 * current scanout is retired before unpinning the old
2697 * framebuffer.
2698 *
2699 * This should only fail upon a hung GPU, in which case we
2700 * can safely continue.
2701 */
2702 dev_priv->mm.interruptible = false;
2703 ret = i915_gem_object_finish_gpu(obj);
2704 dev_priv->mm.interruptible = was_interruptible;
2705
2706 return ret;
2707}
2708
Chris Wilson7d5e3792014-03-04 13:15:08 +00002709static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2710{
2711 struct drm_device *dev = crtc->dev;
2712 struct drm_i915_private *dev_priv = dev->dev_private;
2713 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2714 unsigned long flags;
2715 bool pending;
2716
2717 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
2718 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
2719 return false;
2720
2721 spin_lock_irqsave(&dev->event_lock, flags);
2722 pending = to_intel_crtc(crtc)->unpin_work != NULL;
2723 spin_unlock_irqrestore(&dev->event_lock, flags);
2724
2725 return pending;
2726}
2727
Chris Wilson14667a42012-04-03 17:58:35 +01002728static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002729intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002730 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08002731{
2732 struct drm_device *dev = crtc->dev;
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002733 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08002734 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettera071fa02014-06-18 23:28:09 +02002735 enum pipe pipe = intel_crtc->pipe;
Matt Roper2ff8fde2014-07-08 07:50:07 -07002736 struct drm_framebuffer *old_fb = crtc->primary->fb;
2737 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
2738 struct drm_i915_gem_object *old_obj = intel_fb_obj(old_fb);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002739 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002740
Chris Wilson7d5e3792014-03-04 13:15:08 +00002741 if (intel_crtc_has_pending_flip(crtc)) {
2742 DRM_ERROR("pipe is still busy with an old pageflip\n");
2743 return -EBUSY;
2744 }
2745
Jesse Barnes79e53942008-11-07 14:24:08 -08002746 /* no fb bound */
Daniel Vetter94352cf2012-07-05 22:51:56 +02002747 if (!fb) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002748 DRM_ERROR("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002749 return 0;
2750 }
2751
Ben Widawsky7eb552a2013-03-13 14:05:41 -07002752 if (intel_crtc->plane > INTEL_INFO(dev)->num_pipes) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002753 DRM_ERROR("no plane for crtc: plane %c, num_pipes %d\n",
2754 plane_name(intel_crtc->plane),
2755 INTEL_INFO(dev)->num_pipes);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002756 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08002757 }
2758
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002759 mutex_lock(&dev->struct_mutex);
Daniel Vettera071fa02014-06-18 23:28:09 +02002760 ret = intel_pin_and_fence_fb_obj(dev, obj, NULL);
2761 if (ret == 0)
Matt Roper91565c82014-06-24 17:05:02 -07002762 i915_gem_track_fb(old_obj, obj,
Daniel Vettera071fa02014-06-18 23:28:09 +02002763 INTEL_FRONTBUFFER_PRIMARY(pipe));
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002764 mutex_unlock(&dev->struct_mutex);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002765 if (ret != 0) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002766 DRM_ERROR("pin & fence failed\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002767 return ret;
2768 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002769
Damien Lespiaubb2043d2013-09-30 14:21:49 +01002770 /*
2771 * Update pipe size and adjust fitter if needed: the reason for this is
2772 * that in compute_mode_changes we check the native mode (not the pfit
2773 * mode) to see if we can flip rather than do a full mode set. In the
2774 * fastboot case, we'll flip, but if we don't update the pipesrc and
2775 * pfit state, we'll end up with a big fb scanned out into the wrong
2776 * sized surface.
2777 *
2778 * To fix this properly, we need to hoist the checks up into
2779 * compute_mode_changes (or above), check the actual pfit state and
2780 * whether the platform allows pfit disable with pipe active, and only
2781 * then update the pipesrc and pfit state, even on the flip path.
2782 */
Jani Nikulad330a952014-01-21 11:24:25 +02002783 if (i915.fastboot) {
Damien Lespiaud7bf63f2013-09-30 14:21:50 +01002784 const struct drm_display_mode *adjusted_mode =
2785 &intel_crtc->config.adjusted_mode;
2786
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002787 I915_WRITE(PIPESRC(intel_crtc->pipe),
Damien Lespiaud7bf63f2013-09-30 14:21:50 +01002788 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
2789 (adjusted_mode->crtc_vdisplay - 1));
Chris Wilsonfd4daa92013-08-27 17:04:17 +01002790 if (!intel_crtc->config.pch_pfit.enabled &&
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002791 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
2792 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
2793 I915_WRITE(PF_CTL(intel_crtc->pipe), 0);
2794 I915_WRITE(PF_WIN_POS(intel_crtc->pipe), 0);
2795 I915_WRITE(PF_WIN_SZ(intel_crtc->pipe), 0);
2796 }
Jesse Barnes0637d602013-12-19 10:48:01 -08002797 intel_crtc->config.pipe_src_w = adjusted_mode->crtc_hdisplay;
2798 intel_crtc->config.pipe_src_h = adjusted_mode->crtc_vdisplay;
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002799 }
2800
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002801 dev_priv->display.update_primary_plane(crtc, fb, x, y);
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002802
Daniel Vetterf99d7062014-06-19 16:01:59 +02002803 if (intel_crtc->active)
2804 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
2805
Matt Roperf4510a22014-04-01 15:22:40 -07002806 crtc->primary->fb = fb;
Daniel Vetter6c4c86f2012-09-10 21:58:30 +02002807 crtc->x = x;
2808 crtc->y = y;
Daniel Vetter94352cf2012-07-05 22:51:56 +02002809
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002810 if (old_fb) {
Daniel Vetterd7697ee2013-06-02 17:23:01 +02002811 if (intel_crtc->active && old_fb != fb)
2812 intel_wait_for_vblank(dev, intel_crtc->pipe);
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002813 mutex_lock(&dev->struct_mutex);
Matt Roper2ff8fde2014-07-08 07:50:07 -07002814 intel_unpin_fb_obj(old_obj);
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002815 mutex_unlock(&dev->struct_mutex);
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002816 }
Jesse Barnes652c3932009-08-17 13:31:43 -07002817
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002818 mutex_lock(&dev->struct_mutex);
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002819 intel_update_fbc(dev);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002820 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08002821
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002822 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002823}
2824
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002825static void intel_fdi_normal_train(struct drm_crtc *crtc)
2826{
2827 struct drm_device *dev = crtc->dev;
2828 struct drm_i915_private *dev_priv = dev->dev_private;
2829 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2830 int pipe = intel_crtc->pipe;
2831 u32 reg, temp;
2832
2833 /* enable normal train */
2834 reg = FDI_TX_CTL(pipe);
2835 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07002836 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002837 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2838 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07002839 } else {
2840 temp &= ~FDI_LINK_TRAIN_NONE;
2841 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07002842 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002843 I915_WRITE(reg, temp);
2844
2845 reg = FDI_RX_CTL(pipe);
2846 temp = I915_READ(reg);
2847 if (HAS_PCH_CPT(dev)) {
2848 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2849 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2850 } else {
2851 temp &= ~FDI_LINK_TRAIN_NONE;
2852 temp |= FDI_LINK_TRAIN_NONE;
2853 }
2854 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2855
2856 /* wait one idle pattern time */
2857 POSTING_READ(reg);
2858 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07002859
2860 /* IVB wants error correction enabled */
2861 if (IS_IVYBRIDGE(dev))
2862 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2863 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002864}
2865
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01002866static bool pipe_has_enabled_pch(struct intel_crtc *crtc)
Daniel Vetter1e833f42013-02-19 22:31:57 +01002867{
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01002868 return crtc->base.enabled && crtc->active &&
2869 crtc->config.has_pch_encoder;
Daniel Vetter1e833f42013-02-19 22:31:57 +01002870}
2871
Daniel Vetter01a415f2012-10-27 15:58:40 +02002872static void ivb_modeset_global_resources(struct drm_device *dev)
2873{
2874 struct drm_i915_private *dev_priv = dev->dev_private;
2875 struct intel_crtc *pipe_B_crtc =
2876 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
2877 struct intel_crtc *pipe_C_crtc =
2878 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
2879 uint32_t temp;
2880
Daniel Vetter1e833f42013-02-19 22:31:57 +01002881 /*
2882 * When everything is off disable fdi C so that we could enable fdi B
2883 * with all lanes. Note that we don't care about enabled pipes without
2884 * an enabled pch encoder.
2885 */
2886 if (!pipe_has_enabled_pch(pipe_B_crtc) &&
2887 !pipe_has_enabled_pch(pipe_C_crtc)) {
Daniel Vetter01a415f2012-10-27 15:58:40 +02002888 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
2889 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
2890
2891 temp = I915_READ(SOUTH_CHICKEN1);
2892 temp &= ~FDI_BC_BIFURCATION_SELECT;
2893 DRM_DEBUG_KMS("disabling fdi C rx\n");
2894 I915_WRITE(SOUTH_CHICKEN1, temp);
2895 }
2896}
2897
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002898/* The FDI link training functions for ILK/Ibexpeak. */
2899static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2900{
2901 struct drm_device *dev = crtc->dev;
2902 struct drm_i915_private *dev_priv = dev->dev_private;
2903 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2904 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01002905 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002906
Ville Syrjälä1c8562f2014-04-25 22:12:07 +03002907 /* FDI needs bits from pipe first */
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002908 assert_pipe_enabled(dev_priv, pipe);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002909
Adam Jacksone1a44742010-06-25 15:32:14 -04002910 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2911 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002912 reg = FDI_RX_IMR(pipe);
2913 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002914 temp &= ~FDI_RX_SYMBOL_LOCK;
2915 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002916 I915_WRITE(reg, temp);
2917 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002918 udelay(150);
2919
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002920 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002921 reg = FDI_TX_CTL(pipe);
2922 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002923 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2924 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002925 temp &= ~FDI_LINK_TRAIN_NONE;
2926 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002927 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002928
Chris Wilson5eddb702010-09-11 13:48:45 +01002929 reg = FDI_RX_CTL(pipe);
2930 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002931 temp &= ~FDI_LINK_TRAIN_NONE;
2932 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002933 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2934
2935 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002936 udelay(150);
2937
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002938 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01002939 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2940 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2941 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002942
Chris Wilson5eddb702010-09-11 13:48:45 +01002943 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002944 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002945 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002946 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2947
2948 if ((temp & FDI_RX_BIT_LOCK)) {
2949 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002950 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002951 break;
2952 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002953 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002954 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002955 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002956
2957 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002958 reg = FDI_TX_CTL(pipe);
2959 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002960 temp &= ~FDI_LINK_TRAIN_NONE;
2961 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002962 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002963
Chris Wilson5eddb702010-09-11 13:48:45 +01002964 reg = FDI_RX_CTL(pipe);
2965 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002966 temp &= ~FDI_LINK_TRAIN_NONE;
2967 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002968 I915_WRITE(reg, temp);
2969
2970 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002971 udelay(150);
2972
Chris Wilson5eddb702010-09-11 13:48:45 +01002973 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002974 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002975 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002976 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2977
2978 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002979 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002980 DRM_DEBUG_KMS("FDI train 2 done.\n");
2981 break;
2982 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002983 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002984 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002985 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002986
2987 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07002988
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002989}
2990
Akshay Joshi0206e352011-08-16 15:34:10 -04002991static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002992 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2993 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2994 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2995 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2996};
2997
2998/* The FDI link training functions for SNB/Cougarpoint. */
2999static void gen6_fdi_link_train(struct drm_crtc *crtc)
3000{
3001 struct drm_device *dev = crtc->dev;
3002 struct drm_i915_private *dev_priv = dev->dev_private;
3003 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3004 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05003005 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003006
Adam Jacksone1a44742010-06-25 15:32:14 -04003007 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3008 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003009 reg = FDI_RX_IMR(pipe);
3010 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003011 temp &= ~FDI_RX_SYMBOL_LOCK;
3012 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003013 I915_WRITE(reg, temp);
3014
3015 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003016 udelay(150);
3017
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003018 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003019 reg = FDI_TX_CTL(pipe);
3020 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003021 temp &= ~FDI_DP_PORT_WIDTH_MASK;
3022 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003023 temp &= ~FDI_LINK_TRAIN_NONE;
3024 temp |= FDI_LINK_TRAIN_PATTERN_1;
3025 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3026 /* SNB-B */
3027 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01003028 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003029
Daniel Vetterd74cf322012-10-26 10:58:13 +02003030 I915_WRITE(FDI_RX_MISC(pipe),
3031 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3032
Chris Wilson5eddb702010-09-11 13:48:45 +01003033 reg = FDI_RX_CTL(pipe);
3034 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003035 if (HAS_PCH_CPT(dev)) {
3036 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3037 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3038 } else {
3039 temp &= ~FDI_LINK_TRAIN_NONE;
3040 temp |= FDI_LINK_TRAIN_PATTERN_1;
3041 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003042 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3043
3044 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003045 udelay(150);
3046
Akshay Joshi0206e352011-08-16 15:34:10 -04003047 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003048 reg = FDI_TX_CTL(pipe);
3049 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003050 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3051 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003052 I915_WRITE(reg, temp);
3053
3054 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003055 udelay(500);
3056
Sean Paulfa37d392012-03-02 12:53:39 -05003057 for (retry = 0; retry < 5; retry++) {
3058 reg = FDI_RX_IIR(pipe);
3059 temp = I915_READ(reg);
3060 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3061 if (temp & FDI_RX_BIT_LOCK) {
3062 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3063 DRM_DEBUG_KMS("FDI train 1 done.\n");
3064 break;
3065 }
3066 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003067 }
Sean Paulfa37d392012-03-02 12:53:39 -05003068 if (retry < 5)
3069 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003070 }
3071 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003072 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003073
3074 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003075 reg = FDI_TX_CTL(pipe);
3076 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003077 temp &= ~FDI_LINK_TRAIN_NONE;
3078 temp |= FDI_LINK_TRAIN_PATTERN_2;
3079 if (IS_GEN6(dev)) {
3080 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3081 /* SNB-B */
3082 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3083 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003084 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003085
Chris Wilson5eddb702010-09-11 13:48:45 +01003086 reg = FDI_RX_CTL(pipe);
3087 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003088 if (HAS_PCH_CPT(dev)) {
3089 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3090 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3091 } else {
3092 temp &= ~FDI_LINK_TRAIN_NONE;
3093 temp |= FDI_LINK_TRAIN_PATTERN_2;
3094 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003095 I915_WRITE(reg, temp);
3096
3097 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003098 udelay(150);
3099
Akshay Joshi0206e352011-08-16 15:34:10 -04003100 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003101 reg = FDI_TX_CTL(pipe);
3102 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003103 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3104 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003105 I915_WRITE(reg, temp);
3106
3107 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003108 udelay(500);
3109
Sean Paulfa37d392012-03-02 12:53:39 -05003110 for (retry = 0; retry < 5; retry++) {
3111 reg = FDI_RX_IIR(pipe);
3112 temp = I915_READ(reg);
3113 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3114 if (temp & FDI_RX_SYMBOL_LOCK) {
3115 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3116 DRM_DEBUG_KMS("FDI train 2 done.\n");
3117 break;
3118 }
3119 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003120 }
Sean Paulfa37d392012-03-02 12:53:39 -05003121 if (retry < 5)
3122 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003123 }
3124 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003125 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003126
3127 DRM_DEBUG_KMS("FDI train done.\n");
3128}
3129
Jesse Barnes357555c2011-04-28 15:09:55 -07003130/* Manual link training for Ivy Bridge A0 parts */
3131static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3132{
3133 struct drm_device *dev = crtc->dev;
3134 struct drm_i915_private *dev_priv = dev->dev_private;
3135 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3136 int pipe = intel_crtc->pipe;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003137 u32 reg, temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07003138
3139 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3140 for train result */
3141 reg = FDI_RX_IMR(pipe);
3142 temp = I915_READ(reg);
3143 temp &= ~FDI_RX_SYMBOL_LOCK;
3144 temp &= ~FDI_RX_BIT_LOCK;
3145 I915_WRITE(reg, temp);
3146
3147 POSTING_READ(reg);
3148 udelay(150);
3149
Daniel Vetter01a415f2012-10-27 15:58:40 +02003150 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3151 I915_READ(FDI_RX_IIR(pipe)));
3152
Jesse Barnes139ccd32013-08-19 11:04:55 -07003153 /* Try each vswing and preemphasis setting twice before moving on */
3154 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3155 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07003156 reg = FDI_TX_CTL(pipe);
3157 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003158 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3159 temp &= ~FDI_TX_ENABLE;
3160 I915_WRITE(reg, temp);
3161
3162 reg = FDI_RX_CTL(pipe);
3163 temp = I915_READ(reg);
3164 temp &= ~FDI_LINK_TRAIN_AUTO;
3165 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3166 temp &= ~FDI_RX_ENABLE;
3167 I915_WRITE(reg, temp);
3168
3169 /* enable CPU FDI TX and PCH FDI RX */
3170 reg = FDI_TX_CTL(pipe);
3171 temp = I915_READ(reg);
3172 temp &= ~FDI_DP_PORT_WIDTH_MASK;
3173 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
3174 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07003175 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003176 temp |= snb_b_fdi_train_param[j/2];
3177 temp |= FDI_COMPOSITE_SYNC;
3178 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3179
3180 I915_WRITE(FDI_RX_MISC(pipe),
3181 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3182
3183 reg = FDI_RX_CTL(pipe);
3184 temp = I915_READ(reg);
3185 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3186 temp |= FDI_COMPOSITE_SYNC;
3187 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3188
3189 POSTING_READ(reg);
3190 udelay(1); /* should be 0.5us */
3191
3192 for (i = 0; i < 4; i++) {
3193 reg = FDI_RX_IIR(pipe);
3194 temp = I915_READ(reg);
3195 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3196
3197 if (temp & FDI_RX_BIT_LOCK ||
3198 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3199 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3200 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3201 i);
3202 break;
3203 }
3204 udelay(1); /* should be 0.5us */
3205 }
3206 if (i == 4) {
3207 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3208 continue;
3209 }
3210
3211 /* Train 2 */
3212 reg = FDI_TX_CTL(pipe);
3213 temp = I915_READ(reg);
3214 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3215 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3216 I915_WRITE(reg, temp);
3217
3218 reg = FDI_RX_CTL(pipe);
3219 temp = I915_READ(reg);
3220 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3221 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07003222 I915_WRITE(reg, temp);
3223
3224 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003225 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003226
Jesse Barnes139ccd32013-08-19 11:04:55 -07003227 for (i = 0; i < 4; i++) {
3228 reg = FDI_RX_IIR(pipe);
3229 temp = I915_READ(reg);
3230 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07003231
Jesse Barnes139ccd32013-08-19 11:04:55 -07003232 if (temp & FDI_RX_SYMBOL_LOCK ||
3233 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3234 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3235 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3236 i);
3237 goto train_done;
3238 }
3239 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003240 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07003241 if (i == 4)
3242 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07003243 }
Jesse Barnes357555c2011-04-28 15:09:55 -07003244
Jesse Barnes139ccd32013-08-19 11:04:55 -07003245train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07003246 DRM_DEBUG_KMS("FDI train done.\n");
3247}
3248
Daniel Vetter88cefb62012-08-12 19:27:14 +02003249static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07003250{
Daniel Vetter88cefb62012-08-12 19:27:14 +02003251 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003252 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003253 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003254 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003255
Jesse Barnesc64e3112010-09-10 11:27:03 -07003256
Jesse Barnes0e23b992010-09-10 11:10:00 -07003257 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01003258 reg = FDI_RX_CTL(pipe);
3259 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003260 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
3261 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003262 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01003263 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3264
3265 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003266 udelay(200);
3267
3268 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003269 temp = I915_READ(reg);
3270 I915_WRITE(reg, temp | FDI_PCDCLK);
3271
3272 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003273 udelay(200);
3274
Paulo Zanoni20749732012-11-23 15:30:38 -02003275 /* Enable CPU FDI TX PLL, always on for Ironlake */
3276 reg = FDI_TX_CTL(pipe);
3277 temp = I915_READ(reg);
3278 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3279 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01003280
Paulo Zanoni20749732012-11-23 15:30:38 -02003281 POSTING_READ(reg);
3282 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003283 }
3284}
3285
Daniel Vetter88cefb62012-08-12 19:27:14 +02003286static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3287{
3288 struct drm_device *dev = intel_crtc->base.dev;
3289 struct drm_i915_private *dev_priv = dev->dev_private;
3290 int pipe = intel_crtc->pipe;
3291 u32 reg, temp;
3292
3293 /* Switch from PCDclk to Rawclk */
3294 reg = FDI_RX_CTL(pipe);
3295 temp = I915_READ(reg);
3296 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3297
3298 /* Disable CPU FDI TX PLL */
3299 reg = FDI_TX_CTL(pipe);
3300 temp = I915_READ(reg);
3301 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3302
3303 POSTING_READ(reg);
3304 udelay(100);
3305
3306 reg = FDI_RX_CTL(pipe);
3307 temp = I915_READ(reg);
3308 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3309
3310 /* Wait for the clocks to turn off. */
3311 POSTING_READ(reg);
3312 udelay(100);
3313}
3314
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003315static void ironlake_fdi_disable(struct drm_crtc *crtc)
3316{
3317 struct drm_device *dev = crtc->dev;
3318 struct drm_i915_private *dev_priv = dev->dev_private;
3319 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3320 int pipe = intel_crtc->pipe;
3321 u32 reg, temp;
3322
3323 /* disable CPU FDI tx and PCH FDI rx */
3324 reg = FDI_TX_CTL(pipe);
3325 temp = I915_READ(reg);
3326 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3327 POSTING_READ(reg);
3328
3329 reg = FDI_RX_CTL(pipe);
3330 temp = I915_READ(reg);
3331 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003332 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003333 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3334
3335 POSTING_READ(reg);
3336 udelay(100);
3337
3338 /* Ironlake workaround, disable clock pointer after downing FDI */
Robin Schroereba905b2014-05-18 02:24:50 +02003339 if (HAS_PCH_IBX(dev))
Jesse Barnes6f06ce12011-01-04 15:09:38 -08003340 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003341
3342 /* still set train pattern 1 */
3343 reg = FDI_TX_CTL(pipe);
3344 temp = I915_READ(reg);
3345 temp &= ~FDI_LINK_TRAIN_NONE;
3346 temp |= FDI_LINK_TRAIN_PATTERN_1;
3347 I915_WRITE(reg, temp);
3348
3349 reg = FDI_RX_CTL(pipe);
3350 temp = I915_READ(reg);
3351 if (HAS_PCH_CPT(dev)) {
3352 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3353 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3354 } else {
3355 temp &= ~FDI_LINK_TRAIN_NONE;
3356 temp |= FDI_LINK_TRAIN_PATTERN_1;
3357 }
3358 /* BPC in FDI rx is consistent with that in PIPECONF */
3359 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003360 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003361 I915_WRITE(reg, temp);
3362
3363 POSTING_READ(reg);
3364 udelay(100);
3365}
3366
Chris Wilson5dce5b932014-01-20 10:17:36 +00003367bool intel_has_pending_fb_unpin(struct drm_device *dev)
3368{
3369 struct intel_crtc *crtc;
3370
3371 /* Note that we don't need to be called with mode_config.lock here
3372 * as our list of CRTC objects is static for the lifetime of the
3373 * device and so cannot disappear as we iterate. Similarly, we can
3374 * happily treat the predicates as racy, atomic checks as userspace
3375 * cannot claim and pin a new fb without at least acquring the
3376 * struct_mutex and so serialising with us.
3377 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003378 for_each_intel_crtc(dev, crtc) {
Chris Wilson5dce5b932014-01-20 10:17:36 +00003379 if (atomic_read(&crtc->unpin_work_count) == 0)
3380 continue;
3381
3382 if (crtc->unpin_work)
3383 intel_wait_for_vblank(dev, crtc->pipe);
3384
3385 return true;
3386 }
3387
3388 return false;
3389}
3390
Ville Syrjälä46a55d32014-05-21 14:04:46 +03003391void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003392{
Chris Wilson0f911282012-04-17 10:05:38 +01003393 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01003394 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003395
Daniel Vetter2c10d572012-12-20 21:24:07 +01003396 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
Daniel Vettereed6d672014-05-19 16:09:35 +02003397 WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3398 !intel_crtc_has_pending_flip(crtc),
3399 60*HZ) == 0);
Chris Wilson5bb61642012-09-27 21:25:58 +01003400
Chris Wilson975d5682014-08-20 13:13:34 +01003401 if (crtc->primary->fb) {
3402 mutex_lock(&dev->struct_mutex);
3403 intel_finish_fb(crtc->primary->fb);
3404 mutex_unlock(&dev->struct_mutex);
3405 }
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003406}
3407
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003408/* Program iCLKIP clock to the desired frequency */
3409static void lpt_program_iclkip(struct drm_crtc *crtc)
3410{
3411 struct drm_device *dev = crtc->dev;
3412 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau241bfc32013-09-25 16:45:37 +01003413 int clock = to_intel_crtc(crtc)->config.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003414 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3415 u32 temp;
3416
Daniel Vetter09153002012-12-12 14:06:44 +01003417 mutex_lock(&dev_priv->dpio_lock);
3418
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003419 /* It is necessary to ungate the pixclk gate prior to programming
3420 * the divisors, and gate it back when it is done.
3421 */
3422 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3423
3424 /* Disable SSCCTL */
3425 intel_sbi_write(dev_priv, SBI_SSCCTL6,
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003426 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
3427 SBI_SSCCTL_DISABLE,
3428 SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003429
3430 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003431 if (clock == 20000) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003432 auxdiv = 1;
3433 divsel = 0x41;
3434 phaseinc = 0x20;
3435 } else {
3436 /* The iCLK virtual clock root frequency is in MHz,
Damien Lespiau241bfc32013-09-25 16:45:37 +01003437 * but the adjusted_mode->crtc_clock in in KHz. To get the
3438 * divisors, it is necessary to divide one by another, so we
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003439 * convert the virtual clock precision to KHz here for higher
3440 * precision.
3441 */
3442 u32 iclk_virtual_root_freq = 172800 * 1000;
3443 u32 iclk_pi_range = 64;
3444 u32 desired_divisor, msb_divisor_value, pi_value;
3445
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003446 desired_divisor = (iclk_virtual_root_freq / clock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003447 msb_divisor_value = desired_divisor / iclk_pi_range;
3448 pi_value = desired_divisor % iclk_pi_range;
3449
3450 auxdiv = 0;
3451 divsel = msb_divisor_value - 2;
3452 phaseinc = pi_value;
3453 }
3454
3455 /* This should not happen with any sane values */
3456 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3457 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3458 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3459 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3460
3461 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 +03003462 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003463 auxdiv,
3464 divsel,
3465 phasedir,
3466 phaseinc);
3467
3468 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003469 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003470 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3471 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3472 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3473 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3474 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3475 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003476 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003477
3478 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003479 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003480 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3481 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003482 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003483
3484 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003485 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003486 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003487 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003488
3489 /* Wait for initialization time */
3490 udelay(24);
3491
3492 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
Daniel Vetter09153002012-12-12 14:06:44 +01003493
3494 mutex_unlock(&dev_priv->dpio_lock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003495}
3496
Daniel Vetter275f01b22013-05-03 11:49:47 +02003497static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3498 enum pipe pch_transcoder)
3499{
3500 struct drm_device *dev = crtc->base.dev;
3501 struct drm_i915_private *dev_priv = dev->dev_private;
3502 enum transcoder cpu_transcoder = crtc->config.cpu_transcoder;
3503
3504 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
3505 I915_READ(HTOTAL(cpu_transcoder)));
3506 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
3507 I915_READ(HBLANK(cpu_transcoder)));
3508 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
3509 I915_READ(HSYNC(cpu_transcoder)));
3510
3511 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
3512 I915_READ(VTOTAL(cpu_transcoder)));
3513 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
3514 I915_READ(VBLANK(cpu_transcoder)));
3515 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
3516 I915_READ(VSYNC(cpu_transcoder)));
3517 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
3518 I915_READ(VSYNCSHIFT(cpu_transcoder)));
3519}
3520
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003521static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
3522{
3523 struct drm_i915_private *dev_priv = dev->dev_private;
3524 uint32_t temp;
3525
3526 temp = I915_READ(SOUTH_CHICKEN1);
3527 if (temp & FDI_BC_BIFURCATION_SELECT)
3528 return;
3529
3530 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3531 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3532
3533 temp |= FDI_BC_BIFURCATION_SELECT;
3534 DRM_DEBUG_KMS("enabling fdi C rx\n");
3535 I915_WRITE(SOUTH_CHICKEN1, temp);
3536 POSTING_READ(SOUTH_CHICKEN1);
3537}
3538
3539static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
3540{
3541 struct drm_device *dev = intel_crtc->base.dev;
3542 struct drm_i915_private *dev_priv = dev->dev_private;
3543
3544 switch (intel_crtc->pipe) {
3545 case PIPE_A:
3546 break;
3547 case PIPE_B:
3548 if (intel_crtc->config.fdi_lanes > 2)
3549 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
3550 else
3551 cpt_enable_fdi_bc_bifurcation(dev);
3552
3553 break;
3554 case PIPE_C:
3555 cpt_enable_fdi_bc_bifurcation(dev);
3556
3557 break;
3558 default:
3559 BUG();
3560 }
3561}
3562
Jesse Barnesf67a5592011-01-05 10:31:48 -08003563/*
3564 * Enable PCH resources required for PCH ports:
3565 * - PCH PLLs
3566 * - FDI training & RX/TX
3567 * - update transcoder timings
3568 * - DP transcoding bits
3569 * - transcoder
3570 */
3571static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003572{
3573 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003574 struct drm_i915_private *dev_priv = dev->dev_private;
3575 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3576 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003577 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003578
Daniel Vetterab9412b2013-05-03 11:49:46 +02003579 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01003580
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003581 if (IS_IVYBRIDGE(dev))
3582 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
3583
Daniel Vettercd986ab2012-10-26 10:58:12 +02003584 /* Write the TU size bits before fdi link training, so that error
3585 * detection works. */
3586 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3587 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3588
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003589 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07003590 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003591
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003592 /* We need to program the right clock selection before writing the pixel
3593 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003594 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003595 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07003596
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003597 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02003598 temp |= TRANS_DPLL_ENABLE(pipe);
3599 sel = TRANS_DPLLB_SEL(pipe);
Daniel Vettera43f6e02013-06-07 23:10:32 +02003600 if (intel_crtc->config.shared_dpll == DPLL_ID_PCH_PLL_B)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003601 temp |= sel;
3602 else
3603 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003604 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003605 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003606
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003607 /* XXX: pch pll's can be enabled any time before we enable the PCH
3608 * transcoder, and we actually should do this to not upset any PCH
3609 * transcoder that already use the clock when we share it.
3610 *
3611 * Note that enable_shared_dpll tries to do the right thing, but
3612 * get_shared_dpll unconditionally resets the pll - we need that to have
3613 * the right LVDS enable sequence. */
Daniel Vetter85b38942014-04-24 23:55:14 +02003614 intel_enable_shared_dpll(intel_crtc);
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003615
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08003616 /* set transcoder timing, panel must allow it */
3617 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02003618 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003619
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003620 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003621
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003622 /* For PCH DP, enable TRANS_DP_CTL */
3623 if (HAS_PCH_CPT(dev) &&
Keith Packard417e8222011-11-01 19:54:11 -07003624 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
3625 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003626 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01003627 reg = TRANS_DP_CTL(pipe);
3628 temp = I915_READ(reg);
3629 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08003630 TRANS_DP_SYNC_MASK |
3631 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01003632 temp |= (TRANS_DP_OUTPUT_ENABLE |
3633 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003634 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003635
3636 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003637 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003638 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003639 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003640
3641 switch (intel_trans_dp_port_sel(crtc)) {
3642 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01003643 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003644 break;
3645 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01003646 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003647 break;
3648 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01003649 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003650 break;
3651 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02003652 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003653 }
3654
Chris Wilson5eddb702010-09-11 13:48:45 +01003655 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003656 }
3657
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003658 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003659}
3660
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003661static void lpt_pch_enable(struct drm_crtc *crtc)
3662{
3663 struct drm_device *dev = crtc->dev;
3664 struct drm_i915_private *dev_priv = dev->dev_private;
3665 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02003666 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003667
Daniel Vetterab9412b2013-05-03 11:49:46 +02003668 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003669
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02003670 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003671
Paulo Zanoni0540e482012-10-31 18:12:40 -02003672 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02003673 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003674
Paulo Zanoni937bb612012-10-31 18:12:47 -02003675 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003676}
3677
Daniel Vetter716c2e52014-06-25 22:02:02 +03003678void intel_put_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003679{
Daniel Vettere2b78262013-06-07 23:10:03 +02003680 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003681
3682 if (pll == NULL)
3683 return;
3684
3685 if (pll->refcount == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003686 WARN(1, "bad %s refcount\n", pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003687 return;
3688 }
3689
Daniel Vetterf4a091c2013-06-10 17:28:22 +02003690 if (--pll->refcount == 0) {
3691 WARN_ON(pll->on);
3692 WARN_ON(pll->active);
3693 }
3694
Daniel Vettera43f6e02013-06-07 23:10:32 +02003695 crtc->config.shared_dpll = DPLL_ID_PRIVATE;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003696}
3697
Daniel Vetter716c2e52014-06-25 22:02:02 +03003698struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003699{
Daniel Vettere2b78262013-06-07 23:10:03 +02003700 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
3701 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
3702 enum intel_dpll_id i;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003703
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003704 if (pll) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003705 DRM_DEBUG_KMS("CRTC:%d dropping existing %s\n",
3706 crtc->base.base.id, pll->name);
Daniel Vettere2b78262013-06-07 23:10:03 +02003707 intel_put_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003708 }
3709
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003710 if (HAS_PCH_IBX(dev_priv->dev)) {
3711 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
Daniel Vetterd94ab062013-07-04 12:01:16 +02003712 i = (enum intel_dpll_id) crtc->pipe;
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003713 pll = &dev_priv->shared_dplls[i];
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003714
Daniel Vetter46edb022013-06-05 13:34:12 +02003715 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
3716 crtc->base.base.id, pll->name);
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003717
Daniel Vetterf2a69f42014-05-20 15:19:19 +02003718 WARN_ON(pll->refcount);
3719
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003720 goto found;
3721 }
3722
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003723 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3724 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003725
3726 /* Only want to check enabled timings first */
3727 if (pll->refcount == 0)
3728 continue;
3729
Daniel Vetterb89a1d32013-06-05 13:34:24 +02003730 if (memcmp(&crtc->config.dpll_hw_state, &pll->hw_state,
3731 sizeof(pll->hw_state)) == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003732 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (refcount %d, ative %d)\n",
Daniel Vettere2b78262013-06-07 23:10:03 +02003733 crtc->base.base.id,
Daniel Vetter46edb022013-06-05 13:34:12 +02003734 pll->name, pll->refcount, pll->active);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003735
3736 goto found;
3737 }
3738 }
3739
3740 /* Ok no matching timings, maybe there's a free one? */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003741 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3742 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003743 if (pll->refcount == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003744 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
3745 crtc->base.base.id, pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003746 goto found;
3747 }
3748 }
3749
3750 return NULL;
3751
3752found:
Daniel Vetterf2a69f42014-05-20 15:19:19 +02003753 if (pll->refcount == 0)
3754 pll->hw_state = crtc->config.dpll_hw_state;
3755
Daniel Vettera43f6e02013-06-07 23:10:32 +02003756 crtc->config.shared_dpll = i;
Daniel Vetter46edb022013-06-05 13:34:12 +02003757 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
3758 pipe_name(crtc->pipe));
Daniel Vetter66e985c2013-06-05 13:34:20 +02003759
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003760 pll->refcount++;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003761
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003762 return pll;
3763}
3764
Daniel Vettera1520312013-05-03 11:49:50 +02003765static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07003766{
3767 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01003768 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07003769 u32 temp;
3770
3771 temp = I915_READ(dslreg);
3772 udelay(500);
3773 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07003774 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003775 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07003776 }
3777}
3778
Jesse Barnesb074cec2013-04-25 12:55:02 -07003779static void ironlake_pfit_enable(struct intel_crtc *crtc)
3780{
3781 struct drm_device *dev = crtc->base.dev;
3782 struct drm_i915_private *dev_priv = dev->dev_private;
3783 int pipe = crtc->pipe;
3784
Chris Wilsonfd4daa92013-08-27 17:04:17 +01003785 if (crtc->config.pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07003786 /* Force use of hard-coded filter coefficients
3787 * as some pre-programmed values are broken,
3788 * e.g. x201.
3789 */
3790 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
3791 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
3792 PF_PIPE_SEL_IVB(pipe));
3793 else
3794 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
3795 I915_WRITE(PF_WIN_POS(pipe), crtc->config.pch_pfit.pos);
3796 I915_WRITE(PF_WIN_SZ(pipe), crtc->config.pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08003797 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08003798}
3799
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003800static void intel_enable_planes(struct drm_crtc *crtc)
3801{
3802 struct drm_device *dev = crtc->dev;
3803 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07003804 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003805 struct intel_plane *intel_plane;
3806
Matt Roperaf2b6532014-04-01 15:22:32 -07003807 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
3808 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003809 if (intel_plane->pipe == pipe)
3810 intel_plane_restore(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07003811 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003812}
3813
3814static void intel_disable_planes(struct drm_crtc *crtc)
3815{
3816 struct drm_device *dev = crtc->dev;
3817 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07003818 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003819 struct intel_plane *intel_plane;
3820
Matt Roperaf2b6532014-04-01 15:22:32 -07003821 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
3822 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003823 if (intel_plane->pipe == pipe)
3824 intel_plane_disable(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07003825 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003826}
3827
Ville Syrjälä20bc86732013-10-01 18:02:17 +03003828void hsw_enable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03003829{
Ville Syrjäläcea165c2014-04-15 21:41:35 +03003830 struct drm_device *dev = crtc->base.dev;
3831 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid77e4532013-09-24 13:52:55 -03003832
3833 if (!crtc->config.ips_enabled)
3834 return;
3835
Ville Syrjäläcea165c2014-04-15 21:41:35 +03003836 /* We can only enable IPS after we enable a plane and wait for a vblank */
3837 intel_wait_for_vblank(dev, crtc->pipe);
3838
Paulo Zanonid77e4532013-09-24 13:52:55 -03003839 assert_plane_enabled(dev_priv, crtc->plane);
Ville Syrjäläcea165c2014-04-15 21:41:35 +03003840 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003841 mutex_lock(&dev_priv->rps.hw_lock);
3842 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
3843 mutex_unlock(&dev_priv->rps.hw_lock);
3844 /* Quoting Art Runyan: "its not safe to expect any particular
3845 * value in IPS_CTL bit 31 after enabling IPS through the
Jesse Barnese59150d2014-01-07 13:30:45 -08003846 * mailbox." Moreover, the mailbox may return a bogus state,
3847 * so we need to just enable it and continue on.
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003848 */
3849 } else {
3850 I915_WRITE(IPS_CTL, IPS_ENABLE);
3851 /* The bit only becomes 1 in the next vblank, so this wait here
3852 * is essentially intel_wait_for_vblank. If we don't have this
3853 * and don't wait for vblanks until the end of crtc_enable, then
3854 * the HW state readout code will complain that the expected
3855 * IPS_CTL value is not the one we read. */
3856 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
3857 DRM_ERROR("Timed out waiting for IPS enable\n");
3858 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03003859}
3860
Ville Syrjälä20bc86732013-10-01 18:02:17 +03003861void hsw_disable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03003862{
3863 struct drm_device *dev = crtc->base.dev;
3864 struct drm_i915_private *dev_priv = dev->dev_private;
3865
3866 if (!crtc->config.ips_enabled)
3867 return;
3868
3869 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky23d0b132014-04-10 14:32:41 -07003870 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003871 mutex_lock(&dev_priv->rps.hw_lock);
3872 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
3873 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky23d0b132014-04-10 14:32:41 -07003874 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
3875 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
3876 DRM_ERROR("Timed out waiting for IPS disable\n");
Jesse Barnese59150d2014-01-07 13:30:45 -08003877 } else {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003878 I915_WRITE(IPS_CTL, 0);
Jesse Barnese59150d2014-01-07 13:30:45 -08003879 POSTING_READ(IPS_CTL);
3880 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03003881
3882 /* We need to wait for a vblank before we can disable the plane. */
3883 intel_wait_for_vblank(dev, crtc->pipe);
3884}
3885
3886/** Loads the palette/gamma unit for the CRTC with the prepared values */
3887static void intel_crtc_load_lut(struct drm_crtc *crtc)
3888{
3889 struct drm_device *dev = crtc->dev;
3890 struct drm_i915_private *dev_priv = dev->dev_private;
3891 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3892 enum pipe pipe = intel_crtc->pipe;
3893 int palreg = PALETTE(pipe);
3894 int i;
3895 bool reenable_ips = false;
3896
3897 /* The clocks have to be on to load the palette. */
3898 if (!crtc->enabled || !intel_crtc->active)
3899 return;
3900
3901 if (!HAS_PCH_SPLIT(dev_priv->dev)) {
3902 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
3903 assert_dsi_pll_enabled(dev_priv);
3904 else
3905 assert_pll_enabled(dev_priv, pipe);
3906 }
3907
3908 /* use legacy palette for Ironlake */
Sonika Jindal7a1db492014-07-22 11:18:27 +05303909 if (!HAS_GMCH_DISPLAY(dev))
Paulo Zanonid77e4532013-09-24 13:52:55 -03003910 palreg = LGC_PALETTE(pipe);
3911
3912 /* Workaround : Do not read or write the pipe palette/gamma data while
3913 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
3914 */
Paulo Zanoni41e6fc42014-01-08 17:26:31 -02003915 if (IS_HASWELL(dev) && intel_crtc->config.ips_enabled &&
Paulo Zanonid77e4532013-09-24 13:52:55 -03003916 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
3917 GAMMA_MODE_MODE_SPLIT)) {
3918 hsw_disable_ips(intel_crtc);
3919 reenable_ips = true;
3920 }
3921
3922 for (i = 0; i < 256; i++) {
3923 I915_WRITE(palreg + 4 * i,
3924 (intel_crtc->lut_r[i] << 16) |
3925 (intel_crtc->lut_g[i] << 8) |
3926 intel_crtc->lut_b[i]);
3927 }
3928
3929 if (reenable_ips)
3930 hsw_enable_ips(intel_crtc);
3931}
3932
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003933static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
3934{
3935 if (!enable && intel_crtc->overlay) {
3936 struct drm_device *dev = intel_crtc->base.dev;
3937 struct drm_i915_private *dev_priv = dev->dev_private;
3938
3939 mutex_lock(&dev->struct_mutex);
3940 dev_priv->mm.interruptible = false;
3941 (void) intel_overlay_switch_off(intel_crtc->overlay);
3942 dev_priv->mm.interruptible = true;
3943 mutex_unlock(&dev->struct_mutex);
3944 }
3945
3946 /* Let userspace switch the overlay on again. In most cases userspace
3947 * has to recompute where to put it anyway.
3948 */
3949}
3950
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003951static void intel_crtc_enable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003952{
3953 struct drm_device *dev = crtc->dev;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003954 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3955 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003956
Ville Syrjäläf98551a2014-05-22 17:48:06 +03003957 drm_vblank_on(dev, pipe);
3958
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03003959 intel_enable_primary_hw_plane(crtc->primary, crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003960 intel_enable_planes(crtc);
3961 intel_crtc_update_cursor(crtc, true);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003962 intel_crtc_dpms_overlay(intel_crtc, true);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003963
3964 hsw_enable_ips(intel_crtc);
3965
3966 mutex_lock(&dev->struct_mutex);
3967 intel_update_fbc(dev);
3968 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf99d7062014-06-19 16:01:59 +02003969
3970 /*
3971 * FIXME: Once we grow proper nuclear flip support out of this we need
3972 * to compute the mask of flip planes precisely. For the time being
3973 * consider this a flip from a NULL plane.
3974 */
3975 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003976}
3977
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003978static void intel_crtc_disable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003979{
3980 struct drm_device *dev = crtc->dev;
3981 struct drm_i915_private *dev_priv = dev->dev_private;
3982 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3983 int pipe = intel_crtc->pipe;
3984 int plane = intel_crtc->plane;
3985
3986 intel_crtc_wait_for_pending_flips(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003987
3988 if (dev_priv->fbc.plane == plane)
3989 intel_disable_fbc(dev);
3990
3991 hsw_disable_ips(intel_crtc);
3992
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003993 intel_crtc_dpms_overlay(intel_crtc, false);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003994 intel_crtc_update_cursor(crtc, false);
3995 intel_disable_planes(crtc);
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03003996 intel_disable_primary_hw_plane(crtc->primary, crtc);
Ville Syrjäläf98551a2014-05-22 17:48:06 +03003997
Daniel Vetterf99d7062014-06-19 16:01:59 +02003998 /*
3999 * FIXME: Once we grow proper nuclear flip support out of this we need
4000 * to compute the mask of flip planes precisely. For the time being
4001 * consider this a flip to a NULL plane.
4002 */
4003 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
4004
Ville Syrjäläf98551a2014-05-22 17:48:06 +03004005 drm_vblank_off(dev, pipe);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004006}
4007
Jesse Barnesf67a5592011-01-05 10:31:48 -08004008static void ironlake_crtc_enable(struct drm_crtc *crtc)
4009{
4010 struct drm_device *dev = crtc->dev;
4011 struct drm_i915_private *dev_priv = dev->dev_private;
4012 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004013 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004014 int pipe = intel_crtc->pipe;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004015
Daniel Vetter08a48462012-07-02 11:43:47 +02004016 WARN_ON(!crtc->enabled);
4017
Jesse Barnesf67a5592011-01-05 10:31:48 -08004018 if (intel_crtc->active)
4019 return;
4020
Daniel Vetterb14b1052014-04-24 23:55:13 +02004021 if (intel_crtc->config.has_pch_encoder)
4022 intel_prepare_shared_dpll(intel_crtc);
4023
Daniel Vetter29407aa2014-04-24 23:55:08 +02004024 if (intel_crtc->config.has_dp_encoder)
4025 intel_dp_set_m_n(intel_crtc);
4026
4027 intel_set_pipe_timings(intel_crtc);
4028
4029 if (intel_crtc->config.has_pch_encoder) {
4030 intel_cpu_transcoder_set_m_n(intel_crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -07004031 &intel_crtc->config.fdi_m_n, NULL);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004032 }
4033
4034 ironlake_set_pipeconf(crtc);
4035
Jesse Barnesf67a5592011-01-05 10:31:48 -08004036 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004037
4038 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4039 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
4040
Daniel Vetterf6736a12013-06-05 13:34:30 +02004041 for_each_encoder_on_crtc(dev, crtc, encoder)
Daniel Vetter952735e2013-06-05 13:34:27 +02004042 if (encoder->pre_enable)
4043 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004044
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01004045 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02004046 /* Note: FDI PLL enabling _must_ be done before we enable the
4047 * cpu pipes, hence this is separate from all the other fdi/pch
4048 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02004049 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02004050 } else {
4051 assert_fdi_tx_disabled(dev_priv, pipe);
4052 assert_fdi_rx_disabled(dev_priv, pipe);
4053 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004054
Jesse Barnesb074cec2013-04-25 12:55:02 -07004055 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004056
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02004057 /*
4058 * On ILK+ LUT must be loaded before the pipe is running but with
4059 * clocks enabled
4060 */
4061 intel_crtc_load_lut(crtc);
4062
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004063 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004064 intel_enable_pipe(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004065
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01004066 if (intel_crtc->config.has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08004067 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004068
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004069 for_each_encoder_on_crtc(dev, crtc, encoder)
4070 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02004071
4072 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02004073 cpt_verify_modeset(dev, intel_crtc->pipe);
Daniel Vetter6ce94102012-10-04 19:20:03 +02004074
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004075 intel_crtc_enable_planes(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004076}
4077
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004078/* IPS only exists on ULT machines and is tied to pipe A. */
4079static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4080{
Damien Lespiauf5adf942013-06-24 18:29:34 +01004081 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004082}
4083
Paulo Zanonie4916942013-09-20 16:21:19 -03004084/*
4085 * This implements the workaround described in the "notes" section of the mode
4086 * set sequence documentation. When going from no pipes or single pipe to
4087 * multiple pipes, and planes are enabled after the pipe, we need to wait at
4088 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
4089 */
4090static void haswell_mode_set_planes_workaround(struct intel_crtc *crtc)
4091{
4092 struct drm_device *dev = crtc->base.dev;
4093 struct intel_crtc *crtc_it, *other_active_crtc = NULL;
4094
4095 /* We want to get the other_active_crtc only if there's only 1 other
4096 * active crtc. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004097 for_each_intel_crtc(dev, crtc_it) {
Paulo Zanonie4916942013-09-20 16:21:19 -03004098 if (!crtc_it->active || crtc_it == crtc)
4099 continue;
4100
4101 if (other_active_crtc)
4102 return;
4103
4104 other_active_crtc = crtc_it;
4105 }
4106 if (!other_active_crtc)
4107 return;
4108
4109 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4110 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4111}
4112
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004113static void haswell_crtc_enable(struct drm_crtc *crtc)
4114{
4115 struct drm_device *dev = crtc->dev;
4116 struct drm_i915_private *dev_priv = dev->dev_private;
4117 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4118 struct intel_encoder *encoder;
4119 int pipe = intel_crtc->pipe;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004120
4121 WARN_ON(!crtc->enabled);
4122
4123 if (intel_crtc->active)
4124 return;
4125
Daniel Vetterdf8ad702014-06-25 22:02:03 +03004126 if (intel_crtc_to_shared_dpll(intel_crtc))
4127 intel_enable_shared_dpll(intel_crtc);
4128
Daniel Vetter229fca92014-04-24 23:55:09 +02004129 if (intel_crtc->config.has_dp_encoder)
4130 intel_dp_set_m_n(intel_crtc);
4131
4132 intel_set_pipe_timings(intel_crtc);
4133
4134 if (intel_crtc->config.has_pch_encoder) {
4135 intel_cpu_transcoder_set_m_n(intel_crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -07004136 &intel_crtc->config.fdi_m_n, NULL);
Daniel Vetter229fca92014-04-24 23:55:09 +02004137 }
4138
4139 haswell_set_pipeconf(crtc);
4140
4141 intel_set_pipe_csc(crtc);
4142
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004143 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004144
4145 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004146 for_each_encoder_on_crtc(dev, crtc, encoder)
4147 if (encoder->pre_enable)
4148 encoder->pre_enable(encoder);
4149
Imre Deak4fe94672014-06-25 22:01:49 +03004150 if (intel_crtc->config.has_pch_encoder) {
4151 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
4152 dev_priv->display.fdi_link_train(crtc);
4153 }
4154
Paulo Zanoni1f544382012-10-24 11:32:00 -02004155 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004156
Jesse Barnesb074cec2013-04-25 12:55:02 -07004157 ironlake_pfit_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004158
4159 /*
4160 * On ILK+ LUT must be loaded before the pipe is running but with
4161 * clocks enabled
4162 */
4163 intel_crtc_load_lut(crtc);
4164
Paulo Zanoni1f544382012-10-24 11:32:00 -02004165 intel_ddi_set_pipe_settings(crtc);
Damien Lespiau8228c252013-03-07 15:30:27 +00004166 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004167
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004168 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004169 intel_enable_pipe(intel_crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004170
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01004171 if (intel_crtc->config.has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004172 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004173
Dave Airlie0e32b392014-05-02 14:02:48 +10004174 if (intel_crtc->config.dp_encoder_is_mst)
4175 intel_ddi_set_vc_payload_alloc(crtc, true);
4176
Jani Nikula8807e552013-08-30 19:40:32 +03004177 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004178 encoder->enable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004179 intel_opregion_notify_encoder(encoder, true);
4180 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004181
Paulo Zanonie4916942013-09-20 16:21:19 -03004182 /* If we change the relative order between pipe/planes enabling, we need
4183 * to change the workaround. */
4184 haswell_mode_set_planes_workaround(intel_crtc);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004185 intel_crtc_enable_planes(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004186}
4187
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004188static void ironlake_pfit_disable(struct intel_crtc *crtc)
4189{
4190 struct drm_device *dev = crtc->base.dev;
4191 struct drm_i915_private *dev_priv = dev->dev_private;
4192 int pipe = crtc->pipe;
4193
4194 /* To avoid upsetting the power well on haswell only disable the pfit if
4195 * it's in use. The hw state code will make sure we get this right. */
Chris Wilsonfd4daa92013-08-27 17:04:17 +01004196 if (crtc->config.pch_pfit.enabled) {
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004197 I915_WRITE(PF_CTL(pipe), 0);
4198 I915_WRITE(PF_WIN_POS(pipe), 0);
4199 I915_WRITE(PF_WIN_SZ(pipe), 0);
4200 }
4201}
4202
Jesse Barnes6be4a602010-09-10 10:26:01 -07004203static void ironlake_crtc_disable(struct drm_crtc *crtc)
4204{
4205 struct drm_device *dev = crtc->dev;
4206 struct drm_i915_private *dev_priv = dev->dev_private;
4207 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004208 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004209 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01004210 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004211
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004212 if (!intel_crtc->active)
4213 return;
4214
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004215 intel_crtc_disable_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004216
Daniel Vetterea9d7582012-07-10 10:42:52 +02004217 for_each_encoder_on_crtc(dev, crtc, encoder)
4218 encoder->disable(encoder);
4219
Daniel Vetterd925c592013-06-05 13:34:04 +02004220 if (intel_crtc->config.has_pch_encoder)
4221 intel_set_pch_fifo_underrun_reporting(dev, pipe, false);
4222
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03004223 intel_disable_pipe(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004224
Dave Airlie0e32b392014-05-02 14:02:48 +10004225 if (intel_crtc->config.dp_encoder_is_mst)
4226 intel_ddi_set_vc_payload_alloc(crtc, false);
4227
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004228 ironlake_pfit_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004229
Daniel Vetterbf49ec82012-09-06 22:15:40 +02004230 for_each_encoder_on_crtc(dev, crtc, encoder)
4231 if (encoder->post_disable)
4232 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004233
Daniel Vetterd925c592013-06-05 13:34:04 +02004234 if (intel_crtc->config.has_pch_encoder) {
4235 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004236
Daniel Vetterd925c592013-06-05 13:34:04 +02004237 ironlake_disable_pch_transcoder(dev_priv, pipe);
4238 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004239
Daniel Vetterd925c592013-06-05 13:34:04 +02004240 if (HAS_PCH_CPT(dev)) {
4241 /* disable TRANS_DP_CTL */
4242 reg = TRANS_DP_CTL(pipe);
4243 temp = I915_READ(reg);
4244 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
4245 TRANS_DP_PORT_SEL_MASK);
4246 temp |= TRANS_DP_PORT_SEL_NONE;
4247 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004248
Daniel Vetterd925c592013-06-05 13:34:04 +02004249 /* disable DPLL_SEL */
4250 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02004251 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
Daniel Vetterd925c592013-06-05 13:34:04 +02004252 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004253 }
Daniel Vetterd925c592013-06-05 13:34:04 +02004254
4255 /* disable PCH DPLL */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004256 intel_disable_shared_dpll(intel_crtc);
Daniel Vetterd925c592013-06-05 13:34:04 +02004257
4258 ironlake_fdi_pll_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004259 }
4260
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004261 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004262 intel_update_watermarks(crtc);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004263
4264 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01004265 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004266 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004267}
4268
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004269static void haswell_crtc_disable(struct drm_crtc *crtc)
4270{
4271 struct drm_device *dev = crtc->dev;
4272 struct drm_i915_private *dev_priv = dev->dev_private;
4273 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4274 struct intel_encoder *encoder;
Daniel Vetter3b117c82013-04-17 20:15:07 +02004275 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004276
4277 if (!intel_crtc->active)
4278 return;
4279
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004280 intel_crtc_disable_planes(crtc);
Ville Syrjälädda9a662013-09-19 17:00:37 -03004281
Jani Nikula8807e552013-08-30 19:40:32 +03004282 for_each_encoder_on_crtc(dev, crtc, encoder) {
4283 intel_opregion_notify_encoder(encoder, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004284 encoder->disable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004285 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004286
Paulo Zanoni86642812013-04-12 17:57:57 -03004287 if (intel_crtc->config.has_pch_encoder)
4288 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, false);
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03004289 intel_disable_pipe(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004290
Paulo Zanoniad80a812012-10-24 16:06:19 -02004291 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004292
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004293 ironlake_pfit_disable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004294
Paulo Zanoni1f544382012-10-24 11:32:00 -02004295 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004296
Daniel Vetter88adfff2013-03-28 10:42:01 +01004297 if (intel_crtc->config.has_pch_encoder) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02004298 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni86642812013-04-12 17:57:57 -03004299 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02004300 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02004301 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004302
Imre Deak97b040a2014-06-25 22:01:50 +03004303 for_each_encoder_on_crtc(dev, crtc, encoder)
4304 if (encoder->post_disable)
4305 encoder->post_disable(encoder);
4306
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004307 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004308 intel_update_watermarks(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004309
4310 mutex_lock(&dev->struct_mutex);
4311 intel_update_fbc(dev);
4312 mutex_unlock(&dev->struct_mutex);
Daniel Vetterdf8ad702014-06-25 22:02:03 +03004313
4314 if (intel_crtc_to_shared_dpll(intel_crtc))
4315 intel_disable_shared_dpll(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004316}
4317
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004318static void ironlake_crtc_off(struct drm_crtc *crtc)
4319{
4320 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004321 intel_put_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004322}
4323
Paulo Zanoni6441ab52012-10-05 12:05:58 -03004324
Jesse Barnes2dd24552013-04-25 12:55:01 -07004325static void i9xx_pfit_enable(struct intel_crtc *crtc)
4326{
4327 struct drm_device *dev = crtc->base.dev;
4328 struct drm_i915_private *dev_priv = dev->dev_private;
4329 struct intel_crtc_config *pipe_config = &crtc->config;
4330
Daniel Vetter328d8e82013-05-08 10:36:31 +02004331 if (!crtc->config.gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07004332 return;
4333
Daniel Vetterc0b03412013-05-28 12:05:54 +02004334 /*
4335 * The panel fitter should only be adjusted whilst the pipe is disabled,
4336 * according to register description and PRM.
4337 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07004338 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
4339 assert_pipe_disabled(dev_priv, crtc->pipe);
4340
Jesse Barnesb074cec2013-04-25 12:55:02 -07004341 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
4342 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02004343
4344 /* Border color in case we don't scale up to the full screen. Black by
4345 * default, change to something else for debugging. */
4346 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07004347}
4348
Dave Airlied05410f2014-06-05 13:22:59 +10004349static enum intel_display_power_domain port_to_power_domain(enum port port)
4350{
4351 switch (port) {
4352 case PORT_A:
4353 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
4354 case PORT_B:
4355 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
4356 case PORT_C:
4357 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
4358 case PORT_D:
4359 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
4360 default:
4361 WARN_ON_ONCE(1);
4362 return POWER_DOMAIN_PORT_OTHER;
4363 }
4364}
4365
Imre Deak77d22dc2014-03-05 16:20:52 +02004366#define for_each_power_domain(domain, mask) \
4367 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
4368 if ((1 << (domain)) & (mask))
4369
Imre Deak319be8a2014-03-04 19:22:57 +02004370enum intel_display_power_domain
4371intel_display_port_power_domain(struct intel_encoder *intel_encoder)
Imre Deak77d22dc2014-03-05 16:20:52 +02004372{
Imre Deak319be8a2014-03-04 19:22:57 +02004373 struct drm_device *dev = intel_encoder->base.dev;
4374 struct intel_digital_port *intel_dig_port;
4375
4376 switch (intel_encoder->type) {
4377 case INTEL_OUTPUT_UNKNOWN:
4378 /* Only DDI platforms should ever use this output type */
4379 WARN_ON_ONCE(!HAS_DDI(dev));
4380 case INTEL_OUTPUT_DISPLAYPORT:
4381 case INTEL_OUTPUT_HDMI:
4382 case INTEL_OUTPUT_EDP:
4383 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
Dave Airlied05410f2014-06-05 13:22:59 +10004384 return port_to_power_domain(intel_dig_port->port);
Dave Airlie0e32b392014-05-02 14:02:48 +10004385 case INTEL_OUTPUT_DP_MST:
4386 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
4387 return port_to_power_domain(intel_dig_port->port);
Imre Deak319be8a2014-03-04 19:22:57 +02004388 case INTEL_OUTPUT_ANALOG:
4389 return POWER_DOMAIN_PORT_CRT;
4390 case INTEL_OUTPUT_DSI:
4391 return POWER_DOMAIN_PORT_DSI;
4392 default:
4393 return POWER_DOMAIN_PORT_OTHER;
4394 }
4395}
4396
4397static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
4398{
4399 struct drm_device *dev = crtc->dev;
4400 struct intel_encoder *intel_encoder;
4401 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4402 enum pipe pipe = intel_crtc->pipe;
Imre Deak77d22dc2014-03-05 16:20:52 +02004403 unsigned long mask;
4404 enum transcoder transcoder;
4405
4406 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
4407
4408 mask = BIT(POWER_DOMAIN_PIPE(pipe));
4409 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
Daniel Vetterfabf6e52014-05-29 14:10:22 +02004410 if (intel_crtc->config.pch_pfit.enabled ||
4411 intel_crtc->config.pch_pfit.force_thru)
Imre Deak77d22dc2014-03-05 16:20:52 +02004412 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
4413
Imre Deak319be8a2014-03-04 19:22:57 +02004414 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4415 mask |= BIT(intel_display_port_power_domain(intel_encoder));
4416
Imre Deak77d22dc2014-03-05 16:20:52 +02004417 return mask;
4418}
4419
4420void intel_display_set_init_power(struct drm_i915_private *dev_priv,
4421 bool enable)
4422{
4423 if (dev_priv->power_domains.init_power_on == enable)
4424 return;
4425
4426 if (enable)
4427 intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
4428 else
4429 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
4430
4431 dev_priv->power_domains.init_power_on = enable;
4432}
4433
4434static void modeset_update_crtc_power_domains(struct drm_device *dev)
4435{
4436 struct drm_i915_private *dev_priv = dev->dev_private;
4437 unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
4438 struct intel_crtc *crtc;
4439
4440 /*
4441 * First get all needed power domains, then put all unneeded, to avoid
4442 * any unnecessary toggling of the power wells.
4443 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004444 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004445 enum intel_display_power_domain domain;
4446
4447 if (!crtc->base.enabled)
4448 continue;
4449
Imre Deak319be8a2014-03-04 19:22:57 +02004450 pipe_domains[crtc->pipe] = get_crtc_power_domains(&crtc->base);
Imre Deak77d22dc2014-03-05 16:20:52 +02004451
4452 for_each_power_domain(domain, pipe_domains[crtc->pipe])
4453 intel_display_power_get(dev_priv, domain);
4454 }
4455
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004456 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004457 enum intel_display_power_domain domain;
4458
4459 for_each_power_domain(domain, crtc->enabled_power_domains)
4460 intel_display_power_put(dev_priv, domain);
4461
4462 crtc->enabled_power_domains = pipe_domains[crtc->pipe];
4463 }
4464
4465 intel_display_set_init_power(dev_priv, false);
4466}
4467
Ville Syrjälädfcab172014-06-13 13:37:47 +03004468/* returns HPLL frequency in kHz */
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004469static int valleyview_get_vco(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004470{
Jesse Barnes586f49d2013-11-04 16:06:59 -08004471 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
Jesse Barnes30a970c2013-11-04 13:48:12 -08004472
Jesse Barnes586f49d2013-11-04 16:06:59 -08004473 /* Obtain SKU information */
4474 mutex_lock(&dev_priv->dpio_lock);
4475 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
4476 CCK_FUSE_HPLL_FREQ_MASK;
4477 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004478
Ville Syrjälädfcab172014-06-13 13:37:47 +03004479 return vco_freq[hpll_freq] * 1000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004480}
4481
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004482static void vlv_update_cdclk(struct drm_device *dev)
4483{
4484 struct drm_i915_private *dev_priv = dev->dev_private;
4485
4486 dev_priv->vlv_cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
4487 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz",
4488 dev_priv->vlv_cdclk_freq);
4489
4490 /*
4491 * Program the gmbus_freq based on the cdclk frequency.
4492 * BSpec erroneously claims we should aim for 4MHz, but
4493 * in fact 1MHz is the correct frequency.
4494 */
4495 I915_WRITE(GMBUSFREQ_VLV, dev_priv->vlv_cdclk_freq);
4496}
4497
Jesse Barnes30a970c2013-11-04 13:48:12 -08004498/* Adjust CDclk dividers to allow high res or save power if possible */
4499static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
4500{
4501 struct drm_i915_private *dev_priv = dev->dev_private;
4502 u32 val, cmd;
4503
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03004504 WARN_ON(dev_priv->display.get_display_clock_speed(dev) != dev_priv->vlv_cdclk_freq);
Imre Deakd60c4472014-03-27 17:45:10 +02004505
Ville Syrjälädfcab172014-06-13 13:37:47 +03004506 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
Jesse Barnes30a970c2013-11-04 13:48:12 -08004507 cmd = 2;
Ville Syrjälädfcab172014-06-13 13:37:47 +03004508 else if (cdclk == 266667)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004509 cmd = 1;
4510 else
4511 cmd = 0;
4512
4513 mutex_lock(&dev_priv->rps.hw_lock);
4514 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4515 val &= ~DSPFREQGUAR_MASK;
4516 val |= (cmd << DSPFREQGUAR_SHIFT);
4517 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4518 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4519 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
4520 50)) {
4521 DRM_ERROR("timed out waiting for CDclk change\n");
4522 }
4523 mutex_unlock(&dev_priv->rps.hw_lock);
4524
Ville Syrjälädfcab172014-06-13 13:37:47 +03004525 if (cdclk == 400000) {
Jesse Barnes30a970c2013-11-04 13:48:12 -08004526 u32 divider, vco;
4527
4528 vco = valleyview_get_vco(dev_priv);
Ville Syrjälädfcab172014-06-13 13:37:47 +03004529 divider = DIV_ROUND_CLOSEST(vco << 1, cdclk) - 1;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004530
4531 mutex_lock(&dev_priv->dpio_lock);
4532 /* adjust cdclk divider */
4533 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
Ville Syrjälä9cf33db2014-06-13 13:37:48 +03004534 val &= ~DISPLAY_FREQUENCY_VALUES;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004535 val |= divider;
4536 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
Ville Syrjäläa877e802014-06-13 13:37:52 +03004537
4538 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
4539 DISPLAY_FREQUENCY_STATUS) == (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
4540 50))
4541 DRM_ERROR("timed out waiting for CDclk change\n");
Jesse Barnes30a970c2013-11-04 13:48:12 -08004542 mutex_unlock(&dev_priv->dpio_lock);
4543 }
4544
4545 mutex_lock(&dev_priv->dpio_lock);
4546 /* adjust self-refresh exit latency value */
4547 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
4548 val &= ~0x7f;
4549
4550 /*
4551 * For high bandwidth configs, we set a higher latency in the bunit
4552 * so that the core display fetch happens in time to avoid underruns.
4553 */
Ville Syrjälädfcab172014-06-13 13:37:47 +03004554 if (cdclk == 400000)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004555 val |= 4500 / 250; /* 4.5 usec */
4556 else
4557 val |= 3000 / 250; /* 3.0 usec */
4558 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
4559 mutex_unlock(&dev_priv->dpio_lock);
4560
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004561 vlv_update_cdclk(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004562}
4563
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004564static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
4565{
4566 struct drm_i915_private *dev_priv = dev->dev_private;
4567 u32 val, cmd;
4568
4569 WARN_ON(dev_priv->display.get_display_clock_speed(dev) != dev_priv->vlv_cdclk_freq);
4570
4571 switch (cdclk) {
4572 case 400000:
4573 cmd = 3;
4574 break;
4575 case 333333:
4576 case 320000:
4577 cmd = 2;
4578 break;
4579 case 266667:
4580 cmd = 1;
4581 break;
4582 case 200000:
4583 cmd = 0;
4584 break;
4585 default:
4586 WARN_ON(1);
4587 return;
4588 }
4589
4590 mutex_lock(&dev_priv->rps.hw_lock);
4591 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4592 val &= ~DSPFREQGUAR_MASK_CHV;
4593 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
4594 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4595 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4596 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
4597 50)) {
4598 DRM_ERROR("timed out waiting for CDclk change\n");
4599 }
4600 mutex_unlock(&dev_priv->rps.hw_lock);
4601
4602 vlv_update_cdclk(dev);
4603}
4604
Jesse Barnes30a970c2013-11-04 13:48:12 -08004605static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
4606 int max_pixclk)
4607{
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03004608 int vco = valleyview_get_vco(dev_priv);
4609 int freq_320 = (vco << 1) % 320000 != 0 ? 333333 : 320000;
4610
Ville Syrjäläd49a3402014-06-28 02:03:58 +03004611 /* FIXME: Punit isn't quite ready yet */
4612 if (IS_CHERRYVIEW(dev_priv->dev))
4613 return 400000;
4614
Jesse Barnes30a970c2013-11-04 13:48:12 -08004615 /*
4616 * Really only a few cases to deal with, as only 4 CDclks are supported:
4617 * 200MHz
4618 * 267MHz
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03004619 * 320/333MHz (depends on HPLL freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004620 * 400MHz
4621 * So we check to see whether we're above 90% of the lower bin and
4622 * adjust if needed.
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03004623 *
4624 * We seem to get an unstable or solid color picture at 200MHz.
4625 * Not sure what's wrong. For now use 200MHz only when all pipes
4626 * are off.
Jesse Barnes30a970c2013-11-04 13:48:12 -08004627 */
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03004628 if (max_pixclk > freq_320*9/10)
Ville Syrjälädfcab172014-06-13 13:37:47 +03004629 return 400000;
4630 else if (max_pixclk > 266667*9/10)
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03004631 return freq_320;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03004632 else if (max_pixclk > 0)
Ville Syrjälädfcab172014-06-13 13:37:47 +03004633 return 266667;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03004634 else
4635 return 200000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004636}
4637
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004638/* compute the max pixel clock for new configuration */
4639static int intel_mode_max_pixclk(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004640{
4641 struct drm_device *dev = dev_priv->dev;
4642 struct intel_crtc *intel_crtc;
4643 int max_pixclk = 0;
4644
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004645 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004646 if (intel_crtc->new_enabled)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004647 max_pixclk = max(max_pixclk,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004648 intel_crtc->new_config->adjusted_mode.crtc_clock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004649 }
4650
4651 return max_pixclk;
4652}
4653
4654static void valleyview_modeset_global_pipes(struct drm_device *dev,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004655 unsigned *prepare_pipes)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004656{
4657 struct drm_i915_private *dev_priv = dev->dev_private;
4658 struct intel_crtc *intel_crtc;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004659 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004660
Imre Deakd60c4472014-03-27 17:45:10 +02004661 if (valleyview_calc_cdclk(dev_priv, max_pixclk) ==
4662 dev_priv->vlv_cdclk_freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004663 return;
4664
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004665 /* disable/enable all currently active pipes while we change cdclk */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004666 for_each_intel_crtc(dev, intel_crtc)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004667 if (intel_crtc->base.enabled)
4668 *prepare_pipes |= (1 << intel_crtc->pipe);
4669}
4670
4671static void valleyview_modeset_global_resources(struct drm_device *dev)
4672{
4673 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004674 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004675 int req_cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
4676
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004677 if (req_cdclk != dev_priv->vlv_cdclk_freq) {
4678 if (IS_CHERRYVIEW(dev))
4679 cherryview_set_cdclk(dev, req_cdclk);
4680 else
4681 valleyview_set_cdclk(dev, req_cdclk);
4682 }
4683
Imre Deak77961eb2014-03-05 16:20:56 +02004684 modeset_update_crtc_power_domains(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004685}
4686
Jesse Barnes89b667f2013-04-18 14:51:36 -07004687static void valleyview_crtc_enable(struct drm_crtc *crtc)
4688{
4689 struct drm_device *dev = crtc->dev;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004690 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4691 struct intel_encoder *encoder;
4692 int pipe = intel_crtc->pipe;
Jani Nikula23538ef2013-08-27 15:12:22 +03004693 bool is_dsi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004694
4695 WARN_ON(!crtc->enabled);
4696
4697 if (intel_crtc->active)
4698 return;
4699
Shobhit Kumar8525a232014-06-25 12:20:39 +05304700 is_dsi = intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI);
4701
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03004702 if (!is_dsi) {
4703 if (IS_CHERRYVIEW(dev))
4704 chv_prepare_pll(intel_crtc);
4705 else
4706 vlv_prepare_pll(intel_crtc);
4707 }
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02004708
Daniel Vetter5b18e572014-04-24 23:55:06 +02004709 if (intel_crtc->config.has_dp_encoder)
4710 intel_dp_set_m_n(intel_crtc);
4711
4712 intel_set_pipe_timings(intel_crtc);
4713
Daniel Vetter5b18e572014-04-24 23:55:06 +02004714 i9xx_set_pipeconf(intel_crtc);
4715
Jesse Barnes89b667f2013-04-18 14:51:36 -07004716 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004717
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03004718 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4719
Jesse Barnes89b667f2013-04-18 14:51:36 -07004720 for_each_encoder_on_crtc(dev, crtc, encoder)
4721 if (encoder->pre_pll_enable)
4722 encoder->pre_pll_enable(encoder);
4723
Chon Ming Lee9d556c92014-05-02 14:27:47 +03004724 if (!is_dsi) {
4725 if (IS_CHERRYVIEW(dev))
4726 chv_enable_pll(intel_crtc);
4727 else
4728 vlv_enable_pll(intel_crtc);
4729 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07004730
4731 for_each_encoder_on_crtc(dev, crtc, encoder)
4732 if (encoder->pre_enable)
4733 encoder->pre_enable(encoder);
4734
Jesse Barnes2dd24552013-04-25 12:55:01 -07004735 i9xx_pfit_enable(intel_crtc);
4736
Ville Syrjälä63cbb072013-06-04 13:48:59 +03004737 intel_crtc_load_lut(crtc);
4738
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004739 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004740 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02004741
Jani Nikula50049452013-07-30 12:20:32 +03004742 for_each_encoder_on_crtc(dev, crtc, encoder)
4743 encoder->enable(encoder);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004744
4745 intel_crtc_enable_planes(crtc);
Daniel Vetterd40d9182014-05-21 11:45:40 +02004746
Ville Syrjälä56b80e12014-05-16 19:40:22 +03004747 /* Underruns don't raise interrupts, so check manually. */
4748 i9xx_check_fifo_underruns(dev);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004749}
4750
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02004751static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
4752{
4753 struct drm_device *dev = crtc->base.dev;
4754 struct drm_i915_private *dev_priv = dev->dev_private;
4755
4756 I915_WRITE(FP0(crtc->pipe), crtc->config.dpll_hw_state.fp0);
4757 I915_WRITE(FP1(crtc->pipe), crtc->config.dpll_hw_state.fp1);
4758}
4759
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004760static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004761{
4762 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08004763 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004764 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08004765 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08004766
Daniel Vetter08a48462012-07-02 11:43:47 +02004767 WARN_ON(!crtc->enabled);
4768
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004769 if (intel_crtc->active)
4770 return;
4771
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02004772 i9xx_set_pll_dividers(intel_crtc);
4773
Daniel Vetter5b18e572014-04-24 23:55:06 +02004774 if (intel_crtc->config.has_dp_encoder)
4775 intel_dp_set_m_n(intel_crtc);
4776
4777 intel_set_pipe_timings(intel_crtc);
4778
Daniel Vetter5b18e572014-04-24 23:55:06 +02004779 i9xx_set_pipeconf(intel_crtc);
4780
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004781 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01004782
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03004783 if (!IS_GEN2(dev))
4784 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4785
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02004786 for_each_encoder_on_crtc(dev, crtc, encoder)
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02004787 if (encoder->pre_enable)
4788 encoder->pre_enable(encoder);
4789
Daniel Vetterf6736a12013-06-05 13:34:30 +02004790 i9xx_enable_pll(intel_crtc);
4791
Jesse Barnes2dd24552013-04-25 12:55:01 -07004792 i9xx_pfit_enable(intel_crtc);
4793
Ville Syrjälä63cbb072013-06-04 13:48:59 +03004794 intel_crtc_load_lut(crtc);
4795
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004796 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004797 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02004798
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004799 for_each_encoder_on_crtc(dev, crtc, encoder)
4800 encoder->enable(encoder);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004801
4802 intel_crtc_enable_planes(crtc);
Daniel Vetterd40d9182014-05-21 11:45:40 +02004803
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03004804 /*
4805 * Gen2 reports pipe underruns whenever all planes are disabled.
4806 * So don't enable underrun reporting before at least some planes
4807 * are enabled.
4808 * FIXME: Need to fix the logic to work when we turn off all planes
4809 * but leave the pipe running.
4810 */
4811 if (IS_GEN2(dev))
4812 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4813
Ville Syrjälä56b80e12014-05-16 19:40:22 +03004814 /* Underruns don't raise interrupts, so check manually. */
4815 i9xx_check_fifo_underruns(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004816}
4817
Daniel Vetter87476d62013-04-11 16:29:06 +02004818static void i9xx_pfit_disable(struct intel_crtc *crtc)
4819{
4820 struct drm_device *dev = crtc->base.dev;
4821 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02004822
4823 if (!crtc->config.gmch_pfit.control)
4824 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02004825
4826 assert_pipe_disabled(dev_priv, crtc->pipe);
4827
Daniel Vetter328d8e82013-05-08 10:36:31 +02004828 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
4829 I915_READ(PFIT_CONTROL));
4830 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02004831}
4832
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004833static void i9xx_crtc_disable(struct drm_crtc *crtc)
4834{
4835 struct drm_device *dev = crtc->dev;
4836 struct drm_i915_private *dev_priv = dev->dev_private;
4837 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004838 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004839 int pipe = intel_crtc->pipe;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004840
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004841 if (!intel_crtc->active)
4842 return;
4843
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03004844 /*
4845 * Gen2 reports pipe underruns whenever all planes are disabled.
4846 * So diasble underrun reporting before all the planes get disabled.
4847 * FIXME: Need to fix the logic to work when we turn off all planes
4848 * but leave the pipe running.
4849 */
4850 if (IS_GEN2(dev))
4851 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false);
4852
Imre Deak564ed192014-06-13 14:54:21 +03004853 /*
4854 * Vblank time updates from the shadow to live plane control register
4855 * are blocked if the memory self-refresh mode is active at that
4856 * moment. So to make sure the plane gets truly disabled, disable
4857 * first the self-refresh mode. The self-refresh enable bit in turn
4858 * will be checked/applied by the HW only at the next frame start
4859 * event which is after the vblank start event, so we need to have a
4860 * wait-for-vblank between disabling the plane and the pipe.
4861 */
4862 intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004863 intel_crtc_disable_planes(crtc);
4864
Daniel Vetterea9d7582012-07-10 10:42:52 +02004865 for_each_encoder_on_crtc(dev, crtc, encoder)
4866 encoder->disable(encoder);
4867
Ville Syrjälä6304cd92014-04-25 13:30:12 +03004868 /*
4869 * On gen2 planes are double buffered but the pipe isn't, so we must
4870 * wait for planes to fully turn off before disabling the pipe.
Imre Deak564ed192014-06-13 14:54:21 +03004871 * We also need to wait on all gmch platforms because of the
4872 * self-refresh mode constraint explained above.
Ville Syrjälä6304cd92014-04-25 13:30:12 +03004873 */
Imre Deak564ed192014-06-13 14:54:21 +03004874 intel_wait_for_vblank(dev, pipe);
Ville Syrjälä6304cd92014-04-25 13:30:12 +03004875
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03004876 intel_disable_pipe(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02004877
Daniel Vetter87476d62013-04-11 16:29:06 +02004878 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02004879
Jesse Barnes89b667f2013-04-18 14:51:36 -07004880 for_each_encoder_on_crtc(dev, crtc, encoder)
4881 if (encoder->post_disable)
4882 encoder->post_disable(encoder);
4883
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03004884 if (!intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI)) {
4885 if (IS_CHERRYVIEW(dev))
4886 chv_disable_pll(dev_priv, pipe);
4887 else if (IS_VALLEYVIEW(dev))
4888 vlv_disable_pll(dev_priv, pipe);
4889 else
4890 i9xx_disable_pll(dev_priv, pipe);
4891 }
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004892
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03004893 if (!IS_GEN2(dev))
4894 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false);
4895
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004896 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004897 intel_update_watermarks(crtc);
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004898
Daniel Vetterefa96242014-04-24 23:55:02 +02004899 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01004900 intel_update_fbc(dev);
Daniel Vetterefa96242014-04-24 23:55:02 +02004901 mutex_unlock(&dev->struct_mutex);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004902}
4903
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004904static void i9xx_crtc_off(struct drm_crtc *crtc)
4905{
4906}
4907
Daniel Vetter976f8a22012-07-08 22:34:21 +02004908static void intel_crtc_update_sarea(struct drm_crtc *crtc,
4909 bool enabled)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004910{
4911 struct drm_device *dev = crtc->dev;
4912 struct drm_i915_master_private *master_priv;
4913 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4914 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08004915
4916 if (!dev->primary->master)
4917 return;
4918
4919 master_priv = dev->primary->master->driver_priv;
4920 if (!master_priv->sarea_priv)
4921 return;
4922
Jesse Barnes79e53942008-11-07 14:24:08 -08004923 switch (pipe) {
4924 case 0:
4925 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
4926 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
4927 break;
4928 case 1:
4929 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
4930 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
4931 break;
4932 default:
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004933 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08004934 break;
4935 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004936}
4937
Borun Fub04c5bd2014-07-12 10:02:27 +05304938/* Master function to enable/disable CRTC and corresponding power wells */
4939void intel_crtc_control(struct drm_crtc *crtc, bool enable)
Chris Wilsoncdd59982010-09-08 16:30:16 +01004940{
Chris Wilsoncdd59982010-09-08 16:30:16 +01004941 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004942 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02004943 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02004944 enum intel_display_power_domain domain;
4945 unsigned long domains;
Daniel Vetter976f8a22012-07-08 22:34:21 +02004946
Daniel Vetter0e572fe2014-04-24 23:55:42 +02004947 if (enable) {
4948 if (!intel_crtc->active) {
Daniel Vettere1e9fb82014-06-25 22:02:04 +03004949 domains = get_crtc_power_domains(crtc);
4950 for_each_power_domain(domain, domains)
4951 intel_display_power_get(dev_priv, domain);
4952 intel_crtc->enabled_power_domains = domains;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02004953
4954 dev_priv->display.crtc_enable(crtc);
4955 }
4956 } else {
4957 if (intel_crtc->active) {
4958 dev_priv->display.crtc_disable(crtc);
4959
Daniel Vettere1e9fb82014-06-25 22:02:04 +03004960 domains = intel_crtc->enabled_power_domains;
4961 for_each_power_domain(domain, domains)
4962 intel_display_power_put(dev_priv, domain);
4963 intel_crtc->enabled_power_domains = 0;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02004964 }
4965 }
Borun Fub04c5bd2014-07-12 10:02:27 +05304966}
4967
4968/**
4969 * Sets the power management mode of the pipe and plane.
4970 */
4971void intel_crtc_update_dpms(struct drm_crtc *crtc)
4972{
4973 struct drm_device *dev = crtc->dev;
4974 struct intel_encoder *intel_encoder;
4975 bool enable = false;
4976
4977 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4978 enable |= intel_encoder->connectors_active;
4979
4980 intel_crtc_control(crtc, enable);
Daniel Vetter976f8a22012-07-08 22:34:21 +02004981
4982 intel_crtc_update_sarea(crtc, enable);
4983}
4984
Daniel Vetter976f8a22012-07-08 22:34:21 +02004985static void intel_crtc_disable(struct drm_crtc *crtc)
4986{
4987 struct drm_device *dev = crtc->dev;
4988 struct drm_connector *connector;
4989 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roper2ff8fde2014-07-08 07:50:07 -07004990 struct drm_i915_gem_object *old_obj = intel_fb_obj(crtc->primary->fb);
Daniel Vettera071fa02014-06-18 23:28:09 +02004991 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Daniel Vetter976f8a22012-07-08 22:34:21 +02004992
4993 /* crtc should still be enabled when we disable it. */
4994 WARN_ON(!crtc->enabled);
4995
4996 dev_priv->display.crtc_disable(crtc);
4997 intel_crtc_update_sarea(crtc, false);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004998 dev_priv->display.off(crtc);
4999
Matt Roperf4510a22014-04-01 15:22:40 -07005000 if (crtc->primary->fb) {
Chris Wilsoncdd59982010-09-08 16:30:16 +01005001 mutex_lock(&dev->struct_mutex);
Daniel Vettera071fa02014-06-18 23:28:09 +02005002 intel_unpin_fb_obj(old_obj);
5003 i915_gem_track_fb(old_obj, NULL,
5004 INTEL_FRONTBUFFER_PRIMARY(pipe));
Chris Wilsoncdd59982010-09-08 16:30:16 +01005005 mutex_unlock(&dev->struct_mutex);
Matt Roperf4510a22014-04-01 15:22:40 -07005006 crtc->primary->fb = NULL;
Daniel Vetter976f8a22012-07-08 22:34:21 +02005007 }
5008
5009 /* Update computed state. */
5010 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
5011 if (!connector->encoder || !connector->encoder->crtc)
5012 continue;
5013
5014 if (connector->encoder->crtc != crtc)
5015 continue;
5016
5017 connector->dpms = DRM_MODE_DPMS_OFF;
5018 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01005019 }
5020}
5021
Chris Wilsonea5b2132010-08-04 13:50:23 +01005022void intel_encoder_destroy(struct drm_encoder *encoder)
5023{
Chris Wilson4ef69c72010-09-09 15:14:28 +01005024 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01005025
Chris Wilsonea5b2132010-08-04 13:50:23 +01005026 drm_encoder_cleanup(encoder);
5027 kfree(intel_encoder);
5028}
5029
Damien Lespiau92373292013-08-08 22:28:57 +01005030/* Simple dpms helper for encoders with just one connector, no cloning and only
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005031 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
5032 * state of the entire output pipe. */
Damien Lespiau92373292013-08-08 22:28:57 +01005033static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005034{
5035 if (mode == DRM_MODE_DPMS_ON) {
5036 encoder->connectors_active = true;
5037
Daniel Vetterb2cabb02012-07-01 22:42:24 +02005038 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005039 } else {
5040 encoder->connectors_active = false;
5041
Daniel Vetterb2cabb02012-07-01 22:42:24 +02005042 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005043 }
5044}
5045
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005046/* Cross check the actual hw state with our own modeset state tracking (and it's
5047 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02005048static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005049{
5050 if (connector->get_hw_state(connector)) {
5051 struct intel_encoder *encoder = connector->encoder;
5052 struct drm_crtc *crtc;
5053 bool encoder_enabled;
5054 enum pipe pipe;
5055
5056 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
5057 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03005058 connector->base.name);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005059
Dave Airlie0e32b392014-05-02 14:02:48 +10005060 /* there is no real hw state for MST connectors */
5061 if (connector->mst_port)
5062 return;
5063
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005064 WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
5065 "wrong connector dpms state\n");
5066 WARN(connector->base.encoder != &encoder->base,
5067 "active connector not linked to encoder\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005068
Dave Airlie36cd7442014-05-02 13:44:18 +10005069 if (encoder) {
5070 WARN(!encoder->connectors_active,
5071 "encoder->connectors_active not set\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005072
Dave Airlie36cd7442014-05-02 13:44:18 +10005073 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
5074 WARN(!encoder_enabled, "encoder not enabled\n");
5075 if (WARN_ON(!encoder->base.crtc))
5076 return;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005077
Dave Airlie36cd7442014-05-02 13:44:18 +10005078 crtc = encoder->base.crtc;
5079
5080 WARN(!crtc->enabled, "crtc not enabled\n");
5081 WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
5082 WARN(pipe != to_intel_crtc(crtc)->pipe,
5083 "encoder active on the wrong pipe\n");
5084 }
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005085 }
5086}
5087
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005088/* Even simpler default implementation, if there's really no special case to
5089 * consider. */
5090void intel_connector_dpms(struct drm_connector *connector, int mode)
5091{
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005092 /* All the simple cases only support two dpms states. */
5093 if (mode != DRM_MODE_DPMS_ON)
5094 mode = DRM_MODE_DPMS_OFF;
5095
5096 if (mode == connector->dpms)
5097 return;
5098
5099 connector->dpms = mode;
5100
5101 /* Only need to change hw state when actually enabled */
Chris Wilsonc9976dc2013-09-29 19:15:07 +01005102 if (connector->encoder)
5103 intel_encoder_dpms(to_intel_encoder(connector->encoder), mode);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005104
Daniel Vetterb9805142012-08-31 17:37:33 +02005105 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005106}
5107
Daniel Vetterf0947c32012-07-02 13:10:34 +02005108/* Simple connector->get_hw_state implementation for encoders that support only
5109 * one connector and no cloning and hence the encoder state determines the state
5110 * of the connector. */
5111bool intel_connector_get_hw_state(struct intel_connector *connector)
5112{
Daniel Vetter24929352012-07-02 20:28:59 +02005113 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02005114 struct intel_encoder *encoder = connector->encoder;
5115
5116 return encoder->get_hw_state(encoder, &pipe);
5117}
5118
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005119static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
5120 struct intel_crtc_config *pipe_config)
5121{
5122 struct drm_i915_private *dev_priv = dev->dev_private;
5123 struct intel_crtc *pipe_B_crtc =
5124 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
5125
5126 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
5127 pipe_name(pipe), pipe_config->fdi_lanes);
5128 if (pipe_config->fdi_lanes > 4) {
5129 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
5130 pipe_name(pipe), pipe_config->fdi_lanes);
5131 return false;
5132 }
5133
Paulo Zanonibafb6552013-11-02 21:07:44 -07005134 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005135 if (pipe_config->fdi_lanes > 2) {
5136 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
5137 pipe_config->fdi_lanes);
5138 return false;
5139 } else {
5140 return true;
5141 }
5142 }
5143
5144 if (INTEL_INFO(dev)->num_pipes == 2)
5145 return true;
5146
5147 /* Ivybridge 3 pipe is really complicated */
5148 switch (pipe) {
5149 case PIPE_A:
5150 return true;
5151 case PIPE_B:
5152 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
5153 pipe_config->fdi_lanes > 2) {
5154 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5155 pipe_name(pipe), pipe_config->fdi_lanes);
5156 return false;
5157 }
5158 return true;
5159 case PIPE_C:
Daniel Vetter1e833f42013-02-19 22:31:57 +01005160 if (!pipe_has_enabled_pch(pipe_B_crtc) ||
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005161 pipe_B_crtc->config.fdi_lanes <= 2) {
5162 if (pipe_config->fdi_lanes > 2) {
5163 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5164 pipe_name(pipe), pipe_config->fdi_lanes);
5165 return false;
5166 }
5167 } else {
5168 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
5169 return false;
5170 }
5171 return true;
5172 default:
5173 BUG();
5174 }
5175}
5176
Daniel Vettere29c22c2013-02-21 00:00:16 +01005177#define RETRY 1
5178static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
5179 struct intel_crtc_config *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02005180{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005181 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005182 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Daniel Vetterff9a6752013-06-01 17:16:21 +02005183 int lane, link_bw, fdi_dotclock;
Daniel Vettere29c22c2013-02-21 00:00:16 +01005184 bool setup_ok, needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005185
Daniel Vettere29c22c2013-02-21 00:00:16 +01005186retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02005187 /* FDI is a binary signal running at ~2.7GHz, encoding
5188 * each output octet as 10 bits. The actual frequency
5189 * is stored as a divider into a 100MHz clock, and the
5190 * mode pixel clock is stored in units of 1KHz.
5191 * Hence the bw of each lane in terms of the mode signal
5192 * is:
5193 */
5194 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
5195
Damien Lespiau241bfc32013-09-25 16:45:37 +01005196 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005197
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005198 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005199 pipe_config->pipe_bpp);
5200
5201 pipe_config->fdi_lanes = lane;
5202
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005203 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005204 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005205
Daniel Vettere29c22c2013-02-21 00:00:16 +01005206 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
5207 intel_crtc->pipe, pipe_config);
5208 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
5209 pipe_config->pipe_bpp -= 2*3;
5210 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
5211 pipe_config->pipe_bpp);
5212 needs_recompute = true;
5213 pipe_config->bw_constrained = true;
5214
5215 goto retry;
5216 }
5217
5218 if (needs_recompute)
5219 return RETRY;
5220
5221 return setup_ok ? 0 : -EINVAL;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005222}
5223
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005224static void hsw_compute_ips_config(struct intel_crtc *crtc,
5225 struct intel_crtc_config *pipe_config)
5226{
Jani Nikulad330a952014-01-21 11:24:25 +02005227 pipe_config->ips_enabled = i915.enable_ips &&
Paulo Zanoni3c4ca582013-05-31 16:33:23 -03005228 hsw_crtc_supports_ips(crtc) &&
Jesse Barnesb6dfdc92013-07-25 10:06:50 -07005229 pipe_config->pipe_bpp <= 24;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005230}
5231
Daniel Vettera43f6e02013-06-07 23:10:32 +02005232static int intel_crtc_compute_config(struct intel_crtc *crtc,
Daniel Vettere29c22c2013-02-21 00:00:16 +01005233 struct intel_crtc_config *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08005234{
Daniel Vettera43f6e02013-06-07 23:10:32 +02005235 struct drm_device *dev = crtc->base.dev;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01005236 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Chris Wilson89749352010-09-12 18:25:19 +01005237
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005238 /* FIXME should check pixel clock limits on all platforms */
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005239 if (INTEL_INFO(dev)->gen < 4) {
5240 struct drm_i915_private *dev_priv = dev->dev_private;
5241 int clock_limit =
5242 dev_priv->display.get_display_clock_speed(dev);
5243
5244 /*
5245 * Enable pixel doubling when the dot clock
5246 * is > 90% of the (display) core speed.
5247 *
Ville Syrjäläb397c962013-09-04 18:30:06 +03005248 * GDG double wide on either pipe,
5249 * otherwise pipe A only.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005250 */
Ville Syrjäläb397c962013-09-04 18:30:06 +03005251 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
Damien Lespiau241bfc32013-09-25 16:45:37 +01005252 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005253 clock_limit *= 2;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005254 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005255 }
5256
Damien Lespiau241bfc32013-09-25 16:45:37 +01005257 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005258 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08005259 }
Chris Wilson89749352010-09-12 18:25:19 +01005260
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03005261 /*
5262 * Pipe horizontal size must be even in:
5263 * - DVO ganged mode
5264 * - LVDS dual channel mode
5265 * - Double wide pipe
5266 */
5267 if ((intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
5268 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
5269 pipe_config->pipe_src_w &= ~1;
5270
Damien Lespiau8693a822013-05-03 18:48:11 +01005271 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
5272 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03005273 */
5274 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
5275 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005276 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03005277
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005278 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005279 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005280 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005281 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
5282 * for lvds. */
5283 pipe_config->pipe_bpp = 8*3;
5284 }
5285
Damien Lespiauf5adf942013-06-24 18:29:34 +01005286 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02005287 hsw_compute_ips_config(crtc, pipe_config);
5288
Daniel Vetter12030432014-06-25 22:02:00 +03005289 /*
5290 * XXX: PCH/WRPLL clock sharing is done in ->mode_set, so make sure the
5291 * old clock survives for now.
5292 */
5293 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev) || HAS_DDI(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02005294 pipe_config->shared_dpll = crtc->config.shared_dpll;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005295
Daniel Vetter877d48d2013-04-19 11:24:43 +02005296 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02005297 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02005298
Daniel Vettere29c22c2013-02-21 00:00:16 +01005299 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005300}
5301
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07005302static int valleyview_get_display_clock_speed(struct drm_device *dev)
5303{
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005304 struct drm_i915_private *dev_priv = dev->dev_private;
5305 int vco = valleyview_get_vco(dev_priv);
5306 u32 val;
5307 int divider;
5308
Ville Syrjäläd49a3402014-06-28 02:03:58 +03005309 /* FIXME: Punit isn't quite ready yet */
5310 if (IS_CHERRYVIEW(dev))
5311 return 400000;
5312
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005313 mutex_lock(&dev_priv->dpio_lock);
5314 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
5315 mutex_unlock(&dev_priv->dpio_lock);
5316
5317 divider = val & DISPLAY_FREQUENCY_VALUES;
5318
Ville Syrjälä7d007f42014-06-13 13:37:53 +03005319 WARN((val & DISPLAY_FREQUENCY_STATUS) !=
5320 (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
5321 "cdclk change in progress\n");
5322
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005323 return DIV_ROUND_CLOSEST(vco << 1, divider + 1);
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07005324}
5325
Jesse Barnese70236a2009-09-21 10:42:27 -07005326static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08005327{
Jesse Barnese70236a2009-09-21 10:42:27 -07005328 return 400000;
5329}
Jesse Barnes79e53942008-11-07 14:24:08 -08005330
Jesse Barnese70236a2009-09-21 10:42:27 -07005331static int i915_get_display_clock_speed(struct drm_device *dev)
5332{
5333 return 333000;
5334}
Jesse Barnes79e53942008-11-07 14:24:08 -08005335
Jesse Barnese70236a2009-09-21 10:42:27 -07005336static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
5337{
5338 return 200000;
5339}
Jesse Barnes79e53942008-11-07 14:24:08 -08005340
Daniel Vetter257a7ff2013-07-26 08:35:42 +02005341static int pnv_get_display_clock_speed(struct drm_device *dev)
5342{
5343 u16 gcfgc = 0;
5344
5345 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5346
5347 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5348 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
5349 return 267000;
5350 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
5351 return 333000;
5352 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
5353 return 444000;
5354 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
5355 return 200000;
5356 default:
5357 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
5358 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
5359 return 133000;
5360 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
5361 return 167000;
5362 }
5363}
5364
Jesse Barnese70236a2009-09-21 10:42:27 -07005365static int i915gm_get_display_clock_speed(struct drm_device *dev)
5366{
5367 u16 gcfgc = 0;
5368
5369 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5370
5371 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08005372 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07005373 else {
5374 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5375 case GC_DISPLAY_CLOCK_333_MHZ:
5376 return 333000;
5377 default:
5378 case GC_DISPLAY_CLOCK_190_200_MHZ:
5379 return 190000;
5380 }
5381 }
5382}
Jesse Barnes79e53942008-11-07 14:24:08 -08005383
Jesse Barnese70236a2009-09-21 10:42:27 -07005384static int i865_get_display_clock_speed(struct drm_device *dev)
5385{
5386 return 266000;
5387}
5388
5389static int i855_get_display_clock_speed(struct drm_device *dev)
5390{
5391 u16 hpllcc = 0;
5392 /* Assume that the hardware is in the high speed state. This
5393 * should be the default.
5394 */
5395 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
5396 case GC_CLOCK_133_200:
5397 case GC_CLOCK_100_200:
5398 return 200000;
5399 case GC_CLOCK_166_250:
5400 return 250000;
5401 case GC_CLOCK_100_133:
5402 return 133000;
5403 }
5404
5405 /* Shouldn't happen */
5406 return 0;
5407}
5408
5409static int i830_get_display_clock_speed(struct drm_device *dev)
5410{
5411 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08005412}
5413
Zhenyu Wang2c072452009-06-05 15:38:42 +08005414static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005415intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005416{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005417 while (*num > DATA_LINK_M_N_MASK ||
5418 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08005419 *num >>= 1;
5420 *den >>= 1;
5421 }
5422}
5423
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005424static void compute_m_n(unsigned int m, unsigned int n,
5425 uint32_t *ret_m, uint32_t *ret_n)
5426{
5427 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
5428 *ret_m = div_u64((uint64_t) m * *ret_n, n);
5429 intel_reduce_m_n_ratio(ret_m, ret_n);
5430}
5431
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005432void
5433intel_link_compute_m_n(int bits_per_pixel, int nlanes,
5434 int pixel_clock, int link_clock,
5435 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005436{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005437 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005438
5439 compute_m_n(bits_per_pixel * pixel_clock,
5440 link_clock * nlanes * 8,
5441 &m_n->gmch_m, &m_n->gmch_n);
5442
5443 compute_m_n(pixel_clock, link_clock,
5444 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005445}
5446
Chris Wilsona7615032011-01-12 17:04:08 +00005447static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
5448{
Jani Nikulad330a952014-01-21 11:24:25 +02005449 if (i915.panel_use_ssc >= 0)
5450 return i915.panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005451 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07005452 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00005453}
5454
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005455static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
5456{
5457 struct drm_device *dev = crtc->dev;
5458 struct drm_i915_private *dev_priv = dev->dev_private;
5459 int refclk;
5460
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005461 if (IS_VALLEYVIEW(dev)) {
Daniel Vetter9a0ea492013-09-16 11:29:34 +02005462 refclk = 100000;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005463 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005464 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02005465 refclk = dev_priv->vbt.lvds_ssc_freq;
5466 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005467 } else if (!IS_GEN2(dev)) {
5468 refclk = 96000;
5469 } else {
5470 refclk = 48000;
5471 }
5472
5473 return refclk;
5474}
5475
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005476static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005477{
Daniel Vetter7df00d72013-05-21 21:54:55 +02005478 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005479}
Daniel Vetterf47709a2013-03-28 10:42:02 +01005480
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005481static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
5482{
5483 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005484}
5485
Daniel Vetterf47709a2013-03-28 10:42:02 +01005486static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Jesse Barnesa7516a02011-12-15 12:30:37 -08005487 intel_clock_t *reduced_clock)
5488{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005489 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005490 u32 fp, fp2 = 0;
5491
5492 if (IS_PINEVIEW(dev)) {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005493 fp = pnv_dpll_compute_fp(&crtc->config.dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005494 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005495 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005496 } else {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005497 fp = i9xx_dpll_compute_fp(&crtc->config.dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005498 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005499 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005500 }
5501
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005502 crtc->config.dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005503
Daniel Vetterf47709a2013-03-28 10:42:02 +01005504 crtc->lowfreq_avail = false;
5505 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Jani Nikulad330a952014-01-21 11:24:25 +02005506 reduced_clock && i915.powersave) {
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005507 crtc->config.dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005508 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005509 } else {
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005510 crtc->config.dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005511 }
5512}
5513
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005514static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
5515 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07005516{
5517 u32 reg_val;
5518
5519 /*
5520 * PLLB opamp always calibrates to max value of 0x3f, force enable it
5521 * and set it to a reasonable value instead.
5522 */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005523 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005524 reg_val &= 0xffffff00;
5525 reg_val |= 0x00000030;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005526 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005527
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005528 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005529 reg_val &= 0x8cffffff;
5530 reg_val = 0x8c000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005531 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005532
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005533 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005534 reg_val &= 0xffffff00;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005535 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005536
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005537 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005538 reg_val &= 0x00ffffff;
5539 reg_val |= 0xb0000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005540 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005541}
5542
Daniel Vetterb5518422013-05-03 11:49:48 +02005543static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
5544 struct intel_link_m_n *m_n)
5545{
5546 struct drm_device *dev = crtc->base.dev;
5547 struct drm_i915_private *dev_priv = dev->dev_private;
5548 int pipe = crtc->pipe;
5549
Daniel Vettere3b95f12013-05-03 11:49:49 +02005550 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5551 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
5552 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
5553 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005554}
5555
5556static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -07005557 struct intel_link_m_n *m_n,
5558 struct intel_link_m_n *m2_n2)
Daniel Vetterb5518422013-05-03 11:49:48 +02005559{
5560 struct drm_device *dev = crtc->base.dev;
5561 struct drm_i915_private *dev_priv = dev->dev_private;
5562 int pipe = crtc->pipe;
5563 enum transcoder transcoder = crtc->config.cpu_transcoder;
5564
5565 if (INTEL_INFO(dev)->gen >= 5) {
5566 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
5567 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
5568 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
5569 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
Vandana Kannanf769cd22014-08-05 07:51:22 -07005570 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
5571 * for gen < 8) and if DRRS is supported (to make sure the
5572 * registers are not unnecessarily accessed).
5573 */
5574 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
5575 crtc->config.has_drrs) {
5576 I915_WRITE(PIPE_DATA_M2(transcoder),
5577 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
5578 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
5579 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
5580 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
5581 }
Daniel Vetterb5518422013-05-03 11:49:48 +02005582 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02005583 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5584 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
5585 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
5586 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005587 }
5588}
5589
Vandana Kannanf769cd22014-08-05 07:51:22 -07005590void intel_dp_set_m_n(struct intel_crtc *crtc)
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005591{
5592 if (crtc->config.has_pch_encoder)
5593 intel_pch_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
5594 else
Vandana Kannanf769cd22014-08-05 07:51:22 -07005595 intel_cpu_transcoder_set_m_n(crtc, &crtc->config.dp_m_n,
5596 &crtc->config.dp_m2_n2);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005597}
5598
Daniel Vetterf47709a2013-03-28 10:42:02 +01005599static void vlv_update_pll(struct intel_crtc *crtc)
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005600{
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005601 u32 dpll, dpll_md;
5602
5603 /*
5604 * Enable DPIO clock input. We should never disable the reference
5605 * clock for pipe B, since VGA hotplug / manual detection depends
5606 * on it.
5607 */
5608 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
5609 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
5610 /* We should never disable this, set it here for state tracking */
5611 if (crtc->pipe == PIPE_B)
5612 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
5613 dpll |= DPLL_VCO_ENABLE;
5614 crtc->config.dpll_hw_state.dpll = dpll;
5615
5616 dpll_md = (crtc->config.pixel_multiplier - 1)
5617 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
5618 crtc->config.dpll_hw_state.dpll_md = dpll_md;
5619}
5620
5621static void vlv_prepare_pll(struct intel_crtc *crtc)
5622{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005623 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005624 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005625 int pipe = crtc->pipe;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005626 u32 mdiv;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005627 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005628 u32 coreclk, reg_val;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005629
Daniel Vetter09153002012-12-12 14:06:44 +01005630 mutex_lock(&dev_priv->dpio_lock);
5631
Daniel Vetterf47709a2013-03-28 10:42:02 +01005632 bestn = crtc->config.dpll.n;
5633 bestm1 = crtc->config.dpll.m1;
5634 bestm2 = crtc->config.dpll.m2;
5635 bestp1 = crtc->config.dpll.p1;
5636 bestp2 = crtc->config.dpll.p2;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005637
Jesse Barnes89b667f2013-04-18 14:51:36 -07005638 /* See eDP HDMI DPIO driver vbios notes doc */
5639
5640 /* PLL B needs special handling */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005641 if (pipe == PIPE_B)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005642 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005643
5644 /* Set up Tx target for periodic Rcomp update */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005645 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005646
5647 /* Disable target IRef on PLL */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005648 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005649 reg_val &= 0x00ffffff;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005650 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005651
5652 /* Disable fast lock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005653 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005654
5655 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005656 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
5657 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
5658 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005659 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07005660
5661 /*
5662 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
5663 * but we don't support that).
5664 * Note: don't use the DAC post divider as it seems unstable.
5665 */
5666 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005667 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005668
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005669 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005670 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005671
Jesse Barnes89b667f2013-04-18 14:51:36 -07005672 /* Set HBR and RBR LPF coefficients */
Daniel Vetterff9a6752013-06-01 17:16:21 +02005673 if (crtc->config.port_clock == 162000 ||
Ville Syrjälä99750bd2013-06-14 14:02:52 +03005674 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_ANALOG) ||
Jesse Barnes89b667f2013-04-18 14:51:36 -07005675 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI))
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005676 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Ville Syrjälä885b0122013-07-05 19:21:38 +03005677 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005678 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005679 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005680 0x00d0000f);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005681
Jesse Barnes89b667f2013-04-18 14:51:36 -07005682 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP) ||
5683 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT)) {
5684 /* Use SSC source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005685 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005686 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005687 0x0df40000);
5688 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005689 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005690 0x0df70000);
5691 } else { /* HDMI or VGA */
5692 /* Use bend source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005693 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005694 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005695 0x0df70000);
5696 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005697 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005698 0x0df40000);
5699 }
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005700
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005701 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005702 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
5703 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT) ||
5704 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP))
5705 coreclk |= 0x01000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005706 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005707
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005708 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
Daniel Vetter09153002012-12-12 14:06:44 +01005709 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005710}
5711
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005712static void chv_update_pll(struct intel_crtc *crtc)
5713{
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005714 crtc->config.dpll_hw_state.dpll = DPLL_SSC_REF_CLOCK_CHV |
5715 DPLL_REFA_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
5716 DPLL_VCO_ENABLE;
5717 if (crtc->pipe != PIPE_A)
5718 crtc->config.dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
5719
5720 crtc->config.dpll_hw_state.dpll_md =
5721 (crtc->config.pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
5722}
5723
5724static void chv_prepare_pll(struct intel_crtc *crtc)
5725{
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005726 struct drm_device *dev = crtc->base.dev;
5727 struct drm_i915_private *dev_priv = dev->dev_private;
5728 int pipe = crtc->pipe;
5729 int dpll_reg = DPLL(crtc->pipe);
5730 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Ville Syrjälä580d3812014-04-09 13:29:00 +03005731 u32 loopfilter, intcoeff;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005732 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
5733 int refclk;
5734
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005735 bestn = crtc->config.dpll.n;
5736 bestm2_frac = crtc->config.dpll.m2 & 0x3fffff;
5737 bestm1 = crtc->config.dpll.m1;
5738 bestm2 = crtc->config.dpll.m2 >> 22;
5739 bestp1 = crtc->config.dpll.p1;
5740 bestp2 = crtc->config.dpll.p2;
5741
5742 /*
5743 * Enable Refclk and SSC
5744 */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03005745 I915_WRITE(dpll_reg,
5746 crtc->config.dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
5747
5748 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005749
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005750 /* p1 and p2 divider */
5751 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
5752 5 << DPIO_CHV_S1_DIV_SHIFT |
5753 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
5754 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
5755 1 << DPIO_CHV_K_DIV_SHIFT);
5756
5757 /* Feedback post-divider - m2 */
5758 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
5759
5760 /* Feedback refclk divider - n and m1 */
5761 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
5762 DPIO_CHV_M1_DIV_BY_2 |
5763 1 << DPIO_CHV_N_DIV_SHIFT);
5764
5765 /* M2 fraction division */
5766 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
5767
5768 /* M2 fraction division enable */
5769 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port),
5770 DPIO_CHV_FRAC_DIV_EN |
5771 (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT));
5772
5773 /* Loop filter */
5774 refclk = i9xx_get_refclk(&crtc->base, 0);
5775 loopfilter = 5 << DPIO_CHV_PROP_COEFF_SHIFT |
5776 2 << DPIO_CHV_GAIN_CTRL_SHIFT;
5777 if (refclk == 100000)
5778 intcoeff = 11;
5779 else if (refclk == 38400)
5780 intcoeff = 10;
5781 else
5782 intcoeff = 9;
5783 loopfilter |= intcoeff << DPIO_CHV_INT_COEFF_SHIFT;
5784 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
5785
5786 /* AFC Recal */
5787 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
5788 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
5789 DPIO_AFC_RECAL);
5790
5791 mutex_unlock(&dev_priv->dpio_lock);
5792}
5793
Daniel Vetterf47709a2013-03-28 10:42:02 +01005794static void i9xx_update_pll(struct intel_crtc *crtc,
5795 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005796 int num_connectors)
5797{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005798 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005799 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005800 u32 dpll;
5801 bool is_sdvo;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005802 struct dpll *clock = &crtc->config.dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005803
Daniel Vetterf47709a2013-03-28 10:42:02 +01005804 i9xx_update_pll_dividers(crtc, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305805
Daniel Vetterf47709a2013-03-28 10:42:02 +01005806 is_sdvo = intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_SDVO) ||
5807 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005808
5809 dpll = DPLL_VGA_MODE_DIS;
5810
Daniel Vetterf47709a2013-03-28 10:42:02 +01005811 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005812 dpll |= DPLLB_MODE_LVDS;
5813 else
5814 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01005815
Daniel Vetteref1b4602013-06-01 17:17:04 +02005816 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Daniel Vetter198a037f2013-04-19 11:14:37 +02005817 dpll |= (crtc->config.pixel_multiplier - 1)
5818 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005819 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02005820
5821 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02005822 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02005823
Daniel Vetterf47709a2013-03-28 10:42:02 +01005824 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT))
Daniel Vetter4a33e482013-07-06 12:52:05 +02005825 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005826
5827 /* compute bitmask from p1 value */
5828 if (IS_PINEVIEW(dev))
5829 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
5830 else {
5831 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5832 if (IS_G4X(dev) && reduced_clock)
5833 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
5834 }
5835 switch (clock->p2) {
5836 case 5:
5837 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
5838 break;
5839 case 7:
5840 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
5841 break;
5842 case 10:
5843 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
5844 break;
5845 case 14:
5846 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
5847 break;
5848 }
5849 if (INTEL_INFO(dev)->gen >= 4)
5850 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
5851
Daniel Vetter09ede542013-04-30 14:01:45 +02005852 if (crtc->config.sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005853 dpll |= PLL_REF_INPUT_TVCLKINBC;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005854 else if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005855 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5856 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5857 else
5858 dpll |= PLL_REF_INPUT_DREFCLK;
5859
5860 dpll |= DPLL_VCO_ENABLE;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005861 crtc->config.dpll_hw_state.dpll = dpll;
5862
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005863 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetteref1b4602013-06-01 17:17:04 +02005864 u32 dpll_md = (crtc->config.pixel_multiplier - 1)
5865 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005866 crtc->config.dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005867 }
5868}
5869
Daniel Vetterf47709a2013-03-28 10:42:02 +01005870static void i8xx_update_pll(struct intel_crtc *crtc,
Daniel Vetterf47709a2013-03-28 10:42:02 +01005871 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005872 int num_connectors)
5873{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005874 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005875 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005876 u32 dpll;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005877 struct dpll *clock = &crtc->config.dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005878
Daniel Vetterf47709a2013-03-28 10:42:02 +01005879 i9xx_update_pll_dividers(crtc, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305880
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005881 dpll = DPLL_VGA_MODE_DIS;
5882
Daniel Vetterf47709a2013-03-28 10:42:02 +01005883 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005884 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5885 } else {
5886 if (clock->p1 == 2)
5887 dpll |= PLL_P1_DIVIDE_BY_TWO;
5888 else
5889 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5890 if (clock->p2 == 4)
5891 dpll |= PLL_P2_DIVIDE_BY_4;
5892 }
5893
Daniel Vetter4a33e482013-07-06 12:52:05 +02005894 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DVO))
5895 dpll |= DPLL_DVO_2X_MODE;
5896
Daniel Vetterf47709a2013-03-28 10:42:02 +01005897 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005898 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5899 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5900 else
5901 dpll |= PLL_REF_INPUT_DREFCLK;
5902
5903 dpll |= DPLL_VCO_ENABLE;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005904 crtc->config.dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005905}
5906
Daniel Vetter8a654f32013-06-01 17:16:22 +02005907static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005908{
5909 struct drm_device *dev = intel_crtc->base.dev;
5910 struct drm_i915_private *dev_priv = dev->dev_private;
5911 enum pipe pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02005912 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Daniel Vetter8a654f32013-06-01 17:16:22 +02005913 struct drm_display_mode *adjusted_mode =
5914 &intel_crtc->config.adjusted_mode;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02005915 uint32_t crtc_vtotal, crtc_vblank_end;
5916 int vsyncshift = 0;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005917
5918 /* We need to be careful not to changed the adjusted mode, for otherwise
5919 * the hw state checker will get angry at the mismatch. */
5920 crtc_vtotal = adjusted_mode->crtc_vtotal;
5921 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005922
Ville Syrjälä609aeac2014-03-28 23:29:30 +02005923 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005924 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005925 crtc_vtotal -= 1;
5926 crtc_vblank_end -= 1;
Ville Syrjälä609aeac2014-03-28 23:29:30 +02005927
5928 if (intel_pipe_has_type(&intel_crtc->base, INTEL_OUTPUT_SDVO))
5929 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
5930 else
5931 vsyncshift = adjusted_mode->crtc_hsync_start -
5932 adjusted_mode->crtc_htotal / 2;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02005933 if (vsyncshift < 0)
5934 vsyncshift += adjusted_mode->crtc_htotal;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005935 }
5936
5937 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005938 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005939
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005940 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005941 (adjusted_mode->crtc_hdisplay - 1) |
5942 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005943 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005944 (adjusted_mode->crtc_hblank_start - 1) |
5945 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005946 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005947 (adjusted_mode->crtc_hsync_start - 1) |
5948 ((adjusted_mode->crtc_hsync_end - 1) << 16));
5949
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005950 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005951 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005952 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005953 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005954 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005955 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005956 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005957 (adjusted_mode->crtc_vsync_start - 1) |
5958 ((adjusted_mode->crtc_vsync_end - 1) << 16));
5959
Paulo Zanonib5e508d2012-10-24 11:34:43 -02005960 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
5961 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
5962 * documented on the DDI_FUNC_CTL register description, EDP Input Select
5963 * bits. */
5964 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
5965 (pipe == PIPE_B || pipe == PIPE_C))
5966 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
5967
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005968 /* pipesrc controls the size that is scaled from, which should
5969 * always be the user's requested size.
5970 */
5971 I915_WRITE(PIPESRC(pipe),
Ville Syrjälä37327ab2013-09-04 18:25:28 +03005972 ((intel_crtc->config.pipe_src_w - 1) << 16) |
5973 (intel_crtc->config.pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005974}
5975
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02005976static void intel_get_pipe_timings(struct intel_crtc *crtc,
5977 struct intel_crtc_config *pipe_config)
5978{
5979 struct drm_device *dev = crtc->base.dev;
5980 struct drm_i915_private *dev_priv = dev->dev_private;
5981 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
5982 uint32_t tmp;
5983
5984 tmp = I915_READ(HTOTAL(cpu_transcoder));
5985 pipe_config->adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
5986 pipe_config->adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
5987 tmp = I915_READ(HBLANK(cpu_transcoder));
5988 pipe_config->adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
5989 pipe_config->adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
5990 tmp = I915_READ(HSYNC(cpu_transcoder));
5991 pipe_config->adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
5992 pipe_config->adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
5993
5994 tmp = I915_READ(VTOTAL(cpu_transcoder));
5995 pipe_config->adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
5996 pipe_config->adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
5997 tmp = I915_READ(VBLANK(cpu_transcoder));
5998 pipe_config->adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
5999 pipe_config->adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
6000 tmp = I915_READ(VSYNC(cpu_transcoder));
6001 pipe_config->adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
6002 pipe_config->adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
6003
6004 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
6005 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
6006 pipe_config->adjusted_mode.crtc_vtotal += 1;
6007 pipe_config->adjusted_mode.crtc_vblank_end += 1;
6008 }
6009
6010 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03006011 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
6012 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
6013
6014 pipe_config->requested_mode.vdisplay = pipe_config->pipe_src_h;
6015 pipe_config->requested_mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006016}
6017
Daniel Vetterf6a83282014-02-11 15:28:57 -08006018void intel_mode_from_pipe_config(struct drm_display_mode *mode,
6019 struct intel_crtc_config *pipe_config)
Jesse Barnesbabea612013-06-26 18:57:38 +03006020{
Daniel Vetterf6a83282014-02-11 15:28:57 -08006021 mode->hdisplay = pipe_config->adjusted_mode.crtc_hdisplay;
6022 mode->htotal = pipe_config->adjusted_mode.crtc_htotal;
6023 mode->hsync_start = pipe_config->adjusted_mode.crtc_hsync_start;
6024 mode->hsync_end = pipe_config->adjusted_mode.crtc_hsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03006025
Daniel Vetterf6a83282014-02-11 15:28:57 -08006026 mode->vdisplay = pipe_config->adjusted_mode.crtc_vdisplay;
6027 mode->vtotal = pipe_config->adjusted_mode.crtc_vtotal;
6028 mode->vsync_start = pipe_config->adjusted_mode.crtc_vsync_start;
6029 mode->vsync_end = pipe_config->adjusted_mode.crtc_vsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03006030
Daniel Vetterf6a83282014-02-11 15:28:57 -08006031 mode->flags = pipe_config->adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03006032
Daniel Vetterf6a83282014-02-11 15:28:57 -08006033 mode->clock = pipe_config->adjusted_mode.crtc_clock;
6034 mode->flags |= pipe_config->adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03006035}
6036
Daniel Vetter84b046f2013-02-19 18:48:54 +01006037static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
6038{
6039 struct drm_device *dev = intel_crtc->base.dev;
6040 struct drm_i915_private *dev_priv = dev->dev_private;
6041 uint32_t pipeconf;
6042
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02006043 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01006044
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03006045 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
6046 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
6047 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
Daniel Vetter67c72a12013-09-24 11:46:14 +02006048
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006049 if (intel_crtc->config.double_wide)
6050 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01006051
Daniel Vetterff9ce462013-04-24 14:57:17 +02006052 /* only g4x and later have fancy bpc/dither controls */
6053 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02006054 /* Bspec claims that we can't use dithering for 30bpp pipes. */
6055 if (intel_crtc->config.dither && intel_crtc->config.pipe_bpp != 30)
6056 pipeconf |= PIPECONF_DITHER_EN |
6057 PIPECONF_DITHER_TYPE_SP;
6058
6059 switch (intel_crtc->config.pipe_bpp) {
6060 case 18:
6061 pipeconf |= PIPECONF_6BPC;
6062 break;
6063 case 24:
6064 pipeconf |= PIPECONF_8BPC;
6065 break;
6066 case 30:
6067 pipeconf |= PIPECONF_10BPC;
6068 break;
6069 default:
6070 /* Case prevented by intel_choose_pipe_bpp_dither. */
6071 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01006072 }
6073 }
6074
6075 if (HAS_PIPE_CXSR(dev)) {
6076 if (intel_crtc->lowfreq_avail) {
6077 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
6078 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
6079 } else {
6080 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01006081 }
6082 }
6083
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02006084 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
6085 if (INTEL_INFO(dev)->gen < 4 ||
6086 intel_pipe_has_type(&intel_crtc->base, INTEL_OUTPUT_SDVO))
6087 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
6088 else
6089 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
6090 } else
Daniel Vetter84b046f2013-02-19 18:48:54 +01006091 pipeconf |= PIPECONF_PROGRESSIVE;
6092
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02006093 if (IS_VALLEYVIEW(dev) && intel_crtc->config.limited_color_range)
6094 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03006095
Daniel Vetter84b046f2013-02-19 18:48:54 +01006096 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
6097 POSTING_READ(PIPECONF(intel_crtc->pipe));
6098}
6099
Eric Anholtf564048e2011-03-30 13:01:02 -07006100static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
Eric Anholtf564048e2011-03-30 13:01:02 -07006101 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02006102 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08006103{
6104 struct drm_device *dev = crtc->dev;
6105 struct drm_i915_private *dev_priv = dev->dev_private;
6106 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Eric Anholtc751ce42010-03-25 11:48:48 -07006107 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07006108 intel_clock_t clock, reduced_clock;
Daniel Vettera16af7212013-04-30 14:01:44 +02006109 bool ok, has_reduced_clock = false;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006110 bool is_lvds = false, is_dsi = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01006111 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08006112 const intel_limit_t *limit;
Jesse Barnes79e53942008-11-07 14:24:08 -08006113
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02006114 for_each_encoder_on_crtc(dev, crtc, encoder) {
Chris Wilson5eddb702010-09-11 13:48:45 +01006115 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006116 case INTEL_OUTPUT_LVDS:
6117 is_lvds = true;
6118 break;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006119 case INTEL_OUTPUT_DSI:
6120 is_dsi = true;
6121 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08006122 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05006123
Eric Anholtc751ce42010-03-25 11:48:48 -07006124 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08006125 }
6126
Jani Nikulaf2335332013-09-13 11:03:09 +03006127 if (is_dsi)
Daniel Vetter5b18e572014-04-24 23:55:06 +02006128 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006129
Jani Nikulaf2335332013-09-13 11:03:09 +03006130 if (!intel_crtc->config.clock_set) {
6131 refclk = i9xx_get_refclk(crtc, num_connectors);
6132
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006133 /*
6134 * Returns a set of divisors for the desired target clock with
6135 * the given refclk, or FALSE. The returned values represent
6136 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
6137 * 2) / p1 / p2.
6138 */
6139 limit = intel_limit(crtc, refclk);
6140 ok = dev_priv->display.find_dpll(limit, crtc,
6141 intel_crtc->config.port_clock,
6142 refclk, NULL, &clock);
Jani Nikulaf2335332013-09-13 11:03:09 +03006143 if (!ok) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006144 DRM_ERROR("Couldn't find PLL settings for mode!\n");
6145 return -EINVAL;
6146 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006147
Jani Nikulaf2335332013-09-13 11:03:09 +03006148 if (is_lvds && dev_priv->lvds_downclock_avail) {
6149 /*
6150 * Ensure we match the reduced clock's P to the target
6151 * clock. If the clocks don't match, we can't switch
6152 * the display clock by using the FP0/FP1. In such case
6153 * we will disable the LVDS downclock feature.
6154 */
6155 has_reduced_clock =
6156 dev_priv->display.find_dpll(limit, crtc,
6157 dev_priv->lvds_downclock,
6158 refclk, &clock,
6159 &reduced_clock);
6160 }
6161 /* Compat-code for transition, will disappear. */
Daniel Vetterf47709a2013-03-28 10:42:02 +01006162 intel_crtc->config.dpll.n = clock.n;
6163 intel_crtc->config.dpll.m1 = clock.m1;
6164 intel_crtc->config.dpll.m2 = clock.m2;
6165 intel_crtc->config.dpll.p1 = clock.p1;
6166 intel_crtc->config.dpll.p2 = clock.p2;
6167 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006168
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006169 if (IS_GEN2(dev)) {
Daniel Vetter8a654f32013-06-01 17:16:22 +02006170 i8xx_update_pll(intel_crtc,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05306171 has_reduced_clock ? &reduced_clock : NULL,
6172 num_connectors);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006173 } else if (IS_CHERRYVIEW(dev)) {
6174 chv_update_pll(intel_crtc);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006175 } else if (IS_VALLEYVIEW(dev)) {
Jani Nikulaf2335332013-09-13 11:03:09 +03006176 vlv_update_pll(intel_crtc);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006177 } else {
Daniel Vetterf47709a2013-03-28 10:42:02 +01006178 i9xx_update_pll(intel_crtc,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006179 has_reduced_clock ? &reduced_clock : NULL,
Robin Schroereba905b2014-05-18 02:24:50 +02006180 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006181 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006182
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02006183 return 0;
Eric Anholtf564048e2011-03-30 13:01:02 -07006184}
6185
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006186static void i9xx_get_pfit_config(struct intel_crtc *crtc,
6187 struct intel_crtc_config *pipe_config)
6188{
6189 struct drm_device *dev = crtc->base.dev;
6190 struct drm_i915_private *dev_priv = dev->dev_private;
6191 uint32_t tmp;
6192
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02006193 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
6194 return;
6195
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006196 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02006197 if (!(tmp & PFIT_ENABLE))
6198 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006199
Daniel Vetter06922822013-07-11 13:35:40 +02006200 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006201 if (INTEL_INFO(dev)->gen < 4) {
6202 if (crtc->pipe != PIPE_B)
6203 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006204 } else {
6205 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
6206 return;
6207 }
6208
Daniel Vetter06922822013-07-11 13:35:40 +02006209 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006210 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
6211 if (INTEL_INFO(dev)->gen < 5)
6212 pipe_config->gmch_pfit.lvds_border_bits =
6213 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
6214}
6215
Jesse Barnesacbec812013-09-20 11:29:32 -07006216static void vlv_crtc_clock_get(struct intel_crtc *crtc,
6217 struct intel_crtc_config *pipe_config)
6218{
6219 struct drm_device *dev = crtc->base.dev;
6220 struct drm_i915_private *dev_priv = dev->dev_private;
6221 int pipe = pipe_config->cpu_transcoder;
6222 intel_clock_t clock;
6223 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07006224 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07006225
Shobhit Kumarf573de52014-07-30 20:32:37 +05306226 /* In case of MIPI DPLL will not even be used */
6227 if (!(pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE))
6228 return;
6229
Jesse Barnesacbec812013-09-20 11:29:32 -07006230 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006231 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
Jesse Barnesacbec812013-09-20 11:29:32 -07006232 mutex_unlock(&dev_priv->dpio_lock);
6233
6234 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
6235 clock.m2 = mdiv & DPIO_M2DIV_MASK;
6236 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
6237 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
6238 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
6239
Ville Syrjäläf6466282013-10-14 14:50:31 +03006240 vlv_clock(refclk, &clock);
Jesse Barnesacbec812013-09-20 11:29:32 -07006241
Ville Syrjäläf6466282013-10-14 14:50:31 +03006242 /* clock.dot is the fast clock */
6243 pipe_config->port_clock = clock.dot / 5;
Jesse Barnesacbec812013-09-20 11:29:32 -07006244}
6245
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006246static void i9xx_get_plane_config(struct intel_crtc *crtc,
6247 struct intel_plane_config *plane_config)
6248{
6249 struct drm_device *dev = crtc->base.dev;
6250 struct drm_i915_private *dev_priv = dev->dev_private;
6251 u32 val, base, offset;
6252 int pipe = crtc->pipe, plane = crtc->plane;
6253 int fourcc, pixel_format;
6254 int aligned_height;
6255
Dave Airlie66e514c2014-04-03 07:51:54 +10006256 crtc->base.primary->fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
6257 if (!crtc->base.primary->fb) {
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006258 DRM_DEBUG_KMS("failed to alloc fb\n");
6259 return;
6260 }
6261
6262 val = I915_READ(DSPCNTR(plane));
6263
6264 if (INTEL_INFO(dev)->gen >= 4)
6265 if (val & DISPPLANE_TILED)
6266 plane_config->tiled = true;
6267
6268 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
6269 fourcc = intel_format_to_fourcc(pixel_format);
Dave Airlie66e514c2014-04-03 07:51:54 +10006270 crtc->base.primary->fb->pixel_format = fourcc;
6271 crtc->base.primary->fb->bits_per_pixel =
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006272 drm_format_plane_cpp(fourcc, 0) * 8;
6273
6274 if (INTEL_INFO(dev)->gen >= 4) {
6275 if (plane_config->tiled)
6276 offset = I915_READ(DSPTILEOFF(plane));
6277 else
6278 offset = I915_READ(DSPLINOFF(plane));
6279 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
6280 } else {
6281 base = I915_READ(DSPADDR(plane));
6282 }
6283 plane_config->base = base;
6284
6285 val = I915_READ(PIPESRC(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10006286 crtc->base.primary->fb->width = ((val >> 16) & 0xfff) + 1;
6287 crtc->base.primary->fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006288
6289 val = I915_READ(DSPSTRIDE(pipe));
Rafael Barbalho026b96e2014-07-28 19:56:27 +01006290 crtc->base.primary->fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006291
Dave Airlie66e514c2014-04-03 07:51:54 +10006292 aligned_height = intel_align_height(dev, crtc->base.primary->fb->height,
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006293 plane_config->tiled);
6294
Fabian Frederick1267a262014-07-01 20:39:41 +02006295 plane_config->size = PAGE_ALIGN(crtc->base.primary->fb->pitches[0] *
6296 aligned_height);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006297
6298 DRM_DEBUG_KMS("pipe/plane %d/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
Dave Airlie66e514c2014-04-03 07:51:54 +10006299 pipe, plane, crtc->base.primary->fb->width,
6300 crtc->base.primary->fb->height,
6301 crtc->base.primary->fb->bits_per_pixel, base,
6302 crtc->base.primary->fb->pitches[0],
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006303 plane_config->size);
6304
6305}
6306
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006307static void chv_crtc_clock_get(struct intel_crtc *crtc,
6308 struct intel_crtc_config *pipe_config)
6309{
6310 struct drm_device *dev = crtc->base.dev;
6311 struct drm_i915_private *dev_priv = dev->dev_private;
6312 int pipe = pipe_config->cpu_transcoder;
6313 enum dpio_channel port = vlv_pipe_to_channel(pipe);
6314 intel_clock_t clock;
6315 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2;
6316 int refclk = 100000;
6317
6318 mutex_lock(&dev_priv->dpio_lock);
6319 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
6320 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
6321 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
6322 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
6323 mutex_unlock(&dev_priv->dpio_lock);
6324
6325 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
6326 clock.m2 = ((pll_dw0 & 0xff) << 22) | (pll_dw2 & 0x3fffff);
6327 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
6328 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
6329 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
6330
6331 chv_clock(refclk, &clock);
6332
6333 /* clock.dot is the fast clock */
6334 pipe_config->port_clock = clock.dot / 5;
6335}
6336
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006337static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
6338 struct intel_crtc_config *pipe_config)
6339{
6340 struct drm_device *dev = crtc->base.dev;
6341 struct drm_i915_private *dev_priv = dev->dev_private;
6342 uint32_t tmp;
6343
Imre Deakb5482bd2014-03-05 16:20:55 +02006344 if (!intel_display_power_enabled(dev_priv,
6345 POWER_DOMAIN_PIPE(crtc->pipe)))
6346 return false;
6347
Daniel Vettere143a212013-07-04 12:01:15 +02006348 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02006349 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02006350
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006351 tmp = I915_READ(PIPECONF(crtc->pipe));
6352 if (!(tmp & PIPECONF_ENABLE))
6353 return false;
6354
Ville Syrjälä42571ae2013-09-06 23:29:00 +03006355 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
6356 switch (tmp & PIPECONF_BPC_MASK) {
6357 case PIPECONF_6BPC:
6358 pipe_config->pipe_bpp = 18;
6359 break;
6360 case PIPECONF_8BPC:
6361 pipe_config->pipe_bpp = 24;
6362 break;
6363 case PIPECONF_10BPC:
6364 pipe_config->pipe_bpp = 30;
6365 break;
6366 default:
6367 break;
6368 }
6369 }
6370
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02006371 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
6372 pipe_config->limited_color_range = true;
6373
Ville Syrjälä282740f2013-09-04 18:30:03 +03006374 if (INTEL_INFO(dev)->gen < 4)
6375 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
6376
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006377 intel_get_pipe_timings(crtc, pipe_config);
6378
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006379 i9xx_get_pfit_config(crtc, pipe_config);
6380
Daniel Vetter6c49f242013-06-06 12:45:25 +02006381 if (INTEL_INFO(dev)->gen >= 4) {
6382 tmp = I915_READ(DPLL_MD(crtc->pipe));
6383 pipe_config->pixel_multiplier =
6384 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
6385 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006386 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02006387 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
6388 tmp = I915_READ(DPLL(crtc->pipe));
6389 pipe_config->pixel_multiplier =
6390 ((tmp & SDVO_MULTIPLIER_MASK)
6391 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
6392 } else {
6393 /* Note that on i915G/GM the pixel multiplier is in the sdvo
6394 * port and will be fixed up in the encoder->get_config
6395 * function. */
6396 pipe_config->pixel_multiplier = 1;
6397 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006398 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
6399 if (!IS_VALLEYVIEW(dev)) {
6400 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
6401 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03006402 } else {
6403 /* Mask out read-only status bits. */
6404 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
6405 DPLL_PORTC_READY_MASK |
6406 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006407 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02006408
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006409 if (IS_CHERRYVIEW(dev))
6410 chv_crtc_clock_get(crtc, pipe_config);
6411 else if (IS_VALLEYVIEW(dev))
Jesse Barnesacbec812013-09-20 11:29:32 -07006412 vlv_crtc_clock_get(crtc, pipe_config);
6413 else
6414 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03006415
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006416 return true;
6417}
6418
Paulo Zanonidde86e22012-12-01 12:04:25 -02006419static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07006420{
6421 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006422 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006423 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006424 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006425 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006426 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07006427 bool has_ck505 = false;
6428 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006429
6430 /* We need to take the global config into account */
Damien Lespiaub2784e12014-08-05 11:29:37 +01006431 for_each_intel_encoder(dev, encoder) {
Keith Packard199e5d72011-09-22 12:01:57 -07006432 switch (encoder->type) {
6433 case INTEL_OUTPUT_LVDS:
6434 has_panel = true;
6435 has_lvds = true;
6436 break;
6437 case INTEL_OUTPUT_EDP:
6438 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03006439 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07006440 has_cpu_edp = true;
6441 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006442 }
6443 }
6444
Keith Packard99eb6a02011-09-26 14:29:12 -07006445 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006446 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07006447 can_ssc = has_ck505;
6448 } else {
6449 has_ck505 = false;
6450 can_ssc = true;
6451 }
6452
Imre Deak2de69052013-05-08 13:14:04 +03006453 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
6454 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006455
6456 /* Ironlake: try to setup display ref clock before DPLL
6457 * enabling. This is only under driver's control after
6458 * PCH B stepping, previous chipset stepping should be
6459 * ignoring this setting.
6460 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006461 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006462
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006463 /* As we must carefully and slowly disable/enable each source in turn,
6464 * compute the final state we want first and check if we need to
6465 * make any changes at all.
6466 */
6467 final = val;
6468 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07006469 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006470 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07006471 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006472 final |= DREF_NONSPREAD_SOURCE_ENABLE;
6473
6474 final &= ~DREF_SSC_SOURCE_MASK;
6475 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
6476 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006477
Keith Packard199e5d72011-09-22 12:01:57 -07006478 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006479 final |= DREF_SSC_SOURCE_ENABLE;
6480
6481 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6482 final |= DREF_SSC1_ENABLE;
6483
6484 if (has_cpu_edp) {
6485 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6486 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
6487 else
6488 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
6489 } else
6490 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6491 } else {
6492 final |= DREF_SSC_SOURCE_DISABLE;
6493 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6494 }
6495
6496 if (final == val)
6497 return;
6498
6499 /* Always enable nonspread source */
6500 val &= ~DREF_NONSPREAD_SOURCE_MASK;
6501
6502 if (has_ck505)
6503 val |= DREF_NONSPREAD_CK505_ENABLE;
6504 else
6505 val |= DREF_NONSPREAD_SOURCE_ENABLE;
6506
6507 if (has_panel) {
6508 val &= ~DREF_SSC_SOURCE_MASK;
6509 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006510
Keith Packard199e5d72011-09-22 12:01:57 -07006511 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07006512 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07006513 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006514 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02006515 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006516 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006517
6518 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006519 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006520 POSTING_READ(PCH_DREF_CONTROL);
6521 udelay(200);
6522
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006523 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006524
6525 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07006526 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07006527 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07006528 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006529 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Robin Schroereba905b2014-05-18 02:24:50 +02006530 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006531 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07006532 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006533 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006534
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006535 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006536 POSTING_READ(PCH_DREF_CONTROL);
6537 udelay(200);
6538 } else {
6539 DRM_DEBUG_KMS("Disabling SSC entirely\n");
6540
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006541 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07006542
6543 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006544 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006545
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006546 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006547 POSTING_READ(PCH_DREF_CONTROL);
6548 udelay(200);
6549
6550 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006551 val &= ~DREF_SSC_SOURCE_MASK;
6552 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006553
6554 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006555 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006556
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006557 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006558 POSTING_READ(PCH_DREF_CONTROL);
6559 udelay(200);
6560 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006561
6562 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006563}
6564
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006565static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02006566{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006567 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02006568
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006569 tmp = I915_READ(SOUTH_CHICKEN2);
6570 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
6571 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006572
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006573 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
6574 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
6575 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02006576
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006577 tmp = I915_READ(SOUTH_CHICKEN2);
6578 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
6579 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006580
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006581 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
6582 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
6583 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006584}
6585
6586/* WaMPhyProgramming:hsw */
6587static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
6588{
6589 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02006590
6591 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
6592 tmp &= ~(0xFF << 24);
6593 tmp |= (0x12 << 24);
6594 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
6595
Paulo Zanonidde86e22012-12-01 12:04:25 -02006596 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
6597 tmp |= (1 << 11);
6598 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
6599
6600 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
6601 tmp |= (1 << 11);
6602 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
6603
Paulo Zanonidde86e22012-12-01 12:04:25 -02006604 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
6605 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6606 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
6607
6608 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
6609 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6610 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
6611
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006612 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
6613 tmp &= ~(7 << 13);
6614 tmp |= (5 << 13);
6615 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006616
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006617 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
6618 tmp &= ~(7 << 13);
6619 tmp |= (5 << 13);
6620 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006621
6622 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
6623 tmp &= ~0xFF;
6624 tmp |= 0x1C;
6625 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
6626
6627 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
6628 tmp &= ~0xFF;
6629 tmp |= 0x1C;
6630 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
6631
6632 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
6633 tmp &= ~(0xFF << 16);
6634 tmp |= (0x1C << 16);
6635 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
6636
6637 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
6638 tmp &= ~(0xFF << 16);
6639 tmp |= (0x1C << 16);
6640 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
6641
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006642 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
6643 tmp |= (1 << 27);
6644 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006645
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006646 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
6647 tmp |= (1 << 27);
6648 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006649
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006650 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
6651 tmp &= ~(0xF << 28);
6652 tmp |= (4 << 28);
6653 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006654
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006655 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
6656 tmp &= ~(0xF << 28);
6657 tmp |= (4 << 28);
6658 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006659}
6660
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006661/* Implements 3 different sequences from BSpec chapter "Display iCLK
6662 * Programming" based on the parameters passed:
6663 * - Sequence to enable CLKOUT_DP
6664 * - Sequence to enable CLKOUT_DP without spread
6665 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
6666 */
6667static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
6668 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006669{
6670 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006671 uint32_t reg, tmp;
6672
6673 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
6674 with_spread = true;
6675 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
6676 with_fdi, "LP PCH doesn't have FDI\n"))
6677 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006678
6679 mutex_lock(&dev_priv->dpio_lock);
6680
6681 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6682 tmp &= ~SBI_SSCCTL_DISABLE;
6683 tmp |= SBI_SSCCTL_PATHALT;
6684 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6685
6686 udelay(24);
6687
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006688 if (with_spread) {
6689 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6690 tmp &= ~SBI_SSCCTL_PATHALT;
6691 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006692
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006693 if (with_fdi) {
6694 lpt_reset_fdi_mphy(dev_priv);
6695 lpt_program_fdi_mphy(dev_priv);
6696 }
6697 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02006698
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006699 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
6700 SBI_GEN0 : SBI_DBUFF0;
6701 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
6702 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
6703 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01006704
6705 mutex_unlock(&dev_priv->dpio_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006706}
6707
Paulo Zanoni47701c32013-07-23 11:19:25 -03006708/* Sequence to disable CLKOUT_DP */
6709static void lpt_disable_clkout_dp(struct drm_device *dev)
6710{
6711 struct drm_i915_private *dev_priv = dev->dev_private;
6712 uint32_t reg, tmp;
6713
6714 mutex_lock(&dev_priv->dpio_lock);
6715
6716 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
6717 SBI_GEN0 : SBI_DBUFF0;
6718 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
6719 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
6720 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
6721
6722 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6723 if (!(tmp & SBI_SSCCTL_DISABLE)) {
6724 if (!(tmp & SBI_SSCCTL_PATHALT)) {
6725 tmp |= SBI_SSCCTL_PATHALT;
6726 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6727 udelay(32);
6728 }
6729 tmp |= SBI_SSCCTL_DISABLE;
6730 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6731 }
6732
6733 mutex_unlock(&dev_priv->dpio_lock);
6734}
6735
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03006736static void lpt_init_pch_refclk(struct drm_device *dev)
6737{
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03006738 struct intel_encoder *encoder;
6739 bool has_vga = false;
6740
Damien Lespiaub2784e12014-08-05 11:29:37 +01006741 for_each_intel_encoder(dev, encoder) {
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03006742 switch (encoder->type) {
6743 case INTEL_OUTPUT_ANALOG:
6744 has_vga = true;
6745 break;
6746 }
6747 }
6748
Paulo Zanoni47701c32013-07-23 11:19:25 -03006749 if (has_vga)
6750 lpt_enable_clkout_dp(dev, true, true);
6751 else
6752 lpt_disable_clkout_dp(dev);
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03006753}
6754
Paulo Zanonidde86e22012-12-01 12:04:25 -02006755/*
6756 * Initialize reference clocks when the driver loads
6757 */
6758void intel_init_pch_refclk(struct drm_device *dev)
6759{
6760 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
6761 ironlake_init_pch_refclk(dev);
6762 else if (HAS_PCH_LPT(dev))
6763 lpt_init_pch_refclk(dev);
6764}
6765
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006766static int ironlake_get_refclk(struct drm_crtc *crtc)
6767{
6768 struct drm_device *dev = crtc->dev;
6769 struct drm_i915_private *dev_priv = dev->dev_private;
6770 struct intel_encoder *encoder;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006771 int num_connectors = 0;
6772 bool is_lvds = false;
6773
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02006774 for_each_encoder_on_crtc(dev, crtc, encoder) {
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006775 switch (encoder->type) {
6776 case INTEL_OUTPUT_LVDS:
6777 is_lvds = true;
6778 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006779 }
6780 num_connectors++;
6781 }
6782
6783 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006784 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006785 dev_priv->vbt.lvds_ssc_freq);
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006786 return dev_priv->vbt.lvds_ssc_freq;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006787 }
6788
6789 return 120000;
6790}
6791
Daniel Vetter6ff93602013-04-19 11:24:36 +02006792static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03006793{
6794 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
6795 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6796 int pipe = intel_crtc->pipe;
6797 uint32_t val;
6798
Daniel Vetter78114072013-06-13 00:54:57 +02006799 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03006800
Daniel Vetter965e0c42013-03-27 00:44:57 +01006801 switch (intel_crtc->config.pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03006802 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006803 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006804 break;
6805 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006806 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006807 break;
6808 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006809 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006810 break;
6811 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006812 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006813 break;
6814 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03006815 /* Case prevented by intel_choose_pipe_bpp_dither. */
6816 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03006817 }
6818
Daniel Vetterd8b32242013-04-25 17:54:44 +02006819 if (intel_crtc->config.dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03006820 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
6821
Daniel Vetter6ff93602013-04-19 11:24:36 +02006822 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03006823 val |= PIPECONF_INTERLACED_ILK;
6824 else
6825 val |= PIPECONF_PROGRESSIVE;
6826
Daniel Vetter50f3b012013-03-27 00:44:56 +01006827 if (intel_crtc->config.limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02006828 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02006829
Paulo Zanonic8203562012-09-12 10:06:29 -03006830 I915_WRITE(PIPECONF(pipe), val);
6831 POSTING_READ(PIPECONF(pipe));
6832}
6833
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006834/*
6835 * Set up the pipe CSC unit.
6836 *
6837 * Currently only full range RGB to limited range RGB conversion
6838 * is supported, but eventually this should handle various
6839 * RGB<->YCbCr scenarios as well.
6840 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01006841static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006842{
6843 struct drm_device *dev = crtc->dev;
6844 struct drm_i915_private *dev_priv = dev->dev_private;
6845 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6846 int pipe = intel_crtc->pipe;
6847 uint16_t coeff = 0x7800; /* 1.0 */
6848
6849 /*
6850 * TODO: Check what kind of values actually come out of the pipe
6851 * with these coeff/postoff values and adjust to get the best
6852 * accuracy. Perhaps we even need to take the bpc value into
6853 * consideration.
6854 */
6855
Daniel Vetter50f3b012013-03-27 00:44:56 +01006856 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006857 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
6858
6859 /*
6860 * GY/GU and RY/RU should be the other way around according
6861 * to BSpec, but reality doesn't agree. Just set them up in
6862 * a way that results in the correct picture.
6863 */
6864 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
6865 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
6866
6867 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
6868 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
6869
6870 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
6871 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
6872
6873 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
6874 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
6875 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
6876
6877 if (INTEL_INFO(dev)->gen > 6) {
6878 uint16_t postoff = 0;
6879
Daniel Vetter50f3b012013-03-27 00:44:56 +01006880 if (intel_crtc->config.limited_color_range)
Ville Syrjälä32cf0cb2013-11-28 22:10:38 +02006881 postoff = (16 * (1 << 12) / 255) & 0x1fff;
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006882
6883 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
6884 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
6885 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
6886
6887 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
6888 } else {
6889 uint32_t mode = CSC_MODE_YUV_TO_RGB;
6890
Daniel Vetter50f3b012013-03-27 00:44:56 +01006891 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006892 mode |= CSC_BLACK_SCREEN_OFFSET;
6893
6894 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
6895 }
6896}
6897
Daniel Vetter6ff93602013-04-19 11:24:36 +02006898static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006899{
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006900 struct drm_device *dev = crtc->dev;
6901 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006902 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006903 enum pipe pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02006904 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006905 uint32_t val;
6906
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02006907 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006908
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006909 if (IS_HASWELL(dev) && intel_crtc->config.dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006910 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
6911
Daniel Vetter6ff93602013-04-19 11:24:36 +02006912 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006913 val |= PIPECONF_INTERLACED_ILK;
6914 else
6915 val |= PIPECONF_PROGRESSIVE;
6916
Paulo Zanoni702e7a52012-10-23 18:29:59 -02006917 I915_WRITE(PIPECONF(cpu_transcoder), val);
6918 POSTING_READ(PIPECONF(cpu_transcoder));
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02006919
6920 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
6921 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006922
6923 if (IS_BROADWELL(dev)) {
6924 val = 0;
6925
6926 switch (intel_crtc->config.pipe_bpp) {
6927 case 18:
6928 val |= PIPEMISC_DITHER_6_BPC;
6929 break;
6930 case 24:
6931 val |= PIPEMISC_DITHER_8_BPC;
6932 break;
6933 case 30:
6934 val |= PIPEMISC_DITHER_10_BPC;
6935 break;
6936 case 36:
6937 val |= PIPEMISC_DITHER_12_BPC;
6938 break;
6939 default:
6940 /* Case prevented by pipe_config_set_bpp. */
6941 BUG();
6942 }
6943
6944 if (intel_crtc->config.dither)
6945 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
6946
6947 I915_WRITE(PIPEMISC(pipe), val);
6948 }
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006949}
6950
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006951static bool ironlake_compute_clocks(struct drm_crtc *crtc,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006952 intel_clock_t *clock,
6953 bool *has_reduced_clock,
6954 intel_clock_t *reduced_clock)
6955{
6956 struct drm_device *dev = crtc->dev;
6957 struct drm_i915_private *dev_priv = dev->dev_private;
6958 struct intel_encoder *intel_encoder;
6959 int refclk;
6960 const intel_limit_t *limit;
Daniel Vettera16af7212013-04-30 14:01:44 +02006961 bool ret, is_lvds = false;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006962
6963 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
6964 switch (intel_encoder->type) {
6965 case INTEL_OUTPUT_LVDS:
6966 is_lvds = true;
6967 break;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006968 }
6969 }
6970
6971 refclk = ironlake_get_refclk(crtc);
6972
6973 /*
6974 * Returns a set of divisors for the desired target clock with the given
6975 * refclk, or FALSE. The returned values represent the clock equation:
6976 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
6977 */
6978 limit = intel_limit(crtc, refclk);
Daniel Vetterff9a6752013-06-01 17:16:21 +02006979 ret = dev_priv->display.find_dpll(limit, crtc,
6980 to_intel_crtc(crtc)->config.port_clock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02006981 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006982 if (!ret)
6983 return false;
6984
6985 if (is_lvds && dev_priv->lvds_downclock_avail) {
6986 /*
6987 * Ensure we match the reduced clock's P to the target clock.
6988 * If the clocks don't match, we can't switch the display clock
6989 * by using the FP0/FP1. In such case we will disable the LVDS
6990 * downclock feature.
6991 */
Daniel Vetteree9300b2013-06-03 22:40:22 +02006992 *has_reduced_clock =
6993 dev_priv->display.find_dpll(limit, crtc,
6994 dev_priv->lvds_downclock,
6995 refclk, clock,
6996 reduced_clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006997 }
6998
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006999 return true;
7000}
7001
Paulo Zanonid4b19312012-11-29 11:29:32 -02007002int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
7003{
7004 /*
7005 * Account for spread spectrum to avoid
7006 * oversubscribing the link. Max center spread
7007 * is 2.5%; use 5% for safety's sake.
7008 */
7009 u32 bps = target_clock * bpp * 21 / 20;
Ville Syrjälä619d4d02014-02-27 14:23:14 +02007010 return DIV_ROUND_UP(bps, link_bw * 8);
Paulo Zanonid4b19312012-11-29 11:29:32 -02007011}
7012
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007013static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02007014{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007015 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03007016}
7017
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007018static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007019 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02007020 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007021{
7022 struct drm_crtc *crtc = &intel_crtc->base;
7023 struct drm_device *dev = crtc->dev;
7024 struct drm_i915_private *dev_priv = dev->dev_private;
7025 struct intel_encoder *intel_encoder;
7026 uint32_t dpll;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01007027 int factor, num_connectors = 0;
Daniel Vetter09ede542013-04-30 14:01:45 +02007028 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007029
7030 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
7031 switch (intel_encoder->type) {
7032 case INTEL_OUTPUT_LVDS:
7033 is_lvds = true;
7034 break;
7035 case INTEL_OUTPUT_SDVO:
7036 case INTEL_OUTPUT_HDMI:
7037 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007038 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007039 }
7040
7041 num_connectors++;
7042 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007043
Chris Wilsonc1858122010-12-03 21:35:48 +00007044 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07007045 factor = 21;
7046 if (is_lvds) {
7047 if ((intel_panel_use_ssc(dev_priv) &&
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007048 dev_priv->vbt.lvds_ssc_freq == 100000) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02007049 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07007050 factor = 25;
Daniel Vetter09ede542013-04-30 14:01:45 +02007051 } else if (intel_crtc->config.sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07007052 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00007053
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007054 if (ironlake_needs_fb_cb_tune(&intel_crtc->config.dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02007055 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00007056
Daniel Vetter9a7c7892013-04-04 22:20:34 +02007057 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
7058 *fp2 |= FP_CB_TUNE;
7059
Chris Wilson5eddb702010-09-11 13:48:45 +01007060 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08007061
Eric Anholta07d6782011-03-30 13:01:08 -07007062 if (is_lvds)
7063 dpll |= DPLLB_MODE_LVDS;
7064 else
7065 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007066
Daniel Vetteref1b4602013-06-01 17:17:04 +02007067 dpll |= (intel_crtc->config.pixel_multiplier - 1)
7068 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007069
7070 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007071 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter9566e9a2013-04-19 11:14:36 +02007072 if (intel_crtc->config.has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007073 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08007074
Eric Anholta07d6782011-03-30 13:01:08 -07007075 /* compute bitmask from p1 value */
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007076 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07007077 /* also FPA1 */
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007078 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07007079
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007080 switch (intel_crtc->config.dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07007081 case 5:
7082 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
7083 break;
7084 case 7:
7085 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
7086 break;
7087 case 10:
7088 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
7089 break;
7090 case 14:
7091 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
7092 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08007093 }
7094
Daniel Vetterb4c09f32013-04-30 14:01:42 +02007095 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05007096 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08007097 else
7098 dpll |= PLL_REF_INPUT_DREFCLK;
7099
Daniel Vetter959e16d2013-06-05 13:34:21 +02007100 return dpll | DPLL_VCO_ENABLE;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007101}
7102
Jesse Barnes79e53942008-11-07 14:24:08 -08007103static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
Jesse Barnes79e53942008-11-07 14:24:08 -08007104 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02007105 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08007106{
7107 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08007108 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007109 int num_connectors = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007110 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007111 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03007112 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01007113 bool is_lvds = false;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03007114 struct intel_encoder *encoder;
Daniel Vettere2b78262013-06-07 23:10:03 +02007115 struct intel_shared_dpll *pll;
Jesse Barnes79e53942008-11-07 14:24:08 -08007116
7117 for_each_encoder_on_crtc(dev, crtc, encoder) {
7118 switch (encoder->type) {
7119 case INTEL_OUTPUT_LVDS:
7120 is_lvds = true;
7121 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08007122 }
7123
7124 num_connectors++;
7125 }
7126
Paulo Zanoni5dc52982012-10-05 12:05:56 -03007127 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
7128 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
7129
Daniel Vetterff9a6752013-06-01 17:16:21 +02007130 ok = ironlake_compute_clocks(crtc, &clock,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007131 &has_reduced_clock, &reduced_clock);
Daniel Vetteree9300b2013-06-03 22:40:22 +02007132 if (!ok && !intel_crtc->config.clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08007133 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7134 return -EINVAL;
7135 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01007136 /* Compat-code for transition, will disappear. */
7137 if (!intel_crtc->config.clock_set) {
7138 intel_crtc->config.dpll.n = clock.n;
7139 intel_crtc->config.dpll.m1 = clock.m1;
7140 intel_crtc->config.dpll.m2 = clock.m2;
7141 intel_crtc->config.dpll.p1 = clock.p1;
7142 intel_crtc->config.dpll.p2 = clock.p2;
7143 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007144
Paulo Zanoni5dc52982012-10-05 12:05:56 -03007145 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
Daniel Vetter8b470472013-03-28 10:41:59 +01007146 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007147 fp = i9xx_dpll_compute_fp(&intel_crtc->config.dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007148 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007149 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007150
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007151 dpll = ironlake_compute_dpll(intel_crtc,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007152 &fp, &reduced_clock,
7153 has_reduced_clock ? &fp2 : NULL);
7154
Daniel Vetter959e16d2013-06-05 13:34:21 +02007155 intel_crtc->config.dpll_hw_state.dpll = dpll;
Daniel Vetter66e985c2013-06-05 13:34:20 +02007156 intel_crtc->config.dpll_hw_state.fp0 = fp;
7157 if (has_reduced_clock)
7158 intel_crtc->config.dpll_hw_state.fp1 = fp2;
7159 else
7160 intel_crtc->config.dpll_hw_state.fp1 = fp;
7161
Daniel Vetterb89a1d32013-06-05 13:34:24 +02007162 pll = intel_get_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01007163 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03007164 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
Daniel Vetter29407aa2014-04-24 23:55:08 +02007165 pipe_name(intel_crtc->pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07007166 return -EINVAL;
7167 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01007168 } else
Daniel Vettere72f9fb2013-06-05 13:34:06 +02007169 intel_put_shared_dpll(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08007170
Jani Nikulad330a952014-01-21 11:24:25 +02007171 if (is_lvds && has_reduced_clock && i915.powersave)
Daniel Vetterbcd644e2013-06-05 13:34:22 +02007172 intel_crtc->lowfreq_avail = true;
7173 else
7174 intel_crtc->lowfreq_avail = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02007175
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007176 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007177}
7178
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007179static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
7180 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02007181{
7182 struct drm_device *dev = crtc->base.dev;
7183 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007184 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02007185
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007186 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
7187 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
7188 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
7189 & ~TU_SIZE_MASK;
7190 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
7191 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
7192 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7193}
7194
7195static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
7196 enum transcoder transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007197 struct intel_link_m_n *m_n,
7198 struct intel_link_m_n *m2_n2)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007199{
7200 struct drm_device *dev = crtc->base.dev;
7201 struct drm_i915_private *dev_priv = dev->dev_private;
7202 enum pipe pipe = crtc->pipe;
7203
7204 if (INTEL_INFO(dev)->gen >= 5) {
7205 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
7206 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
7207 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
7208 & ~TU_SIZE_MASK;
7209 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
7210 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
7211 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007212 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
7213 * gen < 8) and if DRRS is supported (to make sure the
7214 * registers are not unnecessarily read).
7215 */
7216 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
7217 crtc->config.has_drrs) {
7218 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
7219 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
7220 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
7221 & ~TU_SIZE_MASK;
7222 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
7223 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
7224 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7225 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007226 } else {
7227 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
7228 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
7229 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
7230 & ~TU_SIZE_MASK;
7231 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
7232 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
7233 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7234 }
7235}
7236
7237void intel_dp_get_m_n(struct intel_crtc *crtc,
7238 struct intel_crtc_config *pipe_config)
7239{
7240 if (crtc->config.has_pch_encoder)
7241 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
7242 else
7243 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007244 &pipe_config->dp_m_n,
7245 &pipe_config->dp_m2_n2);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007246}
7247
Daniel Vetter72419202013-04-04 13:28:53 +02007248static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
7249 struct intel_crtc_config *pipe_config)
7250{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007251 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007252 &pipe_config->fdi_m_n, NULL);
Daniel Vetter72419202013-04-04 13:28:53 +02007253}
7254
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007255static void ironlake_get_pfit_config(struct intel_crtc *crtc,
7256 struct intel_crtc_config *pipe_config)
7257{
7258 struct drm_device *dev = crtc->base.dev;
7259 struct drm_i915_private *dev_priv = dev->dev_private;
7260 uint32_t tmp;
7261
7262 tmp = I915_READ(PF_CTL(crtc->pipe));
7263
7264 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01007265 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007266 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
7267 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02007268
7269 /* We currently do not free assignements of panel fitters on
7270 * ivb/hsw (since we don't use the higher upscaling modes which
7271 * differentiates them) so just WARN about this case for now. */
7272 if (IS_GEN7(dev)) {
7273 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
7274 PF_PIPE_SEL_IVB(crtc->pipe));
7275 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007276 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007277}
7278
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007279static void ironlake_get_plane_config(struct intel_crtc *crtc,
7280 struct intel_plane_config *plane_config)
7281{
7282 struct drm_device *dev = crtc->base.dev;
7283 struct drm_i915_private *dev_priv = dev->dev_private;
7284 u32 val, base, offset;
7285 int pipe = crtc->pipe, plane = crtc->plane;
7286 int fourcc, pixel_format;
7287 int aligned_height;
7288
Dave Airlie66e514c2014-04-03 07:51:54 +10007289 crtc->base.primary->fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
7290 if (!crtc->base.primary->fb) {
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007291 DRM_DEBUG_KMS("failed to alloc fb\n");
7292 return;
7293 }
7294
7295 val = I915_READ(DSPCNTR(plane));
7296
7297 if (INTEL_INFO(dev)->gen >= 4)
7298 if (val & DISPPLANE_TILED)
7299 plane_config->tiled = true;
7300
7301 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
7302 fourcc = intel_format_to_fourcc(pixel_format);
Dave Airlie66e514c2014-04-03 07:51:54 +10007303 crtc->base.primary->fb->pixel_format = fourcc;
7304 crtc->base.primary->fb->bits_per_pixel =
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007305 drm_format_plane_cpp(fourcc, 0) * 8;
7306
7307 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
7308 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
7309 offset = I915_READ(DSPOFFSET(plane));
7310 } else {
7311 if (plane_config->tiled)
7312 offset = I915_READ(DSPTILEOFF(plane));
7313 else
7314 offset = I915_READ(DSPLINOFF(plane));
7315 }
7316 plane_config->base = base;
7317
7318 val = I915_READ(PIPESRC(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10007319 crtc->base.primary->fb->width = ((val >> 16) & 0xfff) + 1;
7320 crtc->base.primary->fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007321
7322 val = I915_READ(DSPSTRIDE(pipe));
Rafael Barbalho026b96e2014-07-28 19:56:27 +01007323 crtc->base.primary->fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007324
Dave Airlie66e514c2014-04-03 07:51:54 +10007325 aligned_height = intel_align_height(dev, crtc->base.primary->fb->height,
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007326 plane_config->tiled);
7327
Fabian Frederick1267a262014-07-01 20:39:41 +02007328 plane_config->size = PAGE_ALIGN(crtc->base.primary->fb->pitches[0] *
7329 aligned_height);
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007330
7331 DRM_DEBUG_KMS("pipe/plane %d/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
Dave Airlie66e514c2014-04-03 07:51:54 +10007332 pipe, plane, crtc->base.primary->fb->width,
7333 crtc->base.primary->fb->height,
7334 crtc->base.primary->fb->bits_per_pixel, base,
7335 crtc->base.primary->fb->pitches[0],
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007336 plane_config->size);
7337}
7338
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007339static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
7340 struct intel_crtc_config *pipe_config)
7341{
7342 struct drm_device *dev = crtc->base.dev;
7343 struct drm_i915_private *dev_priv = dev->dev_private;
7344 uint32_t tmp;
7345
Paulo Zanoni930e8c92014-07-04 13:38:34 -03007346 if (!intel_display_power_enabled(dev_priv,
7347 POWER_DOMAIN_PIPE(crtc->pipe)))
7348 return false;
7349
Daniel Vettere143a212013-07-04 12:01:15 +02007350 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007351 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02007352
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007353 tmp = I915_READ(PIPECONF(crtc->pipe));
7354 if (!(tmp & PIPECONF_ENABLE))
7355 return false;
7356
Ville Syrjälä42571ae2013-09-06 23:29:00 +03007357 switch (tmp & PIPECONF_BPC_MASK) {
7358 case PIPECONF_6BPC:
7359 pipe_config->pipe_bpp = 18;
7360 break;
7361 case PIPECONF_8BPC:
7362 pipe_config->pipe_bpp = 24;
7363 break;
7364 case PIPECONF_10BPC:
7365 pipe_config->pipe_bpp = 30;
7366 break;
7367 case PIPECONF_12BPC:
7368 pipe_config->pipe_bpp = 36;
7369 break;
7370 default:
7371 break;
7372 }
7373
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02007374 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
7375 pipe_config->limited_color_range = true;
7376
Daniel Vetterab9412b2013-05-03 11:49:46 +02007377 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02007378 struct intel_shared_dpll *pll;
7379
Daniel Vetter88adfff2013-03-28 10:42:01 +01007380 pipe_config->has_pch_encoder = true;
7381
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007382 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
7383 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7384 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02007385
7386 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007387
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007388 if (HAS_PCH_IBX(dev_priv->dev)) {
Daniel Vetterd94ab062013-07-04 12:01:16 +02007389 pipe_config->shared_dpll =
7390 (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007391 } else {
7392 tmp = I915_READ(PCH_DPLL_SEL);
7393 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
7394 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
7395 else
7396 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
7397 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02007398
7399 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
7400
7401 WARN_ON(!pll->get_hw_state(dev_priv, pll,
7402 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02007403
7404 tmp = pipe_config->dpll_hw_state.dpll;
7405 pipe_config->pixel_multiplier =
7406 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
7407 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03007408
7409 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007410 } else {
7411 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007412 }
7413
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007414 intel_get_pipe_timings(crtc, pipe_config);
7415
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007416 ironlake_get_pfit_config(crtc, pipe_config);
7417
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007418 return true;
7419}
7420
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007421static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
7422{
7423 struct drm_device *dev = dev_priv->dev;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007424 struct intel_crtc *crtc;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007425
Damien Lespiaud3fcc802014-05-13 23:32:22 +01007426 for_each_intel_crtc(dev, crtc)
Paulo Zanoni798183c2013-12-06 20:29:01 -02007427 WARN(crtc->active, "CRTC for pipe %c enabled\n",
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007428 pipe_name(crtc->pipe));
7429
7430 WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
Daniel Vetter8cc3e162014-06-25 22:01:46 +03007431 WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
7432 WARN(I915_READ(WRPLL_CTL1) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
7433 WARN(I915_READ(WRPLL_CTL2) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007434 WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
7435 WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
7436 "CPU PWM1 enabled\n");
Paulo Zanonic5107b82014-07-04 11:50:30 -03007437 if (IS_HASWELL(dev))
7438 WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
7439 "CPU PWM2 enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007440 WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
7441 "PCH PWM1 enabled\n");
7442 WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
7443 "Utility pin enabled\n");
7444 WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
7445
Paulo Zanoni9926ada2014-04-01 19:39:47 -03007446 /*
7447 * In theory we can still leave IRQs enabled, as long as only the HPD
7448 * interrupts remain enabled. We used to check for that, but since it's
7449 * gen-specific and since we only disable LCPLL after we fully disable
7450 * the interrupts, the check below should be enough.
7451 */
Jesse Barnes9df7575f2014-06-20 09:29:20 -07007452 WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007453}
7454
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007455static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
7456{
7457 struct drm_device *dev = dev_priv->dev;
7458
7459 if (IS_HASWELL(dev))
7460 return I915_READ(D_COMP_HSW);
7461 else
7462 return I915_READ(D_COMP_BDW);
7463}
7464
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007465static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
7466{
7467 struct drm_device *dev = dev_priv->dev;
7468
7469 if (IS_HASWELL(dev)) {
7470 mutex_lock(&dev_priv->rps.hw_lock);
7471 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
7472 val))
Paulo Zanonif475dad2014-07-04 11:59:57 -03007473 DRM_ERROR("Failed to write to D_COMP\n");
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007474 mutex_unlock(&dev_priv->rps.hw_lock);
7475 } else {
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007476 I915_WRITE(D_COMP_BDW, val);
7477 POSTING_READ(D_COMP_BDW);
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007478 }
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007479}
7480
7481/*
7482 * This function implements pieces of two sequences from BSpec:
7483 * - Sequence for display software to disable LCPLL
7484 * - Sequence for display software to allow package C8+
7485 * The steps implemented here are just the steps that actually touch the LCPLL
7486 * register. Callers should take care of disabling all the display engine
7487 * functions, doing the mode unset, fixing interrupts, etc.
7488 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03007489static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
7490 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007491{
7492 uint32_t val;
7493
7494 assert_can_disable_lcpll(dev_priv);
7495
7496 val = I915_READ(LCPLL_CTL);
7497
7498 if (switch_to_fclk) {
7499 val |= LCPLL_CD_SOURCE_FCLK;
7500 I915_WRITE(LCPLL_CTL, val);
7501
7502 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
7503 LCPLL_CD_SOURCE_FCLK_DONE, 1))
7504 DRM_ERROR("Switching to FCLK failed\n");
7505
7506 val = I915_READ(LCPLL_CTL);
7507 }
7508
7509 val |= LCPLL_PLL_DISABLE;
7510 I915_WRITE(LCPLL_CTL, val);
7511 POSTING_READ(LCPLL_CTL);
7512
7513 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
7514 DRM_ERROR("LCPLL still locked\n");
7515
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007516 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007517 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007518 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007519 ndelay(100);
7520
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007521 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
7522 1))
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007523 DRM_ERROR("D_COMP RCOMP still in progress\n");
7524
7525 if (allow_power_down) {
7526 val = I915_READ(LCPLL_CTL);
7527 val |= LCPLL_POWER_DOWN_ALLOW;
7528 I915_WRITE(LCPLL_CTL, val);
7529 POSTING_READ(LCPLL_CTL);
7530 }
7531}
7532
7533/*
7534 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
7535 * source.
7536 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03007537static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007538{
7539 uint32_t val;
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007540 unsigned long irqflags;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007541
7542 val = I915_READ(LCPLL_CTL);
7543
7544 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
7545 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
7546 return;
7547
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007548 /*
7549 * Make sure we're not on PC8 state before disabling PC8, otherwise
7550 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
7551 *
7552 * The other problem is that hsw_restore_lcpll() is called as part of
7553 * the runtime PM resume sequence, so we can't just call
7554 * gen6_gt_force_wake_get() because that function calls
7555 * intel_runtime_pm_get(), and we can't change the runtime PM refcount
7556 * while we are on the resume sequence. So to solve this problem we have
7557 * to call special forcewake code that doesn't touch runtime PM and
7558 * doesn't enable the forcewake delayed work.
7559 */
7560 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
7561 if (dev_priv->uncore.forcewake_count++ == 0)
7562 dev_priv->uncore.funcs.force_wake_get(dev_priv, FORCEWAKE_ALL);
7563 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
Paulo Zanoni215733f2013-08-19 13:18:07 -03007564
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007565 if (val & LCPLL_POWER_DOWN_ALLOW) {
7566 val &= ~LCPLL_POWER_DOWN_ALLOW;
7567 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02007568 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007569 }
7570
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007571 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007572 val |= D_COMP_COMP_FORCE;
7573 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007574 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007575
7576 val = I915_READ(LCPLL_CTL);
7577 val &= ~LCPLL_PLL_DISABLE;
7578 I915_WRITE(LCPLL_CTL, val);
7579
7580 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
7581 DRM_ERROR("LCPLL not locked yet\n");
7582
7583 if (val & LCPLL_CD_SOURCE_FCLK) {
7584 val = I915_READ(LCPLL_CTL);
7585 val &= ~LCPLL_CD_SOURCE_FCLK;
7586 I915_WRITE(LCPLL_CTL, val);
7587
7588 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
7589 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
7590 DRM_ERROR("Switching back to LCPLL failed\n");
7591 }
Paulo Zanoni215733f2013-08-19 13:18:07 -03007592
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007593 /* See the big comment above. */
7594 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
7595 if (--dev_priv->uncore.forcewake_count == 0)
7596 dev_priv->uncore.funcs.force_wake_put(dev_priv, FORCEWAKE_ALL);
7597 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007598}
7599
Paulo Zanoni765dab62014-03-07 20:08:18 -03007600/*
7601 * Package states C8 and deeper are really deep PC states that can only be
7602 * reached when all the devices on the system allow it, so even if the graphics
7603 * device allows PC8+, it doesn't mean the system will actually get to these
7604 * states. Our driver only allows PC8+ when going into runtime PM.
7605 *
7606 * The requirements for PC8+ are that all the outputs are disabled, the power
7607 * well is disabled and most interrupts are disabled, and these are also
7608 * requirements for runtime PM. When these conditions are met, we manually do
7609 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
7610 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
7611 * hang the machine.
7612 *
7613 * When we really reach PC8 or deeper states (not just when we allow it) we lose
7614 * the state of some registers, so when we come back from PC8+ we need to
7615 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
7616 * need to take care of the registers kept by RC6. Notice that this happens even
7617 * if we don't put the device in PCI D3 state (which is what currently happens
7618 * because of the runtime PM support).
7619 *
7620 * For more, read "Display Sequences for Package C8" on the hardware
7621 * documentation.
7622 */
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03007623void hsw_enable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03007624{
Paulo Zanonic67a4702013-08-19 13:18:09 -03007625 struct drm_device *dev = dev_priv->dev;
7626 uint32_t val;
7627
Paulo Zanonic67a4702013-08-19 13:18:09 -03007628 DRM_DEBUG_KMS("Enabling package C8+\n");
7629
Paulo Zanonic67a4702013-08-19 13:18:09 -03007630 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
7631 val = I915_READ(SOUTH_DSPCLK_GATE_D);
7632 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
7633 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7634 }
7635
7636 lpt_disable_clkout_dp(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007637 hsw_disable_lcpll(dev_priv, true, true);
7638}
7639
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03007640void hsw_disable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03007641{
7642 struct drm_device *dev = dev_priv->dev;
7643 uint32_t val;
7644
Paulo Zanonic67a4702013-08-19 13:18:09 -03007645 DRM_DEBUG_KMS("Disabling package C8+\n");
7646
7647 hsw_restore_lcpll(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007648 lpt_init_pch_refclk(dev);
7649
7650 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
7651 val = I915_READ(SOUTH_DSPCLK_GATE_D);
7652 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
7653 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7654 }
7655
7656 intel_prepare_ddi(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007657}
7658
Paulo Zanoni9a952a02014-03-07 20:12:34 -03007659static void snb_modeset_global_resources(struct drm_device *dev)
7660{
7661 modeset_update_crtc_power_domains(dev);
7662}
7663
Imre Deak4f074122013-10-16 17:25:51 +03007664static void haswell_modeset_global_resources(struct drm_device *dev)
7665{
Paulo Zanonida723562013-12-19 11:54:51 -02007666 modeset_update_crtc_power_domains(dev);
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -02007667}
7668
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007669static int haswell_crtc_mode_set(struct drm_crtc *crtc,
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007670 int x, int y,
7671 struct drm_framebuffer *fb)
7672{
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007673 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007674
Paulo Zanoni566b7342013-11-25 15:27:08 -02007675 if (!intel_ddi_pll_select(intel_crtc))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03007676 return -EINVAL;
Daniel Vetter716c2e52014-06-25 22:02:02 +03007677
Daniel Vetter644cef32014-04-24 23:55:07 +02007678 intel_crtc->lowfreq_avail = false;
7679
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007680 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007681}
7682
Damien Lespiau7d2c8172014-07-29 18:06:18 +01007683static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
7684 enum port port,
7685 struct intel_crtc_config *pipe_config)
7686{
7687 pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
7688
7689 switch (pipe_config->ddi_pll_sel) {
7690 case PORT_CLK_SEL_WRPLL1:
7691 pipe_config->shared_dpll = DPLL_ID_WRPLL1;
7692 break;
7693 case PORT_CLK_SEL_WRPLL2:
7694 pipe_config->shared_dpll = DPLL_ID_WRPLL2;
7695 break;
7696 }
7697}
7698
Daniel Vetter26804af2014-06-25 22:01:55 +03007699static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
7700 struct intel_crtc_config *pipe_config)
7701{
7702 struct drm_device *dev = crtc->base.dev;
7703 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterd452c5b2014-07-04 11:27:39 -03007704 struct intel_shared_dpll *pll;
Daniel Vetter26804af2014-06-25 22:01:55 +03007705 enum port port;
7706 uint32_t tmp;
7707
7708 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
7709
7710 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
7711
Damien Lespiau7d2c8172014-07-29 18:06:18 +01007712 haswell_get_ddi_pll(dev_priv, port, pipe_config);
Daniel Vetter9cd86932014-06-25 22:01:57 +03007713
Daniel Vetterd452c5b2014-07-04 11:27:39 -03007714 if (pipe_config->shared_dpll >= 0) {
7715 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
7716
7717 WARN_ON(!pll->get_hw_state(dev_priv, pll,
7718 &pipe_config->dpll_hw_state));
7719 }
7720
Daniel Vetter26804af2014-06-25 22:01:55 +03007721 /*
7722 * Haswell has only FDI/PCH transcoder A. It is which is connected to
7723 * DDI E. So just check whether this pipe is wired to DDI E and whether
7724 * the PCH transcoder is on.
7725 */
7726 if ((port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
7727 pipe_config->has_pch_encoder = true;
7728
7729 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
7730 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7731 FDI_DP_PORT_WIDTH_SHIFT) + 1;
7732
7733 ironlake_get_fdi_m_n_config(crtc, pipe_config);
7734 }
7735}
7736
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007737static bool haswell_get_pipe_config(struct intel_crtc *crtc,
7738 struct intel_crtc_config *pipe_config)
7739{
7740 struct drm_device *dev = crtc->base.dev;
7741 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007742 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007743 uint32_t tmp;
7744
Imre Deakb5482bd2014-03-05 16:20:55 +02007745 if (!intel_display_power_enabled(dev_priv,
7746 POWER_DOMAIN_PIPE(crtc->pipe)))
7747 return false;
7748
Daniel Vettere143a212013-07-04 12:01:15 +02007749 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007750 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
7751
Daniel Vettereccb1402013-05-22 00:50:22 +02007752 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
7753 if (tmp & TRANS_DDI_FUNC_ENABLE) {
7754 enum pipe trans_edp_pipe;
7755 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
7756 default:
7757 WARN(1, "unknown pipe linked to edp transcoder\n");
7758 case TRANS_DDI_EDP_INPUT_A_ONOFF:
7759 case TRANS_DDI_EDP_INPUT_A_ON:
7760 trans_edp_pipe = PIPE_A;
7761 break;
7762 case TRANS_DDI_EDP_INPUT_B_ONOFF:
7763 trans_edp_pipe = PIPE_B;
7764 break;
7765 case TRANS_DDI_EDP_INPUT_C_ONOFF:
7766 trans_edp_pipe = PIPE_C;
7767 break;
7768 }
7769
7770 if (trans_edp_pipe == crtc->pipe)
7771 pipe_config->cpu_transcoder = TRANSCODER_EDP;
7772 }
7773
Imre Deakda7e29b2014-02-18 00:02:02 +02007774 if (!intel_display_power_enabled(dev_priv,
Daniel Vettereccb1402013-05-22 00:50:22 +02007775 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -03007776 return false;
7777
Daniel Vettereccb1402013-05-22 00:50:22 +02007778 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007779 if (!(tmp & PIPECONF_ENABLE))
7780 return false;
7781
Daniel Vetter26804af2014-06-25 22:01:55 +03007782 haswell_get_ddi_port_state(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007783
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007784 intel_get_pipe_timings(crtc, pipe_config);
7785
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007786 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
Imre Deakda7e29b2014-02-18 00:02:02 +02007787 if (intel_display_power_enabled(dev_priv, pfit_domain))
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007788 ironlake_get_pfit_config(crtc, pipe_config);
Daniel Vetter88adfff2013-03-28 10:42:01 +01007789
Jesse Barnese59150d2014-01-07 13:30:45 -08007790 if (IS_HASWELL(dev))
7791 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
7792 (I915_READ(IPS_CTL) & IPS_ENABLE);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03007793
Daniel Vetter6c49f242013-06-06 12:45:25 +02007794 pipe_config->pixel_multiplier = 1;
7795
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007796 return true;
7797}
7798
Jani Nikula1a915102013-10-16 12:34:48 +03007799static struct {
7800 int clock;
7801 u32 config;
7802} hdmi_audio_clock[] = {
7803 { DIV_ROUND_UP(25200 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_25175 },
7804 { 25200, AUD_CONFIG_PIXEL_CLOCK_HDMI_25200 }, /* default per bspec */
7805 { 27000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27000 },
7806 { 27000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27027 },
7807 { 54000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54000 },
7808 { 54000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54054 },
7809 { DIV_ROUND_UP(74250 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_74176 },
7810 { 74250, AUD_CONFIG_PIXEL_CLOCK_HDMI_74250 },
7811 { DIV_ROUND_UP(148500 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_148352 },
7812 { 148500, AUD_CONFIG_PIXEL_CLOCK_HDMI_148500 },
7813};
7814
7815/* get AUD_CONFIG_PIXEL_CLOCK_HDMI_* value for mode */
7816static u32 audio_config_hdmi_pixel_clock(struct drm_display_mode *mode)
7817{
7818 int i;
7819
7820 for (i = 0; i < ARRAY_SIZE(hdmi_audio_clock); i++) {
7821 if (mode->clock == hdmi_audio_clock[i].clock)
7822 break;
7823 }
7824
7825 if (i == ARRAY_SIZE(hdmi_audio_clock)) {
7826 DRM_DEBUG_KMS("HDMI audio pixel clock setting for %d not found, falling back to defaults\n", mode->clock);
7827 i = 1;
7828 }
7829
7830 DRM_DEBUG_KMS("Configuring HDMI audio for pixel clock %d (0x%08x)\n",
7831 hdmi_audio_clock[i].clock,
7832 hdmi_audio_clock[i].config);
7833
7834 return hdmi_audio_clock[i].config;
7835}
7836
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007837static bool intel_eld_uptodate(struct drm_connector *connector,
7838 int reg_eldv, uint32_t bits_eldv,
7839 int reg_elda, uint32_t bits_elda,
7840 int reg_edid)
7841{
7842 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7843 uint8_t *eld = connector->eld;
7844 uint32_t i;
7845
7846 i = I915_READ(reg_eldv);
7847 i &= bits_eldv;
7848
7849 if (!eld[0])
7850 return !i;
7851
7852 if (!i)
7853 return false;
7854
7855 i = I915_READ(reg_elda);
7856 i &= ~bits_elda;
7857 I915_WRITE(reg_elda, i);
7858
7859 for (i = 0; i < eld[2]; i++)
7860 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
7861 return false;
7862
7863 return true;
7864}
7865
Wu Fengguange0dac652011-09-05 14:25:34 +08007866static void g4x_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007867 struct drm_crtc *crtc,
7868 struct drm_display_mode *mode)
Wu Fengguange0dac652011-09-05 14:25:34 +08007869{
7870 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7871 uint8_t *eld = connector->eld;
7872 uint32_t eldv;
7873 uint32_t len;
7874 uint32_t i;
7875
7876 i = I915_READ(G4X_AUD_VID_DID);
7877
7878 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
7879 eldv = G4X_ELDV_DEVCL_DEVBLC;
7880 else
7881 eldv = G4X_ELDV_DEVCTG;
7882
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007883 if (intel_eld_uptodate(connector,
7884 G4X_AUD_CNTL_ST, eldv,
7885 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
7886 G4X_HDMIW_HDMIEDID))
7887 return;
7888
Wu Fengguange0dac652011-09-05 14:25:34 +08007889 i = I915_READ(G4X_AUD_CNTL_ST);
7890 i &= ~(eldv | G4X_ELD_ADDR);
7891 len = (i >> 9) & 0x1f; /* ELD buffer size */
7892 I915_WRITE(G4X_AUD_CNTL_ST, i);
7893
7894 if (!eld[0])
7895 return;
7896
7897 len = min_t(uint8_t, eld[2], len);
7898 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7899 for (i = 0; i < len; i++)
7900 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
7901
7902 i = I915_READ(G4X_AUD_CNTL_ST);
7903 i |= eldv;
7904 I915_WRITE(G4X_AUD_CNTL_ST, i);
7905}
7906
Wang Xingchao83358c852012-08-16 22:43:37 +08007907static void haswell_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007908 struct drm_crtc *crtc,
7909 struct drm_display_mode *mode)
Wang Xingchao83358c852012-08-16 22:43:37 +08007910{
7911 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7912 uint8_t *eld = connector->eld;
Wang Xingchao83358c852012-08-16 22:43:37 +08007913 uint32_t eldv;
7914 uint32_t i;
7915 int len;
7916 int pipe = to_intel_crtc(crtc)->pipe;
7917 int tmp;
7918
7919 int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe);
7920 int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe);
7921 int aud_config = HSW_AUD_CFG(pipe);
7922 int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD;
7923
Wang Xingchao83358c852012-08-16 22:43:37 +08007924 /* Audio output enable */
7925 DRM_DEBUG_DRIVER("HDMI audio: enable codec\n");
7926 tmp = I915_READ(aud_cntrl_st2);
7927 tmp |= (AUDIO_OUTPUT_ENABLE_A << (pipe * 4));
7928 I915_WRITE(aud_cntrl_st2, tmp);
Daniel Vetterc7905792014-04-16 16:56:09 +02007929 POSTING_READ(aud_cntrl_st2);
Wang Xingchao83358c852012-08-16 22:43:37 +08007930
Daniel Vetterc7905792014-04-16 16:56:09 +02007931 assert_pipe_disabled(dev_priv, to_intel_crtc(crtc)->pipe);
Wang Xingchao83358c852012-08-16 22:43:37 +08007932
7933 /* Set ELD valid state */
7934 tmp = I915_READ(aud_cntrl_st2);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007935 DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007936 tmp |= (AUDIO_ELD_VALID_A << (pipe * 4));
7937 I915_WRITE(aud_cntrl_st2, tmp);
7938 tmp = I915_READ(aud_cntrl_st2);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007939 DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007940
7941 /* Enable HDMI mode */
7942 tmp = I915_READ(aud_config);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007943 DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007944 /* clear N_programing_enable and N_value_index */
7945 tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | AUD_CONFIG_N_PROG_ENABLE);
7946 I915_WRITE(aud_config, tmp);
7947
7948 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
7949
7950 eldv = AUDIO_ELD_VALID_A << (pipe * 4);
7951
7952 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
7953 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
7954 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
7955 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
Jani Nikula1a915102013-10-16 12:34:48 +03007956 } else {
7957 I915_WRITE(aud_config, audio_config_hdmi_pixel_clock(mode));
7958 }
Wang Xingchao83358c852012-08-16 22:43:37 +08007959
7960 if (intel_eld_uptodate(connector,
7961 aud_cntrl_st2, eldv,
7962 aud_cntl_st, IBX_ELD_ADDRESS,
7963 hdmiw_hdmiedid))
7964 return;
7965
7966 i = I915_READ(aud_cntrl_st2);
7967 i &= ~eldv;
7968 I915_WRITE(aud_cntrl_st2, i);
7969
7970 if (!eld[0])
7971 return;
7972
7973 i = I915_READ(aud_cntl_st);
7974 i &= ~IBX_ELD_ADDRESS;
7975 I915_WRITE(aud_cntl_st, i);
7976 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
7977 DRM_DEBUG_DRIVER("port num:%d\n", i);
7978
7979 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
7980 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7981 for (i = 0; i < len; i++)
7982 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
7983
7984 i = I915_READ(aud_cntrl_st2);
7985 i |= eldv;
7986 I915_WRITE(aud_cntrl_st2, i);
7987
7988}
7989
Wu Fengguange0dac652011-09-05 14:25:34 +08007990static void ironlake_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007991 struct drm_crtc *crtc,
7992 struct drm_display_mode *mode)
Wu Fengguange0dac652011-09-05 14:25:34 +08007993{
7994 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7995 uint8_t *eld = connector->eld;
7996 uint32_t eldv;
7997 uint32_t i;
7998 int len;
7999 int hdmiw_hdmiedid;
Wu Fengguangb6daa022012-01-06 14:41:31 -06008000 int aud_config;
Wu Fengguange0dac652011-09-05 14:25:34 +08008001 int aud_cntl_st;
8002 int aud_cntrl_st2;
Wang Xingchao9b138a82012-08-09 16:52:18 +08008003 int pipe = to_intel_crtc(crtc)->pipe;
Wu Fengguange0dac652011-09-05 14:25:34 +08008004
Wu Fengguangb3f33cb2011-12-09 20:42:17 +08008005 if (HAS_PCH_IBX(connector->dev)) {
Wang Xingchao9b138a82012-08-09 16:52:18 +08008006 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe);
8007 aud_config = IBX_AUD_CFG(pipe);
8008 aud_cntl_st = IBX_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08008009 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
Mengdong Lin9ca2fe72013-11-01 00:17:03 -04008010 } else if (IS_VALLEYVIEW(connector->dev)) {
8011 hdmiw_hdmiedid = VLV_HDMIW_HDMIEDID(pipe);
8012 aud_config = VLV_AUD_CFG(pipe);
8013 aud_cntl_st = VLV_AUD_CNTL_ST(pipe);
8014 aud_cntrl_st2 = VLV_AUD_CNTL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08008015 } else {
Wang Xingchao9b138a82012-08-09 16:52:18 +08008016 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe);
8017 aud_config = CPT_AUD_CFG(pipe);
8018 aud_cntl_st = CPT_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08008019 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08008020 }
8021
Wang Xingchao9b138a82012-08-09 16:52:18 +08008022 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
Wu Fengguange0dac652011-09-05 14:25:34 +08008023
Mengdong Lin9ca2fe72013-11-01 00:17:03 -04008024 if (IS_VALLEYVIEW(connector->dev)) {
8025 struct intel_encoder *intel_encoder;
8026 struct intel_digital_port *intel_dig_port;
8027
8028 intel_encoder = intel_attached_encoder(connector);
8029 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
8030 i = intel_dig_port->port;
8031 } else {
8032 i = I915_READ(aud_cntl_st);
8033 i = (i >> 29) & DIP_PORT_SEL_MASK;
8034 /* DIP_Port_Select, 0x1 = PortB */
8035 }
8036
Wu Fengguange0dac652011-09-05 14:25:34 +08008037 if (!i) {
8038 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
8039 /* operate blindly on all ports */
Wu Fengguang1202b4c62011-12-09 20:42:18 +08008040 eldv = IBX_ELD_VALIDB;
8041 eldv |= IBX_ELD_VALIDB << 4;
8042 eldv |= IBX_ELD_VALIDB << 8;
Wu Fengguange0dac652011-09-05 14:25:34 +08008043 } else {
Ville Syrjälä2582a852013-04-17 17:48:47 +03008044 DRM_DEBUG_DRIVER("ELD on port %c\n", port_name(i));
Wu Fengguang1202b4c62011-12-09 20:42:18 +08008045 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
Wu Fengguange0dac652011-09-05 14:25:34 +08008046 }
8047
Wu Fengguang3a9627f2011-12-09 20:42:19 +08008048 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
8049 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
8050 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
Wu Fengguangb6daa022012-01-06 14:41:31 -06008051 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
Jani Nikula1a915102013-10-16 12:34:48 +03008052 } else {
8053 I915_WRITE(aud_config, audio_config_hdmi_pixel_clock(mode));
8054 }
Wu Fengguang3a9627f2011-12-09 20:42:19 +08008055
8056 if (intel_eld_uptodate(connector,
8057 aud_cntrl_st2, eldv,
8058 aud_cntl_st, IBX_ELD_ADDRESS,
8059 hdmiw_hdmiedid))
8060 return;
8061
Wu Fengguange0dac652011-09-05 14:25:34 +08008062 i = I915_READ(aud_cntrl_st2);
8063 i &= ~eldv;
8064 I915_WRITE(aud_cntrl_st2, i);
8065
8066 if (!eld[0])
8067 return;
8068
Wu Fengguange0dac652011-09-05 14:25:34 +08008069 i = I915_READ(aud_cntl_st);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08008070 i &= ~IBX_ELD_ADDRESS;
Wu Fengguange0dac652011-09-05 14:25:34 +08008071 I915_WRITE(aud_cntl_st, i);
8072
8073 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
8074 DRM_DEBUG_DRIVER("ELD size %d\n", len);
8075 for (i = 0; i < len; i++)
8076 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
8077
8078 i = I915_READ(aud_cntrl_st2);
8079 i |= eldv;
8080 I915_WRITE(aud_cntrl_st2, i);
8081}
8082
8083void intel_write_eld(struct drm_encoder *encoder,
8084 struct drm_display_mode *mode)
8085{
8086 struct drm_crtc *crtc = encoder->crtc;
8087 struct drm_connector *connector;
8088 struct drm_device *dev = encoder->dev;
8089 struct drm_i915_private *dev_priv = dev->dev_private;
8090
8091 connector = drm_select_eld(encoder, mode);
8092 if (!connector)
8093 return;
8094
8095 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
8096 connector->base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03008097 connector->name,
Wu Fengguange0dac652011-09-05 14:25:34 +08008098 connector->encoder->base.id,
Jani Nikula8e329a02014-06-03 14:56:21 +03008099 connector->encoder->name);
Wu Fengguange0dac652011-09-05 14:25:34 +08008100
8101 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
8102
8103 if (dev_priv->display.write_eld)
Jani Nikula34427052013-10-16 12:34:47 +03008104 dev_priv->display.write_eld(connector, crtc, mode);
Wu Fengguange0dac652011-09-05 14:25:34 +08008105}
8106
Chris Wilson560b85b2010-08-07 11:01:38 +01008107static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
8108{
8109 struct drm_device *dev = crtc->dev;
8110 struct drm_i915_private *dev_priv = dev->dev_private;
8111 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälädc41c152014-08-13 11:57:05 +03008112 uint32_t cntl = 0, size = 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01008113
Ville Syrjälädc41c152014-08-13 11:57:05 +03008114 if (base) {
8115 unsigned int width = intel_crtc->cursor_width;
8116 unsigned int height = intel_crtc->cursor_height;
8117 unsigned int stride = roundup_pow_of_two(width) * 4;
8118
8119 switch (stride) {
8120 default:
8121 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
8122 width, stride);
8123 stride = 256;
8124 /* fallthrough */
8125 case 256:
8126 case 512:
8127 case 1024:
8128 case 2048:
8129 break;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008130 }
8131
Ville Syrjälädc41c152014-08-13 11:57:05 +03008132 cntl |= CURSOR_ENABLE |
8133 CURSOR_GAMMA_ENABLE |
8134 CURSOR_FORMAT_ARGB |
8135 CURSOR_STRIDE(stride);
8136
8137 size = (height << 12) | width;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008138 }
Chris Wilson560b85b2010-08-07 11:01:38 +01008139
Ville Syrjälädc41c152014-08-13 11:57:05 +03008140 if (intel_crtc->cursor_cntl != 0 &&
8141 (intel_crtc->cursor_base != base ||
8142 intel_crtc->cursor_size != size ||
8143 intel_crtc->cursor_cntl != cntl)) {
8144 /* On these chipsets we can only modify the base/size/stride
8145 * whilst the cursor is disabled.
8146 */
8147 I915_WRITE(_CURACNTR, 0);
8148 POSTING_READ(_CURACNTR);
8149 intel_crtc->cursor_cntl = 0;
8150 }
8151
8152 if (intel_crtc->cursor_base != base)
8153 I915_WRITE(_CURABASE, base);
8154
8155 if (intel_crtc->cursor_size != size) {
8156 I915_WRITE(CURSIZE, size);
8157 intel_crtc->cursor_size = size;
8158 }
8159
Chris Wilson4b0e3332014-05-30 16:35:26 +03008160 if (intel_crtc->cursor_cntl != cntl) {
8161 I915_WRITE(_CURACNTR, cntl);
8162 POSTING_READ(_CURACNTR);
8163 intel_crtc->cursor_cntl = cntl;
8164 }
Chris Wilson560b85b2010-08-07 11:01:38 +01008165}
8166
8167static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
8168{
8169 struct drm_device *dev = crtc->dev;
8170 struct drm_i915_private *dev_priv = dev->dev_private;
8171 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8172 int pipe = intel_crtc->pipe;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008173 uint32_t cntl;
Chris Wilson560b85b2010-08-07 11:01:38 +01008174
Chris Wilson4b0e3332014-05-30 16:35:26 +03008175 cntl = 0;
8176 if (base) {
8177 cntl = MCURSOR_GAMMA_ENABLE;
8178 switch (intel_crtc->cursor_width) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308179 case 64:
8180 cntl |= CURSOR_MODE_64_ARGB_AX;
8181 break;
8182 case 128:
8183 cntl |= CURSOR_MODE_128_ARGB_AX;
8184 break;
8185 case 256:
8186 cntl |= CURSOR_MODE_256_ARGB_AX;
8187 break;
8188 default:
8189 WARN_ON(1);
8190 return;
Chris Wilson560b85b2010-08-07 11:01:38 +01008191 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03008192 cntl |= pipe << 28; /* Connect to correct pipe */
Chris Wilson560b85b2010-08-07 11:01:38 +01008193 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03008194 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
8195 cntl |= CURSOR_PIPE_CSC_ENABLE;
8196
8197 if (intel_crtc->cursor_cntl != cntl) {
8198 I915_WRITE(CURCNTR(pipe), cntl);
8199 POSTING_READ(CURCNTR(pipe));
8200 intel_crtc->cursor_cntl = cntl;
8201 }
8202
Jesse Barnes65a21cd2011-10-12 11:10:21 -07008203 /* and commit changes on next vblank */
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008204 I915_WRITE(CURBASE(pipe), base);
8205 POSTING_READ(CURBASE(pipe));
Jesse Barnes65a21cd2011-10-12 11:10:21 -07008206}
8207
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008208/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01008209static void intel_crtc_update_cursor(struct drm_crtc *crtc,
8210 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008211{
8212 struct drm_device *dev = crtc->dev;
8213 struct drm_i915_private *dev_priv = dev->dev_private;
8214 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8215 int pipe = intel_crtc->pipe;
Matt Roper3d7d6512014-06-10 08:28:13 -07008216 int x = crtc->cursor_x;
8217 int y = crtc->cursor_y;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008218 u32 base = 0, pos = 0;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008219
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008220 if (on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008221 base = intel_crtc->cursor_addr;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008222
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008223 if (x >= intel_crtc->config.pipe_src_w)
8224 base = 0;
8225
8226 if (y >= intel_crtc->config.pipe_src_h)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008227 base = 0;
8228
8229 if (x < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03008230 if (x + intel_crtc->cursor_width <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008231 base = 0;
8232
8233 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
8234 x = -x;
8235 }
8236 pos |= x << CURSOR_X_SHIFT;
8237
8238 if (y < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03008239 if (y + intel_crtc->cursor_height <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008240 base = 0;
8241
8242 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
8243 y = -y;
8244 }
8245 pos |= y << CURSOR_Y_SHIFT;
8246
Chris Wilson4b0e3332014-05-30 16:35:26 +03008247 if (base == 0 && intel_crtc->cursor_base == 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008248 return;
8249
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008250 I915_WRITE(CURPOS(pipe), pos);
8251
Ville Syrjälä8ac54662014-08-12 19:39:54 +03008252 if (IS_845G(dev) || IS_I865G(dev))
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008253 i845_update_cursor(crtc, base);
8254 else
8255 i9xx_update_cursor(crtc, base);
Chris Wilson4b0e3332014-05-30 16:35:26 +03008256 intel_crtc->cursor_base = base;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008257}
8258
Ville Syrjälädc41c152014-08-13 11:57:05 +03008259static bool cursor_size_ok(struct drm_device *dev,
8260 uint32_t width, uint32_t height)
8261{
8262 if (width == 0 || height == 0)
8263 return false;
8264
8265 /*
8266 * 845g/865g are special in that they are only limited by
8267 * the width of their cursors, the height is arbitrary up to
8268 * the precision of the register. Everything else requires
8269 * square cursors, limited to a few power-of-two sizes.
8270 */
8271 if (IS_845G(dev) || IS_I865G(dev)) {
8272 if ((width & 63) != 0)
8273 return false;
8274
8275 if (width > (IS_845G(dev) ? 64 : 512))
8276 return false;
8277
8278 if (height > 1023)
8279 return false;
8280 } else {
8281 switch (width | height) {
8282 case 256:
8283 case 128:
8284 if (IS_GEN2(dev))
8285 return false;
8286 case 64:
8287 break;
8288 default:
8289 return false;
8290 }
8291 }
8292
8293 return true;
8294}
8295
Matt Ropere3287952014-06-10 08:28:12 -07008296/*
8297 * intel_crtc_cursor_set_obj - Set cursor to specified GEM object
8298 *
8299 * Note that the object's reference will be consumed if the update fails. If
8300 * the update succeeds, the reference of the old object (if any) will be
8301 * consumed.
8302 */
8303static int intel_crtc_cursor_set_obj(struct drm_crtc *crtc,
8304 struct drm_i915_gem_object *obj,
8305 uint32_t width, uint32_t height)
Jesse Barnes79e53942008-11-07 14:24:08 -08008306{
8307 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08008308 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettera071fa02014-06-18 23:28:09 +02008309 enum pipe pipe = intel_crtc->pipe;
Ville Syrjälädc41c152014-08-13 11:57:05 +03008310 unsigned old_width, stride;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008311 uint32_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008312 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08008313
Jesse Barnes79e53942008-11-07 14:24:08 -08008314 /* if we want to turn off the cursor ignore width and height */
Matt Ropere3287952014-06-10 08:28:12 -07008315 if (!obj) {
Zhao Yakui28c97732009-10-09 11:39:41 +08008316 DRM_DEBUG_KMS("cursor off\n");
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008317 addr = 0;
Pierre Willenbrock50044172009-02-23 10:12:15 +10008318 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008319 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08008320 }
8321
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308322 /* Check for which cursor types we support */
Ville Syrjälädc41c152014-08-13 11:57:05 +03008323 if (!cursor_size_ok(dev, width, height)) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308324 DRM_DEBUG("Cursor dimension not supported\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08008325 return -EINVAL;
8326 }
8327
Ville Syrjälädc41c152014-08-13 11:57:05 +03008328 stride = roundup_pow_of_two(width) * 4;
8329 if (obj->base.size < stride * height) {
Matt Ropere3287952014-06-10 08:28:12 -07008330 DRM_DEBUG_KMS("buffer is too small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10008331 ret = -ENOMEM;
8332 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008333 }
8334
Dave Airlie71acb5e2008-12-30 20:31:46 +10008335 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008336 mutex_lock(&dev->struct_mutex);
Damien Lespiau3d13ef22014-02-07 19:12:47 +00008337 if (!INTEL_INFO(dev)->cursor_needs_physical) {
Chris Wilson693db182013-03-05 14:52:39 +00008338 unsigned alignment;
8339
Chris Wilsond9e86c02010-11-10 16:40:20 +00008340 if (obj->tiling_mode) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008341 DRM_DEBUG_KMS("cursor cannot be tiled\n");
Chris Wilsond9e86c02010-11-10 16:40:20 +00008342 ret = -EINVAL;
8343 goto fail_locked;
8344 }
8345
Chris Wilson693db182013-03-05 14:52:39 +00008346 /* Note that the w/a also requires 2 PTE of padding following
8347 * the bo. We currently fill all unused PTE with the shadow
8348 * page and so we should always have valid PTE following the
8349 * cursor preventing the VT-d warning.
8350 */
8351 alignment = 0;
8352 if (need_vtd_wa(dev))
8353 alignment = 64*1024;
8354
8355 ret = i915_gem_object_pin_to_display_plane(obj, alignment, NULL);
Chris Wilsone7b526b2010-06-02 08:30:48 +01008356 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008357 DRM_DEBUG_KMS("failed to move cursor bo into the GTT\n");
Chris Wilson2da3b9b2011-04-14 09:41:17 +01008358 goto fail_locked;
Chris Wilsone7b526b2010-06-02 08:30:48 +01008359 }
8360
Chris Wilsond9e86c02010-11-10 16:40:20 +00008361 ret = i915_gem_object_put_fence(obj);
8362 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008363 DRM_DEBUG_KMS("failed to release fence for cursor");
Chris Wilsond9e86c02010-11-10 16:40:20 +00008364 goto fail_unpin;
8365 }
8366
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008367 addr = i915_gem_obj_ggtt_offset(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10008368 } else {
Chris Wilson6eeefaf2010-08-07 11:01:39 +01008369 int align = IS_I830(dev) ? 16 * 1024 : 256;
Chris Wilson00731152014-05-21 12:42:56 +01008370 ret = i915_gem_object_attach_phys(obj, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10008371 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008372 DRM_DEBUG_KMS("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008373 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10008374 }
Chris Wilson00731152014-05-21 12:42:56 +01008375 addr = obj->phys_handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008376 }
8377
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008378 finish:
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008379 if (intel_crtc->cursor_bo) {
Chris Wilson00731152014-05-21 12:42:56 +01008380 if (!INTEL_INFO(dev)->cursor_needs_physical)
Chris Wilsoncc98b412013-08-09 12:25:09 +01008381 i915_gem_object_unpin_from_display_plane(intel_crtc->cursor_bo);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008382 }
Jesse Barnes80824002009-09-10 15:28:06 -07008383
Daniel Vettera071fa02014-06-18 23:28:09 +02008384 i915_gem_track_fb(intel_crtc->cursor_bo, obj,
8385 INTEL_FRONTBUFFER_CURSOR(pipe));
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008386 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008387
Chris Wilson64f962e2014-03-26 12:38:15 +00008388 old_width = intel_crtc->cursor_width;
8389
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008390 intel_crtc->cursor_addr = addr;
Chris Wilson05394f32010-11-08 19:18:58 +00008391 intel_crtc->cursor_bo = obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008392 intel_crtc->cursor_width = width;
8393 intel_crtc->cursor_height = height;
8394
Chris Wilson64f962e2014-03-26 12:38:15 +00008395 if (intel_crtc->active) {
8396 if (old_width != width)
8397 intel_update_watermarks(crtc);
Ville Syrjäläf2f5f772013-09-17 18:33:44 +03008398 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
Chris Wilson64f962e2014-03-26 12:38:15 +00008399 }
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008400
Daniel Vetterf99d7062014-06-19 16:01:59 +02008401 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_CURSOR(pipe));
8402
Jesse Barnes79e53942008-11-07 14:24:08 -08008403 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01008404fail_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01008405 i915_gem_object_unpin_from_display_plane(obj);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008406fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10008407 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00008408fail:
Chris Wilson05394f32010-11-08 19:18:58 +00008409 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie34b8686e2009-01-15 14:03:07 +10008410 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08008411}
8412
Jesse Barnes79e53942008-11-07 14:24:08 -08008413static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01008414 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08008415{
James Simmons72034252010-08-03 01:33:19 +01008416 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08008417 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008418
James Simmons72034252010-08-03 01:33:19 +01008419 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008420 intel_crtc->lut_r[i] = red[i] >> 8;
8421 intel_crtc->lut_g[i] = green[i] >> 8;
8422 intel_crtc->lut_b[i] = blue[i] >> 8;
8423 }
8424
8425 intel_crtc_load_lut(crtc);
8426}
8427
Jesse Barnes79e53942008-11-07 14:24:08 -08008428/* VESA 640x480x72Hz mode to set on the pipe */
8429static struct drm_display_mode load_detect_mode = {
8430 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
8431 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
8432};
8433
Daniel Vettera8bb6812014-02-10 18:00:39 +01008434struct drm_framebuffer *
8435__intel_framebuffer_create(struct drm_device *dev,
8436 struct drm_mode_fb_cmd2 *mode_cmd,
8437 struct drm_i915_gem_object *obj)
Chris Wilsond2dff872011-04-19 08:36:26 +01008438{
8439 struct intel_framebuffer *intel_fb;
8440 int ret;
8441
8442 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
8443 if (!intel_fb) {
8444 drm_gem_object_unreference_unlocked(&obj->base);
8445 return ERR_PTR(-ENOMEM);
8446 }
8447
8448 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008449 if (ret)
8450 goto err;
Chris Wilsond2dff872011-04-19 08:36:26 +01008451
8452 return &intel_fb->base;
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008453err:
8454 drm_gem_object_unreference_unlocked(&obj->base);
8455 kfree(intel_fb);
8456
8457 return ERR_PTR(ret);
Chris Wilsond2dff872011-04-19 08:36:26 +01008458}
8459
Daniel Vetterb5ea6422014-03-02 21:18:00 +01008460static struct drm_framebuffer *
Daniel Vettera8bb6812014-02-10 18:00:39 +01008461intel_framebuffer_create(struct drm_device *dev,
8462 struct drm_mode_fb_cmd2 *mode_cmd,
8463 struct drm_i915_gem_object *obj)
8464{
8465 struct drm_framebuffer *fb;
8466 int ret;
8467
8468 ret = i915_mutex_lock_interruptible(dev);
8469 if (ret)
8470 return ERR_PTR(ret);
8471 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
8472 mutex_unlock(&dev->struct_mutex);
8473
8474 return fb;
8475}
8476
Chris Wilsond2dff872011-04-19 08:36:26 +01008477static u32
8478intel_framebuffer_pitch_for_width(int width, int bpp)
8479{
8480 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
8481 return ALIGN(pitch, 64);
8482}
8483
8484static u32
8485intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
8486{
8487 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
Fabian Frederick1267a262014-07-01 20:39:41 +02008488 return PAGE_ALIGN(pitch * mode->vdisplay);
Chris Wilsond2dff872011-04-19 08:36:26 +01008489}
8490
8491static struct drm_framebuffer *
8492intel_framebuffer_create_for_mode(struct drm_device *dev,
8493 struct drm_display_mode *mode,
8494 int depth, int bpp)
8495{
8496 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +00008497 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +01008498
8499 obj = i915_gem_alloc_object(dev,
8500 intel_framebuffer_size_for_mode(mode, bpp));
8501 if (obj == NULL)
8502 return ERR_PTR(-ENOMEM);
8503
8504 mode_cmd.width = mode->hdisplay;
8505 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008506 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
8507 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00008508 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01008509
8510 return intel_framebuffer_create(dev, &mode_cmd, obj);
8511}
8512
8513static struct drm_framebuffer *
8514mode_fits_in_fbdev(struct drm_device *dev,
8515 struct drm_display_mode *mode)
8516{
Daniel Vetter4520f532013-10-09 09:18:51 +02008517#ifdef CONFIG_DRM_I915_FBDEV
Chris Wilsond2dff872011-04-19 08:36:26 +01008518 struct drm_i915_private *dev_priv = dev->dev_private;
8519 struct drm_i915_gem_object *obj;
8520 struct drm_framebuffer *fb;
8521
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008522 if (!dev_priv->fbdev)
8523 return NULL;
8524
8525 if (!dev_priv->fbdev->fb)
Chris Wilsond2dff872011-04-19 08:36:26 +01008526 return NULL;
8527
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008528 obj = dev_priv->fbdev->fb->obj;
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008529 BUG_ON(!obj);
Chris Wilsond2dff872011-04-19 08:36:26 +01008530
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008531 fb = &dev_priv->fbdev->fb->base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008532 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
8533 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01008534 return NULL;
8535
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008536 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01008537 return NULL;
8538
8539 return fb;
Daniel Vetter4520f532013-10-09 09:18:51 +02008540#else
8541 return NULL;
8542#endif
Chris Wilsond2dff872011-04-19 08:36:26 +01008543}
8544
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008545bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01008546 struct drm_display_mode *mode,
Rob Clark51fd3712013-11-19 12:10:12 -05008547 struct intel_load_detect_pipe *old,
8548 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -08008549{
8550 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008551 struct intel_encoder *intel_encoder =
8552 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08008553 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01008554 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08008555 struct drm_crtc *crtc = NULL;
8556 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02008557 struct drm_framebuffer *fb;
Rob Clark51fd3712013-11-19 12:10:12 -05008558 struct drm_mode_config *config = &dev->mode_config;
8559 int ret, i = -1;
Jesse Barnes79e53942008-11-07 14:24:08 -08008560
Chris Wilsond2dff872011-04-19 08:36:26 +01008561 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03008562 connector->base.id, connector->name,
Jani Nikula8e329a02014-06-03 14:56:21 +03008563 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +01008564
Rob Clark51fd3712013-11-19 12:10:12 -05008565retry:
8566 ret = drm_modeset_lock(&config->connection_mutex, ctx);
8567 if (ret)
8568 goto fail_unlock;
Daniel Vetter6e9f7982014-05-29 23:54:47 +02008569
Jesse Barnes79e53942008-11-07 14:24:08 -08008570 /*
8571 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01008572 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008573 * - if the connector already has an assigned crtc, use it (but make
8574 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01008575 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008576 * - try to find the first unused crtc that can drive this connector,
8577 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08008578 */
8579
8580 /* See if we already have a CRTC for this connector */
8581 if (encoder->crtc) {
8582 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01008583
Rob Clark51fd3712013-11-19 12:10:12 -05008584 ret = drm_modeset_lock(&crtc->mutex, ctx);
8585 if (ret)
8586 goto fail_unlock;
Daniel Vetter7b240562012-12-12 00:35:33 +01008587
Daniel Vetter24218aa2012-08-12 19:27:11 +02008588 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008589 old->load_detect_temp = false;
8590
8591 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008592 if (connector->dpms != DRM_MODE_DPMS_ON)
8593 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01008594
Chris Wilson71731882011-04-19 23:10:58 +01008595 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08008596 }
8597
8598 /* Find an unused one (if possible) */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008599 for_each_crtc(dev, possible_crtc) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008600 i++;
8601 if (!(encoder->possible_crtcs & (1 << i)))
8602 continue;
Ville Syrjäläa4592492014-08-11 13:15:36 +03008603 if (possible_crtc->enabled)
8604 continue;
8605 /* This can occur when applying the pipe A quirk on resume. */
8606 if (to_intel_crtc(possible_crtc)->new_enabled)
8607 continue;
8608
8609 crtc = possible_crtc;
8610 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08008611 }
8612
8613 /*
8614 * If we didn't find an unused CRTC, don't use any.
8615 */
8616 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01008617 DRM_DEBUG_KMS("no pipe available for load-detect\n");
Rob Clark51fd3712013-11-19 12:10:12 -05008618 goto fail_unlock;
Jesse Barnes79e53942008-11-07 14:24:08 -08008619 }
8620
Rob Clark51fd3712013-11-19 12:10:12 -05008621 ret = drm_modeset_lock(&crtc->mutex, ctx);
8622 if (ret)
8623 goto fail_unlock;
Daniel Vetterfc303102012-07-09 10:40:58 +02008624 intel_encoder->new_crtc = to_intel_crtc(crtc);
8625 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008626
8627 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008628 intel_crtc->new_enabled = true;
8629 intel_crtc->new_config = &intel_crtc->config;
Daniel Vetter24218aa2012-08-12 19:27:11 +02008630 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008631 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01008632 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08008633
Chris Wilson64927112011-04-20 07:25:26 +01008634 if (!mode)
8635 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08008636
Chris Wilsond2dff872011-04-19 08:36:26 +01008637 /* We need a framebuffer large enough to accommodate all accesses
8638 * that the plane may generate whilst we perform load detection.
8639 * We can not rely on the fbcon either being present (we get called
8640 * during its initialisation to detect all boot displays, or it may
8641 * not even exist) or that it is large enough to satisfy the
8642 * requested mode.
8643 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02008644 fb = mode_fits_in_fbdev(dev, mode);
8645 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008646 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008647 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
8648 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01008649 } else
8650 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008651 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008652 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008653 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008654 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008655
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008656 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01008657 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01008658 if (old->release_fb)
8659 old->release_fb->funcs->destroy(old->release_fb);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008660 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008661 }
Chris Wilson71731882011-04-19 23:10:58 +01008662
Jesse Barnes79e53942008-11-07 14:24:08 -08008663 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008664 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +01008665 return true;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008666
8667 fail:
8668 intel_crtc->new_enabled = crtc->enabled;
8669 if (intel_crtc->new_enabled)
8670 intel_crtc->new_config = &intel_crtc->config;
8671 else
8672 intel_crtc->new_config = NULL;
Rob Clark51fd3712013-11-19 12:10:12 -05008673fail_unlock:
8674 if (ret == -EDEADLK) {
8675 drm_modeset_backoff(ctx);
8676 goto retry;
8677 }
8678
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008679 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08008680}
8681
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008682void intel_release_load_detect_pipe(struct drm_connector *connector,
Ville Syrjälä208bf9f2014-08-11 13:15:35 +03008683 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08008684{
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008685 struct intel_encoder *intel_encoder =
8686 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01008687 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +01008688 struct drm_crtc *crtc = encoder->crtc;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008689 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008690
Chris Wilsond2dff872011-04-19 08:36:26 +01008691 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03008692 connector->base.id, connector->name,
Jani Nikula8e329a02014-06-03 14:56:21 +03008693 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +01008694
Chris Wilson8261b192011-04-19 23:18:09 +01008695 if (old->load_detect_temp) {
Daniel Vetterfc303102012-07-09 10:40:58 +02008696 to_intel_connector(connector)->new_encoder = NULL;
8697 intel_encoder->new_crtc = NULL;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008698 intel_crtc->new_enabled = false;
8699 intel_crtc->new_config = NULL;
Daniel Vetterfc303102012-07-09 10:40:58 +02008700 intel_set_mode(crtc, NULL, 0, 0, NULL);
Chris Wilsond2dff872011-04-19 08:36:26 +01008701
Daniel Vetter36206362012-12-10 20:42:17 +01008702 if (old->release_fb) {
8703 drm_framebuffer_unregister_private(old->release_fb);
8704 drm_framebuffer_unreference(old->release_fb);
8705 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008706
Chris Wilson0622a532011-04-21 09:32:11 +01008707 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008708 }
8709
Eric Anholtc751ce42010-03-25 11:48:48 -07008710 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008711 if (old->dpms_mode != DRM_MODE_DPMS_ON)
8712 connector->funcs->dpms(connector, old->dpms_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08008713}
8714
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008715static int i9xx_pll_refclk(struct drm_device *dev,
8716 const struct intel_crtc_config *pipe_config)
8717{
8718 struct drm_i915_private *dev_priv = dev->dev_private;
8719 u32 dpll = pipe_config->dpll_hw_state.dpll;
8720
8721 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008722 return dev_priv->vbt.lvds_ssc_freq;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008723 else if (HAS_PCH_SPLIT(dev))
8724 return 120000;
8725 else if (!IS_GEN2(dev))
8726 return 96000;
8727 else
8728 return 48000;
8729}
8730
Jesse Barnes79e53942008-11-07 14:24:08 -08008731/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008732static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
8733 struct intel_crtc_config *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08008734{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008735 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08008736 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008737 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008738 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -08008739 u32 fp;
8740 intel_clock_t clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008741 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -08008742
8743 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +03008744 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008745 else
Ville Syrjälä293623f2013-09-13 16:18:46 +03008746 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -08008747
8748 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008749 if (IS_PINEVIEW(dev)) {
8750 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
8751 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08008752 } else {
8753 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
8754 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
8755 }
8756
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008757 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008758 if (IS_PINEVIEW(dev))
8759 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
8760 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08008761 else
8762 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08008763 DPLL_FPA01_P1_POST_DIV_SHIFT);
8764
8765 switch (dpll & DPLL_MODE_MASK) {
8766 case DPLLB_MODE_DAC_SERIAL:
8767 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
8768 5 : 10;
8769 break;
8770 case DPLLB_MODE_LVDS:
8771 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
8772 7 : 14;
8773 break;
8774 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08008775 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08008776 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008777 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008778 }
8779
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008780 if (IS_PINEVIEW(dev))
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008781 pineview_clock(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008782 else
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008783 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008784 } else {
Ville Syrjälä0fb58222014-01-10 14:06:46 +02008785 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008786 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
Jesse Barnes79e53942008-11-07 14:24:08 -08008787
8788 if (is_lvds) {
8789 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
8790 DPLL_FPA01_P1_POST_DIV_SHIFT);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008791
8792 if (lvds & LVDS_CLKB_POWER_UP)
8793 clock.p2 = 7;
8794 else
8795 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -08008796 } else {
8797 if (dpll & PLL_P1_DIVIDE_BY_TWO)
8798 clock.p1 = 2;
8799 else {
8800 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
8801 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
8802 }
8803 if (dpll & PLL_P2_DIVIDE_BY_4)
8804 clock.p2 = 4;
8805 else
8806 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -08008807 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008808
8809 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008810 }
8811
Ville Syrjälä18442d02013-09-13 16:00:08 +03008812 /*
8813 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +01008814 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +03008815 * encoder's get_config() function.
8816 */
8817 pipe_config->port_clock = clock.dot;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008818}
8819
Ville Syrjälä6878da02013-09-13 15:59:11 +03008820int intel_dotclock_calculate(int link_freq,
8821 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008822{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008823 /*
8824 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008825 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008826 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008827 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008828 *
8829 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008830 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -08008831 */
8832
Ville Syrjälä6878da02013-09-13 15:59:11 +03008833 if (!m_n->link_n)
8834 return 0;
8835
8836 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
8837}
8838
Ville Syrjälä18442d02013-09-13 16:00:08 +03008839static void ironlake_pch_clock_get(struct intel_crtc *crtc,
8840 struct intel_crtc_config *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +03008841{
8842 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä18442d02013-09-13 16:00:08 +03008843
8844 /* read out port_clock from the DPLL */
8845 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +03008846
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008847 /*
Ville Syrjälä18442d02013-09-13 16:00:08 +03008848 * This value does not include pixel_multiplier.
Damien Lespiau241bfc32013-09-25 16:45:37 +01008849 * We will check that port_clock and adjusted_mode.crtc_clock
Ville Syrjälä18442d02013-09-13 16:00:08 +03008850 * agree once we know their relationship in the encoder's
8851 * get_config() function.
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008852 */
Damien Lespiau241bfc32013-09-25 16:45:37 +01008853 pipe_config->adjusted_mode.crtc_clock =
Ville Syrjälä18442d02013-09-13 16:00:08 +03008854 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
8855 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -08008856}
8857
8858/** Returns the currently programmed mode of the given pipe. */
8859struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
8860 struct drm_crtc *crtc)
8861{
Jesse Barnes548f2452011-02-17 10:40:53 -08008862 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08008863 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02008864 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008865 struct drm_display_mode *mode;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008866 struct intel_crtc_config pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -02008867 int htot = I915_READ(HTOTAL(cpu_transcoder));
8868 int hsync = I915_READ(HSYNC(cpu_transcoder));
8869 int vtot = I915_READ(VTOTAL(cpu_transcoder));
8870 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +03008871 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08008872
8873 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
8874 if (!mode)
8875 return NULL;
8876
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008877 /*
8878 * Construct a pipe_config sufficient for getting the clock info
8879 * back out of crtc_clock_get.
8880 *
8881 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
8882 * to use a real value here instead.
8883 */
Ville Syrjälä293623f2013-09-13 16:18:46 +03008884 pipe_config.cpu_transcoder = (enum transcoder) pipe;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008885 pipe_config.pixel_multiplier = 1;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008886 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
8887 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
8888 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008889 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
8890
Ville Syrjälä773ae032013-09-23 17:48:20 +03008891 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -08008892 mode->hdisplay = (htot & 0xffff) + 1;
8893 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
8894 mode->hsync_start = (hsync & 0xffff) + 1;
8895 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
8896 mode->vdisplay = (vtot & 0xffff) + 1;
8897 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
8898 mode->vsync_start = (vsync & 0xffff) + 1;
8899 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
8900
8901 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08008902
8903 return mode;
8904}
8905
Daniel Vettercc365132014-06-18 13:59:13 +02008906static void intel_increase_pllclock(struct drm_device *dev,
8907 enum pipe pipe)
Jesse Barnes652c3932009-08-17 13:31:43 -07008908{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008909 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008910 int dpll_reg = DPLL(pipe);
8911 int dpll;
Jesse Barnes652c3932009-08-17 13:31:43 -07008912
Sonika Jindalbaff2962014-07-22 11:16:35 +05308913 if (!HAS_GMCH_DISPLAY(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07008914 return;
8915
8916 if (!dev_priv->lvds_downclock_avail)
8917 return;
8918
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008919 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07008920 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08008921 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008922
Sean Paul8ac5a6d2012-02-13 13:14:51 -05008923 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008924
8925 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
8926 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008927 intel_wait_for_vblank(dev, pipe);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008928
Jesse Barnes652c3932009-08-17 13:31:43 -07008929 dpll = I915_READ(dpll_reg);
8930 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08008931 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008932 }
Jesse Barnes652c3932009-08-17 13:31:43 -07008933}
8934
8935static void intel_decrease_pllclock(struct drm_crtc *crtc)
8936{
8937 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +03008938 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -07008939 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07008940
Sonika Jindalbaff2962014-07-22 11:16:35 +05308941 if (!HAS_GMCH_DISPLAY(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07008942 return;
8943
8944 if (!dev_priv->lvds_downclock_avail)
8945 return;
8946
8947 /*
8948 * Since this is called by a timer, we should never get here in
8949 * the manual case.
8950 */
8951 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01008952 int pipe = intel_crtc->pipe;
8953 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02008954 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01008955
Zhao Yakui44d98a62009-10-09 11:39:40 +08008956 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008957
Sean Paul8ac5a6d2012-02-13 13:14:51 -05008958 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008959
Chris Wilson074b5e12012-05-02 12:07:06 +01008960 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07008961 dpll |= DISPLAY_RATE_SELECT_FPA1;
8962 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008963 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008964 dpll = I915_READ(dpll_reg);
8965 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08008966 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008967 }
8968
8969}
8970
Chris Wilsonf047e392012-07-21 12:31:41 +01008971void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07008972{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008973 struct drm_i915_private *dev_priv = dev->dev_private;
8974
Chris Wilsonf62a0072014-02-21 17:55:39 +00008975 if (dev_priv->mm.busy)
8976 return;
8977
Paulo Zanoni43694d62014-03-07 20:08:08 -03008978 intel_runtime_pm_get(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008979 i915_update_gfx_val(dev_priv);
Chris Wilsonf62a0072014-02-21 17:55:39 +00008980 dev_priv->mm.busy = true;
Chris Wilsonf047e392012-07-21 12:31:41 +01008981}
8982
8983void intel_mark_idle(struct drm_device *dev)
8984{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008985 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson725a5b52013-01-08 11:02:57 +00008986 struct drm_crtc *crtc;
8987
Chris Wilsonf62a0072014-02-21 17:55:39 +00008988 if (!dev_priv->mm.busy)
8989 return;
8990
8991 dev_priv->mm.busy = false;
8992
Jani Nikulad330a952014-01-21 11:24:25 +02008993 if (!i915.powersave)
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03008994 goto out;
Chris Wilson725a5b52013-01-08 11:02:57 +00008995
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008996 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -07008997 if (!crtc->primary->fb)
Chris Wilson725a5b52013-01-08 11:02:57 +00008998 continue;
8999
9000 intel_decrease_pllclock(crtc);
9001 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01009002
Damien Lespiau3d13ef22014-02-07 19:12:47 +00009003 if (INTEL_INFO(dev)->gen >= 6)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01009004 gen6_rps_idle(dev->dev_private);
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03009005
9006out:
Paulo Zanoni43694d62014-03-07 20:08:08 -03009007 intel_runtime_pm_put(dev_priv);
Chris Wilsonf047e392012-07-21 12:31:41 +01009008}
9009
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07009010
Daniel Vetterf99d7062014-06-19 16:01:59 +02009011/**
9012 * intel_mark_fb_busy - mark given planes as busy
9013 * @dev: DRM device
9014 * @frontbuffer_bits: bits for the affected planes
9015 * @ring: optional ring for asynchronous commands
9016 *
9017 * This function gets called every time the screen contents change. It can be
9018 * used to keep e.g. the update rate at the nominal refresh rate with DRRS.
9019 */
9020static void intel_mark_fb_busy(struct drm_device *dev,
9021 unsigned frontbuffer_bits,
9022 struct intel_engine_cs *ring)
Chris Wilsonf047e392012-07-21 12:31:41 +01009023{
Damien Lespiau055e3932014-08-18 13:49:10 +01009024 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettercc365132014-06-18 13:59:13 +02009025 enum pipe pipe;
Jesse Barnes652c3932009-08-17 13:31:43 -07009026
Jani Nikulad330a952014-01-21 11:24:25 +02009027 if (!i915.powersave)
Jesse Barnes652c3932009-08-17 13:31:43 -07009028 return;
9029
Damien Lespiau055e3932014-08-18 13:49:10 +01009030 for_each_pipe(dev_priv, pipe) {
Daniel Vetterf99d7062014-06-19 16:01:59 +02009031 if (!(frontbuffer_bits & INTEL_FRONTBUFFER_ALL_MASK(pipe)))
Jesse Barnes652c3932009-08-17 13:31:43 -07009032 continue;
9033
Daniel Vettercc365132014-06-18 13:59:13 +02009034 intel_increase_pllclock(dev, pipe);
Chris Wilsonc65355b2013-06-06 16:53:41 -03009035 if (ring && intel_fbc_enabled(dev))
9036 ring->fbc_dirty = true;
Jesse Barnes652c3932009-08-17 13:31:43 -07009037 }
Jesse Barnes652c3932009-08-17 13:31:43 -07009038}
9039
Daniel Vetterf99d7062014-06-19 16:01:59 +02009040/**
9041 * intel_fb_obj_invalidate - invalidate frontbuffer object
9042 * @obj: GEM object to invalidate
9043 * @ring: set for asynchronous rendering
9044 *
9045 * This function gets called every time rendering on the given object starts and
9046 * frontbuffer caching (fbc, low refresh rate for DRRS, panel self refresh) must
9047 * be invalidated. If @ring is non-NULL any subsequent invalidation will be delayed
9048 * until the rendering completes or a flip on this frontbuffer plane is
9049 * scheduled.
9050 */
9051void intel_fb_obj_invalidate(struct drm_i915_gem_object *obj,
9052 struct intel_engine_cs *ring)
9053{
9054 struct drm_device *dev = obj->base.dev;
9055 struct drm_i915_private *dev_priv = dev->dev_private;
9056
9057 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
9058
9059 if (!obj->frontbuffer_bits)
9060 return;
9061
9062 if (ring) {
9063 mutex_lock(&dev_priv->fb_tracking.lock);
9064 dev_priv->fb_tracking.busy_bits
9065 |= obj->frontbuffer_bits;
9066 dev_priv->fb_tracking.flip_bits
9067 &= ~obj->frontbuffer_bits;
9068 mutex_unlock(&dev_priv->fb_tracking.lock);
9069 }
9070
9071 intel_mark_fb_busy(dev, obj->frontbuffer_bits, ring);
9072
Daniel Vetter9ca15302014-07-11 10:30:16 -07009073 intel_edp_psr_invalidate(dev, obj->frontbuffer_bits);
Daniel Vetterf99d7062014-06-19 16:01:59 +02009074}
9075
9076/**
9077 * intel_frontbuffer_flush - flush frontbuffer
9078 * @dev: DRM device
9079 * @frontbuffer_bits: frontbuffer plane tracking bits
9080 *
9081 * This function gets called every time rendering on the given planes has
9082 * completed and frontbuffer caching can be started again. Flushes will get
9083 * delayed if they're blocked by some oustanding asynchronous rendering.
9084 *
9085 * Can be called without any locks held.
9086 */
9087void intel_frontbuffer_flush(struct drm_device *dev,
9088 unsigned frontbuffer_bits)
9089{
9090 struct drm_i915_private *dev_priv = dev->dev_private;
9091
9092 /* Delay flushing when rings are still busy.*/
9093 mutex_lock(&dev_priv->fb_tracking.lock);
9094 frontbuffer_bits &= ~dev_priv->fb_tracking.busy_bits;
9095 mutex_unlock(&dev_priv->fb_tracking.lock);
9096
9097 intel_mark_fb_busy(dev, frontbuffer_bits, NULL);
9098
Daniel Vetter9ca15302014-07-11 10:30:16 -07009099 intel_edp_psr_flush(dev, frontbuffer_bits);
Rodrigo Vivic5ad0112014-08-04 03:51:38 -07009100
Ville Syrjäläc317adc2014-09-03 14:09:50 +03009101 /*
9102 * FIXME: Unconditional fbc flushing here is a rather gross hack and
9103 * needs to be reworked into a proper frontbuffer tracking scheme like
9104 * psr employs.
9105 */
9106 if (IS_BROADWELL(dev))
Rodrigo Vivic5ad0112014-08-04 03:51:38 -07009107 gen8_fbc_sw_flush(dev, FBC_REND_CACHE_CLEAN);
Daniel Vetterf99d7062014-06-19 16:01:59 +02009108}
9109
9110/**
9111 * intel_fb_obj_flush - flush frontbuffer object
9112 * @obj: GEM object to flush
9113 * @retire: set when retiring asynchronous rendering
9114 *
9115 * This function gets called every time rendering on the given object has
9116 * completed and frontbuffer caching can be started again. If @retire is true
9117 * then any delayed flushes will be unblocked.
9118 */
9119void intel_fb_obj_flush(struct drm_i915_gem_object *obj,
9120 bool retire)
9121{
9122 struct drm_device *dev = obj->base.dev;
9123 struct drm_i915_private *dev_priv = dev->dev_private;
9124 unsigned frontbuffer_bits;
9125
9126 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
9127
9128 if (!obj->frontbuffer_bits)
9129 return;
9130
9131 frontbuffer_bits = obj->frontbuffer_bits;
9132
9133 if (retire) {
9134 mutex_lock(&dev_priv->fb_tracking.lock);
9135 /* Filter out new bits since rendering started. */
9136 frontbuffer_bits &= dev_priv->fb_tracking.busy_bits;
9137
9138 dev_priv->fb_tracking.busy_bits &= ~frontbuffer_bits;
9139 mutex_unlock(&dev_priv->fb_tracking.lock);
9140 }
9141
9142 intel_frontbuffer_flush(dev, frontbuffer_bits);
9143}
9144
9145/**
9146 * intel_frontbuffer_flip_prepare - prepare asnychronous frontbuffer flip
9147 * @dev: DRM device
9148 * @frontbuffer_bits: frontbuffer plane tracking bits
9149 *
9150 * This function gets called after scheduling a flip on @obj. The actual
9151 * frontbuffer flushing will be delayed until completion is signalled with
9152 * intel_frontbuffer_flip_complete. If an invalidate happens in between this
9153 * flush will be cancelled.
9154 *
9155 * Can be called without any locks held.
9156 */
9157void intel_frontbuffer_flip_prepare(struct drm_device *dev,
9158 unsigned frontbuffer_bits)
9159{
9160 struct drm_i915_private *dev_priv = dev->dev_private;
9161
9162 mutex_lock(&dev_priv->fb_tracking.lock);
9163 dev_priv->fb_tracking.flip_bits
9164 |= frontbuffer_bits;
9165 mutex_unlock(&dev_priv->fb_tracking.lock);
9166}
9167
9168/**
9169 * intel_frontbuffer_flip_complete - complete asynchronous frontbuffer flush
9170 * @dev: DRM device
9171 * @frontbuffer_bits: frontbuffer plane tracking bits
9172 *
9173 * This function gets called after the flip has been latched and will complete
9174 * on the next vblank. It will execute the fush if it hasn't been cancalled yet.
9175 *
9176 * Can be called without any locks held.
9177 */
9178void intel_frontbuffer_flip_complete(struct drm_device *dev,
9179 unsigned frontbuffer_bits)
9180{
9181 struct drm_i915_private *dev_priv = dev->dev_private;
9182
9183 mutex_lock(&dev_priv->fb_tracking.lock);
9184 /* Mask any cancelled flips. */
9185 frontbuffer_bits &= dev_priv->fb_tracking.flip_bits;
9186 dev_priv->fb_tracking.flip_bits &= ~frontbuffer_bits;
9187 mutex_unlock(&dev_priv->fb_tracking.lock);
9188
9189 intel_frontbuffer_flush(dev, frontbuffer_bits);
9190}
9191
Jesse Barnes79e53942008-11-07 14:24:08 -08009192static void intel_crtc_destroy(struct drm_crtc *crtc)
9193{
9194 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009195 struct drm_device *dev = crtc->dev;
9196 struct intel_unpin_work *work;
9197 unsigned long flags;
9198
9199 spin_lock_irqsave(&dev->event_lock, flags);
9200 work = intel_crtc->unpin_work;
9201 intel_crtc->unpin_work = NULL;
9202 spin_unlock_irqrestore(&dev->event_lock, flags);
9203
9204 if (work) {
9205 cancel_work_sync(&work->work);
9206 kfree(work);
9207 }
Jesse Barnes79e53942008-11-07 14:24:08 -08009208
9209 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009210
Jesse Barnes79e53942008-11-07 14:24:08 -08009211 kfree(intel_crtc);
9212}
9213
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009214static void intel_unpin_work_fn(struct work_struct *__work)
9215{
9216 struct intel_unpin_work *work =
9217 container_of(__work, struct intel_unpin_work, work);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009218 struct drm_device *dev = work->crtc->dev;
Daniel Vetterf99d7062014-06-19 16:01:59 +02009219 enum pipe pipe = to_intel_crtc(work->crtc)->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009220
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009221 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01009222 intel_unpin_fb_obj(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00009223 drm_gem_object_unreference(&work->pending_flip_obj->base);
9224 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00009225
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009226 intel_update_fbc(dev);
9227 mutex_unlock(&dev->struct_mutex);
9228
Daniel Vetterf99d7062014-06-19 16:01:59 +02009229 intel_frontbuffer_flip_complete(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
9230
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009231 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
9232 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
9233
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009234 kfree(work);
9235}
9236
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009237static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01009238 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009239{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009240 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009241 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9242 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009243 unsigned long flags;
9244
9245 /* Ignore early vblank irqs */
9246 if (intel_crtc == NULL)
9247 return;
9248
9249 spin_lock_irqsave(&dev->event_lock, flags);
9250 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +00009251
9252 /* Ensure we don't miss a work->pending update ... */
9253 smp_rmb();
9254
9255 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009256 spin_unlock_irqrestore(&dev->event_lock, flags);
9257 return;
9258 }
9259
Chris Wilsone7d841c2012-12-03 11:36:30 +00009260 /* and that the unpin work is consistent wrt ->pending. */
9261 smp_rmb();
9262
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009263 intel_crtc->unpin_work = NULL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009264
Rob Clark45a066e2012-10-08 14:50:40 -05009265 if (work->event)
9266 drm_send_vblank_event(dev, intel_crtc->pipe, work->event);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009267
Daniel Vetter87b6b102014-05-15 15:33:46 +02009268 drm_crtc_vblank_put(crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01009269
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009270 spin_unlock_irqrestore(&dev->event_lock, flags);
9271
Daniel Vetter2c10d572012-12-20 21:24:07 +01009272 wake_up_all(&dev_priv->pending_flip_queue);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009273
9274 queue_work(dev_priv->wq, &work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07009275
9276 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009277}
9278
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009279void intel_finish_page_flip(struct drm_device *dev, int pipe)
9280{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009281 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009282 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
9283
Mario Kleiner49b14a52010-12-09 07:00:07 +01009284 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009285}
9286
9287void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
9288{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009289 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009290 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
9291
Mario Kleiner49b14a52010-12-09 07:00:07 +01009292 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009293}
9294
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009295/* Is 'a' after or equal to 'b'? */
9296static bool g4x_flip_count_after_eq(u32 a, u32 b)
9297{
9298 return !((a - b) & 0x80000000);
9299}
9300
9301static bool page_flip_finished(struct intel_crtc *crtc)
9302{
9303 struct drm_device *dev = crtc->base.dev;
9304 struct drm_i915_private *dev_priv = dev->dev_private;
9305
9306 /*
9307 * The relevant registers doen't exist on pre-ctg.
9308 * As the flip done interrupt doesn't trigger for mmio
9309 * flips on gmch platforms, a flip count check isn't
9310 * really needed there. But since ctg has the registers,
9311 * include it in the check anyway.
9312 */
9313 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
9314 return true;
9315
9316 /*
9317 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
9318 * used the same base address. In that case the mmio flip might
9319 * have completed, but the CS hasn't even executed the flip yet.
9320 *
9321 * A flip count check isn't enough as the CS might have updated
9322 * the base address just after start of vblank, but before we
9323 * managed to process the interrupt. This means we'd complete the
9324 * CS flip too soon.
9325 *
9326 * Combining both checks should get us a good enough result. It may
9327 * still happen that the CS flip has been executed, but has not
9328 * yet actually completed. But in case the base address is the same
9329 * anyway, we don't really care.
9330 */
9331 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
9332 crtc->unpin_work->gtt_offset &&
9333 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_GM45(crtc->pipe)),
9334 crtc->unpin_work->flip_count);
9335}
9336
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009337void intel_prepare_page_flip(struct drm_device *dev, int plane)
9338{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009339 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009340 struct intel_crtc *intel_crtc =
9341 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
9342 unsigned long flags;
9343
Chris Wilsone7d841c2012-12-03 11:36:30 +00009344 /* NB: An MMIO update of the plane base pointer will also
9345 * generate a page-flip completion irq, i.e. every modeset
9346 * is also accompanied by a spurious intel_prepare_page_flip().
9347 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009348 spin_lock_irqsave(&dev->event_lock, flags);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009349 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
Chris Wilsone7d841c2012-12-03 11:36:30 +00009350 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009351 spin_unlock_irqrestore(&dev->event_lock, flags);
9352}
9353
Robin Schroereba905b2014-05-18 02:24:50 +02009354static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
Chris Wilsone7d841c2012-12-03 11:36:30 +00009355{
9356 /* Ensure that the work item is consistent when activating it ... */
9357 smp_wmb();
9358 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
9359 /* and that it is marked active as soon as the irq could fire. */
9360 smp_wmb();
9361}
9362
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009363static int intel_gen2_queue_flip(struct drm_device *dev,
9364 struct drm_crtc *crtc,
9365 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009366 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009367 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009368 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009369{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009370 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009371 u32 flip_mask;
9372 int ret;
9373
Daniel Vetter6d90c952012-04-26 23:28:05 +02009374 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009375 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009376 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009377
9378 /* Can't queue multiple flips, so wait for the previous
9379 * one to finish before executing the next.
9380 */
9381 if (intel_crtc->plane)
9382 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
9383 else
9384 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009385 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
9386 intel_ring_emit(ring, MI_NOOP);
9387 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9388 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9389 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009390 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02009391 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +00009392
9393 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009394 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009395 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009396}
9397
9398static int intel_gen3_queue_flip(struct drm_device *dev,
9399 struct drm_crtc *crtc,
9400 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009401 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009402 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009403 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009404{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009405 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009406 u32 flip_mask;
9407 int ret;
9408
Daniel Vetter6d90c952012-04-26 23:28:05 +02009409 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009410 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009411 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009412
9413 if (intel_crtc->plane)
9414 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
9415 else
9416 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009417 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
9418 intel_ring_emit(ring, MI_NOOP);
9419 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
9420 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9421 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009422 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02009423 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009424
Chris Wilsone7d841c2012-12-03 11:36:30 +00009425 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009426 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009427 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009428}
9429
9430static int intel_gen4_queue_flip(struct drm_device *dev,
9431 struct drm_crtc *crtc,
9432 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009433 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009434 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009435 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009436{
9437 struct drm_i915_private *dev_priv = dev->dev_private;
9438 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9439 uint32_t pf, pipesrc;
9440 int ret;
9441
Daniel Vetter6d90c952012-04-26 23:28:05 +02009442 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009443 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009444 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009445
9446 /* i965+ uses the linear or tiled offsets from the
9447 * Display Registers (which do not change across a page-flip)
9448 * so we need only reprogram the base address.
9449 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02009450 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9451 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9452 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009453 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
Daniel Vetterc2c75132012-07-05 12:17:30 +02009454 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009455
9456 /* XXX Enabling the panel-fitter across page-flip is so far
9457 * untested on non-native modes, so ignore it for now.
9458 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
9459 */
9460 pf = 0;
9461 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009462 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009463
9464 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009465 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009466 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009467}
9468
9469static int intel_gen6_queue_flip(struct drm_device *dev,
9470 struct drm_crtc *crtc,
9471 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009472 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009473 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009474 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009475{
9476 struct drm_i915_private *dev_priv = dev->dev_private;
9477 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9478 uint32_t pf, pipesrc;
9479 int ret;
9480
Daniel Vetter6d90c952012-04-26 23:28:05 +02009481 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009482 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009483 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009484
Daniel Vetter6d90c952012-04-26 23:28:05 +02009485 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9486 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9487 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009488 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009489
Chris Wilson99d9acd2012-04-17 20:37:00 +01009490 /* Contrary to the suggestions in the documentation,
9491 * "Enable Panel Fitter" does not seem to be required when page
9492 * flipping with a non-native mode, and worse causes a normal
9493 * modeset to fail.
9494 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
9495 */
9496 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009497 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009498 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009499
9500 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009501 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009502 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009503}
9504
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009505static int intel_gen7_queue_flip(struct drm_device *dev,
9506 struct drm_crtc *crtc,
9507 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009508 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009509 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009510 uint32_t flags)
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009511{
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009512 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009513 uint32_t plane_bit = 0;
Chris Wilsonffe74d72013-08-26 20:58:12 +01009514 int len, ret;
9515
Robin Schroereba905b2014-05-18 02:24:50 +02009516 switch (intel_crtc->plane) {
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009517 case PLANE_A:
9518 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
9519 break;
9520 case PLANE_B:
9521 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
9522 break;
9523 case PLANE_C:
9524 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
9525 break;
9526 default:
9527 WARN_ONCE(1, "unknown plane in flip command\n");
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009528 return -ENODEV;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009529 }
9530
Chris Wilsonffe74d72013-08-26 20:58:12 +01009531 len = 4;
Damien Lespiauf4768282014-04-07 20:24:34 +01009532 if (ring->id == RCS) {
Chris Wilsonffe74d72013-08-26 20:58:12 +01009533 len += 6;
Damien Lespiauf4768282014-04-07 20:24:34 +01009534 /*
9535 * On Gen 8, SRM is now taking an extra dword to accommodate
9536 * 48bits addresses, and we need a NOOP for the batch size to
9537 * stay even.
9538 */
9539 if (IS_GEN8(dev))
9540 len += 2;
9541 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009542
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009543 /*
9544 * BSpec MI_DISPLAY_FLIP for IVB:
9545 * "The full packet must be contained within the same cache line."
9546 *
9547 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
9548 * cacheline, if we ever start emitting more commands before
9549 * the MI_DISPLAY_FLIP we may need to first emit everything else,
9550 * then do the cacheline alignment, and finally emit the
9551 * MI_DISPLAY_FLIP.
9552 */
9553 ret = intel_ring_cacheline_align(ring);
9554 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009555 return ret;
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009556
Chris Wilsonffe74d72013-08-26 20:58:12 +01009557 ret = intel_ring_begin(ring, len);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009558 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009559 return ret;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009560
Chris Wilsonffe74d72013-08-26 20:58:12 +01009561 /* Unmask the flip-done completion message. Note that the bspec says that
9562 * we should do this for both the BCS and RCS, and that we must not unmask
9563 * more than one flip event at any time (or ensure that one flip message
9564 * can be sent by waiting for flip-done prior to queueing new flips).
9565 * Experimentation says that BCS works despite DERRMR masking all
9566 * flip-done completion events and that unmasking all planes at once
9567 * for the RCS also doesn't appear to drop events. Setting the DERRMR
9568 * to zero does lead to lockups within MI_DISPLAY_FLIP.
9569 */
9570 if (ring->id == RCS) {
9571 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9572 intel_ring_emit(ring, DERRMR);
9573 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9574 DERRMR_PIPEB_PRI_FLIP_DONE |
9575 DERRMR_PIPEC_PRI_FLIP_DONE));
Damien Lespiauf4768282014-04-07 20:24:34 +01009576 if (IS_GEN8(dev))
9577 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9578 MI_SRM_LRM_GLOBAL_GTT);
9579 else
9580 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) |
9581 MI_SRM_LRM_GLOBAL_GTT);
Chris Wilsonffe74d72013-08-26 20:58:12 +01009582 intel_ring_emit(ring, DERRMR);
9583 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Damien Lespiauf4768282014-04-07 20:24:34 +01009584 if (IS_GEN8(dev)) {
9585 intel_ring_emit(ring, 0);
9586 intel_ring_emit(ring, MI_NOOP);
9587 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009588 }
9589
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009590 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02009591 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009592 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009593 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +00009594
9595 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009596 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009597 return 0;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009598}
9599
Sourab Gupta84c33a62014-06-02 16:47:17 +05309600static bool use_mmio_flip(struct intel_engine_cs *ring,
9601 struct drm_i915_gem_object *obj)
9602{
9603 /*
9604 * This is not being used for older platforms, because
9605 * non-availability of flip done interrupt forces us to use
9606 * CS flips. Older platforms derive flip done using some clever
9607 * tricks involving the flip_pending status bits and vblank irqs.
9608 * So using MMIO flips there would disrupt this mechanism.
9609 */
9610
Chris Wilson8e09bf82014-07-08 10:40:30 +01009611 if (ring == NULL)
9612 return true;
9613
Sourab Gupta84c33a62014-06-02 16:47:17 +05309614 if (INTEL_INFO(ring->dev)->gen < 5)
9615 return false;
9616
9617 if (i915.use_mmio_flip < 0)
9618 return false;
9619 else if (i915.use_mmio_flip > 0)
9620 return true;
Oscar Mateo14bf9932014-07-24 17:04:34 +01009621 else if (i915.enable_execlists)
9622 return true;
Sourab Gupta84c33a62014-06-02 16:47:17 +05309623 else
9624 return ring != obj->ring;
9625}
9626
9627static void intel_do_mmio_flip(struct intel_crtc *intel_crtc)
9628{
9629 struct drm_device *dev = intel_crtc->base.dev;
9630 struct drm_i915_private *dev_priv = dev->dev_private;
9631 struct intel_framebuffer *intel_fb =
9632 to_intel_framebuffer(intel_crtc->base.primary->fb);
9633 struct drm_i915_gem_object *obj = intel_fb->obj;
9634 u32 dspcntr;
9635 u32 reg;
9636
9637 intel_mark_page_flip_active(intel_crtc);
9638
9639 reg = DSPCNTR(intel_crtc->plane);
9640 dspcntr = I915_READ(reg);
9641
9642 if (INTEL_INFO(dev)->gen >= 4) {
9643 if (obj->tiling_mode != I915_TILING_NONE)
9644 dspcntr |= DISPPLANE_TILED;
9645 else
9646 dspcntr &= ~DISPPLANE_TILED;
9647 }
9648 I915_WRITE(reg, dspcntr);
9649
9650 I915_WRITE(DSPSURF(intel_crtc->plane),
9651 intel_crtc->unpin_work->gtt_offset);
9652 POSTING_READ(DSPSURF(intel_crtc->plane));
9653}
9654
9655static int intel_postpone_flip(struct drm_i915_gem_object *obj)
9656{
9657 struct intel_engine_cs *ring;
9658 int ret;
9659
9660 lockdep_assert_held(&obj->base.dev->struct_mutex);
9661
9662 if (!obj->last_write_seqno)
9663 return 0;
9664
9665 ring = obj->ring;
9666
9667 if (i915_seqno_passed(ring->get_seqno(ring, true),
9668 obj->last_write_seqno))
9669 return 0;
9670
9671 ret = i915_gem_check_olr(ring, obj->last_write_seqno);
9672 if (ret)
9673 return ret;
9674
9675 if (WARN_ON(!ring->irq_get(ring)))
9676 return 0;
9677
9678 return 1;
9679}
9680
9681void intel_notify_mmio_flip(struct intel_engine_cs *ring)
9682{
9683 struct drm_i915_private *dev_priv = to_i915(ring->dev);
9684 struct intel_crtc *intel_crtc;
9685 unsigned long irq_flags;
9686 u32 seqno;
9687
9688 seqno = ring->get_seqno(ring, false);
9689
9690 spin_lock_irqsave(&dev_priv->mmio_flip_lock, irq_flags);
9691 for_each_intel_crtc(ring->dev, intel_crtc) {
9692 struct intel_mmio_flip *mmio_flip;
9693
9694 mmio_flip = &intel_crtc->mmio_flip;
9695 if (mmio_flip->seqno == 0)
9696 continue;
9697
9698 if (ring->id != mmio_flip->ring_id)
9699 continue;
9700
9701 if (i915_seqno_passed(seqno, mmio_flip->seqno)) {
9702 intel_do_mmio_flip(intel_crtc);
9703 mmio_flip->seqno = 0;
9704 ring->irq_put(ring);
9705 }
9706 }
9707 spin_unlock_irqrestore(&dev_priv->mmio_flip_lock, irq_flags);
9708}
9709
9710static int intel_queue_mmio_flip(struct drm_device *dev,
9711 struct drm_crtc *crtc,
9712 struct drm_framebuffer *fb,
9713 struct drm_i915_gem_object *obj,
9714 struct intel_engine_cs *ring,
9715 uint32_t flags)
9716{
9717 struct drm_i915_private *dev_priv = dev->dev_private;
9718 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9719 unsigned long irq_flags;
9720 int ret;
9721
9722 if (WARN_ON(intel_crtc->mmio_flip.seqno))
9723 return -EBUSY;
9724
9725 ret = intel_postpone_flip(obj);
9726 if (ret < 0)
9727 return ret;
9728 if (ret == 0) {
9729 intel_do_mmio_flip(intel_crtc);
9730 return 0;
9731 }
9732
9733 spin_lock_irqsave(&dev_priv->mmio_flip_lock, irq_flags);
9734 intel_crtc->mmio_flip.seqno = obj->last_write_seqno;
9735 intel_crtc->mmio_flip.ring_id = obj->ring->id;
9736 spin_unlock_irqrestore(&dev_priv->mmio_flip_lock, irq_flags);
9737
9738 /*
9739 * Double check to catch cases where irq fired before
9740 * mmio flip data was ready
9741 */
9742 intel_notify_mmio_flip(obj->ring);
9743 return 0;
9744}
9745
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009746static int intel_default_queue_flip(struct drm_device *dev,
9747 struct drm_crtc *crtc,
9748 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009749 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009750 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009751 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009752{
9753 return -ENODEV;
9754}
9755
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009756static int intel_crtc_page_flip(struct drm_crtc *crtc,
9757 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009758 struct drm_pending_vblank_event *event,
9759 uint32_t page_flip_flags)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009760{
9761 struct drm_device *dev = crtc->dev;
9762 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperf4510a22014-04-01 15:22:40 -07009763 struct drm_framebuffer *old_fb = crtc->primary->fb;
Matt Roper2ff8fde2014-07-08 07:50:07 -07009764 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009765 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettera071fa02014-06-18 23:28:09 +02009766 enum pipe pipe = intel_crtc->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009767 struct intel_unpin_work *work;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009768 struct intel_engine_cs *ring;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009769 unsigned long flags;
Chris Wilson52e68632010-08-08 10:15:59 +01009770 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009771
Daisy Sunc76bb612014-08-11 11:08:38 -07009772 //trigger software GT busyness calculation
9773 gen8_flip_interrupt(dev);
9774
Matt Roper2ff8fde2014-07-08 07:50:07 -07009775 /*
9776 * drm_mode_page_flip_ioctl() should already catch this, but double
9777 * check to be safe. In the future we may enable pageflipping from
9778 * a disabled primary plane.
9779 */
9780 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
9781 return -EBUSY;
9782
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009783 /* Can't change pixel format via MI display flips. */
Matt Roperf4510a22014-04-01 15:22:40 -07009784 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009785 return -EINVAL;
9786
9787 /*
9788 * TILEOFF/LINOFF registers can't be changed via MI display flips.
9789 * Note that pitch changes could also affect these register.
9790 */
9791 if (INTEL_INFO(dev)->gen > 3 &&
Matt Roperf4510a22014-04-01 15:22:40 -07009792 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
9793 fb->pitches[0] != crtc->primary->fb->pitches[0]))
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009794 return -EINVAL;
9795
Chris Wilsonf900db42014-02-20 09:26:13 +00009796 if (i915_terminally_wedged(&dev_priv->gpu_error))
9797 goto out_hang;
9798
Daniel Vetterb14c5672013-09-19 12:18:32 +02009799 work = kzalloc(sizeof(*work), GFP_KERNEL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009800 if (work == NULL)
9801 return -ENOMEM;
9802
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009803 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009804 work->crtc = crtc;
Matt Roper2ff8fde2014-07-08 07:50:07 -07009805 work->old_fb_obj = intel_fb_obj(old_fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009806 INIT_WORK(&work->work, intel_unpin_work_fn);
9807
Daniel Vetter87b6b102014-05-15 15:33:46 +02009808 ret = drm_crtc_vblank_get(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009809 if (ret)
9810 goto free_work;
9811
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009812 /* We borrow the event spin lock for protecting unpin_work */
9813 spin_lock_irqsave(&dev->event_lock, flags);
9814 if (intel_crtc->unpin_work) {
9815 spin_unlock_irqrestore(&dev->event_lock, flags);
9816 kfree(work);
Daniel Vetter87b6b102014-05-15 15:33:46 +02009817 drm_crtc_vblank_put(crtc);
Chris Wilson468f0b42010-05-27 13:18:13 +01009818
9819 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009820 return -EBUSY;
9821 }
9822 intel_crtc->unpin_work = work;
9823 spin_unlock_irqrestore(&dev->event_lock, flags);
9824
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009825 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
9826 flush_workqueue(dev_priv->wq);
9827
Chris Wilson79158102012-05-23 11:13:58 +01009828 ret = i915_mutex_lock_interruptible(dev);
9829 if (ret)
9830 goto cleanup;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009831
Jesse Barnes75dfca82010-02-10 15:09:44 -08009832 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00009833 drm_gem_object_reference(&work->old_fb_obj->base);
9834 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009835
Matt Roperf4510a22014-04-01 15:22:40 -07009836 crtc->primary->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01009837
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009838 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009839
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01009840 work->enable_stall_check = true;
9841
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009842 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +02009843 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009844
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009845 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
Daniel Vettera071fa02014-06-18 23:28:09 +02009846 work->flip_count = I915_READ(PIPE_FLIPCOUNT_GM45(pipe)) + 1;
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009847
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009848 if (IS_VALLEYVIEW(dev)) {
9849 ring = &dev_priv->ring[BCS];
Chris Wilson8e09bf82014-07-08 10:40:30 +01009850 if (obj->tiling_mode != work->old_fb_obj->tiling_mode)
9851 /* vlv: DISPLAY_FLIP fails to change tiling */
9852 ring = NULL;
Chris Wilson2a92d5b2014-07-08 10:40:29 +01009853 } else if (IS_IVYBRIDGE(dev)) {
9854 ring = &dev_priv->ring[BCS];
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009855 } else if (INTEL_INFO(dev)->gen >= 7) {
9856 ring = obj->ring;
9857 if (ring == NULL || ring->id != RCS)
9858 ring = &dev_priv->ring[BCS];
9859 } else {
9860 ring = &dev_priv->ring[RCS];
9861 }
9862
9863 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009864 if (ret)
9865 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009866
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009867 work->gtt_offset =
9868 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset;
9869
Sourab Gupta84c33a62014-06-02 16:47:17 +05309870 if (use_mmio_flip(ring, obj))
9871 ret = intel_queue_mmio_flip(dev, crtc, fb, obj, ring,
9872 page_flip_flags);
9873 else
9874 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, ring,
9875 page_flip_flags);
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009876 if (ret)
9877 goto cleanup_unpin;
9878
Daniel Vettera071fa02014-06-18 23:28:09 +02009879 i915_gem_track_fb(work->old_fb_obj, obj,
9880 INTEL_FRONTBUFFER_PRIMARY(pipe));
9881
Chris Wilson7782de32011-07-08 12:22:41 +01009882 intel_disable_fbc(dev);
Daniel Vetterf99d7062014-06-19 16:01:59 +02009883 intel_frontbuffer_flip_prepare(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009884 mutex_unlock(&dev->struct_mutex);
9885
Jesse Barnese5510fa2010-07-01 16:48:37 -07009886 trace_i915_flip_request(intel_crtc->plane, obj);
9887
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009888 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01009889
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009890cleanup_unpin:
9891 intel_unpin_fb_obj(obj);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009892cleanup_pending:
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009893 atomic_dec(&intel_crtc->unpin_work_count);
Matt Roperf4510a22014-04-01 15:22:40 -07009894 crtc->primary->fb = old_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00009895 drm_gem_object_unreference(&work->old_fb_obj->base);
9896 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01009897 mutex_unlock(&dev->struct_mutex);
9898
Chris Wilson79158102012-05-23 11:13:58 +01009899cleanup:
Chris Wilson96b099f2010-06-07 14:03:04 +01009900 spin_lock_irqsave(&dev->event_lock, flags);
9901 intel_crtc->unpin_work = NULL;
9902 spin_unlock_irqrestore(&dev->event_lock, flags);
9903
Daniel Vetter87b6b102014-05-15 15:33:46 +02009904 drm_crtc_vblank_put(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009905free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01009906 kfree(work);
9907
Chris Wilsonf900db42014-02-20 09:26:13 +00009908 if (ret == -EIO) {
9909out_hang:
9910 intel_crtc_wait_for_pending_flips(crtc);
9911 ret = intel_pipe_set_base(crtc, crtc->x, crtc->y, fb);
9912 if (ret == 0 && event)
Daniel Vettera071fa02014-06-18 23:28:09 +02009913 drm_send_vblank_event(dev, pipe, event);
Chris Wilsonf900db42014-02-20 09:26:13 +00009914 }
Chris Wilson96b099f2010-06-07 14:03:04 +01009915 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009916}
9917
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009918static struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009919 .mode_set_base_atomic = intel_pipe_set_base_atomic,
9920 .load_lut = intel_crtc_load_lut,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009921};
9922
Daniel Vetter9a935852012-07-05 22:34:27 +02009923/**
9924 * intel_modeset_update_staged_output_state
9925 *
9926 * Updates the staged output configuration state, e.g. after we've read out the
9927 * current hw state.
9928 */
9929static void intel_modeset_update_staged_output_state(struct drm_device *dev)
9930{
Ville Syrjälä76688512014-01-10 11:28:06 +02009931 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009932 struct intel_encoder *encoder;
9933 struct intel_connector *connector;
9934
9935 list_for_each_entry(connector, &dev->mode_config.connector_list,
9936 base.head) {
9937 connector->new_encoder =
9938 to_intel_encoder(connector->base.encoder);
9939 }
9940
Damien Lespiaub2784e12014-08-05 11:29:37 +01009941 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +02009942 encoder->new_crtc =
9943 to_intel_crtc(encoder->base.crtc);
9944 }
Ville Syrjälä76688512014-01-10 11:28:06 +02009945
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009946 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009947 crtc->new_enabled = crtc->base.enabled;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +02009948
9949 if (crtc->new_enabled)
9950 crtc->new_config = &crtc->config;
9951 else
9952 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +02009953 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009954}
9955
9956/**
9957 * intel_modeset_commit_output_state
9958 *
9959 * This function copies the stage display pipe configuration to the real one.
9960 */
9961static void intel_modeset_commit_output_state(struct drm_device *dev)
9962{
Ville Syrjälä76688512014-01-10 11:28:06 +02009963 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009964 struct intel_encoder *encoder;
9965 struct intel_connector *connector;
9966
9967 list_for_each_entry(connector, &dev->mode_config.connector_list,
9968 base.head) {
9969 connector->base.encoder = &connector->new_encoder->base;
9970 }
9971
Damien Lespiaub2784e12014-08-05 11:29:37 +01009972 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +02009973 encoder->base.crtc = &encoder->new_crtc->base;
9974 }
Ville Syrjälä76688512014-01-10 11:28:06 +02009975
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009976 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009977 crtc->base.enabled = crtc->new_enabled;
9978 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009979}
9980
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009981static void
Robin Schroereba905b2014-05-18 02:24:50 +02009982connected_sink_compute_bpp(struct intel_connector *connector,
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009983 struct intel_crtc_config *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009984{
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009985 int bpp = pipe_config->pipe_bpp;
9986
9987 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
9988 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03009989 connector->base.name);
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009990
9991 /* Don't use an invalid EDID bpc value */
9992 if (connector->base.display_info.bpc &&
9993 connector->base.display_info.bpc * 3 < bpp) {
9994 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
9995 bpp, connector->base.display_info.bpc*3);
9996 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
9997 }
9998
9999 /* Clamp bpp to 8 on screens without EDID 1.4 */
10000 if (connector->base.display_info.bpc == 0 && bpp > 24) {
10001 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
10002 bpp);
10003 pipe_config->pipe_bpp = 24;
10004 }
10005}
10006
10007static int
10008compute_baseline_pipe_bpp(struct intel_crtc *crtc,
10009 struct drm_framebuffer *fb,
10010 struct intel_crtc_config *pipe_config)
10011{
10012 struct drm_device *dev = crtc->base.dev;
10013 struct intel_connector *connector;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010014 int bpp;
10015
Daniel Vetterd42264b2013-03-28 16:38:08 +010010016 switch (fb->pixel_format) {
10017 case DRM_FORMAT_C8:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010018 bpp = 8*3; /* since we go through a colormap */
10019 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +010010020 case DRM_FORMAT_XRGB1555:
10021 case DRM_FORMAT_ARGB1555:
10022 /* checked in intel_framebuffer_init already */
10023 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
10024 return -EINVAL;
10025 case DRM_FORMAT_RGB565:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010026 bpp = 6*3; /* min is 18bpp */
10027 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +010010028 case DRM_FORMAT_XBGR8888:
10029 case DRM_FORMAT_ABGR8888:
10030 /* checked in intel_framebuffer_init already */
10031 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
10032 return -EINVAL;
10033 case DRM_FORMAT_XRGB8888:
10034 case DRM_FORMAT_ARGB8888:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010035 bpp = 8*3;
10036 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +010010037 case DRM_FORMAT_XRGB2101010:
10038 case DRM_FORMAT_ARGB2101010:
10039 case DRM_FORMAT_XBGR2101010:
10040 case DRM_FORMAT_ABGR2101010:
10041 /* checked in intel_framebuffer_init already */
10042 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
Daniel Vetterbaba1332013-03-27 00:45:00 +010010043 return -EINVAL;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010044 bpp = 10*3;
10045 break;
Daniel Vetterbaba1332013-03-27 00:45:00 +010010046 /* TODO: gen4+ supports 16 bpc floating point, too. */
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010047 default:
10048 DRM_DEBUG_KMS("unsupported depth\n");
10049 return -EINVAL;
10050 }
10051
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010052 pipe_config->pipe_bpp = bpp;
10053
10054 /* Clamp display bpp to EDID value */
10055 list_for_each_entry(connector, &dev->mode_config.connector_list,
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010056 base.head) {
Daniel Vetter1b829e02013-06-02 13:26:24 +020010057 if (!connector->new_encoder ||
10058 connector->new_encoder->new_crtc != crtc)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010059 continue;
10060
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010061 connected_sink_compute_bpp(connector, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010062 }
10063
10064 return bpp;
10065}
10066
Daniel Vetter644db712013-09-19 14:53:58 +020010067static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
10068{
10069 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
10070 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +010010071 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +020010072 mode->crtc_hdisplay, mode->crtc_hsync_start,
10073 mode->crtc_hsync_end, mode->crtc_htotal,
10074 mode->crtc_vdisplay, mode->crtc_vsync_start,
10075 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
10076}
10077
Daniel Vetterc0b03412013-05-28 12:05:54 +020010078static void intel_dump_pipe_config(struct intel_crtc *crtc,
10079 struct intel_crtc_config *pipe_config,
10080 const char *context)
10081{
10082 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
10083 context, pipe_name(crtc->pipe));
10084
10085 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
10086 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
10087 pipe_config->pipe_bpp, pipe_config->dither);
10088 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
10089 pipe_config->has_pch_encoder,
10090 pipe_config->fdi_lanes,
10091 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
10092 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
10093 pipe_config->fdi_m_n.tu);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010094 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
10095 pipe_config->has_dp_encoder,
10096 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
10097 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
10098 pipe_config->dp_m_n.tu);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010099
10100 DRM_DEBUG_KMS("dp: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n",
10101 pipe_config->has_dp_encoder,
10102 pipe_config->dp_m2_n2.gmch_m,
10103 pipe_config->dp_m2_n2.gmch_n,
10104 pipe_config->dp_m2_n2.link_m,
10105 pipe_config->dp_m2_n2.link_n,
10106 pipe_config->dp_m2_n2.tu);
10107
Daniel Vetterc0b03412013-05-28 12:05:54 +020010108 DRM_DEBUG_KMS("requested mode:\n");
10109 drm_mode_debug_printmodeline(&pipe_config->requested_mode);
10110 DRM_DEBUG_KMS("adjusted mode:\n");
10111 drm_mode_debug_printmodeline(&pipe_config->adjusted_mode);
Daniel Vetter644db712013-09-19 14:53:58 +020010112 intel_dump_crtc_timings(&pipe_config->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
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010169static struct intel_crtc_config *
10170intel_modeset_pipe_config(struct drm_crtc *crtc,
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010171 struct drm_framebuffer *fb,
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010172 struct drm_display_mode *mode)
Daniel Vetter7758a112012-07-08 19:40:39 +020010173{
10174 struct drm_device *dev = crtc->dev;
Daniel Vetter7758a112012-07-08 19:40:39 +020010175 struct intel_encoder *encoder;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010176 struct intel_crtc_config *pipe_config;
Daniel Vettere29c22c2013-02-21 00:00:16 +010010177 int plane_bpp, ret = -EINVAL;
10178 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +020010179
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010180 if (!check_encoder_cloning(to_intel_crtc(crtc))) {
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010181 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
10182 return ERR_PTR(-EINVAL);
10183 }
10184
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010185 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
10186 if (!pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +020010187 return ERR_PTR(-ENOMEM);
10188
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010189 drm_mode_copy(&pipe_config->adjusted_mode, mode);
10190 drm_mode_copy(&pipe_config->requested_mode, mode);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010191
Daniel Vettere143a212013-07-04 12:01:15 +020010192 pipe_config->cpu_transcoder =
10193 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010194 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010195
Imre Deak2960bc92013-07-30 13:36:32 +030010196 /*
10197 * Sanitize sync polarity flags based on requested ones. If neither
10198 * positive or negative polarity is requested, treat this as meaning
10199 * negative polarity.
10200 */
10201 if (!(pipe_config->adjusted_mode.flags &
10202 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
10203 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
10204
10205 if (!(pipe_config->adjusted_mode.flags &
10206 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
10207 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
10208
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010209 /* Compute a starting value for pipe_config->pipe_bpp taking the source
10210 * plane pixel format and any sink constraints into account. Returns the
10211 * source plane bpp so that dithering can be selected on mismatches
10212 * after encoders and crtc also have had their say. */
10213 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
10214 fb, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010215 if (plane_bpp < 0)
10216 goto fail;
10217
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030010218 /*
10219 * Determine the real pipe dimensions. Note that stereo modes can
10220 * increase the actual pipe size due to the frame doubling and
10221 * insertion of additional space for blanks between the frame. This
10222 * is stored in the crtc timings. We use the requested mode to do this
10223 * computation to clearly distinguish it from the adjusted mode, which
10224 * can be changed by the connectors in the below retry loop.
10225 */
10226 drm_mode_set_crtcinfo(&pipe_config->requested_mode, CRTC_STEREO_DOUBLE);
10227 pipe_config->pipe_src_w = pipe_config->requested_mode.crtc_hdisplay;
10228 pipe_config->pipe_src_h = pipe_config->requested_mode.crtc_vdisplay;
10229
Daniel Vettere29c22c2013-02-21 00:00:16 +010010230encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +020010231 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +020010232 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +020010233 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +020010234
Daniel Vetter135c81b2013-07-21 21:37:09 +020010235 /* Fill in default crtc timings, allow encoders to overwrite them. */
Damien Lespiau6ce70f52013-09-25 16:45:38 +010010236 drm_mode_set_crtcinfo(&pipe_config->adjusted_mode, CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +020010237
Daniel Vetter7758a112012-07-08 19:40:39 +020010238 /* Pass our mode to the connectors and the CRTC to give them a chance to
10239 * adjust it according to limitations or connector properties, and also
10240 * a chance to reject the mode entirely.
10241 */
Damien Lespiaub2784e12014-08-05 11:29:37 +010010242 for_each_intel_encoder(dev, encoder) {
Daniel Vetter7758a112012-07-08 19:40:39 +020010243
10244 if (&encoder->new_crtc->base != crtc)
10245 continue;
Daniel Vetter7ae89232013-03-27 00:44:52 +010010246
Daniel Vetterefea6e82013-07-21 21:36:59 +020010247 if (!(encoder->compute_config(encoder, pipe_config))) {
10248 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +020010249 goto fail;
10250 }
10251 }
10252
Daniel Vetterff9a6752013-06-01 17:16:21 +020010253 /* Set default port clock if not overwritten by the encoder. Needs to be
10254 * done afterwards in case the encoder adjusts the mode. */
10255 if (!pipe_config->port_clock)
Damien Lespiau241bfc32013-09-25 16:45:37 +010010256 pipe_config->port_clock = pipe_config->adjusted_mode.crtc_clock
10257 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +020010258
Daniel Vettera43f6e02013-06-07 23:10:32 +020010259 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010010260 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +020010261 DRM_DEBUG_KMS("CRTC fixup failed\n");
10262 goto fail;
10263 }
Daniel Vettere29c22c2013-02-21 00:00:16 +010010264
10265 if (ret == RETRY) {
10266 if (WARN(!retry, "loop in pipe configuration computation\n")) {
10267 ret = -EINVAL;
10268 goto fail;
10269 }
10270
10271 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
10272 retry = false;
10273 goto encoder_retry;
10274 }
10275
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010276 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
10277 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
10278 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
10279
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010280 return pipe_config;
Daniel Vetter7758a112012-07-08 19:40:39 +020010281fail:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010282 kfree(pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010010283 return ERR_PTR(ret);
Daniel Vetter7758a112012-07-08 19:40:39 +020010284}
10285
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010286/* Computes which crtcs are affected and sets the relevant bits in the mask. For
10287 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
10288static void
10289intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
10290 unsigned *prepare_pipes, unsigned *disable_pipes)
10291{
10292 struct intel_crtc *intel_crtc;
10293 struct drm_device *dev = crtc->dev;
10294 struct intel_encoder *encoder;
10295 struct intel_connector *connector;
10296 struct drm_crtc *tmp_crtc;
10297
10298 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
10299
10300 /* Check which crtcs have changed outputs connected to them, these need
10301 * to be part of the prepare_pipes mask. We don't (yet) support global
10302 * modeset across multiple crtcs, so modeset_pipes will only have one
10303 * bit set at most. */
10304 list_for_each_entry(connector, &dev->mode_config.connector_list,
10305 base.head) {
10306 if (connector->base.encoder == &connector->new_encoder->base)
10307 continue;
10308
10309 if (connector->base.encoder) {
10310 tmp_crtc = connector->base.encoder->crtc;
10311
10312 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
10313 }
10314
10315 if (connector->new_encoder)
10316 *prepare_pipes |=
10317 1 << connector->new_encoder->new_crtc->pipe;
10318 }
10319
Damien Lespiaub2784e12014-08-05 11:29:37 +010010320 for_each_intel_encoder(dev, encoder) {
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010321 if (encoder->base.crtc == &encoder->new_crtc->base)
10322 continue;
10323
10324 if (encoder->base.crtc) {
10325 tmp_crtc = encoder->base.crtc;
10326
10327 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
10328 }
10329
10330 if (encoder->new_crtc)
10331 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
10332 }
10333
Ville Syrjälä76688512014-01-10 11:28:06 +020010334 /* Check for pipes that will be enabled/disabled ... */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010335 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010336 if (intel_crtc->base.enabled == intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010337 continue;
10338
Ville Syrjälä76688512014-01-10 11:28:06 +020010339 if (!intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010340 *disable_pipes |= 1 << intel_crtc->pipe;
Ville Syrjälä76688512014-01-10 11:28:06 +020010341 else
10342 *prepare_pipes |= 1 << intel_crtc->pipe;
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010343 }
10344
10345
10346 /* set_mode is also used to update properties on life display pipes. */
10347 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä76688512014-01-10 11:28:06 +020010348 if (intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010349 *prepare_pipes |= 1 << intel_crtc->pipe;
10350
Daniel Vetterb6c51642013-04-12 18:48:43 +020010351 /*
10352 * For simplicity do a full modeset on any pipe where the output routing
10353 * changed. We could be more clever, but that would require us to be
10354 * more careful with calling the relevant encoder->mode_set functions.
10355 */
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010356 if (*prepare_pipes)
10357 *modeset_pipes = *prepare_pipes;
10358
10359 /* ... and mask these out. */
10360 *modeset_pipes &= ~(*disable_pipes);
10361 *prepare_pipes &= ~(*disable_pipes);
Daniel Vetterb6c51642013-04-12 18:48:43 +020010362
10363 /*
10364 * HACK: We don't (yet) fully support global modesets. intel_set_config
10365 * obies this rule, but the modeset restore mode of
10366 * intel_modeset_setup_hw_state does not.
10367 */
10368 *modeset_pipes &= 1 << intel_crtc->pipe;
10369 *prepare_pipes &= 1 << intel_crtc->pipe;
Daniel Vettere3641d32013-04-11 19:49:07 +020010370
10371 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
10372 *modeset_pipes, *prepare_pipes, *disable_pipes);
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010373}
10374
Daniel Vetterea9d7582012-07-10 10:42:52 +020010375static bool intel_crtc_in_use(struct drm_crtc *crtc)
10376{
10377 struct drm_encoder *encoder;
10378 struct drm_device *dev = crtc->dev;
10379
10380 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
10381 if (encoder->crtc == crtc)
10382 return true;
10383
10384 return false;
10385}
10386
10387static void
10388intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
10389{
10390 struct intel_encoder *intel_encoder;
10391 struct intel_crtc *intel_crtc;
10392 struct drm_connector *connector;
10393
Damien Lespiaub2784e12014-08-05 11:29:37 +010010394 for_each_intel_encoder(dev, intel_encoder) {
Daniel Vetterea9d7582012-07-10 10:42:52 +020010395 if (!intel_encoder->base.crtc)
10396 continue;
10397
10398 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
10399
10400 if (prepare_pipes & (1 << intel_crtc->pipe))
10401 intel_encoder->connectors_active = false;
10402 }
10403
10404 intel_modeset_commit_output_state(dev);
10405
Ville Syrjälä76688512014-01-10 11:28:06 +020010406 /* Double check state. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010407 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010408 WARN_ON(intel_crtc->base.enabled != intel_crtc_in_use(&intel_crtc->base));
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010409 WARN_ON(intel_crtc->new_config &&
10410 intel_crtc->new_config != &intel_crtc->config);
10411 WARN_ON(intel_crtc->base.enabled != !!intel_crtc->new_config);
Daniel Vetterea9d7582012-07-10 10:42:52 +020010412 }
10413
10414 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
10415 if (!connector->encoder || !connector->encoder->crtc)
10416 continue;
10417
10418 intel_crtc = to_intel_crtc(connector->encoder->crtc);
10419
10420 if (prepare_pipes & (1 << intel_crtc->pipe)) {
Daniel Vetter68d34722012-09-06 22:08:35 +020010421 struct drm_property *dpms_property =
10422 dev->mode_config.dpms_property;
10423
Daniel Vetterea9d7582012-07-10 10:42:52 +020010424 connector->dpms = DRM_MODE_DPMS_ON;
Rob Clark662595d2012-10-11 20:36:04 -050010425 drm_object_property_set_value(&connector->base,
Daniel Vetter68d34722012-09-06 22:08:35 +020010426 dpms_property,
10427 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +020010428
10429 intel_encoder = to_intel_encoder(connector->encoder);
10430 intel_encoder->connectors_active = true;
10431 }
10432 }
10433
10434}
10435
Ville Syrjälä3bd26262013-09-06 23:29:02 +030010436static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010437{
Ville Syrjälä3bd26262013-09-06 23:29:02 +030010438 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010439
10440 if (clock1 == clock2)
10441 return true;
10442
10443 if (!clock1 || !clock2)
10444 return false;
10445
10446 diff = abs(clock1 - clock2);
10447
10448 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
10449 return true;
10450
10451 return false;
10452}
10453
Daniel Vetter25c5b262012-07-08 22:08:04 +020010454#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
10455 list_for_each_entry((intel_crtc), \
10456 &(dev)->mode_config.crtc_list, \
10457 base.head) \
Daniel Vetter0973f182013-04-19 11:25:33 +020010458 if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +020010459
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010460static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020010461intel_pipe_config_compare(struct drm_device *dev,
10462 struct intel_crtc_config *current_config,
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010463 struct intel_crtc_config *pipe_config)
10464{
Daniel Vetter66e985c2013-06-05 13:34:20 +020010465#define PIPE_CONF_CHECK_X(name) \
10466 if (current_config->name != pipe_config->name) { \
10467 DRM_ERROR("mismatch in " #name " " \
10468 "(expected 0x%08x, found 0x%08x)\n", \
10469 current_config->name, \
10470 pipe_config->name); \
10471 return false; \
10472 }
10473
Daniel Vetter08a24032013-04-19 11:25:34 +020010474#define PIPE_CONF_CHECK_I(name) \
10475 if (current_config->name != pipe_config->name) { \
10476 DRM_ERROR("mismatch in " #name " " \
10477 "(expected %i, found %i)\n", \
10478 current_config->name, \
10479 pipe_config->name); \
10480 return false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +010010481 }
10482
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010483/* This is required for BDW+ where there is only one set of registers for
10484 * switching between high and low RR.
10485 * This macro can be used whenever a comparison has to be made between one
10486 * hw state and multiple sw state variables.
10487 */
10488#define PIPE_CONF_CHECK_I_ALT(name, alt_name) \
10489 if ((current_config->name != pipe_config->name) && \
10490 (current_config->alt_name != pipe_config->name)) { \
10491 DRM_ERROR("mismatch in " #name " " \
10492 "(expected %i or %i, found %i)\n", \
10493 current_config->name, \
10494 current_config->alt_name, \
10495 pipe_config->name); \
10496 return false; \
10497 }
10498
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010499#define PIPE_CONF_CHECK_FLAGS(name, mask) \
10500 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Jesse Barnes6f024882013-07-01 10:19:09 -070010501 DRM_ERROR("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010502 "(expected %i, found %i)\n", \
10503 current_config->name & (mask), \
10504 pipe_config->name & (mask)); \
10505 return false; \
10506 }
10507
Ville Syrjälä5e550652013-09-06 23:29:07 +030010508#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
10509 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
10510 DRM_ERROR("mismatch in " #name " " \
10511 "(expected %i, found %i)\n", \
10512 current_config->name, \
10513 pipe_config->name); \
10514 return false; \
10515 }
10516
Daniel Vetterbb760062013-06-06 14:55:52 +020010517#define PIPE_CONF_QUIRK(quirk) \
10518 ((current_config->quirks | pipe_config->quirks) & (quirk))
10519
Daniel Vettereccb1402013-05-22 00:50:22 +020010520 PIPE_CONF_CHECK_I(cpu_transcoder);
10521
Daniel Vetter08a24032013-04-19 11:25:34 +020010522 PIPE_CONF_CHECK_I(has_pch_encoder);
10523 PIPE_CONF_CHECK_I(fdi_lanes);
Daniel Vetter72419202013-04-04 13:28:53 +020010524 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
10525 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
10526 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
10527 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
10528 PIPE_CONF_CHECK_I(fdi_m_n.tu);
Daniel Vetter08a24032013-04-19 11:25:34 +020010529
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010530 PIPE_CONF_CHECK_I(has_dp_encoder);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010531
10532 if (INTEL_INFO(dev)->gen < 8) {
10533 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
10534 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
10535 PIPE_CONF_CHECK_I(dp_m_n.link_m);
10536 PIPE_CONF_CHECK_I(dp_m_n.link_n);
10537 PIPE_CONF_CHECK_I(dp_m_n.tu);
10538
10539 if (current_config->has_drrs) {
10540 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_m);
10541 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_n);
10542 PIPE_CONF_CHECK_I(dp_m2_n2.link_m);
10543 PIPE_CONF_CHECK_I(dp_m2_n2.link_n);
10544 PIPE_CONF_CHECK_I(dp_m2_n2.tu);
10545 }
10546 } else {
10547 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_m, dp_m2_n2.gmch_m);
10548 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_n, dp_m2_n2.gmch_n);
10549 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_m, dp_m2_n2.link_m);
10550 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_n, dp_m2_n2.link_n);
10551 PIPE_CONF_CHECK_I_ALT(dp_m_n.tu, dp_m2_n2.tu);
10552 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010553
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010554 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hdisplay);
10555 PIPE_CONF_CHECK_I(adjusted_mode.crtc_htotal);
10556 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_start);
10557 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_end);
10558 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_start);
10559 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_end);
10560
10561 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vdisplay);
10562 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vtotal);
10563 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_start);
10564 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_end);
10565 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_start);
10566 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_end);
10567
Daniel Vetterc93f54c2013-06-27 19:47:19 +020010568 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6897b4b2014-04-24 23:54:47 +020010569 PIPE_CONF_CHECK_I(has_hdmi_sink);
Daniel Vetterb5a9fa02014-04-24 23:54:49 +020010570 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
10571 IS_VALLEYVIEW(dev))
10572 PIPE_CONF_CHECK_I(limited_color_range);
Daniel Vetter6c49f242013-06-06 12:45:25 +020010573
Daniel Vetter9ed109a2014-04-24 23:54:52 +020010574 PIPE_CONF_CHECK_I(has_audio);
10575
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010576 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
10577 DRM_MODE_FLAG_INTERLACE);
10578
Daniel Vetterbb760062013-06-06 14:55:52 +020010579 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
10580 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
10581 DRM_MODE_FLAG_PHSYNC);
10582 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
10583 DRM_MODE_FLAG_NHSYNC);
10584 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
10585 DRM_MODE_FLAG_PVSYNC);
10586 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
10587 DRM_MODE_FLAG_NVSYNC);
10588 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010589
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010590 PIPE_CONF_CHECK_I(pipe_src_w);
10591 PIPE_CONF_CHECK_I(pipe_src_h);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010592
Daniel Vetter99535992014-04-13 12:00:33 +020010593 /*
10594 * FIXME: BIOS likes to set up a cloned config with lvds+external
10595 * screen. Since we don't yet re-compute the pipe config when moving
10596 * just the lvds port away to another pipe the sw tracking won't match.
10597 *
10598 * Proper atomic modesets with recomputed global state will fix this.
10599 * Until then just don't check gmch state for inherited modes.
10600 */
10601 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE)) {
10602 PIPE_CONF_CHECK_I(gmch_pfit.control);
10603 /* pfit ratios are autocomputed by the hw on gen4+ */
10604 if (INTEL_INFO(dev)->gen < 4)
10605 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
10606 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
10607 }
10608
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010609 PIPE_CONF_CHECK_I(pch_pfit.enabled);
10610 if (current_config->pch_pfit.enabled) {
10611 PIPE_CONF_CHECK_I(pch_pfit.pos);
10612 PIPE_CONF_CHECK_I(pch_pfit.size);
10613 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020010614
Jesse Barnese59150d2014-01-07 13:30:45 -080010615 /* BDW+ don't expose a synchronous way to read the state */
10616 if (IS_HASWELL(dev))
10617 PIPE_CONF_CHECK_I(ips_enabled);
Paulo Zanoni42db64e2013-05-31 16:33:22 -030010618
Ville Syrjälä282740f2013-09-04 18:30:03 +030010619 PIPE_CONF_CHECK_I(double_wide);
10620
Daniel Vetter26804af2014-06-25 22:01:55 +030010621 PIPE_CONF_CHECK_X(ddi_pll_sel);
10622
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010623 PIPE_CONF_CHECK_I(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010624 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +020010625 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010626 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
10627 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterd452c5b2014-07-04 11:27:39 -030010628 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010629
Ville Syrjälä42571ae2013-09-06 23:29:00 +030010630 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
10631 PIPE_CONF_CHECK_I(pipe_bpp);
10632
Jesse Barnesa9a7e982014-01-20 14:18:04 -080010633 PIPE_CONF_CHECK_CLOCK_FUZZY(adjusted_mode.crtc_clock);
10634 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
Ville Syrjälä5e550652013-09-06 23:29:07 +030010635
Daniel Vetter66e985c2013-06-05 13:34:20 +020010636#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +020010637#undef PIPE_CONF_CHECK_I
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010638#undef PIPE_CONF_CHECK_I_ALT
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010639#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +030010640#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +020010641#undef PIPE_CONF_QUIRK
Daniel Vetter627eb5a2013-04-29 19:33:42 +020010642
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010643 return true;
10644}
10645
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010646static void
10647check_connector_state(struct drm_device *dev)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010648{
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010649 struct intel_connector *connector;
10650
10651 list_for_each_entry(connector, &dev->mode_config.connector_list,
10652 base.head) {
10653 /* This also checks the encoder/connector hw state with the
10654 * ->get_hw_state callbacks. */
10655 intel_connector_check_state(connector);
10656
10657 WARN(&connector->new_encoder->base != connector->base.encoder,
10658 "connector's staged encoder doesn't match current encoder\n");
10659 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010660}
10661
10662static void
10663check_encoder_state(struct drm_device *dev)
10664{
10665 struct intel_encoder *encoder;
10666 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010667
Damien Lespiaub2784e12014-08-05 11:29:37 +010010668 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010669 bool enabled = false;
10670 bool active = false;
10671 enum pipe pipe, tracked_pipe;
10672
10673 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
10674 encoder->base.base.id,
Jani Nikula8e329a02014-06-03 14:56:21 +030010675 encoder->base.name);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010676
10677 WARN(&encoder->new_crtc->base != encoder->base.crtc,
10678 "encoder's stage crtc doesn't match current crtc\n");
10679 WARN(encoder->connectors_active && !encoder->base.crtc,
10680 "encoder's active_connectors set, but no crtc\n");
10681
10682 list_for_each_entry(connector, &dev->mode_config.connector_list,
10683 base.head) {
10684 if (connector->base.encoder != &encoder->base)
10685 continue;
10686 enabled = true;
10687 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
10688 active = true;
10689 }
Dave Airlie0e32b392014-05-02 14:02:48 +100010690 /*
10691 * for MST connectors if we unplug the connector is gone
10692 * away but the encoder is still connected to a crtc
10693 * until a modeset happens in response to the hotplug.
10694 */
10695 if (!enabled && encoder->base.encoder_type == DRM_MODE_ENCODER_DPMST)
10696 continue;
10697
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010698 WARN(!!encoder->base.crtc != enabled,
10699 "encoder's enabled state mismatch "
10700 "(expected %i, found %i)\n",
10701 !!encoder->base.crtc, enabled);
10702 WARN(active && !encoder->base.crtc,
10703 "active encoder with no crtc\n");
10704
10705 WARN(encoder->connectors_active != active,
10706 "encoder's computed active state doesn't match tracked active state "
10707 "(expected %i, found %i)\n", active, encoder->connectors_active);
10708
10709 active = encoder->get_hw_state(encoder, &pipe);
10710 WARN(active != encoder->connectors_active,
10711 "encoder's hw state doesn't match sw tracking "
10712 "(expected %i, found %i)\n",
10713 encoder->connectors_active, active);
10714
10715 if (!encoder->base.crtc)
10716 continue;
10717
10718 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
10719 WARN(active && pipe != tracked_pipe,
10720 "active encoder's pipe doesn't match"
10721 "(expected %i, found %i)\n",
10722 tracked_pipe, pipe);
10723
10724 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010725}
10726
10727static void
10728check_crtc_state(struct drm_device *dev)
10729{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010730 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010731 struct intel_crtc *crtc;
10732 struct intel_encoder *encoder;
10733 struct intel_crtc_config pipe_config;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010734
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010735 for_each_intel_crtc(dev, crtc) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010736 bool enabled = false;
10737 bool active = false;
10738
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010739 memset(&pipe_config, 0, sizeof(pipe_config));
10740
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010741 DRM_DEBUG_KMS("[CRTC:%d]\n",
10742 crtc->base.base.id);
10743
10744 WARN(crtc->active && !crtc->base.enabled,
10745 "active crtc, but not enabled in sw tracking\n");
10746
Damien Lespiaub2784e12014-08-05 11:29:37 +010010747 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010748 if (encoder->base.crtc != &crtc->base)
10749 continue;
10750 enabled = true;
10751 if (encoder->connectors_active)
10752 active = true;
10753 }
Daniel Vetter6c49f242013-06-06 12:45:25 +020010754
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010755 WARN(active != crtc->active,
10756 "crtc's computed active state doesn't match tracked active state "
10757 "(expected %i, found %i)\n", active, crtc->active);
10758 WARN(enabled != crtc->base.enabled,
10759 "crtc's computed enabled state doesn't match tracked enabled state "
10760 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
10761
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010762 active = dev_priv->display.get_pipe_config(crtc,
10763 &pipe_config);
Daniel Vetterd62cf622013-05-29 10:41:29 +020010764
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030010765 /* hw state is inconsistent with the pipe quirk */
10766 if ((crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
10767 (crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Daniel Vetterd62cf622013-05-29 10:41:29 +020010768 active = crtc->active;
10769
Damien Lespiaub2784e12014-08-05 11:29:37 +010010770 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä3eaba512013-08-05 17:57:48 +030010771 enum pipe pipe;
Daniel Vetter6c49f242013-06-06 12:45:25 +020010772 if (encoder->base.crtc != &crtc->base)
10773 continue;
Daniel Vetter1d37b682013-11-18 09:00:59 +010010774 if (encoder->get_hw_state(encoder, &pipe))
Daniel Vetter6c49f242013-06-06 12:45:25 +020010775 encoder->get_config(encoder, &pipe_config);
10776 }
10777
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010778 WARN(crtc->active != active,
10779 "crtc active state doesn't match with hw state "
10780 "(expected %i, found %i)\n", crtc->active, active);
10781
Daniel Vetterc0b03412013-05-28 12:05:54 +020010782 if (active &&
10783 !intel_pipe_config_compare(dev, &crtc->config, &pipe_config)) {
10784 WARN(1, "pipe state doesn't match!\n");
10785 intel_dump_pipe_config(crtc, &pipe_config,
10786 "[hw state]");
10787 intel_dump_pipe_config(crtc, &crtc->config,
10788 "[sw state]");
10789 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010790 }
10791}
10792
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010793static void
10794check_shared_dpll_state(struct drm_device *dev)
10795{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010796 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010797 struct intel_crtc *crtc;
10798 struct intel_dpll_hw_state dpll_hw_state;
10799 int i;
Daniel Vetter53589012013-06-05 13:34:16 +020010800
10801 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
10802 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
10803 int enabled_crtcs = 0, active_crtcs = 0;
10804 bool active;
10805
10806 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
10807
10808 DRM_DEBUG_KMS("%s\n", pll->name);
10809
10810 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
10811
10812 WARN(pll->active > pll->refcount,
10813 "more active pll users than references: %i vs %i\n",
10814 pll->active, pll->refcount);
10815 WARN(pll->active && !pll->on,
10816 "pll in active use but not on in sw tracking\n");
Daniel Vetter35c95372013-07-17 06:55:04 +020010817 WARN(pll->on && !pll->active,
10818 "pll in on but not on in use in sw tracking\n");
Daniel Vetter53589012013-06-05 13:34:16 +020010819 WARN(pll->on != active,
10820 "pll on state mismatch (expected %i, found %i)\n",
10821 pll->on, active);
10822
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010823 for_each_intel_crtc(dev, crtc) {
Daniel Vetter53589012013-06-05 13:34:16 +020010824 if (crtc->base.enabled && intel_crtc_to_shared_dpll(crtc) == pll)
10825 enabled_crtcs++;
10826 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
10827 active_crtcs++;
10828 }
10829 WARN(pll->active != active_crtcs,
10830 "pll active crtcs mismatch (expected %i, found %i)\n",
10831 pll->active, active_crtcs);
10832 WARN(pll->refcount != enabled_crtcs,
10833 "pll enabled crtcs mismatch (expected %i, found %i)\n",
10834 pll->refcount, enabled_crtcs);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010835
10836 WARN(pll->on && memcmp(&pll->hw_state, &dpll_hw_state,
10837 sizeof(dpll_hw_state)),
10838 "pll hw state mismatch\n");
Daniel Vetter53589012013-06-05 13:34:16 +020010839 }
Daniel Vettera6778b32012-07-02 09:56:42 +020010840}
10841
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010842void
10843intel_modeset_check_state(struct drm_device *dev)
10844{
10845 check_connector_state(dev);
10846 check_encoder_state(dev);
10847 check_crtc_state(dev);
10848 check_shared_dpll_state(dev);
10849}
10850
Ville Syrjälä18442d02013-09-13 16:00:08 +030010851void ironlake_check_encoder_dotclock(const struct intel_crtc_config *pipe_config,
10852 int dotclock)
10853{
10854 /*
10855 * FDI already provided one idea for the dotclock.
10856 * Yell if the encoder disagrees.
10857 */
Damien Lespiau241bfc32013-09-25 16:45:37 +010010858 WARN(!intel_fuzzy_clock_check(pipe_config->adjusted_mode.crtc_clock, dotclock),
Ville Syrjälä18442d02013-09-13 16:00:08 +030010859 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
Damien Lespiau241bfc32013-09-25 16:45:37 +010010860 pipe_config->adjusted_mode.crtc_clock, dotclock);
Ville Syrjälä18442d02013-09-13 16:00:08 +030010861}
10862
Ville Syrjälä80715b22014-05-15 20:23:23 +030010863static void update_scanline_offset(struct intel_crtc *crtc)
10864{
10865 struct drm_device *dev = crtc->base.dev;
10866
10867 /*
10868 * The scanline counter increments at the leading edge of hsync.
10869 *
10870 * On most platforms it starts counting from vtotal-1 on the
10871 * first active line. That means the scanline counter value is
10872 * always one less than what we would expect. Ie. just after
10873 * start of vblank, which also occurs at start of hsync (on the
10874 * last active line), the scanline counter will read vblank_start-1.
10875 *
10876 * On gen2 the scanline counter starts counting from 1 instead
10877 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
10878 * to keep the value positive), instead of adding one.
10879 *
10880 * On HSW+ the behaviour of the scanline counter depends on the output
10881 * type. For DP ports it behaves like most other platforms, but on HDMI
10882 * there's an extra 1 line difference. So we need to add two instead of
10883 * one to the value.
10884 */
10885 if (IS_GEN2(dev)) {
10886 const struct drm_display_mode *mode = &crtc->config.adjusted_mode;
10887 int vtotal;
10888
10889 vtotal = mode->crtc_vtotal;
10890 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
10891 vtotal /= 2;
10892
10893 crtc->scanline_offset = vtotal - 1;
10894 } else if (HAS_DDI(dev) &&
10895 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI)) {
10896 crtc->scanline_offset = 2;
10897 } else
10898 crtc->scanline_offset = 1;
10899}
10900
Daniel Vetterf30da182013-04-11 20:22:50 +020010901static int __intel_set_mode(struct drm_crtc *crtc,
10902 struct drm_display_mode *mode,
10903 int x, int y, struct drm_framebuffer *fb)
Daniel Vettera6778b32012-07-02 09:56:42 +020010904{
10905 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +030010906 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030010907 struct drm_display_mode *saved_mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010908 struct intel_crtc_config *pipe_config = NULL;
Daniel Vetter25c5b262012-07-08 22:08:04 +020010909 struct intel_crtc *intel_crtc;
10910 unsigned disable_pipes, prepare_pipes, modeset_pipes;
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010911 int ret = 0;
Daniel Vettera6778b32012-07-02 09:56:42 +020010912
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030010913 saved_mode = kmalloc(sizeof(*saved_mode), GFP_KERNEL);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010914 if (!saved_mode)
10915 return -ENOMEM;
Daniel Vettera6778b32012-07-02 09:56:42 +020010916
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010917 intel_modeset_affected_pipes(crtc, &modeset_pipes,
Daniel Vetter25c5b262012-07-08 22:08:04 +020010918 &prepare_pipes, &disable_pipes);
10919
Tim Gardner3ac18232012-12-07 07:54:26 -070010920 *saved_mode = crtc->mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020010921
Daniel Vetter25c5b262012-07-08 22:08:04 +020010922 /* Hack: Because we don't (yet) support global modeset on multiple
10923 * crtcs, we don't keep track of the new mode for more than one crtc.
10924 * Hence simply check whether any bit is set in modeset_pipes in all the
10925 * pieces of code that are not yet converted to deal with mutliple crtcs
10926 * changing their mode at the same time. */
Daniel Vetter25c5b262012-07-08 22:08:04 +020010927 if (modeset_pipes) {
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010928 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010929 if (IS_ERR(pipe_config)) {
10930 ret = PTR_ERR(pipe_config);
10931 pipe_config = NULL;
10932
Tim Gardner3ac18232012-12-07 07:54:26 -070010933 goto out;
Daniel Vetter25c5b262012-07-08 22:08:04 +020010934 }
Daniel Vetterc0b03412013-05-28 12:05:54 +020010935 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
10936 "[modeset]");
Ville Syrjälä50741ab2014-01-10 11:28:07 +020010937 to_intel_crtc(crtc)->new_config = pipe_config;
Daniel Vettera6778b32012-07-02 09:56:42 +020010938 }
10939
Jesse Barnes30a970c2013-11-04 13:48:12 -080010940 /*
10941 * See if the config requires any additional preparation, e.g.
10942 * to adjust global state with pipes off. We need to do this
10943 * here so we can get the modeset_pipe updated config for the new
10944 * mode set on this crtc. For other crtcs we need to use the
10945 * adjusted_mode bits in the crtc directly.
10946 */
Ville Syrjäläc164f832013-11-05 22:34:12 +020010947 if (IS_VALLEYVIEW(dev)) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +020010948 valleyview_modeset_global_pipes(dev, &prepare_pipes);
Jesse Barnes30a970c2013-11-04 13:48:12 -080010949
Ville Syrjäläc164f832013-11-05 22:34:12 +020010950 /* may have added more to prepare_pipes than we should */
10951 prepare_pipes &= ~disable_pipes;
10952 }
10953
Daniel Vetter460da9162013-03-27 00:44:51 +010010954 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
10955 intel_crtc_disable(&intel_crtc->base);
10956
Daniel Vetterea9d7582012-07-10 10:42:52 +020010957 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
10958 if (intel_crtc->base.enabled)
10959 dev_priv->display.crtc_disable(&intel_crtc->base);
10960 }
Daniel Vettera6778b32012-07-02 09:56:42 +020010961
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020010962 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
10963 * to set it here already despite that we pass it down the callchain.
10964 */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010965 if (modeset_pipes) {
Daniel Vetter25c5b262012-07-08 22:08:04 +020010966 crtc->mode = *mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010967 /* mode_set/enable/disable functions rely on a correct pipe
10968 * config. */
10969 to_intel_crtc(crtc)->config = *pipe_config;
Ville Syrjälä50741ab2014-01-10 11:28:07 +020010970 to_intel_crtc(crtc)->new_config = &to_intel_crtc(crtc)->config;
Ville Syrjäläc326c0a2013-10-28 12:53:41 +020010971
10972 /*
10973 * Calculate and store various constants which
10974 * are later needed by vblank and swap-completion
10975 * timestamping. They are derived from true hwmode.
10976 */
10977 drm_calc_timestamping_constants(crtc,
10978 &pipe_config->adjusted_mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010979 }
Daniel Vetter7758a112012-07-08 19:40:39 +020010980
Daniel Vetterea9d7582012-07-10 10:42:52 +020010981 /* Only after disabling all output pipelines that will be changed can we
10982 * update the the output configuration. */
10983 intel_modeset_update_state(dev, prepare_pipes);
10984
Daniel Vetter47fab732012-10-26 10:58:18 +020010985 if (dev_priv->display.modeset_global_resources)
10986 dev_priv->display.modeset_global_resources(dev);
10987
Daniel Vettera6778b32012-07-02 09:56:42 +020010988 /* Set up the DPLL and any encoders state that needs to adjust or depend
10989 * on the DPLL.
10990 */
Daniel Vetter25c5b262012-07-08 22:08:04 +020010991 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
Matt Roper2ff8fde2014-07-08 07:50:07 -070010992 struct drm_framebuffer *old_fb = crtc->primary->fb;
10993 struct drm_i915_gem_object *old_obj = intel_fb_obj(old_fb);
10994 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Daniel Vetter4c107942014-04-24 23:55:05 +020010995
10996 mutex_lock(&dev->struct_mutex);
10997 ret = intel_pin_and_fence_fb_obj(dev,
Daniel Vettera071fa02014-06-18 23:28:09 +020010998 obj,
Daniel Vetter4c107942014-04-24 23:55:05 +020010999 NULL);
11000 if (ret != 0) {
11001 DRM_ERROR("pin & fence failed\n");
11002 mutex_unlock(&dev->struct_mutex);
11003 goto done;
11004 }
Matt Roper2ff8fde2014-07-08 07:50:07 -070011005 if (old_fb)
Daniel Vettera071fa02014-06-18 23:28:09 +020011006 intel_unpin_fb_obj(old_obj);
Daniel Vettera071fa02014-06-18 23:28:09 +020011007 i915_gem_track_fb(old_obj, obj,
11008 INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe));
Daniel Vetter4c107942014-04-24 23:55:05 +020011009 mutex_unlock(&dev->struct_mutex);
11010
11011 crtc->primary->fb = fb;
11012 crtc->x = x;
11013 crtc->y = y;
11014
Daniel Vetter4271b752014-04-24 23:55:00 +020011015 ret = dev_priv->display.crtc_mode_set(&intel_crtc->base,
11016 x, y, fb);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011017 if (ret)
11018 goto done;
Daniel Vettera6778b32012-07-02 09:56:42 +020011019 }
11020
11021 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Ville Syrjälä80715b22014-05-15 20:23:23 +030011022 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
11023 update_scanline_offset(intel_crtc);
11024
Daniel Vetter25c5b262012-07-08 22:08:04 +020011025 dev_priv->display.crtc_enable(&intel_crtc->base);
Ville Syrjälä80715b22014-05-15 20:23:23 +030011026 }
Daniel Vettera6778b32012-07-02 09:56:42 +020011027
Daniel Vettera6778b32012-07-02 09:56:42 +020011028 /* FIXME: add subpixel order */
11029done:
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030011030 if (ret && crtc->enabled)
Tim Gardner3ac18232012-12-07 07:54:26 -070011031 crtc->mode = *saved_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020011032
Tim Gardner3ac18232012-12-07 07:54:26 -070011033out:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011034 kfree(pipe_config);
Tim Gardner3ac18232012-12-07 07:54:26 -070011035 kfree(saved_mode);
Daniel Vettera6778b32012-07-02 09:56:42 +020011036 return ret;
11037}
11038
Damien Lespiaue7457a92013-08-08 22:28:59 +010011039static int intel_set_mode(struct drm_crtc *crtc,
11040 struct drm_display_mode *mode,
11041 int x, int y, struct drm_framebuffer *fb)
Daniel Vetterf30da182013-04-11 20:22:50 +020011042{
11043 int ret;
11044
11045 ret = __intel_set_mode(crtc, mode, x, y, fb);
11046
11047 if (ret == 0)
11048 intel_modeset_check_state(crtc->dev);
11049
11050 return ret;
11051}
11052
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011053void intel_crtc_restore_mode(struct drm_crtc *crtc)
11054{
Matt Roperf4510a22014-04-01 15:22:40 -070011055 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->primary->fb);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011056}
11057
Daniel Vetter25c5b262012-07-08 22:08:04 +020011058#undef for_each_intel_crtc_masked
11059
Daniel Vetterd9e55602012-07-04 22:16:09 +020011060static void intel_set_config_free(struct intel_set_config *config)
11061{
11062 if (!config)
11063 return;
11064
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011065 kfree(config->save_connector_encoders);
11066 kfree(config->save_encoder_crtcs);
Ville Syrjälä76688512014-01-10 11:28:06 +020011067 kfree(config->save_crtc_enabled);
Daniel Vetterd9e55602012-07-04 22:16:09 +020011068 kfree(config);
11069}
11070
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011071static int intel_set_config_save_state(struct drm_device *dev,
11072 struct intel_set_config *config)
11073{
Ville Syrjälä76688512014-01-10 11:28:06 +020011074 struct drm_crtc *crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011075 struct drm_encoder *encoder;
11076 struct drm_connector *connector;
11077 int count;
11078
Ville Syrjälä76688512014-01-10 11:28:06 +020011079 config->save_crtc_enabled =
11080 kcalloc(dev->mode_config.num_crtc,
11081 sizeof(bool), GFP_KERNEL);
11082 if (!config->save_crtc_enabled)
11083 return -ENOMEM;
11084
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011085 config->save_encoder_crtcs =
11086 kcalloc(dev->mode_config.num_encoder,
11087 sizeof(struct drm_crtc *), GFP_KERNEL);
11088 if (!config->save_encoder_crtcs)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011089 return -ENOMEM;
11090
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011091 config->save_connector_encoders =
11092 kcalloc(dev->mode_config.num_connector,
11093 sizeof(struct drm_encoder *), GFP_KERNEL);
11094 if (!config->save_connector_encoders)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011095 return -ENOMEM;
11096
11097 /* Copy data. Note that driver private data is not affected.
11098 * Should anything bad happen only the expected state is
11099 * restored, not the drivers personal bookkeeping.
11100 */
11101 count = 0;
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010011102 for_each_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011103 config->save_crtc_enabled[count++] = crtc->enabled;
11104 }
11105
11106 count = 0;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011107 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011108 config->save_encoder_crtcs[count++] = encoder->crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011109 }
11110
11111 count = 0;
11112 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011113 config->save_connector_encoders[count++] = connector->encoder;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011114 }
11115
11116 return 0;
11117}
11118
11119static void intel_set_config_restore_state(struct drm_device *dev,
11120 struct intel_set_config *config)
11121{
Ville Syrjälä76688512014-01-10 11:28:06 +020011122 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020011123 struct intel_encoder *encoder;
11124 struct intel_connector *connector;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011125 int count;
11126
11127 count = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011128 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011129 crtc->new_enabled = config->save_crtc_enabled[count++];
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011130
11131 if (crtc->new_enabled)
11132 crtc->new_config = &crtc->config;
11133 else
11134 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020011135 }
11136
11137 count = 0;
Damien Lespiaub2784e12014-08-05 11:29:37 +010011138 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011139 encoder->new_crtc =
11140 to_intel_crtc(config->save_encoder_crtcs[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011141 }
11142
11143 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020011144 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
11145 connector->new_encoder =
11146 to_intel_encoder(config->save_connector_encoders[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011147 }
11148}
11149
Imre Deake3de42b2013-05-03 19:44:07 +020011150static bool
Chris Wilson2e57f472013-07-17 12:14:40 +010011151is_crtc_connector_off(struct drm_mode_set *set)
Imre Deake3de42b2013-05-03 19:44:07 +020011152{
11153 int i;
11154
Chris Wilson2e57f472013-07-17 12:14:40 +010011155 if (set->num_connectors == 0)
11156 return false;
11157
11158 if (WARN_ON(set->connectors == NULL))
11159 return false;
11160
11161 for (i = 0; i < set->num_connectors; i++)
11162 if (set->connectors[i]->encoder &&
11163 set->connectors[i]->encoder->crtc == set->crtc &&
11164 set->connectors[i]->dpms != DRM_MODE_DPMS_ON)
Imre Deake3de42b2013-05-03 19:44:07 +020011165 return true;
11166
11167 return false;
11168}
11169
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011170static void
11171intel_set_config_compute_mode_changes(struct drm_mode_set *set,
11172 struct intel_set_config *config)
11173{
11174
11175 /* We should be able to check here if the fb has the same properties
11176 * and then just flip_or_move it */
Chris Wilson2e57f472013-07-17 12:14:40 +010011177 if (is_crtc_connector_off(set)) {
11178 config->mode_changed = true;
Matt Roperf4510a22014-04-01 15:22:40 -070011179 } else if (set->crtc->primary->fb != set->fb) {
Matt Roper3b150f02014-05-29 08:06:53 -070011180 /*
11181 * If we have no fb, we can only flip as long as the crtc is
11182 * active, otherwise we need a full mode set. The crtc may
11183 * be active if we've only disabled the primary plane, or
11184 * in fastboot situations.
11185 */
Matt Roperf4510a22014-04-01 15:22:40 -070011186 if (set->crtc->primary->fb == NULL) {
Jesse Barnes319d9822013-06-26 01:38:19 +030011187 struct intel_crtc *intel_crtc =
11188 to_intel_crtc(set->crtc);
11189
Matt Roper3b150f02014-05-29 08:06:53 -070011190 if (intel_crtc->active) {
Jesse Barnes319d9822013-06-26 01:38:19 +030011191 DRM_DEBUG_KMS("crtc has no fb, will flip\n");
11192 config->fb_changed = true;
11193 } else {
11194 DRM_DEBUG_KMS("inactive crtc, full mode set\n");
11195 config->mode_changed = true;
11196 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011197 } else if (set->fb == NULL) {
11198 config->mode_changed = true;
Daniel Vetter72f49012013-03-28 16:01:35 +010011199 } else if (set->fb->pixel_format !=
Matt Roperf4510a22014-04-01 15:22:40 -070011200 set->crtc->primary->fb->pixel_format) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011201 config->mode_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020011202 } else {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011203 config->fb_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020011204 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011205 }
11206
Daniel Vetter835c5872012-07-10 18:11:08 +020011207 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011208 config->fb_changed = true;
11209
11210 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
11211 DRM_DEBUG_KMS("modes are different, full mode set\n");
11212 drm_mode_debug_printmodeline(&set->crtc->mode);
11213 drm_mode_debug_printmodeline(set->mode);
11214 config->mode_changed = true;
11215 }
Chris Wilsona1d95702013-08-13 18:48:47 +010011216
11217 DRM_DEBUG_KMS("computed changes for [CRTC:%d], mode_changed=%d, fb_changed=%d\n",
11218 set->crtc->base.id, config->mode_changed, config->fb_changed);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011219}
11220
Daniel Vetter2e431052012-07-04 22:42:15 +020011221static int
Daniel Vetter9a935852012-07-05 22:34:27 +020011222intel_modeset_stage_output_state(struct drm_device *dev,
11223 struct drm_mode_set *set,
11224 struct intel_set_config *config)
Daniel Vetter50f56112012-07-02 09:35:43 +020011225{
Daniel Vetter9a935852012-07-05 22:34:27 +020011226 struct intel_connector *connector;
11227 struct intel_encoder *encoder;
Ville Syrjälä76688512014-01-10 11:28:06 +020011228 struct intel_crtc *crtc;
Paulo Zanonif3f08572013-08-12 14:56:53 -030011229 int ro;
Daniel Vetter50f56112012-07-02 09:35:43 +020011230
Damien Lespiau9abdda72013-02-13 13:29:23 +000011231 /* The upper layers ensure that we either disable a crtc or have a list
Daniel Vetter9a935852012-07-05 22:34:27 +020011232 * of connectors. For paranoia, double-check this. */
11233 WARN_ON(!set->fb && (set->num_connectors != 0));
11234 WARN_ON(set->fb && (set->num_connectors == 0));
11235
Daniel Vetter9a935852012-07-05 22:34:27 +020011236 list_for_each_entry(connector, &dev->mode_config.connector_list,
11237 base.head) {
11238 /* Otherwise traverse passed in connector list and get encoders
11239 * for them. */
Daniel Vetter50f56112012-07-02 09:35:43 +020011240 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011241 if (set->connectors[ro] == &connector->base) {
Dave Airlie0e32b392014-05-02 14:02:48 +100011242 connector->new_encoder = intel_find_encoder(connector, to_intel_crtc(set->crtc)->pipe);
Daniel Vetter50f56112012-07-02 09:35:43 +020011243 break;
11244 }
11245 }
11246
Daniel Vetter9a935852012-07-05 22:34:27 +020011247 /* If we disable the crtc, disable all its connectors. Also, if
11248 * the connector is on the changing crtc but not on the new
11249 * connector list, disable it. */
11250 if ((!set->fb || ro == set->num_connectors) &&
11251 connector->base.encoder &&
11252 connector->base.encoder->crtc == set->crtc) {
11253 connector->new_encoder = NULL;
11254
11255 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
11256 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030011257 connector->base.name);
Daniel Vetter9a935852012-07-05 22:34:27 +020011258 }
11259
11260
11261 if (&connector->new_encoder->base != connector->base.encoder) {
Daniel Vetter50f56112012-07-02 09:35:43 +020011262 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011263 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020011264 }
Daniel Vetter9a935852012-07-05 22:34:27 +020011265 }
11266 /* connector->new_encoder is now updated for all connectors. */
11267
11268 /* Update crtc of enabled connectors. */
Daniel Vetter9a935852012-07-05 22:34:27 +020011269 list_for_each_entry(connector, &dev->mode_config.connector_list,
11270 base.head) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011271 struct drm_crtc *new_crtc;
11272
Daniel Vetter9a935852012-07-05 22:34:27 +020011273 if (!connector->new_encoder)
Daniel Vetter50f56112012-07-02 09:35:43 +020011274 continue;
11275
Daniel Vetter9a935852012-07-05 22:34:27 +020011276 new_crtc = connector->new_encoder->base.crtc;
Daniel Vetter50f56112012-07-02 09:35:43 +020011277
11278 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011279 if (set->connectors[ro] == &connector->base)
Daniel Vetter50f56112012-07-02 09:35:43 +020011280 new_crtc = set->crtc;
11281 }
11282
11283 /* Make sure the new CRTC will work with the encoder */
Thierry Reding14509912014-01-13 12:00:22 +010011284 if (!drm_encoder_crtc_ok(&connector->new_encoder->base,
11285 new_crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011286 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +020011287 }
Dave Airlie0e32b392014-05-02 14:02:48 +100011288 connector->new_encoder->new_crtc = to_intel_crtc(new_crtc);
Daniel Vetter9a935852012-07-05 22:34:27 +020011289
11290 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
11291 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030011292 connector->base.name,
Daniel Vetter9a935852012-07-05 22:34:27 +020011293 new_crtc->base.id);
11294 }
11295
11296 /* Check for any encoders that needs to be disabled. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010011297 for_each_intel_encoder(dev, encoder) {
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011298 int num_connectors = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020011299 list_for_each_entry(connector,
11300 &dev->mode_config.connector_list,
11301 base.head) {
11302 if (connector->new_encoder == encoder) {
11303 WARN_ON(!connector->new_encoder->new_crtc);
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011304 num_connectors++;
Daniel Vetter9a935852012-07-05 22:34:27 +020011305 }
11306 }
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011307
11308 if (num_connectors == 0)
11309 encoder->new_crtc = NULL;
11310 else if (num_connectors > 1)
11311 return -EINVAL;
11312
Daniel Vetter9a935852012-07-05 22:34:27 +020011313 /* Only now check for crtc changes so we don't miss encoders
11314 * that will be disabled. */
11315 if (&encoder->new_crtc->base != encoder->base.crtc) {
Daniel Vetter50f56112012-07-02 09:35:43 +020011316 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011317 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020011318 }
11319 }
Daniel Vetter9a935852012-07-05 22:34:27 +020011320 /* Now we've also updated encoder->new_crtc for all encoders. */
Dave Airlie0e32b392014-05-02 14:02:48 +100011321 list_for_each_entry(connector, &dev->mode_config.connector_list,
11322 base.head) {
11323 if (connector->new_encoder)
11324 if (connector->new_encoder != connector->encoder)
11325 connector->encoder = connector->new_encoder;
11326 }
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011327 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011328 crtc->new_enabled = false;
11329
Damien Lespiaub2784e12014-08-05 11:29:37 +010011330 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011331 if (encoder->new_crtc == crtc) {
11332 crtc->new_enabled = true;
11333 break;
11334 }
11335 }
11336
11337 if (crtc->new_enabled != crtc->base.enabled) {
11338 DRM_DEBUG_KMS("crtc %sabled, full mode switch\n",
11339 crtc->new_enabled ? "en" : "dis");
11340 config->mode_changed = true;
11341 }
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011342
11343 if (crtc->new_enabled)
11344 crtc->new_config = &crtc->config;
11345 else
11346 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020011347 }
11348
Daniel Vetter2e431052012-07-04 22:42:15 +020011349 return 0;
11350}
11351
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011352static void disable_crtc_nofb(struct intel_crtc *crtc)
11353{
11354 struct drm_device *dev = crtc->base.dev;
11355 struct intel_encoder *encoder;
11356 struct intel_connector *connector;
11357
11358 DRM_DEBUG_KMS("Trying to restore without FB -> disabling pipe %c\n",
11359 pipe_name(crtc->pipe));
11360
11361 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
11362 if (connector->new_encoder &&
11363 connector->new_encoder->new_crtc == crtc)
11364 connector->new_encoder = NULL;
11365 }
11366
Damien Lespiaub2784e12014-08-05 11:29:37 +010011367 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011368 if (encoder->new_crtc == crtc)
11369 encoder->new_crtc = NULL;
11370 }
11371
11372 crtc->new_enabled = false;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011373 crtc->new_config = NULL;
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011374}
11375
Daniel Vetter2e431052012-07-04 22:42:15 +020011376static int intel_crtc_set_config(struct drm_mode_set *set)
11377{
11378 struct drm_device *dev;
Daniel Vetter2e431052012-07-04 22:42:15 +020011379 struct drm_mode_set save_set;
11380 struct intel_set_config *config;
11381 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +020011382
Daniel Vetter8d3e3752012-07-05 16:09:09 +020011383 BUG_ON(!set);
11384 BUG_ON(!set->crtc);
11385 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +020011386
Daniel Vetter7e53f3a2013-01-21 10:52:17 +010011387 /* Enforce sane interface api - has been abused by the fb helper. */
11388 BUG_ON(!set->mode && set->fb);
11389 BUG_ON(set->fb && set->num_connectors == 0);
Daniel Vetter431e50f2012-07-10 17:53:42 +020011390
Daniel Vetter2e431052012-07-04 22:42:15 +020011391 if (set->fb) {
11392 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
11393 set->crtc->base.id, set->fb->base.id,
11394 (int)set->num_connectors, set->x, set->y);
11395 } else {
11396 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +020011397 }
11398
11399 dev = set->crtc->dev;
11400
11401 ret = -ENOMEM;
11402 config = kzalloc(sizeof(*config), GFP_KERNEL);
11403 if (!config)
11404 goto out_config;
11405
11406 ret = intel_set_config_save_state(dev, config);
11407 if (ret)
11408 goto out_config;
11409
11410 save_set.crtc = set->crtc;
11411 save_set.mode = &set->crtc->mode;
11412 save_set.x = set->crtc->x;
11413 save_set.y = set->crtc->y;
Matt Roperf4510a22014-04-01 15:22:40 -070011414 save_set.fb = set->crtc->primary->fb;
Daniel Vetter2e431052012-07-04 22:42:15 +020011415
11416 /* Compute whether we need a full modeset, only an fb base update or no
11417 * change at all. In the future we might also check whether only the
11418 * mode changed, e.g. for LVDS where we only change the panel fitter in
11419 * such cases. */
11420 intel_set_config_compute_mode_changes(set, config);
11421
Daniel Vetter9a935852012-07-05 22:34:27 +020011422 ret = intel_modeset_stage_output_state(dev, set, config);
Daniel Vetter2e431052012-07-04 22:42:15 +020011423 if (ret)
11424 goto fail;
11425
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011426 if (config->mode_changed) {
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011427 ret = intel_set_mode(set->crtc, set->mode,
11428 set->x, set->y, set->fb);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011429 } else if (config->fb_changed) {
Matt Roper3b150f02014-05-29 08:06:53 -070011430 struct intel_crtc *intel_crtc = to_intel_crtc(set->crtc);
11431
Ville Syrjälä4878cae2013-02-18 19:08:48 +020011432 intel_crtc_wait_for_pending_flips(set->crtc);
11433
Daniel Vetter4f660f42012-07-02 09:47:37 +020011434 ret = intel_pipe_set_base(set->crtc,
Daniel Vetter94352cf2012-07-05 22:51:56 +020011435 set->x, set->y, set->fb);
Matt Roper3b150f02014-05-29 08:06:53 -070011436
11437 /*
11438 * We need to make sure the primary plane is re-enabled if it
11439 * has previously been turned off.
11440 */
11441 if (!intel_crtc->primary_enabled && ret == 0) {
11442 WARN_ON(!intel_crtc->active);
Ville Syrjäläfdd508a2014-08-08 21:51:11 +030011443 intel_enable_primary_hw_plane(set->crtc->primary, set->crtc);
Matt Roper3b150f02014-05-29 08:06:53 -070011444 }
11445
Jesse Barnes7ca51a32014-01-07 13:50:49 -080011446 /*
11447 * In the fastboot case this may be our only check of the
11448 * state after boot. It would be better to only do it on
11449 * the first update, but we don't have a nice way of doing that
11450 * (and really, set_config isn't used much for high freq page
11451 * flipping, so increasing its cost here shouldn't be a big
11452 * deal).
11453 */
Jani Nikulad330a952014-01-21 11:24:25 +020011454 if (i915.fastboot && ret == 0)
Jesse Barnes7ca51a32014-01-07 13:50:49 -080011455 intel_modeset_check_state(set->crtc->dev);
Daniel Vetter50f56112012-07-02 09:35:43 +020011456 }
11457
Chris Wilson2d05eae2013-05-03 17:36:25 +010011458 if (ret) {
Daniel Vetterbf67dfe2013-06-25 11:06:52 +020011459 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
11460 set->crtc->base.id, ret);
Daniel Vetter50f56112012-07-02 09:35:43 +020011461fail:
Chris Wilson2d05eae2013-05-03 17:36:25 +010011462 intel_set_config_restore_state(dev, config);
Daniel Vetter50f56112012-07-02 09:35:43 +020011463
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011464 /*
11465 * HACK: if the pipe was on, but we didn't have a framebuffer,
11466 * force the pipe off to avoid oopsing in the modeset code
11467 * due to fb==NULL. This should only happen during boot since
11468 * we don't yet reconstruct the FB from the hardware state.
11469 */
11470 if (to_intel_crtc(save_set.crtc)->new_enabled && !save_set.fb)
11471 disable_crtc_nofb(to_intel_crtc(save_set.crtc));
11472
Chris Wilson2d05eae2013-05-03 17:36:25 +010011473 /* Try to restore the config */
11474 if (config->mode_changed &&
11475 intel_set_mode(save_set.crtc, save_set.mode,
11476 save_set.x, save_set.y, save_set.fb))
11477 DRM_ERROR("failed to restore config after modeset failure\n");
11478 }
Daniel Vetter50f56112012-07-02 09:35:43 +020011479
Daniel Vetterd9e55602012-07-04 22:16:09 +020011480out_config:
11481 intel_set_config_free(config);
Daniel Vetter50f56112012-07-02 09:35:43 +020011482 return ret;
11483}
11484
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011485static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011486 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +020011487 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011488 .destroy = intel_crtc_destroy,
11489 .page_flip = intel_crtc_page_flip,
11490};
11491
Daniel Vetter53589012013-06-05 13:34:16 +020011492static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
11493 struct intel_shared_dpll *pll,
11494 struct intel_dpll_hw_state *hw_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011495{
Daniel Vetter53589012013-06-05 13:34:16 +020011496 uint32_t val;
11497
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030011498 if (!intel_display_power_enabled(dev_priv, POWER_DOMAIN_PLLS))
11499 return false;
11500
Daniel Vetter53589012013-06-05 13:34:16 +020011501 val = I915_READ(PCH_DPLL(pll->id));
Daniel Vetter66e985c2013-06-05 13:34:20 +020011502 hw_state->dpll = val;
11503 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
11504 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
Daniel Vetter53589012013-06-05 13:34:16 +020011505
11506 return val & DPLL_VCO_ENABLE;
11507}
11508
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011509static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
11510 struct intel_shared_dpll *pll)
11511{
11512 I915_WRITE(PCH_FP0(pll->id), pll->hw_state.fp0);
11513 I915_WRITE(PCH_FP1(pll->id), pll->hw_state.fp1);
11514}
11515
Daniel Vettere7b903d2013-06-05 13:34:14 +020011516static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
11517 struct intel_shared_dpll *pll)
11518{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011519 /* PCH refclock must be enabled first */
Paulo Zanoni89eff4b2014-01-08 11:12:28 -020011520 ibx_assert_pch_refclk_enabled(dev_priv);
Daniel Vettere7b903d2013-06-05 13:34:14 +020011521
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011522 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
11523
11524 /* Wait for the clocks to stabilize. */
11525 POSTING_READ(PCH_DPLL(pll->id));
11526 udelay(150);
11527
11528 /* The pixel multiplier can only be updated once the
11529 * DPLL is enabled and the clocks are stable.
11530 *
11531 * So write it again.
11532 */
11533 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
11534 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020011535 udelay(200);
11536}
11537
11538static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
11539 struct intel_shared_dpll *pll)
11540{
11541 struct drm_device *dev = dev_priv->dev;
11542 struct intel_crtc *crtc;
Daniel Vettere7b903d2013-06-05 13:34:14 +020011543
11544 /* Make sure no transcoder isn't still depending on us. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011545 for_each_intel_crtc(dev, crtc) {
Daniel Vettere7b903d2013-06-05 13:34:14 +020011546 if (intel_crtc_to_shared_dpll(crtc) == pll)
11547 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
11548 }
11549
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011550 I915_WRITE(PCH_DPLL(pll->id), 0);
11551 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020011552 udelay(200);
11553}
11554
Daniel Vetter46edb022013-06-05 13:34:12 +020011555static char *ibx_pch_dpll_names[] = {
11556 "PCH DPLL A",
11557 "PCH DPLL B",
11558};
11559
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011560static void ibx_pch_dpll_init(struct drm_device *dev)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011561{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011562 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011563 int i;
11564
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011565 dev_priv->num_shared_dpll = 2;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011566
Daniel Vettere72f9fb2013-06-05 13:34:06 +020011567 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
Daniel Vetter46edb022013-06-05 13:34:12 +020011568 dev_priv->shared_dplls[i].id = i;
11569 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011570 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
Daniel Vettere7b903d2013-06-05 13:34:14 +020011571 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
11572 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
Daniel Vetter53589012013-06-05 13:34:16 +020011573 dev_priv->shared_dplls[i].get_hw_state =
11574 ibx_pch_dpll_get_hw_state;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011575 }
11576}
11577
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011578static void intel_shared_dpll_init(struct drm_device *dev)
11579{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011580 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011581
Daniel Vetter9cd86932014-06-25 22:01:57 +030011582 if (HAS_DDI(dev))
11583 intel_ddi_pll_init(dev);
11584 else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011585 ibx_pch_dpll_init(dev);
11586 else
11587 dev_priv->num_shared_dpll = 0;
11588
11589 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011590}
11591
Matt Roper465c1202014-05-29 08:06:54 -070011592static int
11593intel_primary_plane_disable(struct drm_plane *plane)
11594{
11595 struct drm_device *dev = plane->dev;
Matt Roper465c1202014-05-29 08:06:54 -070011596 struct intel_crtc *intel_crtc;
11597
11598 if (!plane->fb)
11599 return 0;
11600
11601 BUG_ON(!plane->crtc);
11602
11603 intel_crtc = to_intel_crtc(plane->crtc);
11604
11605 /*
11606 * Even though we checked plane->fb above, it's still possible that
11607 * the primary plane has been implicitly disabled because the crtc
11608 * coordinates given weren't visible, or because we detected
11609 * that it was 100% covered by a sprite plane. Or, the CRTC may be
11610 * off and we've set a fb, but haven't actually turned on the CRTC yet.
11611 * In either case, we need to unpin the FB and let the fb pointer get
11612 * updated, but otherwise we don't need to touch the hardware.
11613 */
11614 if (!intel_crtc->primary_enabled)
11615 goto disable_unpin;
11616
11617 intel_crtc_wait_for_pending_flips(plane->crtc);
Ville Syrjäläfdd508a2014-08-08 21:51:11 +030011618 intel_disable_primary_hw_plane(plane, plane->crtc);
11619
Matt Roper465c1202014-05-29 08:06:54 -070011620disable_unpin:
Matt Roper4c345742014-07-09 16:22:10 -070011621 mutex_lock(&dev->struct_mutex);
Matt Roper2ff8fde2014-07-08 07:50:07 -070011622 i915_gem_track_fb(intel_fb_obj(plane->fb), NULL,
Daniel Vettera071fa02014-06-18 23:28:09 +020011623 INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe));
Matt Roper2ff8fde2014-07-08 07:50:07 -070011624 intel_unpin_fb_obj(intel_fb_obj(plane->fb));
Matt Roper4c345742014-07-09 16:22:10 -070011625 mutex_unlock(&dev->struct_mutex);
Matt Roper465c1202014-05-29 08:06:54 -070011626 plane->fb = NULL;
11627
11628 return 0;
11629}
11630
11631static int
11632intel_primary_plane_setplane(struct drm_plane *plane, struct drm_crtc *crtc,
11633 struct drm_framebuffer *fb, int crtc_x, int crtc_y,
11634 unsigned int crtc_w, unsigned int crtc_h,
11635 uint32_t src_x, uint32_t src_y,
11636 uint32_t src_w, uint32_t src_h)
11637{
11638 struct drm_device *dev = crtc->dev;
Sonika Jindal48404c12014-08-22 14:06:04 +053011639 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roper465c1202014-05-29 08:06:54 -070011640 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper2ff8fde2014-07-08 07:50:07 -070011641 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
11642 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->fb);
Matt Roper465c1202014-05-29 08:06:54 -070011643 struct drm_rect dest = {
11644 /* integer pixels */
11645 .x1 = crtc_x,
11646 .y1 = crtc_y,
11647 .x2 = crtc_x + crtc_w,
11648 .y2 = crtc_y + crtc_h,
11649 };
11650 struct drm_rect src = {
11651 /* 16.16 fixed point */
11652 .x1 = src_x,
11653 .y1 = src_y,
11654 .x2 = src_x + src_w,
11655 .y2 = src_y + src_h,
11656 };
11657 const struct drm_rect clip = {
11658 /* integer pixels */
11659 .x2 = intel_crtc->active ? intel_crtc->config.pipe_src_w : 0,
11660 .y2 = intel_crtc->active ? intel_crtc->config.pipe_src_h : 0,
11661 };
Sonika Jindalce54d852014-08-21 11:44:39 +053011662 const struct {
11663 int crtc_x, crtc_y;
11664 unsigned int crtc_w, crtc_h;
11665 uint32_t src_x, src_y, src_w, src_h;
11666 } orig = {
11667 .crtc_x = crtc_x,
11668 .crtc_y = crtc_y,
11669 .crtc_w = crtc_w,
11670 .crtc_h = crtc_h,
11671 .src_x = src_x,
11672 .src_y = src_y,
11673 .src_w = src_w,
11674 .src_h = src_h,
11675 };
11676 struct intel_plane *intel_plane = to_intel_plane(plane);
Matt Roper465c1202014-05-29 08:06:54 -070011677 bool visible;
11678 int ret;
11679
11680 ret = drm_plane_helper_check_update(plane, crtc, fb,
11681 &src, &dest, &clip,
11682 DRM_PLANE_HELPER_NO_SCALING,
11683 DRM_PLANE_HELPER_NO_SCALING,
11684 false, true, &visible);
11685
11686 if (ret)
11687 return ret;
11688
11689 /*
11690 * If the CRTC isn't enabled, we're just pinning the framebuffer,
11691 * updating the fb pointer, and returning without touching the
11692 * hardware. This allows us to later do a drmModeSetCrtc with fb=-1 to
11693 * turn on the display with all planes setup as desired.
11694 */
11695 if (!crtc->enabled) {
Matt Roper4c345742014-07-09 16:22:10 -070011696 mutex_lock(&dev->struct_mutex);
11697
Matt Roper465c1202014-05-29 08:06:54 -070011698 /*
11699 * If we already called setplane while the crtc was disabled,
11700 * we may have an fb pinned; unpin it.
11701 */
11702 if (plane->fb)
Daniel Vettera071fa02014-06-18 23:28:09 +020011703 intel_unpin_fb_obj(old_obj);
11704
11705 i915_gem_track_fb(old_obj, obj,
11706 INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe));
Matt Roper465c1202014-05-29 08:06:54 -070011707
11708 /* Pin and return without programming hardware */
Matt Roper4c345742014-07-09 16:22:10 -070011709 ret = intel_pin_and_fence_fb_obj(dev, obj, NULL);
11710 mutex_unlock(&dev->struct_mutex);
11711
11712 return ret;
Matt Roper465c1202014-05-29 08:06:54 -070011713 }
11714
11715 intel_crtc_wait_for_pending_flips(crtc);
11716
11717 /*
11718 * If clipping results in a non-visible primary plane, we'll disable
11719 * the primary plane. Note that this is a bit different than what
11720 * happens if userspace explicitly disables the plane by passing fb=0
11721 * because plane->fb still gets set and pinned.
11722 */
11723 if (!visible) {
Matt Roper4c345742014-07-09 16:22:10 -070011724 mutex_lock(&dev->struct_mutex);
11725
Matt Roper465c1202014-05-29 08:06:54 -070011726 /*
11727 * Try to pin the new fb first so that we can bail out if we
11728 * fail.
11729 */
11730 if (plane->fb != fb) {
Daniel Vettera071fa02014-06-18 23:28:09 +020011731 ret = intel_pin_and_fence_fb_obj(dev, obj, NULL);
Matt Roper4c345742014-07-09 16:22:10 -070011732 if (ret) {
11733 mutex_unlock(&dev->struct_mutex);
Matt Roper465c1202014-05-29 08:06:54 -070011734 return ret;
Matt Roper4c345742014-07-09 16:22:10 -070011735 }
Matt Roper465c1202014-05-29 08:06:54 -070011736 }
11737
Daniel Vettera071fa02014-06-18 23:28:09 +020011738 i915_gem_track_fb(old_obj, obj,
11739 INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe));
11740
Matt Roper465c1202014-05-29 08:06:54 -070011741 if (intel_crtc->primary_enabled)
Ville Syrjäläfdd508a2014-08-08 21:51:11 +030011742 intel_disable_primary_hw_plane(plane, crtc);
Matt Roper465c1202014-05-29 08:06:54 -070011743
11744
11745 if (plane->fb != fb)
11746 if (plane->fb)
Daniel Vettera071fa02014-06-18 23:28:09 +020011747 intel_unpin_fb_obj(old_obj);
Matt Roper465c1202014-05-29 08:06:54 -070011748
Matt Roper4c345742014-07-09 16:22:10 -070011749 mutex_unlock(&dev->struct_mutex);
11750
Sonika Jindalce54d852014-08-21 11:44:39 +053011751 } else {
Sonika Jindal48404c12014-08-22 14:06:04 +053011752 if (intel_crtc && intel_crtc->active &&
11753 intel_crtc->primary_enabled) {
11754 /*
11755 * FBC does not work on some platforms for rotated
11756 * planes, so disable it when rotation is not 0 and
11757 * update it when rotation is set back to 0.
11758 *
11759 * FIXME: This is redundant with the fbc update done in
11760 * the primary plane enable function except that that
11761 * one is done too late. We eventually need to unify
11762 * this.
11763 */
11764 if (INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev) &&
11765 dev_priv->fbc.plane == intel_crtc->plane &&
11766 intel_plane->rotation != BIT(DRM_ROTATE_0)) {
11767 intel_disable_fbc(dev);
11768 }
11769 }
Sonika Jindalce54d852014-08-21 11:44:39 +053011770 ret = intel_pipe_set_base(crtc, src.x1, src.y1, fb);
11771 if (ret)
11772 return ret;
11773
11774 if (!intel_crtc->primary_enabled)
11775 intel_enable_primary_hw_plane(plane, crtc);
Matt Roper465c1202014-05-29 08:06:54 -070011776 }
11777
Sonika Jindalce54d852014-08-21 11:44:39 +053011778 intel_plane->crtc_x = orig.crtc_x;
11779 intel_plane->crtc_y = orig.crtc_y;
11780 intel_plane->crtc_w = orig.crtc_w;
11781 intel_plane->crtc_h = orig.crtc_h;
11782 intel_plane->src_x = orig.src_x;
11783 intel_plane->src_y = orig.src_y;
11784 intel_plane->src_w = orig.src_w;
11785 intel_plane->src_h = orig.src_h;
11786 intel_plane->obj = obj;
Matt Roper465c1202014-05-29 08:06:54 -070011787
11788 return 0;
11789}
11790
Matt Roper3d7d6512014-06-10 08:28:13 -070011791/* Common destruction function for both primary and cursor planes */
11792static void intel_plane_destroy(struct drm_plane *plane)
Matt Roper465c1202014-05-29 08:06:54 -070011793{
11794 struct intel_plane *intel_plane = to_intel_plane(plane);
11795 drm_plane_cleanup(plane);
11796 kfree(intel_plane);
11797}
11798
11799static const struct drm_plane_funcs intel_primary_plane_funcs = {
11800 .update_plane = intel_primary_plane_setplane,
11801 .disable_plane = intel_primary_plane_disable,
Matt Roper3d7d6512014-06-10 08:28:13 -070011802 .destroy = intel_plane_destroy,
Sonika Jindal48404c12014-08-22 14:06:04 +053011803 .set_property = intel_plane_set_property
Matt Roper465c1202014-05-29 08:06:54 -070011804};
11805
11806static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
11807 int pipe)
11808{
11809 struct intel_plane *primary;
11810 const uint32_t *intel_primary_formats;
11811 int num_formats;
11812
11813 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
11814 if (primary == NULL)
11815 return NULL;
11816
11817 primary->can_scale = false;
11818 primary->max_downscale = 1;
11819 primary->pipe = pipe;
11820 primary->plane = pipe;
Sonika Jindal48404c12014-08-22 14:06:04 +053011821 primary->rotation = BIT(DRM_ROTATE_0);
Matt Roper465c1202014-05-29 08:06:54 -070011822 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
11823 primary->plane = !pipe;
11824
11825 if (INTEL_INFO(dev)->gen <= 3) {
11826 intel_primary_formats = intel_primary_formats_gen2;
11827 num_formats = ARRAY_SIZE(intel_primary_formats_gen2);
11828 } else {
11829 intel_primary_formats = intel_primary_formats_gen4;
11830 num_formats = ARRAY_SIZE(intel_primary_formats_gen4);
11831 }
11832
11833 drm_universal_plane_init(dev, &primary->base, 0,
11834 &intel_primary_plane_funcs,
11835 intel_primary_formats, num_formats,
11836 DRM_PLANE_TYPE_PRIMARY);
Sonika Jindal48404c12014-08-22 14:06:04 +053011837
11838 if (INTEL_INFO(dev)->gen >= 4) {
11839 if (!dev->mode_config.rotation_property)
11840 dev->mode_config.rotation_property =
11841 drm_mode_create_rotation_property(dev,
11842 BIT(DRM_ROTATE_0) |
11843 BIT(DRM_ROTATE_180));
11844 if (dev->mode_config.rotation_property)
11845 drm_object_attach_property(&primary->base.base,
11846 dev->mode_config.rotation_property,
11847 primary->rotation);
11848 }
11849
Matt Roper465c1202014-05-29 08:06:54 -070011850 return &primary->base;
11851}
11852
Matt Roper3d7d6512014-06-10 08:28:13 -070011853static int
11854intel_cursor_plane_disable(struct drm_plane *plane)
11855{
11856 if (!plane->fb)
11857 return 0;
11858
11859 BUG_ON(!plane->crtc);
11860
11861 return intel_crtc_cursor_set_obj(plane->crtc, NULL, 0, 0);
11862}
11863
11864static int
11865intel_cursor_plane_update(struct drm_plane *plane, struct drm_crtc *crtc,
11866 struct drm_framebuffer *fb, int crtc_x, int crtc_y,
11867 unsigned int crtc_w, unsigned int crtc_h,
11868 uint32_t src_x, uint32_t src_y,
11869 uint32_t src_w, uint32_t src_h)
11870{
11871 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11872 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
11873 struct drm_i915_gem_object *obj = intel_fb->obj;
11874 struct drm_rect dest = {
11875 /* integer pixels */
11876 .x1 = crtc_x,
11877 .y1 = crtc_y,
11878 .x2 = crtc_x + crtc_w,
11879 .y2 = crtc_y + crtc_h,
11880 };
11881 struct drm_rect src = {
11882 /* 16.16 fixed point */
11883 .x1 = src_x,
11884 .y1 = src_y,
11885 .x2 = src_x + src_w,
11886 .y2 = src_y + src_h,
11887 };
11888 const struct drm_rect clip = {
11889 /* integer pixels */
Ville Syrjälä1add1432014-08-12 19:39:52 +030011890 .x2 = intel_crtc->active ? intel_crtc->config.pipe_src_w : 0,
11891 .y2 = intel_crtc->active ? intel_crtc->config.pipe_src_h : 0,
Matt Roper3d7d6512014-06-10 08:28:13 -070011892 };
11893 bool visible;
11894 int ret;
11895
11896 ret = drm_plane_helper_check_update(plane, crtc, fb,
11897 &src, &dest, &clip,
11898 DRM_PLANE_HELPER_NO_SCALING,
11899 DRM_PLANE_HELPER_NO_SCALING,
11900 true, true, &visible);
11901 if (ret)
11902 return ret;
11903
11904 crtc->cursor_x = crtc_x;
11905 crtc->cursor_y = crtc_y;
11906 if (fb != crtc->cursor->fb) {
11907 return intel_crtc_cursor_set_obj(crtc, obj, crtc_w, crtc_h);
11908 } else {
11909 intel_crtc_update_cursor(crtc, visible);
Daniel Vetter4ed91092014-08-08 20:27:01 +020011910
11911 intel_frontbuffer_flip(crtc->dev,
11912 INTEL_FRONTBUFFER_CURSOR(intel_crtc->pipe));
11913
Matt Roper3d7d6512014-06-10 08:28:13 -070011914 return 0;
11915 }
11916}
11917static const struct drm_plane_funcs intel_cursor_plane_funcs = {
11918 .update_plane = intel_cursor_plane_update,
11919 .disable_plane = intel_cursor_plane_disable,
11920 .destroy = intel_plane_destroy,
11921};
11922
11923static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
11924 int pipe)
11925{
11926 struct intel_plane *cursor;
11927
11928 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
11929 if (cursor == NULL)
11930 return NULL;
11931
11932 cursor->can_scale = false;
11933 cursor->max_downscale = 1;
11934 cursor->pipe = pipe;
11935 cursor->plane = pipe;
11936
11937 drm_universal_plane_init(dev, &cursor->base, 0,
11938 &intel_cursor_plane_funcs,
11939 intel_cursor_formats,
11940 ARRAY_SIZE(intel_cursor_formats),
11941 DRM_PLANE_TYPE_CURSOR);
11942 return &cursor->base;
11943}
11944
Hannes Ederb358d0a2008-12-18 21:18:47 +010011945static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -080011946{
Jani Nikulafbee40d2014-03-31 14:27:18 +030011947 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080011948 struct intel_crtc *intel_crtc;
Matt Roper3d7d6512014-06-10 08:28:13 -070011949 struct drm_plane *primary = NULL;
11950 struct drm_plane *cursor = NULL;
Matt Roper465c1202014-05-29 08:06:54 -070011951 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080011952
Daniel Vetter955382f2013-09-19 14:05:45 +020011953 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -080011954 if (intel_crtc == NULL)
11955 return;
11956
Matt Roper465c1202014-05-29 08:06:54 -070011957 primary = intel_primary_plane_create(dev, pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070011958 if (!primary)
11959 goto fail;
11960
11961 cursor = intel_cursor_plane_create(dev, pipe);
11962 if (!cursor)
11963 goto fail;
11964
Matt Roper465c1202014-05-29 08:06:54 -070011965 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
Matt Roper3d7d6512014-06-10 08:28:13 -070011966 cursor, &intel_crtc_funcs);
11967 if (ret)
11968 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080011969
11970 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -080011971 for (i = 0; i < 256; i++) {
11972 intel_crtc->lut_r[i] = i;
11973 intel_crtc->lut_g[i] = i;
11974 intel_crtc->lut_b[i] = i;
11975 }
11976
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020011977 /*
11978 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
Daniel Vetter8c0f92e2014-06-16 02:08:26 +020011979 * is hooked to pipe B. Hence we want plane A feeding pipe B.
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020011980 */
Jesse Barnes80824002009-09-10 15:28:06 -070011981 intel_crtc->pipe = pipe;
11982 intel_crtc->plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +010011983 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
Zhao Yakui28c97732009-10-09 11:39:41 +080011984 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +010011985 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -070011986 }
11987
Chris Wilson4b0e3332014-05-30 16:35:26 +030011988 intel_crtc->cursor_base = ~0;
11989 intel_crtc->cursor_cntl = ~0;
Ville Syrjälädc41c152014-08-13 11:57:05 +030011990 intel_crtc->cursor_size = ~0;
Chris Wilson4b0e3332014-05-30 16:35:26 +030011991
Jesse Barnes22fd0fa2009-12-02 13:42:53 -080011992 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
11993 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
11994 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
11995 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
11996
Jesse Barnes79e53942008-11-07 14:24:08 -080011997 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Daniel Vetter87b6b102014-05-15 15:33:46 +020011998
11999 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070012000 return;
12001
12002fail:
12003 if (primary)
12004 drm_plane_cleanup(primary);
12005 if (cursor)
12006 drm_plane_cleanup(cursor);
12007 kfree(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -080012008}
12009
Jesse Barnes752aa882013-10-31 18:55:49 +020012010enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
12011{
12012 struct drm_encoder *encoder = connector->base.encoder;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020012013 struct drm_device *dev = connector->base.dev;
Jesse Barnes752aa882013-10-31 18:55:49 +020012014
Rob Clark51fd3712013-11-19 12:10:12 -050012015 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Jesse Barnes752aa882013-10-31 18:55:49 +020012016
12017 if (!encoder)
12018 return INVALID_PIPE;
12019
12020 return to_intel_crtc(encoder->crtc)->pipe;
12021}
12022
Carl Worth08d7b3d2009-04-29 14:43:54 -070012023int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +000012024 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -070012025{
Carl Worth08d7b3d2009-04-29 14:43:54 -070012026 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Rob Clark7707e652014-07-17 23:30:04 -040012027 struct drm_crtc *drmmode_crtc;
Daniel Vetterc05422d2009-08-11 16:05:30 +020012028 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012029
Daniel Vetter1cff8f62012-04-24 09:55:08 +020012030 if (!drm_core_check_feature(dev, DRIVER_MODESET))
12031 return -ENODEV;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012032
Rob Clark7707e652014-07-17 23:30:04 -040012033 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
Carl Worth08d7b3d2009-04-29 14:43:54 -070012034
Rob Clark7707e652014-07-17 23:30:04 -040012035 if (!drmmode_crtc) {
Carl Worth08d7b3d2009-04-29 14:43:54 -070012036 DRM_ERROR("no such CRTC id\n");
Ville Syrjälä3f2c2052013-10-17 13:35:03 +030012037 return -ENOENT;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012038 }
12039
Rob Clark7707e652014-07-17 23:30:04 -040012040 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetterc05422d2009-08-11 16:05:30 +020012041 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012042
Daniel Vetterc05422d2009-08-11 16:05:30 +020012043 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012044}
12045
Daniel Vetter66a92782012-07-12 20:08:18 +020012046static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080012047{
Daniel Vetter66a92782012-07-12 20:08:18 +020012048 struct drm_device *dev = encoder->base.dev;
12049 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080012050 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080012051 int entry = 0;
12052
Damien Lespiaub2784e12014-08-05 11:29:37 +010012053 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020012054 if (encoders_cloneable(encoder, source_encoder))
Daniel Vetter66a92782012-07-12 20:08:18 +020012055 index_mask |= (1 << entry);
12056
Jesse Barnes79e53942008-11-07 14:24:08 -080012057 entry++;
12058 }
Chris Wilson4ef69c72010-09-09 15:14:28 +010012059
Jesse Barnes79e53942008-11-07 14:24:08 -080012060 return index_mask;
12061}
12062
Chris Wilson4d302442010-12-14 19:21:29 +000012063static bool has_edp_a(struct drm_device *dev)
12064{
12065 struct drm_i915_private *dev_priv = dev->dev_private;
12066
12067 if (!IS_MOBILE(dev))
12068 return false;
12069
12070 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
12071 return false;
12072
Damien Lespiaue3589902014-02-07 19:12:50 +000012073 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
Chris Wilson4d302442010-12-14 19:21:29 +000012074 return false;
12075
12076 return true;
12077}
12078
Damien Lespiauba0fbca2014-01-08 14:18:23 +000012079const char *intel_output_name(int output)
12080{
12081 static const char *names[] = {
12082 [INTEL_OUTPUT_UNUSED] = "Unused",
12083 [INTEL_OUTPUT_ANALOG] = "Analog",
12084 [INTEL_OUTPUT_DVO] = "DVO",
12085 [INTEL_OUTPUT_SDVO] = "SDVO",
12086 [INTEL_OUTPUT_LVDS] = "LVDS",
12087 [INTEL_OUTPUT_TVOUT] = "TV",
12088 [INTEL_OUTPUT_HDMI] = "HDMI",
12089 [INTEL_OUTPUT_DISPLAYPORT] = "DisplayPort",
12090 [INTEL_OUTPUT_EDP] = "eDP",
12091 [INTEL_OUTPUT_DSI] = "DSI",
12092 [INTEL_OUTPUT_UNKNOWN] = "Unknown",
12093 };
12094
12095 if (output < 0 || output >= ARRAY_SIZE(names) || !names[output])
12096 return "Invalid";
12097
12098 return names[output];
12099}
12100
Jesse Barnes84b4e042014-06-25 08:24:29 -070012101static bool intel_crt_present(struct drm_device *dev)
12102{
12103 struct drm_i915_private *dev_priv = dev->dev_private;
12104
12105 if (IS_ULT(dev))
12106 return false;
12107
12108 if (IS_CHERRYVIEW(dev))
12109 return false;
12110
12111 if (IS_VALLEYVIEW(dev) && !dev_priv->vbt.int_crt_support)
12112 return false;
12113
12114 return true;
12115}
12116
Jesse Barnes79e53942008-11-07 14:24:08 -080012117static void intel_setup_outputs(struct drm_device *dev)
12118{
Eric Anholt725e30a2009-01-22 13:01:02 -080012119 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +010012120 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012121 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -080012122
Daniel Vetterc9093352013-06-06 22:22:47 +020012123 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080012124
Jesse Barnes84b4e042014-06-25 08:24:29 -070012125 if (intel_crt_present(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -020012126 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012127
Paulo Zanoniaffa9352012-11-23 15:30:39 -020012128 if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030012129 int found;
12130
12131 /* Haswell uses DDI functions to detect digital outputs */
12132 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
12133 /* DDI A only supports eDP */
12134 if (found)
12135 intel_ddi_init(dev, PORT_A);
12136
12137 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
12138 * register */
12139 found = I915_READ(SFUSE_STRAP);
12140
12141 if (found & SFUSE_STRAP_DDIB_DETECTED)
12142 intel_ddi_init(dev, PORT_B);
12143 if (found & SFUSE_STRAP_DDIC_DETECTED)
12144 intel_ddi_init(dev, PORT_C);
12145 if (found & SFUSE_STRAP_DDID_DETECTED)
12146 intel_ddi_init(dev, PORT_D);
12147 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012148 int found;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020012149 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
Daniel Vetter270b3042012-10-27 15:52:05 +020012150
12151 if (has_edp_a(dev))
12152 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012153
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012154 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +080012155 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +010012156 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012157 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012158 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012159 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012160 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012161 }
12162
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012163 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012164 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012165
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012166 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012167 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012168
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012169 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012170 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012171
Daniel Vetter270b3042012-10-27 15:52:05 +020012172 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012173 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -070012174 } else if (IS_VALLEYVIEW(dev)) {
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030012175 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED) {
12176 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
12177 PORT_B);
12178 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED)
12179 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
12180 }
12181
Jesse Barnes6f6005a2013-08-09 09:34:35 -070012182 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED) {
12183 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
12184 PORT_C);
12185 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED)
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020012186 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
Jesse Barnes6f6005a2013-08-09 09:34:35 -070012187 }
Gajanan Bhat19c03922012-09-27 19:13:07 +053012188
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030012189 if (IS_CHERRYVIEW(dev)) {
12190 if (I915_READ(VLV_DISPLAY_BASE + CHV_HDMID) & SDVO_DETECTED) {
12191 intel_hdmi_init(dev, VLV_DISPLAY_BASE + CHV_HDMID,
12192 PORT_D);
12193 if (I915_READ(VLV_DISPLAY_BASE + DP_D) & DP_DETECTED)
12194 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_D, PORT_D);
12195 }
12196 }
12197
Jani Nikula3cfca972013-08-27 15:12:26 +030012198 intel_dsi_init(dev);
Zhenyu Wang103a1962009-11-27 11:44:36 +080012199 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +080012200 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -080012201
Paulo Zanonie2debe92013-02-18 19:00:27 -030012202 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012203 DRM_DEBUG_KMS("probing SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012204 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012205 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
12206 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012207 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012208 }
Ma Ling27185ae2009-08-24 13:50:23 +080012209
Imre Deake7281ea2013-05-08 13:14:08 +030012210 if (!found && SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012211 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -080012212 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -040012213
12214 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -040012215
Paulo Zanonie2debe92013-02-18 19:00:27 -030012216 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012217 DRM_DEBUG_KMS("probing SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012218 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012219 }
Ma Ling27185ae2009-08-24 13:50:23 +080012220
Paulo Zanonie2debe92013-02-18 19:00:27 -030012221 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +080012222
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012223 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
12224 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012225 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012226 }
Imre Deake7281ea2013-05-08 13:14:08 +030012227 if (SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012228 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -080012229 }
Ma Ling27185ae2009-08-24 13:50:23 +080012230
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012231 if (SUPPORTS_INTEGRATED_DP(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +030012232 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012233 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -070012234 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080012235 intel_dvo_init(dev);
12236
Zhenyu Wang103a1962009-11-27 11:44:36 +080012237 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080012238 intel_tv_init(dev);
12239
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -070012240 intel_edp_psr_init(dev);
12241
Damien Lespiaub2784e12014-08-05 11:29:37 +010012242 for_each_intel_encoder(dev, encoder) {
Chris Wilson4ef69c72010-09-09 15:14:28 +010012243 encoder->base.possible_crtcs = encoder->crtc_mask;
12244 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +020012245 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -080012246 }
Chris Wilson47356eb2011-01-11 17:06:04 +000012247
Paulo Zanonidde86e22012-12-01 12:04:25 -020012248 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +020012249
12250 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080012251}
12252
12253static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
12254{
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012255 struct drm_device *dev = fb->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -080012256 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -080012257
Daniel Vetteref2d6332014-02-10 18:00:38 +010012258 drm_framebuffer_cleanup(fb);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012259 mutex_lock(&dev->struct_mutex);
Daniel Vetteref2d6332014-02-10 18:00:38 +010012260 WARN_ON(!intel_fb->obj->framebuffer_references--);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012261 drm_gem_object_unreference(&intel_fb->obj->base);
12262 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080012263 kfree(intel_fb);
12264}
12265
12266static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +000012267 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -080012268 unsigned int *handle)
12269{
12270 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +000012271 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080012272
Chris Wilson05394f32010-11-08 19:18:58 +000012273 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -080012274}
12275
12276static const struct drm_framebuffer_funcs intel_fb_funcs = {
12277 .destroy = intel_user_framebuffer_destroy,
12278 .create_handle = intel_user_framebuffer_create_handle,
12279};
12280
Daniel Vetterb5ea6422014-03-02 21:18:00 +010012281static int intel_framebuffer_init(struct drm_device *dev,
12282 struct intel_framebuffer *intel_fb,
12283 struct drm_mode_fb_cmd2 *mode_cmd,
12284 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -080012285{
Jesse Barnesa57ce0b2014-02-07 12:10:35 -080012286 int aligned_height;
Chris Wilsona35cdaa2013-06-25 17:26:45 +010012287 int pitch_limit;
Jesse Barnes79e53942008-11-07 14:24:08 -080012288 int ret;
12289
Daniel Vetterdd4916c2013-10-09 21:23:51 +020012290 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
12291
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012292 if (obj->tiling_mode == I915_TILING_Y) {
12293 DRM_DEBUG("hardware does not support tiling Y\n");
Chris Wilson57cd6502010-08-08 12:34:44 +010012294 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012295 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012296
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012297 if (mode_cmd->pitches[0] & 63) {
12298 DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n",
12299 mode_cmd->pitches[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +010012300 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012301 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012302
Chris Wilsona35cdaa2013-06-25 17:26:45 +010012303 if (INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev)) {
12304 pitch_limit = 32*1024;
12305 } else if (INTEL_INFO(dev)->gen >= 4) {
12306 if (obj->tiling_mode)
12307 pitch_limit = 16*1024;
12308 else
12309 pitch_limit = 32*1024;
12310 } else if (INTEL_INFO(dev)->gen >= 3) {
12311 if (obj->tiling_mode)
12312 pitch_limit = 8*1024;
12313 else
12314 pitch_limit = 16*1024;
12315 } else
12316 /* XXX DSPC is limited to 4k tiled */
12317 pitch_limit = 8*1024;
12318
12319 if (mode_cmd->pitches[0] > pitch_limit) {
12320 DRM_DEBUG("%s pitch (%d) must be at less than %d\n",
12321 obj->tiling_mode ? "tiled" : "linear",
12322 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012323 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012324 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012325
12326 if (obj->tiling_mode != I915_TILING_NONE &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012327 mode_cmd->pitches[0] != obj->stride) {
12328 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
12329 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012330 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012331 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012332
Ville Syrjälä57779d02012-10-31 17:50:14 +020012333 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080012334 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020012335 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020012336 case DRM_FORMAT_RGB565:
12337 case DRM_FORMAT_XRGB8888:
12338 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020012339 break;
12340 case DRM_FORMAT_XRGB1555:
12341 case DRM_FORMAT_ARGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012342 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012343 DRM_DEBUG("unsupported pixel format: %s\n",
12344 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012345 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012346 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020012347 break;
12348 case DRM_FORMAT_XBGR8888:
12349 case DRM_FORMAT_ABGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020012350 case DRM_FORMAT_XRGB2101010:
12351 case DRM_FORMAT_ARGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020012352 case DRM_FORMAT_XBGR2101010:
12353 case DRM_FORMAT_ABGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012354 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012355 DRM_DEBUG("unsupported pixel format: %s\n",
12356 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012357 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012358 }
Jesse Barnesb5626742011-06-24 12:19:27 -070012359 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020012360 case DRM_FORMAT_YUYV:
12361 case DRM_FORMAT_UYVY:
12362 case DRM_FORMAT_YVYU:
12363 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012364 if (INTEL_INFO(dev)->gen < 5) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012365 DRM_DEBUG("unsupported pixel format: %s\n",
12366 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012367 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012368 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012369 break;
12370 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012371 DRM_DEBUG("unsupported pixel format: %s\n",
12372 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010012373 return -EINVAL;
12374 }
12375
Ville Syrjälä90f9a332012-10-31 17:50:19 +020012376 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
12377 if (mode_cmd->offsets[0] != 0)
12378 return -EINVAL;
12379
Jesse Barnesa57ce0b2014-02-07 12:10:35 -080012380 aligned_height = intel_align_height(dev, mode_cmd->height,
12381 obj->tiling_mode);
Daniel Vetter53155c02013-10-09 21:55:33 +020012382 /* FIXME drm helper for size checks (especially planar formats)? */
12383 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
12384 return -EINVAL;
12385
Daniel Vetterc7d73f62012-12-13 23:38:38 +010012386 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
12387 intel_fb->obj = obj;
Daniel Vetter80075d42013-10-09 21:23:52 +020012388 intel_fb->obj->framebuffer_references++;
Daniel Vetterc7d73f62012-12-13 23:38:38 +010012389
Jesse Barnes79e53942008-11-07 14:24:08 -080012390 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
12391 if (ret) {
12392 DRM_ERROR("framebuffer init failed %d\n", ret);
12393 return ret;
12394 }
12395
Jesse Barnes79e53942008-11-07 14:24:08 -080012396 return 0;
12397}
12398
Jesse Barnes79e53942008-11-07 14:24:08 -080012399static struct drm_framebuffer *
12400intel_user_framebuffer_create(struct drm_device *dev,
12401 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -080012402 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080012403{
Chris Wilson05394f32010-11-08 19:18:58 +000012404 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080012405
Jesse Barnes308e5bc2011-11-14 14:51:28 -080012406 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
12407 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +000012408 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010012409 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080012410
Chris Wilsond2dff872011-04-19 08:36:26 +010012411 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -080012412}
12413
Daniel Vetter4520f532013-10-09 09:18:51 +020012414#ifndef CONFIG_DRM_I915_FBDEV
Daniel Vetter0632fef2013-10-08 17:44:49 +020012415static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
Daniel Vetter4520f532013-10-09 09:18:51 +020012416{
12417}
12418#endif
12419
Jesse Barnes79e53942008-11-07 14:24:08 -080012420static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080012421 .fb_create = intel_user_framebuffer_create,
Daniel Vetter0632fef2013-10-08 17:44:49 +020012422 .output_poll_changed = intel_fbdev_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -080012423};
12424
Jesse Barnese70236a2009-09-21 10:42:27 -070012425/* Set up chip specific display functions */
12426static void intel_init_display(struct drm_device *dev)
12427{
12428 struct drm_i915_private *dev_priv = dev->dev_private;
12429
Daniel Vetteree9300b2013-06-03 22:40:22 +020012430 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
12431 dev_priv->display.find_dpll = g4x_find_best_dpll;
Chon Ming Leeef9348c2014-04-09 13:28:18 +030012432 else if (IS_CHERRYVIEW(dev))
12433 dev_priv->display.find_dpll = chv_find_best_dpll;
Daniel Vetteree9300b2013-06-03 22:40:22 +020012434 else if (IS_VALLEYVIEW(dev))
12435 dev_priv->display.find_dpll = vlv_find_best_dpll;
12436 else if (IS_PINEVIEW(dev))
12437 dev_priv->display.find_dpll = pnv_find_best_dpll;
12438 else
12439 dev_priv->display.find_dpll = i9xx_find_best_dpll;
12440
Paulo Zanoniaffa9352012-11-23 15:30:39 -020012441 if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012442 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Jesse Barnes4c6baa52014-03-07 08:57:50 -080012443 dev_priv->display.get_plane_config = ironlake_get_plane_config;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030012444 dev_priv->display.crtc_mode_set = haswell_crtc_mode_set;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020012445 dev_priv->display.crtc_enable = haswell_crtc_enable;
12446 dev_priv->display.crtc_disable = haswell_crtc_disable;
Daniel Vetterdf8ad702014-06-25 22:02:03 +030012447 dev_priv->display.off = ironlake_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070012448 dev_priv->display.update_primary_plane =
12449 ironlake_update_primary_plane;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030012450 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012451 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Jesse Barnes4c6baa52014-03-07 08:57:50 -080012452 dev_priv->display.get_plane_config = ironlake_get_plane_config;
Eric Anholtf564048e2011-03-30 13:01:02 -070012453 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +020012454 dev_priv->display.crtc_enable = ironlake_crtc_enable;
12455 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010012456 dev_priv->display.off = ironlake_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070012457 dev_priv->display.update_primary_plane =
12458 ironlake_update_primary_plane;
Jesse Barnes89b667f2013-04-18 14:51:36 -070012459 } else if (IS_VALLEYVIEW(dev)) {
12460 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Jesse Barnes1ad292b2014-03-07 08:57:49 -080012461 dev_priv->display.get_plane_config = i9xx_get_plane_config;
Jesse Barnes89b667f2013-04-18 14:51:36 -070012462 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
12463 dev_priv->display.crtc_enable = valleyview_crtc_enable;
12464 dev_priv->display.crtc_disable = i9xx_crtc_disable;
12465 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070012466 dev_priv->display.update_primary_plane =
12467 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070012468 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012469 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Jesse Barnes1ad292b2014-03-07 08:57:49 -080012470 dev_priv->display.get_plane_config = i9xx_get_plane_config;
Eric Anholtf564048e2011-03-30 13:01:02 -070012471 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +020012472 dev_priv->display.crtc_enable = i9xx_crtc_enable;
12473 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010012474 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070012475 dev_priv->display.update_primary_plane =
12476 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070012477 }
Jesse Barnese70236a2009-09-21 10:42:27 -070012478
Jesse Barnese70236a2009-09-21 10:42:27 -070012479 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070012480 if (IS_VALLEYVIEW(dev))
12481 dev_priv->display.get_display_clock_speed =
12482 valleyview_get_display_clock_speed;
12483 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -070012484 dev_priv->display.get_display_clock_speed =
12485 i945_get_display_clock_speed;
12486 else if (IS_I915G(dev))
12487 dev_priv->display.get_display_clock_speed =
12488 i915_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020012489 else if (IS_I945GM(dev) || IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070012490 dev_priv->display.get_display_clock_speed =
12491 i9xx_misc_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020012492 else if (IS_PINEVIEW(dev))
12493 dev_priv->display.get_display_clock_speed =
12494 pnv_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070012495 else if (IS_I915GM(dev))
12496 dev_priv->display.get_display_clock_speed =
12497 i915gm_get_display_clock_speed;
12498 else if (IS_I865G(dev))
12499 dev_priv->display.get_display_clock_speed =
12500 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +020012501 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070012502 dev_priv->display.get_display_clock_speed =
12503 i855_get_display_clock_speed;
12504 else /* 852, 830 */
12505 dev_priv->display.get_display_clock_speed =
12506 i830_get_display_clock_speed;
12507
Sonika Jindal3bb11b52014-08-11 09:06:39 +053012508 if (IS_G4X(dev)) {
Wu Fengguange0dac652011-09-05 14:25:34 +080012509 dev_priv->display.write_eld = g4x_write_eld;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053012510 } else if (IS_GEN5(dev)) {
12511 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
12512 dev_priv->display.write_eld = ironlake_write_eld;
12513 } else if (IS_GEN6(dev)) {
12514 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
12515 dev_priv->display.write_eld = ironlake_write_eld;
12516 dev_priv->display.modeset_global_resources =
12517 snb_modeset_global_resources;
12518 } else if (IS_IVYBRIDGE(dev)) {
12519 /* FIXME: detect B0+ stepping and use auto training */
12520 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
12521 dev_priv->display.write_eld = ironlake_write_eld;
12522 dev_priv->display.modeset_global_resources =
12523 ivb_modeset_global_resources;
Paulo Zanoni059b2fe2014-09-02 16:53:57 -030012524 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053012525 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
12526 dev_priv->display.write_eld = haswell_write_eld;
12527 dev_priv->display.modeset_global_resources =
12528 haswell_modeset_global_resources;
Jesse Barnes30a970c2013-11-04 13:48:12 -080012529 } else if (IS_VALLEYVIEW(dev)) {
12530 dev_priv->display.modeset_global_resources =
12531 valleyview_modeset_global_resources;
Mengdong Lin9ca2fe72013-11-01 00:17:03 -040012532 dev_priv->display.write_eld = ironlake_write_eld;
Jesse Barnese70236a2009-09-21 10:42:27 -070012533 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070012534
12535 /* Default just returns -ENODEV to indicate unsupported */
12536 dev_priv->display.queue_flip = intel_default_queue_flip;
12537
12538 switch (INTEL_INFO(dev)->gen) {
12539 case 2:
12540 dev_priv->display.queue_flip = intel_gen2_queue_flip;
12541 break;
12542
12543 case 3:
12544 dev_priv->display.queue_flip = intel_gen3_queue_flip;
12545 break;
12546
12547 case 4:
12548 case 5:
12549 dev_priv->display.queue_flip = intel_gen4_queue_flip;
12550 break;
12551
12552 case 6:
12553 dev_priv->display.queue_flip = intel_gen6_queue_flip;
12554 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070012555 case 7:
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070012556 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
Jesse Barnes7c9017e2011-06-16 12:18:54 -070012557 dev_priv->display.queue_flip = intel_gen7_queue_flip;
12558 break;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070012559 }
Jani Nikula7bd688c2013-11-08 16:48:56 +020012560
12561 intel_panel_init_backlight_funcs(dev);
Ville Syrjäläe39b9992014-09-04 14:53:14 +030012562
12563 mutex_init(&dev_priv->pps_mutex);
Jesse Barnese70236a2009-09-21 10:42:27 -070012564}
12565
Jesse Barnesb690e962010-07-19 13:53:12 -070012566/*
12567 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
12568 * resume, or other times. This quirk makes sure that's the case for
12569 * affected systems.
12570 */
Akshay Joshi0206e352011-08-16 15:34:10 -040012571static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070012572{
12573 struct drm_i915_private *dev_priv = dev->dev_private;
12574
12575 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020012576 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070012577}
12578
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030012579static void quirk_pipeb_force(struct drm_device *dev)
12580{
12581 struct drm_i915_private *dev_priv = dev->dev_private;
12582
12583 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
12584 DRM_INFO("applying pipe b force quirk\n");
12585}
12586
Keith Packard435793d2011-07-12 14:56:22 -070012587/*
12588 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
12589 */
12590static void quirk_ssc_force_disable(struct drm_device *dev)
12591{
12592 struct drm_i915_private *dev_priv = dev->dev_private;
12593 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020012594 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070012595}
12596
Carsten Emde4dca20e2012-03-15 15:56:26 +010012597/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010012598 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
12599 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010012600 */
12601static void quirk_invert_brightness(struct drm_device *dev)
12602{
12603 struct drm_i915_private *dev_priv = dev->dev_private;
12604 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020012605 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070012606}
12607
Scot Doyle9c72cc62014-07-03 23:27:50 +000012608/* Some VBT's incorrectly indicate no backlight is present */
12609static void quirk_backlight_present(struct drm_device *dev)
12610{
12611 struct drm_i915_private *dev_priv = dev->dev_private;
12612 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
12613 DRM_INFO("applying backlight present quirk\n");
12614}
12615
Jesse Barnesb690e962010-07-19 13:53:12 -070012616struct intel_quirk {
12617 int device;
12618 int subsystem_vendor;
12619 int subsystem_device;
12620 void (*hook)(struct drm_device *dev);
12621};
12622
Egbert Eich5f85f1762012-10-14 15:46:38 +020012623/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
12624struct intel_dmi_quirk {
12625 void (*hook)(struct drm_device *dev);
12626 const struct dmi_system_id (*dmi_id_list)[];
12627};
12628
12629static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
12630{
12631 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
12632 return 1;
12633}
12634
12635static const struct intel_dmi_quirk intel_dmi_quirks[] = {
12636 {
12637 .dmi_id_list = &(const struct dmi_system_id[]) {
12638 {
12639 .callback = intel_dmi_reverse_brightness,
12640 .ident = "NCR Corporation",
12641 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
12642 DMI_MATCH(DMI_PRODUCT_NAME, ""),
12643 },
12644 },
12645 { } /* terminating entry */
12646 },
12647 .hook = quirk_invert_brightness,
12648 },
12649};
12650
Ben Widawskyc43b5632012-04-16 14:07:40 -070012651static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070012652 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -040012653 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -070012654
Jesse Barnesb690e962010-07-19 13:53:12 -070012655 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
12656 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
12657
Jesse Barnesb690e962010-07-19 13:53:12 -070012658 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
12659 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
12660
Ville Syrjälä5f080c02014-08-15 01:22:06 +030012661 /* 830 needs to leave pipe A & dpll A up */
12662 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
12663
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030012664 /* 830 needs to leave pipe B & dpll B up */
12665 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
12666
Keith Packard435793d2011-07-12 14:56:22 -070012667 /* Lenovo U160 cannot use SSC on LVDS */
12668 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020012669
12670 /* Sony Vaio Y cannot use SSC on LVDS */
12671 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010012672
Alexander van Heukelumbe505f62013-12-28 21:00:39 +010012673 /* Acer Aspire 5734Z must invert backlight brightness */
12674 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
12675
12676 /* Acer/eMachines G725 */
12677 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
12678
12679 /* Acer/eMachines e725 */
12680 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
12681
12682 /* Acer/Packard Bell NCL20 */
12683 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
12684
12685 /* Acer Aspire 4736Z */
12686 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jani Nikula0f540c32014-01-13 17:30:34 +020012687
12688 /* Acer Aspire 5336 */
12689 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
Scot Doyle2e93a1a2014-07-03 23:27:51 +000012690
12691 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
12692 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
Scot Doyled4967d82014-07-03 23:27:52 +000012693
12694 /* Toshiba CB35 Chromebook (Celeron 2955U) */
12695 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
Scot Doyle724cb062014-07-11 22:16:30 +000012696
12697 /* HP Chromebook 14 (Celeron 2955U) */
12698 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
Jesse Barnesb690e962010-07-19 13:53:12 -070012699};
12700
12701static void intel_init_quirks(struct drm_device *dev)
12702{
12703 struct pci_dev *d = dev->pdev;
12704 int i;
12705
12706 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
12707 struct intel_quirk *q = &intel_quirks[i];
12708
12709 if (d->device == q->device &&
12710 (d->subsystem_vendor == q->subsystem_vendor ||
12711 q->subsystem_vendor == PCI_ANY_ID) &&
12712 (d->subsystem_device == q->subsystem_device ||
12713 q->subsystem_device == PCI_ANY_ID))
12714 q->hook(dev);
12715 }
Egbert Eich5f85f1762012-10-14 15:46:38 +020012716 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
12717 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
12718 intel_dmi_quirks[i].hook(dev);
12719 }
Jesse Barnesb690e962010-07-19 13:53:12 -070012720}
12721
Jesse Barnes9cce37f2010-08-13 15:11:26 -070012722/* Disable the VGA plane that we never use */
12723static void i915_disable_vga(struct drm_device *dev)
12724{
12725 struct drm_i915_private *dev_priv = dev->dev_private;
12726 u8 sr1;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020012727 u32 vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070012728
Ville Syrjälä2b37c612014-01-22 21:32:38 +020012729 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
Jesse Barnes9cce37f2010-08-13 15:11:26 -070012730 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070012731 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070012732 sr1 = inb(VGA_SR_DATA);
12733 outb(sr1 | 1<<5, VGA_SR_DATA);
12734 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
12735 udelay(300);
12736
Ville Syrjälä69769f92014-08-15 01:22:08 +030012737 /*
12738 * Fujitsu-Siemens Lifebook S6010 (830) has problems resuming
12739 * from S3 without preserving (some of?) the other bits.
12740 */
12741 I915_WRITE(vga_reg, dev_priv->bios_vgacntr | VGA_DISP_DISABLE);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070012742 POSTING_READ(vga_reg);
12743}
12744
Daniel Vetterf8175862012-04-10 15:50:11 +020012745void intel_modeset_init_hw(struct drm_device *dev)
12746{
Eugeni Dodonova8f78b52012-06-28 15:55:35 -030012747 intel_prepare_ddi(dev);
12748
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +030012749 if (IS_VALLEYVIEW(dev))
12750 vlv_update_cdclk(dev);
12751
Daniel Vetterf8175862012-04-10 15:50:11 +020012752 intel_init_clock_gating(dev);
12753
Daniel Vetter8090c6b2012-06-24 16:42:32 +020012754 intel_enable_gt_powersave(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020012755}
12756
Imre Deak7d708ee2013-04-17 14:04:50 +030012757void intel_modeset_suspend_hw(struct drm_device *dev)
12758{
12759 intel_suspend_hw(dev);
12760}
12761
Jesse Barnes79e53942008-11-07 14:24:08 -080012762void intel_modeset_init(struct drm_device *dev)
12763{
Jesse Barnes652c3932009-08-17 13:31:43 -070012764 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau1fe47782014-03-03 17:31:47 +000012765 int sprite, ret;
Damien Lespiau8cc87b72014-03-03 17:31:44 +000012766 enum pipe pipe;
Jesse Barnes46f297f2014-03-07 08:57:48 -080012767 struct intel_crtc *crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -080012768
12769 drm_mode_config_init(dev);
12770
12771 dev->mode_config.min_width = 0;
12772 dev->mode_config.min_height = 0;
12773
Dave Airlie019d96c2011-09-29 16:20:42 +010012774 dev->mode_config.preferred_depth = 24;
12775 dev->mode_config.prefer_shadow = 1;
12776
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020012777 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080012778
Jesse Barnesb690e962010-07-19 13:53:12 -070012779 intel_init_quirks(dev);
12780
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030012781 intel_init_pm(dev);
12782
Ben Widawskye3c74752013-04-05 13:12:39 -070012783 if (INTEL_INFO(dev)->num_pipes == 0)
12784 return;
12785
Jesse Barnese70236a2009-09-21 10:42:27 -070012786 intel_init_display(dev);
12787
Chris Wilsona6c45cf2010-09-17 00:32:17 +010012788 if (IS_GEN2(dev)) {
12789 dev->mode_config.max_width = 2048;
12790 dev->mode_config.max_height = 2048;
12791 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070012792 dev->mode_config.max_width = 4096;
12793 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080012794 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010012795 dev->mode_config.max_width = 8192;
12796 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080012797 }
Damien Lespiau068be562014-03-28 14:17:49 +000012798
Ville Syrjälädc41c152014-08-13 11:57:05 +030012799 if (IS_845G(dev) || IS_I865G(dev)) {
12800 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
12801 dev->mode_config.cursor_height = 1023;
12802 } else if (IS_GEN2(dev)) {
Damien Lespiau068be562014-03-28 14:17:49 +000012803 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
12804 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
12805 } else {
12806 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
12807 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
12808 }
12809
Ben Widawsky5d4545a2013-01-17 12:45:15 -080012810 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080012811
Zhao Yakui28c97732009-10-09 11:39:41 +080012812 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070012813 INTEL_INFO(dev)->num_pipes,
12814 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080012815
Damien Lespiau055e3932014-08-18 13:49:10 +010012816 for_each_pipe(dev_priv, pipe) {
Damien Lespiau8cc87b72014-03-03 17:31:44 +000012817 intel_crtc_init(dev, pipe);
Damien Lespiau1fe47782014-03-03 17:31:47 +000012818 for_each_sprite(pipe, sprite) {
12819 ret = intel_plane_init(dev, pipe, sprite);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070012820 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030012821 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +000012822 pipe_name(pipe), sprite_name(pipe, sprite), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070012823 }
Jesse Barnes79e53942008-11-07 14:24:08 -080012824 }
12825
Jesse Barnesf42bb702013-12-16 16:34:23 -080012826 intel_init_dpio(dev);
12827
Daniel Vettere72f9fb2013-06-05 13:34:06 +020012828 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010012829
Ville Syrjälä69769f92014-08-15 01:22:08 +030012830 /* save the BIOS value before clobbering it */
12831 dev_priv->bios_vgacntr = I915_READ(i915_vgacntrl_reg(dev));
Jesse Barnes9cce37f2010-08-13 15:11:26 -070012832 /* Just disable it once at startup */
12833 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080012834 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000012835
12836 /* Just in case the BIOS is doing something questionable. */
12837 intel_disable_fbc(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080012838
Daniel Vetter6e9f7982014-05-29 23:54:47 +020012839 drm_modeset_lock_all(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080012840 intel_modeset_setup_hw_state(dev, false);
Daniel Vetter6e9f7982014-05-29 23:54:47 +020012841 drm_modeset_unlock_all(dev);
Jesse Barnes46f297f2014-03-07 08:57:48 -080012842
Damien Lespiaud3fcc802014-05-13 23:32:22 +010012843 for_each_intel_crtc(dev, crtc) {
Jesse Barnes46f297f2014-03-07 08:57:48 -080012844 if (!crtc->active)
12845 continue;
12846
Jesse Barnes46f297f2014-03-07 08:57:48 -080012847 /*
Jesse Barnes46f297f2014-03-07 08:57:48 -080012848 * Note that reserving the BIOS fb up front prevents us
12849 * from stuffing other stolen allocations like the ring
12850 * on top. This prevents some ugliness at boot time, and
12851 * can even allow for smooth boot transitions if the BIOS
12852 * fb is large enough for the active pipe configuration.
12853 */
12854 if (dev_priv->display.get_plane_config) {
12855 dev_priv->display.get_plane_config(crtc,
12856 &crtc->plane_config);
12857 /*
12858 * If the fb is shared between multiple heads, we'll
12859 * just get the first one.
12860 */
Jesse Barnes484b41d2014-03-07 08:57:55 -080012861 intel_find_plane_obj(crtc, &crtc->plane_config);
Jesse Barnes46f297f2014-03-07 08:57:48 -080012862 }
Jesse Barnes46f297f2014-03-07 08:57:48 -080012863 }
Chris Wilson2c7111d2011-03-29 10:40:27 +010012864}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080012865
Daniel Vetter7fad7982012-07-04 17:51:47 +020012866static void intel_enable_pipe_a(struct drm_device *dev)
12867{
12868 struct intel_connector *connector;
12869 struct drm_connector *crt = NULL;
12870 struct intel_load_detect_pipe load_detect_temp;
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030012871 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
Daniel Vetter7fad7982012-07-04 17:51:47 +020012872
12873 /* We can't just switch on the pipe A, we need to set things up with a
12874 * proper mode and output configuration. As a gross hack, enable pipe A
12875 * by enabling the load detect pipe once. */
12876 list_for_each_entry(connector,
12877 &dev->mode_config.connector_list,
12878 base.head) {
12879 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
12880 crt = &connector->base;
12881 break;
12882 }
12883 }
12884
12885 if (!crt)
12886 return;
12887
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030012888 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
12889 intel_release_load_detect_pipe(crt, &load_detect_temp);
Daniel Vetter7fad7982012-07-04 17:51:47 +020012890}
12891
Daniel Vetterfa555832012-10-10 23:14:00 +020012892static bool
12893intel_check_plane_mapping(struct intel_crtc *crtc)
12894{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070012895 struct drm_device *dev = crtc->base.dev;
12896 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020012897 u32 reg, val;
12898
Ben Widawsky7eb552a2013-03-13 14:05:41 -070012899 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020012900 return true;
12901
12902 reg = DSPCNTR(!crtc->plane);
12903 val = I915_READ(reg);
12904
12905 if ((val & DISPLAY_PLANE_ENABLE) &&
12906 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
12907 return false;
12908
12909 return true;
12910}
12911
Daniel Vetter24929352012-07-02 20:28:59 +020012912static void intel_sanitize_crtc(struct intel_crtc *crtc)
12913{
12914 struct drm_device *dev = crtc->base.dev;
12915 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020012916 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +020012917
Daniel Vetter24929352012-07-02 20:28:59 +020012918 /* Clear any frame start delays used for debugging left by the BIOS */
Daniel Vetter3b117c82013-04-17 20:15:07 +020012919 reg = PIPECONF(crtc->config.cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +020012920 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
12921
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030012922 /* restore vblank interrupts to correct state */
12923 if (crtc->active)
12924 drm_vblank_on(dev, crtc->pipe);
12925 else
12926 drm_vblank_off(dev, crtc->pipe);
12927
Daniel Vetter24929352012-07-02 20:28:59 +020012928 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020012929 * disable the crtc (and hence change the state) if it is wrong. Note
12930 * that gen4+ has a fixed plane -> pipe mapping. */
12931 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020012932 struct intel_connector *connector;
12933 bool plane;
12934
Daniel Vetter24929352012-07-02 20:28:59 +020012935 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
12936 crtc->base.base.id);
12937
12938 /* Pipe has the wrong plane attached and the plane is active.
12939 * Temporarily change the plane mapping and disable everything
12940 * ... */
12941 plane = crtc->plane;
12942 crtc->plane = !plane;
Daniel Vetter9c8958b2014-07-14 19:35:31 +020012943 crtc->primary_enabled = true;
Daniel Vetter24929352012-07-02 20:28:59 +020012944 dev_priv->display.crtc_disable(&crtc->base);
12945 crtc->plane = plane;
12946
12947 /* ... and break all links. */
12948 list_for_each_entry(connector, &dev->mode_config.connector_list,
12949 base.head) {
12950 if (connector->encoder->base.crtc != &crtc->base)
12951 continue;
12952
Egbert Eich7f1950f2014-04-25 10:56:22 +020012953 connector->base.dpms = DRM_MODE_DPMS_OFF;
12954 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020012955 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020012956 /* multiple connectors may have the same encoder:
12957 * handle them and break crtc link separately */
12958 list_for_each_entry(connector, &dev->mode_config.connector_list,
12959 base.head)
12960 if (connector->encoder->base.crtc == &crtc->base) {
12961 connector->encoder->base.crtc = NULL;
12962 connector->encoder->connectors_active = false;
12963 }
Daniel Vetter24929352012-07-02 20:28:59 +020012964
12965 WARN_ON(crtc->active);
12966 crtc->base.enabled = false;
12967 }
Daniel Vetter24929352012-07-02 20:28:59 +020012968
Daniel Vetter7fad7982012-07-04 17:51:47 +020012969 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
12970 crtc->pipe == PIPE_A && !crtc->active) {
12971 /* BIOS forgot to enable pipe A, this mostly happens after
12972 * resume. Force-enable the pipe to fix this, the update_dpms
12973 * call below we restore the pipe to the right state, but leave
12974 * the required bits on. */
12975 intel_enable_pipe_a(dev);
12976 }
12977
Daniel Vetter24929352012-07-02 20:28:59 +020012978 /* Adjust the state of the output pipe according to whether we
12979 * have active connectors/encoders. */
12980 intel_crtc_update_dpms(&crtc->base);
12981
12982 if (crtc->active != crtc->base.enabled) {
12983 struct intel_encoder *encoder;
12984
12985 /* This can happen either due to bugs in the get_hw_state
12986 * functions or because the pipe is force-enabled due to the
12987 * pipe A quirk. */
12988 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
12989 crtc->base.base.id,
12990 crtc->base.enabled ? "enabled" : "disabled",
12991 crtc->active ? "enabled" : "disabled");
12992
12993 crtc->base.enabled = crtc->active;
12994
12995 /* Because we only establish the connector -> encoder ->
12996 * crtc links if something is active, this means the
12997 * crtc is now deactivated. Break the links. connector
12998 * -> encoder links are only establish when things are
12999 * actually up, hence no need to break them. */
13000 WARN_ON(crtc->active);
13001
13002 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
13003 WARN_ON(encoder->connectors_active);
13004 encoder->base.crtc = NULL;
13005 }
13006 }
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020013007
Ville Syrjäläa3ed6aa2014-09-03 14:09:52 +030013008 if (crtc->active || HAS_GMCH_DISPLAY(dev)) {
Daniel Vetter4cc31482014-03-24 00:01:41 +010013009 /*
13010 * We start out with underrun reporting disabled to avoid races.
13011 * For correct bookkeeping mark this on active crtcs.
13012 *
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020013013 * Also on gmch platforms we dont have any hardware bits to
13014 * disable the underrun reporting. Which means we need to start
13015 * out with underrun reporting disabled also on inactive pipes,
13016 * since otherwise we'll complain about the garbage we read when
13017 * e.g. coming up after runtime pm.
13018 *
Daniel Vetter4cc31482014-03-24 00:01:41 +010013019 * No protection against concurrent access is required - at
13020 * worst a fifo underrun happens which also sets this to false.
13021 */
13022 crtc->cpu_fifo_underrun_disabled = true;
13023 crtc->pch_fifo_underrun_disabled = true;
Ville Syrjälä80715b22014-05-15 20:23:23 +030013024
13025 update_scanline_offset(crtc);
Daniel Vetter4cc31482014-03-24 00:01:41 +010013026 }
Daniel Vetter24929352012-07-02 20:28:59 +020013027}
13028
13029static void intel_sanitize_encoder(struct intel_encoder *encoder)
13030{
13031 struct intel_connector *connector;
13032 struct drm_device *dev = encoder->base.dev;
13033
13034 /* We need to check both for a crtc link (meaning that the
13035 * encoder is active and trying to read from a pipe) and the
13036 * pipe itself being active. */
13037 bool has_active_crtc = encoder->base.crtc &&
13038 to_intel_crtc(encoder->base.crtc)->active;
13039
13040 if (encoder->connectors_active && !has_active_crtc) {
13041 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
13042 encoder->base.base.id,
Jani Nikula8e329a02014-06-03 14:56:21 +030013043 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020013044
13045 /* Connector is active, but has no active pipe. This is
13046 * fallout from our resume register restoring. Disable
13047 * the encoder manually again. */
13048 if (encoder->base.crtc) {
13049 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
13050 encoder->base.base.id,
Jani Nikula8e329a02014-06-03 14:56:21 +030013051 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020013052 encoder->disable(encoder);
Ville Syrjäläa62d1492014-06-28 02:04:01 +030013053 if (encoder->post_disable)
13054 encoder->post_disable(encoder);
Daniel Vetter24929352012-07-02 20:28:59 +020013055 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020013056 encoder->base.crtc = NULL;
13057 encoder->connectors_active = false;
Daniel Vetter24929352012-07-02 20:28:59 +020013058
13059 /* Inconsistent output/port/pipe state happens presumably due to
13060 * a bug in one of the get_hw_state functions. Or someplace else
13061 * in our code, like the register restore mess on resume. Clamp
13062 * things to off as a safer default. */
13063 list_for_each_entry(connector,
13064 &dev->mode_config.connector_list,
13065 base.head) {
13066 if (connector->encoder != encoder)
13067 continue;
Egbert Eich7f1950f2014-04-25 10:56:22 +020013068 connector->base.dpms = DRM_MODE_DPMS_OFF;
13069 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020013070 }
13071 }
13072 /* Enabled encoders without active connectors will be fixed in
13073 * the crtc fixup. */
13074}
13075
Imre Deak04098752014-02-18 00:02:16 +020013076void i915_redisable_vga_power_on(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013077{
13078 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020013079 u32 vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013080
Imre Deak04098752014-02-18 00:02:16 +020013081 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
13082 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
13083 i915_disable_vga(dev);
13084 }
13085}
13086
13087void i915_redisable_vga(struct drm_device *dev)
13088{
13089 struct drm_i915_private *dev_priv = dev->dev_private;
13090
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030013091 /* This function can be called both from intel_modeset_setup_hw_state or
13092 * at a very early point in our resume sequence, where the power well
13093 * structures are not yet restored. Since this function is at a very
13094 * paranoid "someone might have enabled VGA while we were not looking"
13095 * level, just check if the power well is enabled instead of trying to
13096 * follow the "don't touch the power well if we don't need it" policy
13097 * the rest of the driver uses. */
Imre Deak04098752014-02-18 00:02:16 +020013098 if (!intel_display_power_enabled(dev_priv, POWER_DOMAIN_VGA))
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030013099 return;
13100
Imre Deak04098752014-02-18 00:02:16 +020013101 i915_redisable_vga_power_on(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013102}
13103
Ville Syrjälä98ec7732014-04-30 17:43:01 +030013104static bool primary_get_hw_state(struct intel_crtc *crtc)
13105{
13106 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
13107
13108 if (!crtc->active)
13109 return false;
13110
13111 return I915_READ(DSPCNTR(crtc->plane)) & DISPLAY_PLANE_ENABLE;
13112}
13113
Daniel Vetter30e984d2013-06-05 13:34:17 +020013114static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020013115{
13116 struct drm_i915_private *dev_priv = dev->dev_private;
13117 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020013118 struct intel_crtc *crtc;
13119 struct intel_encoder *encoder;
13120 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020013121 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020013122
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013123 for_each_intel_crtc(dev, crtc) {
Daniel Vetter88adfff2013-03-28 10:42:01 +010013124 memset(&crtc->config, 0, sizeof(crtc->config));
Daniel Vetter3b117c82013-04-17 20:15:07 +020013125
Daniel Vetter99535992014-04-13 12:00:33 +020013126 crtc->config.quirks |= PIPE_CONFIG_QUIRK_INHERITED_MODE;
13127
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010013128 crtc->active = dev_priv->display.get_pipe_config(crtc,
13129 &crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020013130
13131 crtc->base.enabled = crtc->active;
Ville Syrjälä98ec7732014-04-30 17:43:01 +030013132 crtc->primary_enabled = primary_get_hw_state(crtc);
Daniel Vetter24929352012-07-02 20:28:59 +020013133
13134 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
13135 crtc->base.base.id,
13136 crtc->active ? "enabled" : "disabled");
13137 }
13138
Daniel Vetter53589012013-06-05 13:34:16 +020013139 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13140 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13141
13142 pll->on = pll->get_hw_state(dev_priv, pll, &pll->hw_state);
13143 pll->active = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013144 for_each_intel_crtc(dev, crtc) {
Daniel Vetter53589012013-06-05 13:34:16 +020013145 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
13146 pll->active++;
13147 }
13148 pll->refcount = pll->active;
13149
Daniel Vetter35c95372013-07-17 06:55:04 +020013150 DRM_DEBUG_KMS("%s hw state readout: refcount %i, on %i\n",
13151 pll->name, pll->refcount, pll->on);
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030013152
13153 if (pll->refcount)
13154 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
Daniel Vetter53589012013-06-05 13:34:16 +020013155 }
13156
Damien Lespiaub2784e12014-08-05 11:29:37 +010013157 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020013158 pipe = 0;
13159
13160 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -070013161 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
13162 encoder->base.crtc = &crtc->base;
Daniel Vetter1d37b682013-11-18 09:00:59 +010013163 encoder->get_config(encoder, &crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020013164 } else {
13165 encoder->base.crtc = NULL;
13166 }
13167
13168 encoder->connectors_active = false;
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010013169 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
Daniel Vetter24929352012-07-02 20:28:59 +020013170 encoder->base.base.id,
Jani Nikula8e329a02014-06-03 14:56:21 +030013171 encoder->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020013172 encoder->base.crtc ? "enabled" : "disabled",
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010013173 pipe_name(pipe));
Daniel Vetter24929352012-07-02 20:28:59 +020013174 }
13175
13176 list_for_each_entry(connector, &dev->mode_config.connector_list,
13177 base.head) {
13178 if (connector->get_hw_state(connector)) {
13179 connector->base.dpms = DRM_MODE_DPMS_ON;
13180 connector->encoder->connectors_active = true;
13181 connector->base.encoder = &connector->encoder->base;
13182 } else {
13183 connector->base.dpms = DRM_MODE_DPMS_OFF;
13184 connector->base.encoder = NULL;
13185 }
13186 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
13187 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030013188 connector->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020013189 connector->base.encoder ? "enabled" : "disabled");
13190 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020013191}
13192
13193/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
13194 * and i915 state tracking structures. */
13195void intel_modeset_setup_hw_state(struct drm_device *dev,
13196 bool force_restore)
13197{
13198 struct drm_i915_private *dev_priv = dev->dev_private;
13199 enum pipe pipe;
Daniel Vetter30e984d2013-06-05 13:34:17 +020013200 struct intel_crtc *crtc;
13201 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020013202 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020013203
13204 intel_modeset_readout_hw_state(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020013205
Jesse Barnesbabea612013-06-26 18:57:38 +030013206 /*
13207 * Now that we have the config, copy it to each CRTC struct
13208 * Note that this could go away if we move to using crtc_config
13209 * checking everywhere.
13210 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013211 for_each_intel_crtc(dev, crtc) {
Jani Nikulad330a952014-01-21 11:24:25 +020013212 if (crtc->active && i915.fastboot) {
Daniel Vetterf6a83282014-02-11 15:28:57 -080013213 intel_mode_from_pipe_config(&crtc->base.mode, &crtc->config);
Jesse Barnesbabea612013-06-26 18:57:38 +030013214 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
13215 crtc->base.base.id);
13216 drm_mode_debug_printmodeline(&crtc->base.mode);
13217 }
13218 }
13219
Daniel Vetter24929352012-07-02 20:28:59 +020013220 /* HW state is read out, now we need to sanitize this mess. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010013221 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020013222 intel_sanitize_encoder(encoder);
13223 }
13224
Damien Lespiau055e3932014-08-18 13:49:10 +010013225 for_each_pipe(dev_priv, pipe) {
Daniel Vetter24929352012-07-02 20:28:59 +020013226 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
13227 intel_sanitize_crtc(crtc);
Daniel Vetterc0b03412013-05-28 12:05:54 +020013228 intel_dump_pipe_config(crtc, &crtc->config, "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020013229 }
Daniel Vetter9a935852012-07-05 22:34:27 +020013230
Daniel Vetter35c95372013-07-17 06:55:04 +020013231 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13232 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13233
13234 if (!pll->on || pll->active)
13235 continue;
13236
13237 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
13238
13239 pll->disable(dev_priv, pll);
13240 pll->on = false;
13241 }
13242
Ville Syrjälä96f90c52013-12-05 15:51:38 +020013243 if (HAS_PCH_SPLIT(dev))
Ville Syrjälä243e6a42013-10-14 14:55:24 +030013244 ilk_wm_get_hw_state(dev);
13245
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010013246 if (force_restore) {
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030013247 i915_redisable_vga(dev);
13248
Daniel Vetterf30da182013-04-11 20:22:50 +020013249 /*
13250 * We need to use raw interfaces for restoring state to avoid
13251 * checking (bogus) intermediate states.
13252 */
Damien Lespiau055e3932014-08-18 13:49:10 +010013253 for_each_pipe(dev_priv, pipe) {
Jesse Barnesb5644d02013-03-26 13:25:27 -070013254 struct drm_crtc *crtc =
13255 dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vetterf30da182013-04-11 20:22:50 +020013256
13257 __intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
Matt Roperf4510a22014-04-01 15:22:40 -070013258 crtc->primary->fb);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010013259 }
13260 } else {
13261 intel_modeset_update_staged_output_state(dev);
13262 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013263
13264 intel_modeset_check_state(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +010013265}
13266
13267void intel_modeset_gem_init(struct drm_device *dev)
13268{
Jesse Barnes484b41d2014-03-07 08:57:55 -080013269 struct drm_crtc *c;
Matt Roper2ff8fde2014-07-08 07:50:07 -070013270 struct drm_i915_gem_object *obj;
Jesse Barnes484b41d2014-03-07 08:57:55 -080013271
Imre Deakae484342014-03-31 15:10:44 +030013272 mutex_lock(&dev->struct_mutex);
13273 intel_init_gt_powersave(dev);
13274 mutex_unlock(&dev->struct_mutex);
13275
Chris Wilson1833b132012-05-09 11:56:28 +010013276 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020013277
13278 intel_setup_overlay(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -080013279
13280 /*
13281 * Make sure any fbs we allocated at startup are properly
13282 * pinned & fenced. When we do the allocation it's too early
13283 * for this.
13284 */
13285 mutex_lock(&dev->struct_mutex);
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010013286 for_each_crtc(dev, c) {
Matt Roper2ff8fde2014-07-08 07:50:07 -070013287 obj = intel_fb_obj(c->primary->fb);
13288 if (obj == NULL)
Jesse Barnes484b41d2014-03-07 08:57:55 -080013289 continue;
13290
Matt Roper2ff8fde2014-07-08 07:50:07 -070013291 if (intel_pin_and_fence_fb_obj(dev, obj, NULL)) {
Jesse Barnes484b41d2014-03-07 08:57:55 -080013292 DRM_ERROR("failed to pin boot fb on pipe %d\n",
13293 to_intel_crtc(c)->pipe);
Dave Airlie66e514c2014-04-03 07:51:54 +100013294 drm_framebuffer_unreference(c->primary->fb);
13295 c->primary->fb = NULL;
Jesse Barnes484b41d2014-03-07 08:57:55 -080013296 }
13297 }
13298 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080013299}
13300
Imre Deak4932e2c2014-02-11 17:12:48 +020013301void intel_connector_unregister(struct intel_connector *intel_connector)
13302{
13303 struct drm_connector *connector = &intel_connector->base;
13304
13305 intel_panel_destroy_backlight(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +010013306 drm_connector_unregister(connector);
Imre Deak4932e2c2014-02-11 17:12:48 +020013307}
13308
Jesse Barnes79e53942008-11-07 14:24:08 -080013309void intel_modeset_cleanup(struct drm_device *dev)
13310{
Jesse Barnes652c3932009-08-17 13:31:43 -070013311 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid9255d52013-09-26 20:05:59 -030013312 struct drm_connector *connector;
Jesse Barnes652c3932009-08-17 13:31:43 -070013313
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013314 /*
13315 * Interrupts and polling as the first thing to avoid creating havoc.
13316 * Too much stuff here (turning of rps, connectors, ...) would
13317 * experience fancy races otherwise.
13318 */
13319 drm_irq_uninstall(dev);
Imre Deak1d0d3432014-08-18 14:42:44 +030013320 intel_hpd_cancel_work(dev_priv);
Jesse Barneseb21b922014-06-20 11:57:33 -070013321 dev_priv->pm._irqs_disabled = true;
13322
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013323 /*
13324 * Due to the hpd irq storm handling the hotplug work can re-arm the
13325 * poll handlers. Hence disable polling after hpd handling is shut down.
13326 */
Keith Packardf87ea762010-10-03 19:36:26 -070013327 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013328
Jesse Barnes652c3932009-08-17 13:31:43 -070013329 mutex_lock(&dev->struct_mutex);
13330
Jesse Barnes723bfd72010-10-07 16:01:13 -070013331 intel_unregister_dsm_handler();
13332
Chris Wilson973d04f2011-07-08 12:22:37 +010013333 intel_disable_fbc(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070013334
Daniel Vetter8090c6b2012-06-24 16:42:32 +020013335 intel_disable_gt_powersave(dev);
Chris Wilson0cdab212010-12-05 17:27:06 +000013336
Daniel Vetter930ebb42012-06-29 23:32:16 +020013337 ironlake_teardown_rc6(dev);
13338
Kristian Høgsberg69341a52009-11-11 12:19:17 -050013339 mutex_unlock(&dev->struct_mutex);
13340
Chris Wilson1630fe72011-07-08 12:22:42 +010013341 /* flush any delayed tasks or pending work */
13342 flush_scheduled_work();
13343
Jani Nikuladb31af12013-11-08 16:48:53 +020013344 /* destroy the backlight and sysfs files before encoders/connectors */
13345 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Imre Deak4932e2c2014-02-11 17:12:48 +020013346 struct intel_connector *intel_connector;
13347
13348 intel_connector = to_intel_connector(connector);
13349 intel_connector->unregister(intel_connector);
Jani Nikuladb31af12013-11-08 16:48:53 +020013350 }
Paulo Zanonid9255d52013-09-26 20:05:59 -030013351
Jesse Barnes79e53942008-11-07 14:24:08 -080013352 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010013353
13354 intel_cleanup_overlay(dev);
Imre Deakae484342014-03-31 15:10:44 +030013355
13356 mutex_lock(&dev->struct_mutex);
13357 intel_cleanup_gt_powersave(dev);
13358 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080013359}
13360
Dave Airlie28d52042009-09-21 14:33:58 +100013361/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +080013362 * Return which encoder is currently attached for connector.
13363 */
Chris Wilsondf0e9242010-09-09 16:20:55 +010013364struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -080013365{
Chris Wilsondf0e9242010-09-09 16:20:55 +010013366 return &intel_attached_encoder(connector)->base;
13367}
Jesse Barnes79e53942008-11-07 14:24:08 -080013368
Chris Wilsondf0e9242010-09-09 16:20:55 +010013369void intel_connector_attach_encoder(struct intel_connector *connector,
13370 struct intel_encoder *encoder)
13371{
13372 connector->encoder = encoder;
13373 drm_mode_connector_attach_encoder(&connector->base,
13374 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080013375}
Dave Airlie28d52042009-09-21 14:33:58 +100013376
13377/*
13378 * set vga decode state - true == enable VGA decode
13379 */
13380int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
13381{
13382 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona885b3c2013-12-17 14:34:50 +000013383 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
Dave Airlie28d52042009-09-21 14:33:58 +100013384 u16 gmch_ctrl;
13385
Chris Wilson75fa0412014-02-07 18:37:02 -020013386 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
13387 DRM_ERROR("failed to read control word\n");
13388 return -EIO;
13389 }
13390
Chris Wilsonc0cc8a52014-02-07 18:37:03 -020013391 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
13392 return 0;
13393
Dave Airlie28d52042009-09-21 14:33:58 +100013394 if (state)
13395 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
13396 else
13397 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
Chris Wilson75fa0412014-02-07 18:37:02 -020013398
13399 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
13400 DRM_ERROR("failed to write control word\n");
13401 return -EIO;
13402 }
13403
Dave Airlie28d52042009-09-21 14:33:58 +100013404 return 0;
13405}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013406
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013407struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030013408
13409 u32 power_well_driver;
13410
Chris Wilson63b66e52013-08-08 15:12:06 +020013411 int num_transcoders;
13412
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013413 struct intel_cursor_error_state {
13414 u32 control;
13415 u32 position;
13416 u32 base;
13417 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010013418 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013419
13420 struct intel_pipe_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020013421 bool power_domain_on;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013422 u32 source;
Imre Deakf301b1e2014-04-18 15:55:04 +030013423 u32 stat;
Damien Lespiau52331302012-08-15 19:23:25 +010013424 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013425
13426 struct intel_plane_error_state {
13427 u32 control;
13428 u32 stride;
13429 u32 size;
13430 u32 pos;
13431 u32 addr;
13432 u32 surface;
13433 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010013434 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020013435
13436 struct intel_transcoder_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020013437 bool power_domain_on;
Chris Wilson63b66e52013-08-08 15:12:06 +020013438 enum transcoder cpu_transcoder;
13439
13440 u32 conf;
13441
13442 u32 htotal;
13443 u32 hblank;
13444 u32 hsync;
13445 u32 vtotal;
13446 u32 vblank;
13447 u32 vsync;
13448 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013449};
13450
13451struct intel_display_error_state *
13452intel_display_capture_error_state(struct drm_device *dev)
13453{
Jani Nikulafbee40d2014-03-31 14:27:18 +030013454 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013455 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020013456 int transcoders[] = {
13457 TRANSCODER_A,
13458 TRANSCODER_B,
13459 TRANSCODER_C,
13460 TRANSCODER_EDP,
13461 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013462 int i;
13463
Chris Wilson63b66e52013-08-08 15:12:06 +020013464 if (INTEL_INFO(dev)->num_pipes == 0)
13465 return NULL;
13466
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020013467 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013468 if (error == NULL)
13469 return NULL;
13470
Imre Deak190be112013-11-25 17:15:31 +020013471 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030013472 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
13473
Damien Lespiau055e3932014-08-18 13:49:10 +010013474 for_each_pipe(dev_priv, i) {
Imre Deakddf9c532013-11-27 22:02:02 +020013475 error->pipe[i].power_domain_on =
Imre Deakbfafe932014-06-05 20:31:47 +030013476 intel_display_power_enabled_unlocked(dev_priv,
13477 POWER_DOMAIN_PIPE(i));
Imre Deakddf9c532013-11-27 22:02:02 +020013478 if (!error->pipe[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020013479 continue;
13480
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030013481 error->cursor[i].control = I915_READ(CURCNTR(i));
13482 error->cursor[i].position = I915_READ(CURPOS(i));
13483 error->cursor[i].base = I915_READ(CURBASE(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013484
13485 error->plane[i].control = I915_READ(DSPCNTR(i));
13486 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030013487 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030013488 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030013489 error->plane[i].pos = I915_READ(DSPPOS(i));
13490 }
Paulo Zanonica291362013-03-06 20:03:14 -030013491 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
13492 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013493 if (INTEL_INFO(dev)->gen >= 4) {
13494 error->plane[i].surface = I915_READ(DSPSURF(i));
13495 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
13496 }
13497
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013498 error->pipe[i].source = I915_READ(PIPESRC(i));
Imre Deakf301b1e2014-04-18 15:55:04 +030013499
Sonika Jindal3abfce72014-07-21 15:23:43 +053013500 if (HAS_GMCH_DISPLAY(dev))
Imre Deakf301b1e2014-04-18 15:55:04 +030013501 error->pipe[i].stat = I915_READ(PIPESTAT(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020013502 }
13503
13504 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
13505 if (HAS_DDI(dev_priv->dev))
13506 error->num_transcoders++; /* Account for eDP. */
13507
13508 for (i = 0; i < error->num_transcoders; i++) {
13509 enum transcoder cpu_transcoder = transcoders[i];
13510
Imre Deakddf9c532013-11-27 22:02:02 +020013511 error->transcoder[i].power_domain_on =
Imre Deakbfafe932014-06-05 20:31:47 +030013512 intel_display_power_enabled_unlocked(dev_priv,
Paulo Zanoni38cc1da2013-12-20 15:09:41 -020013513 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020013514 if (!error->transcoder[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020013515 continue;
13516
Chris Wilson63b66e52013-08-08 15:12:06 +020013517 error->transcoder[i].cpu_transcoder = cpu_transcoder;
13518
13519 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
13520 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
13521 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
13522 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
13523 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
13524 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
13525 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013526 }
13527
13528 return error;
13529}
13530
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013531#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
13532
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013533void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013534intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013535 struct drm_device *dev,
13536 struct intel_display_error_state *error)
13537{
Damien Lespiau055e3932014-08-18 13:49:10 +010013538 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013539 int i;
13540
Chris Wilson63b66e52013-08-08 15:12:06 +020013541 if (!error)
13542 return;
13543
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013544 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Imre Deak190be112013-11-25 17:15:31 +020013545 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013546 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030013547 error->power_well_driver);
Damien Lespiau055e3932014-08-18 13:49:10 +010013548 for_each_pipe(dev_priv, i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013549 err_printf(m, "Pipe [%d]:\n", i);
Imre Deakddf9c532013-11-27 22:02:02 +020013550 err_printf(m, " Power: %s\n",
13551 error->pipe[i].power_domain_on ? "on" : "off");
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013552 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Imre Deakf301b1e2014-04-18 15:55:04 +030013553 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013554
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013555 err_printf(m, "Plane [%d]:\n", i);
13556 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
13557 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030013558 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013559 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
13560 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030013561 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030013562 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013563 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013564 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013565 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
13566 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013567 }
13568
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013569 err_printf(m, "Cursor [%d]:\n", i);
13570 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
13571 err_printf(m, " POS: %08x\n", error->cursor[i].position);
13572 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013573 }
Chris Wilson63b66e52013-08-08 15:12:06 +020013574
13575 for (i = 0; i < error->num_transcoders; i++) {
Chris Wilson1cf84bb2013-10-21 09:10:33 +010013576 err_printf(m, "CPU transcoder: %c\n",
Chris Wilson63b66e52013-08-08 15:12:06 +020013577 transcoder_name(error->transcoder[i].cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020013578 err_printf(m, " Power: %s\n",
13579 error->transcoder[i].power_domain_on ? "on" : "off");
Chris Wilson63b66e52013-08-08 15:12:06 +020013580 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
13581 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
13582 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
13583 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
13584 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
13585 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
13586 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
13587 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013588}
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030013589
13590void intel_modeset_preclose(struct drm_device *dev, struct drm_file *file)
13591{
13592 struct intel_crtc *crtc;
13593
13594 for_each_intel_crtc(dev, crtc) {
13595 struct intel_unpin_work *work;
13596 unsigned long irqflags;
13597
13598 spin_lock_irqsave(&dev->event_lock, irqflags);
13599
13600 work = crtc->unpin_work;
13601
13602 if (work && work->event &&
13603 work->event->base.file_priv == file) {
13604 kfree(work->event);
13605 work->event = NULL;
13606 }
13607
13608 spin_unlock_irqrestore(&dev->event_lock, irqflags);
13609 }
13610}