blob: c7e05ed36e1ddceb3e4dcde04491df63acc261e9 [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
Daniel Vetter8e636782012-01-22 01:36:48 +01001264 /* if we need the pipe A quirk it must be always on */
1265 if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
1266 state = true;
1267
Imre Deakda7e29b2014-02-18 00:02:02 +02001268 if (!intel_display_power_enabled(dev_priv,
Paulo Zanonib97186f2013-05-03 12:15:36 -03001269 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
Paulo Zanoni69310162013-01-29 16:35:19 -02001270 cur_state = false;
1271 } else {
1272 reg = PIPECONF(cpu_transcoder);
1273 val = I915_READ(reg);
1274 cur_state = !!(val & PIPECONF_ENABLE);
1275 }
1276
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001277 WARN(cur_state != state,
1278 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001279 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001280}
1281
Chris Wilson931872f2012-01-16 23:01:13 +00001282static void assert_plane(struct drm_i915_private *dev_priv,
1283 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001284{
1285 int reg;
1286 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001287 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001288
1289 reg = DSPCNTR(plane);
1290 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001291 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
1292 WARN(cur_state != state,
1293 "plane %c assertion failure (expected %s, current %s)\n",
1294 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001295}
1296
Chris Wilson931872f2012-01-16 23:01:13 +00001297#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1298#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1299
Jesse Barnesb24e7172011-01-04 15:09:30 -08001300static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1301 enum pipe pipe)
1302{
Ville Syrjälä653e1022013-06-04 13:49:05 +03001303 struct drm_device *dev = dev_priv->dev;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001304 int reg, i;
1305 u32 val;
1306 int cur_pipe;
1307
Ville Syrjälä653e1022013-06-04 13:49:05 +03001308 /* Primary planes are fixed to pipes on gen4+ */
1309 if (INTEL_INFO(dev)->gen >= 4) {
Adam Jackson28c057942011-10-07 14:38:42 -04001310 reg = DSPCNTR(pipe);
1311 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001312 WARN(val & DISPLAY_PLANE_ENABLE,
Adam Jackson28c057942011-10-07 14:38:42 -04001313 "plane %c assertion failure, should be disabled but not\n",
1314 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001315 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001316 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001317
Jesse Barnesb24e7172011-01-04 15:09:30 -08001318 /* Need to check both planes against the pipe */
Damien Lespiau055e3932014-08-18 13:49:10 +01001319 for_each_pipe(dev_priv, i) {
Jesse Barnesb24e7172011-01-04 15:09:30 -08001320 reg = DSPCNTR(i);
1321 val = I915_READ(reg);
1322 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1323 DISPPLANE_SEL_PIPE_SHIFT;
1324 WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001325 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1326 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001327 }
1328}
1329
Jesse Barnes19332d72013-03-28 09:55:38 -07001330static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1331 enum pipe pipe)
1332{
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001333 struct drm_device *dev = dev_priv->dev;
Damien Lespiau1fe47782014-03-03 17:31:47 +00001334 int reg, sprite;
Jesse Barnes19332d72013-03-28 09:55:38 -07001335 u32 val;
1336
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001337 if (IS_VALLEYVIEW(dev)) {
Damien Lespiau1fe47782014-03-03 17:31:47 +00001338 for_each_sprite(pipe, sprite) {
1339 reg = SPCNTR(pipe, sprite);
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001340 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001341 WARN(val & SP_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001342 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +00001343 sprite_name(pipe, sprite), pipe_name(pipe));
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001344 }
1345 } else if (INTEL_INFO(dev)->gen >= 7) {
1346 reg = SPRCTL(pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07001347 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001348 WARN(val & SPRITE_ENABLE,
Ville Syrjälä06da8da2013-04-17 17:48:51 +03001349 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001350 plane_name(pipe), pipe_name(pipe));
1351 } else if (INTEL_INFO(dev)->gen >= 5) {
1352 reg = DVSCNTR(pipe);
1353 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001354 WARN(val & DVS_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001355 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1356 plane_name(pipe), pipe_name(pipe));
Jesse Barnes19332d72013-03-28 09:55:38 -07001357 }
1358}
1359
Paulo Zanoni89eff4b2014-01-08 11:12:28 -02001360static void ibx_assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
Jesse Barnes92f25842011-01-04 15:09:34 -08001361{
1362 u32 val;
1363 bool enabled;
1364
Paulo Zanoni89eff4b2014-01-08 11:12:28 -02001365 WARN_ON(!(HAS_PCH_IBX(dev_priv->dev) || HAS_PCH_CPT(dev_priv->dev)));
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001366
Jesse Barnes92f25842011-01-04 15:09:34 -08001367 val = I915_READ(PCH_DREF_CONTROL);
1368 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1369 DREF_SUPERSPREAD_SOURCE_MASK));
1370 WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
1371}
1372
Daniel Vetterab9412b2013-05-03 11:49:46 +02001373static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1374 enum pipe pipe)
Jesse Barnes92f25842011-01-04 15:09:34 -08001375{
1376 int reg;
1377 u32 val;
1378 bool enabled;
1379
Daniel Vetterab9412b2013-05-03 11:49:46 +02001380 reg = PCH_TRANSCONF(pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001381 val = I915_READ(reg);
1382 enabled = !!(val & TRANS_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001383 WARN(enabled,
1384 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1385 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001386}
1387
Keith Packard4e634382011-08-06 10:39:45 -07001388static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1389 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001390{
1391 if ((val & DP_PORT_EN) == 0)
1392 return false;
1393
1394 if (HAS_PCH_CPT(dev_priv->dev)) {
1395 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1396 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1397 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1398 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001399 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1400 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1401 return false;
Keith Packardf0575e92011-07-25 22:12:43 -07001402 } else {
1403 if ((val & DP_PIPE_MASK) != (pipe << 30))
1404 return false;
1405 }
1406 return true;
1407}
1408
Keith Packard1519b992011-08-06 10:35:34 -07001409static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1410 enum pipe pipe, u32 val)
1411{
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001412 if ((val & SDVO_ENABLE) == 0)
Keith Packard1519b992011-08-06 10:35:34 -07001413 return false;
1414
1415 if (HAS_PCH_CPT(dev_priv->dev)) {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001416 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001417 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001418 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1419 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1420 return false;
Keith Packard1519b992011-08-06 10:35:34 -07001421 } else {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001422 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001423 return false;
1424 }
1425 return true;
1426}
1427
1428static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1429 enum pipe pipe, u32 val)
1430{
1431 if ((val & LVDS_PORT_EN) == 0)
1432 return false;
1433
1434 if (HAS_PCH_CPT(dev_priv->dev)) {
1435 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1436 return false;
1437 } else {
1438 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1439 return false;
1440 }
1441 return true;
1442}
1443
1444static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1445 enum pipe pipe, u32 val)
1446{
1447 if ((val & ADPA_DAC_ENABLE) == 0)
1448 return false;
1449 if (HAS_PCH_CPT(dev_priv->dev)) {
1450 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1451 return false;
1452 } else {
1453 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1454 return false;
1455 }
1456 return true;
1457}
1458
Jesse Barnes291906f2011-02-02 12:28:03 -08001459static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001460 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001461{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001462 u32 val = I915_READ(reg);
Keith Packard4e634382011-08-06 10:39:45 -07001463 WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001464 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001465 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001466
Daniel Vetter75c5da22012-09-10 21:58:29 +02001467 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
1468 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001469 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001470}
1471
1472static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1473 enum pipe pipe, int reg)
1474{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001475 u32 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001476 WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001477 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001478 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001479
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001480 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001481 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001482 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001483}
1484
1485static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1486 enum pipe pipe)
1487{
1488 int reg;
1489 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001490
Keith Packardf0575e92011-07-25 22:12:43 -07001491 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1492 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1493 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001494
1495 reg = PCH_ADPA;
1496 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001497 WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001498 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001499 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001500
1501 reg = PCH_LVDS;
1502 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001503 WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001504 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001505 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001506
Paulo Zanonie2debe92013-02-18 19:00:27 -03001507 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1508 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1509 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
Jesse Barnes291906f2011-02-02 12:28:03 -08001510}
1511
Jesse Barnes40e9cf62013-10-03 11:35:46 -07001512static void intel_init_dpio(struct drm_device *dev)
1513{
1514 struct drm_i915_private *dev_priv = dev->dev_private;
1515
1516 if (!IS_VALLEYVIEW(dev))
1517 return;
1518
Chon Ming Leea09cadd2014-04-09 13:28:14 +03001519 /*
1520 * IOSF_PORT_DPIO is used for VLV x2 PHY (DP/HDMI B and C),
1521 * CHV x1 PHY (DP/HDMI D)
1522 * IOSF_PORT_DPIO_2 is used for CHV x2 PHY (DP/HDMI B and C)
1523 */
1524 if (IS_CHERRYVIEW(dev)) {
1525 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO_2;
1526 DPIO_PHY_IOSF_PORT(DPIO_PHY1) = IOSF_PORT_DPIO;
1527 } else {
1528 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO;
1529 }
Jesse Barnes5382f5f352013-12-16 16:34:24 -08001530}
1531
Daniel Vetter426115c2013-07-11 22:13:42 +02001532static void vlv_enable_pll(struct intel_crtc *crtc)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001533{
Daniel Vetter426115c2013-07-11 22:13:42 +02001534 struct drm_device *dev = crtc->base.dev;
1535 struct drm_i915_private *dev_priv = dev->dev_private;
1536 int reg = DPLL(crtc->pipe);
1537 u32 dpll = crtc->config.dpll_hw_state.dpll;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001538
Daniel Vetter426115c2013-07-11 22:13:42 +02001539 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001540
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001541 /* No really, not for ILK+ */
Daniel Vetter87442f72013-06-06 00:52:17 +02001542 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev));
1543
1544 /* PLL is protected by panel, make sure we can write it */
Jani Nikula6a9e7362014-08-22 15:06:35 +03001545 if (IS_MOBILE(dev_priv->dev))
Daniel Vetter426115c2013-07-11 22:13:42 +02001546 assert_panel_unlocked(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001547
Daniel Vetter426115c2013-07-11 22:13:42 +02001548 I915_WRITE(reg, dpll);
1549 POSTING_READ(reg);
1550 udelay(150);
1551
1552 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1553 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1554
1555 I915_WRITE(DPLL_MD(crtc->pipe), crtc->config.dpll_hw_state.dpll_md);
1556 POSTING_READ(DPLL_MD(crtc->pipe));
Daniel Vetter87442f72013-06-06 00:52:17 +02001557
1558 /* We do this three times for luck */
Daniel Vetter426115c2013-07-11 22:13:42 +02001559 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001560 POSTING_READ(reg);
1561 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001562 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001563 POSTING_READ(reg);
1564 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001565 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001566 POSTING_READ(reg);
1567 udelay(150); /* wait for warmup */
1568}
1569
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001570static void chv_enable_pll(struct intel_crtc *crtc)
1571{
1572 struct drm_device *dev = crtc->base.dev;
1573 struct drm_i915_private *dev_priv = dev->dev_private;
1574 int pipe = crtc->pipe;
1575 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001576 u32 tmp;
1577
1578 assert_pipe_disabled(dev_priv, crtc->pipe);
1579
1580 BUG_ON(!IS_CHERRYVIEW(dev_priv->dev));
1581
1582 mutex_lock(&dev_priv->dpio_lock);
1583
1584 /* Enable back the 10bit clock to display controller */
1585 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1586 tmp |= DPIO_DCLKP_EN;
1587 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1588
1589 /*
1590 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1591 */
1592 udelay(1);
1593
1594 /* Enable PLL */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001595 I915_WRITE(DPLL(pipe), crtc->config.dpll_hw_state.dpll);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001596
1597 /* Check PLL is locked */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001598 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001599 DRM_ERROR("PLL %d failed to lock\n", pipe);
1600
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001601 /* not sure when this should be written */
1602 I915_WRITE(DPLL_MD(pipe), crtc->config.dpll_hw_state.dpll_md);
1603 POSTING_READ(DPLL_MD(pipe));
1604
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001605 mutex_unlock(&dev_priv->dpio_lock);
1606}
1607
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001608static void i9xx_enable_pll(struct intel_crtc *crtc)
Daniel Vetter87442f72013-06-06 00:52:17 +02001609{
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001610 struct drm_device *dev = crtc->base.dev;
1611 struct drm_i915_private *dev_priv = dev->dev_private;
1612 int reg = DPLL(crtc->pipe);
1613 u32 dpll = crtc->config.dpll_hw_state.dpll;
Daniel Vetter87442f72013-06-06 00:52:17 +02001614
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001615 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001616
1617 /* No really, not for ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001618 BUG_ON(INTEL_INFO(dev)->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001619
1620 /* PLL is protected by panel, make sure we can write it */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001621 if (IS_MOBILE(dev) && !IS_I830(dev))
1622 assert_panel_unlocked(dev_priv, crtc->pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001623
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001624 I915_WRITE(reg, dpll);
1625
1626 /* Wait for the clocks to stabilize. */
1627 POSTING_READ(reg);
1628 udelay(150);
1629
1630 if (INTEL_INFO(dev)->gen >= 4) {
1631 I915_WRITE(DPLL_MD(crtc->pipe),
1632 crtc->config.dpll_hw_state.dpll_md);
1633 } else {
1634 /* The pixel multiplier can only be updated once the
1635 * DPLL is enabled and the clocks are stable.
1636 *
1637 * So write it again.
1638 */
1639 I915_WRITE(reg, dpll);
1640 }
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001641
1642 /* We do this three times for luck */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001643 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001644 POSTING_READ(reg);
1645 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001646 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001647 POSTING_READ(reg);
1648 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001649 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001650 POSTING_READ(reg);
1651 udelay(150); /* wait for warmup */
1652}
1653
1654/**
Daniel Vetter50b44a42013-06-05 13:34:33 +02001655 * i9xx_disable_pll - disable a PLL
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001656 * @dev_priv: i915 private structure
1657 * @pipe: pipe PLL to disable
1658 *
1659 * Disable the PLL for @pipe, making sure the pipe is off first.
1660 *
1661 * Note! This is for pre-ILK only.
1662 */
Daniel Vetter50b44a42013-06-05 13:34:33 +02001663static void i9xx_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001664{
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001665 /* Don't disable pipe A or pipe A PLLs if needed */
1666 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1667 return;
1668
1669 /* Make sure the pipe isn't still relying on us */
1670 assert_pipe_disabled(dev_priv, pipe);
1671
Daniel Vetter50b44a42013-06-05 13:34:33 +02001672 I915_WRITE(DPLL(pipe), 0);
1673 POSTING_READ(DPLL(pipe));
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001674}
1675
Jesse Barnesf6071162013-10-01 10:41:38 -07001676static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1677{
1678 u32 val = 0;
1679
1680 /* Make sure the pipe isn't still relying on us */
1681 assert_pipe_disabled(dev_priv, pipe);
1682
Imre Deake5cbfbf2014-01-09 17:08:16 +02001683 /*
1684 * Leave integrated clock source and reference clock enabled for pipe B.
1685 * The latter is needed for VGA hotplug / manual detection.
1686 */
Jesse Barnesf6071162013-10-01 10:41:38 -07001687 if (pipe == PIPE_B)
Imre Deake5cbfbf2014-01-09 17:08:16 +02001688 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REFA_CLK_ENABLE_VLV;
Jesse Barnesf6071162013-10-01 10:41:38 -07001689 I915_WRITE(DPLL(pipe), val);
1690 POSTING_READ(DPLL(pipe));
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001691
1692}
1693
1694static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1695{
Ville Syrjäläd7520482014-04-09 13:28:59 +03001696 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001697 u32 val;
1698
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001699 /* Make sure the pipe isn't still relying on us */
1700 assert_pipe_disabled(dev_priv, pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001701
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001702 /* Set PLL en = 0 */
Ville Syrjäläd17ec4c2014-06-28 02:03:59 +03001703 val = DPLL_SSC_REF_CLOCK_CHV | DPLL_REFA_CLK_ENABLE_VLV;
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001704 if (pipe != PIPE_A)
1705 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1706 I915_WRITE(DPLL(pipe), val);
1707 POSTING_READ(DPLL(pipe));
Ville Syrjäläd7520482014-04-09 13:28:59 +03001708
1709 mutex_lock(&dev_priv->dpio_lock);
1710
1711 /* Disable 10bit clock to display controller */
1712 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1713 val &= ~DPIO_DCLKP_EN;
1714 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1715
Ville Syrjälä61407f62014-05-27 16:32:55 +03001716 /* disable left/right clock distribution */
1717 if (pipe != PIPE_B) {
1718 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1719 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1720 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1721 } else {
1722 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1723 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1724 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1725 }
1726
Ville Syrjäläd7520482014-04-09 13:28:59 +03001727 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesf6071162013-10-01 10:41:38 -07001728}
1729
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001730void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
1731 struct intel_digital_port *dport)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001732{
1733 u32 port_mask;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001734 int dpll_reg;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001735
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001736 switch (dport->port) {
1737 case PORT_B:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001738 port_mask = DPLL_PORTB_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001739 dpll_reg = DPLL(0);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001740 break;
1741 case PORT_C:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001742 port_mask = DPLL_PORTC_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001743 dpll_reg = DPLL(0);
1744 break;
1745 case PORT_D:
1746 port_mask = DPLL_PORTD_READY_MASK;
1747 dpll_reg = DPIO_PHY_STATUS;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001748 break;
1749 default:
1750 BUG();
1751 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07001752
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001753 if (wait_for((I915_READ(dpll_reg) & port_mask) == 0, 1000))
Jesse Barnes89b667f2013-04-18 14:51:36 -07001754 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001755 port_name(dport->port), I915_READ(dpll_reg));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001756}
1757
Daniel Vetterb14b1052014-04-24 23:55:13 +02001758static void intel_prepare_shared_dpll(struct intel_crtc *crtc)
1759{
1760 struct drm_device *dev = crtc->base.dev;
1761 struct drm_i915_private *dev_priv = dev->dev_private;
1762 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
1763
Chris Wilsonbe19f0f2014-05-28 16:16:42 +01001764 if (WARN_ON(pll == NULL))
1765 return;
1766
Daniel Vetterb14b1052014-04-24 23:55:13 +02001767 WARN_ON(!pll->refcount);
1768 if (pll->active == 0) {
1769 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
1770 WARN_ON(pll->on);
1771 assert_shared_dpll_disabled(dev_priv, pll);
1772
1773 pll->mode_set(dev_priv, pll);
1774 }
1775}
1776
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001777/**
Daniel Vetter85b38942014-04-24 23:55:14 +02001778 * intel_enable_shared_dpll - enable PCH PLL
Jesse Barnes92f25842011-01-04 15:09:34 -08001779 * @dev_priv: i915 private structure
1780 * @pipe: pipe PLL to enable
1781 *
1782 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1783 * drives the transcoder clock.
1784 */
Daniel Vetter85b38942014-04-24 23:55:14 +02001785static void intel_enable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001786{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001787 struct drm_device *dev = crtc->base.dev;
1788 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001789 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes92f25842011-01-04 15:09:34 -08001790
Daniel Vetter87a875b2013-06-05 13:34:19 +02001791 if (WARN_ON(pll == NULL))
Chris Wilson48da64a2012-05-13 20:16:12 +01001792 return;
1793
1794 if (WARN_ON(pll->refcount == 0))
1795 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001796
Damien Lespiau74dd6922014-07-29 18:06:17 +01001797 DRM_DEBUG_KMS("enable %s (active %d, on? %d) for crtc %d\n",
Daniel Vetter46edb022013-06-05 13:34:12 +02001798 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001799 crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001800
Daniel Vettercdbd2312013-06-05 13:34:03 +02001801 if (pll->active++) {
1802 WARN_ON(!pll->on);
Daniel Vettere9d69442013-06-05 13:34:15 +02001803 assert_shared_dpll_enabled(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001804 return;
1805 }
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001806 WARN_ON(pll->on);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001807
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001808 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
1809
Daniel Vetter46edb022013-06-05 13:34:12 +02001810 DRM_DEBUG_KMS("enabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001811 pll->enable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001812 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001813}
1814
Damien Lespiauf6daaec2014-08-09 23:00:56 +01001815static void intel_disable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001816{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001817 struct drm_device *dev = crtc->base.dev;
1818 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001819 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001820
Jesse Barnes92f25842011-01-04 15:09:34 -08001821 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001822 BUG_ON(INTEL_INFO(dev)->gen < 5);
Daniel Vetter87a875b2013-06-05 13:34:19 +02001823 if (WARN_ON(pll == NULL))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001824 return;
1825
Chris Wilson48da64a2012-05-13 20:16:12 +01001826 if (WARN_ON(pll->refcount == 0))
1827 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001828
Daniel Vetter46edb022013-06-05 13:34:12 +02001829 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1830 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001831 crtc->base.base.id);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001832
Chris Wilson48da64a2012-05-13 20:16:12 +01001833 if (WARN_ON(pll->active == 0)) {
Daniel Vettere9d69442013-06-05 13:34:15 +02001834 assert_shared_dpll_disabled(dev_priv, pll);
Chris Wilson48da64a2012-05-13 20:16:12 +01001835 return;
1836 }
1837
Daniel Vettere9d69442013-06-05 13:34:15 +02001838 assert_shared_dpll_enabled(dev_priv, pll);
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001839 WARN_ON(!pll->on);
Daniel Vettercdbd2312013-06-05 13:34:03 +02001840 if (--pll->active)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001841 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001842
Daniel Vetter46edb022013-06-05 13:34:12 +02001843 DRM_DEBUG_KMS("disabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001844 pll->disable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001845 pll->on = false;
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001846
1847 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
Jesse Barnes92f25842011-01-04 15:09:34 -08001848}
1849
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001850static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1851 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001852{
Daniel Vetter23670b322012-11-01 09:15:30 +01001853 struct drm_device *dev = dev_priv->dev;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001854 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vettere2b78262013-06-07 23:10:03 +02001855 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter23670b322012-11-01 09:15:30 +01001856 uint32_t reg, val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001857
1858 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001859 BUG_ON(INTEL_INFO(dev)->gen < 5);
Jesse Barnes040484a2011-01-03 12:14:26 -08001860
1861 /* Make sure PCH DPLL is enabled */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02001862 assert_shared_dpll_enabled(dev_priv,
Daniel Vettere9d69442013-06-05 13:34:15 +02001863 intel_crtc_to_shared_dpll(intel_crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001864
1865 /* FDI must be feeding us bits for PCH ports */
1866 assert_fdi_tx_enabled(dev_priv, pipe);
1867 assert_fdi_rx_enabled(dev_priv, pipe);
1868
Daniel Vetter23670b322012-11-01 09:15:30 +01001869 if (HAS_PCH_CPT(dev)) {
1870 /* Workaround: Set the timing override bit before enabling the
1871 * pch transcoder. */
1872 reg = TRANS_CHICKEN2(pipe);
1873 val = I915_READ(reg);
1874 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1875 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001876 }
Daniel Vetter23670b322012-11-01 09:15:30 +01001877
Daniel Vetterab9412b2013-05-03 11:49:46 +02001878 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001879 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001880 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001881
1882 if (HAS_PCH_IBX(dev_priv->dev)) {
1883 /*
1884 * make the BPC in transcoder be consistent with
1885 * that in pipeconf reg.
1886 */
Daniel Vetterdfd07d72012-12-17 11:21:38 +01001887 val &= ~PIPECONF_BPC_MASK;
1888 val |= pipeconf_val & PIPECONF_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001889 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001890
1891 val &= ~TRANS_INTERLACE_MASK;
1892 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001893 if (HAS_PCH_IBX(dev_priv->dev) &&
1894 intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO))
1895 val |= TRANS_LEGACY_INTERLACED_ILK;
1896 else
1897 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001898 else
1899 val |= TRANS_PROGRESSIVE;
1900
Jesse Barnes040484a2011-01-03 12:14:26 -08001901 I915_WRITE(reg, val | TRANS_ENABLE);
1902 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001903 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
Jesse Barnes040484a2011-01-03 12:14:26 -08001904}
1905
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001906static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02001907 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08001908{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001909 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001910
1911 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001912 BUG_ON(INTEL_INFO(dev_priv->dev)->gen < 5);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001913
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001914 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01001915 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02001916 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001917
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001918 /* Workaround: set timing override bit. */
1919 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001920 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001921 I915_WRITE(_TRANSA_CHICKEN2, val);
1922
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02001923 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02001924 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001925
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02001926 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1927 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02001928 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001929 else
1930 val |= TRANS_PROGRESSIVE;
1931
Daniel Vetterab9412b2013-05-03 11:49:46 +02001932 I915_WRITE(LPT_TRANSCONF, val);
1933 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
Paulo Zanoni937bb612012-10-31 18:12:47 -02001934 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001935}
1936
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001937static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1938 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001939{
Daniel Vetter23670b322012-11-01 09:15:30 +01001940 struct drm_device *dev = dev_priv->dev;
1941 uint32_t reg, val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001942
1943 /* FDI relies on the transcoder */
1944 assert_fdi_tx_disabled(dev_priv, pipe);
1945 assert_fdi_rx_disabled(dev_priv, pipe);
1946
Jesse Barnes291906f2011-02-02 12:28:03 -08001947 /* Ports must be off as well */
1948 assert_pch_ports_disabled(dev_priv, pipe);
1949
Daniel Vetterab9412b2013-05-03 11:49:46 +02001950 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001951 val = I915_READ(reg);
1952 val &= ~TRANS_ENABLE;
1953 I915_WRITE(reg, val);
1954 /* wait for PCH transcoder off, transcoder state */
1955 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001956 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
Daniel Vetter23670b322012-11-01 09:15:30 +01001957
1958 if (!HAS_PCH_IBX(dev)) {
1959 /* Workaround: Clear the timing override chicken bit again. */
1960 reg = TRANS_CHICKEN2(pipe);
1961 val = I915_READ(reg);
1962 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1963 I915_WRITE(reg, val);
1964 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001965}
1966
Paulo Zanoniab4d9662012-10-31 18:12:55 -02001967static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001968{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001969 u32 val;
1970
Daniel Vetterab9412b2013-05-03 11:49:46 +02001971 val = I915_READ(LPT_TRANSCONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001972 val &= ~TRANS_ENABLE;
Daniel Vetterab9412b2013-05-03 11:49:46 +02001973 I915_WRITE(LPT_TRANSCONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001974 /* wait for PCH transcoder off, transcoder state */
Daniel Vetterab9412b2013-05-03 11:49:46 +02001975 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02001976 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001977
1978 /* Workaround: clear timing override bit. */
1979 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001980 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001981 I915_WRITE(_TRANSA_CHICKEN2, val);
Jesse Barnes92f25842011-01-04 15:09:34 -08001982}
1983
1984/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001985 * intel_enable_pipe - enable a pipe, asserting requirements
Paulo Zanoni03722642014-01-17 13:51:09 -02001986 * @crtc: crtc responsible for the pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08001987 *
Paulo Zanoni03722642014-01-17 13:51:09 -02001988 * Enable @crtc's pipe, making sure that various hardware specific requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001989 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08001990 */
Paulo Zanonie1fdc472014-01-17 13:51:12 -02001991static void intel_enable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001992{
Paulo Zanoni03722642014-01-17 13:51:09 -02001993 struct drm_device *dev = crtc->base.dev;
1994 struct drm_i915_private *dev_priv = dev->dev_private;
1995 enum pipe pipe = crtc->pipe;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001996 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1997 pipe);
Daniel Vetter1a240d42012-11-29 22:18:51 +01001998 enum pipe pch_transcoder;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001999 int reg;
2000 u32 val;
2001
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002002 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002003 assert_cursor_disabled(dev_priv, pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002004 assert_sprites_disabled(dev_priv, pipe);
2005
Paulo Zanoni681e5812012-12-06 11:12:38 -02002006 if (HAS_PCH_LPT(dev_priv->dev))
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002007 pch_transcoder = TRANSCODER_A;
2008 else
2009 pch_transcoder = pipe;
2010
Jesse Barnesb24e7172011-01-04 15:09:30 -08002011 /*
2012 * A pipe without a PLL won't actually be able to drive bits from
2013 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
2014 * need the check.
2015 */
2016 if (!HAS_PCH_SPLIT(dev_priv->dev))
Paulo Zanonifbf32182014-01-17 13:51:11 -02002017 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DSI))
Jani Nikula23538ef2013-08-27 15:12:22 +03002018 assert_dsi_pll_enabled(dev_priv);
2019 else
2020 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002021 else {
Paulo Zanoni30421c42014-01-17 13:51:10 -02002022 if (crtc->config.has_pch_encoder) {
Jesse Barnes040484a2011-01-03 12:14:26 -08002023 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002024 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002025 assert_fdi_tx_pll_enabled(dev_priv,
2026 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08002027 }
2028 /* FIXME: assert CPU port conditions for SNB+ */
2029 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08002030
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002031 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002032 val = I915_READ(reg);
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002033 if (val & PIPECONF_ENABLE) {
2034 WARN_ON(!(pipe == PIPE_A &&
2035 dev_priv->quirks & QUIRK_PIPEA_FORCE));
Chris Wilson00d70b12011-03-17 07:18:29 +00002036 return;
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002037 }
Chris Wilson00d70b12011-03-17 07:18:29 +00002038
2039 I915_WRITE(reg, val | PIPECONF_ENABLE);
Paulo Zanoni851855d2013-12-19 19:12:29 -02002040 POSTING_READ(reg);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002041}
2042
2043/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002044 * intel_disable_pipe - disable a pipe, asserting requirements
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002045 * @crtc: crtc whose pipes is to be disabled
Jesse Barnesb24e7172011-01-04 15:09:30 -08002046 *
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002047 * Disable the pipe of @crtc, making sure that various hardware
2048 * specific requirements are met, if applicable, e.g. plane
2049 * disabled, panel fitter off, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002050 *
2051 * Will wait until the pipe has shut down before returning.
2052 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002053static void intel_disable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002054{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002055 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
2056 enum transcoder cpu_transcoder = crtc->config.cpu_transcoder;
2057 enum pipe pipe = crtc->pipe;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002058 int reg;
2059 u32 val;
2060
2061 /*
2062 * Make sure planes won't keep trying to pump pixels to us,
2063 * or we might hang the display.
2064 */
2065 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002066 assert_cursor_disabled(dev_priv, pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07002067 assert_sprites_disabled(dev_priv, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002068
2069 /* Don't disable pipe A or pipe A PLLs if needed */
2070 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
2071 return;
2072
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002073 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002074 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00002075 if ((val & PIPECONF_ENABLE) == 0)
2076 return;
2077
2078 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002079 intel_wait_for_pipe_off(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002080}
2081
Keith Packardd74362c2011-07-28 14:47:14 -07002082/*
2083 * Plane regs are double buffered, going from enabled->disabled needs a
2084 * trigger in order to latch. The display address reg provides this.
2085 */
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002086void intel_flush_primary_plane(struct drm_i915_private *dev_priv,
2087 enum plane plane)
Keith Packardd74362c2011-07-28 14:47:14 -07002088{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00002089 struct drm_device *dev = dev_priv->dev;
2090 u32 reg = INTEL_INFO(dev)->gen >= 4 ? DSPSURF(plane) : DSPADDR(plane);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002091
2092 I915_WRITE(reg, I915_READ(reg));
2093 POSTING_READ(reg);
Keith Packardd74362c2011-07-28 14:47:14 -07002094}
2095
Jesse Barnesb24e7172011-01-04 15:09:30 -08002096/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002097 * intel_enable_primary_hw_plane - enable the primary plane on a given pipe
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002098 * @plane: plane to be enabled
2099 * @crtc: crtc for the plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002100 *
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002101 * Enable @plane on @crtc, making sure that the pipe is running first.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002102 */
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002103static void intel_enable_primary_hw_plane(struct drm_plane *plane,
2104 struct drm_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002105{
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002106 struct drm_device *dev = plane->dev;
2107 struct drm_i915_private *dev_priv = dev->dev_private;
2108 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002109
2110 /* If the pipe isn't enabled, we can't pump pixels and may hang */
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002111 assert_pipe_enabled(dev_priv, intel_crtc->pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002112
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002113 if (intel_crtc->primary_enabled)
2114 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002115
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002116 intel_crtc->primary_enabled = true;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002117
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002118 dev_priv->display.update_primary_plane(crtc, plane->fb,
2119 crtc->x, crtc->y);
Ville Syrjälä33c3b0d2014-06-24 13:59:28 +03002120
2121 /*
2122 * BDW signals flip done immediately if the plane
2123 * is disabled, even if the plane enable is already
2124 * armed to occur at the next vblank :(
2125 */
2126 if (IS_BROADWELL(dev))
2127 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002128}
2129
Jesse Barnesb24e7172011-01-04 15:09:30 -08002130/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002131 * intel_disable_primary_hw_plane - disable the primary hardware plane
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002132 * @plane: plane to be disabled
2133 * @crtc: crtc for the plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002134 *
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002135 * Disable @plane on @crtc, making sure that the pipe is running first.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002136 */
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002137static void intel_disable_primary_hw_plane(struct drm_plane *plane,
2138 struct drm_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002139{
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002140 struct drm_device *dev = plane->dev;
2141 struct drm_i915_private *dev_priv = dev->dev_private;
2142 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2143
2144 assert_pipe_enabled(dev_priv, intel_crtc->pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002145
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002146 if (!intel_crtc->primary_enabled)
2147 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002148
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002149 intel_crtc->primary_enabled = false;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002150
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002151 dev_priv->display.update_primary_plane(crtc, plane->fb,
2152 crtc->x, crtc->y);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002153}
2154
Chris Wilson693db182013-03-05 14:52:39 +00002155static bool need_vtd_wa(struct drm_device *dev)
2156{
2157#ifdef CONFIG_INTEL_IOMMU
2158 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2159 return true;
2160#endif
2161 return false;
2162}
2163
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002164static int intel_align_height(struct drm_device *dev, int height, bool tiled)
2165{
2166 int tile_height;
2167
2168 tile_height = tiled ? (IS_GEN2(dev) ? 16 : 8) : 1;
2169 return ALIGN(height, tile_height);
2170}
2171
Chris Wilson127bd2a2010-07-23 23:32:05 +01002172int
Chris Wilson48b956c2010-09-14 12:50:34 +01002173intel_pin_and_fence_fb_obj(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00002174 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002175 struct intel_engine_cs *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002176{
Chris Wilsonce453d82011-02-21 14:43:56 +00002177 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002178 u32 alignment;
2179 int ret;
2180
Matt Roperebcdd392014-07-09 16:22:11 -07002181 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
2182
Chris Wilson05394f32010-11-08 19:18:58 +00002183 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002184 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01002185 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
2186 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002187 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01002188 alignment = 4 * 1024;
2189 else
2190 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002191 break;
2192 case I915_TILING_X:
2193 /* pin() will align the object as required by fence */
2194 alignment = 0;
2195 break;
2196 case I915_TILING_Y:
Daniel Vetter80075d42013-10-09 21:23:52 +02002197 WARN(1, "Y tiled bo slipped through, driver bug!\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002198 return -EINVAL;
2199 default:
2200 BUG();
2201 }
2202
Chris Wilson693db182013-03-05 14:52:39 +00002203 /* Note that the w/a also requires 64 PTE of padding following the
2204 * bo. We currently fill all unused PTE with the shadow page and so
2205 * we should always have valid PTE following the scanout preventing
2206 * the VT-d warning.
2207 */
2208 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2209 alignment = 256 * 1024;
2210
Chris Wilsonce453d82011-02-21 14:43:56 +00002211 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002212 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01002213 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00002214 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002215
2216 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2217 * fence, whereas 965+ only requires a fence if using
2218 * framebuffer compression. For simplicity, we always install
2219 * a fence as the cost is not that onerous.
2220 */
Chris Wilson06d98132012-04-17 15:31:24 +01002221 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002222 if (ret)
2223 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002224
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002225 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002226
Chris Wilsonce453d82011-02-21 14:43:56 +00002227 dev_priv->mm.interruptible = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002228 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01002229
2230err_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01002231 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00002232err_interruptible:
2233 dev_priv->mm.interruptible = true;
Chris Wilson48b956c2010-09-14 12:50:34 +01002234 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002235}
2236
Chris Wilson1690e1e2011-12-14 13:57:08 +01002237void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
2238{
Matt Roperebcdd392014-07-09 16:22:11 -07002239 WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex));
2240
Chris Wilson1690e1e2011-12-14 13:57:08 +01002241 i915_gem_object_unpin_fence(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01002242 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002243}
2244
Daniel Vetterc2c75132012-07-05 12:17:30 +02002245/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2246 * is assumed to be a power-of-two. */
Chris Wilsonbc752862013-02-21 20:04:31 +00002247unsigned long intel_gen4_compute_page_offset(int *x, int *y,
2248 unsigned int tiling_mode,
2249 unsigned int cpp,
2250 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02002251{
Chris Wilsonbc752862013-02-21 20:04:31 +00002252 if (tiling_mode != I915_TILING_NONE) {
2253 unsigned int tile_rows, tiles;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002254
Chris Wilsonbc752862013-02-21 20:04:31 +00002255 tile_rows = *y / 8;
2256 *y %= 8;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002257
Chris Wilsonbc752862013-02-21 20:04:31 +00002258 tiles = *x / (512/cpp);
2259 *x %= 512/cpp;
2260
2261 return tile_rows * pitch * 8 + tiles * 4096;
2262 } else {
2263 unsigned int offset;
2264
2265 offset = *y * pitch + *x * cpp;
2266 *y = 0;
2267 *x = (offset & 4095) / cpp;
2268 return offset & -4096;
2269 }
Daniel Vetterc2c75132012-07-05 12:17:30 +02002270}
2271
Jesse Barnes46f297f2014-03-07 08:57:48 -08002272int intel_format_to_fourcc(int format)
2273{
2274 switch (format) {
2275 case DISPPLANE_8BPP:
2276 return DRM_FORMAT_C8;
2277 case DISPPLANE_BGRX555:
2278 return DRM_FORMAT_XRGB1555;
2279 case DISPPLANE_BGRX565:
2280 return DRM_FORMAT_RGB565;
2281 default:
2282 case DISPPLANE_BGRX888:
2283 return DRM_FORMAT_XRGB8888;
2284 case DISPPLANE_RGBX888:
2285 return DRM_FORMAT_XBGR8888;
2286 case DISPPLANE_BGRX101010:
2287 return DRM_FORMAT_XRGB2101010;
2288 case DISPPLANE_RGBX101010:
2289 return DRM_FORMAT_XBGR2101010;
2290 }
2291}
2292
Jesse Barnes484b41d2014-03-07 08:57:55 -08002293static bool intel_alloc_plane_obj(struct intel_crtc *crtc,
Jesse Barnes46f297f2014-03-07 08:57:48 -08002294 struct intel_plane_config *plane_config)
2295{
2296 struct drm_device *dev = crtc->base.dev;
2297 struct drm_i915_gem_object *obj = NULL;
2298 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
2299 u32 base = plane_config->base;
2300
Chris Wilsonff2652e2014-03-10 08:07:02 +00002301 if (plane_config->size == 0)
2302 return false;
2303
Jesse Barnes46f297f2014-03-07 08:57:48 -08002304 obj = i915_gem_object_create_stolen_for_preallocated(dev, base, base,
2305 plane_config->size);
2306 if (!obj)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002307 return false;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002308
2309 if (plane_config->tiled) {
2310 obj->tiling_mode = I915_TILING_X;
Dave Airlie66e514c2014-04-03 07:51:54 +10002311 obj->stride = crtc->base.primary->fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002312 }
2313
Dave Airlie66e514c2014-04-03 07:51:54 +10002314 mode_cmd.pixel_format = crtc->base.primary->fb->pixel_format;
2315 mode_cmd.width = crtc->base.primary->fb->width;
2316 mode_cmd.height = crtc->base.primary->fb->height;
2317 mode_cmd.pitches[0] = crtc->base.primary->fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002318
2319 mutex_lock(&dev->struct_mutex);
2320
Dave Airlie66e514c2014-04-03 07:51:54 +10002321 if (intel_framebuffer_init(dev, to_intel_framebuffer(crtc->base.primary->fb),
Jesse Barnes484b41d2014-03-07 08:57:55 -08002322 &mode_cmd, obj)) {
Jesse Barnes46f297f2014-03-07 08:57:48 -08002323 DRM_DEBUG_KMS("intel fb init failed\n");
2324 goto out_unref_obj;
2325 }
2326
Daniel Vettera071fa02014-06-18 23:28:09 +02002327 obj->frontbuffer_bits = INTEL_FRONTBUFFER_PRIMARY(crtc->pipe);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002328 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002329
2330 DRM_DEBUG_KMS("plane fb obj %p\n", obj);
2331 return true;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002332
2333out_unref_obj:
2334 drm_gem_object_unreference(&obj->base);
2335 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002336 return false;
2337}
2338
2339static void intel_find_plane_obj(struct intel_crtc *intel_crtc,
2340 struct intel_plane_config *plane_config)
2341{
2342 struct drm_device *dev = intel_crtc->base.dev;
2343 struct drm_crtc *c;
2344 struct intel_crtc *i;
Matt Roper2ff8fde2014-07-08 07:50:07 -07002345 struct drm_i915_gem_object *obj;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002346
Dave Airlie66e514c2014-04-03 07:51:54 +10002347 if (!intel_crtc->base.primary->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002348 return;
2349
2350 if (intel_alloc_plane_obj(intel_crtc, plane_config))
2351 return;
2352
Dave Airlie66e514c2014-04-03 07:51:54 +10002353 kfree(intel_crtc->base.primary->fb);
2354 intel_crtc->base.primary->fb = NULL;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002355
2356 /*
2357 * Failed to alloc the obj, check to see if we should share
2358 * an fb with another CRTC instead
2359 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002360 for_each_crtc(dev, c) {
Jesse Barnes484b41d2014-03-07 08:57:55 -08002361 i = to_intel_crtc(c);
2362
2363 if (c == &intel_crtc->base)
2364 continue;
2365
Matt Roper2ff8fde2014-07-08 07:50:07 -07002366 if (!i->active)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002367 continue;
2368
Matt Roper2ff8fde2014-07-08 07:50:07 -07002369 obj = intel_fb_obj(c->primary->fb);
2370 if (obj == NULL)
2371 continue;
2372
2373 if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) {
Dave Airlie66e514c2014-04-03 07:51:54 +10002374 drm_framebuffer_reference(c->primary->fb);
2375 intel_crtc->base.primary->fb = c->primary->fb;
Matt Roper2ff8fde2014-07-08 07:50:07 -07002376 obj->frontbuffer_bits |= INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002377 break;
2378 }
2379 }
Jesse Barnes46f297f2014-03-07 08:57:48 -08002380}
2381
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002382static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2383 struct drm_framebuffer *fb,
2384 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07002385{
2386 struct drm_device *dev = crtc->dev;
2387 struct drm_i915_private *dev_priv = dev->dev_private;
2388 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002389 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002390 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002391 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002392 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002393 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302394 int pixel_size;
2395
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002396 if (!intel_crtc->primary_enabled) {
2397 I915_WRITE(reg, 0);
2398 if (INTEL_INFO(dev)->gen >= 4)
2399 I915_WRITE(DSPSURF(plane), 0);
2400 else
2401 I915_WRITE(DSPADDR(plane), 0);
2402 POSTING_READ(reg);
2403 return;
2404 }
2405
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002406 obj = intel_fb_obj(fb);
2407 if (WARN_ON(obj == NULL))
2408 return;
2409
2410 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2411
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002412 dspcntr = DISPPLANE_GAMMA_ENABLE;
2413
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002414 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002415
2416 if (INTEL_INFO(dev)->gen < 4) {
2417 if (intel_crtc->pipe == PIPE_B)
2418 dspcntr |= DISPPLANE_SEL_PIPE_B;
2419
2420 /* pipesrc and dspsize control the size that is scaled from,
2421 * which should always be the user's requested size.
2422 */
2423 I915_WRITE(DSPSIZE(plane),
2424 ((intel_crtc->config.pipe_src_h - 1) << 16) |
2425 (intel_crtc->config.pipe_src_w - 1));
2426 I915_WRITE(DSPPOS(plane), 0);
2427 }
2428
Ville Syrjälä57779d02012-10-31 17:50:14 +02002429 switch (fb->pixel_format) {
2430 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002431 dspcntr |= DISPPLANE_8BPP;
2432 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002433 case DRM_FORMAT_XRGB1555:
2434 case DRM_FORMAT_ARGB1555:
2435 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002436 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002437 case DRM_FORMAT_RGB565:
2438 dspcntr |= DISPPLANE_BGRX565;
2439 break;
2440 case DRM_FORMAT_XRGB8888:
2441 case DRM_FORMAT_ARGB8888:
2442 dspcntr |= DISPPLANE_BGRX888;
2443 break;
2444 case DRM_FORMAT_XBGR8888:
2445 case DRM_FORMAT_ABGR8888:
2446 dspcntr |= DISPPLANE_RGBX888;
2447 break;
2448 case DRM_FORMAT_XRGB2101010:
2449 case DRM_FORMAT_ARGB2101010:
2450 dspcntr |= DISPPLANE_BGRX101010;
2451 break;
2452 case DRM_FORMAT_XBGR2101010:
2453 case DRM_FORMAT_ABGR2101010:
2454 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002455 break;
2456 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002457 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07002458 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002459
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002460 if (INTEL_INFO(dev)->gen >= 4 &&
2461 obj->tiling_mode != I915_TILING_NONE)
2462 dspcntr |= DISPPLANE_TILED;
Jesse Barnes81255562010-08-02 12:07:50 -07002463
Ville Syrjäläde1aa622013-06-07 10:47:01 +03002464 if (IS_G4X(dev))
2465 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2466
Ville Syrjäläb98971272014-08-27 16:51:22 +03002467 linear_offset = y * fb->pitches[0] + x * pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002468
Daniel Vetterc2c75132012-07-05 12:17:30 +02002469 if (INTEL_INFO(dev)->gen >= 4) {
2470 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002471 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002472 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002473 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002474 linear_offset -= intel_crtc->dspaddr_offset;
2475 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002476 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002477 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002478
Sonika Jindal48404c12014-08-22 14:06:04 +05302479 if (to_intel_plane(crtc->primary)->rotation == BIT(DRM_ROTATE_180)) {
2480 dspcntr |= DISPPLANE_ROTATE_180;
2481
2482 x += (intel_crtc->config.pipe_src_w - 1);
2483 y += (intel_crtc->config.pipe_src_h - 1);
2484
2485 /* Finding the last pixel of the last line of the display
2486 data and adding to linear_offset*/
2487 linear_offset +=
2488 (intel_crtc->config.pipe_src_h - 1) * fb->pitches[0] +
2489 (intel_crtc->config.pipe_src_w - 1) * pixel_size;
2490 }
2491
2492 I915_WRITE(reg, dspcntr);
2493
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002494 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2495 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2496 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002497 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002498 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002499 I915_WRITE(DSPSURF(plane),
2500 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002501 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002502 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002503 } else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002504 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002505 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002506}
2507
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002508static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2509 struct drm_framebuffer *fb,
2510 int x, int y)
Jesse Barnes17638cd2011-06-24 12:19:23 -07002511{
2512 struct drm_device *dev = crtc->dev;
2513 struct drm_i915_private *dev_priv = dev->dev_private;
2514 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002515 struct drm_i915_gem_object *obj;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002516 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002517 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002518 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002519 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302520 int pixel_size;
2521
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002522 if (!intel_crtc->primary_enabled) {
2523 I915_WRITE(reg, 0);
2524 I915_WRITE(DSPSURF(plane), 0);
2525 POSTING_READ(reg);
2526 return;
2527 }
2528
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002529 obj = intel_fb_obj(fb);
2530 if (WARN_ON(obj == NULL))
2531 return;
2532
2533 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2534
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002535 dspcntr = DISPPLANE_GAMMA_ENABLE;
2536
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002537 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002538
2539 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
2540 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
2541
Ville Syrjälä57779d02012-10-31 17:50:14 +02002542 switch (fb->pixel_format) {
2543 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002544 dspcntr |= DISPPLANE_8BPP;
2545 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002546 case DRM_FORMAT_RGB565:
2547 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002548 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002549 case DRM_FORMAT_XRGB8888:
2550 case DRM_FORMAT_ARGB8888:
2551 dspcntr |= DISPPLANE_BGRX888;
2552 break;
2553 case DRM_FORMAT_XBGR8888:
2554 case DRM_FORMAT_ABGR8888:
2555 dspcntr |= DISPPLANE_RGBX888;
2556 break;
2557 case DRM_FORMAT_XRGB2101010:
2558 case DRM_FORMAT_ARGB2101010:
2559 dspcntr |= DISPPLANE_BGRX101010;
2560 break;
2561 case DRM_FORMAT_XBGR2101010:
2562 case DRM_FORMAT_ABGR2101010:
2563 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002564 break;
2565 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002566 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002567 }
2568
2569 if (obj->tiling_mode != I915_TILING_NONE)
2570 dspcntr |= DISPPLANE_TILED;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002571
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002572 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03002573 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002574
Ville Syrjäläb98971272014-08-27 16:51:22 +03002575 linear_offset = y * fb->pitches[0] + x * pixel_size;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002576 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002577 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002578 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002579 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002580 linear_offset -= intel_crtc->dspaddr_offset;
Sonika Jindal48404c12014-08-22 14:06:04 +05302581 if (to_intel_plane(crtc->primary)->rotation == BIT(DRM_ROTATE_180)) {
2582 dspcntr |= DISPPLANE_ROTATE_180;
2583
2584 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
2585 x += (intel_crtc->config.pipe_src_w - 1);
2586 y += (intel_crtc->config.pipe_src_h - 1);
2587
2588 /* Finding the last pixel of the last line of the display
2589 data and adding to linear_offset*/
2590 linear_offset +=
2591 (intel_crtc->config.pipe_src_h - 1) * fb->pitches[0] +
2592 (intel_crtc->config.pipe_src_w - 1) * pixel_size;
2593 }
2594 }
2595
2596 I915_WRITE(reg, dspcntr);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002597
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002598 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2599 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2600 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002601 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002602 I915_WRITE(DSPSURF(plane),
2603 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Paulo Zanonib3dc6852013-11-02 21:07:33 -07002604 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002605 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2606 } else {
2607 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2608 I915_WRITE(DSPLINOFF(plane), linear_offset);
2609 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002610 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002611}
2612
2613/* Assume fb object is pinned & idle & fenced and just update base pointers */
2614static int
2615intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2616 int x, int y, enum mode_set_atomic state)
2617{
2618 struct drm_device *dev = crtc->dev;
2619 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002620
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002621 if (dev_priv->display.disable_fbc)
2622 dev_priv->display.disable_fbc(dev);
Daniel Vettercc365132014-06-18 13:59:13 +02002623 intel_increase_pllclock(dev, to_intel_crtc(crtc)->pipe);
Jesse Barnes81255562010-08-02 12:07:50 -07002624
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002625 dev_priv->display.update_primary_plane(crtc, fb, x, y);
2626
2627 return 0;
Jesse Barnes81255562010-08-02 12:07:50 -07002628}
2629
Ville Syrjälä96a02912013-02-18 19:08:49 +02002630void intel_display_handle_reset(struct drm_device *dev)
2631{
2632 struct drm_i915_private *dev_priv = dev->dev_private;
2633 struct drm_crtc *crtc;
2634
2635 /*
2636 * Flips in the rings have been nuked by the reset,
2637 * so complete all pending flips so that user space
2638 * will get its events and not get stuck.
2639 *
2640 * Also update the base address of all primary
2641 * planes to the the last fb to make sure we're
2642 * showing the correct fb after a reset.
2643 *
2644 * Need to make two loops over the crtcs so that we
2645 * don't try to grab a crtc mutex before the
2646 * pending_flip_queue really got woken up.
2647 */
2648
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002649 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002650 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2651 enum plane plane = intel_crtc->plane;
2652
2653 intel_prepare_page_flip(dev, plane);
2654 intel_finish_page_flip_plane(dev, plane);
2655 }
2656
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002657 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002658 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2659
Rob Clark51fd3712013-11-19 12:10:12 -05002660 drm_modeset_lock(&crtc->mutex, NULL);
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002661 /*
2662 * FIXME: Once we have proper support for primary planes (and
2663 * disabling them without disabling the entire crtc) allow again
Dave Airlie66e514c2014-04-03 07:51:54 +10002664 * a NULL crtc->primary->fb.
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002665 */
Matt Roperf4510a22014-04-01 15:22:40 -07002666 if (intel_crtc->active && crtc->primary->fb)
Matt Roper262ca2b2014-03-18 17:22:55 -07002667 dev_priv->display.update_primary_plane(crtc,
Dave Airlie66e514c2014-04-03 07:51:54 +10002668 crtc->primary->fb,
Matt Roper262ca2b2014-03-18 17:22:55 -07002669 crtc->x,
2670 crtc->y);
Rob Clark51fd3712013-11-19 12:10:12 -05002671 drm_modeset_unlock(&crtc->mutex);
Ville Syrjälä96a02912013-02-18 19:08:49 +02002672 }
2673}
2674
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002675static int
Chris Wilson14667a42012-04-03 17:58:35 +01002676intel_finish_fb(struct drm_framebuffer *old_fb)
2677{
Matt Roper2ff8fde2014-07-08 07:50:07 -07002678 struct drm_i915_gem_object *obj = intel_fb_obj(old_fb);
Chris Wilson14667a42012-04-03 17:58:35 +01002679 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2680 bool was_interruptible = dev_priv->mm.interruptible;
2681 int ret;
2682
Chris Wilson14667a42012-04-03 17:58:35 +01002683 /* Big Hammer, we also need to ensure that any pending
2684 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2685 * current scanout is retired before unpinning the old
2686 * framebuffer.
2687 *
2688 * This should only fail upon a hung GPU, in which case we
2689 * can safely continue.
2690 */
2691 dev_priv->mm.interruptible = false;
2692 ret = i915_gem_object_finish_gpu(obj);
2693 dev_priv->mm.interruptible = was_interruptible;
2694
2695 return ret;
2696}
2697
Chris Wilson7d5e3792014-03-04 13:15:08 +00002698static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2699{
2700 struct drm_device *dev = crtc->dev;
2701 struct drm_i915_private *dev_priv = dev->dev_private;
2702 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2703 unsigned long flags;
2704 bool pending;
2705
2706 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
2707 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
2708 return false;
2709
2710 spin_lock_irqsave(&dev->event_lock, flags);
2711 pending = to_intel_crtc(crtc)->unpin_work != NULL;
2712 spin_unlock_irqrestore(&dev->event_lock, flags);
2713
2714 return pending;
2715}
2716
Chris Wilson14667a42012-04-03 17:58:35 +01002717static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002718intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002719 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08002720{
2721 struct drm_device *dev = crtc->dev;
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002722 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08002723 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettera071fa02014-06-18 23:28:09 +02002724 enum pipe pipe = intel_crtc->pipe;
Matt Roper2ff8fde2014-07-08 07:50:07 -07002725 struct drm_framebuffer *old_fb = crtc->primary->fb;
2726 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
2727 struct drm_i915_gem_object *old_obj = intel_fb_obj(old_fb);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002728 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002729
Chris Wilson7d5e3792014-03-04 13:15:08 +00002730 if (intel_crtc_has_pending_flip(crtc)) {
2731 DRM_ERROR("pipe is still busy with an old pageflip\n");
2732 return -EBUSY;
2733 }
2734
Jesse Barnes79e53942008-11-07 14:24:08 -08002735 /* no fb bound */
Daniel Vetter94352cf2012-07-05 22:51:56 +02002736 if (!fb) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002737 DRM_ERROR("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002738 return 0;
2739 }
2740
Ben Widawsky7eb552a2013-03-13 14:05:41 -07002741 if (intel_crtc->plane > INTEL_INFO(dev)->num_pipes) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002742 DRM_ERROR("no plane for crtc: plane %c, num_pipes %d\n",
2743 plane_name(intel_crtc->plane),
2744 INTEL_INFO(dev)->num_pipes);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002745 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08002746 }
2747
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002748 mutex_lock(&dev->struct_mutex);
Daniel Vettera071fa02014-06-18 23:28:09 +02002749 ret = intel_pin_and_fence_fb_obj(dev, obj, NULL);
2750 if (ret == 0)
Matt Roper91565c82014-06-24 17:05:02 -07002751 i915_gem_track_fb(old_obj, obj,
Daniel Vettera071fa02014-06-18 23:28:09 +02002752 INTEL_FRONTBUFFER_PRIMARY(pipe));
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002753 mutex_unlock(&dev->struct_mutex);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002754 if (ret != 0) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002755 DRM_ERROR("pin & fence failed\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002756 return ret;
2757 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002758
Damien Lespiaubb2043d2013-09-30 14:21:49 +01002759 /*
2760 * Update pipe size and adjust fitter if needed: the reason for this is
2761 * that in compute_mode_changes we check the native mode (not the pfit
2762 * mode) to see if we can flip rather than do a full mode set. In the
2763 * fastboot case, we'll flip, but if we don't update the pipesrc and
2764 * pfit state, we'll end up with a big fb scanned out into the wrong
2765 * sized surface.
2766 *
2767 * To fix this properly, we need to hoist the checks up into
2768 * compute_mode_changes (or above), check the actual pfit state and
2769 * whether the platform allows pfit disable with pipe active, and only
2770 * then update the pipesrc and pfit state, even on the flip path.
2771 */
Jani Nikulad330a952014-01-21 11:24:25 +02002772 if (i915.fastboot) {
Damien Lespiaud7bf63f2013-09-30 14:21:50 +01002773 const struct drm_display_mode *adjusted_mode =
2774 &intel_crtc->config.adjusted_mode;
2775
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002776 I915_WRITE(PIPESRC(intel_crtc->pipe),
Damien Lespiaud7bf63f2013-09-30 14:21:50 +01002777 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
2778 (adjusted_mode->crtc_vdisplay - 1));
Chris Wilsonfd4daa92013-08-27 17:04:17 +01002779 if (!intel_crtc->config.pch_pfit.enabled &&
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002780 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
2781 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
2782 I915_WRITE(PF_CTL(intel_crtc->pipe), 0);
2783 I915_WRITE(PF_WIN_POS(intel_crtc->pipe), 0);
2784 I915_WRITE(PF_WIN_SZ(intel_crtc->pipe), 0);
2785 }
Jesse Barnes0637d602013-12-19 10:48:01 -08002786 intel_crtc->config.pipe_src_w = adjusted_mode->crtc_hdisplay;
2787 intel_crtc->config.pipe_src_h = adjusted_mode->crtc_vdisplay;
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002788 }
2789
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002790 dev_priv->display.update_primary_plane(crtc, fb, x, y);
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002791
Daniel Vetterf99d7062014-06-19 16:01:59 +02002792 if (intel_crtc->active)
2793 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
2794
Matt Roperf4510a22014-04-01 15:22:40 -07002795 crtc->primary->fb = fb;
Daniel Vetter6c4c86f2012-09-10 21:58:30 +02002796 crtc->x = x;
2797 crtc->y = y;
Daniel Vetter94352cf2012-07-05 22:51:56 +02002798
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002799 if (old_fb) {
Daniel Vetterd7697ee2013-06-02 17:23:01 +02002800 if (intel_crtc->active && old_fb != fb)
2801 intel_wait_for_vblank(dev, intel_crtc->pipe);
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002802 mutex_lock(&dev->struct_mutex);
Matt Roper2ff8fde2014-07-08 07:50:07 -07002803 intel_unpin_fb_obj(old_obj);
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002804 mutex_unlock(&dev->struct_mutex);
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002805 }
Jesse Barnes652c3932009-08-17 13:31:43 -07002806
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002807 mutex_lock(&dev->struct_mutex);
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002808 intel_update_fbc(dev);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002809 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08002810
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002811 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002812}
2813
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002814static void intel_fdi_normal_train(struct drm_crtc *crtc)
2815{
2816 struct drm_device *dev = crtc->dev;
2817 struct drm_i915_private *dev_priv = dev->dev_private;
2818 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2819 int pipe = intel_crtc->pipe;
2820 u32 reg, temp;
2821
2822 /* enable normal train */
2823 reg = FDI_TX_CTL(pipe);
2824 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07002825 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002826 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2827 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07002828 } else {
2829 temp &= ~FDI_LINK_TRAIN_NONE;
2830 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07002831 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002832 I915_WRITE(reg, temp);
2833
2834 reg = FDI_RX_CTL(pipe);
2835 temp = I915_READ(reg);
2836 if (HAS_PCH_CPT(dev)) {
2837 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2838 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2839 } else {
2840 temp &= ~FDI_LINK_TRAIN_NONE;
2841 temp |= FDI_LINK_TRAIN_NONE;
2842 }
2843 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2844
2845 /* wait one idle pattern time */
2846 POSTING_READ(reg);
2847 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07002848
2849 /* IVB wants error correction enabled */
2850 if (IS_IVYBRIDGE(dev))
2851 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2852 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002853}
2854
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01002855static bool pipe_has_enabled_pch(struct intel_crtc *crtc)
Daniel Vetter1e833f42013-02-19 22:31:57 +01002856{
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01002857 return crtc->base.enabled && crtc->active &&
2858 crtc->config.has_pch_encoder;
Daniel Vetter1e833f42013-02-19 22:31:57 +01002859}
2860
Daniel Vetter01a415f2012-10-27 15:58:40 +02002861static void ivb_modeset_global_resources(struct drm_device *dev)
2862{
2863 struct drm_i915_private *dev_priv = dev->dev_private;
2864 struct intel_crtc *pipe_B_crtc =
2865 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
2866 struct intel_crtc *pipe_C_crtc =
2867 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
2868 uint32_t temp;
2869
Daniel Vetter1e833f42013-02-19 22:31:57 +01002870 /*
2871 * When everything is off disable fdi C so that we could enable fdi B
2872 * with all lanes. Note that we don't care about enabled pipes without
2873 * an enabled pch encoder.
2874 */
2875 if (!pipe_has_enabled_pch(pipe_B_crtc) &&
2876 !pipe_has_enabled_pch(pipe_C_crtc)) {
Daniel Vetter01a415f2012-10-27 15:58:40 +02002877 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
2878 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
2879
2880 temp = I915_READ(SOUTH_CHICKEN1);
2881 temp &= ~FDI_BC_BIFURCATION_SELECT;
2882 DRM_DEBUG_KMS("disabling fdi C rx\n");
2883 I915_WRITE(SOUTH_CHICKEN1, temp);
2884 }
2885}
2886
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002887/* The FDI link training functions for ILK/Ibexpeak. */
2888static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2889{
2890 struct drm_device *dev = crtc->dev;
2891 struct drm_i915_private *dev_priv = dev->dev_private;
2892 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2893 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01002894 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002895
Ville Syrjälä1c8562f2014-04-25 22:12:07 +03002896 /* FDI needs bits from pipe first */
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002897 assert_pipe_enabled(dev_priv, pipe);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002898
Adam Jacksone1a44742010-06-25 15:32:14 -04002899 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2900 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002901 reg = FDI_RX_IMR(pipe);
2902 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002903 temp &= ~FDI_RX_SYMBOL_LOCK;
2904 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002905 I915_WRITE(reg, temp);
2906 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002907 udelay(150);
2908
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002909 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002910 reg = FDI_TX_CTL(pipe);
2911 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002912 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2913 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002914 temp &= ~FDI_LINK_TRAIN_NONE;
2915 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002916 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002917
Chris Wilson5eddb702010-09-11 13:48:45 +01002918 reg = FDI_RX_CTL(pipe);
2919 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002920 temp &= ~FDI_LINK_TRAIN_NONE;
2921 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002922 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2923
2924 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002925 udelay(150);
2926
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002927 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01002928 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2929 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2930 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002931
Chris Wilson5eddb702010-09-11 13:48:45 +01002932 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002933 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002934 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002935 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2936
2937 if ((temp & FDI_RX_BIT_LOCK)) {
2938 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002939 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002940 break;
2941 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002942 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002943 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002944 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002945
2946 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002947 reg = FDI_TX_CTL(pipe);
2948 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002949 temp &= ~FDI_LINK_TRAIN_NONE;
2950 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002951 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002952
Chris Wilson5eddb702010-09-11 13:48:45 +01002953 reg = FDI_RX_CTL(pipe);
2954 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002955 temp &= ~FDI_LINK_TRAIN_NONE;
2956 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002957 I915_WRITE(reg, temp);
2958
2959 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002960 udelay(150);
2961
Chris Wilson5eddb702010-09-11 13:48:45 +01002962 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002963 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002964 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002965 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2966
2967 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002968 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002969 DRM_DEBUG_KMS("FDI train 2 done.\n");
2970 break;
2971 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002972 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002973 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002974 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002975
2976 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07002977
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002978}
2979
Akshay Joshi0206e352011-08-16 15:34:10 -04002980static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002981 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2982 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2983 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2984 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2985};
2986
2987/* The FDI link training functions for SNB/Cougarpoint. */
2988static void gen6_fdi_link_train(struct drm_crtc *crtc)
2989{
2990 struct drm_device *dev = crtc->dev;
2991 struct drm_i915_private *dev_priv = dev->dev_private;
2992 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2993 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05002994 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002995
Adam Jacksone1a44742010-06-25 15:32:14 -04002996 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2997 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002998 reg = FDI_RX_IMR(pipe);
2999 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003000 temp &= ~FDI_RX_SYMBOL_LOCK;
3001 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003002 I915_WRITE(reg, temp);
3003
3004 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003005 udelay(150);
3006
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003007 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003008 reg = FDI_TX_CTL(pipe);
3009 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003010 temp &= ~FDI_DP_PORT_WIDTH_MASK;
3011 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003012 temp &= ~FDI_LINK_TRAIN_NONE;
3013 temp |= FDI_LINK_TRAIN_PATTERN_1;
3014 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3015 /* SNB-B */
3016 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01003017 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003018
Daniel Vetterd74cf322012-10-26 10:58:13 +02003019 I915_WRITE(FDI_RX_MISC(pipe),
3020 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3021
Chris Wilson5eddb702010-09-11 13:48:45 +01003022 reg = FDI_RX_CTL(pipe);
3023 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003024 if (HAS_PCH_CPT(dev)) {
3025 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3026 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3027 } else {
3028 temp &= ~FDI_LINK_TRAIN_NONE;
3029 temp |= FDI_LINK_TRAIN_PATTERN_1;
3030 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003031 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3032
3033 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003034 udelay(150);
3035
Akshay Joshi0206e352011-08-16 15:34:10 -04003036 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003037 reg = FDI_TX_CTL(pipe);
3038 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003039 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3040 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003041 I915_WRITE(reg, temp);
3042
3043 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003044 udelay(500);
3045
Sean Paulfa37d392012-03-02 12:53:39 -05003046 for (retry = 0; retry < 5; retry++) {
3047 reg = FDI_RX_IIR(pipe);
3048 temp = I915_READ(reg);
3049 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3050 if (temp & FDI_RX_BIT_LOCK) {
3051 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3052 DRM_DEBUG_KMS("FDI train 1 done.\n");
3053 break;
3054 }
3055 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003056 }
Sean Paulfa37d392012-03-02 12:53:39 -05003057 if (retry < 5)
3058 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003059 }
3060 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003061 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003062
3063 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003064 reg = FDI_TX_CTL(pipe);
3065 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003066 temp &= ~FDI_LINK_TRAIN_NONE;
3067 temp |= FDI_LINK_TRAIN_PATTERN_2;
3068 if (IS_GEN6(dev)) {
3069 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3070 /* SNB-B */
3071 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3072 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003073 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003074
Chris Wilson5eddb702010-09-11 13:48:45 +01003075 reg = FDI_RX_CTL(pipe);
3076 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003077 if (HAS_PCH_CPT(dev)) {
3078 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3079 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3080 } else {
3081 temp &= ~FDI_LINK_TRAIN_NONE;
3082 temp |= FDI_LINK_TRAIN_PATTERN_2;
3083 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003084 I915_WRITE(reg, temp);
3085
3086 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003087 udelay(150);
3088
Akshay Joshi0206e352011-08-16 15:34:10 -04003089 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003090 reg = FDI_TX_CTL(pipe);
3091 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003092 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3093 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003094 I915_WRITE(reg, temp);
3095
3096 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003097 udelay(500);
3098
Sean Paulfa37d392012-03-02 12:53:39 -05003099 for (retry = 0; retry < 5; retry++) {
3100 reg = FDI_RX_IIR(pipe);
3101 temp = I915_READ(reg);
3102 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3103 if (temp & FDI_RX_SYMBOL_LOCK) {
3104 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3105 DRM_DEBUG_KMS("FDI train 2 done.\n");
3106 break;
3107 }
3108 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003109 }
Sean Paulfa37d392012-03-02 12:53:39 -05003110 if (retry < 5)
3111 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003112 }
3113 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003114 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003115
3116 DRM_DEBUG_KMS("FDI train done.\n");
3117}
3118
Jesse Barnes357555c2011-04-28 15:09:55 -07003119/* Manual link training for Ivy Bridge A0 parts */
3120static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3121{
3122 struct drm_device *dev = crtc->dev;
3123 struct drm_i915_private *dev_priv = dev->dev_private;
3124 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3125 int pipe = intel_crtc->pipe;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003126 u32 reg, temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07003127
3128 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3129 for train result */
3130 reg = FDI_RX_IMR(pipe);
3131 temp = I915_READ(reg);
3132 temp &= ~FDI_RX_SYMBOL_LOCK;
3133 temp &= ~FDI_RX_BIT_LOCK;
3134 I915_WRITE(reg, temp);
3135
3136 POSTING_READ(reg);
3137 udelay(150);
3138
Daniel Vetter01a415f2012-10-27 15:58:40 +02003139 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3140 I915_READ(FDI_RX_IIR(pipe)));
3141
Jesse Barnes139ccd32013-08-19 11:04:55 -07003142 /* Try each vswing and preemphasis setting twice before moving on */
3143 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3144 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07003145 reg = FDI_TX_CTL(pipe);
3146 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003147 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3148 temp &= ~FDI_TX_ENABLE;
3149 I915_WRITE(reg, temp);
3150
3151 reg = FDI_RX_CTL(pipe);
3152 temp = I915_READ(reg);
3153 temp &= ~FDI_LINK_TRAIN_AUTO;
3154 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3155 temp &= ~FDI_RX_ENABLE;
3156 I915_WRITE(reg, temp);
3157
3158 /* enable CPU FDI TX and PCH FDI RX */
3159 reg = FDI_TX_CTL(pipe);
3160 temp = I915_READ(reg);
3161 temp &= ~FDI_DP_PORT_WIDTH_MASK;
3162 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
3163 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07003164 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003165 temp |= snb_b_fdi_train_param[j/2];
3166 temp |= FDI_COMPOSITE_SYNC;
3167 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3168
3169 I915_WRITE(FDI_RX_MISC(pipe),
3170 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3171
3172 reg = FDI_RX_CTL(pipe);
3173 temp = I915_READ(reg);
3174 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3175 temp |= FDI_COMPOSITE_SYNC;
3176 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3177
3178 POSTING_READ(reg);
3179 udelay(1); /* should be 0.5us */
3180
3181 for (i = 0; i < 4; i++) {
3182 reg = FDI_RX_IIR(pipe);
3183 temp = I915_READ(reg);
3184 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3185
3186 if (temp & FDI_RX_BIT_LOCK ||
3187 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3188 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3189 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3190 i);
3191 break;
3192 }
3193 udelay(1); /* should be 0.5us */
3194 }
3195 if (i == 4) {
3196 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3197 continue;
3198 }
3199
3200 /* Train 2 */
3201 reg = FDI_TX_CTL(pipe);
3202 temp = I915_READ(reg);
3203 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3204 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3205 I915_WRITE(reg, temp);
3206
3207 reg = FDI_RX_CTL(pipe);
3208 temp = I915_READ(reg);
3209 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3210 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07003211 I915_WRITE(reg, temp);
3212
3213 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003214 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003215
Jesse Barnes139ccd32013-08-19 11:04:55 -07003216 for (i = 0; i < 4; i++) {
3217 reg = FDI_RX_IIR(pipe);
3218 temp = I915_READ(reg);
3219 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07003220
Jesse Barnes139ccd32013-08-19 11:04:55 -07003221 if (temp & FDI_RX_SYMBOL_LOCK ||
3222 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3223 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3224 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3225 i);
3226 goto train_done;
3227 }
3228 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003229 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07003230 if (i == 4)
3231 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07003232 }
Jesse Barnes357555c2011-04-28 15:09:55 -07003233
Jesse Barnes139ccd32013-08-19 11:04:55 -07003234train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07003235 DRM_DEBUG_KMS("FDI train done.\n");
3236}
3237
Daniel Vetter88cefb62012-08-12 19:27:14 +02003238static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07003239{
Daniel Vetter88cefb62012-08-12 19:27:14 +02003240 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003241 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003242 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003243 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003244
Jesse Barnesc64e3112010-09-10 11:27:03 -07003245
Jesse Barnes0e23b992010-09-10 11:10:00 -07003246 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01003247 reg = FDI_RX_CTL(pipe);
3248 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003249 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
3250 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003251 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01003252 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3253
3254 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003255 udelay(200);
3256
3257 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003258 temp = I915_READ(reg);
3259 I915_WRITE(reg, temp | FDI_PCDCLK);
3260
3261 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003262 udelay(200);
3263
Paulo Zanoni20749732012-11-23 15:30:38 -02003264 /* Enable CPU FDI TX PLL, always on for Ironlake */
3265 reg = FDI_TX_CTL(pipe);
3266 temp = I915_READ(reg);
3267 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3268 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01003269
Paulo Zanoni20749732012-11-23 15:30:38 -02003270 POSTING_READ(reg);
3271 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003272 }
3273}
3274
Daniel Vetter88cefb62012-08-12 19:27:14 +02003275static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3276{
3277 struct drm_device *dev = intel_crtc->base.dev;
3278 struct drm_i915_private *dev_priv = dev->dev_private;
3279 int pipe = intel_crtc->pipe;
3280 u32 reg, temp;
3281
3282 /* Switch from PCDclk to Rawclk */
3283 reg = FDI_RX_CTL(pipe);
3284 temp = I915_READ(reg);
3285 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3286
3287 /* Disable CPU FDI TX PLL */
3288 reg = FDI_TX_CTL(pipe);
3289 temp = I915_READ(reg);
3290 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3291
3292 POSTING_READ(reg);
3293 udelay(100);
3294
3295 reg = FDI_RX_CTL(pipe);
3296 temp = I915_READ(reg);
3297 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3298
3299 /* Wait for the clocks to turn off. */
3300 POSTING_READ(reg);
3301 udelay(100);
3302}
3303
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003304static void ironlake_fdi_disable(struct drm_crtc *crtc)
3305{
3306 struct drm_device *dev = crtc->dev;
3307 struct drm_i915_private *dev_priv = dev->dev_private;
3308 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3309 int pipe = intel_crtc->pipe;
3310 u32 reg, temp;
3311
3312 /* disable CPU FDI tx and PCH FDI rx */
3313 reg = FDI_TX_CTL(pipe);
3314 temp = I915_READ(reg);
3315 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3316 POSTING_READ(reg);
3317
3318 reg = FDI_RX_CTL(pipe);
3319 temp = I915_READ(reg);
3320 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003321 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003322 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3323
3324 POSTING_READ(reg);
3325 udelay(100);
3326
3327 /* Ironlake workaround, disable clock pointer after downing FDI */
Robin Schroereba905b2014-05-18 02:24:50 +02003328 if (HAS_PCH_IBX(dev))
Jesse Barnes6f06ce12011-01-04 15:09:38 -08003329 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003330
3331 /* still set train pattern 1 */
3332 reg = FDI_TX_CTL(pipe);
3333 temp = I915_READ(reg);
3334 temp &= ~FDI_LINK_TRAIN_NONE;
3335 temp |= FDI_LINK_TRAIN_PATTERN_1;
3336 I915_WRITE(reg, temp);
3337
3338 reg = FDI_RX_CTL(pipe);
3339 temp = I915_READ(reg);
3340 if (HAS_PCH_CPT(dev)) {
3341 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3342 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3343 } else {
3344 temp &= ~FDI_LINK_TRAIN_NONE;
3345 temp |= FDI_LINK_TRAIN_PATTERN_1;
3346 }
3347 /* BPC in FDI rx is consistent with that in PIPECONF */
3348 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003349 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003350 I915_WRITE(reg, temp);
3351
3352 POSTING_READ(reg);
3353 udelay(100);
3354}
3355
Chris Wilson5dce5b932014-01-20 10:17:36 +00003356bool intel_has_pending_fb_unpin(struct drm_device *dev)
3357{
3358 struct intel_crtc *crtc;
3359
3360 /* Note that we don't need to be called with mode_config.lock here
3361 * as our list of CRTC objects is static for the lifetime of the
3362 * device and so cannot disappear as we iterate. Similarly, we can
3363 * happily treat the predicates as racy, atomic checks as userspace
3364 * cannot claim and pin a new fb without at least acquring the
3365 * struct_mutex and so serialising with us.
3366 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003367 for_each_intel_crtc(dev, crtc) {
Chris Wilson5dce5b932014-01-20 10:17:36 +00003368 if (atomic_read(&crtc->unpin_work_count) == 0)
3369 continue;
3370
3371 if (crtc->unpin_work)
3372 intel_wait_for_vblank(dev, crtc->pipe);
3373
3374 return true;
3375 }
3376
3377 return false;
3378}
3379
Ville Syrjälä46a55d32014-05-21 14:04:46 +03003380void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003381{
Chris Wilson0f911282012-04-17 10:05:38 +01003382 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01003383 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003384
Daniel Vetter2c10d572012-12-20 21:24:07 +01003385 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
Daniel Vettereed6d672014-05-19 16:09:35 +02003386 WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3387 !intel_crtc_has_pending_flip(crtc),
3388 60*HZ) == 0);
Chris Wilson5bb61642012-09-27 21:25:58 +01003389
Chris Wilson975d5682014-08-20 13:13:34 +01003390 if (crtc->primary->fb) {
3391 mutex_lock(&dev->struct_mutex);
3392 intel_finish_fb(crtc->primary->fb);
3393 mutex_unlock(&dev->struct_mutex);
3394 }
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003395}
3396
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003397/* Program iCLKIP clock to the desired frequency */
3398static void lpt_program_iclkip(struct drm_crtc *crtc)
3399{
3400 struct drm_device *dev = crtc->dev;
3401 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau241bfc32013-09-25 16:45:37 +01003402 int clock = to_intel_crtc(crtc)->config.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003403 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3404 u32 temp;
3405
Daniel Vetter09153002012-12-12 14:06:44 +01003406 mutex_lock(&dev_priv->dpio_lock);
3407
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003408 /* It is necessary to ungate the pixclk gate prior to programming
3409 * the divisors, and gate it back when it is done.
3410 */
3411 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3412
3413 /* Disable SSCCTL */
3414 intel_sbi_write(dev_priv, SBI_SSCCTL6,
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003415 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
3416 SBI_SSCCTL_DISABLE,
3417 SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003418
3419 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003420 if (clock == 20000) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003421 auxdiv = 1;
3422 divsel = 0x41;
3423 phaseinc = 0x20;
3424 } else {
3425 /* The iCLK virtual clock root frequency is in MHz,
Damien Lespiau241bfc32013-09-25 16:45:37 +01003426 * but the adjusted_mode->crtc_clock in in KHz. To get the
3427 * divisors, it is necessary to divide one by another, so we
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003428 * convert the virtual clock precision to KHz here for higher
3429 * precision.
3430 */
3431 u32 iclk_virtual_root_freq = 172800 * 1000;
3432 u32 iclk_pi_range = 64;
3433 u32 desired_divisor, msb_divisor_value, pi_value;
3434
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003435 desired_divisor = (iclk_virtual_root_freq / clock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003436 msb_divisor_value = desired_divisor / iclk_pi_range;
3437 pi_value = desired_divisor % iclk_pi_range;
3438
3439 auxdiv = 0;
3440 divsel = msb_divisor_value - 2;
3441 phaseinc = pi_value;
3442 }
3443
3444 /* This should not happen with any sane values */
3445 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3446 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3447 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3448 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3449
3450 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 +03003451 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003452 auxdiv,
3453 divsel,
3454 phasedir,
3455 phaseinc);
3456
3457 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003458 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003459 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3460 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3461 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3462 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3463 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3464 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003465 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003466
3467 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003468 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003469 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3470 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003471 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003472
3473 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003474 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003475 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003476 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003477
3478 /* Wait for initialization time */
3479 udelay(24);
3480
3481 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
Daniel Vetter09153002012-12-12 14:06:44 +01003482
3483 mutex_unlock(&dev_priv->dpio_lock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003484}
3485
Daniel Vetter275f01b22013-05-03 11:49:47 +02003486static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3487 enum pipe pch_transcoder)
3488{
3489 struct drm_device *dev = crtc->base.dev;
3490 struct drm_i915_private *dev_priv = dev->dev_private;
3491 enum transcoder cpu_transcoder = crtc->config.cpu_transcoder;
3492
3493 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
3494 I915_READ(HTOTAL(cpu_transcoder)));
3495 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
3496 I915_READ(HBLANK(cpu_transcoder)));
3497 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
3498 I915_READ(HSYNC(cpu_transcoder)));
3499
3500 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
3501 I915_READ(VTOTAL(cpu_transcoder)));
3502 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
3503 I915_READ(VBLANK(cpu_transcoder)));
3504 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
3505 I915_READ(VSYNC(cpu_transcoder)));
3506 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
3507 I915_READ(VSYNCSHIFT(cpu_transcoder)));
3508}
3509
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003510static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
3511{
3512 struct drm_i915_private *dev_priv = dev->dev_private;
3513 uint32_t temp;
3514
3515 temp = I915_READ(SOUTH_CHICKEN1);
3516 if (temp & FDI_BC_BIFURCATION_SELECT)
3517 return;
3518
3519 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3520 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3521
3522 temp |= FDI_BC_BIFURCATION_SELECT;
3523 DRM_DEBUG_KMS("enabling fdi C rx\n");
3524 I915_WRITE(SOUTH_CHICKEN1, temp);
3525 POSTING_READ(SOUTH_CHICKEN1);
3526}
3527
3528static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
3529{
3530 struct drm_device *dev = intel_crtc->base.dev;
3531 struct drm_i915_private *dev_priv = dev->dev_private;
3532
3533 switch (intel_crtc->pipe) {
3534 case PIPE_A:
3535 break;
3536 case PIPE_B:
3537 if (intel_crtc->config.fdi_lanes > 2)
3538 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
3539 else
3540 cpt_enable_fdi_bc_bifurcation(dev);
3541
3542 break;
3543 case PIPE_C:
3544 cpt_enable_fdi_bc_bifurcation(dev);
3545
3546 break;
3547 default:
3548 BUG();
3549 }
3550}
3551
Jesse Barnesf67a5592011-01-05 10:31:48 -08003552/*
3553 * Enable PCH resources required for PCH ports:
3554 * - PCH PLLs
3555 * - FDI training & RX/TX
3556 * - update transcoder timings
3557 * - DP transcoding bits
3558 * - transcoder
3559 */
3560static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003561{
3562 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003563 struct drm_i915_private *dev_priv = dev->dev_private;
3564 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3565 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003566 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003567
Daniel Vetterab9412b2013-05-03 11:49:46 +02003568 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01003569
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003570 if (IS_IVYBRIDGE(dev))
3571 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
3572
Daniel Vettercd986ab2012-10-26 10:58:12 +02003573 /* Write the TU size bits before fdi link training, so that error
3574 * detection works. */
3575 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3576 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3577
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003578 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07003579 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003580
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003581 /* We need to program the right clock selection before writing the pixel
3582 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003583 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003584 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07003585
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003586 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02003587 temp |= TRANS_DPLL_ENABLE(pipe);
3588 sel = TRANS_DPLLB_SEL(pipe);
Daniel Vettera43f6e02013-06-07 23:10:32 +02003589 if (intel_crtc->config.shared_dpll == DPLL_ID_PCH_PLL_B)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003590 temp |= sel;
3591 else
3592 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003593 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003594 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003595
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003596 /* XXX: pch pll's can be enabled any time before we enable the PCH
3597 * transcoder, and we actually should do this to not upset any PCH
3598 * transcoder that already use the clock when we share it.
3599 *
3600 * Note that enable_shared_dpll tries to do the right thing, but
3601 * get_shared_dpll unconditionally resets the pll - we need that to have
3602 * the right LVDS enable sequence. */
Daniel Vetter85b38942014-04-24 23:55:14 +02003603 intel_enable_shared_dpll(intel_crtc);
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003604
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08003605 /* set transcoder timing, panel must allow it */
3606 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02003607 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003608
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003609 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003610
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003611 /* For PCH DP, enable TRANS_DP_CTL */
3612 if (HAS_PCH_CPT(dev) &&
Keith Packard417e8222011-11-01 19:54:11 -07003613 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
3614 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003615 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01003616 reg = TRANS_DP_CTL(pipe);
3617 temp = I915_READ(reg);
3618 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08003619 TRANS_DP_SYNC_MASK |
3620 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01003621 temp |= (TRANS_DP_OUTPUT_ENABLE |
3622 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003623 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003624
3625 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003626 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003627 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003628 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003629
3630 switch (intel_trans_dp_port_sel(crtc)) {
3631 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01003632 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003633 break;
3634 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01003635 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003636 break;
3637 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01003638 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003639 break;
3640 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02003641 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003642 }
3643
Chris Wilson5eddb702010-09-11 13:48:45 +01003644 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003645 }
3646
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003647 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003648}
3649
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003650static void lpt_pch_enable(struct drm_crtc *crtc)
3651{
3652 struct drm_device *dev = crtc->dev;
3653 struct drm_i915_private *dev_priv = dev->dev_private;
3654 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02003655 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003656
Daniel Vetterab9412b2013-05-03 11:49:46 +02003657 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003658
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02003659 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003660
Paulo Zanoni0540e482012-10-31 18:12:40 -02003661 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02003662 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003663
Paulo Zanoni937bb612012-10-31 18:12:47 -02003664 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003665}
3666
Daniel Vetter716c2e52014-06-25 22:02:02 +03003667void intel_put_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003668{
Daniel Vettere2b78262013-06-07 23:10:03 +02003669 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003670
3671 if (pll == NULL)
3672 return;
3673
3674 if (pll->refcount == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003675 WARN(1, "bad %s refcount\n", pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003676 return;
3677 }
3678
Daniel Vetterf4a091c2013-06-10 17:28:22 +02003679 if (--pll->refcount == 0) {
3680 WARN_ON(pll->on);
3681 WARN_ON(pll->active);
3682 }
3683
Daniel Vettera43f6e02013-06-07 23:10:32 +02003684 crtc->config.shared_dpll = DPLL_ID_PRIVATE;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003685}
3686
Daniel Vetter716c2e52014-06-25 22:02:02 +03003687struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003688{
Daniel Vettere2b78262013-06-07 23:10:03 +02003689 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
3690 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
3691 enum intel_dpll_id i;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003692
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003693 if (pll) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003694 DRM_DEBUG_KMS("CRTC:%d dropping existing %s\n",
3695 crtc->base.base.id, pll->name);
Daniel Vettere2b78262013-06-07 23:10:03 +02003696 intel_put_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003697 }
3698
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003699 if (HAS_PCH_IBX(dev_priv->dev)) {
3700 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
Daniel Vetterd94ab062013-07-04 12:01:16 +02003701 i = (enum intel_dpll_id) crtc->pipe;
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003702 pll = &dev_priv->shared_dplls[i];
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003703
Daniel Vetter46edb022013-06-05 13:34:12 +02003704 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
3705 crtc->base.base.id, pll->name);
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003706
Daniel Vetterf2a69f42014-05-20 15:19:19 +02003707 WARN_ON(pll->refcount);
3708
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003709 goto found;
3710 }
3711
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003712 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3713 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003714
3715 /* Only want to check enabled timings first */
3716 if (pll->refcount == 0)
3717 continue;
3718
Daniel Vetterb89a1d32013-06-05 13:34:24 +02003719 if (memcmp(&crtc->config.dpll_hw_state, &pll->hw_state,
3720 sizeof(pll->hw_state)) == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003721 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (refcount %d, ative %d)\n",
Daniel Vettere2b78262013-06-07 23:10:03 +02003722 crtc->base.base.id,
Daniel Vetter46edb022013-06-05 13:34:12 +02003723 pll->name, pll->refcount, pll->active);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003724
3725 goto found;
3726 }
3727 }
3728
3729 /* Ok no matching timings, maybe there's a free one? */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003730 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3731 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003732 if (pll->refcount == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003733 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
3734 crtc->base.base.id, pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003735 goto found;
3736 }
3737 }
3738
3739 return NULL;
3740
3741found:
Daniel Vetterf2a69f42014-05-20 15:19:19 +02003742 if (pll->refcount == 0)
3743 pll->hw_state = crtc->config.dpll_hw_state;
3744
Daniel Vettera43f6e02013-06-07 23:10:32 +02003745 crtc->config.shared_dpll = i;
Daniel Vetter46edb022013-06-05 13:34:12 +02003746 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
3747 pipe_name(crtc->pipe));
Daniel Vetter66e985c2013-06-05 13:34:20 +02003748
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003749 pll->refcount++;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003750
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003751 return pll;
3752}
3753
Daniel Vettera1520312013-05-03 11:49:50 +02003754static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07003755{
3756 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01003757 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07003758 u32 temp;
3759
3760 temp = I915_READ(dslreg);
3761 udelay(500);
3762 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07003763 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003764 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07003765 }
3766}
3767
Jesse Barnesb074cec2013-04-25 12:55:02 -07003768static void ironlake_pfit_enable(struct intel_crtc *crtc)
3769{
3770 struct drm_device *dev = crtc->base.dev;
3771 struct drm_i915_private *dev_priv = dev->dev_private;
3772 int pipe = crtc->pipe;
3773
Chris Wilsonfd4daa92013-08-27 17:04:17 +01003774 if (crtc->config.pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07003775 /* Force use of hard-coded filter coefficients
3776 * as some pre-programmed values are broken,
3777 * e.g. x201.
3778 */
3779 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
3780 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
3781 PF_PIPE_SEL_IVB(pipe));
3782 else
3783 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
3784 I915_WRITE(PF_WIN_POS(pipe), crtc->config.pch_pfit.pos);
3785 I915_WRITE(PF_WIN_SZ(pipe), crtc->config.pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08003786 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08003787}
3788
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003789static void intel_enable_planes(struct drm_crtc *crtc)
3790{
3791 struct drm_device *dev = crtc->dev;
3792 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07003793 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003794 struct intel_plane *intel_plane;
3795
Matt Roperaf2b6532014-04-01 15:22:32 -07003796 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
3797 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003798 if (intel_plane->pipe == pipe)
3799 intel_plane_restore(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07003800 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003801}
3802
3803static void intel_disable_planes(struct drm_crtc *crtc)
3804{
3805 struct drm_device *dev = crtc->dev;
3806 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07003807 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003808 struct intel_plane *intel_plane;
3809
Matt Roperaf2b6532014-04-01 15:22:32 -07003810 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
3811 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003812 if (intel_plane->pipe == pipe)
3813 intel_plane_disable(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07003814 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003815}
3816
Ville Syrjälä20bc86732013-10-01 18:02:17 +03003817void hsw_enable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03003818{
Ville Syrjäläcea165c2014-04-15 21:41:35 +03003819 struct drm_device *dev = crtc->base.dev;
3820 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid77e4532013-09-24 13:52:55 -03003821
3822 if (!crtc->config.ips_enabled)
3823 return;
3824
Ville Syrjäläcea165c2014-04-15 21:41:35 +03003825 /* We can only enable IPS after we enable a plane and wait for a vblank */
3826 intel_wait_for_vblank(dev, crtc->pipe);
3827
Paulo Zanonid77e4532013-09-24 13:52:55 -03003828 assert_plane_enabled(dev_priv, crtc->plane);
Ville Syrjäläcea165c2014-04-15 21:41:35 +03003829 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003830 mutex_lock(&dev_priv->rps.hw_lock);
3831 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
3832 mutex_unlock(&dev_priv->rps.hw_lock);
3833 /* Quoting Art Runyan: "its not safe to expect any particular
3834 * value in IPS_CTL bit 31 after enabling IPS through the
Jesse Barnese59150d2014-01-07 13:30:45 -08003835 * mailbox." Moreover, the mailbox may return a bogus state,
3836 * so we need to just enable it and continue on.
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003837 */
3838 } else {
3839 I915_WRITE(IPS_CTL, IPS_ENABLE);
3840 /* The bit only becomes 1 in the next vblank, so this wait here
3841 * is essentially intel_wait_for_vblank. If we don't have this
3842 * and don't wait for vblanks until the end of crtc_enable, then
3843 * the HW state readout code will complain that the expected
3844 * IPS_CTL value is not the one we read. */
3845 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
3846 DRM_ERROR("Timed out waiting for IPS enable\n");
3847 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03003848}
3849
Ville Syrjälä20bc86732013-10-01 18:02:17 +03003850void hsw_disable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03003851{
3852 struct drm_device *dev = crtc->base.dev;
3853 struct drm_i915_private *dev_priv = dev->dev_private;
3854
3855 if (!crtc->config.ips_enabled)
3856 return;
3857
3858 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky23d0b132014-04-10 14:32:41 -07003859 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003860 mutex_lock(&dev_priv->rps.hw_lock);
3861 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
3862 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky23d0b132014-04-10 14:32:41 -07003863 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
3864 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
3865 DRM_ERROR("Timed out waiting for IPS disable\n");
Jesse Barnese59150d2014-01-07 13:30:45 -08003866 } else {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003867 I915_WRITE(IPS_CTL, 0);
Jesse Barnese59150d2014-01-07 13:30:45 -08003868 POSTING_READ(IPS_CTL);
3869 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03003870
3871 /* We need to wait for a vblank before we can disable the plane. */
3872 intel_wait_for_vblank(dev, crtc->pipe);
3873}
3874
3875/** Loads the palette/gamma unit for the CRTC with the prepared values */
3876static void intel_crtc_load_lut(struct drm_crtc *crtc)
3877{
3878 struct drm_device *dev = crtc->dev;
3879 struct drm_i915_private *dev_priv = dev->dev_private;
3880 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3881 enum pipe pipe = intel_crtc->pipe;
3882 int palreg = PALETTE(pipe);
3883 int i;
3884 bool reenable_ips = false;
3885
3886 /* The clocks have to be on to load the palette. */
3887 if (!crtc->enabled || !intel_crtc->active)
3888 return;
3889
3890 if (!HAS_PCH_SPLIT(dev_priv->dev)) {
3891 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
3892 assert_dsi_pll_enabled(dev_priv);
3893 else
3894 assert_pll_enabled(dev_priv, pipe);
3895 }
3896
3897 /* use legacy palette for Ironlake */
Sonika Jindal7a1db492014-07-22 11:18:27 +05303898 if (!HAS_GMCH_DISPLAY(dev))
Paulo Zanonid77e4532013-09-24 13:52:55 -03003899 palreg = LGC_PALETTE(pipe);
3900
3901 /* Workaround : Do not read or write the pipe palette/gamma data while
3902 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
3903 */
Paulo Zanoni41e6fc42014-01-08 17:26:31 -02003904 if (IS_HASWELL(dev) && intel_crtc->config.ips_enabled &&
Paulo Zanonid77e4532013-09-24 13:52:55 -03003905 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
3906 GAMMA_MODE_MODE_SPLIT)) {
3907 hsw_disable_ips(intel_crtc);
3908 reenable_ips = true;
3909 }
3910
3911 for (i = 0; i < 256; i++) {
3912 I915_WRITE(palreg + 4 * i,
3913 (intel_crtc->lut_r[i] << 16) |
3914 (intel_crtc->lut_g[i] << 8) |
3915 intel_crtc->lut_b[i]);
3916 }
3917
3918 if (reenable_ips)
3919 hsw_enable_ips(intel_crtc);
3920}
3921
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003922static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
3923{
3924 if (!enable && intel_crtc->overlay) {
3925 struct drm_device *dev = intel_crtc->base.dev;
3926 struct drm_i915_private *dev_priv = dev->dev_private;
3927
3928 mutex_lock(&dev->struct_mutex);
3929 dev_priv->mm.interruptible = false;
3930 (void) intel_overlay_switch_off(intel_crtc->overlay);
3931 dev_priv->mm.interruptible = true;
3932 mutex_unlock(&dev->struct_mutex);
3933 }
3934
3935 /* Let userspace switch the overlay on again. In most cases userspace
3936 * has to recompute where to put it anyway.
3937 */
3938}
3939
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003940static void intel_crtc_enable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003941{
3942 struct drm_device *dev = crtc->dev;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003943 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3944 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003945
Ville Syrjäläf98551a2014-05-22 17:48:06 +03003946 drm_vblank_on(dev, pipe);
3947
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03003948 intel_enable_primary_hw_plane(crtc->primary, crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003949 intel_enable_planes(crtc);
3950 intel_crtc_update_cursor(crtc, true);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003951 intel_crtc_dpms_overlay(intel_crtc, true);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003952
3953 hsw_enable_ips(intel_crtc);
3954
3955 mutex_lock(&dev->struct_mutex);
3956 intel_update_fbc(dev);
3957 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf99d7062014-06-19 16:01:59 +02003958
3959 /*
3960 * FIXME: Once we grow proper nuclear flip support out of this we need
3961 * to compute the mask of flip planes precisely. For the time being
3962 * consider this a flip from a NULL plane.
3963 */
3964 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003965}
3966
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003967static void intel_crtc_disable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003968{
3969 struct drm_device *dev = crtc->dev;
3970 struct drm_i915_private *dev_priv = dev->dev_private;
3971 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3972 int pipe = intel_crtc->pipe;
3973 int plane = intel_crtc->plane;
3974
3975 intel_crtc_wait_for_pending_flips(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003976
3977 if (dev_priv->fbc.plane == plane)
3978 intel_disable_fbc(dev);
3979
3980 hsw_disable_ips(intel_crtc);
3981
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003982 intel_crtc_dpms_overlay(intel_crtc, false);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003983 intel_crtc_update_cursor(crtc, false);
3984 intel_disable_planes(crtc);
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03003985 intel_disable_primary_hw_plane(crtc->primary, crtc);
Ville Syrjäläf98551a2014-05-22 17:48:06 +03003986
Daniel Vetterf99d7062014-06-19 16:01:59 +02003987 /*
3988 * FIXME: Once we grow proper nuclear flip support out of this we need
3989 * to compute the mask of flip planes precisely. For the time being
3990 * consider this a flip to a NULL plane.
3991 */
3992 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
3993
Ville Syrjäläf98551a2014-05-22 17:48:06 +03003994 drm_vblank_off(dev, pipe);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003995}
3996
Jesse Barnesf67a5592011-01-05 10:31:48 -08003997static void ironlake_crtc_enable(struct drm_crtc *crtc)
3998{
3999 struct drm_device *dev = crtc->dev;
4000 struct drm_i915_private *dev_priv = dev->dev_private;
4001 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004002 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004003 int pipe = intel_crtc->pipe;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004004
Daniel Vetter08a48462012-07-02 11:43:47 +02004005 WARN_ON(!crtc->enabled);
4006
Jesse Barnesf67a5592011-01-05 10:31:48 -08004007 if (intel_crtc->active)
4008 return;
4009
Daniel Vetterb14b1052014-04-24 23:55:13 +02004010 if (intel_crtc->config.has_pch_encoder)
4011 intel_prepare_shared_dpll(intel_crtc);
4012
Daniel Vetter29407aa2014-04-24 23:55:08 +02004013 if (intel_crtc->config.has_dp_encoder)
4014 intel_dp_set_m_n(intel_crtc);
4015
4016 intel_set_pipe_timings(intel_crtc);
4017
4018 if (intel_crtc->config.has_pch_encoder) {
4019 intel_cpu_transcoder_set_m_n(intel_crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -07004020 &intel_crtc->config.fdi_m_n, NULL);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004021 }
4022
4023 ironlake_set_pipeconf(crtc);
4024
Jesse Barnesf67a5592011-01-05 10:31:48 -08004025 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004026
4027 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4028 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
4029
Daniel Vetterf6736a12013-06-05 13:34:30 +02004030 for_each_encoder_on_crtc(dev, crtc, encoder)
Daniel Vetter952735e2013-06-05 13:34:27 +02004031 if (encoder->pre_enable)
4032 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004033
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01004034 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02004035 /* Note: FDI PLL enabling _must_ be done before we enable the
4036 * cpu pipes, hence this is separate from all the other fdi/pch
4037 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02004038 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02004039 } else {
4040 assert_fdi_tx_disabled(dev_priv, pipe);
4041 assert_fdi_rx_disabled(dev_priv, pipe);
4042 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004043
Jesse Barnesb074cec2013-04-25 12:55:02 -07004044 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004045
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02004046 /*
4047 * On ILK+ LUT must be loaded before the pipe is running but with
4048 * clocks enabled
4049 */
4050 intel_crtc_load_lut(crtc);
4051
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004052 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004053 intel_enable_pipe(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004054
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01004055 if (intel_crtc->config.has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08004056 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004057
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004058 for_each_encoder_on_crtc(dev, crtc, encoder)
4059 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02004060
4061 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02004062 cpt_verify_modeset(dev, intel_crtc->pipe);
Daniel Vetter6ce94102012-10-04 19:20:03 +02004063
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004064 intel_crtc_enable_planes(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004065}
4066
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004067/* IPS only exists on ULT machines and is tied to pipe A. */
4068static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4069{
Damien Lespiauf5adf942013-06-24 18:29:34 +01004070 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004071}
4072
Paulo Zanonie4916942013-09-20 16:21:19 -03004073/*
4074 * This implements the workaround described in the "notes" section of the mode
4075 * set sequence documentation. When going from no pipes or single pipe to
4076 * multiple pipes, and planes are enabled after the pipe, we need to wait at
4077 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
4078 */
4079static void haswell_mode_set_planes_workaround(struct intel_crtc *crtc)
4080{
4081 struct drm_device *dev = crtc->base.dev;
4082 struct intel_crtc *crtc_it, *other_active_crtc = NULL;
4083
4084 /* We want to get the other_active_crtc only if there's only 1 other
4085 * active crtc. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004086 for_each_intel_crtc(dev, crtc_it) {
Paulo Zanonie4916942013-09-20 16:21:19 -03004087 if (!crtc_it->active || crtc_it == crtc)
4088 continue;
4089
4090 if (other_active_crtc)
4091 return;
4092
4093 other_active_crtc = crtc_it;
4094 }
4095 if (!other_active_crtc)
4096 return;
4097
4098 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4099 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4100}
4101
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004102static void haswell_crtc_enable(struct drm_crtc *crtc)
4103{
4104 struct drm_device *dev = crtc->dev;
4105 struct drm_i915_private *dev_priv = dev->dev_private;
4106 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4107 struct intel_encoder *encoder;
4108 int pipe = intel_crtc->pipe;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004109
4110 WARN_ON(!crtc->enabled);
4111
4112 if (intel_crtc->active)
4113 return;
4114
Daniel Vetterdf8ad702014-06-25 22:02:03 +03004115 if (intel_crtc_to_shared_dpll(intel_crtc))
4116 intel_enable_shared_dpll(intel_crtc);
4117
Daniel Vetter229fca92014-04-24 23:55:09 +02004118 if (intel_crtc->config.has_dp_encoder)
4119 intel_dp_set_m_n(intel_crtc);
4120
4121 intel_set_pipe_timings(intel_crtc);
4122
4123 if (intel_crtc->config.has_pch_encoder) {
4124 intel_cpu_transcoder_set_m_n(intel_crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -07004125 &intel_crtc->config.fdi_m_n, NULL);
Daniel Vetter229fca92014-04-24 23:55:09 +02004126 }
4127
4128 haswell_set_pipeconf(crtc);
4129
4130 intel_set_pipe_csc(crtc);
4131
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004132 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004133
4134 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004135 for_each_encoder_on_crtc(dev, crtc, encoder)
4136 if (encoder->pre_enable)
4137 encoder->pre_enable(encoder);
4138
Imre Deak4fe94672014-06-25 22:01:49 +03004139 if (intel_crtc->config.has_pch_encoder) {
4140 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
4141 dev_priv->display.fdi_link_train(crtc);
4142 }
4143
Paulo Zanoni1f544382012-10-24 11:32:00 -02004144 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004145
Jesse Barnesb074cec2013-04-25 12:55:02 -07004146 ironlake_pfit_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004147
4148 /*
4149 * On ILK+ LUT must be loaded before the pipe is running but with
4150 * clocks enabled
4151 */
4152 intel_crtc_load_lut(crtc);
4153
Paulo Zanoni1f544382012-10-24 11:32:00 -02004154 intel_ddi_set_pipe_settings(crtc);
Damien Lespiau8228c252013-03-07 15:30:27 +00004155 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004156
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004157 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004158 intel_enable_pipe(intel_crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004159
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01004160 if (intel_crtc->config.has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004161 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004162
Dave Airlie0e32b392014-05-02 14:02:48 +10004163 if (intel_crtc->config.dp_encoder_is_mst)
4164 intel_ddi_set_vc_payload_alloc(crtc, true);
4165
Jani Nikula8807e552013-08-30 19:40:32 +03004166 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004167 encoder->enable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004168 intel_opregion_notify_encoder(encoder, true);
4169 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004170
Paulo Zanonie4916942013-09-20 16:21:19 -03004171 /* If we change the relative order between pipe/planes enabling, we need
4172 * to change the workaround. */
4173 haswell_mode_set_planes_workaround(intel_crtc);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004174 intel_crtc_enable_planes(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004175}
4176
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004177static void ironlake_pfit_disable(struct intel_crtc *crtc)
4178{
4179 struct drm_device *dev = crtc->base.dev;
4180 struct drm_i915_private *dev_priv = dev->dev_private;
4181 int pipe = crtc->pipe;
4182
4183 /* To avoid upsetting the power well on haswell only disable the pfit if
4184 * it's in use. The hw state code will make sure we get this right. */
Chris Wilsonfd4daa92013-08-27 17:04:17 +01004185 if (crtc->config.pch_pfit.enabled) {
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004186 I915_WRITE(PF_CTL(pipe), 0);
4187 I915_WRITE(PF_WIN_POS(pipe), 0);
4188 I915_WRITE(PF_WIN_SZ(pipe), 0);
4189 }
4190}
4191
Jesse Barnes6be4a602010-09-10 10:26:01 -07004192static void ironlake_crtc_disable(struct drm_crtc *crtc)
4193{
4194 struct drm_device *dev = crtc->dev;
4195 struct drm_i915_private *dev_priv = dev->dev_private;
4196 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004197 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004198 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01004199 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004200
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004201 if (!intel_crtc->active)
4202 return;
4203
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004204 intel_crtc_disable_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004205
Daniel Vetterea9d7582012-07-10 10:42:52 +02004206 for_each_encoder_on_crtc(dev, crtc, encoder)
4207 encoder->disable(encoder);
4208
Daniel Vetterd925c592013-06-05 13:34:04 +02004209 if (intel_crtc->config.has_pch_encoder)
4210 intel_set_pch_fifo_underrun_reporting(dev, pipe, false);
4211
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03004212 intel_disable_pipe(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004213
Dave Airlie0e32b392014-05-02 14:02:48 +10004214 if (intel_crtc->config.dp_encoder_is_mst)
4215 intel_ddi_set_vc_payload_alloc(crtc, false);
4216
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004217 ironlake_pfit_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004218
Daniel Vetterbf49ec82012-09-06 22:15:40 +02004219 for_each_encoder_on_crtc(dev, crtc, encoder)
4220 if (encoder->post_disable)
4221 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004222
Daniel Vetterd925c592013-06-05 13:34:04 +02004223 if (intel_crtc->config.has_pch_encoder) {
4224 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004225
Daniel Vetterd925c592013-06-05 13:34:04 +02004226 ironlake_disable_pch_transcoder(dev_priv, pipe);
4227 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004228
Daniel Vetterd925c592013-06-05 13:34:04 +02004229 if (HAS_PCH_CPT(dev)) {
4230 /* disable TRANS_DP_CTL */
4231 reg = TRANS_DP_CTL(pipe);
4232 temp = I915_READ(reg);
4233 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
4234 TRANS_DP_PORT_SEL_MASK);
4235 temp |= TRANS_DP_PORT_SEL_NONE;
4236 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004237
Daniel Vetterd925c592013-06-05 13:34:04 +02004238 /* disable DPLL_SEL */
4239 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02004240 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
Daniel Vetterd925c592013-06-05 13:34:04 +02004241 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004242 }
Daniel Vetterd925c592013-06-05 13:34:04 +02004243
4244 /* disable PCH DPLL */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004245 intel_disable_shared_dpll(intel_crtc);
Daniel Vetterd925c592013-06-05 13:34:04 +02004246
4247 ironlake_fdi_pll_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004248 }
4249
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004250 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004251 intel_update_watermarks(crtc);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004252
4253 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01004254 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004255 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004256}
4257
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004258static void haswell_crtc_disable(struct drm_crtc *crtc)
4259{
4260 struct drm_device *dev = crtc->dev;
4261 struct drm_i915_private *dev_priv = dev->dev_private;
4262 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4263 struct intel_encoder *encoder;
Daniel Vetter3b117c82013-04-17 20:15:07 +02004264 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004265
4266 if (!intel_crtc->active)
4267 return;
4268
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004269 intel_crtc_disable_planes(crtc);
Ville Syrjälädda9a662013-09-19 17:00:37 -03004270
Jani Nikula8807e552013-08-30 19:40:32 +03004271 for_each_encoder_on_crtc(dev, crtc, encoder) {
4272 intel_opregion_notify_encoder(encoder, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004273 encoder->disable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004274 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004275
Paulo Zanoni86642812013-04-12 17:57:57 -03004276 if (intel_crtc->config.has_pch_encoder)
4277 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, false);
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03004278 intel_disable_pipe(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004279
Paulo Zanoniad80a812012-10-24 16:06:19 -02004280 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004281
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004282 ironlake_pfit_disable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004283
Paulo Zanoni1f544382012-10-24 11:32:00 -02004284 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004285
Daniel Vetter88adfff2013-03-28 10:42:01 +01004286 if (intel_crtc->config.has_pch_encoder) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02004287 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni86642812013-04-12 17:57:57 -03004288 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02004289 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02004290 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004291
Imre Deak97b040a2014-06-25 22:01:50 +03004292 for_each_encoder_on_crtc(dev, crtc, encoder)
4293 if (encoder->post_disable)
4294 encoder->post_disable(encoder);
4295
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004296 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004297 intel_update_watermarks(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004298
4299 mutex_lock(&dev->struct_mutex);
4300 intel_update_fbc(dev);
4301 mutex_unlock(&dev->struct_mutex);
Daniel Vetterdf8ad702014-06-25 22:02:03 +03004302
4303 if (intel_crtc_to_shared_dpll(intel_crtc))
4304 intel_disable_shared_dpll(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004305}
4306
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004307static void ironlake_crtc_off(struct drm_crtc *crtc)
4308{
4309 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004310 intel_put_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004311}
4312
Paulo Zanoni6441ab52012-10-05 12:05:58 -03004313
Jesse Barnes2dd24552013-04-25 12:55:01 -07004314static void i9xx_pfit_enable(struct intel_crtc *crtc)
4315{
4316 struct drm_device *dev = crtc->base.dev;
4317 struct drm_i915_private *dev_priv = dev->dev_private;
4318 struct intel_crtc_config *pipe_config = &crtc->config;
4319
Daniel Vetter328d8e82013-05-08 10:36:31 +02004320 if (!crtc->config.gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07004321 return;
4322
Daniel Vetterc0b03412013-05-28 12:05:54 +02004323 /*
4324 * The panel fitter should only be adjusted whilst the pipe is disabled,
4325 * according to register description and PRM.
4326 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07004327 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
4328 assert_pipe_disabled(dev_priv, crtc->pipe);
4329
Jesse Barnesb074cec2013-04-25 12:55:02 -07004330 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
4331 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02004332
4333 /* Border color in case we don't scale up to the full screen. Black by
4334 * default, change to something else for debugging. */
4335 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07004336}
4337
Dave Airlied05410f2014-06-05 13:22:59 +10004338static enum intel_display_power_domain port_to_power_domain(enum port port)
4339{
4340 switch (port) {
4341 case PORT_A:
4342 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
4343 case PORT_B:
4344 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
4345 case PORT_C:
4346 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
4347 case PORT_D:
4348 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
4349 default:
4350 WARN_ON_ONCE(1);
4351 return POWER_DOMAIN_PORT_OTHER;
4352 }
4353}
4354
Imre Deak77d22dc2014-03-05 16:20:52 +02004355#define for_each_power_domain(domain, mask) \
4356 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
4357 if ((1 << (domain)) & (mask))
4358
Imre Deak319be8a2014-03-04 19:22:57 +02004359enum intel_display_power_domain
4360intel_display_port_power_domain(struct intel_encoder *intel_encoder)
Imre Deak77d22dc2014-03-05 16:20:52 +02004361{
Imre Deak319be8a2014-03-04 19:22:57 +02004362 struct drm_device *dev = intel_encoder->base.dev;
4363 struct intel_digital_port *intel_dig_port;
4364
4365 switch (intel_encoder->type) {
4366 case INTEL_OUTPUT_UNKNOWN:
4367 /* Only DDI platforms should ever use this output type */
4368 WARN_ON_ONCE(!HAS_DDI(dev));
4369 case INTEL_OUTPUT_DISPLAYPORT:
4370 case INTEL_OUTPUT_HDMI:
4371 case INTEL_OUTPUT_EDP:
4372 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
Dave Airlied05410f2014-06-05 13:22:59 +10004373 return port_to_power_domain(intel_dig_port->port);
Dave Airlie0e32b392014-05-02 14:02:48 +10004374 case INTEL_OUTPUT_DP_MST:
4375 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
4376 return port_to_power_domain(intel_dig_port->port);
Imre Deak319be8a2014-03-04 19:22:57 +02004377 case INTEL_OUTPUT_ANALOG:
4378 return POWER_DOMAIN_PORT_CRT;
4379 case INTEL_OUTPUT_DSI:
4380 return POWER_DOMAIN_PORT_DSI;
4381 default:
4382 return POWER_DOMAIN_PORT_OTHER;
4383 }
4384}
4385
4386static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
4387{
4388 struct drm_device *dev = crtc->dev;
4389 struct intel_encoder *intel_encoder;
4390 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4391 enum pipe pipe = intel_crtc->pipe;
Imre Deak77d22dc2014-03-05 16:20:52 +02004392 unsigned long mask;
4393 enum transcoder transcoder;
4394
4395 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
4396
4397 mask = BIT(POWER_DOMAIN_PIPE(pipe));
4398 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
Daniel Vetterfabf6e52014-05-29 14:10:22 +02004399 if (intel_crtc->config.pch_pfit.enabled ||
4400 intel_crtc->config.pch_pfit.force_thru)
Imre Deak77d22dc2014-03-05 16:20:52 +02004401 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
4402
Imre Deak319be8a2014-03-04 19:22:57 +02004403 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4404 mask |= BIT(intel_display_port_power_domain(intel_encoder));
4405
Imre Deak77d22dc2014-03-05 16:20:52 +02004406 return mask;
4407}
4408
4409void intel_display_set_init_power(struct drm_i915_private *dev_priv,
4410 bool enable)
4411{
4412 if (dev_priv->power_domains.init_power_on == enable)
4413 return;
4414
4415 if (enable)
4416 intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
4417 else
4418 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
4419
4420 dev_priv->power_domains.init_power_on = enable;
4421}
4422
4423static void modeset_update_crtc_power_domains(struct drm_device *dev)
4424{
4425 struct drm_i915_private *dev_priv = dev->dev_private;
4426 unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
4427 struct intel_crtc *crtc;
4428
4429 /*
4430 * First get all needed power domains, then put all unneeded, to avoid
4431 * any unnecessary toggling of the power wells.
4432 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004433 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004434 enum intel_display_power_domain domain;
4435
4436 if (!crtc->base.enabled)
4437 continue;
4438
Imre Deak319be8a2014-03-04 19:22:57 +02004439 pipe_domains[crtc->pipe] = get_crtc_power_domains(&crtc->base);
Imre Deak77d22dc2014-03-05 16:20:52 +02004440
4441 for_each_power_domain(domain, pipe_domains[crtc->pipe])
4442 intel_display_power_get(dev_priv, domain);
4443 }
4444
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004445 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004446 enum intel_display_power_domain domain;
4447
4448 for_each_power_domain(domain, crtc->enabled_power_domains)
4449 intel_display_power_put(dev_priv, domain);
4450
4451 crtc->enabled_power_domains = pipe_domains[crtc->pipe];
4452 }
4453
4454 intel_display_set_init_power(dev_priv, false);
4455}
4456
Ville Syrjälädfcab172014-06-13 13:37:47 +03004457/* returns HPLL frequency in kHz */
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004458static int valleyview_get_vco(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004459{
Jesse Barnes586f49d2013-11-04 16:06:59 -08004460 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
Jesse Barnes30a970c2013-11-04 13:48:12 -08004461
Jesse Barnes586f49d2013-11-04 16:06:59 -08004462 /* Obtain SKU information */
4463 mutex_lock(&dev_priv->dpio_lock);
4464 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
4465 CCK_FUSE_HPLL_FREQ_MASK;
4466 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004467
Ville Syrjälädfcab172014-06-13 13:37:47 +03004468 return vco_freq[hpll_freq] * 1000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004469}
4470
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004471static void vlv_update_cdclk(struct drm_device *dev)
4472{
4473 struct drm_i915_private *dev_priv = dev->dev_private;
4474
4475 dev_priv->vlv_cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
4476 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz",
4477 dev_priv->vlv_cdclk_freq);
4478
4479 /*
4480 * Program the gmbus_freq based on the cdclk frequency.
4481 * BSpec erroneously claims we should aim for 4MHz, but
4482 * in fact 1MHz is the correct frequency.
4483 */
4484 I915_WRITE(GMBUSFREQ_VLV, dev_priv->vlv_cdclk_freq);
4485}
4486
Jesse Barnes30a970c2013-11-04 13:48:12 -08004487/* Adjust CDclk dividers to allow high res or save power if possible */
4488static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
4489{
4490 struct drm_i915_private *dev_priv = dev->dev_private;
4491 u32 val, cmd;
4492
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03004493 WARN_ON(dev_priv->display.get_display_clock_speed(dev) != dev_priv->vlv_cdclk_freq);
Imre Deakd60c4472014-03-27 17:45:10 +02004494
Ville Syrjälädfcab172014-06-13 13:37:47 +03004495 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
Jesse Barnes30a970c2013-11-04 13:48:12 -08004496 cmd = 2;
Ville Syrjälädfcab172014-06-13 13:37:47 +03004497 else if (cdclk == 266667)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004498 cmd = 1;
4499 else
4500 cmd = 0;
4501
4502 mutex_lock(&dev_priv->rps.hw_lock);
4503 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4504 val &= ~DSPFREQGUAR_MASK;
4505 val |= (cmd << DSPFREQGUAR_SHIFT);
4506 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4507 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4508 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
4509 50)) {
4510 DRM_ERROR("timed out waiting for CDclk change\n");
4511 }
4512 mutex_unlock(&dev_priv->rps.hw_lock);
4513
Ville Syrjälädfcab172014-06-13 13:37:47 +03004514 if (cdclk == 400000) {
Jesse Barnes30a970c2013-11-04 13:48:12 -08004515 u32 divider, vco;
4516
4517 vco = valleyview_get_vco(dev_priv);
Ville Syrjälädfcab172014-06-13 13:37:47 +03004518 divider = DIV_ROUND_CLOSEST(vco << 1, cdclk) - 1;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004519
4520 mutex_lock(&dev_priv->dpio_lock);
4521 /* adjust cdclk divider */
4522 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
Ville Syrjälä9cf33db2014-06-13 13:37:48 +03004523 val &= ~DISPLAY_FREQUENCY_VALUES;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004524 val |= divider;
4525 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
Ville Syrjäläa877e802014-06-13 13:37:52 +03004526
4527 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
4528 DISPLAY_FREQUENCY_STATUS) == (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
4529 50))
4530 DRM_ERROR("timed out waiting for CDclk change\n");
Jesse Barnes30a970c2013-11-04 13:48:12 -08004531 mutex_unlock(&dev_priv->dpio_lock);
4532 }
4533
4534 mutex_lock(&dev_priv->dpio_lock);
4535 /* adjust self-refresh exit latency value */
4536 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
4537 val &= ~0x7f;
4538
4539 /*
4540 * For high bandwidth configs, we set a higher latency in the bunit
4541 * so that the core display fetch happens in time to avoid underruns.
4542 */
Ville Syrjälädfcab172014-06-13 13:37:47 +03004543 if (cdclk == 400000)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004544 val |= 4500 / 250; /* 4.5 usec */
4545 else
4546 val |= 3000 / 250; /* 3.0 usec */
4547 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
4548 mutex_unlock(&dev_priv->dpio_lock);
4549
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004550 vlv_update_cdclk(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004551}
4552
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004553static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
4554{
4555 struct drm_i915_private *dev_priv = dev->dev_private;
4556 u32 val, cmd;
4557
4558 WARN_ON(dev_priv->display.get_display_clock_speed(dev) != dev_priv->vlv_cdclk_freq);
4559
4560 switch (cdclk) {
4561 case 400000:
4562 cmd = 3;
4563 break;
4564 case 333333:
4565 case 320000:
4566 cmd = 2;
4567 break;
4568 case 266667:
4569 cmd = 1;
4570 break;
4571 case 200000:
4572 cmd = 0;
4573 break;
4574 default:
4575 WARN_ON(1);
4576 return;
4577 }
4578
4579 mutex_lock(&dev_priv->rps.hw_lock);
4580 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4581 val &= ~DSPFREQGUAR_MASK_CHV;
4582 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
4583 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4584 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4585 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
4586 50)) {
4587 DRM_ERROR("timed out waiting for CDclk change\n");
4588 }
4589 mutex_unlock(&dev_priv->rps.hw_lock);
4590
4591 vlv_update_cdclk(dev);
4592}
4593
Jesse Barnes30a970c2013-11-04 13:48:12 -08004594static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
4595 int max_pixclk)
4596{
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03004597 int vco = valleyview_get_vco(dev_priv);
4598 int freq_320 = (vco << 1) % 320000 != 0 ? 333333 : 320000;
4599
Ville Syrjäläd49a3402014-06-28 02:03:58 +03004600 /* FIXME: Punit isn't quite ready yet */
4601 if (IS_CHERRYVIEW(dev_priv->dev))
4602 return 400000;
4603
Jesse Barnes30a970c2013-11-04 13:48:12 -08004604 /*
4605 * Really only a few cases to deal with, as only 4 CDclks are supported:
4606 * 200MHz
4607 * 267MHz
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03004608 * 320/333MHz (depends on HPLL freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004609 * 400MHz
4610 * So we check to see whether we're above 90% of the lower bin and
4611 * adjust if needed.
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03004612 *
4613 * We seem to get an unstable or solid color picture at 200MHz.
4614 * Not sure what's wrong. For now use 200MHz only when all pipes
4615 * are off.
Jesse Barnes30a970c2013-11-04 13:48:12 -08004616 */
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03004617 if (max_pixclk > freq_320*9/10)
Ville Syrjälädfcab172014-06-13 13:37:47 +03004618 return 400000;
4619 else if (max_pixclk > 266667*9/10)
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03004620 return freq_320;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03004621 else if (max_pixclk > 0)
Ville Syrjälädfcab172014-06-13 13:37:47 +03004622 return 266667;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03004623 else
4624 return 200000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004625}
4626
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004627/* compute the max pixel clock for new configuration */
4628static int intel_mode_max_pixclk(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004629{
4630 struct drm_device *dev = dev_priv->dev;
4631 struct intel_crtc *intel_crtc;
4632 int max_pixclk = 0;
4633
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004634 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004635 if (intel_crtc->new_enabled)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004636 max_pixclk = max(max_pixclk,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004637 intel_crtc->new_config->adjusted_mode.crtc_clock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004638 }
4639
4640 return max_pixclk;
4641}
4642
4643static void valleyview_modeset_global_pipes(struct drm_device *dev,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004644 unsigned *prepare_pipes)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004645{
4646 struct drm_i915_private *dev_priv = dev->dev_private;
4647 struct intel_crtc *intel_crtc;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004648 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004649
Imre Deakd60c4472014-03-27 17:45:10 +02004650 if (valleyview_calc_cdclk(dev_priv, max_pixclk) ==
4651 dev_priv->vlv_cdclk_freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004652 return;
4653
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004654 /* disable/enable all currently active pipes while we change cdclk */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004655 for_each_intel_crtc(dev, intel_crtc)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004656 if (intel_crtc->base.enabled)
4657 *prepare_pipes |= (1 << intel_crtc->pipe);
4658}
4659
4660static void valleyview_modeset_global_resources(struct drm_device *dev)
4661{
4662 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004663 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004664 int req_cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
4665
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004666 if (req_cdclk != dev_priv->vlv_cdclk_freq) {
4667 if (IS_CHERRYVIEW(dev))
4668 cherryview_set_cdclk(dev, req_cdclk);
4669 else
4670 valleyview_set_cdclk(dev, req_cdclk);
4671 }
4672
Imre Deak77961eb2014-03-05 16:20:56 +02004673 modeset_update_crtc_power_domains(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004674}
4675
Jesse Barnes89b667f2013-04-18 14:51:36 -07004676static void valleyview_crtc_enable(struct drm_crtc *crtc)
4677{
4678 struct drm_device *dev = crtc->dev;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004679 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4680 struct intel_encoder *encoder;
4681 int pipe = intel_crtc->pipe;
Jani Nikula23538ef2013-08-27 15:12:22 +03004682 bool is_dsi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004683
4684 WARN_ON(!crtc->enabled);
4685
4686 if (intel_crtc->active)
4687 return;
4688
Shobhit Kumar8525a232014-06-25 12:20:39 +05304689 is_dsi = intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI);
4690
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03004691 if (!is_dsi) {
4692 if (IS_CHERRYVIEW(dev))
4693 chv_prepare_pll(intel_crtc);
4694 else
4695 vlv_prepare_pll(intel_crtc);
4696 }
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02004697
Daniel Vetter5b18e572014-04-24 23:55:06 +02004698 if (intel_crtc->config.has_dp_encoder)
4699 intel_dp_set_m_n(intel_crtc);
4700
4701 intel_set_pipe_timings(intel_crtc);
4702
Daniel Vetter5b18e572014-04-24 23:55:06 +02004703 i9xx_set_pipeconf(intel_crtc);
4704
Jesse Barnes89b667f2013-04-18 14:51:36 -07004705 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004706
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03004707 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4708
Jesse Barnes89b667f2013-04-18 14:51:36 -07004709 for_each_encoder_on_crtc(dev, crtc, encoder)
4710 if (encoder->pre_pll_enable)
4711 encoder->pre_pll_enable(encoder);
4712
Chon Ming Lee9d556c92014-05-02 14:27:47 +03004713 if (!is_dsi) {
4714 if (IS_CHERRYVIEW(dev))
4715 chv_enable_pll(intel_crtc);
4716 else
4717 vlv_enable_pll(intel_crtc);
4718 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07004719
4720 for_each_encoder_on_crtc(dev, crtc, encoder)
4721 if (encoder->pre_enable)
4722 encoder->pre_enable(encoder);
4723
Jesse Barnes2dd24552013-04-25 12:55:01 -07004724 i9xx_pfit_enable(intel_crtc);
4725
Ville Syrjälä63cbb072013-06-04 13:48:59 +03004726 intel_crtc_load_lut(crtc);
4727
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004728 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004729 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02004730
Jani Nikula50049452013-07-30 12:20:32 +03004731 for_each_encoder_on_crtc(dev, crtc, encoder)
4732 encoder->enable(encoder);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004733
4734 intel_crtc_enable_planes(crtc);
Daniel Vetterd40d9182014-05-21 11:45:40 +02004735
Ville Syrjälä56b80e12014-05-16 19:40:22 +03004736 /* Underruns don't raise interrupts, so check manually. */
4737 i9xx_check_fifo_underruns(dev);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004738}
4739
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02004740static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
4741{
4742 struct drm_device *dev = crtc->base.dev;
4743 struct drm_i915_private *dev_priv = dev->dev_private;
4744
4745 I915_WRITE(FP0(crtc->pipe), crtc->config.dpll_hw_state.fp0);
4746 I915_WRITE(FP1(crtc->pipe), crtc->config.dpll_hw_state.fp1);
4747}
4748
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004749static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004750{
4751 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08004752 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004753 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08004754 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08004755
Daniel Vetter08a48462012-07-02 11:43:47 +02004756 WARN_ON(!crtc->enabled);
4757
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004758 if (intel_crtc->active)
4759 return;
4760
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02004761 i9xx_set_pll_dividers(intel_crtc);
4762
Daniel Vetter5b18e572014-04-24 23:55:06 +02004763 if (intel_crtc->config.has_dp_encoder)
4764 intel_dp_set_m_n(intel_crtc);
4765
4766 intel_set_pipe_timings(intel_crtc);
4767
Daniel Vetter5b18e572014-04-24 23:55:06 +02004768 i9xx_set_pipeconf(intel_crtc);
4769
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004770 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01004771
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03004772 if (!IS_GEN2(dev))
4773 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4774
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02004775 for_each_encoder_on_crtc(dev, crtc, encoder)
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02004776 if (encoder->pre_enable)
4777 encoder->pre_enable(encoder);
4778
Daniel Vetterf6736a12013-06-05 13:34:30 +02004779 i9xx_enable_pll(intel_crtc);
4780
Jesse Barnes2dd24552013-04-25 12:55:01 -07004781 i9xx_pfit_enable(intel_crtc);
4782
Ville Syrjälä63cbb072013-06-04 13:48:59 +03004783 intel_crtc_load_lut(crtc);
4784
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004785 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004786 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02004787
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004788 for_each_encoder_on_crtc(dev, crtc, encoder)
4789 encoder->enable(encoder);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004790
4791 intel_crtc_enable_planes(crtc);
Daniel Vetterd40d9182014-05-21 11:45:40 +02004792
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03004793 /*
4794 * Gen2 reports pipe underruns whenever all planes are disabled.
4795 * So don't enable underrun reporting before at least some planes
4796 * are enabled.
4797 * FIXME: Need to fix the logic to work when we turn off all planes
4798 * but leave the pipe running.
4799 */
4800 if (IS_GEN2(dev))
4801 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4802
Ville Syrjälä56b80e12014-05-16 19:40:22 +03004803 /* Underruns don't raise interrupts, so check manually. */
4804 i9xx_check_fifo_underruns(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004805}
4806
Daniel Vetter87476d62013-04-11 16:29:06 +02004807static void i9xx_pfit_disable(struct intel_crtc *crtc)
4808{
4809 struct drm_device *dev = crtc->base.dev;
4810 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02004811
4812 if (!crtc->config.gmch_pfit.control)
4813 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02004814
4815 assert_pipe_disabled(dev_priv, crtc->pipe);
4816
Daniel Vetter328d8e82013-05-08 10:36:31 +02004817 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
4818 I915_READ(PFIT_CONTROL));
4819 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02004820}
4821
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004822static void i9xx_crtc_disable(struct drm_crtc *crtc)
4823{
4824 struct drm_device *dev = crtc->dev;
4825 struct drm_i915_private *dev_priv = dev->dev_private;
4826 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004827 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004828 int pipe = intel_crtc->pipe;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004829
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004830 if (!intel_crtc->active)
4831 return;
4832
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03004833 /*
4834 * Gen2 reports pipe underruns whenever all planes are disabled.
4835 * So diasble underrun reporting before all the planes get disabled.
4836 * FIXME: Need to fix the logic to work when we turn off all planes
4837 * but leave the pipe running.
4838 */
4839 if (IS_GEN2(dev))
4840 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false);
4841
Imre Deak564ed192014-06-13 14:54:21 +03004842 /*
4843 * Vblank time updates from the shadow to live plane control register
4844 * are blocked if the memory self-refresh mode is active at that
4845 * moment. So to make sure the plane gets truly disabled, disable
4846 * first the self-refresh mode. The self-refresh enable bit in turn
4847 * will be checked/applied by the HW only at the next frame start
4848 * event which is after the vblank start event, so we need to have a
4849 * wait-for-vblank between disabling the plane and the pipe.
4850 */
4851 intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004852 intel_crtc_disable_planes(crtc);
4853
Daniel Vetterea9d7582012-07-10 10:42:52 +02004854 for_each_encoder_on_crtc(dev, crtc, encoder)
4855 encoder->disable(encoder);
4856
Ville Syrjälä6304cd92014-04-25 13:30:12 +03004857 /*
4858 * On gen2 planes are double buffered but the pipe isn't, so we must
4859 * wait for planes to fully turn off before disabling the pipe.
Imre Deak564ed192014-06-13 14:54:21 +03004860 * We also need to wait on all gmch platforms because of the
4861 * self-refresh mode constraint explained above.
Ville Syrjälä6304cd92014-04-25 13:30:12 +03004862 */
Imre Deak564ed192014-06-13 14:54:21 +03004863 intel_wait_for_vblank(dev, pipe);
Ville Syrjälä6304cd92014-04-25 13:30:12 +03004864
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03004865 intel_disable_pipe(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02004866
Daniel Vetter87476d62013-04-11 16:29:06 +02004867 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02004868
Jesse Barnes89b667f2013-04-18 14:51:36 -07004869 for_each_encoder_on_crtc(dev, crtc, encoder)
4870 if (encoder->post_disable)
4871 encoder->post_disable(encoder);
4872
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03004873 if (!intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI)) {
4874 if (IS_CHERRYVIEW(dev))
4875 chv_disable_pll(dev_priv, pipe);
4876 else if (IS_VALLEYVIEW(dev))
4877 vlv_disable_pll(dev_priv, pipe);
4878 else
4879 i9xx_disable_pll(dev_priv, pipe);
4880 }
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004881
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03004882 if (!IS_GEN2(dev))
4883 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false);
4884
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004885 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004886 intel_update_watermarks(crtc);
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004887
Daniel Vetterefa96242014-04-24 23:55:02 +02004888 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01004889 intel_update_fbc(dev);
Daniel Vetterefa96242014-04-24 23:55:02 +02004890 mutex_unlock(&dev->struct_mutex);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004891}
4892
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004893static void i9xx_crtc_off(struct drm_crtc *crtc)
4894{
4895}
4896
Daniel Vetter976f8a22012-07-08 22:34:21 +02004897static void intel_crtc_update_sarea(struct drm_crtc *crtc,
4898 bool enabled)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004899{
4900 struct drm_device *dev = crtc->dev;
4901 struct drm_i915_master_private *master_priv;
4902 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4903 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08004904
4905 if (!dev->primary->master)
4906 return;
4907
4908 master_priv = dev->primary->master->driver_priv;
4909 if (!master_priv->sarea_priv)
4910 return;
4911
Jesse Barnes79e53942008-11-07 14:24:08 -08004912 switch (pipe) {
4913 case 0:
4914 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
4915 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
4916 break;
4917 case 1:
4918 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
4919 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
4920 break;
4921 default:
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004922 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08004923 break;
4924 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004925}
4926
Borun Fub04c5bd2014-07-12 10:02:27 +05304927/* Master function to enable/disable CRTC and corresponding power wells */
4928void intel_crtc_control(struct drm_crtc *crtc, bool enable)
Chris Wilsoncdd59982010-09-08 16:30:16 +01004929{
Chris Wilsoncdd59982010-09-08 16:30:16 +01004930 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004931 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02004932 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02004933 enum intel_display_power_domain domain;
4934 unsigned long domains;
Daniel Vetter976f8a22012-07-08 22:34:21 +02004935
Daniel Vetter0e572fe2014-04-24 23:55:42 +02004936 if (enable) {
4937 if (!intel_crtc->active) {
Daniel Vettere1e9fb82014-06-25 22:02:04 +03004938 domains = get_crtc_power_domains(crtc);
4939 for_each_power_domain(domain, domains)
4940 intel_display_power_get(dev_priv, domain);
4941 intel_crtc->enabled_power_domains = domains;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02004942
4943 dev_priv->display.crtc_enable(crtc);
4944 }
4945 } else {
4946 if (intel_crtc->active) {
4947 dev_priv->display.crtc_disable(crtc);
4948
Daniel Vettere1e9fb82014-06-25 22:02:04 +03004949 domains = intel_crtc->enabled_power_domains;
4950 for_each_power_domain(domain, domains)
4951 intel_display_power_put(dev_priv, domain);
4952 intel_crtc->enabled_power_domains = 0;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02004953 }
4954 }
Borun Fub04c5bd2014-07-12 10:02:27 +05304955}
4956
4957/**
4958 * Sets the power management mode of the pipe and plane.
4959 */
4960void intel_crtc_update_dpms(struct drm_crtc *crtc)
4961{
4962 struct drm_device *dev = crtc->dev;
4963 struct intel_encoder *intel_encoder;
4964 bool enable = false;
4965
4966 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4967 enable |= intel_encoder->connectors_active;
4968
4969 intel_crtc_control(crtc, enable);
Daniel Vetter976f8a22012-07-08 22:34:21 +02004970
4971 intel_crtc_update_sarea(crtc, enable);
4972}
4973
Daniel Vetter976f8a22012-07-08 22:34:21 +02004974static void intel_crtc_disable(struct drm_crtc *crtc)
4975{
4976 struct drm_device *dev = crtc->dev;
4977 struct drm_connector *connector;
4978 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roper2ff8fde2014-07-08 07:50:07 -07004979 struct drm_i915_gem_object *old_obj = intel_fb_obj(crtc->primary->fb);
Daniel Vettera071fa02014-06-18 23:28:09 +02004980 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Daniel Vetter976f8a22012-07-08 22:34:21 +02004981
4982 /* crtc should still be enabled when we disable it. */
4983 WARN_ON(!crtc->enabled);
4984
4985 dev_priv->display.crtc_disable(crtc);
4986 intel_crtc_update_sarea(crtc, false);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004987 dev_priv->display.off(crtc);
4988
Matt Roperf4510a22014-04-01 15:22:40 -07004989 if (crtc->primary->fb) {
Chris Wilsoncdd59982010-09-08 16:30:16 +01004990 mutex_lock(&dev->struct_mutex);
Daniel Vettera071fa02014-06-18 23:28:09 +02004991 intel_unpin_fb_obj(old_obj);
4992 i915_gem_track_fb(old_obj, NULL,
4993 INTEL_FRONTBUFFER_PRIMARY(pipe));
Chris Wilsoncdd59982010-09-08 16:30:16 +01004994 mutex_unlock(&dev->struct_mutex);
Matt Roperf4510a22014-04-01 15:22:40 -07004995 crtc->primary->fb = NULL;
Daniel Vetter976f8a22012-07-08 22:34:21 +02004996 }
4997
4998 /* Update computed state. */
4999 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
5000 if (!connector->encoder || !connector->encoder->crtc)
5001 continue;
5002
5003 if (connector->encoder->crtc != crtc)
5004 continue;
5005
5006 connector->dpms = DRM_MODE_DPMS_OFF;
5007 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01005008 }
5009}
5010
Chris Wilsonea5b2132010-08-04 13:50:23 +01005011void intel_encoder_destroy(struct drm_encoder *encoder)
5012{
Chris Wilson4ef69c72010-09-09 15:14:28 +01005013 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01005014
Chris Wilsonea5b2132010-08-04 13:50:23 +01005015 drm_encoder_cleanup(encoder);
5016 kfree(intel_encoder);
5017}
5018
Damien Lespiau92373292013-08-08 22:28:57 +01005019/* Simple dpms helper for encoders with just one connector, no cloning and only
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005020 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
5021 * state of the entire output pipe. */
Damien Lespiau92373292013-08-08 22:28:57 +01005022static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005023{
5024 if (mode == DRM_MODE_DPMS_ON) {
5025 encoder->connectors_active = true;
5026
Daniel Vetterb2cabb02012-07-01 22:42:24 +02005027 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005028 } else {
5029 encoder->connectors_active = false;
5030
Daniel Vetterb2cabb02012-07-01 22:42:24 +02005031 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005032 }
5033}
5034
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005035/* Cross check the actual hw state with our own modeset state tracking (and it's
5036 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02005037static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005038{
5039 if (connector->get_hw_state(connector)) {
5040 struct intel_encoder *encoder = connector->encoder;
5041 struct drm_crtc *crtc;
5042 bool encoder_enabled;
5043 enum pipe pipe;
5044
5045 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
5046 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03005047 connector->base.name);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005048
Dave Airlie0e32b392014-05-02 14:02:48 +10005049 /* there is no real hw state for MST connectors */
5050 if (connector->mst_port)
5051 return;
5052
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005053 WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
5054 "wrong connector dpms state\n");
5055 WARN(connector->base.encoder != &encoder->base,
5056 "active connector not linked to encoder\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005057
Dave Airlie36cd7442014-05-02 13:44:18 +10005058 if (encoder) {
5059 WARN(!encoder->connectors_active,
5060 "encoder->connectors_active not set\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005061
Dave Airlie36cd7442014-05-02 13:44:18 +10005062 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
5063 WARN(!encoder_enabled, "encoder not enabled\n");
5064 if (WARN_ON(!encoder->base.crtc))
5065 return;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005066
Dave Airlie36cd7442014-05-02 13:44:18 +10005067 crtc = encoder->base.crtc;
5068
5069 WARN(!crtc->enabled, "crtc not enabled\n");
5070 WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
5071 WARN(pipe != to_intel_crtc(crtc)->pipe,
5072 "encoder active on the wrong pipe\n");
5073 }
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005074 }
5075}
5076
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005077/* Even simpler default implementation, if there's really no special case to
5078 * consider. */
5079void intel_connector_dpms(struct drm_connector *connector, int mode)
5080{
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005081 /* All the simple cases only support two dpms states. */
5082 if (mode != DRM_MODE_DPMS_ON)
5083 mode = DRM_MODE_DPMS_OFF;
5084
5085 if (mode == connector->dpms)
5086 return;
5087
5088 connector->dpms = mode;
5089
5090 /* Only need to change hw state when actually enabled */
Chris Wilsonc9976dc2013-09-29 19:15:07 +01005091 if (connector->encoder)
5092 intel_encoder_dpms(to_intel_encoder(connector->encoder), mode);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005093
Daniel Vetterb9805142012-08-31 17:37:33 +02005094 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005095}
5096
Daniel Vetterf0947c32012-07-02 13:10:34 +02005097/* Simple connector->get_hw_state implementation for encoders that support only
5098 * one connector and no cloning and hence the encoder state determines the state
5099 * of the connector. */
5100bool intel_connector_get_hw_state(struct intel_connector *connector)
5101{
Daniel Vetter24929352012-07-02 20:28:59 +02005102 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02005103 struct intel_encoder *encoder = connector->encoder;
5104
5105 return encoder->get_hw_state(encoder, &pipe);
5106}
5107
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005108static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
5109 struct intel_crtc_config *pipe_config)
5110{
5111 struct drm_i915_private *dev_priv = dev->dev_private;
5112 struct intel_crtc *pipe_B_crtc =
5113 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
5114
5115 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
5116 pipe_name(pipe), pipe_config->fdi_lanes);
5117 if (pipe_config->fdi_lanes > 4) {
5118 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
5119 pipe_name(pipe), pipe_config->fdi_lanes);
5120 return false;
5121 }
5122
Paulo Zanonibafb6552013-11-02 21:07:44 -07005123 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005124 if (pipe_config->fdi_lanes > 2) {
5125 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
5126 pipe_config->fdi_lanes);
5127 return false;
5128 } else {
5129 return true;
5130 }
5131 }
5132
5133 if (INTEL_INFO(dev)->num_pipes == 2)
5134 return true;
5135
5136 /* Ivybridge 3 pipe is really complicated */
5137 switch (pipe) {
5138 case PIPE_A:
5139 return true;
5140 case PIPE_B:
5141 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
5142 pipe_config->fdi_lanes > 2) {
5143 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5144 pipe_name(pipe), pipe_config->fdi_lanes);
5145 return false;
5146 }
5147 return true;
5148 case PIPE_C:
Daniel Vetter1e833f42013-02-19 22:31:57 +01005149 if (!pipe_has_enabled_pch(pipe_B_crtc) ||
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005150 pipe_B_crtc->config.fdi_lanes <= 2) {
5151 if (pipe_config->fdi_lanes > 2) {
5152 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5153 pipe_name(pipe), pipe_config->fdi_lanes);
5154 return false;
5155 }
5156 } else {
5157 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
5158 return false;
5159 }
5160 return true;
5161 default:
5162 BUG();
5163 }
5164}
5165
Daniel Vettere29c22c2013-02-21 00:00:16 +01005166#define RETRY 1
5167static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
5168 struct intel_crtc_config *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02005169{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005170 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005171 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Daniel Vetterff9a6752013-06-01 17:16:21 +02005172 int lane, link_bw, fdi_dotclock;
Daniel Vettere29c22c2013-02-21 00:00:16 +01005173 bool setup_ok, needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005174
Daniel Vettere29c22c2013-02-21 00:00:16 +01005175retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02005176 /* FDI is a binary signal running at ~2.7GHz, encoding
5177 * each output octet as 10 bits. The actual frequency
5178 * is stored as a divider into a 100MHz clock, and the
5179 * mode pixel clock is stored in units of 1KHz.
5180 * Hence the bw of each lane in terms of the mode signal
5181 * is:
5182 */
5183 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
5184
Damien Lespiau241bfc32013-09-25 16:45:37 +01005185 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005186
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005187 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005188 pipe_config->pipe_bpp);
5189
5190 pipe_config->fdi_lanes = lane;
5191
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005192 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005193 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005194
Daniel Vettere29c22c2013-02-21 00:00:16 +01005195 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
5196 intel_crtc->pipe, pipe_config);
5197 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
5198 pipe_config->pipe_bpp -= 2*3;
5199 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
5200 pipe_config->pipe_bpp);
5201 needs_recompute = true;
5202 pipe_config->bw_constrained = true;
5203
5204 goto retry;
5205 }
5206
5207 if (needs_recompute)
5208 return RETRY;
5209
5210 return setup_ok ? 0 : -EINVAL;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005211}
5212
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005213static void hsw_compute_ips_config(struct intel_crtc *crtc,
5214 struct intel_crtc_config *pipe_config)
5215{
Jani Nikulad330a952014-01-21 11:24:25 +02005216 pipe_config->ips_enabled = i915.enable_ips &&
Paulo Zanoni3c4ca582013-05-31 16:33:23 -03005217 hsw_crtc_supports_ips(crtc) &&
Jesse Barnesb6dfdc92013-07-25 10:06:50 -07005218 pipe_config->pipe_bpp <= 24;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005219}
5220
Daniel Vettera43f6e02013-06-07 23:10:32 +02005221static int intel_crtc_compute_config(struct intel_crtc *crtc,
Daniel Vettere29c22c2013-02-21 00:00:16 +01005222 struct intel_crtc_config *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08005223{
Daniel Vettera43f6e02013-06-07 23:10:32 +02005224 struct drm_device *dev = crtc->base.dev;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01005225 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Chris Wilson89749352010-09-12 18:25:19 +01005226
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005227 /* FIXME should check pixel clock limits on all platforms */
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005228 if (INTEL_INFO(dev)->gen < 4) {
5229 struct drm_i915_private *dev_priv = dev->dev_private;
5230 int clock_limit =
5231 dev_priv->display.get_display_clock_speed(dev);
5232
5233 /*
5234 * Enable pixel doubling when the dot clock
5235 * is > 90% of the (display) core speed.
5236 *
Ville Syrjäläb397c962013-09-04 18:30:06 +03005237 * GDG double wide on either pipe,
5238 * otherwise pipe A only.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005239 */
Ville Syrjäläb397c962013-09-04 18:30:06 +03005240 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
Damien Lespiau241bfc32013-09-25 16:45:37 +01005241 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005242 clock_limit *= 2;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005243 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005244 }
5245
Damien Lespiau241bfc32013-09-25 16:45:37 +01005246 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005247 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08005248 }
Chris Wilson89749352010-09-12 18:25:19 +01005249
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03005250 /*
5251 * Pipe horizontal size must be even in:
5252 * - DVO ganged mode
5253 * - LVDS dual channel mode
5254 * - Double wide pipe
5255 */
5256 if ((intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
5257 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
5258 pipe_config->pipe_src_w &= ~1;
5259
Damien Lespiau8693a822013-05-03 18:48:11 +01005260 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
5261 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03005262 */
5263 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
5264 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005265 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03005266
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005267 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005268 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005269 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005270 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
5271 * for lvds. */
5272 pipe_config->pipe_bpp = 8*3;
5273 }
5274
Damien Lespiauf5adf942013-06-24 18:29:34 +01005275 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02005276 hsw_compute_ips_config(crtc, pipe_config);
5277
Daniel Vetter12030432014-06-25 22:02:00 +03005278 /*
5279 * XXX: PCH/WRPLL clock sharing is done in ->mode_set, so make sure the
5280 * old clock survives for now.
5281 */
5282 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev) || HAS_DDI(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02005283 pipe_config->shared_dpll = crtc->config.shared_dpll;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005284
Daniel Vetter877d48d2013-04-19 11:24:43 +02005285 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02005286 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02005287
Daniel Vettere29c22c2013-02-21 00:00:16 +01005288 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005289}
5290
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07005291static int valleyview_get_display_clock_speed(struct drm_device *dev)
5292{
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005293 struct drm_i915_private *dev_priv = dev->dev_private;
5294 int vco = valleyview_get_vco(dev_priv);
5295 u32 val;
5296 int divider;
5297
Ville Syrjäläd49a3402014-06-28 02:03:58 +03005298 /* FIXME: Punit isn't quite ready yet */
5299 if (IS_CHERRYVIEW(dev))
5300 return 400000;
5301
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005302 mutex_lock(&dev_priv->dpio_lock);
5303 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
5304 mutex_unlock(&dev_priv->dpio_lock);
5305
5306 divider = val & DISPLAY_FREQUENCY_VALUES;
5307
Ville Syrjälä7d007f42014-06-13 13:37:53 +03005308 WARN((val & DISPLAY_FREQUENCY_STATUS) !=
5309 (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
5310 "cdclk change in progress\n");
5311
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005312 return DIV_ROUND_CLOSEST(vco << 1, divider + 1);
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07005313}
5314
Jesse Barnese70236a2009-09-21 10:42:27 -07005315static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08005316{
Jesse Barnese70236a2009-09-21 10:42:27 -07005317 return 400000;
5318}
Jesse Barnes79e53942008-11-07 14:24:08 -08005319
Jesse Barnese70236a2009-09-21 10:42:27 -07005320static int i915_get_display_clock_speed(struct drm_device *dev)
5321{
5322 return 333000;
5323}
Jesse Barnes79e53942008-11-07 14:24:08 -08005324
Jesse Barnese70236a2009-09-21 10:42:27 -07005325static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
5326{
5327 return 200000;
5328}
Jesse Barnes79e53942008-11-07 14:24:08 -08005329
Daniel Vetter257a7ff2013-07-26 08:35:42 +02005330static int pnv_get_display_clock_speed(struct drm_device *dev)
5331{
5332 u16 gcfgc = 0;
5333
5334 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5335
5336 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5337 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
5338 return 267000;
5339 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
5340 return 333000;
5341 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
5342 return 444000;
5343 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
5344 return 200000;
5345 default:
5346 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
5347 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
5348 return 133000;
5349 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
5350 return 167000;
5351 }
5352}
5353
Jesse Barnese70236a2009-09-21 10:42:27 -07005354static int i915gm_get_display_clock_speed(struct drm_device *dev)
5355{
5356 u16 gcfgc = 0;
5357
5358 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5359
5360 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08005361 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07005362 else {
5363 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5364 case GC_DISPLAY_CLOCK_333_MHZ:
5365 return 333000;
5366 default:
5367 case GC_DISPLAY_CLOCK_190_200_MHZ:
5368 return 190000;
5369 }
5370 }
5371}
Jesse Barnes79e53942008-11-07 14:24:08 -08005372
Jesse Barnese70236a2009-09-21 10:42:27 -07005373static int i865_get_display_clock_speed(struct drm_device *dev)
5374{
5375 return 266000;
5376}
5377
5378static int i855_get_display_clock_speed(struct drm_device *dev)
5379{
5380 u16 hpllcc = 0;
5381 /* Assume that the hardware is in the high speed state. This
5382 * should be the default.
5383 */
5384 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
5385 case GC_CLOCK_133_200:
5386 case GC_CLOCK_100_200:
5387 return 200000;
5388 case GC_CLOCK_166_250:
5389 return 250000;
5390 case GC_CLOCK_100_133:
5391 return 133000;
5392 }
5393
5394 /* Shouldn't happen */
5395 return 0;
5396}
5397
5398static int i830_get_display_clock_speed(struct drm_device *dev)
5399{
5400 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08005401}
5402
Zhenyu Wang2c072452009-06-05 15:38:42 +08005403static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005404intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005405{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005406 while (*num > DATA_LINK_M_N_MASK ||
5407 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08005408 *num >>= 1;
5409 *den >>= 1;
5410 }
5411}
5412
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005413static void compute_m_n(unsigned int m, unsigned int n,
5414 uint32_t *ret_m, uint32_t *ret_n)
5415{
5416 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
5417 *ret_m = div_u64((uint64_t) m * *ret_n, n);
5418 intel_reduce_m_n_ratio(ret_m, ret_n);
5419}
5420
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005421void
5422intel_link_compute_m_n(int bits_per_pixel, int nlanes,
5423 int pixel_clock, int link_clock,
5424 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005425{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005426 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005427
5428 compute_m_n(bits_per_pixel * pixel_clock,
5429 link_clock * nlanes * 8,
5430 &m_n->gmch_m, &m_n->gmch_n);
5431
5432 compute_m_n(pixel_clock, link_clock,
5433 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005434}
5435
Chris Wilsona7615032011-01-12 17:04:08 +00005436static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
5437{
Jani Nikulad330a952014-01-21 11:24:25 +02005438 if (i915.panel_use_ssc >= 0)
5439 return i915.panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005440 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07005441 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00005442}
5443
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005444static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
5445{
5446 struct drm_device *dev = crtc->dev;
5447 struct drm_i915_private *dev_priv = dev->dev_private;
5448 int refclk;
5449
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005450 if (IS_VALLEYVIEW(dev)) {
Daniel Vetter9a0ea492013-09-16 11:29:34 +02005451 refclk = 100000;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005452 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005453 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02005454 refclk = dev_priv->vbt.lvds_ssc_freq;
5455 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005456 } else if (!IS_GEN2(dev)) {
5457 refclk = 96000;
5458 } else {
5459 refclk = 48000;
5460 }
5461
5462 return refclk;
5463}
5464
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005465static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005466{
Daniel Vetter7df00d72013-05-21 21:54:55 +02005467 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005468}
Daniel Vetterf47709a2013-03-28 10:42:02 +01005469
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005470static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
5471{
5472 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005473}
5474
Daniel Vetterf47709a2013-03-28 10:42:02 +01005475static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Jesse Barnesa7516a02011-12-15 12:30:37 -08005476 intel_clock_t *reduced_clock)
5477{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005478 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005479 u32 fp, fp2 = 0;
5480
5481 if (IS_PINEVIEW(dev)) {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005482 fp = pnv_dpll_compute_fp(&crtc->config.dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005483 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005484 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005485 } else {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005486 fp = i9xx_dpll_compute_fp(&crtc->config.dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005487 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005488 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005489 }
5490
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005491 crtc->config.dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005492
Daniel Vetterf47709a2013-03-28 10:42:02 +01005493 crtc->lowfreq_avail = false;
5494 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Jani Nikulad330a952014-01-21 11:24:25 +02005495 reduced_clock && i915.powersave) {
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005496 crtc->config.dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005497 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005498 } else {
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005499 crtc->config.dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005500 }
5501}
5502
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005503static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
5504 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07005505{
5506 u32 reg_val;
5507
5508 /*
5509 * PLLB opamp always calibrates to max value of 0x3f, force enable it
5510 * and set it to a reasonable value instead.
5511 */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005512 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005513 reg_val &= 0xffffff00;
5514 reg_val |= 0x00000030;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005515 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005516
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005517 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005518 reg_val &= 0x8cffffff;
5519 reg_val = 0x8c000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005520 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005521
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005522 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005523 reg_val &= 0xffffff00;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005524 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005525
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005526 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005527 reg_val &= 0x00ffffff;
5528 reg_val |= 0xb0000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005529 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005530}
5531
Daniel Vetterb5518422013-05-03 11:49:48 +02005532static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
5533 struct intel_link_m_n *m_n)
5534{
5535 struct drm_device *dev = crtc->base.dev;
5536 struct drm_i915_private *dev_priv = dev->dev_private;
5537 int pipe = crtc->pipe;
5538
Daniel Vettere3b95f12013-05-03 11:49:49 +02005539 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5540 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
5541 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
5542 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005543}
5544
5545static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -07005546 struct intel_link_m_n *m_n,
5547 struct intel_link_m_n *m2_n2)
Daniel Vetterb5518422013-05-03 11:49:48 +02005548{
5549 struct drm_device *dev = crtc->base.dev;
5550 struct drm_i915_private *dev_priv = dev->dev_private;
5551 int pipe = crtc->pipe;
5552 enum transcoder transcoder = crtc->config.cpu_transcoder;
5553
5554 if (INTEL_INFO(dev)->gen >= 5) {
5555 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
5556 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
5557 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
5558 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
Vandana Kannanf769cd22014-08-05 07:51:22 -07005559 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
5560 * for gen < 8) and if DRRS is supported (to make sure the
5561 * registers are not unnecessarily accessed).
5562 */
5563 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
5564 crtc->config.has_drrs) {
5565 I915_WRITE(PIPE_DATA_M2(transcoder),
5566 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
5567 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
5568 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
5569 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
5570 }
Daniel Vetterb5518422013-05-03 11:49:48 +02005571 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02005572 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5573 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
5574 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
5575 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005576 }
5577}
5578
Vandana Kannanf769cd22014-08-05 07:51:22 -07005579void intel_dp_set_m_n(struct intel_crtc *crtc)
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005580{
5581 if (crtc->config.has_pch_encoder)
5582 intel_pch_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
5583 else
Vandana Kannanf769cd22014-08-05 07:51:22 -07005584 intel_cpu_transcoder_set_m_n(crtc, &crtc->config.dp_m_n,
5585 &crtc->config.dp_m2_n2);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005586}
5587
Daniel Vetterf47709a2013-03-28 10:42:02 +01005588static void vlv_update_pll(struct intel_crtc *crtc)
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005589{
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005590 u32 dpll, dpll_md;
5591
5592 /*
5593 * Enable DPIO clock input. We should never disable the reference
5594 * clock for pipe B, since VGA hotplug / manual detection depends
5595 * on it.
5596 */
5597 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
5598 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
5599 /* We should never disable this, set it here for state tracking */
5600 if (crtc->pipe == PIPE_B)
5601 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
5602 dpll |= DPLL_VCO_ENABLE;
5603 crtc->config.dpll_hw_state.dpll = dpll;
5604
5605 dpll_md = (crtc->config.pixel_multiplier - 1)
5606 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
5607 crtc->config.dpll_hw_state.dpll_md = dpll_md;
5608}
5609
5610static void vlv_prepare_pll(struct intel_crtc *crtc)
5611{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005612 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005613 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005614 int pipe = crtc->pipe;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005615 u32 mdiv;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005616 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005617 u32 coreclk, reg_val;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005618
Daniel Vetter09153002012-12-12 14:06:44 +01005619 mutex_lock(&dev_priv->dpio_lock);
5620
Daniel Vetterf47709a2013-03-28 10:42:02 +01005621 bestn = crtc->config.dpll.n;
5622 bestm1 = crtc->config.dpll.m1;
5623 bestm2 = crtc->config.dpll.m2;
5624 bestp1 = crtc->config.dpll.p1;
5625 bestp2 = crtc->config.dpll.p2;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005626
Jesse Barnes89b667f2013-04-18 14:51:36 -07005627 /* See eDP HDMI DPIO driver vbios notes doc */
5628
5629 /* PLL B needs special handling */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005630 if (pipe == PIPE_B)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005631 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005632
5633 /* Set up Tx target for periodic Rcomp update */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005634 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005635
5636 /* Disable target IRef on PLL */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005637 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005638 reg_val &= 0x00ffffff;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005639 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005640
5641 /* Disable fast lock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005642 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005643
5644 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005645 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
5646 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
5647 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005648 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07005649
5650 /*
5651 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
5652 * but we don't support that).
5653 * Note: don't use the DAC post divider as it seems unstable.
5654 */
5655 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005656 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005657
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005658 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005659 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005660
Jesse Barnes89b667f2013-04-18 14:51:36 -07005661 /* Set HBR and RBR LPF coefficients */
Daniel Vetterff9a6752013-06-01 17:16:21 +02005662 if (crtc->config.port_clock == 162000 ||
Ville Syrjälä99750bd2013-06-14 14:02:52 +03005663 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_ANALOG) ||
Jesse Barnes89b667f2013-04-18 14:51:36 -07005664 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI))
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005665 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Ville Syrjälä885b0122013-07-05 19:21:38 +03005666 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005667 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005668 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005669 0x00d0000f);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005670
Jesse Barnes89b667f2013-04-18 14:51:36 -07005671 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP) ||
5672 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT)) {
5673 /* Use SSC source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005674 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005675 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005676 0x0df40000);
5677 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005678 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005679 0x0df70000);
5680 } else { /* HDMI or VGA */
5681 /* Use bend source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005682 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005683 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005684 0x0df70000);
5685 else
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 }
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005689
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005690 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005691 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
5692 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT) ||
5693 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP))
5694 coreclk |= 0x01000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005695 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005696
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005697 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
Daniel Vetter09153002012-12-12 14:06:44 +01005698 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005699}
5700
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005701static void chv_update_pll(struct intel_crtc *crtc)
5702{
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005703 crtc->config.dpll_hw_state.dpll = DPLL_SSC_REF_CLOCK_CHV |
5704 DPLL_REFA_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
5705 DPLL_VCO_ENABLE;
5706 if (crtc->pipe != PIPE_A)
5707 crtc->config.dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
5708
5709 crtc->config.dpll_hw_state.dpll_md =
5710 (crtc->config.pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
5711}
5712
5713static void chv_prepare_pll(struct intel_crtc *crtc)
5714{
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005715 struct drm_device *dev = crtc->base.dev;
5716 struct drm_i915_private *dev_priv = dev->dev_private;
5717 int pipe = crtc->pipe;
5718 int dpll_reg = DPLL(crtc->pipe);
5719 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Ville Syrjälä580d3812014-04-09 13:29:00 +03005720 u32 loopfilter, intcoeff;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005721 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
5722 int refclk;
5723
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005724 bestn = crtc->config.dpll.n;
5725 bestm2_frac = crtc->config.dpll.m2 & 0x3fffff;
5726 bestm1 = crtc->config.dpll.m1;
5727 bestm2 = crtc->config.dpll.m2 >> 22;
5728 bestp1 = crtc->config.dpll.p1;
5729 bestp2 = crtc->config.dpll.p2;
5730
5731 /*
5732 * Enable Refclk and SSC
5733 */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03005734 I915_WRITE(dpll_reg,
5735 crtc->config.dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
5736
5737 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005738
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005739 /* p1 and p2 divider */
5740 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
5741 5 << DPIO_CHV_S1_DIV_SHIFT |
5742 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
5743 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
5744 1 << DPIO_CHV_K_DIV_SHIFT);
5745
5746 /* Feedback post-divider - m2 */
5747 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
5748
5749 /* Feedback refclk divider - n and m1 */
5750 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
5751 DPIO_CHV_M1_DIV_BY_2 |
5752 1 << DPIO_CHV_N_DIV_SHIFT);
5753
5754 /* M2 fraction division */
5755 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
5756
5757 /* M2 fraction division enable */
5758 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port),
5759 DPIO_CHV_FRAC_DIV_EN |
5760 (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT));
5761
5762 /* Loop filter */
5763 refclk = i9xx_get_refclk(&crtc->base, 0);
5764 loopfilter = 5 << DPIO_CHV_PROP_COEFF_SHIFT |
5765 2 << DPIO_CHV_GAIN_CTRL_SHIFT;
5766 if (refclk == 100000)
5767 intcoeff = 11;
5768 else if (refclk == 38400)
5769 intcoeff = 10;
5770 else
5771 intcoeff = 9;
5772 loopfilter |= intcoeff << DPIO_CHV_INT_COEFF_SHIFT;
5773 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
5774
5775 /* AFC Recal */
5776 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
5777 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
5778 DPIO_AFC_RECAL);
5779
5780 mutex_unlock(&dev_priv->dpio_lock);
5781}
5782
Daniel Vetterf47709a2013-03-28 10:42:02 +01005783static void i9xx_update_pll(struct intel_crtc *crtc,
5784 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005785 int num_connectors)
5786{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005787 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005788 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005789 u32 dpll;
5790 bool is_sdvo;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005791 struct dpll *clock = &crtc->config.dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005792
Daniel Vetterf47709a2013-03-28 10:42:02 +01005793 i9xx_update_pll_dividers(crtc, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305794
Daniel Vetterf47709a2013-03-28 10:42:02 +01005795 is_sdvo = intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_SDVO) ||
5796 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005797
5798 dpll = DPLL_VGA_MODE_DIS;
5799
Daniel Vetterf47709a2013-03-28 10:42:02 +01005800 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005801 dpll |= DPLLB_MODE_LVDS;
5802 else
5803 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01005804
Daniel Vetteref1b4602013-06-01 17:17:04 +02005805 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Daniel Vetter198a037f2013-04-19 11:14:37 +02005806 dpll |= (crtc->config.pixel_multiplier - 1)
5807 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005808 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02005809
5810 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02005811 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02005812
Daniel Vetterf47709a2013-03-28 10:42:02 +01005813 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT))
Daniel Vetter4a33e482013-07-06 12:52:05 +02005814 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005815
5816 /* compute bitmask from p1 value */
5817 if (IS_PINEVIEW(dev))
5818 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
5819 else {
5820 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5821 if (IS_G4X(dev) && reduced_clock)
5822 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
5823 }
5824 switch (clock->p2) {
5825 case 5:
5826 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
5827 break;
5828 case 7:
5829 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
5830 break;
5831 case 10:
5832 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
5833 break;
5834 case 14:
5835 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
5836 break;
5837 }
5838 if (INTEL_INFO(dev)->gen >= 4)
5839 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
5840
Daniel Vetter09ede542013-04-30 14:01:45 +02005841 if (crtc->config.sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005842 dpll |= PLL_REF_INPUT_TVCLKINBC;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005843 else if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005844 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5845 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5846 else
5847 dpll |= PLL_REF_INPUT_DREFCLK;
5848
5849 dpll |= DPLL_VCO_ENABLE;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005850 crtc->config.dpll_hw_state.dpll = dpll;
5851
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005852 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetteref1b4602013-06-01 17:17:04 +02005853 u32 dpll_md = (crtc->config.pixel_multiplier - 1)
5854 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005855 crtc->config.dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005856 }
5857}
5858
Daniel Vetterf47709a2013-03-28 10:42:02 +01005859static void i8xx_update_pll(struct intel_crtc *crtc,
Daniel Vetterf47709a2013-03-28 10:42:02 +01005860 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005861 int num_connectors)
5862{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005863 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005864 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005865 u32 dpll;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005866 struct dpll *clock = &crtc->config.dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005867
Daniel Vetterf47709a2013-03-28 10:42:02 +01005868 i9xx_update_pll_dividers(crtc, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305869
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005870 dpll = DPLL_VGA_MODE_DIS;
5871
Daniel Vetterf47709a2013-03-28 10:42:02 +01005872 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005873 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5874 } else {
5875 if (clock->p1 == 2)
5876 dpll |= PLL_P1_DIVIDE_BY_TWO;
5877 else
5878 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5879 if (clock->p2 == 4)
5880 dpll |= PLL_P2_DIVIDE_BY_4;
5881 }
5882
Daniel Vetter4a33e482013-07-06 12:52:05 +02005883 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DVO))
5884 dpll |= DPLL_DVO_2X_MODE;
5885
Daniel Vetterf47709a2013-03-28 10:42:02 +01005886 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005887 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5888 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5889 else
5890 dpll |= PLL_REF_INPUT_DREFCLK;
5891
5892 dpll |= DPLL_VCO_ENABLE;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005893 crtc->config.dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005894}
5895
Daniel Vetter8a654f32013-06-01 17:16:22 +02005896static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005897{
5898 struct drm_device *dev = intel_crtc->base.dev;
5899 struct drm_i915_private *dev_priv = dev->dev_private;
5900 enum pipe pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02005901 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Daniel Vetter8a654f32013-06-01 17:16:22 +02005902 struct drm_display_mode *adjusted_mode =
5903 &intel_crtc->config.adjusted_mode;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02005904 uint32_t crtc_vtotal, crtc_vblank_end;
5905 int vsyncshift = 0;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005906
5907 /* We need to be careful not to changed the adjusted mode, for otherwise
5908 * the hw state checker will get angry at the mismatch. */
5909 crtc_vtotal = adjusted_mode->crtc_vtotal;
5910 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005911
Ville Syrjälä609aeac2014-03-28 23:29:30 +02005912 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005913 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005914 crtc_vtotal -= 1;
5915 crtc_vblank_end -= 1;
Ville Syrjälä609aeac2014-03-28 23:29:30 +02005916
5917 if (intel_pipe_has_type(&intel_crtc->base, INTEL_OUTPUT_SDVO))
5918 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
5919 else
5920 vsyncshift = adjusted_mode->crtc_hsync_start -
5921 adjusted_mode->crtc_htotal / 2;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02005922 if (vsyncshift < 0)
5923 vsyncshift += adjusted_mode->crtc_htotal;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005924 }
5925
5926 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005927 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005928
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005929 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005930 (adjusted_mode->crtc_hdisplay - 1) |
5931 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005932 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005933 (adjusted_mode->crtc_hblank_start - 1) |
5934 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005935 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005936 (adjusted_mode->crtc_hsync_start - 1) |
5937 ((adjusted_mode->crtc_hsync_end - 1) << 16));
5938
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005939 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005940 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005941 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005942 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005943 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005944 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005945 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005946 (adjusted_mode->crtc_vsync_start - 1) |
5947 ((adjusted_mode->crtc_vsync_end - 1) << 16));
5948
Paulo Zanonib5e508d2012-10-24 11:34:43 -02005949 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
5950 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
5951 * documented on the DDI_FUNC_CTL register description, EDP Input Select
5952 * bits. */
5953 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
5954 (pipe == PIPE_B || pipe == PIPE_C))
5955 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
5956
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005957 /* pipesrc controls the size that is scaled from, which should
5958 * always be the user's requested size.
5959 */
5960 I915_WRITE(PIPESRC(pipe),
Ville Syrjälä37327ab2013-09-04 18:25:28 +03005961 ((intel_crtc->config.pipe_src_w - 1) << 16) |
5962 (intel_crtc->config.pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005963}
5964
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02005965static void intel_get_pipe_timings(struct intel_crtc *crtc,
5966 struct intel_crtc_config *pipe_config)
5967{
5968 struct drm_device *dev = crtc->base.dev;
5969 struct drm_i915_private *dev_priv = dev->dev_private;
5970 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
5971 uint32_t tmp;
5972
5973 tmp = I915_READ(HTOTAL(cpu_transcoder));
5974 pipe_config->adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
5975 pipe_config->adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
5976 tmp = I915_READ(HBLANK(cpu_transcoder));
5977 pipe_config->adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
5978 pipe_config->adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
5979 tmp = I915_READ(HSYNC(cpu_transcoder));
5980 pipe_config->adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
5981 pipe_config->adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
5982
5983 tmp = I915_READ(VTOTAL(cpu_transcoder));
5984 pipe_config->adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
5985 pipe_config->adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
5986 tmp = I915_READ(VBLANK(cpu_transcoder));
5987 pipe_config->adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
5988 pipe_config->adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
5989 tmp = I915_READ(VSYNC(cpu_transcoder));
5990 pipe_config->adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
5991 pipe_config->adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
5992
5993 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
5994 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
5995 pipe_config->adjusted_mode.crtc_vtotal += 1;
5996 pipe_config->adjusted_mode.crtc_vblank_end += 1;
5997 }
5998
5999 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03006000 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
6001 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
6002
6003 pipe_config->requested_mode.vdisplay = pipe_config->pipe_src_h;
6004 pipe_config->requested_mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006005}
6006
Daniel Vetterf6a83282014-02-11 15:28:57 -08006007void intel_mode_from_pipe_config(struct drm_display_mode *mode,
6008 struct intel_crtc_config *pipe_config)
Jesse Barnesbabea612013-06-26 18:57:38 +03006009{
Daniel Vetterf6a83282014-02-11 15:28:57 -08006010 mode->hdisplay = pipe_config->adjusted_mode.crtc_hdisplay;
6011 mode->htotal = pipe_config->adjusted_mode.crtc_htotal;
6012 mode->hsync_start = pipe_config->adjusted_mode.crtc_hsync_start;
6013 mode->hsync_end = pipe_config->adjusted_mode.crtc_hsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03006014
Daniel Vetterf6a83282014-02-11 15:28:57 -08006015 mode->vdisplay = pipe_config->adjusted_mode.crtc_vdisplay;
6016 mode->vtotal = pipe_config->adjusted_mode.crtc_vtotal;
6017 mode->vsync_start = pipe_config->adjusted_mode.crtc_vsync_start;
6018 mode->vsync_end = pipe_config->adjusted_mode.crtc_vsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03006019
Daniel Vetterf6a83282014-02-11 15:28:57 -08006020 mode->flags = pipe_config->adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03006021
Daniel Vetterf6a83282014-02-11 15:28:57 -08006022 mode->clock = pipe_config->adjusted_mode.crtc_clock;
6023 mode->flags |= pipe_config->adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03006024}
6025
Daniel Vetter84b046f2013-02-19 18:48:54 +01006026static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
6027{
6028 struct drm_device *dev = intel_crtc->base.dev;
6029 struct drm_i915_private *dev_priv = dev->dev_private;
6030 uint32_t pipeconf;
6031
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02006032 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01006033
Daniel Vetter67c72a12013-09-24 11:46:14 +02006034 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
6035 I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE)
6036 pipeconf |= PIPECONF_ENABLE;
6037
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006038 if (intel_crtc->config.double_wide)
6039 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01006040
Daniel Vetterff9ce462013-04-24 14:57:17 +02006041 /* only g4x and later have fancy bpc/dither controls */
6042 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02006043 /* Bspec claims that we can't use dithering for 30bpp pipes. */
6044 if (intel_crtc->config.dither && intel_crtc->config.pipe_bpp != 30)
6045 pipeconf |= PIPECONF_DITHER_EN |
6046 PIPECONF_DITHER_TYPE_SP;
6047
6048 switch (intel_crtc->config.pipe_bpp) {
6049 case 18:
6050 pipeconf |= PIPECONF_6BPC;
6051 break;
6052 case 24:
6053 pipeconf |= PIPECONF_8BPC;
6054 break;
6055 case 30:
6056 pipeconf |= PIPECONF_10BPC;
6057 break;
6058 default:
6059 /* Case prevented by intel_choose_pipe_bpp_dither. */
6060 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01006061 }
6062 }
6063
6064 if (HAS_PIPE_CXSR(dev)) {
6065 if (intel_crtc->lowfreq_avail) {
6066 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
6067 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
6068 } else {
6069 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01006070 }
6071 }
6072
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02006073 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
6074 if (INTEL_INFO(dev)->gen < 4 ||
6075 intel_pipe_has_type(&intel_crtc->base, INTEL_OUTPUT_SDVO))
6076 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
6077 else
6078 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
6079 } else
Daniel Vetter84b046f2013-02-19 18:48:54 +01006080 pipeconf |= PIPECONF_PROGRESSIVE;
6081
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02006082 if (IS_VALLEYVIEW(dev) && intel_crtc->config.limited_color_range)
6083 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03006084
Daniel Vetter84b046f2013-02-19 18:48:54 +01006085 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
6086 POSTING_READ(PIPECONF(intel_crtc->pipe));
6087}
6088
Eric Anholtf564048e2011-03-30 13:01:02 -07006089static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
Eric Anholtf564048e2011-03-30 13:01:02 -07006090 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02006091 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08006092{
6093 struct drm_device *dev = crtc->dev;
6094 struct drm_i915_private *dev_priv = dev->dev_private;
6095 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Eric Anholtc751ce42010-03-25 11:48:48 -07006096 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07006097 intel_clock_t clock, reduced_clock;
Daniel Vettera16af7212013-04-30 14:01:44 +02006098 bool ok, has_reduced_clock = false;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006099 bool is_lvds = false, is_dsi = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01006100 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08006101 const intel_limit_t *limit;
Jesse Barnes79e53942008-11-07 14:24:08 -08006102
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02006103 for_each_encoder_on_crtc(dev, crtc, encoder) {
Chris Wilson5eddb702010-09-11 13:48:45 +01006104 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006105 case INTEL_OUTPUT_LVDS:
6106 is_lvds = true;
6107 break;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006108 case INTEL_OUTPUT_DSI:
6109 is_dsi = true;
6110 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08006111 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05006112
Eric Anholtc751ce42010-03-25 11:48:48 -07006113 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08006114 }
6115
Jani Nikulaf2335332013-09-13 11:03:09 +03006116 if (is_dsi)
Daniel Vetter5b18e572014-04-24 23:55:06 +02006117 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006118
Jani Nikulaf2335332013-09-13 11:03:09 +03006119 if (!intel_crtc->config.clock_set) {
6120 refclk = i9xx_get_refclk(crtc, num_connectors);
6121
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006122 /*
6123 * Returns a set of divisors for the desired target clock with
6124 * the given refclk, or FALSE. The returned values represent
6125 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
6126 * 2) / p1 / p2.
6127 */
6128 limit = intel_limit(crtc, refclk);
6129 ok = dev_priv->display.find_dpll(limit, crtc,
6130 intel_crtc->config.port_clock,
6131 refclk, NULL, &clock);
Jani Nikulaf2335332013-09-13 11:03:09 +03006132 if (!ok) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006133 DRM_ERROR("Couldn't find PLL settings for mode!\n");
6134 return -EINVAL;
6135 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006136
Jani Nikulaf2335332013-09-13 11:03:09 +03006137 if (is_lvds && dev_priv->lvds_downclock_avail) {
6138 /*
6139 * Ensure we match the reduced clock's P to the target
6140 * clock. If the clocks don't match, we can't switch
6141 * the display clock by using the FP0/FP1. In such case
6142 * we will disable the LVDS downclock feature.
6143 */
6144 has_reduced_clock =
6145 dev_priv->display.find_dpll(limit, crtc,
6146 dev_priv->lvds_downclock,
6147 refclk, &clock,
6148 &reduced_clock);
6149 }
6150 /* Compat-code for transition, will disappear. */
Daniel Vetterf47709a2013-03-28 10:42:02 +01006151 intel_crtc->config.dpll.n = clock.n;
6152 intel_crtc->config.dpll.m1 = clock.m1;
6153 intel_crtc->config.dpll.m2 = clock.m2;
6154 intel_crtc->config.dpll.p1 = clock.p1;
6155 intel_crtc->config.dpll.p2 = clock.p2;
6156 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006157
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006158 if (IS_GEN2(dev)) {
Daniel Vetter8a654f32013-06-01 17:16:22 +02006159 i8xx_update_pll(intel_crtc,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05306160 has_reduced_clock ? &reduced_clock : NULL,
6161 num_connectors);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006162 } else if (IS_CHERRYVIEW(dev)) {
6163 chv_update_pll(intel_crtc);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006164 } else if (IS_VALLEYVIEW(dev)) {
Jani Nikulaf2335332013-09-13 11:03:09 +03006165 vlv_update_pll(intel_crtc);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006166 } else {
Daniel Vetterf47709a2013-03-28 10:42:02 +01006167 i9xx_update_pll(intel_crtc,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006168 has_reduced_clock ? &reduced_clock : NULL,
Robin Schroereba905b2014-05-18 02:24:50 +02006169 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006170 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006171
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02006172 return 0;
Eric Anholtf564048e2011-03-30 13:01:02 -07006173}
6174
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006175static void i9xx_get_pfit_config(struct intel_crtc *crtc,
6176 struct intel_crtc_config *pipe_config)
6177{
6178 struct drm_device *dev = crtc->base.dev;
6179 struct drm_i915_private *dev_priv = dev->dev_private;
6180 uint32_t tmp;
6181
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02006182 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
6183 return;
6184
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006185 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02006186 if (!(tmp & PFIT_ENABLE))
6187 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006188
Daniel Vetter06922822013-07-11 13:35:40 +02006189 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006190 if (INTEL_INFO(dev)->gen < 4) {
6191 if (crtc->pipe != PIPE_B)
6192 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006193 } else {
6194 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
6195 return;
6196 }
6197
Daniel Vetter06922822013-07-11 13:35:40 +02006198 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006199 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
6200 if (INTEL_INFO(dev)->gen < 5)
6201 pipe_config->gmch_pfit.lvds_border_bits =
6202 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
6203}
6204
Jesse Barnesacbec812013-09-20 11:29:32 -07006205static void vlv_crtc_clock_get(struct intel_crtc *crtc,
6206 struct intel_crtc_config *pipe_config)
6207{
6208 struct drm_device *dev = crtc->base.dev;
6209 struct drm_i915_private *dev_priv = dev->dev_private;
6210 int pipe = pipe_config->cpu_transcoder;
6211 intel_clock_t clock;
6212 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07006213 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07006214
Shobhit Kumarf573de52014-07-30 20:32:37 +05306215 /* In case of MIPI DPLL will not even be used */
6216 if (!(pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE))
6217 return;
6218
Jesse Barnesacbec812013-09-20 11:29:32 -07006219 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006220 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
Jesse Barnesacbec812013-09-20 11:29:32 -07006221 mutex_unlock(&dev_priv->dpio_lock);
6222
6223 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
6224 clock.m2 = mdiv & DPIO_M2DIV_MASK;
6225 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
6226 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
6227 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
6228
Ville Syrjäläf6466282013-10-14 14:50:31 +03006229 vlv_clock(refclk, &clock);
Jesse Barnesacbec812013-09-20 11:29:32 -07006230
Ville Syrjäläf6466282013-10-14 14:50:31 +03006231 /* clock.dot is the fast clock */
6232 pipe_config->port_clock = clock.dot / 5;
Jesse Barnesacbec812013-09-20 11:29:32 -07006233}
6234
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006235static void i9xx_get_plane_config(struct intel_crtc *crtc,
6236 struct intel_plane_config *plane_config)
6237{
6238 struct drm_device *dev = crtc->base.dev;
6239 struct drm_i915_private *dev_priv = dev->dev_private;
6240 u32 val, base, offset;
6241 int pipe = crtc->pipe, plane = crtc->plane;
6242 int fourcc, pixel_format;
6243 int aligned_height;
6244
Dave Airlie66e514c2014-04-03 07:51:54 +10006245 crtc->base.primary->fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
6246 if (!crtc->base.primary->fb) {
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006247 DRM_DEBUG_KMS("failed to alloc fb\n");
6248 return;
6249 }
6250
6251 val = I915_READ(DSPCNTR(plane));
6252
6253 if (INTEL_INFO(dev)->gen >= 4)
6254 if (val & DISPPLANE_TILED)
6255 plane_config->tiled = true;
6256
6257 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
6258 fourcc = intel_format_to_fourcc(pixel_format);
Dave Airlie66e514c2014-04-03 07:51:54 +10006259 crtc->base.primary->fb->pixel_format = fourcc;
6260 crtc->base.primary->fb->bits_per_pixel =
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006261 drm_format_plane_cpp(fourcc, 0) * 8;
6262
6263 if (INTEL_INFO(dev)->gen >= 4) {
6264 if (plane_config->tiled)
6265 offset = I915_READ(DSPTILEOFF(plane));
6266 else
6267 offset = I915_READ(DSPLINOFF(plane));
6268 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
6269 } else {
6270 base = I915_READ(DSPADDR(plane));
6271 }
6272 plane_config->base = base;
6273
6274 val = I915_READ(PIPESRC(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10006275 crtc->base.primary->fb->width = ((val >> 16) & 0xfff) + 1;
6276 crtc->base.primary->fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006277
6278 val = I915_READ(DSPSTRIDE(pipe));
Rafael Barbalho026b96e2014-07-28 19:56:27 +01006279 crtc->base.primary->fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006280
Dave Airlie66e514c2014-04-03 07:51:54 +10006281 aligned_height = intel_align_height(dev, crtc->base.primary->fb->height,
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006282 plane_config->tiled);
6283
Fabian Frederick1267a262014-07-01 20:39:41 +02006284 plane_config->size = PAGE_ALIGN(crtc->base.primary->fb->pitches[0] *
6285 aligned_height);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006286
6287 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 +10006288 pipe, plane, crtc->base.primary->fb->width,
6289 crtc->base.primary->fb->height,
6290 crtc->base.primary->fb->bits_per_pixel, base,
6291 crtc->base.primary->fb->pitches[0],
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006292 plane_config->size);
6293
6294}
6295
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006296static void chv_crtc_clock_get(struct intel_crtc *crtc,
6297 struct intel_crtc_config *pipe_config)
6298{
6299 struct drm_device *dev = crtc->base.dev;
6300 struct drm_i915_private *dev_priv = dev->dev_private;
6301 int pipe = pipe_config->cpu_transcoder;
6302 enum dpio_channel port = vlv_pipe_to_channel(pipe);
6303 intel_clock_t clock;
6304 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2;
6305 int refclk = 100000;
6306
6307 mutex_lock(&dev_priv->dpio_lock);
6308 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
6309 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
6310 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
6311 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
6312 mutex_unlock(&dev_priv->dpio_lock);
6313
6314 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
6315 clock.m2 = ((pll_dw0 & 0xff) << 22) | (pll_dw2 & 0x3fffff);
6316 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
6317 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
6318 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
6319
6320 chv_clock(refclk, &clock);
6321
6322 /* clock.dot is the fast clock */
6323 pipe_config->port_clock = clock.dot / 5;
6324}
6325
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006326static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
6327 struct intel_crtc_config *pipe_config)
6328{
6329 struct drm_device *dev = crtc->base.dev;
6330 struct drm_i915_private *dev_priv = dev->dev_private;
6331 uint32_t tmp;
6332
Imre Deakb5482bd2014-03-05 16:20:55 +02006333 if (!intel_display_power_enabled(dev_priv,
6334 POWER_DOMAIN_PIPE(crtc->pipe)))
6335 return false;
6336
Daniel Vettere143a212013-07-04 12:01:15 +02006337 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02006338 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02006339
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006340 tmp = I915_READ(PIPECONF(crtc->pipe));
6341 if (!(tmp & PIPECONF_ENABLE))
6342 return false;
6343
Ville Syrjälä42571ae2013-09-06 23:29:00 +03006344 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
6345 switch (tmp & PIPECONF_BPC_MASK) {
6346 case PIPECONF_6BPC:
6347 pipe_config->pipe_bpp = 18;
6348 break;
6349 case PIPECONF_8BPC:
6350 pipe_config->pipe_bpp = 24;
6351 break;
6352 case PIPECONF_10BPC:
6353 pipe_config->pipe_bpp = 30;
6354 break;
6355 default:
6356 break;
6357 }
6358 }
6359
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02006360 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
6361 pipe_config->limited_color_range = true;
6362
Ville Syrjälä282740f2013-09-04 18:30:03 +03006363 if (INTEL_INFO(dev)->gen < 4)
6364 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
6365
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006366 intel_get_pipe_timings(crtc, pipe_config);
6367
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006368 i9xx_get_pfit_config(crtc, pipe_config);
6369
Daniel Vetter6c49f242013-06-06 12:45:25 +02006370 if (INTEL_INFO(dev)->gen >= 4) {
6371 tmp = I915_READ(DPLL_MD(crtc->pipe));
6372 pipe_config->pixel_multiplier =
6373 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
6374 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006375 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02006376 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
6377 tmp = I915_READ(DPLL(crtc->pipe));
6378 pipe_config->pixel_multiplier =
6379 ((tmp & SDVO_MULTIPLIER_MASK)
6380 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
6381 } else {
6382 /* Note that on i915G/GM the pixel multiplier is in the sdvo
6383 * port and will be fixed up in the encoder->get_config
6384 * function. */
6385 pipe_config->pixel_multiplier = 1;
6386 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006387 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
6388 if (!IS_VALLEYVIEW(dev)) {
6389 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
6390 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03006391 } else {
6392 /* Mask out read-only status bits. */
6393 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
6394 DPLL_PORTC_READY_MASK |
6395 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006396 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02006397
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006398 if (IS_CHERRYVIEW(dev))
6399 chv_crtc_clock_get(crtc, pipe_config);
6400 else if (IS_VALLEYVIEW(dev))
Jesse Barnesacbec812013-09-20 11:29:32 -07006401 vlv_crtc_clock_get(crtc, pipe_config);
6402 else
6403 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03006404
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006405 return true;
6406}
6407
Paulo Zanonidde86e22012-12-01 12:04:25 -02006408static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07006409{
6410 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006411 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006412 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006413 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006414 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006415 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07006416 bool has_ck505 = false;
6417 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006418
6419 /* We need to take the global config into account */
Damien Lespiaub2784e12014-08-05 11:29:37 +01006420 for_each_intel_encoder(dev, encoder) {
Keith Packard199e5d72011-09-22 12:01:57 -07006421 switch (encoder->type) {
6422 case INTEL_OUTPUT_LVDS:
6423 has_panel = true;
6424 has_lvds = true;
6425 break;
6426 case INTEL_OUTPUT_EDP:
6427 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03006428 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07006429 has_cpu_edp = true;
6430 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006431 }
6432 }
6433
Keith Packard99eb6a02011-09-26 14:29:12 -07006434 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006435 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07006436 can_ssc = has_ck505;
6437 } else {
6438 has_ck505 = false;
6439 can_ssc = true;
6440 }
6441
Imre Deak2de69052013-05-08 13:14:04 +03006442 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
6443 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006444
6445 /* Ironlake: try to setup display ref clock before DPLL
6446 * enabling. This is only under driver's control after
6447 * PCH B stepping, previous chipset stepping should be
6448 * ignoring this setting.
6449 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006450 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006451
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006452 /* As we must carefully and slowly disable/enable each source in turn,
6453 * compute the final state we want first and check if we need to
6454 * make any changes at all.
6455 */
6456 final = val;
6457 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07006458 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006459 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07006460 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006461 final |= DREF_NONSPREAD_SOURCE_ENABLE;
6462
6463 final &= ~DREF_SSC_SOURCE_MASK;
6464 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
6465 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006466
Keith Packard199e5d72011-09-22 12:01:57 -07006467 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006468 final |= DREF_SSC_SOURCE_ENABLE;
6469
6470 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6471 final |= DREF_SSC1_ENABLE;
6472
6473 if (has_cpu_edp) {
6474 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6475 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
6476 else
6477 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
6478 } else
6479 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6480 } else {
6481 final |= DREF_SSC_SOURCE_DISABLE;
6482 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6483 }
6484
6485 if (final == val)
6486 return;
6487
6488 /* Always enable nonspread source */
6489 val &= ~DREF_NONSPREAD_SOURCE_MASK;
6490
6491 if (has_ck505)
6492 val |= DREF_NONSPREAD_CK505_ENABLE;
6493 else
6494 val |= DREF_NONSPREAD_SOURCE_ENABLE;
6495
6496 if (has_panel) {
6497 val &= ~DREF_SSC_SOURCE_MASK;
6498 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006499
Keith Packard199e5d72011-09-22 12:01:57 -07006500 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07006501 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07006502 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006503 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02006504 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006505 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006506
6507 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006508 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006509 POSTING_READ(PCH_DREF_CONTROL);
6510 udelay(200);
6511
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006512 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006513
6514 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07006515 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07006516 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07006517 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006518 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Robin Schroereba905b2014-05-18 02:24:50 +02006519 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006520 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07006521 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006522 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006523
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006524 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006525 POSTING_READ(PCH_DREF_CONTROL);
6526 udelay(200);
6527 } else {
6528 DRM_DEBUG_KMS("Disabling SSC entirely\n");
6529
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006530 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07006531
6532 /* Turn off CPU output */
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
6539 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006540 val &= ~DREF_SSC_SOURCE_MASK;
6541 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006542
6543 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006544 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006545
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006546 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006547 POSTING_READ(PCH_DREF_CONTROL);
6548 udelay(200);
6549 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006550
6551 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006552}
6553
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006554static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02006555{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006556 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02006557
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006558 tmp = I915_READ(SOUTH_CHICKEN2);
6559 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
6560 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006561
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006562 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
6563 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
6564 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02006565
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006566 tmp = I915_READ(SOUTH_CHICKEN2);
6567 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
6568 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006569
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006570 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
6571 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
6572 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006573}
6574
6575/* WaMPhyProgramming:hsw */
6576static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
6577{
6578 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02006579
6580 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
6581 tmp &= ~(0xFF << 24);
6582 tmp |= (0x12 << 24);
6583 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
6584
Paulo Zanonidde86e22012-12-01 12:04:25 -02006585 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
6586 tmp |= (1 << 11);
6587 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
6588
6589 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
6590 tmp |= (1 << 11);
6591 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
6592
Paulo Zanonidde86e22012-12-01 12:04:25 -02006593 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
6594 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6595 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
6596
6597 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
6598 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6599 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
6600
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006601 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
6602 tmp &= ~(7 << 13);
6603 tmp |= (5 << 13);
6604 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006605
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006606 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
6607 tmp &= ~(7 << 13);
6608 tmp |= (5 << 13);
6609 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006610
6611 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
6612 tmp &= ~0xFF;
6613 tmp |= 0x1C;
6614 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
6615
6616 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
6617 tmp &= ~0xFF;
6618 tmp |= 0x1C;
6619 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
6620
6621 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
6622 tmp &= ~(0xFF << 16);
6623 tmp |= (0x1C << 16);
6624 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
6625
6626 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
6627 tmp &= ~(0xFF << 16);
6628 tmp |= (0x1C << 16);
6629 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
6630
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006631 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
6632 tmp |= (1 << 27);
6633 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006634
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006635 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
6636 tmp |= (1 << 27);
6637 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006638
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006639 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
6640 tmp &= ~(0xF << 28);
6641 tmp |= (4 << 28);
6642 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006643
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006644 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
6645 tmp &= ~(0xF << 28);
6646 tmp |= (4 << 28);
6647 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006648}
6649
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006650/* Implements 3 different sequences from BSpec chapter "Display iCLK
6651 * Programming" based on the parameters passed:
6652 * - Sequence to enable CLKOUT_DP
6653 * - Sequence to enable CLKOUT_DP without spread
6654 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
6655 */
6656static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
6657 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006658{
6659 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006660 uint32_t reg, tmp;
6661
6662 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
6663 with_spread = true;
6664 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
6665 with_fdi, "LP PCH doesn't have FDI\n"))
6666 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006667
6668 mutex_lock(&dev_priv->dpio_lock);
6669
6670 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6671 tmp &= ~SBI_SSCCTL_DISABLE;
6672 tmp |= SBI_SSCCTL_PATHALT;
6673 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6674
6675 udelay(24);
6676
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006677 if (with_spread) {
6678 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6679 tmp &= ~SBI_SSCCTL_PATHALT;
6680 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006681
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006682 if (with_fdi) {
6683 lpt_reset_fdi_mphy(dev_priv);
6684 lpt_program_fdi_mphy(dev_priv);
6685 }
6686 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02006687
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006688 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
6689 SBI_GEN0 : SBI_DBUFF0;
6690 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
6691 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
6692 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01006693
6694 mutex_unlock(&dev_priv->dpio_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006695}
6696
Paulo Zanoni47701c32013-07-23 11:19:25 -03006697/* Sequence to disable CLKOUT_DP */
6698static void lpt_disable_clkout_dp(struct drm_device *dev)
6699{
6700 struct drm_i915_private *dev_priv = dev->dev_private;
6701 uint32_t reg, tmp;
6702
6703 mutex_lock(&dev_priv->dpio_lock);
6704
6705 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
6706 SBI_GEN0 : SBI_DBUFF0;
6707 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
6708 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
6709 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
6710
6711 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6712 if (!(tmp & SBI_SSCCTL_DISABLE)) {
6713 if (!(tmp & SBI_SSCCTL_PATHALT)) {
6714 tmp |= SBI_SSCCTL_PATHALT;
6715 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6716 udelay(32);
6717 }
6718 tmp |= SBI_SSCCTL_DISABLE;
6719 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6720 }
6721
6722 mutex_unlock(&dev_priv->dpio_lock);
6723}
6724
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03006725static void lpt_init_pch_refclk(struct drm_device *dev)
6726{
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03006727 struct intel_encoder *encoder;
6728 bool has_vga = false;
6729
Damien Lespiaub2784e12014-08-05 11:29:37 +01006730 for_each_intel_encoder(dev, encoder) {
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03006731 switch (encoder->type) {
6732 case INTEL_OUTPUT_ANALOG:
6733 has_vga = true;
6734 break;
6735 }
6736 }
6737
Paulo Zanoni47701c32013-07-23 11:19:25 -03006738 if (has_vga)
6739 lpt_enable_clkout_dp(dev, true, true);
6740 else
6741 lpt_disable_clkout_dp(dev);
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03006742}
6743
Paulo Zanonidde86e22012-12-01 12:04:25 -02006744/*
6745 * Initialize reference clocks when the driver loads
6746 */
6747void intel_init_pch_refclk(struct drm_device *dev)
6748{
6749 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
6750 ironlake_init_pch_refclk(dev);
6751 else if (HAS_PCH_LPT(dev))
6752 lpt_init_pch_refclk(dev);
6753}
6754
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006755static int ironlake_get_refclk(struct drm_crtc *crtc)
6756{
6757 struct drm_device *dev = crtc->dev;
6758 struct drm_i915_private *dev_priv = dev->dev_private;
6759 struct intel_encoder *encoder;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006760 int num_connectors = 0;
6761 bool is_lvds = false;
6762
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02006763 for_each_encoder_on_crtc(dev, crtc, encoder) {
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006764 switch (encoder->type) {
6765 case INTEL_OUTPUT_LVDS:
6766 is_lvds = true;
6767 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006768 }
6769 num_connectors++;
6770 }
6771
6772 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006773 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006774 dev_priv->vbt.lvds_ssc_freq);
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006775 return dev_priv->vbt.lvds_ssc_freq;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006776 }
6777
6778 return 120000;
6779}
6780
Daniel Vetter6ff93602013-04-19 11:24:36 +02006781static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03006782{
6783 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
6784 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6785 int pipe = intel_crtc->pipe;
6786 uint32_t val;
6787
Daniel Vetter78114072013-06-13 00:54:57 +02006788 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03006789
Daniel Vetter965e0c42013-03-27 00:44:57 +01006790 switch (intel_crtc->config.pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03006791 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006792 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006793 break;
6794 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006795 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006796 break;
6797 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006798 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006799 break;
6800 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006801 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006802 break;
6803 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03006804 /* Case prevented by intel_choose_pipe_bpp_dither. */
6805 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03006806 }
6807
Daniel Vetterd8b32242013-04-25 17:54:44 +02006808 if (intel_crtc->config.dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03006809 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
6810
Daniel Vetter6ff93602013-04-19 11:24:36 +02006811 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03006812 val |= PIPECONF_INTERLACED_ILK;
6813 else
6814 val |= PIPECONF_PROGRESSIVE;
6815
Daniel Vetter50f3b012013-03-27 00:44:56 +01006816 if (intel_crtc->config.limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02006817 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02006818
Paulo Zanonic8203562012-09-12 10:06:29 -03006819 I915_WRITE(PIPECONF(pipe), val);
6820 POSTING_READ(PIPECONF(pipe));
6821}
6822
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006823/*
6824 * Set up the pipe CSC unit.
6825 *
6826 * Currently only full range RGB to limited range RGB conversion
6827 * is supported, but eventually this should handle various
6828 * RGB<->YCbCr scenarios as well.
6829 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01006830static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006831{
6832 struct drm_device *dev = crtc->dev;
6833 struct drm_i915_private *dev_priv = dev->dev_private;
6834 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6835 int pipe = intel_crtc->pipe;
6836 uint16_t coeff = 0x7800; /* 1.0 */
6837
6838 /*
6839 * TODO: Check what kind of values actually come out of the pipe
6840 * with these coeff/postoff values and adjust to get the best
6841 * accuracy. Perhaps we even need to take the bpc value into
6842 * consideration.
6843 */
6844
Daniel Vetter50f3b012013-03-27 00:44:56 +01006845 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006846 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
6847
6848 /*
6849 * GY/GU and RY/RU should be the other way around according
6850 * to BSpec, but reality doesn't agree. Just set them up in
6851 * a way that results in the correct picture.
6852 */
6853 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
6854 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
6855
6856 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
6857 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
6858
6859 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
6860 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
6861
6862 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
6863 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
6864 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
6865
6866 if (INTEL_INFO(dev)->gen > 6) {
6867 uint16_t postoff = 0;
6868
Daniel Vetter50f3b012013-03-27 00:44:56 +01006869 if (intel_crtc->config.limited_color_range)
Ville Syrjälä32cf0cb2013-11-28 22:10:38 +02006870 postoff = (16 * (1 << 12) / 255) & 0x1fff;
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006871
6872 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
6873 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
6874 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
6875
6876 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
6877 } else {
6878 uint32_t mode = CSC_MODE_YUV_TO_RGB;
6879
Daniel Vetter50f3b012013-03-27 00:44:56 +01006880 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006881 mode |= CSC_BLACK_SCREEN_OFFSET;
6882
6883 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
6884 }
6885}
6886
Daniel Vetter6ff93602013-04-19 11:24:36 +02006887static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006888{
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006889 struct drm_device *dev = crtc->dev;
6890 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006891 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006892 enum pipe pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02006893 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006894 uint32_t val;
6895
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02006896 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006897
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006898 if (IS_HASWELL(dev) && intel_crtc->config.dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006899 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
6900
Daniel Vetter6ff93602013-04-19 11:24:36 +02006901 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006902 val |= PIPECONF_INTERLACED_ILK;
6903 else
6904 val |= PIPECONF_PROGRESSIVE;
6905
Paulo Zanoni702e7a52012-10-23 18:29:59 -02006906 I915_WRITE(PIPECONF(cpu_transcoder), val);
6907 POSTING_READ(PIPECONF(cpu_transcoder));
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02006908
6909 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
6910 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006911
6912 if (IS_BROADWELL(dev)) {
6913 val = 0;
6914
6915 switch (intel_crtc->config.pipe_bpp) {
6916 case 18:
6917 val |= PIPEMISC_DITHER_6_BPC;
6918 break;
6919 case 24:
6920 val |= PIPEMISC_DITHER_8_BPC;
6921 break;
6922 case 30:
6923 val |= PIPEMISC_DITHER_10_BPC;
6924 break;
6925 case 36:
6926 val |= PIPEMISC_DITHER_12_BPC;
6927 break;
6928 default:
6929 /* Case prevented by pipe_config_set_bpp. */
6930 BUG();
6931 }
6932
6933 if (intel_crtc->config.dither)
6934 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
6935
6936 I915_WRITE(PIPEMISC(pipe), val);
6937 }
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006938}
6939
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006940static bool ironlake_compute_clocks(struct drm_crtc *crtc,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006941 intel_clock_t *clock,
6942 bool *has_reduced_clock,
6943 intel_clock_t *reduced_clock)
6944{
6945 struct drm_device *dev = crtc->dev;
6946 struct drm_i915_private *dev_priv = dev->dev_private;
6947 struct intel_encoder *intel_encoder;
6948 int refclk;
6949 const intel_limit_t *limit;
Daniel Vettera16af7212013-04-30 14:01:44 +02006950 bool ret, is_lvds = false;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006951
6952 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
6953 switch (intel_encoder->type) {
6954 case INTEL_OUTPUT_LVDS:
6955 is_lvds = true;
6956 break;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006957 }
6958 }
6959
6960 refclk = ironlake_get_refclk(crtc);
6961
6962 /*
6963 * Returns a set of divisors for the desired target clock with the given
6964 * refclk, or FALSE. The returned values represent the clock equation:
6965 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
6966 */
6967 limit = intel_limit(crtc, refclk);
Daniel Vetterff9a6752013-06-01 17:16:21 +02006968 ret = dev_priv->display.find_dpll(limit, crtc,
6969 to_intel_crtc(crtc)->config.port_clock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02006970 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006971 if (!ret)
6972 return false;
6973
6974 if (is_lvds && dev_priv->lvds_downclock_avail) {
6975 /*
6976 * Ensure we match the reduced clock's P to the target clock.
6977 * If the clocks don't match, we can't switch the display clock
6978 * by using the FP0/FP1. In such case we will disable the LVDS
6979 * downclock feature.
6980 */
Daniel Vetteree9300b2013-06-03 22:40:22 +02006981 *has_reduced_clock =
6982 dev_priv->display.find_dpll(limit, crtc,
6983 dev_priv->lvds_downclock,
6984 refclk, clock,
6985 reduced_clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006986 }
6987
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006988 return true;
6989}
6990
Paulo Zanonid4b19312012-11-29 11:29:32 -02006991int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
6992{
6993 /*
6994 * Account for spread spectrum to avoid
6995 * oversubscribing the link. Max center spread
6996 * is 2.5%; use 5% for safety's sake.
6997 */
6998 u32 bps = target_clock * bpp * 21 / 20;
Ville Syrjälä619d4d02014-02-27 14:23:14 +02006999 return DIV_ROUND_UP(bps, link_bw * 8);
Paulo Zanonid4b19312012-11-29 11:29:32 -02007000}
7001
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007002static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02007003{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007004 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03007005}
7006
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007007static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007008 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02007009 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007010{
7011 struct drm_crtc *crtc = &intel_crtc->base;
7012 struct drm_device *dev = crtc->dev;
7013 struct drm_i915_private *dev_priv = dev->dev_private;
7014 struct intel_encoder *intel_encoder;
7015 uint32_t dpll;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01007016 int factor, num_connectors = 0;
Daniel Vetter09ede542013-04-30 14:01:45 +02007017 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007018
7019 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
7020 switch (intel_encoder->type) {
7021 case INTEL_OUTPUT_LVDS:
7022 is_lvds = true;
7023 break;
7024 case INTEL_OUTPUT_SDVO:
7025 case INTEL_OUTPUT_HDMI:
7026 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007027 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007028 }
7029
7030 num_connectors++;
7031 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007032
Chris Wilsonc1858122010-12-03 21:35:48 +00007033 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07007034 factor = 21;
7035 if (is_lvds) {
7036 if ((intel_panel_use_ssc(dev_priv) &&
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007037 dev_priv->vbt.lvds_ssc_freq == 100000) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02007038 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07007039 factor = 25;
Daniel Vetter09ede542013-04-30 14:01:45 +02007040 } else if (intel_crtc->config.sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07007041 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00007042
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007043 if (ironlake_needs_fb_cb_tune(&intel_crtc->config.dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02007044 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00007045
Daniel Vetter9a7c7892013-04-04 22:20:34 +02007046 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
7047 *fp2 |= FP_CB_TUNE;
7048
Chris Wilson5eddb702010-09-11 13:48:45 +01007049 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08007050
Eric Anholta07d6782011-03-30 13:01:08 -07007051 if (is_lvds)
7052 dpll |= DPLLB_MODE_LVDS;
7053 else
7054 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007055
Daniel Vetteref1b4602013-06-01 17:17:04 +02007056 dpll |= (intel_crtc->config.pixel_multiplier - 1)
7057 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007058
7059 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007060 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter9566e9a2013-04-19 11:14:36 +02007061 if (intel_crtc->config.has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007062 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08007063
Eric Anholta07d6782011-03-30 13:01:08 -07007064 /* compute bitmask from p1 value */
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007065 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07007066 /* also FPA1 */
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007067 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07007068
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007069 switch (intel_crtc->config.dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07007070 case 5:
7071 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
7072 break;
7073 case 7:
7074 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
7075 break;
7076 case 10:
7077 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
7078 break;
7079 case 14:
7080 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
7081 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08007082 }
7083
Daniel Vetterb4c09f32013-04-30 14:01:42 +02007084 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05007085 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08007086 else
7087 dpll |= PLL_REF_INPUT_DREFCLK;
7088
Daniel Vetter959e16d2013-06-05 13:34:21 +02007089 return dpll | DPLL_VCO_ENABLE;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007090}
7091
Jesse Barnes79e53942008-11-07 14:24:08 -08007092static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
Jesse Barnes79e53942008-11-07 14:24:08 -08007093 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02007094 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08007095{
7096 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08007097 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007098 int num_connectors = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007099 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007100 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03007101 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01007102 bool is_lvds = false;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03007103 struct intel_encoder *encoder;
Daniel Vettere2b78262013-06-07 23:10:03 +02007104 struct intel_shared_dpll *pll;
Jesse Barnes79e53942008-11-07 14:24:08 -08007105
7106 for_each_encoder_on_crtc(dev, crtc, encoder) {
7107 switch (encoder->type) {
7108 case INTEL_OUTPUT_LVDS:
7109 is_lvds = true;
7110 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08007111 }
7112
7113 num_connectors++;
7114 }
7115
Paulo Zanoni5dc52982012-10-05 12:05:56 -03007116 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
7117 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
7118
Daniel Vetterff9a6752013-06-01 17:16:21 +02007119 ok = ironlake_compute_clocks(crtc, &clock,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007120 &has_reduced_clock, &reduced_clock);
Daniel Vetteree9300b2013-06-03 22:40:22 +02007121 if (!ok && !intel_crtc->config.clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08007122 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7123 return -EINVAL;
7124 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01007125 /* Compat-code for transition, will disappear. */
7126 if (!intel_crtc->config.clock_set) {
7127 intel_crtc->config.dpll.n = clock.n;
7128 intel_crtc->config.dpll.m1 = clock.m1;
7129 intel_crtc->config.dpll.m2 = clock.m2;
7130 intel_crtc->config.dpll.p1 = clock.p1;
7131 intel_crtc->config.dpll.p2 = clock.p2;
7132 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007133
Paulo Zanoni5dc52982012-10-05 12:05:56 -03007134 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
Daniel Vetter8b470472013-03-28 10:41:59 +01007135 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007136 fp = i9xx_dpll_compute_fp(&intel_crtc->config.dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007137 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007138 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007139
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007140 dpll = ironlake_compute_dpll(intel_crtc,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007141 &fp, &reduced_clock,
7142 has_reduced_clock ? &fp2 : NULL);
7143
Daniel Vetter959e16d2013-06-05 13:34:21 +02007144 intel_crtc->config.dpll_hw_state.dpll = dpll;
Daniel Vetter66e985c2013-06-05 13:34:20 +02007145 intel_crtc->config.dpll_hw_state.fp0 = fp;
7146 if (has_reduced_clock)
7147 intel_crtc->config.dpll_hw_state.fp1 = fp2;
7148 else
7149 intel_crtc->config.dpll_hw_state.fp1 = fp;
7150
Daniel Vetterb89a1d32013-06-05 13:34:24 +02007151 pll = intel_get_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01007152 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03007153 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
Daniel Vetter29407aa2014-04-24 23:55:08 +02007154 pipe_name(intel_crtc->pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07007155 return -EINVAL;
7156 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01007157 } else
Daniel Vettere72f9fb2013-06-05 13:34:06 +02007158 intel_put_shared_dpll(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08007159
Jani Nikulad330a952014-01-21 11:24:25 +02007160 if (is_lvds && has_reduced_clock && i915.powersave)
Daniel Vetterbcd644e2013-06-05 13:34:22 +02007161 intel_crtc->lowfreq_avail = true;
7162 else
7163 intel_crtc->lowfreq_avail = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02007164
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007165 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007166}
7167
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007168static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
7169 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02007170{
7171 struct drm_device *dev = crtc->base.dev;
7172 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007173 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02007174
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007175 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
7176 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
7177 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
7178 & ~TU_SIZE_MASK;
7179 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
7180 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
7181 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7182}
7183
7184static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
7185 enum transcoder transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007186 struct intel_link_m_n *m_n,
7187 struct intel_link_m_n *m2_n2)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007188{
7189 struct drm_device *dev = crtc->base.dev;
7190 struct drm_i915_private *dev_priv = dev->dev_private;
7191 enum pipe pipe = crtc->pipe;
7192
7193 if (INTEL_INFO(dev)->gen >= 5) {
7194 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
7195 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
7196 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
7197 & ~TU_SIZE_MASK;
7198 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
7199 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
7200 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007201 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
7202 * gen < 8) and if DRRS is supported (to make sure the
7203 * registers are not unnecessarily read).
7204 */
7205 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
7206 crtc->config.has_drrs) {
7207 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
7208 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
7209 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
7210 & ~TU_SIZE_MASK;
7211 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
7212 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
7213 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7214 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007215 } else {
7216 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
7217 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
7218 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
7219 & ~TU_SIZE_MASK;
7220 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
7221 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
7222 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7223 }
7224}
7225
7226void intel_dp_get_m_n(struct intel_crtc *crtc,
7227 struct intel_crtc_config *pipe_config)
7228{
7229 if (crtc->config.has_pch_encoder)
7230 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
7231 else
7232 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007233 &pipe_config->dp_m_n,
7234 &pipe_config->dp_m2_n2);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007235}
7236
Daniel Vetter72419202013-04-04 13:28:53 +02007237static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
7238 struct intel_crtc_config *pipe_config)
7239{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007240 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007241 &pipe_config->fdi_m_n, NULL);
Daniel Vetter72419202013-04-04 13:28:53 +02007242}
7243
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007244static void ironlake_get_pfit_config(struct intel_crtc *crtc,
7245 struct intel_crtc_config *pipe_config)
7246{
7247 struct drm_device *dev = crtc->base.dev;
7248 struct drm_i915_private *dev_priv = dev->dev_private;
7249 uint32_t tmp;
7250
7251 tmp = I915_READ(PF_CTL(crtc->pipe));
7252
7253 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01007254 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007255 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
7256 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02007257
7258 /* We currently do not free assignements of panel fitters on
7259 * ivb/hsw (since we don't use the higher upscaling modes which
7260 * differentiates them) so just WARN about this case for now. */
7261 if (IS_GEN7(dev)) {
7262 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
7263 PF_PIPE_SEL_IVB(crtc->pipe));
7264 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007265 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007266}
7267
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007268static void ironlake_get_plane_config(struct intel_crtc *crtc,
7269 struct intel_plane_config *plane_config)
7270{
7271 struct drm_device *dev = crtc->base.dev;
7272 struct drm_i915_private *dev_priv = dev->dev_private;
7273 u32 val, base, offset;
7274 int pipe = crtc->pipe, plane = crtc->plane;
7275 int fourcc, pixel_format;
7276 int aligned_height;
7277
Dave Airlie66e514c2014-04-03 07:51:54 +10007278 crtc->base.primary->fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
7279 if (!crtc->base.primary->fb) {
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007280 DRM_DEBUG_KMS("failed to alloc fb\n");
7281 return;
7282 }
7283
7284 val = I915_READ(DSPCNTR(plane));
7285
7286 if (INTEL_INFO(dev)->gen >= 4)
7287 if (val & DISPPLANE_TILED)
7288 plane_config->tiled = true;
7289
7290 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
7291 fourcc = intel_format_to_fourcc(pixel_format);
Dave Airlie66e514c2014-04-03 07:51:54 +10007292 crtc->base.primary->fb->pixel_format = fourcc;
7293 crtc->base.primary->fb->bits_per_pixel =
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007294 drm_format_plane_cpp(fourcc, 0) * 8;
7295
7296 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
7297 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
7298 offset = I915_READ(DSPOFFSET(plane));
7299 } else {
7300 if (plane_config->tiled)
7301 offset = I915_READ(DSPTILEOFF(plane));
7302 else
7303 offset = I915_READ(DSPLINOFF(plane));
7304 }
7305 plane_config->base = base;
7306
7307 val = I915_READ(PIPESRC(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10007308 crtc->base.primary->fb->width = ((val >> 16) & 0xfff) + 1;
7309 crtc->base.primary->fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007310
7311 val = I915_READ(DSPSTRIDE(pipe));
Rafael Barbalho026b96e2014-07-28 19:56:27 +01007312 crtc->base.primary->fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007313
Dave Airlie66e514c2014-04-03 07:51:54 +10007314 aligned_height = intel_align_height(dev, crtc->base.primary->fb->height,
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007315 plane_config->tiled);
7316
Fabian Frederick1267a262014-07-01 20:39:41 +02007317 plane_config->size = PAGE_ALIGN(crtc->base.primary->fb->pitches[0] *
7318 aligned_height);
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007319
7320 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 +10007321 pipe, plane, crtc->base.primary->fb->width,
7322 crtc->base.primary->fb->height,
7323 crtc->base.primary->fb->bits_per_pixel, base,
7324 crtc->base.primary->fb->pitches[0],
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007325 plane_config->size);
7326}
7327
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007328static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
7329 struct intel_crtc_config *pipe_config)
7330{
7331 struct drm_device *dev = crtc->base.dev;
7332 struct drm_i915_private *dev_priv = dev->dev_private;
7333 uint32_t tmp;
7334
Paulo Zanoni930e8c92014-07-04 13:38:34 -03007335 if (!intel_display_power_enabled(dev_priv,
7336 POWER_DOMAIN_PIPE(crtc->pipe)))
7337 return false;
7338
Daniel Vettere143a212013-07-04 12:01:15 +02007339 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007340 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02007341
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007342 tmp = I915_READ(PIPECONF(crtc->pipe));
7343 if (!(tmp & PIPECONF_ENABLE))
7344 return false;
7345
Ville Syrjälä42571ae2013-09-06 23:29:00 +03007346 switch (tmp & PIPECONF_BPC_MASK) {
7347 case PIPECONF_6BPC:
7348 pipe_config->pipe_bpp = 18;
7349 break;
7350 case PIPECONF_8BPC:
7351 pipe_config->pipe_bpp = 24;
7352 break;
7353 case PIPECONF_10BPC:
7354 pipe_config->pipe_bpp = 30;
7355 break;
7356 case PIPECONF_12BPC:
7357 pipe_config->pipe_bpp = 36;
7358 break;
7359 default:
7360 break;
7361 }
7362
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02007363 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
7364 pipe_config->limited_color_range = true;
7365
Daniel Vetterab9412b2013-05-03 11:49:46 +02007366 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02007367 struct intel_shared_dpll *pll;
7368
Daniel Vetter88adfff2013-03-28 10:42:01 +01007369 pipe_config->has_pch_encoder = true;
7370
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007371 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
7372 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7373 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02007374
7375 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007376
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007377 if (HAS_PCH_IBX(dev_priv->dev)) {
Daniel Vetterd94ab062013-07-04 12:01:16 +02007378 pipe_config->shared_dpll =
7379 (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007380 } else {
7381 tmp = I915_READ(PCH_DPLL_SEL);
7382 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
7383 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
7384 else
7385 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
7386 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02007387
7388 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
7389
7390 WARN_ON(!pll->get_hw_state(dev_priv, pll,
7391 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02007392
7393 tmp = pipe_config->dpll_hw_state.dpll;
7394 pipe_config->pixel_multiplier =
7395 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
7396 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03007397
7398 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007399 } else {
7400 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007401 }
7402
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007403 intel_get_pipe_timings(crtc, pipe_config);
7404
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007405 ironlake_get_pfit_config(crtc, pipe_config);
7406
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007407 return true;
7408}
7409
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007410static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
7411{
7412 struct drm_device *dev = dev_priv->dev;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007413 struct intel_crtc *crtc;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007414
Damien Lespiaud3fcc802014-05-13 23:32:22 +01007415 for_each_intel_crtc(dev, crtc)
Paulo Zanoni798183c2013-12-06 20:29:01 -02007416 WARN(crtc->active, "CRTC for pipe %c enabled\n",
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007417 pipe_name(crtc->pipe));
7418
7419 WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
Daniel Vetter8cc3e162014-06-25 22:01:46 +03007420 WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
7421 WARN(I915_READ(WRPLL_CTL1) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
7422 WARN(I915_READ(WRPLL_CTL2) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007423 WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
7424 WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
7425 "CPU PWM1 enabled\n");
Paulo Zanonic5107b82014-07-04 11:50:30 -03007426 if (IS_HASWELL(dev))
7427 WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
7428 "CPU PWM2 enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007429 WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
7430 "PCH PWM1 enabled\n");
7431 WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
7432 "Utility pin enabled\n");
7433 WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
7434
Paulo Zanoni9926ada2014-04-01 19:39:47 -03007435 /*
7436 * In theory we can still leave IRQs enabled, as long as only the HPD
7437 * interrupts remain enabled. We used to check for that, but since it's
7438 * gen-specific and since we only disable LCPLL after we fully disable
7439 * the interrupts, the check below should be enough.
7440 */
Jesse Barnes9df7575f2014-06-20 09:29:20 -07007441 WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007442}
7443
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007444static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
7445{
7446 struct drm_device *dev = dev_priv->dev;
7447
7448 if (IS_HASWELL(dev))
7449 return I915_READ(D_COMP_HSW);
7450 else
7451 return I915_READ(D_COMP_BDW);
7452}
7453
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007454static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
7455{
7456 struct drm_device *dev = dev_priv->dev;
7457
7458 if (IS_HASWELL(dev)) {
7459 mutex_lock(&dev_priv->rps.hw_lock);
7460 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
7461 val))
Paulo Zanonif475dad2014-07-04 11:59:57 -03007462 DRM_ERROR("Failed to write to D_COMP\n");
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007463 mutex_unlock(&dev_priv->rps.hw_lock);
7464 } else {
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007465 I915_WRITE(D_COMP_BDW, val);
7466 POSTING_READ(D_COMP_BDW);
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007467 }
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007468}
7469
7470/*
7471 * This function implements pieces of two sequences from BSpec:
7472 * - Sequence for display software to disable LCPLL
7473 * - Sequence for display software to allow package C8+
7474 * The steps implemented here are just the steps that actually touch the LCPLL
7475 * register. Callers should take care of disabling all the display engine
7476 * functions, doing the mode unset, fixing interrupts, etc.
7477 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03007478static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
7479 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007480{
7481 uint32_t val;
7482
7483 assert_can_disable_lcpll(dev_priv);
7484
7485 val = I915_READ(LCPLL_CTL);
7486
7487 if (switch_to_fclk) {
7488 val |= LCPLL_CD_SOURCE_FCLK;
7489 I915_WRITE(LCPLL_CTL, val);
7490
7491 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
7492 LCPLL_CD_SOURCE_FCLK_DONE, 1))
7493 DRM_ERROR("Switching to FCLK failed\n");
7494
7495 val = I915_READ(LCPLL_CTL);
7496 }
7497
7498 val |= LCPLL_PLL_DISABLE;
7499 I915_WRITE(LCPLL_CTL, val);
7500 POSTING_READ(LCPLL_CTL);
7501
7502 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
7503 DRM_ERROR("LCPLL still locked\n");
7504
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007505 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007506 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007507 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007508 ndelay(100);
7509
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007510 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
7511 1))
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007512 DRM_ERROR("D_COMP RCOMP still in progress\n");
7513
7514 if (allow_power_down) {
7515 val = I915_READ(LCPLL_CTL);
7516 val |= LCPLL_POWER_DOWN_ALLOW;
7517 I915_WRITE(LCPLL_CTL, val);
7518 POSTING_READ(LCPLL_CTL);
7519 }
7520}
7521
7522/*
7523 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
7524 * source.
7525 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03007526static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007527{
7528 uint32_t val;
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007529 unsigned long irqflags;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007530
7531 val = I915_READ(LCPLL_CTL);
7532
7533 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
7534 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
7535 return;
7536
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007537 /*
7538 * Make sure we're not on PC8 state before disabling PC8, otherwise
7539 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
7540 *
7541 * The other problem is that hsw_restore_lcpll() is called as part of
7542 * the runtime PM resume sequence, so we can't just call
7543 * gen6_gt_force_wake_get() because that function calls
7544 * intel_runtime_pm_get(), and we can't change the runtime PM refcount
7545 * while we are on the resume sequence. So to solve this problem we have
7546 * to call special forcewake code that doesn't touch runtime PM and
7547 * doesn't enable the forcewake delayed work.
7548 */
7549 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
7550 if (dev_priv->uncore.forcewake_count++ == 0)
7551 dev_priv->uncore.funcs.force_wake_get(dev_priv, FORCEWAKE_ALL);
7552 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
Paulo Zanoni215733f2013-08-19 13:18:07 -03007553
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007554 if (val & LCPLL_POWER_DOWN_ALLOW) {
7555 val &= ~LCPLL_POWER_DOWN_ALLOW;
7556 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02007557 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007558 }
7559
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007560 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007561 val |= D_COMP_COMP_FORCE;
7562 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007563 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007564
7565 val = I915_READ(LCPLL_CTL);
7566 val &= ~LCPLL_PLL_DISABLE;
7567 I915_WRITE(LCPLL_CTL, val);
7568
7569 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
7570 DRM_ERROR("LCPLL not locked yet\n");
7571
7572 if (val & LCPLL_CD_SOURCE_FCLK) {
7573 val = I915_READ(LCPLL_CTL);
7574 val &= ~LCPLL_CD_SOURCE_FCLK;
7575 I915_WRITE(LCPLL_CTL, val);
7576
7577 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
7578 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
7579 DRM_ERROR("Switching back to LCPLL failed\n");
7580 }
Paulo Zanoni215733f2013-08-19 13:18:07 -03007581
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007582 /* See the big comment above. */
7583 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
7584 if (--dev_priv->uncore.forcewake_count == 0)
7585 dev_priv->uncore.funcs.force_wake_put(dev_priv, FORCEWAKE_ALL);
7586 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007587}
7588
Paulo Zanoni765dab62014-03-07 20:08:18 -03007589/*
7590 * Package states C8 and deeper are really deep PC states that can only be
7591 * reached when all the devices on the system allow it, so even if the graphics
7592 * device allows PC8+, it doesn't mean the system will actually get to these
7593 * states. Our driver only allows PC8+ when going into runtime PM.
7594 *
7595 * The requirements for PC8+ are that all the outputs are disabled, the power
7596 * well is disabled and most interrupts are disabled, and these are also
7597 * requirements for runtime PM. When these conditions are met, we manually do
7598 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
7599 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
7600 * hang the machine.
7601 *
7602 * When we really reach PC8 or deeper states (not just when we allow it) we lose
7603 * the state of some registers, so when we come back from PC8+ we need to
7604 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
7605 * need to take care of the registers kept by RC6. Notice that this happens even
7606 * if we don't put the device in PCI D3 state (which is what currently happens
7607 * because of the runtime PM support).
7608 *
7609 * For more, read "Display Sequences for Package C8" on the hardware
7610 * documentation.
7611 */
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03007612void hsw_enable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03007613{
Paulo Zanonic67a4702013-08-19 13:18:09 -03007614 struct drm_device *dev = dev_priv->dev;
7615 uint32_t val;
7616
Paulo Zanonic67a4702013-08-19 13:18:09 -03007617 DRM_DEBUG_KMS("Enabling package C8+\n");
7618
Paulo Zanonic67a4702013-08-19 13:18:09 -03007619 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
7620 val = I915_READ(SOUTH_DSPCLK_GATE_D);
7621 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
7622 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7623 }
7624
7625 lpt_disable_clkout_dp(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007626 hsw_disable_lcpll(dev_priv, true, true);
7627}
7628
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03007629void hsw_disable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03007630{
7631 struct drm_device *dev = dev_priv->dev;
7632 uint32_t val;
7633
Paulo Zanonic67a4702013-08-19 13:18:09 -03007634 DRM_DEBUG_KMS("Disabling package C8+\n");
7635
7636 hsw_restore_lcpll(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007637 lpt_init_pch_refclk(dev);
7638
7639 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
7640 val = I915_READ(SOUTH_DSPCLK_GATE_D);
7641 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
7642 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7643 }
7644
7645 intel_prepare_ddi(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007646}
7647
Paulo Zanoni9a952a02014-03-07 20:12:34 -03007648static void snb_modeset_global_resources(struct drm_device *dev)
7649{
7650 modeset_update_crtc_power_domains(dev);
7651}
7652
Imre Deak4f074122013-10-16 17:25:51 +03007653static void haswell_modeset_global_resources(struct drm_device *dev)
7654{
Paulo Zanonida723562013-12-19 11:54:51 -02007655 modeset_update_crtc_power_domains(dev);
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -02007656}
7657
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007658static int haswell_crtc_mode_set(struct drm_crtc *crtc,
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007659 int x, int y,
7660 struct drm_framebuffer *fb)
7661{
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007662 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007663
Paulo Zanoni566b7342013-11-25 15:27:08 -02007664 if (!intel_ddi_pll_select(intel_crtc))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03007665 return -EINVAL;
Daniel Vetter716c2e52014-06-25 22:02:02 +03007666
Daniel Vetter644cef32014-04-24 23:55:07 +02007667 intel_crtc->lowfreq_avail = false;
7668
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007669 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007670}
7671
Damien Lespiau7d2c8172014-07-29 18:06:18 +01007672static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
7673 enum port port,
7674 struct intel_crtc_config *pipe_config)
7675{
7676 pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
7677
7678 switch (pipe_config->ddi_pll_sel) {
7679 case PORT_CLK_SEL_WRPLL1:
7680 pipe_config->shared_dpll = DPLL_ID_WRPLL1;
7681 break;
7682 case PORT_CLK_SEL_WRPLL2:
7683 pipe_config->shared_dpll = DPLL_ID_WRPLL2;
7684 break;
7685 }
7686}
7687
Daniel Vetter26804af2014-06-25 22:01:55 +03007688static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
7689 struct intel_crtc_config *pipe_config)
7690{
7691 struct drm_device *dev = crtc->base.dev;
7692 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterd452c5b2014-07-04 11:27:39 -03007693 struct intel_shared_dpll *pll;
Daniel Vetter26804af2014-06-25 22:01:55 +03007694 enum port port;
7695 uint32_t tmp;
7696
7697 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
7698
7699 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
7700
Damien Lespiau7d2c8172014-07-29 18:06:18 +01007701 haswell_get_ddi_pll(dev_priv, port, pipe_config);
Daniel Vetter9cd86932014-06-25 22:01:57 +03007702
Daniel Vetterd452c5b2014-07-04 11:27:39 -03007703 if (pipe_config->shared_dpll >= 0) {
7704 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
7705
7706 WARN_ON(!pll->get_hw_state(dev_priv, pll,
7707 &pipe_config->dpll_hw_state));
7708 }
7709
Daniel Vetter26804af2014-06-25 22:01:55 +03007710 /*
7711 * Haswell has only FDI/PCH transcoder A. It is which is connected to
7712 * DDI E. So just check whether this pipe is wired to DDI E and whether
7713 * the PCH transcoder is on.
7714 */
7715 if ((port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
7716 pipe_config->has_pch_encoder = true;
7717
7718 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
7719 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7720 FDI_DP_PORT_WIDTH_SHIFT) + 1;
7721
7722 ironlake_get_fdi_m_n_config(crtc, pipe_config);
7723 }
7724}
7725
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007726static bool haswell_get_pipe_config(struct intel_crtc *crtc,
7727 struct intel_crtc_config *pipe_config)
7728{
7729 struct drm_device *dev = crtc->base.dev;
7730 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007731 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007732 uint32_t tmp;
7733
Imre Deakb5482bd2014-03-05 16:20:55 +02007734 if (!intel_display_power_enabled(dev_priv,
7735 POWER_DOMAIN_PIPE(crtc->pipe)))
7736 return false;
7737
Daniel Vettere143a212013-07-04 12:01:15 +02007738 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007739 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
7740
Daniel Vettereccb1402013-05-22 00:50:22 +02007741 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
7742 if (tmp & TRANS_DDI_FUNC_ENABLE) {
7743 enum pipe trans_edp_pipe;
7744 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
7745 default:
7746 WARN(1, "unknown pipe linked to edp transcoder\n");
7747 case TRANS_DDI_EDP_INPUT_A_ONOFF:
7748 case TRANS_DDI_EDP_INPUT_A_ON:
7749 trans_edp_pipe = PIPE_A;
7750 break;
7751 case TRANS_DDI_EDP_INPUT_B_ONOFF:
7752 trans_edp_pipe = PIPE_B;
7753 break;
7754 case TRANS_DDI_EDP_INPUT_C_ONOFF:
7755 trans_edp_pipe = PIPE_C;
7756 break;
7757 }
7758
7759 if (trans_edp_pipe == crtc->pipe)
7760 pipe_config->cpu_transcoder = TRANSCODER_EDP;
7761 }
7762
Imre Deakda7e29b2014-02-18 00:02:02 +02007763 if (!intel_display_power_enabled(dev_priv,
Daniel Vettereccb1402013-05-22 00:50:22 +02007764 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -03007765 return false;
7766
Daniel Vettereccb1402013-05-22 00:50:22 +02007767 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007768 if (!(tmp & PIPECONF_ENABLE))
7769 return false;
7770
Daniel Vetter26804af2014-06-25 22:01:55 +03007771 haswell_get_ddi_port_state(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007772
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007773 intel_get_pipe_timings(crtc, pipe_config);
7774
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007775 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
Imre Deakda7e29b2014-02-18 00:02:02 +02007776 if (intel_display_power_enabled(dev_priv, pfit_domain))
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007777 ironlake_get_pfit_config(crtc, pipe_config);
Daniel Vetter88adfff2013-03-28 10:42:01 +01007778
Jesse Barnese59150d2014-01-07 13:30:45 -08007779 if (IS_HASWELL(dev))
7780 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
7781 (I915_READ(IPS_CTL) & IPS_ENABLE);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03007782
Daniel Vetter6c49f242013-06-06 12:45:25 +02007783 pipe_config->pixel_multiplier = 1;
7784
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007785 return true;
7786}
7787
Jani Nikula1a915102013-10-16 12:34:48 +03007788static struct {
7789 int clock;
7790 u32 config;
7791} hdmi_audio_clock[] = {
7792 { DIV_ROUND_UP(25200 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_25175 },
7793 { 25200, AUD_CONFIG_PIXEL_CLOCK_HDMI_25200 }, /* default per bspec */
7794 { 27000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27000 },
7795 { 27000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27027 },
7796 { 54000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54000 },
7797 { 54000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54054 },
7798 { DIV_ROUND_UP(74250 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_74176 },
7799 { 74250, AUD_CONFIG_PIXEL_CLOCK_HDMI_74250 },
7800 { DIV_ROUND_UP(148500 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_148352 },
7801 { 148500, AUD_CONFIG_PIXEL_CLOCK_HDMI_148500 },
7802};
7803
7804/* get AUD_CONFIG_PIXEL_CLOCK_HDMI_* value for mode */
7805static u32 audio_config_hdmi_pixel_clock(struct drm_display_mode *mode)
7806{
7807 int i;
7808
7809 for (i = 0; i < ARRAY_SIZE(hdmi_audio_clock); i++) {
7810 if (mode->clock == hdmi_audio_clock[i].clock)
7811 break;
7812 }
7813
7814 if (i == ARRAY_SIZE(hdmi_audio_clock)) {
7815 DRM_DEBUG_KMS("HDMI audio pixel clock setting for %d not found, falling back to defaults\n", mode->clock);
7816 i = 1;
7817 }
7818
7819 DRM_DEBUG_KMS("Configuring HDMI audio for pixel clock %d (0x%08x)\n",
7820 hdmi_audio_clock[i].clock,
7821 hdmi_audio_clock[i].config);
7822
7823 return hdmi_audio_clock[i].config;
7824}
7825
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007826static bool intel_eld_uptodate(struct drm_connector *connector,
7827 int reg_eldv, uint32_t bits_eldv,
7828 int reg_elda, uint32_t bits_elda,
7829 int reg_edid)
7830{
7831 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7832 uint8_t *eld = connector->eld;
7833 uint32_t i;
7834
7835 i = I915_READ(reg_eldv);
7836 i &= bits_eldv;
7837
7838 if (!eld[0])
7839 return !i;
7840
7841 if (!i)
7842 return false;
7843
7844 i = I915_READ(reg_elda);
7845 i &= ~bits_elda;
7846 I915_WRITE(reg_elda, i);
7847
7848 for (i = 0; i < eld[2]; i++)
7849 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
7850 return false;
7851
7852 return true;
7853}
7854
Wu Fengguange0dac652011-09-05 14:25:34 +08007855static void g4x_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007856 struct drm_crtc *crtc,
7857 struct drm_display_mode *mode)
Wu Fengguange0dac652011-09-05 14:25:34 +08007858{
7859 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7860 uint8_t *eld = connector->eld;
7861 uint32_t eldv;
7862 uint32_t len;
7863 uint32_t i;
7864
7865 i = I915_READ(G4X_AUD_VID_DID);
7866
7867 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
7868 eldv = G4X_ELDV_DEVCL_DEVBLC;
7869 else
7870 eldv = G4X_ELDV_DEVCTG;
7871
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007872 if (intel_eld_uptodate(connector,
7873 G4X_AUD_CNTL_ST, eldv,
7874 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
7875 G4X_HDMIW_HDMIEDID))
7876 return;
7877
Wu Fengguange0dac652011-09-05 14:25:34 +08007878 i = I915_READ(G4X_AUD_CNTL_ST);
7879 i &= ~(eldv | G4X_ELD_ADDR);
7880 len = (i >> 9) & 0x1f; /* ELD buffer size */
7881 I915_WRITE(G4X_AUD_CNTL_ST, i);
7882
7883 if (!eld[0])
7884 return;
7885
7886 len = min_t(uint8_t, eld[2], len);
7887 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7888 for (i = 0; i < len; i++)
7889 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
7890
7891 i = I915_READ(G4X_AUD_CNTL_ST);
7892 i |= eldv;
7893 I915_WRITE(G4X_AUD_CNTL_ST, i);
7894}
7895
Wang Xingchao83358c852012-08-16 22:43:37 +08007896static void haswell_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007897 struct drm_crtc *crtc,
7898 struct drm_display_mode *mode)
Wang Xingchao83358c852012-08-16 22:43:37 +08007899{
7900 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7901 uint8_t *eld = connector->eld;
Wang Xingchao83358c852012-08-16 22:43:37 +08007902 uint32_t eldv;
7903 uint32_t i;
7904 int len;
7905 int pipe = to_intel_crtc(crtc)->pipe;
7906 int tmp;
7907
7908 int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe);
7909 int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe);
7910 int aud_config = HSW_AUD_CFG(pipe);
7911 int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD;
7912
Wang Xingchao83358c852012-08-16 22:43:37 +08007913 /* Audio output enable */
7914 DRM_DEBUG_DRIVER("HDMI audio: enable codec\n");
7915 tmp = I915_READ(aud_cntrl_st2);
7916 tmp |= (AUDIO_OUTPUT_ENABLE_A << (pipe * 4));
7917 I915_WRITE(aud_cntrl_st2, tmp);
Daniel Vetterc7905792014-04-16 16:56:09 +02007918 POSTING_READ(aud_cntrl_st2);
Wang Xingchao83358c852012-08-16 22:43:37 +08007919
Daniel Vetterc7905792014-04-16 16:56:09 +02007920 assert_pipe_disabled(dev_priv, to_intel_crtc(crtc)->pipe);
Wang Xingchao83358c852012-08-16 22:43:37 +08007921
7922 /* Set ELD valid state */
7923 tmp = I915_READ(aud_cntrl_st2);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007924 DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007925 tmp |= (AUDIO_ELD_VALID_A << (pipe * 4));
7926 I915_WRITE(aud_cntrl_st2, tmp);
7927 tmp = I915_READ(aud_cntrl_st2);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007928 DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007929
7930 /* Enable HDMI mode */
7931 tmp = I915_READ(aud_config);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007932 DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007933 /* clear N_programing_enable and N_value_index */
7934 tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | AUD_CONFIG_N_PROG_ENABLE);
7935 I915_WRITE(aud_config, tmp);
7936
7937 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
7938
7939 eldv = AUDIO_ELD_VALID_A << (pipe * 4);
7940
7941 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
7942 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
7943 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
7944 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
Jani Nikula1a915102013-10-16 12:34:48 +03007945 } else {
7946 I915_WRITE(aud_config, audio_config_hdmi_pixel_clock(mode));
7947 }
Wang Xingchao83358c852012-08-16 22:43:37 +08007948
7949 if (intel_eld_uptodate(connector,
7950 aud_cntrl_st2, eldv,
7951 aud_cntl_st, IBX_ELD_ADDRESS,
7952 hdmiw_hdmiedid))
7953 return;
7954
7955 i = I915_READ(aud_cntrl_st2);
7956 i &= ~eldv;
7957 I915_WRITE(aud_cntrl_st2, i);
7958
7959 if (!eld[0])
7960 return;
7961
7962 i = I915_READ(aud_cntl_st);
7963 i &= ~IBX_ELD_ADDRESS;
7964 I915_WRITE(aud_cntl_st, i);
7965 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
7966 DRM_DEBUG_DRIVER("port num:%d\n", i);
7967
7968 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
7969 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7970 for (i = 0; i < len; i++)
7971 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
7972
7973 i = I915_READ(aud_cntrl_st2);
7974 i |= eldv;
7975 I915_WRITE(aud_cntrl_st2, i);
7976
7977}
7978
Wu Fengguange0dac652011-09-05 14:25:34 +08007979static void ironlake_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007980 struct drm_crtc *crtc,
7981 struct drm_display_mode *mode)
Wu Fengguange0dac652011-09-05 14:25:34 +08007982{
7983 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7984 uint8_t *eld = connector->eld;
7985 uint32_t eldv;
7986 uint32_t i;
7987 int len;
7988 int hdmiw_hdmiedid;
Wu Fengguangb6daa022012-01-06 14:41:31 -06007989 int aud_config;
Wu Fengguange0dac652011-09-05 14:25:34 +08007990 int aud_cntl_st;
7991 int aud_cntrl_st2;
Wang Xingchao9b138a82012-08-09 16:52:18 +08007992 int pipe = to_intel_crtc(crtc)->pipe;
Wu Fengguange0dac652011-09-05 14:25:34 +08007993
Wu Fengguangb3f33cb2011-12-09 20:42:17 +08007994 if (HAS_PCH_IBX(connector->dev)) {
Wang Xingchao9b138a82012-08-09 16:52:18 +08007995 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe);
7996 aud_config = IBX_AUD_CFG(pipe);
7997 aud_cntl_st = IBX_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007998 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
Mengdong Lin9ca2fe72013-11-01 00:17:03 -04007999 } else if (IS_VALLEYVIEW(connector->dev)) {
8000 hdmiw_hdmiedid = VLV_HDMIW_HDMIEDID(pipe);
8001 aud_config = VLV_AUD_CFG(pipe);
8002 aud_cntl_st = VLV_AUD_CNTL_ST(pipe);
8003 aud_cntrl_st2 = VLV_AUD_CNTL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08008004 } else {
Wang Xingchao9b138a82012-08-09 16:52:18 +08008005 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe);
8006 aud_config = CPT_AUD_CFG(pipe);
8007 aud_cntl_st = CPT_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08008008 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08008009 }
8010
Wang Xingchao9b138a82012-08-09 16:52:18 +08008011 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
Wu Fengguange0dac652011-09-05 14:25:34 +08008012
Mengdong Lin9ca2fe72013-11-01 00:17:03 -04008013 if (IS_VALLEYVIEW(connector->dev)) {
8014 struct intel_encoder *intel_encoder;
8015 struct intel_digital_port *intel_dig_port;
8016
8017 intel_encoder = intel_attached_encoder(connector);
8018 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
8019 i = intel_dig_port->port;
8020 } else {
8021 i = I915_READ(aud_cntl_st);
8022 i = (i >> 29) & DIP_PORT_SEL_MASK;
8023 /* DIP_Port_Select, 0x1 = PortB */
8024 }
8025
Wu Fengguange0dac652011-09-05 14:25:34 +08008026 if (!i) {
8027 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
8028 /* operate blindly on all ports */
Wu Fengguang1202b4c62011-12-09 20:42:18 +08008029 eldv = IBX_ELD_VALIDB;
8030 eldv |= IBX_ELD_VALIDB << 4;
8031 eldv |= IBX_ELD_VALIDB << 8;
Wu Fengguange0dac652011-09-05 14:25:34 +08008032 } else {
Ville Syrjälä2582a852013-04-17 17:48:47 +03008033 DRM_DEBUG_DRIVER("ELD on port %c\n", port_name(i));
Wu Fengguang1202b4c62011-12-09 20:42:18 +08008034 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
Wu Fengguange0dac652011-09-05 14:25:34 +08008035 }
8036
Wu Fengguang3a9627f2011-12-09 20:42:19 +08008037 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
8038 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
8039 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
Wu Fengguangb6daa022012-01-06 14:41:31 -06008040 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
Jani Nikula1a915102013-10-16 12:34:48 +03008041 } else {
8042 I915_WRITE(aud_config, audio_config_hdmi_pixel_clock(mode));
8043 }
Wu Fengguang3a9627f2011-12-09 20:42:19 +08008044
8045 if (intel_eld_uptodate(connector,
8046 aud_cntrl_st2, eldv,
8047 aud_cntl_st, IBX_ELD_ADDRESS,
8048 hdmiw_hdmiedid))
8049 return;
8050
Wu Fengguange0dac652011-09-05 14:25:34 +08008051 i = I915_READ(aud_cntrl_st2);
8052 i &= ~eldv;
8053 I915_WRITE(aud_cntrl_st2, i);
8054
8055 if (!eld[0])
8056 return;
8057
Wu Fengguange0dac652011-09-05 14:25:34 +08008058 i = I915_READ(aud_cntl_st);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08008059 i &= ~IBX_ELD_ADDRESS;
Wu Fengguange0dac652011-09-05 14:25:34 +08008060 I915_WRITE(aud_cntl_st, i);
8061
8062 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
8063 DRM_DEBUG_DRIVER("ELD size %d\n", len);
8064 for (i = 0; i < len; i++)
8065 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
8066
8067 i = I915_READ(aud_cntrl_st2);
8068 i |= eldv;
8069 I915_WRITE(aud_cntrl_st2, i);
8070}
8071
8072void intel_write_eld(struct drm_encoder *encoder,
8073 struct drm_display_mode *mode)
8074{
8075 struct drm_crtc *crtc = encoder->crtc;
8076 struct drm_connector *connector;
8077 struct drm_device *dev = encoder->dev;
8078 struct drm_i915_private *dev_priv = dev->dev_private;
8079
8080 connector = drm_select_eld(encoder, mode);
8081 if (!connector)
8082 return;
8083
8084 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
8085 connector->base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03008086 connector->name,
Wu Fengguange0dac652011-09-05 14:25:34 +08008087 connector->encoder->base.id,
Jani Nikula8e329a02014-06-03 14:56:21 +03008088 connector->encoder->name);
Wu Fengguange0dac652011-09-05 14:25:34 +08008089
8090 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
8091
8092 if (dev_priv->display.write_eld)
Jani Nikula34427052013-10-16 12:34:47 +03008093 dev_priv->display.write_eld(connector, crtc, mode);
Wu Fengguange0dac652011-09-05 14:25:34 +08008094}
8095
Chris Wilson560b85b2010-08-07 11:01:38 +01008096static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
8097{
8098 struct drm_device *dev = crtc->dev;
8099 struct drm_i915_private *dev_priv = dev->dev_private;
8100 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälädc41c152014-08-13 11:57:05 +03008101 uint32_t cntl = 0, size = 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01008102
Ville Syrjälädc41c152014-08-13 11:57:05 +03008103 if (base) {
8104 unsigned int width = intel_crtc->cursor_width;
8105 unsigned int height = intel_crtc->cursor_height;
8106 unsigned int stride = roundup_pow_of_two(width) * 4;
8107
8108 switch (stride) {
8109 default:
8110 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
8111 width, stride);
8112 stride = 256;
8113 /* fallthrough */
8114 case 256:
8115 case 512:
8116 case 1024:
8117 case 2048:
8118 break;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008119 }
8120
Ville Syrjälädc41c152014-08-13 11:57:05 +03008121 cntl |= CURSOR_ENABLE |
8122 CURSOR_GAMMA_ENABLE |
8123 CURSOR_FORMAT_ARGB |
8124 CURSOR_STRIDE(stride);
8125
8126 size = (height << 12) | width;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008127 }
Chris Wilson560b85b2010-08-07 11:01:38 +01008128
Ville Syrjälädc41c152014-08-13 11:57:05 +03008129 if (intel_crtc->cursor_cntl != 0 &&
8130 (intel_crtc->cursor_base != base ||
8131 intel_crtc->cursor_size != size ||
8132 intel_crtc->cursor_cntl != cntl)) {
8133 /* On these chipsets we can only modify the base/size/stride
8134 * whilst the cursor is disabled.
8135 */
8136 I915_WRITE(_CURACNTR, 0);
8137 POSTING_READ(_CURACNTR);
8138 intel_crtc->cursor_cntl = 0;
8139 }
8140
8141 if (intel_crtc->cursor_base != base)
8142 I915_WRITE(_CURABASE, base);
8143
8144 if (intel_crtc->cursor_size != size) {
8145 I915_WRITE(CURSIZE, size);
8146 intel_crtc->cursor_size = size;
8147 }
8148
Chris Wilson4b0e3332014-05-30 16:35:26 +03008149 if (intel_crtc->cursor_cntl != cntl) {
8150 I915_WRITE(_CURACNTR, cntl);
8151 POSTING_READ(_CURACNTR);
8152 intel_crtc->cursor_cntl = cntl;
8153 }
Chris Wilson560b85b2010-08-07 11:01:38 +01008154}
8155
8156static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
8157{
8158 struct drm_device *dev = crtc->dev;
8159 struct drm_i915_private *dev_priv = dev->dev_private;
8160 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8161 int pipe = intel_crtc->pipe;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008162 uint32_t cntl;
Chris Wilson560b85b2010-08-07 11:01:38 +01008163
Chris Wilson4b0e3332014-05-30 16:35:26 +03008164 cntl = 0;
8165 if (base) {
8166 cntl = MCURSOR_GAMMA_ENABLE;
8167 switch (intel_crtc->cursor_width) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308168 case 64:
8169 cntl |= CURSOR_MODE_64_ARGB_AX;
8170 break;
8171 case 128:
8172 cntl |= CURSOR_MODE_128_ARGB_AX;
8173 break;
8174 case 256:
8175 cntl |= CURSOR_MODE_256_ARGB_AX;
8176 break;
8177 default:
8178 WARN_ON(1);
8179 return;
Chris Wilson560b85b2010-08-07 11:01:38 +01008180 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03008181 cntl |= pipe << 28; /* Connect to correct pipe */
Chris Wilson560b85b2010-08-07 11:01:38 +01008182 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03008183 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
8184 cntl |= CURSOR_PIPE_CSC_ENABLE;
8185
8186 if (intel_crtc->cursor_cntl != cntl) {
8187 I915_WRITE(CURCNTR(pipe), cntl);
8188 POSTING_READ(CURCNTR(pipe));
8189 intel_crtc->cursor_cntl = cntl;
8190 }
8191
Jesse Barnes65a21cd2011-10-12 11:10:21 -07008192 /* and commit changes on next vblank */
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008193 I915_WRITE(CURBASE(pipe), base);
8194 POSTING_READ(CURBASE(pipe));
Jesse Barnes65a21cd2011-10-12 11:10:21 -07008195}
8196
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008197/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01008198static void intel_crtc_update_cursor(struct drm_crtc *crtc,
8199 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008200{
8201 struct drm_device *dev = crtc->dev;
8202 struct drm_i915_private *dev_priv = dev->dev_private;
8203 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8204 int pipe = intel_crtc->pipe;
Matt Roper3d7d6512014-06-10 08:28:13 -07008205 int x = crtc->cursor_x;
8206 int y = crtc->cursor_y;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008207 u32 base = 0, pos = 0;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008208
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008209 if (on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008210 base = intel_crtc->cursor_addr;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008211
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008212 if (x >= intel_crtc->config.pipe_src_w)
8213 base = 0;
8214
8215 if (y >= intel_crtc->config.pipe_src_h)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008216 base = 0;
8217
8218 if (x < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03008219 if (x + intel_crtc->cursor_width <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008220 base = 0;
8221
8222 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
8223 x = -x;
8224 }
8225 pos |= x << CURSOR_X_SHIFT;
8226
8227 if (y < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03008228 if (y + intel_crtc->cursor_height <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008229 base = 0;
8230
8231 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
8232 y = -y;
8233 }
8234 pos |= y << CURSOR_Y_SHIFT;
8235
Chris Wilson4b0e3332014-05-30 16:35:26 +03008236 if (base == 0 && intel_crtc->cursor_base == 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008237 return;
8238
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008239 I915_WRITE(CURPOS(pipe), pos);
8240
Ville Syrjälä8ac54662014-08-12 19:39:54 +03008241 if (IS_845G(dev) || IS_I865G(dev))
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008242 i845_update_cursor(crtc, base);
8243 else
8244 i9xx_update_cursor(crtc, base);
Chris Wilson4b0e3332014-05-30 16:35:26 +03008245 intel_crtc->cursor_base = base;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008246}
8247
Ville Syrjälädc41c152014-08-13 11:57:05 +03008248static bool cursor_size_ok(struct drm_device *dev,
8249 uint32_t width, uint32_t height)
8250{
8251 if (width == 0 || height == 0)
8252 return false;
8253
8254 /*
8255 * 845g/865g are special in that they are only limited by
8256 * the width of their cursors, the height is arbitrary up to
8257 * the precision of the register. Everything else requires
8258 * square cursors, limited to a few power-of-two sizes.
8259 */
8260 if (IS_845G(dev) || IS_I865G(dev)) {
8261 if ((width & 63) != 0)
8262 return false;
8263
8264 if (width > (IS_845G(dev) ? 64 : 512))
8265 return false;
8266
8267 if (height > 1023)
8268 return false;
8269 } else {
8270 switch (width | height) {
8271 case 256:
8272 case 128:
8273 if (IS_GEN2(dev))
8274 return false;
8275 case 64:
8276 break;
8277 default:
8278 return false;
8279 }
8280 }
8281
8282 return true;
8283}
8284
Matt Ropere3287952014-06-10 08:28:12 -07008285/*
8286 * intel_crtc_cursor_set_obj - Set cursor to specified GEM object
8287 *
8288 * Note that the object's reference will be consumed if the update fails. If
8289 * the update succeeds, the reference of the old object (if any) will be
8290 * consumed.
8291 */
8292static int intel_crtc_cursor_set_obj(struct drm_crtc *crtc,
8293 struct drm_i915_gem_object *obj,
8294 uint32_t width, uint32_t height)
Jesse Barnes79e53942008-11-07 14:24:08 -08008295{
8296 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08008297 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettera071fa02014-06-18 23:28:09 +02008298 enum pipe pipe = intel_crtc->pipe;
Ville Syrjälädc41c152014-08-13 11:57:05 +03008299 unsigned old_width, stride;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008300 uint32_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008301 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08008302
Jesse Barnes79e53942008-11-07 14:24:08 -08008303 /* if we want to turn off the cursor ignore width and height */
Matt Ropere3287952014-06-10 08:28:12 -07008304 if (!obj) {
Zhao Yakui28c97732009-10-09 11:39:41 +08008305 DRM_DEBUG_KMS("cursor off\n");
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008306 addr = 0;
Pierre Willenbrock50044172009-02-23 10:12:15 +10008307 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008308 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08008309 }
8310
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308311 /* Check for which cursor types we support */
Ville Syrjälädc41c152014-08-13 11:57:05 +03008312 if (!cursor_size_ok(dev, width, height)) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308313 DRM_DEBUG("Cursor dimension not supported\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08008314 return -EINVAL;
8315 }
8316
Ville Syrjälädc41c152014-08-13 11:57:05 +03008317 stride = roundup_pow_of_two(width) * 4;
8318 if (obj->base.size < stride * height) {
Matt Ropere3287952014-06-10 08:28:12 -07008319 DRM_DEBUG_KMS("buffer is too small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10008320 ret = -ENOMEM;
8321 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008322 }
8323
Dave Airlie71acb5e2008-12-30 20:31:46 +10008324 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008325 mutex_lock(&dev->struct_mutex);
Damien Lespiau3d13ef22014-02-07 19:12:47 +00008326 if (!INTEL_INFO(dev)->cursor_needs_physical) {
Chris Wilson693db182013-03-05 14:52:39 +00008327 unsigned alignment;
8328
Chris Wilsond9e86c02010-11-10 16:40:20 +00008329 if (obj->tiling_mode) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008330 DRM_DEBUG_KMS("cursor cannot be tiled\n");
Chris Wilsond9e86c02010-11-10 16:40:20 +00008331 ret = -EINVAL;
8332 goto fail_locked;
8333 }
8334
Chris Wilson693db182013-03-05 14:52:39 +00008335 /* Note that the w/a also requires 2 PTE of padding following
8336 * the bo. We currently fill all unused PTE with the shadow
8337 * page and so we should always have valid PTE following the
8338 * cursor preventing the VT-d warning.
8339 */
8340 alignment = 0;
8341 if (need_vtd_wa(dev))
8342 alignment = 64*1024;
8343
8344 ret = i915_gem_object_pin_to_display_plane(obj, alignment, NULL);
Chris Wilsone7b526b2010-06-02 08:30:48 +01008345 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008346 DRM_DEBUG_KMS("failed to move cursor bo into the GTT\n");
Chris Wilson2da3b9b2011-04-14 09:41:17 +01008347 goto fail_locked;
Chris Wilsone7b526b2010-06-02 08:30:48 +01008348 }
8349
Chris Wilsond9e86c02010-11-10 16:40:20 +00008350 ret = i915_gem_object_put_fence(obj);
8351 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008352 DRM_DEBUG_KMS("failed to release fence for cursor");
Chris Wilsond9e86c02010-11-10 16:40:20 +00008353 goto fail_unpin;
8354 }
8355
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008356 addr = i915_gem_obj_ggtt_offset(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10008357 } else {
Chris Wilson6eeefaf2010-08-07 11:01:39 +01008358 int align = IS_I830(dev) ? 16 * 1024 : 256;
Chris Wilson00731152014-05-21 12:42:56 +01008359 ret = i915_gem_object_attach_phys(obj, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10008360 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008361 DRM_DEBUG_KMS("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008362 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10008363 }
Chris Wilson00731152014-05-21 12:42:56 +01008364 addr = obj->phys_handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008365 }
8366
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008367 finish:
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008368 if (intel_crtc->cursor_bo) {
Chris Wilson00731152014-05-21 12:42:56 +01008369 if (!INTEL_INFO(dev)->cursor_needs_physical)
Chris Wilsoncc98b412013-08-09 12:25:09 +01008370 i915_gem_object_unpin_from_display_plane(intel_crtc->cursor_bo);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008371 }
Jesse Barnes80824002009-09-10 15:28:06 -07008372
Daniel Vettera071fa02014-06-18 23:28:09 +02008373 i915_gem_track_fb(intel_crtc->cursor_bo, obj,
8374 INTEL_FRONTBUFFER_CURSOR(pipe));
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008375 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008376
Chris Wilson64f962e2014-03-26 12:38:15 +00008377 old_width = intel_crtc->cursor_width;
8378
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008379 intel_crtc->cursor_addr = addr;
Chris Wilson05394f32010-11-08 19:18:58 +00008380 intel_crtc->cursor_bo = obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008381 intel_crtc->cursor_width = width;
8382 intel_crtc->cursor_height = height;
8383
Chris Wilson64f962e2014-03-26 12:38:15 +00008384 if (intel_crtc->active) {
8385 if (old_width != width)
8386 intel_update_watermarks(crtc);
Ville Syrjäläf2f5f772013-09-17 18:33:44 +03008387 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
Chris Wilson64f962e2014-03-26 12:38:15 +00008388 }
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008389
Daniel Vetterf99d7062014-06-19 16:01:59 +02008390 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_CURSOR(pipe));
8391
Jesse Barnes79e53942008-11-07 14:24:08 -08008392 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01008393fail_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01008394 i915_gem_object_unpin_from_display_plane(obj);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008395fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10008396 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00008397fail:
Chris Wilson05394f32010-11-08 19:18:58 +00008398 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie34b8686e2009-01-15 14:03:07 +10008399 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08008400}
8401
Jesse Barnes79e53942008-11-07 14:24:08 -08008402static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01008403 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08008404{
James Simmons72034252010-08-03 01:33:19 +01008405 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08008406 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008407
James Simmons72034252010-08-03 01:33:19 +01008408 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008409 intel_crtc->lut_r[i] = red[i] >> 8;
8410 intel_crtc->lut_g[i] = green[i] >> 8;
8411 intel_crtc->lut_b[i] = blue[i] >> 8;
8412 }
8413
8414 intel_crtc_load_lut(crtc);
8415}
8416
Jesse Barnes79e53942008-11-07 14:24:08 -08008417/* VESA 640x480x72Hz mode to set on the pipe */
8418static struct drm_display_mode load_detect_mode = {
8419 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
8420 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
8421};
8422
Daniel Vettera8bb6812014-02-10 18:00:39 +01008423struct drm_framebuffer *
8424__intel_framebuffer_create(struct drm_device *dev,
8425 struct drm_mode_fb_cmd2 *mode_cmd,
8426 struct drm_i915_gem_object *obj)
Chris Wilsond2dff872011-04-19 08:36:26 +01008427{
8428 struct intel_framebuffer *intel_fb;
8429 int ret;
8430
8431 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
8432 if (!intel_fb) {
8433 drm_gem_object_unreference_unlocked(&obj->base);
8434 return ERR_PTR(-ENOMEM);
8435 }
8436
8437 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008438 if (ret)
8439 goto err;
Chris Wilsond2dff872011-04-19 08:36:26 +01008440
8441 return &intel_fb->base;
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008442err:
8443 drm_gem_object_unreference_unlocked(&obj->base);
8444 kfree(intel_fb);
8445
8446 return ERR_PTR(ret);
Chris Wilsond2dff872011-04-19 08:36:26 +01008447}
8448
Daniel Vetterb5ea6422014-03-02 21:18:00 +01008449static struct drm_framebuffer *
Daniel Vettera8bb6812014-02-10 18:00:39 +01008450intel_framebuffer_create(struct drm_device *dev,
8451 struct drm_mode_fb_cmd2 *mode_cmd,
8452 struct drm_i915_gem_object *obj)
8453{
8454 struct drm_framebuffer *fb;
8455 int ret;
8456
8457 ret = i915_mutex_lock_interruptible(dev);
8458 if (ret)
8459 return ERR_PTR(ret);
8460 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
8461 mutex_unlock(&dev->struct_mutex);
8462
8463 return fb;
8464}
8465
Chris Wilsond2dff872011-04-19 08:36:26 +01008466static u32
8467intel_framebuffer_pitch_for_width(int width, int bpp)
8468{
8469 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
8470 return ALIGN(pitch, 64);
8471}
8472
8473static u32
8474intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
8475{
8476 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
Fabian Frederick1267a262014-07-01 20:39:41 +02008477 return PAGE_ALIGN(pitch * mode->vdisplay);
Chris Wilsond2dff872011-04-19 08:36:26 +01008478}
8479
8480static struct drm_framebuffer *
8481intel_framebuffer_create_for_mode(struct drm_device *dev,
8482 struct drm_display_mode *mode,
8483 int depth, int bpp)
8484{
8485 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +00008486 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +01008487
8488 obj = i915_gem_alloc_object(dev,
8489 intel_framebuffer_size_for_mode(mode, bpp));
8490 if (obj == NULL)
8491 return ERR_PTR(-ENOMEM);
8492
8493 mode_cmd.width = mode->hdisplay;
8494 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008495 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
8496 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00008497 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01008498
8499 return intel_framebuffer_create(dev, &mode_cmd, obj);
8500}
8501
8502static struct drm_framebuffer *
8503mode_fits_in_fbdev(struct drm_device *dev,
8504 struct drm_display_mode *mode)
8505{
Daniel Vetter4520f532013-10-09 09:18:51 +02008506#ifdef CONFIG_DRM_I915_FBDEV
Chris Wilsond2dff872011-04-19 08:36:26 +01008507 struct drm_i915_private *dev_priv = dev->dev_private;
8508 struct drm_i915_gem_object *obj;
8509 struct drm_framebuffer *fb;
8510
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008511 if (!dev_priv->fbdev)
8512 return NULL;
8513
8514 if (!dev_priv->fbdev->fb)
Chris Wilsond2dff872011-04-19 08:36:26 +01008515 return NULL;
8516
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008517 obj = dev_priv->fbdev->fb->obj;
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008518 BUG_ON(!obj);
Chris Wilsond2dff872011-04-19 08:36:26 +01008519
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008520 fb = &dev_priv->fbdev->fb->base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008521 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
8522 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01008523 return NULL;
8524
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008525 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01008526 return NULL;
8527
8528 return fb;
Daniel Vetter4520f532013-10-09 09:18:51 +02008529#else
8530 return NULL;
8531#endif
Chris Wilsond2dff872011-04-19 08:36:26 +01008532}
8533
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008534bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01008535 struct drm_display_mode *mode,
Rob Clark51fd3712013-11-19 12:10:12 -05008536 struct intel_load_detect_pipe *old,
8537 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -08008538{
8539 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008540 struct intel_encoder *intel_encoder =
8541 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08008542 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01008543 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08008544 struct drm_crtc *crtc = NULL;
8545 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02008546 struct drm_framebuffer *fb;
Rob Clark51fd3712013-11-19 12:10:12 -05008547 struct drm_mode_config *config = &dev->mode_config;
8548 int ret, i = -1;
Jesse Barnes79e53942008-11-07 14:24:08 -08008549
Chris Wilsond2dff872011-04-19 08:36:26 +01008550 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03008551 connector->base.id, connector->name,
Jani Nikula8e329a02014-06-03 14:56:21 +03008552 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +01008553
Rob Clark51fd3712013-11-19 12:10:12 -05008554retry:
8555 ret = drm_modeset_lock(&config->connection_mutex, ctx);
8556 if (ret)
8557 goto fail_unlock;
Daniel Vetter6e9f7982014-05-29 23:54:47 +02008558
Jesse Barnes79e53942008-11-07 14:24:08 -08008559 /*
8560 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01008561 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008562 * - if the connector already has an assigned crtc, use it (but make
8563 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01008564 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008565 * - try to find the first unused crtc that can drive this connector,
8566 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08008567 */
8568
8569 /* See if we already have a CRTC for this connector */
8570 if (encoder->crtc) {
8571 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01008572
Rob Clark51fd3712013-11-19 12:10:12 -05008573 ret = drm_modeset_lock(&crtc->mutex, ctx);
8574 if (ret)
8575 goto fail_unlock;
Daniel Vetter7b240562012-12-12 00:35:33 +01008576
Daniel Vetter24218aa2012-08-12 19:27:11 +02008577 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008578 old->load_detect_temp = false;
8579
8580 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008581 if (connector->dpms != DRM_MODE_DPMS_ON)
8582 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01008583
Chris Wilson71731882011-04-19 23:10:58 +01008584 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08008585 }
8586
8587 /* Find an unused one (if possible) */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008588 for_each_crtc(dev, possible_crtc) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008589 i++;
8590 if (!(encoder->possible_crtcs & (1 << i)))
8591 continue;
Ville Syrjäläa4592492014-08-11 13:15:36 +03008592 if (possible_crtc->enabled)
8593 continue;
8594 /* This can occur when applying the pipe A quirk on resume. */
8595 if (to_intel_crtc(possible_crtc)->new_enabled)
8596 continue;
8597
8598 crtc = possible_crtc;
8599 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08008600 }
8601
8602 /*
8603 * If we didn't find an unused CRTC, don't use any.
8604 */
8605 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01008606 DRM_DEBUG_KMS("no pipe available for load-detect\n");
Rob Clark51fd3712013-11-19 12:10:12 -05008607 goto fail_unlock;
Jesse Barnes79e53942008-11-07 14:24:08 -08008608 }
8609
Rob Clark51fd3712013-11-19 12:10:12 -05008610 ret = drm_modeset_lock(&crtc->mutex, ctx);
8611 if (ret)
8612 goto fail_unlock;
Daniel Vetterfc303102012-07-09 10:40:58 +02008613 intel_encoder->new_crtc = to_intel_crtc(crtc);
8614 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008615
8616 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008617 intel_crtc->new_enabled = true;
8618 intel_crtc->new_config = &intel_crtc->config;
Daniel Vetter24218aa2012-08-12 19:27:11 +02008619 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008620 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01008621 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08008622
Chris Wilson64927112011-04-20 07:25:26 +01008623 if (!mode)
8624 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08008625
Chris Wilsond2dff872011-04-19 08:36:26 +01008626 /* We need a framebuffer large enough to accommodate all accesses
8627 * that the plane may generate whilst we perform load detection.
8628 * We can not rely on the fbcon either being present (we get called
8629 * during its initialisation to detect all boot displays, or it may
8630 * not even exist) or that it is large enough to satisfy the
8631 * requested mode.
8632 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02008633 fb = mode_fits_in_fbdev(dev, mode);
8634 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008635 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008636 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
8637 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01008638 } else
8639 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008640 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008641 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008642 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008643 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008644
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008645 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01008646 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01008647 if (old->release_fb)
8648 old->release_fb->funcs->destroy(old->release_fb);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008649 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008650 }
Chris Wilson71731882011-04-19 23:10:58 +01008651
Jesse Barnes79e53942008-11-07 14:24:08 -08008652 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008653 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +01008654 return true;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008655
8656 fail:
8657 intel_crtc->new_enabled = crtc->enabled;
8658 if (intel_crtc->new_enabled)
8659 intel_crtc->new_config = &intel_crtc->config;
8660 else
8661 intel_crtc->new_config = NULL;
Rob Clark51fd3712013-11-19 12:10:12 -05008662fail_unlock:
8663 if (ret == -EDEADLK) {
8664 drm_modeset_backoff(ctx);
8665 goto retry;
8666 }
8667
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008668 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08008669}
8670
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008671void intel_release_load_detect_pipe(struct drm_connector *connector,
Ville Syrjälä208bf9f2014-08-11 13:15:35 +03008672 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08008673{
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008674 struct intel_encoder *intel_encoder =
8675 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01008676 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +01008677 struct drm_crtc *crtc = encoder->crtc;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008678 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008679
Chris Wilsond2dff872011-04-19 08:36:26 +01008680 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03008681 connector->base.id, connector->name,
Jani Nikula8e329a02014-06-03 14:56:21 +03008682 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +01008683
Chris Wilson8261b192011-04-19 23:18:09 +01008684 if (old->load_detect_temp) {
Daniel Vetterfc303102012-07-09 10:40:58 +02008685 to_intel_connector(connector)->new_encoder = NULL;
8686 intel_encoder->new_crtc = NULL;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008687 intel_crtc->new_enabled = false;
8688 intel_crtc->new_config = NULL;
Daniel Vetterfc303102012-07-09 10:40:58 +02008689 intel_set_mode(crtc, NULL, 0, 0, NULL);
Chris Wilsond2dff872011-04-19 08:36:26 +01008690
Daniel Vetter36206362012-12-10 20:42:17 +01008691 if (old->release_fb) {
8692 drm_framebuffer_unregister_private(old->release_fb);
8693 drm_framebuffer_unreference(old->release_fb);
8694 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008695
Chris Wilson0622a532011-04-21 09:32:11 +01008696 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008697 }
8698
Eric Anholtc751ce42010-03-25 11:48:48 -07008699 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008700 if (old->dpms_mode != DRM_MODE_DPMS_ON)
8701 connector->funcs->dpms(connector, old->dpms_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08008702}
8703
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008704static int i9xx_pll_refclk(struct drm_device *dev,
8705 const struct intel_crtc_config *pipe_config)
8706{
8707 struct drm_i915_private *dev_priv = dev->dev_private;
8708 u32 dpll = pipe_config->dpll_hw_state.dpll;
8709
8710 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008711 return dev_priv->vbt.lvds_ssc_freq;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008712 else if (HAS_PCH_SPLIT(dev))
8713 return 120000;
8714 else if (!IS_GEN2(dev))
8715 return 96000;
8716 else
8717 return 48000;
8718}
8719
Jesse Barnes79e53942008-11-07 14:24:08 -08008720/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008721static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
8722 struct intel_crtc_config *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08008723{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008724 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08008725 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008726 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008727 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -08008728 u32 fp;
8729 intel_clock_t clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008730 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -08008731
8732 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +03008733 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008734 else
Ville Syrjälä293623f2013-09-13 16:18:46 +03008735 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -08008736
8737 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008738 if (IS_PINEVIEW(dev)) {
8739 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
8740 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08008741 } else {
8742 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
8743 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
8744 }
8745
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008746 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008747 if (IS_PINEVIEW(dev))
8748 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
8749 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08008750 else
8751 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08008752 DPLL_FPA01_P1_POST_DIV_SHIFT);
8753
8754 switch (dpll & DPLL_MODE_MASK) {
8755 case DPLLB_MODE_DAC_SERIAL:
8756 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
8757 5 : 10;
8758 break;
8759 case DPLLB_MODE_LVDS:
8760 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
8761 7 : 14;
8762 break;
8763 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08008764 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08008765 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008766 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008767 }
8768
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008769 if (IS_PINEVIEW(dev))
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008770 pineview_clock(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008771 else
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008772 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008773 } else {
Ville Syrjälä0fb58222014-01-10 14:06:46 +02008774 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008775 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
Jesse Barnes79e53942008-11-07 14:24:08 -08008776
8777 if (is_lvds) {
8778 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
8779 DPLL_FPA01_P1_POST_DIV_SHIFT);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008780
8781 if (lvds & LVDS_CLKB_POWER_UP)
8782 clock.p2 = 7;
8783 else
8784 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -08008785 } else {
8786 if (dpll & PLL_P1_DIVIDE_BY_TWO)
8787 clock.p1 = 2;
8788 else {
8789 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
8790 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
8791 }
8792 if (dpll & PLL_P2_DIVIDE_BY_4)
8793 clock.p2 = 4;
8794 else
8795 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -08008796 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008797
8798 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008799 }
8800
Ville Syrjälä18442d02013-09-13 16:00:08 +03008801 /*
8802 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +01008803 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +03008804 * encoder's get_config() function.
8805 */
8806 pipe_config->port_clock = clock.dot;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008807}
8808
Ville Syrjälä6878da02013-09-13 15:59:11 +03008809int intel_dotclock_calculate(int link_freq,
8810 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008811{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008812 /*
8813 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008814 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008815 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008816 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008817 *
8818 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008819 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -08008820 */
8821
Ville Syrjälä6878da02013-09-13 15:59:11 +03008822 if (!m_n->link_n)
8823 return 0;
8824
8825 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
8826}
8827
Ville Syrjälä18442d02013-09-13 16:00:08 +03008828static void ironlake_pch_clock_get(struct intel_crtc *crtc,
8829 struct intel_crtc_config *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +03008830{
8831 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä18442d02013-09-13 16:00:08 +03008832
8833 /* read out port_clock from the DPLL */
8834 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +03008835
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008836 /*
Ville Syrjälä18442d02013-09-13 16:00:08 +03008837 * This value does not include pixel_multiplier.
Damien Lespiau241bfc32013-09-25 16:45:37 +01008838 * We will check that port_clock and adjusted_mode.crtc_clock
Ville Syrjälä18442d02013-09-13 16:00:08 +03008839 * agree once we know their relationship in the encoder's
8840 * get_config() function.
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008841 */
Damien Lespiau241bfc32013-09-25 16:45:37 +01008842 pipe_config->adjusted_mode.crtc_clock =
Ville Syrjälä18442d02013-09-13 16:00:08 +03008843 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
8844 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -08008845}
8846
8847/** Returns the currently programmed mode of the given pipe. */
8848struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
8849 struct drm_crtc *crtc)
8850{
Jesse Barnes548f2452011-02-17 10:40:53 -08008851 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08008852 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02008853 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008854 struct drm_display_mode *mode;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008855 struct intel_crtc_config pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -02008856 int htot = I915_READ(HTOTAL(cpu_transcoder));
8857 int hsync = I915_READ(HSYNC(cpu_transcoder));
8858 int vtot = I915_READ(VTOTAL(cpu_transcoder));
8859 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +03008860 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08008861
8862 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
8863 if (!mode)
8864 return NULL;
8865
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008866 /*
8867 * Construct a pipe_config sufficient for getting the clock info
8868 * back out of crtc_clock_get.
8869 *
8870 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
8871 * to use a real value here instead.
8872 */
Ville Syrjälä293623f2013-09-13 16:18:46 +03008873 pipe_config.cpu_transcoder = (enum transcoder) pipe;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008874 pipe_config.pixel_multiplier = 1;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008875 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
8876 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
8877 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008878 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
8879
Ville Syrjälä773ae032013-09-23 17:48:20 +03008880 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -08008881 mode->hdisplay = (htot & 0xffff) + 1;
8882 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
8883 mode->hsync_start = (hsync & 0xffff) + 1;
8884 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
8885 mode->vdisplay = (vtot & 0xffff) + 1;
8886 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
8887 mode->vsync_start = (vsync & 0xffff) + 1;
8888 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
8889
8890 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08008891
8892 return mode;
8893}
8894
Daniel Vettercc365132014-06-18 13:59:13 +02008895static void intel_increase_pllclock(struct drm_device *dev,
8896 enum pipe pipe)
Jesse Barnes652c3932009-08-17 13:31:43 -07008897{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008898 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008899 int dpll_reg = DPLL(pipe);
8900 int dpll;
Jesse Barnes652c3932009-08-17 13:31:43 -07008901
Sonika Jindalbaff2962014-07-22 11:16:35 +05308902 if (!HAS_GMCH_DISPLAY(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07008903 return;
8904
8905 if (!dev_priv->lvds_downclock_avail)
8906 return;
8907
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008908 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07008909 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08008910 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008911
Sean Paul8ac5a6d2012-02-13 13:14:51 -05008912 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008913
8914 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
8915 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008916 intel_wait_for_vblank(dev, pipe);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008917
Jesse Barnes652c3932009-08-17 13:31:43 -07008918 dpll = I915_READ(dpll_reg);
8919 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08008920 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008921 }
Jesse Barnes652c3932009-08-17 13:31:43 -07008922}
8923
8924static void intel_decrease_pllclock(struct drm_crtc *crtc)
8925{
8926 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +03008927 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -07008928 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07008929
Sonika Jindalbaff2962014-07-22 11:16:35 +05308930 if (!HAS_GMCH_DISPLAY(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07008931 return;
8932
8933 if (!dev_priv->lvds_downclock_avail)
8934 return;
8935
8936 /*
8937 * Since this is called by a timer, we should never get here in
8938 * the manual case.
8939 */
8940 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01008941 int pipe = intel_crtc->pipe;
8942 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02008943 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01008944
Zhao Yakui44d98a62009-10-09 11:39:40 +08008945 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008946
Sean Paul8ac5a6d2012-02-13 13:14:51 -05008947 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008948
Chris Wilson074b5e12012-05-02 12:07:06 +01008949 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07008950 dpll |= DISPLAY_RATE_SELECT_FPA1;
8951 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008952 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008953 dpll = I915_READ(dpll_reg);
8954 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08008955 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008956 }
8957
8958}
8959
Chris Wilsonf047e392012-07-21 12:31:41 +01008960void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07008961{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008962 struct drm_i915_private *dev_priv = dev->dev_private;
8963
Chris Wilsonf62a0072014-02-21 17:55:39 +00008964 if (dev_priv->mm.busy)
8965 return;
8966
Paulo Zanoni43694d62014-03-07 20:08:08 -03008967 intel_runtime_pm_get(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008968 i915_update_gfx_val(dev_priv);
Chris Wilsonf62a0072014-02-21 17:55:39 +00008969 dev_priv->mm.busy = true;
Chris Wilsonf047e392012-07-21 12:31:41 +01008970}
8971
8972void intel_mark_idle(struct drm_device *dev)
8973{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008974 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson725a5b52013-01-08 11:02:57 +00008975 struct drm_crtc *crtc;
8976
Chris Wilsonf62a0072014-02-21 17:55:39 +00008977 if (!dev_priv->mm.busy)
8978 return;
8979
8980 dev_priv->mm.busy = false;
8981
Jani Nikulad330a952014-01-21 11:24:25 +02008982 if (!i915.powersave)
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03008983 goto out;
Chris Wilson725a5b52013-01-08 11:02:57 +00008984
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008985 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -07008986 if (!crtc->primary->fb)
Chris Wilson725a5b52013-01-08 11:02:57 +00008987 continue;
8988
8989 intel_decrease_pllclock(crtc);
8990 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01008991
Damien Lespiau3d13ef22014-02-07 19:12:47 +00008992 if (INTEL_INFO(dev)->gen >= 6)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01008993 gen6_rps_idle(dev->dev_private);
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03008994
8995out:
Paulo Zanoni43694d62014-03-07 20:08:08 -03008996 intel_runtime_pm_put(dev_priv);
Chris Wilsonf047e392012-07-21 12:31:41 +01008997}
8998
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -07008999
Daniel Vetterf99d7062014-06-19 16:01:59 +02009000/**
9001 * intel_mark_fb_busy - mark given planes as busy
9002 * @dev: DRM device
9003 * @frontbuffer_bits: bits for the affected planes
9004 * @ring: optional ring for asynchronous commands
9005 *
9006 * This function gets called every time the screen contents change. It can be
9007 * used to keep e.g. the update rate at the nominal refresh rate with DRRS.
9008 */
9009static void intel_mark_fb_busy(struct drm_device *dev,
9010 unsigned frontbuffer_bits,
9011 struct intel_engine_cs *ring)
Chris Wilsonf047e392012-07-21 12:31:41 +01009012{
Damien Lespiau055e3932014-08-18 13:49:10 +01009013 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettercc365132014-06-18 13:59:13 +02009014 enum pipe pipe;
Jesse Barnes652c3932009-08-17 13:31:43 -07009015
Jani Nikulad330a952014-01-21 11:24:25 +02009016 if (!i915.powersave)
Jesse Barnes652c3932009-08-17 13:31:43 -07009017 return;
9018
Damien Lespiau055e3932014-08-18 13:49:10 +01009019 for_each_pipe(dev_priv, pipe) {
Daniel Vetterf99d7062014-06-19 16:01:59 +02009020 if (!(frontbuffer_bits & INTEL_FRONTBUFFER_ALL_MASK(pipe)))
Jesse Barnes652c3932009-08-17 13:31:43 -07009021 continue;
9022
Daniel Vettercc365132014-06-18 13:59:13 +02009023 intel_increase_pllclock(dev, pipe);
Chris Wilsonc65355b2013-06-06 16:53:41 -03009024 if (ring && intel_fbc_enabled(dev))
9025 ring->fbc_dirty = true;
Jesse Barnes652c3932009-08-17 13:31:43 -07009026 }
Jesse Barnes652c3932009-08-17 13:31:43 -07009027}
9028
Daniel Vetterf99d7062014-06-19 16:01:59 +02009029/**
9030 * intel_fb_obj_invalidate - invalidate frontbuffer object
9031 * @obj: GEM object to invalidate
9032 * @ring: set for asynchronous rendering
9033 *
9034 * This function gets called every time rendering on the given object starts and
9035 * frontbuffer caching (fbc, low refresh rate for DRRS, panel self refresh) must
9036 * be invalidated. If @ring is non-NULL any subsequent invalidation will be delayed
9037 * until the rendering completes or a flip on this frontbuffer plane is
9038 * scheduled.
9039 */
9040void intel_fb_obj_invalidate(struct drm_i915_gem_object *obj,
9041 struct intel_engine_cs *ring)
9042{
9043 struct drm_device *dev = obj->base.dev;
9044 struct drm_i915_private *dev_priv = dev->dev_private;
9045
9046 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
9047
9048 if (!obj->frontbuffer_bits)
9049 return;
9050
9051 if (ring) {
9052 mutex_lock(&dev_priv->fb_tracking.lock);
9053 dev_priv->fb_tracking.busy_bits
9054 |= obj->frontbuffer_bits;
9055 dev_priv->fb_tracking.flip_bits
9056 &= ~obj->frontbuffer_bits;
9057 mutex_unlock(&dev_priv->fb_tracking.lock);
9058 }
9059
9060 intel_mark_fb_busy(dev, obj->frontbuffer_bits, ring);
9061
Daniel Vetter9ca15302014-07-11 10:30:16 -07009062 intel_edp_psr_invalidate(dev, obj->frontbuffer_bits);
Daniel Vetterf99d7062014-06-19 16:01:59 +02009063}
9064
9065/**
9066 * intel_frontbuffer_flush - flush frontbuffer
9067 * @dev: DRM device
9068 * @frontbuffer_bits: frontbuffer plane tracking bits
9069 *
9070 * This function gets called every time rendering on the given planes has
9071 * completed and frontbuffer caching can be started again. Flushes will get
9072 * delayed if they're blocked by some oustanding asynchronous rendering.
9073 *
9074 * Can be called without any locks held.
9075 */
9076void intel_frontbuffer_flush(struct drm_device *dev,
9077 unsigned frontbuffer_bits)
9078{
9079 struct drm_i915_private *dev_priv = dev->dev_private;
9080
9081 /* Delay flushing when rings are still busy.*/
9082 mutex_lock(&dev_priv->fb_tracking.lock);
9083 frontbuffer_bits &= ~dev_priv->fb_tracking.busy_bits;
9084 mutex_unlock(&dev_priv->fb_tracking.lock);
9085
9086 intel_mark_fb_busy(dev, frontbuffer_bits, NULL);
9087
Daniel Vetter9ca15302014-07-11 10:30:16 -07009088 intel_edp_psr_flush(dev, frontbuffer_bits);
Rodrigo Vivic5ad0112014-08-04 03:51:38 -07009089
9090 if (IS_GEN8(dev))
9091 gen8_fbc_sw_flush(dev, FBC_REND_CACHE_CLEAN);
Daniel Vetterf99d7062014-06-19 16:01:59 +02009092}
9093
9094/**
9095 * intel_fb_obj_flush - flush frontbuffer object
9096 * @obj: GEM object to flush
9097 * @retire: set when retiring asynchronous rendering
9098 *
9099 * This function gets called every time rendering on the given object has
9100 * completed and frontbuffer caching can be started again. If @retire is true
9101 * then any delayed flushes will be unblocked.
9102 */
9103void intel_fb_obj_flush(struct drm_i915_gem_object *obj,
9104 bool retire)
9105{
9106 struct drm_device *dev = obj->base.dev;
9107 struct drm_i915_private *dev_priv = dev->dev_private;
9108 unsigned frontbuffer_bits;
9109
9110 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
9111
9112 if (!obj->frontbuffer_bits)
9113 return;
9114
9115 frontbuffer_bits = obj->frontbuffer_bits;
9116
9117 if (retire) {
9118 mutex_lock(&dev_priv->fb_tracking.lock);
9119 /* Filter out new bits since rendering started. */
9120 frontbuffer_bits &= dev_priv->fb_tracking.busy_bits;
9121
9122 dev_priv->fb_tracking.busy_bits &= ~frontbuffer_bits;
9123 mutex_unlock(&dev_priv->fb_tracking.lock);
9124 }
9125
9126 intel_frontbuffer_flush(dev, frontbuffer_bits);
9127}
9128
9129/**
9130 * intel_frontbuffer_flip_prepare - prepare asnychronous frontbuffer flip
9131 * @dev: DRM device
9132 * @frontbuffer_bits: frontbuffer plane tracking bits
9133 *
9134 * This function gets called after scheduling a flip on @obj. The actual
9135 * frontbuffer flushing will be delayed until completion is signalled with
9136 * intel_frontbuffer_flip_complete. If an invalidate happens in between this
9137 * flush will be cancelled.
9138 *
9139 * Can be called without any locks held.
9140 */
9141void intel_frontbuffer_flip_prepare(struct drm_device *dev,
9142 unsigned frontbuffer_bits)
9143{
9144 struct drm_i915_private *dev_priv = dev->dev_private;
9145
9146 mutex_lock(&dev_priv->fb_tracking.lock);
9147 dev_priv->fb_tracking.flip_bits
9148 |= frontbuffer_bits;
9149 mutex_unlock(&dev_priv->fb_tracking.lock);
9150}
9151
9152/**
9153 * intel_frontbuffer_flip_complete - complete asynchronous frontbuffer flush
9154 * @dev: DRM device
9155 * @frontbuffer_bits: frontbuffer plane tracking bits
9156 *
9157 * This function gets called after the flip has been latched and will complete
9158 * on the next vblank. It will execute the fush if it hasn't been cancalled yet.
9159 *
9160 * Can be called without any locks held.
9161 */
9162void intel_frontbuffer_flip_complete(struct drm_device *dev,
9163 unsigned frontbuffer_bits)
9164{
9165 struct drm_i915_private *dev_priv = dev->dev_private;
9166
9167 mutex_lock(&dev_priv->fb_tracking.lock);
9168 /* Mask any cancelled flips. */
9169 frontbuffer_bits &= dev_priv->fb_tracking.flip_bits;
9170 dev_priv->fb_tracking.flip_bits &= ~frontbuffer_bits;
9171 mutex_unlock(&dev_priv->fb_tracking.lock);
9172
9173 intel_frontbuffer_flush(dev, frontbuffer_bits);
9174}
9175
Jesse Barnes79e53942008-11-07 14:24:08 -08009176static void intel_crtc_destroy(struct drm_crtc *crtc)
9177{
9178 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009179 struct drm_device *dev = crtc->dev;
9180 struct intel_unpin_work *work;
9181 unsigned long flags;
9182
9183 spin_lock_irqsave(&dev->event_lock, flags);
9184 work = intel_crtc->unpin_work;
9185 intel_crtc->unpin_work = NULL;
9186 spin_unlock_irqrestore(&dev->event_lock, flags);
9187
9188 if (work) {
9189 cancel_work_sync(&work->work);
9190 kfree(work);
9191 }
Jesse Barnes79e53942008-11-07 14:24:08 -08009192
9193 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009194
Jesse Barnes79e53942008-11-07 14:24:08 -08009195 kfree(intel_crtc);
9196}
9197
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009198static void intel_unpin_work_fn(struct work_struct *__work)
9199{
9200 struct intel_unpin_work *work =
9201 container_of(__work, struct intel_unpin_work, work);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009202 struct drm_device *dev = work->crtc->dev;
Daniel Vetterf99d7062014-06-19 16:01:59 +02009203 enum pipe pipe = to_intel_crtc(work->crtc)->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009204
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009205 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01009206 intel_unpin_fb_obj(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00009207 drm_gem_object_unreference(&work->pending_flip_obj->base);
9208 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00009209
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009210 intel_update_fbc(dev);
9211 mutex_unlock(&dev->struct_mutex);
9212
Daniel Vetterf99d7062014-06-19 16:01:59 +02009213 intel_frontbuffer_flip_complete(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
9214
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009215 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
9216 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
9217
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009218 kfree(work);
9219}
9220
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009221static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01009222 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009223{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009224 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009225 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9226 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009227 unsigned long flags;
9228
9229 /* Ignore early vblank irqs */
9230 if (intel_crtc == NULL)
9231 return;
9232
9233 spin_lock_irqsave(&dev->event_lock, flags);
9234 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +00009235
9236 /* Ensure we don't miss a work->pending update ... */
9237 smp_rmb();
9238
9239 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009240 spin_unlock_irqrestore(&dev->event_lock, flags);
9241 return;
9242 }
9243
Chris Wilsone7d841c2012-12-03 11:36:30 +00009244 /* and that the unpin work is consistent wrt ->pending. */
9245 smp_rmb();
9246
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009247 intel_crtc->unpin_work = NULL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009248
Rob Clark45a066e2012-10-08 14:50:40 -05009249 if (work->event)
9250 drm_send_vblank_event(dev, intel_crtc->pipe, work->event);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009251
Daniel Vetter87b6b102014-05-15 15:33:46 +02009252 drm_crtc_vblank_put(crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01009253
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009254 spin_unlock_irqrestore(&dev->event_lock, flags);
9255
Daniel Vetter2c10d572012-12-20 21:24:07 +01009256 wake_up_all(&dev_priv->pending_flip_queue);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009257
9258 queue_work(dev_priv->wq, &work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07009259
9260 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009261}
9262
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009263void intel_finish_page_flip(struct drm_device *dev, int pipe)
9264{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009265 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009266 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
9267
Mario Kleiner49b14a52010-12-09 07:00:07 +01009268 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009269}
9270
9271void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
9272{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009273 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009274 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
9275
Mario Kleiner49b14a52010-12-09 07:00:07 +01009276 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009277}
9278
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009279/* Is 'a' after or equal to 'b'? */
9280static bool g4x_flip_count_after_eq(u32 a, u32 b)
9281{
9282 return !((a - b) & 0x80000000);
9283}
9284
9285static bool page_flip_finished(struct intel_crtc *crtc)
9286{
9287 struct drm_device *dev = crtc->base.dev;
9288 struct drm_i915_private *dev_priv = dev->dev_private;
9289
9290 /*
9291 * The relevant registers doen't exist on pre-ctg.
9292 * As the flip done interrupt doesn't trigger for mmio
9293 * flips on gmch platforms, a flip count check isn't
9294 * really needed there. But since ctg has the registers,
9295 * include it in the check anyway.
9296 */
9297 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
9298 return true;
9299
9300 /*
9301 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
9302 * used the same base address. In that case the mmio flip might
9303 * have completed, but the CS hasn't even executed the flip yet.
9304 *
9305 * A flip count check isn't enough as the CS might have updated
9306 * the base address just after start of vblank, but before we
9307 * managed to process the interrupt. This means we'd complete the
9308 * CS flip too soon.
9309 *
9310 * Combining both checks should get us a good enough result. It may
9311 * still happen that the CS flip has been executed, but has not
9312 * yet actually completed. But in case the base address is the same
9313 * anyway, we don't really care.
9314 */
9315 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
9316 crtc->unpin_work->gtt_offset &&
9317 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_GM45(crtc->pipe)),
9318 crtc->unpin_work->flip_count);
9319}
9320
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009321void intel_prepare_page_flip(struct drm_device *dev, int plane)
9322{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009323 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009324 struct intel_crtc *intel_crtc =
9325 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
9326 unsigned long flags;
9327
Chris Wilsone7d841c2012-12-03 11:36:30 +00009328 /* NB: An MMIO update of the plane base pointer will also
9329 * generate a page-flip completion irq, i.e. every modeset
9330 * is also accompanied by a spurious intel_prepare_page_flip().
9331 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009332 spin_lock_irqsave(&dev->event_lock, flags);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009333 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
Chris Wilsone7d841c2012-12-03 11:36:30 +00009334 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009335 spin_unlock_irqrestore(&dev->event_lock, flags);
9336}
9337
Robin Schroereba905b2014-05-18 02:24:50 +02009338static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
Chris Wilsone7d841c2012-12-03 11:36:30 +00009339{
9340 /* Ensure that the work item is consistent when activating it ... */
9341 smp_wmb();
9342 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
9343 /* and that it is marked active as soon as the irq could fire. */
9344 smp_wmb();
9345}
9346
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009347static int intel_gen2_queue_flip(struct drm_device *dev,
9348 struct drm_crtc *crtc,
9349 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009350 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009351 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009352 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009353{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009354 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009355 u32 flip_mask;
9356 int ret;
9357
Daniel Vetter6d90c952012-04-26 23:28:05 +02009358 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009359 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009360 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009361
9362 /* Can't queue multiple flips, so wait for the previous
9363 * one to finish before executing the next.
9364 */
9365 if (intel_crtc->plane)
9366 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
9367 else
9368 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009369 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
9370 intel_ring_emit(ring, MI_NOOP);
9371 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9372 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9373 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009374 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02009375 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +00009376
9377 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009378 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009379 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009380}
9381
9382static int intel_gen3_queue_flip(struct drm_device *dev,
9383 struct drm_crtc *crtc,
9384 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009385 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009386 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009387 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009388{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009389 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009390 u32 flip_mask;
9391 int ret;
9392
Daniel Vetter6d90c952012-04-26 23:28:05 +02009393 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009394 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009395 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009396
9397 if (intel_crtc->plane)
9398 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
9399 else
9400 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009401 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
9402 intel_ring_emit(ring, MI_NOOP);
9403 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
9404 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9405 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009406 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02009407 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009408
Chris Wilsone7d841c2012-12-03 11:36:30 +00009409 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009410 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009411 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009412}
9413
9414static int intel_gen4_queue_flip(struct drm_device *dev,
9415 struct drm_crtc *crtc,
9416 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009417 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009418 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009419 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009420{
9421 struct drm_i915_private *dev_priv = dev->dev_private;
9422 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9423 uint32_t pf, pipesrc;
9424 int ret;
9425
Daniel Vetter6d90c952012-04-26 23:28:05 +02009426 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009427 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009428 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009429
9430 /* i965+ uses the linear or tiled offsets from the
9431 * Display Registers (which do not change across a page-flip)
9432 * so we need only reprogram the base address.
9433 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02009434 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9435 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9436 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009437 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
Daniel Vetterc2c75132012-07-05 12:17:30 +02009438 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009439
9440 /* XXX Enabling the panel-fitter across page-flip is so far
9441 * untested on non-native modes, so ignore it for now.
9442 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
9443 */
9444 pf = 0;
9445 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009446 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009447
9448 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009449 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009450 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009451}
9452
9453static int intel_gen6_queue_flip(struct drm_device *dev,
9454 struct drm_crtc *crtc,
9455 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009456 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009457 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009458 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009459{
9460 struct drm_i915_private *dev_priv = dev->dev_private;
9461 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9462 uint32_t pf, pipesrc;
9463 int ret;
9464
Daniel Vetter6d90c952012-04-26 23:28:05 +02009465 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009466 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009467 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009468
Daniel Vetter6d90c952012-04-26 23:28:05 +02009469 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9470 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9471 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009472 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009473
Chris Wilson99d9acd2012-04-17 20:37:00 +01009474 /* Contrary to the suggestions in the documentation,
9475 * "Enable Panel Fitter" does not seem to be required when page
9476 * flipping with a non-native mode, and worse causes a normal
9477 * modeset to fail.
9478 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
9479 */
9480 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009481 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009482 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009483
9484 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009485 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009486 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009487}
9488
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009489static int intel_gen7_queue_flip(struct drm_device *dev,
9490 struct drm_crtc *crtc,
9491 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009492 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009493 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009494 uint32_t flags)
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009495{
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009496 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009497 uint32_t plane_bit = 0;
Chris Wilsonffe74d72013-08-26 20:58:12 +01009498 int len, ret;
9499
Robin Schroereba905b2014-05-18 02:24:50 +02009500 switch (intel_crtc->plane) {
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009501 case PLANE_A:
9502 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
9503 break;
9504 case PLANE_B:
9505 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
9506 break;
9507 case PLANE_C:
9508 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
9509 break;
9510 default:
9511 WARN_ONCE(1, "unknown plane in flip command\n");
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009512 return -ENODEV;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009513 }
9514
Chris Wilsonffe74d72013-08-26 20:58:12 +01009515 len = 4;
Damien Lespiauf4768282014-04-07 20:24:34 +01009516 if (ring->id == RCS) {
Chris Wilsonffe74d72013-08-26 20:58:12 +01009517 len += 6;
Damien Lespiauf4768282014-04-07 20:24:34 +01009518 /*
9519 * On Gen 8, SRM is now taking an extra dword to accommodate
9520 * 48bits addresses, and we need a NOOP for the batch size to
9521 * stay even.
9522 */
9523 if (IS_GEN8(dev))
9524 len += 2;
9525 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009526
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009527 /*
9528 * BSpec MI_DISPLAY_FLIP for IVB:
9529 * "The full packet must be contained within the same cache line."
9530 *
9531 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
9532 * cacheline, if we ever start emitting more commands before
9533 * the MI_DISPLAY_FLIP we may need to first emit everything else,
9534 * then do the cacheline alignment, and finally emit the
9535 * MI_DISPLAY_FLIP.
9536 */
9537 ret = intel_ring_cacheline_align(ring);
9538 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009539 return ret;
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009540
Chris Wilsonffe74d72013-08-26 20:58:12 +01009541 ret = intel_ring_begin(ring, len);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009542 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009543 return ret;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009544
Chris Wilsonffe74d72013-08-26 20:58:12 +01009545 /* Unmask the flip-done completion message. Note that the bspec says that
9546 * we should do this for both the BCS and RCS, and that we must not unmask
9547 * more than one flip event at any time (or ensure that one flip message
9548 * can be sent by waiting for flip-done prior to queueing new flips).
9549 * Experimentation says that BCS works despite DERRMR masking all
9550 * flip-done completion events and that unmasking all planes at once
9551 * for the RCS also doesn't appear to drop events. Setting the DERRMR
9552 * to zero does lead to lockups within MI_DISPLAY_FLIP.
9553 */
9554 if (ring->id == RCS) {
9555 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9556 intel_ring_emit(ring, DERRMR);
9557 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9558 DERRMR_PIPEB_PRI_FLIP_DONE |
9559 DERRMR_PIPEC_PRI_FLIP_DONE));
Damien Lespiauf4768282014-04-07 20:24:34 +01009560 if (IS_GEN8(dev))
9561 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9562 MI_SRM_LRM_GLOBAL_GTT);
9563 else
9564 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) |
9565 MI_SRM_LRM_GLOBAL_GTT);
Chris Wilsonffe74d72013-08-26 20:58:12 +01009566 intel_ring_emit(ring, DERRMR);
9567 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Damien Lespiauf4768282014-04-07 20:24:34 +01009568 if (IS_GEN8(dev)) {
9569 intel_ring_emit(ring, 0);
9570 intel_ring_emit(ring, MI_NOOP);
9571 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009572 }
9573
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009574 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02009575 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009576 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009577 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +00009578
9579 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009580 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009581 return 0;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009582}
9583
Sourab Gupta84c33a62014-06-02 16:47:17 +05309584static bool use_mmio_flip(struct intel_engine_cs *ring,
9585 struct drm_i915_gem_object *obj)
9586{
9587 /*
9588 * This is not being used for older platforms, because
9589 * non-availability of flip done interrupt forces us to use
9590 * CS flips. Older platforms derive flip done using some clever
9591 * tricks involving the flip_pending status bits and vblank irqs.
9592 * So using MMIO flips there would disrupt this mechanism.
9593 */
9594
Chris Wilson8e09bf82014-07-08 10:40:30 +01009595 if (ring == NULL)
9596 return true;
9597
Sourab Gupta84c33a62014-06-02 16:47:17 +05309598 if (INTEL_INFO(ring->dev)->gen < 5)
9599 return false;
9600
9601 if (i915.use_mmio_flip < 0)
9602 return false;
9603 else if (i915.use_mmio_flip > 0)
9604 return true;
Oscar Mateo14bf9932014-07-24 17:04:34 +01009605 else if (i915.enable_execlists)
9606 return true;
Sourab Gupta84c33a62014-06-02 16:47:17 +05309607 else
9608 return ring != obj->ring;
9609}
9610
9611static void intel_do_mmio_flip(struct intel_crtc *intel_crtc)
9612{
9613 struct drm_device *dev = intel_crtc->base.dev;
9614 struct drm_i915_private *dev_priv = dev->dev_private;
9615 struct intel_framebuffer *intel_fb =
9616 to_intel_framebuffer(intel_crtc->base.primary->fb);
9617 struct drm_i915_gem_object *obj = intel_fb->obj;
9618 u32 dspcntr;
9619 u32 reg;
9620
9621 intel_mark_page_flip_active(intel_crtc);
9622
9623 reg = DSPCNTR(intel_crtc->plane);
9624 dspcntr = I915_READ(reg);
9625
9626 if (INTEL_INFO(dev)->gen >= 4) {
9627 if (obj->tiling_mode != I915_TILING_NONE)
9628 dspcntr |= DISPPLANE_TILED;
9629 else
9630 dspcntr &= ~DISPPLANE_TILED;
9631 }
9632 I915_WRITE(reg, dspcntr);
9633
9634 I915_WRITE(DSPSURF(intel_crtc->plane),
9635 intel_crtc->unpin_work->gtt_offset);
9636 POSTING_READ(DSPSURF(intel_crtc->plane));
9637}
9638
9639static int intel_postpone_flip(struct drm_i915_gem_object *obj)
9640{
9641 struct intel_engine_cs *ring;
9642 int ret;
9643
9644 lockdep_assert_held(&obj->base.dev->struct_mutex);
9645
9646 if (!obj->last_write_seqno)
9647 return 0;
9648
9649 ring = obj->ring;
9650
9651 if (i915_seqno_passed(ring->get_seqno(ring, true),
9652 obj->last_write_seqno))
9653 return 0;
9654
9655 ret = i915_gem_check_olr(ring, obj->last_write_seqno);
9656 if (ret)
9657 return ret;
9658
9659 if (WARN_ON(!ring->irq_get(ring)))
9660 return 0;
9661
9662 return 1;
9663}
9664
9665void intel_notify_mmio_flip(struct intel_engine_cs *ring)
9666{
9667 struct drm_i915_private *dev_priv = to_i915(ring->dev);
9668 struct intel_crtc *intel_crtc;
9669 unsigned long irq_flags;
9670 u32 seqno;
9671
9672 seqno = ring->get_seqno(ring, false);
9673
9674 spin_lock_irqsave(&dev_priv->mmio_flip_lock, irq_flags);
9675 for_each_intel_crtc(ring->dev, intel_crtc) {
9676 struct intel_mmio_flip *mmio_flip;
9677
9678 mmio_flip = &intel_crtc->mmio_flip;
9679 if (mmio_flip->seqno == 0)
9680 continue;
9681
9682 if (ring->id != mmio_flip->ring_id)
9683 continue;
9684
9685 if (i915_seqno_passed(seqno, mmio_flip->seqno)) {
9686 intel_do_mmio_flip(intel_crtc);
9687 mmio_flip->seqno = 0;
9688 ring->irq_put(ring);
9689 }
9690 }
9691 spin_unlock_irqrestore(&dev_priv->mmio_flip_lock, irq_flags);
9692}
9693
9694static int intel_queue_mmio_flip(struct drm_device *dev,
9695 struct drm_crtc *crtc,
9696 struct drm_framebuffer *fb,
9697 struct drm_i915_gem_object *obj,
9698 struct intel_engine_cs *ring,
9699 uint32_t flags)
9700{
9701 struct drm_i915_private *dev_priv = dev->dev_private;
9702 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9703 unsigned long irq_flags;
9704 int ret;
9705
9706 if (WARN_ON(intel_crtc->mmio_flip.seqno))
9707 return -EBUSY;
9708
9709 ret = intel_postpone_flip(obj);
9710 if (ret < 0)
9711 return ret;
9712 if (ret == 0) {
9713 intel_do_mmio_flip(intel_crtc);
9714 return 0;
9715 }
9716
9717 spin_lock_irqsave(&dev_priv->mmio_flip_lock, irq_flags);
9718 intel_crtc->mmio_flip.seqno = obj->last_write_seqno;
9719 intel_crtc->mmio_flip.ring_id = obj->ring->id;
9720 spin_unlock_irqrestore(&dev_priv->mmio_flip_lock, irq_flags);
9721
9722 /*
9723 * Double check to catch cases where irq fired before
9724 * mmio flip data was ready
9725 */
9726 intel_notify_mmio_flip(obj->ring);
9727 return 0;
9728}
9729
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009730static int intel_default_queue_flip(struct drm_device *dev,
9731 struct drm_crtc *crtc,
9732 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009733 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009734 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009735 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009736{
9737 return -ENODEV;
9738}
9739
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009740static int intel_crtc_page_flip(struct drm_crtc *crtc,
9741 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009742 struct drm_pending_vblank_event *event,
9743 uint32_t page_flip_flags)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009744{
9745 struct drm_device *dev = crtc->dev;
9746 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperf4510a22014-04-01 15:22:40 -07009747 struct drm_framebuffer *old_fb = crtc->primary->fb;
Matt Roper2ff8fde2014-07-08 07:50:07 -07009748 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009749 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettera071fa02014-06-18 23:28:09 +02009750 enum pipe pipe = intel_crtc->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009751 struct intel_unpin_work *work;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009752 struct intel_engine_cs *ring;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009753 unsigned long flags;
Chris Wilson52e68632010-08-08 10:15:59 +01009754 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009755
Daisy Sunc76bb612014-08-11 11:08:38 -07009756 //trigger software GT busyness calculation
9757 gen8_flip_interrupt(dev);
9758
Matt Roper2ff8fde2014-07-08 07:50:07 -07009759 /*
9760 * drm_mode_page_flip_ioctl() should already catch this, but double
9761 * check to be safe. In the future we may enable pageflipping from
9762 * a disabled primary plane.
9763 */
9764 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
9765 return -EBUSY;
9766
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009767 /* Can't change pixel format via MI display flips. */
Matt Roperf4510a22014-04-01 15:22:40 -07009768 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009769 return -EINVAL;
9770
9771 /*
9772 * TILEOFF/LINOFF registers can't be changed via MI display flips.
9773 * Note that pitch changes could also affect these register.
9774 */
9775 if (INTEL_INFO(dev)->gen > 3 &&
Matt Roperf4510a22014-04-01 15:22:40 -07009776 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
9777 fb->pitches[0] != crtc->primary->fb->pitches[0]))
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009778 return -EINVAL;
9779
Chris Wilsonf900db42014-02-20 09:26:13 +00009780 if (i915_terminally_wedged(&dev_priv->gpu_error))
9781 goto out_hang;
9782
Daniel Vetterb14c5672013-09-19 12:18:32 +02009783 work = kzalloc(sizeof(*work), GFP_KERNEL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009784 if (work == NULL)
9785 return -ENOMEM;
9786
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009787 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009788 work->crtc = crtc;
Matt Roper2ff8fde2014-07-08 07:50:07 -07009789 work->old_fb_obj = intel_fb_obj(old_fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009790 INIT_WORK(&work->work, intel_unpin_work_fn);
9791
Daniel Vetter87b6b102014-05-15 15:33:46 +02009792 ret = drm_crtc_vblank_get(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009793 if (ret)
9794 goto free_work;
9795
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009796 /* We borrow the event spin lock for protecting unpin_work */
9797 spin_lock_irqsave(&dev->event_lock, flags);
9798 if (intel_crtc->unpin_work) {
9799 spin_unlock_irqrestore(&dev->event_lock, flags);
9800 kfree(work);
Daniel Vetter87b6b102014-05-15 15:33:46 +02009801 drm_crtc_vblank_put(crtc);
Chris Wilson468f0b42010-05-27 13:18:13 +01009802
9803 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009804 return -EBUSY;
9805 }
9806 intel_crtc->unpin_work = work;
9807 spin_unlock_irqrestore(&dev->event_lock, flags);
9808
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009809 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
9810 flush_workqueue(dev_priv->wq);
9811
Chris Wilson79158102012-05-23 11:13:58 +01009812 ret = i915_mutex_lock_interruptible(dev);
9813 if (ret)
9814 goto cleanup;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009815
Jesse Barnes75dfca82010-02-10 15:09:44 -08009816 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00009817 drm_gem_object_reference(&work->old_fb_obj->base);
9818 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009819
Matt Roperf4510a22014-04-01 15:22:40 -07009820 crtc->primary->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01009821
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009822 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009823
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01009824 work->enable_stall_check = true;
9825
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009826 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +02009827 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009828
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009829 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
Daniel Vettera071fa02014-06-18 23:28:09 +02009830 work->flip_count = I915_READ(PIPE_FLIPCOUNT_GM45(pipe)) + 1;
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009831
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009832 if (IS_VALLEYVIEW(dev)) {
9833 ring = &dev_priv->ring[BCS];
Chris Wilson8e09bf82014-07-08 10:40:30 +01009834 if (obj->tiling_mode != work->old_fb_obj->tiling_mode)
9835 /* vlv: DISPLAY_FLIP fails to change tiling */
9836 ring = NULL;
Chris Wilson2a92d5b2014-07-08 10:40:29 +01009837 } else if (IS_IVYBRIDGE(dev)) {
9838 ring = &dev_priv->ring[BCS];
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009839 } else if (INTEL_INFO(dev)->gen >= 7) {
9840 ring = obj->ring;
9841 if (ring == NULL || ring->id != RCS)
9842 ring = &dev_priv->ring[BCS];
9843 } else {
9844 ring = &dev_priv->ring[RCS];
9845 }
9846
9847 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009848 if (ret)
9849 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009850
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009851 work->gtt_offset =
9852 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset;
9853
Sourab Gupta84c33a62014-06-02 16:47:17 +05309854 if (use_mmio_flip(ring, obj))
9855 ret = intel_queue_mmio_flip(dev, crtc, fb, obj, ring,
9856 page_flip_flags);
9857 else
9858 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, ring,
9859 page_flip_flags);
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009860 if (ret)
9861 goto cleanup_unpin;
9862
Daniel Vettera071fa02014-06-18 23:28:09 +02009863 i915_gem_track_fb(work->old_fb_obj, obj,
9864 INTEL_FRONTBUFFER_PRIMARY(pipe));
9865
Chris Wilson7782de32011-07-08 12:22:41 +01009866 intel_disable_fbc(dev);
Daniel Vetterf99d7062014-06-19 16:01:59 +02009867 intel_frontbuffer_flip_prepare(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009868 mutex_unlock(&dev->struct_mutex);
9869
Jesse Barnese5510fa2010-07-01 16:48:37 -07009870 trace_i915_flip_request(intel_crtc->plane, obj);
9871
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009872 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01009873
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009874cleanup_unpin:
9875 intel_unpin_fb_obj(obj);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009876cleanup_pending:
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009877 atomic_dec(&intel_crtc->unpin_work_count);
Matt Roperf4510a22014-04-01 15:22:40 -07009878 crtc->primary->fb = old_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00009879 drm_gem_object_unreference(&work->old_fb_obj->base);
9880 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01009881 mutex_unlock(&dev->struct_mutex);
9882
Chris Wilson79158102012-05-23 11:13:58 +01009883cleanup:
Chris Wilson96b099f2010-06-07 14:03:04 +01009884 spin_lock_irqsave(&dev->event_lock, flags);
9885 intel_crtc->unpin_work = NULL;
9886 spin_unlock_irqrestore(&dev->event_lock, flags);
9887
Daniel Vetter87b6b102014-05-15 15:33:46 +02009888 drm_crtc_vblank_put(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009889free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01009890 kfree(work);
9891
Chris Wilsonf900db42014-02-20 09:26:13 +00009892 if (ret == -EIO) {
9893out_hang:
9894 intel_crtc_wait_for_pending_flips(crtc);
9895 ret = intel_pipe_set_base(crtc, crtc->x, crtc->y, fb);
9896 if (ret == 0 && event)
Daniel Vettera071fa02014-06-18 23:28:09 +02009897 drm_send_vblank_event(dev, pipe, event);
Chris Wilsonf900db42014-02-20 09:26:13 +00009898 }
Chris Wilson96b099f2010-06-07 14:03:04 +01009899 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009900}
9901
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009902static struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009903 .mode_set_base_atomic = intel_pipe_set_base_atomic,
9904 .load_lut = intel_crtc_load_lut,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009905};
9906
Daniel Vetter9a935852012-07-05 22:34:27 +02009907/**
9908 * intel_modeset_update_staged_output_state
9909 *
9910 * Updates the staged output configuration state, e.g. after we've read out the
9911 * current hw state.
9912 */
9913static void intel_modeset_update_staged_output_state(struct drm_device *dev)
9914{
Ville Syrjälä76688512014-01-10 11:28:06 +02009915 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009916 struct intel_encoder *encoder;
9917 struct intel_connector *connector;
9918
9919 list_for_each_entry(connector, &dev->mode_config.connector_list,
9920 base.head) {
9921 connector->new_encoder =
9922 to_intel_encoder(connector->base.encoder);
9923 }
9924
Damien Lespiaub2784e12014-08-05 11:29:37 +01009925 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +02009926 encoder->new_crtc =
9927 to_intel_crtc(encoder->base.crtc);
9928 }
Ville Syrjälä76688512014-01-10 11:28:06 +02009929
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009930 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009931 crtc->new_enabled = crtc->base.enabled;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +02009932
9933 if (crtc->new_enabled)
9934 crtc->new_config = &crtc->config;
9935 else
9936 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +02009937 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009938}
9939
9940/**
9941 * intel_modeset_commit_output_state
9942 *
9943 * This function copies the stage display pipe configuration to the real one.
9944 */
9945static void intel_modeset_commit_output_state(struct drm_device *dev)
9946{
Ville Syrjälä76688512014-01-10 11:28:06 +02009947 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009948 struct intel_encoder *encoder;
9949 struct intel_connector *connector;
9950
9951 list_for_each_entry(connector, &dev->mode_config.connector_list,
9952 base.head) {
9953 connector->base.encoder = &connector->new_encoder->base;
9954 }
9955
Damien Lespiaub2784e12014-08-05 11:29:37 +01009956 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +02009957 encoder->base.crtc = &encoder->new_crtc->base;
9958 }
Ville Syrjälä76688512014-01-10 11:28:06 +02009959
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009960 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009961 crtc->base.enabled = crtc->new_enabled;
9962 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009963}
9964
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009965static void
Robin Schroereba905b2014-05-18 02:24:50 +02009966connected_sink_compute_bpp(struct intel_connector *connector,
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009967 struct intel_crtc_config *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009968{
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009969 int bpp = pipe_config->pipe_bpp;
9970
9971 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
9972 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03009973 connector->base.name);
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009974
9975 /* Don't use an invalid EDID bpc value */
9976 if (connector->base.display_info.bpc &&
9977 connector->base.display_info.bpc * 3 < bpp) {
9978 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
9979 bpp, connector->base.display_info.bpc*3);
9980 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
9981 }
9982
9983 /* Clamp bpp to 8 on screens without EDID 1.4 */
9984 if (connector->base.display_info.bpc == 0 && bpp > 24) {
9985 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
9986 bpp);
9987 pipe_config->pipe_bpp = 24;
9988 }
9989}
9990
9991static int
9992compute_baseline_pipe_bpp(struct intel_crtc *crtc,
9993 struct drm_framebuffer *fb,
9994 struct intel_crtc_config *pipe_config)
9995{
9996 struct drm_device *dev = crtc->base.dev;
9997 struct intel_connector *connector;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009998 int bpp;
9999
Daniel Vetterd42264b2013-03-28 16:38:08 +010010000 switch (fb->pixel_format) {
10001 case DRM_FORMAT_C8:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010002 bpp = 8*3; /* since we go through a colormap */
10003 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +010010004 case DRM_FORMAT_XRGB1555:
10005 case DRM_FORMAT_ARGB1555:
10006 /* checked in intel_framebuffer_init already */
10007 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
10008 return -EINVAL;
10009 case DRM_FORMAT_RGB565:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010010 bpp = 6*3; /* min is 18bpp */
10011 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +010010012 case DRM_FORMAT_XBGR8888:
10013 case DRM_FORMAT_ABGR8888:
10014 /* checked in intel_framebuffer_init already */
10015 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
10016 return -EINVAL;
10017 case DRM_FORMAT_XRGB8888:
10018 case DRM_FORMAT_ARGB8888:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010019 bpp = 8*3;
10020 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +010010021 case DRM_FORMAT_XRGB2101010:
10022 case DRM_FORMAT_ARGB2101010:
10023 case DRM_FORMAT_XBGR2101010:
10024 case DRM_FORMAT_ABGR2101010:
10025 /* checked in intel_framebuffer_init already */
10026 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
Daniel Vetterbaba1332013-03-27 00:45:00 +010010027 return -EINVAL;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010028 bpp = 10*3;
10029 break;
Daniel Vetterbaba1332013-03-27 00:45:00 +010010030 /* TODO: gen4+ supports 16 bpc floating point, too. */
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010031 default:
10032 DRM_DEBUG_KMS("unsupported depth\n");
10033 return -EINVAL;
10034 }
10035
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010036 pipe_config->pipe_bpp = bpp;
10037
10038 /* Clamp display bpp to EDID value */
10039 list_for_each_entry(connector, &dev->mode_config.connector_list,
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010040 base.head) {
Daniel Vetter1b829e02013-06-02 13:26:24 +020010041 if (!connector->new_encoder ||
10042 connector->new_encoder->new_crtc != crtc)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010043 continue;
10044
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010045 connected_sink_compute_bpp(connector, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010046 }
10047
10048 return bpp;
10049}
10050
Daniel Vetter644db712013-09-19 14:53:58 +020010051static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
10052{
10053 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
10054 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +010010055 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +020010056 mode->crtc_hdisplay, mode->crtc_hsync_start,
10057 mode->crtc_hsync_end, mode->crtc_htotal,
10058 mode->crtc_vdisplay, mode->crtc_vsync_start,
10059 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
10060}
10061
Daniel Vetterc0b03412013-05-28 12:05:54 +020010062static void intel_dump_pipe_config(struct intel_crtc *crtc,
10063 struct intel_crtc_config *pipe_config,
10064 const char *context)
10065{
10066 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
10067 context, pipe_name(crtc->pipe));
10068
10069 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
10070 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
10071 pipe_config->pipe_bpp, pipe_config->dither);
10072 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
10073 pipe_config->has_pch_encoder,
10074 pipe_config->fdi_lanes,
10075 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
10076 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
10077 pipe_config->fdi_m_n.tu);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010078 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
10079 pipe_config->has_dp_encoder,
10080 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
10081 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
10082 pipe_config->dp_m_n.tu);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010083
10084 DRM_DEBUG_KMS("dp: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n",
10085 pipe_config->has_dp_encoder,
10086 pipe_config->dp_m2_n2.gmch_m,
10087 pipe_config->dp_m2_n2.gmch_n,
10088 pipe_config->dp_m2_n2.link_m,
10089 pipe_config->dp_m2_n2.link_n,
10090 pipe_config->dp_m2_n2.tu);
10091
Daniel Vetterc0b03412013-05-28 12:05:54 +020010092 DRM_DEBUG_KMS("requested mode:\n");
10093 drm_mode_debug_printmodeline(&pipe_config->requested_mode);
10094 DRM_DEBUG_KMS("adjusted mode:\n");
10095 drm_mode_debug_printmodeline(&pipe_config->adjusted_mode);
Daniel Vetter644db712013-09-19 14:53:58 +020010096 intel_dump_crtc_timings(&pipe_config->adjusted_mode);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +030010097 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010098 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
10099 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Daniel Vetterc0b03412013-05-28 12:05:54 +020010100 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
10101 pipe_config->gmch_pfit.control,
10102 pipe_config->gmch_pfit.pgm_ratios,
10103 pipe_config->gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010104 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
Daniel Vetterc0b03412013-05-28 12:05:54 +020010105 pipe_config->pch_pfit.pos,
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010106 pipe_config->pch_pfit.size,
10107 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
Paulo Zanoni42db64e2013-05-31 16:33:22 -030010108 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Ville Syrjäläcf532bb2013-09-04 18:30:02 +030010109 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
Daniel Vetterc0b03412013-05-28 12:05:54 +020010110}
10111
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010112static bool encoders_cloneable(const struct intel_encoder *a,
10113 const struct intel_encoder *b)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010114{
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010115 /* masks could be asymmetric, so check both ways */
10116 return a == b || (a->cloneable & (1 << b->type) &&
10117 b->cloneable & (1 << a->type));
10118}
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010119
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010120static bool check_single_encoder_cloning(struct intel_crtc *crtc,
10121 struct intel_encoder *encoder)
10122{
10123 struct drm_device *dev = crtc->base.dev;
10124 struct intel_encoder *source_encoder;
10125
Damien Lespiaub2784e12014-08-05 11:29:37 +010010126 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010127 if (source_encoder->new_crtc != crtc)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010128 continue;
10129
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010130 if (!encoders_cloneable(encoder, source_encoder))
10131 return false;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010132 }
10133
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010134 return true;
10135}
10136
10137static bool check_encoder_cloning(struct intel_crtc *crtc)
10138{
10139 struct drm_device *dev = crtc->base.dev;
10140 struct intel_encoder *encoder;
10141
Damien Lespiaub2784e12014-08-05 11:29:37 +010010142 for_each_intel_encoder(dev, encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010143 if (encoder->new_crtc != crtc)
10144 continue;
10145
10146 if (!check_single_encoder_cloning(crtc, encoder))
10147 return false;
10148 }
10149
10150 return true;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010151}
10152
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010153static struct intel_crtc_config *
10154intel_modeset_pipe_config(struct drm_crtc *crtc,
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010155 struct drm_framebuffer *fb,
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010156 struct drm_display_mode *mode)
Daniel Vetter7758a112012-07-08 19:40:39 +020010157{
10158 struct drm_device *dev = crtc->dev;
Daniel Vetter7758a112012-07-08 19:40:39 +020010159 struct intel_encoder *encoder;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010160 struct intel_crtc_config *pipe_config;
Daniel Vettere29c22c2013-02-21 00:00:16 +010010161 int plane_bpp, ret = -EINVAL;
10162 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +020010163
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010164 if (!check_encoder_cloning(to_intel_crtc(crtc))) {
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010165 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
10166 return ERR_PTR(-EINVAL);
10167 }
10168
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010169 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
10170 if (!pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +020010171 return ERR_PTR(-ENOMEM);
10172
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010173 drm_mode_copy(&pipe_config->adjusted_mode, mode);
10174 drm_mode_copy(&pipe_config->requested_mode, mode);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010175
Daniel Vettere143a212013-07-04 12:01:15 +020010176 pipe_config->cpu_transcoder =
10177 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010178 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010179
Imre Deak2960bc92013-07-30 13:36:32 +030010180 /*
10181 * Sanitize sync polarity flags based on requested ones. If neither
10182 * positive or negative polarity is requested, treat this as meaning
10183 * negative polarity.
10184 */
10185 if (!(pipe_config->adjusted_mode.flags &
10186 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
10187 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
10188
10189 if (!(pipe_config->adjusted_mode.flags &
10190 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
10191 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
10192
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010193 /* Compute a starting value for pipe_config->pipe_bpp taking the source
10194 * plane pixel format and any sink constraints into account. Returns the
10195 * source plane bpp so that dithering can be selected on mismatches
10196 * after encoders and crtc also have had their say. */
10197 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
10198 fb, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010199 if (plane_bpp < 0)
10200 goto fail;
10201
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030010202 /*
10203 * Determine the real pipe dimensions. Note that stereo modes can
10204 * increase the actual pipe size due to the frame doubling and
10205 * insertion of additional space for blanks between the frame. This
10206 * is stored in the crtc timings. We use the requested mode to do this
10207 * computation to clearly distinguish it from the adjusted mode, which
10208 * can be changed by the connectors in the below retry loop.
10209 */
10210 drm_mode_set_crtcinfo(&pipe_config->requested_mode, CRTC_STEREO_DOUBLE);
10211 pipe_config->pipe_src_w = pipe_config->requested_mode.crtc_hdisplay;
10212 pipe_config->pipe_src_h = pipe_config->requested_mode.crtc_vdisplay;
10213
Daniel Vettere29c22c2013-02-21 00:00:16 +010010214encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +020010215 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +020010216 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +020010217 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +020010218
Daniel Vetter135c81b2013-07-21 21:37:09 +020010219 /* Fill in default crtc timings, allow encoders to overwrite them. */
Damien Lespiau6ce70f52013-09-25 16:45:38 +010010220 drm_mode_set_crtcinfo(&pipe_config->adjusted_mode, CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +020010221
Daniel Vetter7758a112012-07-08 19:40:39 +020010222 /* Pass our mode to the connectors and the CRTC to give them a chance to
10223 * adjust it according to limitations or connector properties, and also
10224 * a chance to reject the mode entirely.
10225 */
Damien Lespiaub2784e12014-08-05 11:29:37 +010010226 for_each_intel_encoder(dev, encoder) {
Daniel Vetter7758a112012-07-08 19:40:39 +020010227
10228 if (&encoder->new_crtc->base != crtc)
10229 continue;
Daniel Vetter7ae89232013-03-27 00:44:52 +010010230
Daniel Vetterefea6e82013-07-21 21:36:59 +020010231 if (!(encoder->compute_config(encoder, pipe_config))) {
10232 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +020010233 goto fail;
10234 }
10235 }
10236
Daniel Vetterff9a6752013-06-01 17:16:21 +020010237 /* Set default port clock if not overwritten by the encoder. Needs to be
10238 * done afterwards in case the encoder adjusts the mode. */
10239 if (!pipe_config->port_clock)
Damien Lespiau241bfc32013-09-25 16:45:37 +010010240 pipe_config->port_clock = pipe_config->adjusted_mode.crtc_clock
10241 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +020010242
Daniel Vettera43f6e02013-06-07 23:10:32 +020010243 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010010244 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +020010245 DRM_DEBUG_KMS("CRTC fixup failed\n");
10246 goto fail;
10247 }
Daniel Vettere29c22c2013-02-21 00:00:16 +010010248
10249 if (ret == RETRY) {
10250 if (WARN(!retry, "loop in pipe configuration computation\n")) {
10251 ret = -EINVAL;
10252 goto fail;
10253 }
10254
10255 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
10256 retry = false;
10257 goto encoder_retry;
10258 }
10259
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010260 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
10261 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
10262 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
10263
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010264 return pipe_config;
Daniel Vetter7758a112012-07-08 19:40:39 +020010265fail:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010266 kfree(pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010010267 return ERR_PTR(ret);
Daniel Vetter7758a112012-07-08 19:40:39 +020010268}
10269
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010270/* Computes which crtcs are affected and sets the relevant bits in the mask. For
10271 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
10272static void
10273intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
10274 unsigned *prepare_pipes, unsigned *disable_pipes)
10275{
10276 struct intel_crtc *intel_crtc;
10277 struct drm_device *dev = crtc->dev;
10278 struct intel_encoder *encoder;
10279 struct intel_connector *connector;
10280 struct drm_crtc *tmp_crtc;
10281
10282 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
10283
10284 /* Check which crtcs have changed outputs connected to them, these need
10285 * to be part of the prepare_pipes mask. We don't (yet) support global
10286 * modeset across multiple crtcs, so modeset_pipes will only have one
10287 * bit set at most. */
10288 list_for_each_entry(connector, &dev->mode_config.connector_list,
10289 base.head) {
10290 if (connector->base.encoder == &connector->new_encoder->base)
10291 continue;
10292
10293 if (connector->base.encoder) {
10294 tmp_crtc = connector->base.encoder->crtc;
10295
10296 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
10297 }
10298
10299 if (connector->new_encoder)
10300 *prepare_pipes |=
10301 1 << connector->new_encoder->new_crtc->pipe;
10302 }
10303
Damien Lespiaub2784e12014-08-05 11:29:37 +010010304 for_each_intel_encoder(dev, encoder) {
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010305 if (encoder->base.crtc == &encoder->new_crtc->base)
10306 continue;
10307
10308 if (encoder->base.crtc) {
10309 tmp_crtc = encoder->base.crtc;
10310
10311 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
10312 }
10313
10314 if (encoder->new_crtc)
10315 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
10316 }
10317
Ville Syrjälä76688512014-01-10 11:28:06 +020010318 /* Check for pipes that will be enabled/disabled ... */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010319 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010320 if (intel_crtc->base.enabled == intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010321 continue;
10322
Ville Syrjälä76688512014-01-10 11:28:06 +020010323 if (!intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010324 *disable_pipes |= 1 << intel_crtc->pipe;
Ville Syrjälä76688512014-01-10 11:28:06 +020010325 else
10326 *prepare_pipes |= 1 << intel_crtc->pipe;
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010327 }
10328
10329
10330 /* set_mode is also used to update properties on life display pipes. */
10331 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä76688512014-01-10 11:28:06 +020010332 if (intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010333 *prepare_pipes |= 1 << intel_crtc->pipe;
10334
Daniel Vetterb6c51642013-04-12 18:48:43 +020010335 /*
10336 * For simplicity do a full modeset on any pipe where the output routing
10337 * changed. We could be more clever, but that would require us to be
10338 * more careful with calling the relevant encoder->mode_set functions.
10339 */
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010340 if (*prepare_pipes)
10341 *modeset_pipes = *prepare_pipes;
10342
10343 /* ... and mask these out. */
10344 *modeset_pipes &= ~(*disable_pipes);
10345 *prepare_pipes &= ~(*disable_pipes);
Daniel Vetterb6c51642013-04-12 18:48:43 +020010346
10347 /*
10348 * HACK: We don't (yet) fully support global modesets. intel_set_config
10349 * obies this rule, but the modeset restore mode of
10350 * intel_modeset_setup_hw_state does not.
10351 */
10352 *modeset_pipes &= 1 << intel_crtc->pipe;
10353 *prepare_pipes &= 1 << intel_crtc->pipe;
Daniel Vettere3641d32013-04-11 19:49:07 +020010354
10355 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
10356 *modeset_pipes, *prepare_pipes, *disable_pipes);
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010357}
10358
Daniel Vetterea9d7582012-07-10 10:42:52 +020010359static bool intel_crtc_in_use(struct drm_crtc *crtc)
10360{
10361 struct drm_encoder *encoder;
10362 struct drm_device *dev = crtc->dev;
10363
10364 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
10365 if (encoder->crtc == crtc)
10366 return true;
10367
10368 return false;
10369}
10370
10371static void
10372intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
10373{
10374 struct intel_encoder *intel_encoder;
10375 struct intel_crtc *intel_crtc;
10376 struct drm_connector *connector;
10377
Damien Lespiaub2784e12014-08-05 11:29:37 +010010378 for_each_intel_encoder(dev, intel_encoder) {
Daniel Vetterea9d7582012-07-10 10:42:52 +020010379 if (!intel_encoder->base.crtc)
10380 continue;
10381
10382 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
10383
10384 if (prepare_pipes & (1 << intel_crtc->pipe))
10385 intel_encoder->connectors_active = false;
10386 }
10387
10388 intel_modeset_commit_output_state(dev);
10389
Ville Syrjälä76688512014-01-10 11:28:06 +020010390 /* Double check state. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010391 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010392 WARN_ON(intel_crtc->base.enabled != intel_crtc_in_use(&intel_crtc->base));
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010393 WARN_ON(intel_crtc->new_config &&
10394 intel_crtc->new_config != &intel_crtc->config);
10395 WARN_ON(intel_crtc->base.enabled != !!intel_crtc->new_config);
Daniel Vetterea9d7582012-07-10 10:42:52 +020010396 }
10397
10398 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
10399 if (!connector->encoder || !connector->encoder->crtc)
10400 continue;
10401
10402 intel_crtc = to_intel_crtc(connector->encoder->crtc);
10403
10404 if (prepare_pipes & (1 << intel_crtc->pipe)) {
Daniel Vetter68d34722012-09-06 22:08:35 +020010405 struct drm_property *dpms_property =
10406 dev->mode_config.dpms_property;
10407
Daniel Vetterea9d7582012-07-10 10:42:52 +020010408 connector->dpms = DRM_MODE_DPMS_ON;
Rob Clark662595d2012-10-11 20:36:04 -050010409 drm_object_property_set_value(&connector->base,
Daniel Vetter68d34722012-09-06 22:08:35 +020010410 dpms_property,
10411 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +020010412
10413 intel_encoder = to_intel_encoder(connector->encoder);
10414 intel_encoder->connectors_active = true;
10415 }
10416 }
10417
10418}
10419
Ville Syrjälä3bd26262013-09-06 23:29:02 +030010420static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010421{
Ville Syrjälä3bd26262013-09-06 23:29:02 +030010422 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010423
10424 if (clock1 == clock2)
10425 return true;
10426
10427 if (!clock1 || !clock2)
10428 return false;
10429
10430 diff = abs(clock1 - clock2);
10431
10432 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
10433 return true;
10434
10435 return false;
10436}
10437
Daniel Vetter25c5b262012-07-08 22:08:04 +020010438#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
10439 list_for_each_entry((intel_crtc), \
10440 &(dev)->mode_config.crtc_list, \
10441 base.head) \
Daniel Vetter0973f182013-04-19 11:25:33 +020010442 if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +020010443
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010444static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020010445intel_pipe_config_compare(struct drm_device *dev,
10446 struct intel_crtc_config *current_config,
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010447 struct intel_crtc_config *pipe_config)
10448{
Daniel Vetter66e985c2013-06-05 13:34:20 +020010449#define PIPE_CONF_CHECK_X(name) \
10450 if (current_config->name != pipe_config->name) { \
10451 DRM_ERROR("mismatch in " #name " " \
10452 "(expected 0x%08x, found 0x%08x)\n", \
10453 current_config->name, \
10454 pipe_config->name); \
10455 return false; \
10456 }
10457
Daniel Vetter08a24032013-04-19 11:25:34 +020010458#define PIPE_CONF_CHECK_I(name) \
10459 if (current_config->name != pipe_config->name) { \
10460 DRM_ERROR("mismatch in " #name " " \
10461 "(expected %i, found %i)\n", \
10462 current_config->name, \
10463 pipe_config->name); \
10464 return false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +010010465 }
10466
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010467/* This is required for BDW+ where there is only one set of registers for
10468 * switching between high and low RR.
10469 * This macro can be used whenever a comparison has to be made between one
10470 * hw state and multiple sw state variables.
10471 */
10472#define PIPE_CONF_CHECK_I_ALT(name, alt_name) \
10473 if ((current_config->name != pipe_config->name) && \
10474 (current_config->alt_name != pipe_config->name)) { \
10475 DRM_ERROR("mismatch in " #name " " \
10476 "(expected %i or %i, found %i)\n", \
10477 current_config->name, \
10478 current_config->alt_name, \
10479 pipe_config->name); \
10480 return false; \
10481 }
10482
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010483#define PIPE_CONF_CHECK_FLAGS(name, mask) \
10484 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Jesse Barnes6f024882013-07-01 10:19:09 -070010485 DRM_ERROR("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010486 "(expected %i, found %i)\n", \
10487 current_config->name & (mask), \
10488 pipe_config->name & (mask)); \
10489 return false; \
10490 }
10491
Ville Syrjälä5e550652013-09-06 23:29:07 +030010492#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
10493 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
10494 DRM_ERROR("mismatch in " #name " " \
10495 "(expected %i, found %i)\n", \
10496 current_config->name, \
10497 pipe_config->name); \
10498 return false; \
10499 }
10500
Daniel Vetterbb760062013-06-06 14:55:52 +020010501#define PIPE_CONF_QUIRK(quirk) \
10502 ((current_config->quirks | pipe_config->quirks) & (quirk))
10503
Daniel Vettereccb1402013-05-22 00:50:22 +020010504 PIPE_CONF_CHECK_I(cpu_transcoder);
10505
Daniel Vetter08a24032013-04-19 11:25:34 +020010506 PIPE_CONF_CHECK_I(has_pch_encoder);
10507 PIPE_CONF_CHECK_I(fdi_lanes);
Daniel Vetter72419202013-04-04 13:28:53 +020010508 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
10509 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
10510 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
10511 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
10512 PIPE_CONF_CHECK_I(fdi_m_n.tu);
Daniel Vetter08a24032013-04-19 11:25:34 +020010513
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010514 PIPE_CONF_CHECK_I(has_dp_encoder);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010515
10516 if (INTEL_INFO(dev)->gen < 8) {
10517 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
10518 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
10519 PIPE_CONF_CHECK_I(dp_m_n.link_m);
10520 PIPE_CONF_CHECK_I(dp_m_n.link_n);
10521 PIPE_CONF_CHECK_I(dp_m_n.tu);
10522
10523 if (current_config->has_drrs) {
10524 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_m);
10525 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_n);
10526 PIPE_CONF_CHECK_I(dp_m2_n2.link_m);
10527 PIPE_CONF_CHECK_I(dp_m2_n2.link_n);
10528 PIPE_CONF_CHECK_I(dp_m2_n2.tu);
10529 }
10530 } else {
10531 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_m, dp_m2_n2.gmch_m);
10532 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_n, dp_m2_n2.gmch_n);
10533 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_m, dp_m2_n2.link_m);
10534 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_n, dp_m2_n2.link_n);
10535 PIPE_CONF_CHECK_I_ALT(dp_m_n.tu, dp_m2_n2.tu);
10536 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010537
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010538 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hdisplay);
10539 PIPE_CONF_CHECK_I(adjusted_mode.crtc_htotal);
10540 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_start);
10541 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_end);
10542 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_start);
10543 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_end);
10544
10545 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vdisplay);
10546 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vtotal);
10547 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_start);
10548 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_end);
10549 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_start);
10550 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_end);
10551
Daniel Vetterc93f54c2013-06-27 19:47:19 +020010552 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6897b4b2014-04-24 23:54:47 +020010553 PIPE_CONF_CHECK_I(has_hdmi_sink);
Daniel Vetterb5a9fa02014-04-24 23:54:49 +020010554 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
10555 IS_VALLEYVIEW(dev))
10556 PIPE_CONF_CHECK_I(limited_color_range);
Daniel Vetter6c49f242013-06-06 12:45:25 +020010557
Daniel Vetter9ed109a2014-04-24 23:54:52 +020010558 PIPE_CONF_CHECK_I(has_audio);
10559
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010560 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
10561 DRM_MODE_FLAG_INTERLACE);
10562
Daniel Vetterbb760062013-06-06 14:55:52 +020010563 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
10564 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
10565 DRM_MODE_FLAG_PHSYNC);
10566 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
10567 DRM_MODE_FLAG_NHSYNC);
10568 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
10569 DRM_MODE_FLAG_PVSYNC);
10570 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
10571 DRM_MODE_FLAG_NVSYNC);
10572 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010573
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010574 PIPE_CONF_CHECK_I(pipe_src_w);
10575 PIPE_CONF_CHECK_I(pipe_src_h);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010576
Daniel Vetter99535992014-04-13 12:00:33 +020010577 /*
10578 * FIXME: BIOS likes to set up a cloned config with lvds+external
10579 * screen. Since we don't yet re-compute the pipe config when moving
10580 * just the lvds port away to another pipe the sw tracking won't match.
10581 *
10582 * Proper atomic modesets with recomputed global state will fix this.
10583 * Until then just don't check gmch state for inherited modes.
10584 */
10585 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE)) {
10586 PIPE_CONF_CHECK_I(gmch_pfit.control);
10587 /* pfit ratios are autocomputed by the hw on gen4+ */
10588 if (INTEL_INFO(dev)->gen < 4)
10589 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
10590 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
10591 }
10592
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010593 PIPE_CONF_CHECK_I(pch_pfit.enabled);
10594 if (current_config->pch_pfit.enabled) {
10595 PIPE_CONF_CHECK_I(pch_pfit.pos);
10596 PIPE_CONF_CHECK_I(pch_pfit.size);
10597 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020010598
Jesse Barnese59150d2014-01-07 13:30:45 -080010599 /* BDW+ don't expose a synchronous way to read the state */
10600 if (IS_HASWELL(dev))
10601 PIPE_CONF_CHECK_I(ips_enabled);
Paulo Zanoni42db64e2013-05-31 16:33:22 -030010602
Ville Syrjälä282740f2013-09-04 18:30:03 +030010603 PIPE_CONF_CHECK_I(double_wide);
10604
Daniel Vetter26804af2014-06-25 22:01:55 +030010605 PIPE_CONF_CHECK_X(ddi_pll_sel);
10606
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010607 PIPE_CONF_CHECK_I(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010608 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +020010609 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010610 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
10611 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterd452c5b2014-07-04 11:27:39 -030010612 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010613
Ville Syrjälä42571ae2013-09-06 23:29:00 +030010614 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
10615 PIPE_CONF_CHECK_I(pipe_bpp);
10616
Jesse Barnesa9a7e982014-01-20 14:18:04 -080010617 PIPE_CONF_CHECK_CLOCK_FUZZY(adjusted_mode.crtc_clock);
10618 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
Ville Syrjälä5e550652013-09-06 23:29:07 +030010619
Daniel Vetter66e985c2013-06-05 13:34:20 +020010620#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +020010621#undef PIPE_CONF_CHECK_I
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010622#undef PIPE_CONF_CHECK_I_ALT
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010623#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +030010624#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +020010625#undef PIPE_CONF_QUIRK
Daniel Vetter627eb5a2013-04-29 19:33:42 +020010626
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010627 return true;
10628}
10629
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010630static void
10631check_connector_state(struct drm_device *dev)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010632{
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010633 struct intel_connector *connector;
10634
10635 list_for_each_entry(connector, &dev->mode_config.connector_list,
10636 base.head) {
10637 /* This also checks the encoder/connector hw state with the
10638 * ->get_hw_state callbacks. */
10639 intel_connector_check_state(connector);
10640
10641 WARN(&connector->new_encoder->base != connector->base.encoder,
10642 "connector's staged encoder doesn't match current encoder\n");
10643 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010644}
10645
10646static void
10647check_encoder_state(struct drm_device *dev)
10648{
10649 struct intel_encoder *encoder;
10650 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010651
Damien Lespiaub2784e12014-08-05 11:29:37 +010010652 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010653 bool enabled = false;
10654 bool active = false;
10655 enum pipe pipe, tracked_pipe;
10656
10657 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
10658 encoder->base.base.id,
Jani Nikula8e329a02014-06-03 14:56:21 +030010659 encoder->base.name);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010660
10661 WARN(&encoder->new_crtc->base != encoder->base.crtc,
10662 "encoder's stage crtc doesn't match current crtc\n");
10663 WARN(encoder->connectors_active && !encoder->base.crtc,
10664 "encoder's active_connectors set, but no crtc\n");
10665
10666 list_for_each_entry(connector, &dev->mode_config.connector_list,
10667 base.head) {
10668 if (connector->base.encoder != &encoder->base)
10669 continue;
10670 enabled = true;
10671 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
10672 active = true;
10673 }
Dave Airlie0e32b392014-05-02 14:02:48 +100010674 /*
10675 * for MST connectors if we unplug the connector is gone
10676 * away but the encoder is still connected to a crtc
10677 * until a modeset happens in response to the hotplug.
10678 */
10679 if (!enabled && encoder->base.encoder_type == DRM_MODE_ENCODER_DPMST)
10680 continue;
10681
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010682 WARN(!!encoder->base.crtc != enabled,
10683 "encoder's enabled state mismatch "
10684 "(expected %i, found %i)\n",
10685 !!encoder->base.crtc, enabled);
10686 WARN(active && !encoder->base.crtc,
10687 "active encoder with no crtc\n");
10688
10689 WARN(encoder->connectors_active != active,
10690 "encoder's computed active state doesn't match tracked active state "
10691 "(expected %i, found %i)\n", active, encoder->connectors_active);
10692
10693 active = encoder->get_hw_state(encoder, &pipe);
10694 WARN(active != encoder->connectors_active,
10695 "encoder's hw state doesn't match sw tracking "
10696 "(expected %i, found %i)\n",
10697 encoder->connectors_active, active);
10698
10699 if (!encoder->base.crtc)
10700 continue;
10701
10702 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
10703 WARN(active && pipe != tracked_pipe,
10704 "active encoder's pipe doesn't match"
10705 "(expected %i, found %i)\n",
10706 tracked_pipe, pipe);
10707
10708 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010709}
10710
10711static void
10712check_crtc_state(struct drm_device *dev)
10713{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010714 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010715 struct intel_crtc *crtc;
10716 struct intel_encoder *encoder;
10717 struct intel_crtc_config pipe_config;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010718
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010719 for_each_intel_crtc(dev, crtc) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010720 bool enabled = false;
10721 bool active = false;
10722
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010723 memset(&pipe_config, 0, sizeof(pipe_config));
10724
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010725 DRM_DEBUG_KMS("[CRTC:%d]\n",
10726 crtc->base.base.id);
10727
10728 WARN(crtc->active && !crtc->base.enabled,
10729 "active crtc, but not enabled in sw tracking\n");
10730
Damien Lespiaub2784e12014-08-05 11:29:37 +010010731 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010732 if (encoder->base.crtc != &crtc->base)
10733 continue;
10734 enabled = true;
10735 if (encoder->connectors_active)
10736 active = true;
10737 }
Daniel Vetter6c49f242013-06-06 12:45:25 +020010738
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010739 WARN(active != crtc->active,
10740 "crtc's computed active state doesn't match tracked active state "
10741 "(expected %i, found %i)\n", active, crtc->active);
10742 WARN(enabled != crtc->base.enabled,
10743 "crtc's computed enabled state doesn't match tracked enabled state "
10744 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
10745
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010746 active = dev_priv->display.get_pipe_config(crtc,
10747 &pipe_config);
Daniel Vetterd62cf622013-05-29 10:41:29 +020010748
10749 /* hw state is inconsistent with the pipe A quirk */
10750 if (crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
10751 active = crtc->active;
10752
Damien Lespiaub2784e12014-08-05 11:29:37 +010010753 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä3eaba512013-08-05 17:57:48 +030010754 enum pipe pipe;
Daniel Vetter6c49f242013-06-06 12:45:25 +020010755 if (encoder->base.crtc != &crtc->base)
10756 continue;
Daniel Vetter1d37b682013-11-18 09:00:59 +010010757 if (encoder->get_hw_state(encoder, &pipe))
Daniel Vetter6c49f242013-06-06 12:45:25 +020010758 encoder->get_config(encoder, &pipe_config);
10759 }
10760
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010761 WARN(crtc->active != active,
10762 "crtc active state doesn't match with hw state "
10763 "(expected %i, found %i)\n", crtc->active, active);
10764
Daniel Vetterc0b03412013-05-28 12:05:54 +020010765 if (active &&
10766 !intel_pipe_config_compare(dev, &crtc->config, &pipe_config)) {
10767 WARN(1, "pipe state doesn't match!\n");
10768 intel_dump_pipe_config(crtc, &pipe_config,
10769 "[hw state]");
10770 intel_dump_pipe_config(crtc, &crtc->config,
10771 "[sw state]");
10772 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010773 }
10774}
10775
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010776static void
10777check_shared_dpll_state(struct drm_device *dev)
10778{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010779 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010780 struct intel_crtc *crtc;
10781 struct intel_dpll_hw_state dpll_hw_state;
10782 int i;
Daniel Vetter53589012013-06-05 13:34:16 +020010783
10784 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
10785 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
10786 int enabled_crtcs = 0, active_crtcs = 0;
10787 bool active;
10788
10789 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
10790
10791 DRM_DEBUG_KMS("%s\n", pll->name);
10792
10793 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
10794
10795 WARN(pll->active > pll->refcount,
10796 "more active pll users than references: %i vs %i\n",
10797 pll->active, pll->refcount);
10798 WARN(pll->active && !pll->on,
10799 "pll in active use but not on in sw tracking\n");
Daniel Vetter35c95372013-07-17 06:55:04 +020010800 WARN(pll->on && !pll->active,
10801 "pll in on but not on in use in sw tracking\n");
Daniel Vetter53589012013-06-05 13:34:16 +020010802 WARN(pll->on != active,
10803 "pll on state mismatch (expected %i, found %i)\n",
10804 pll->on, active);
10805
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010806 for_each_intel_crtc(dev, crtc) {
Daniel Vetter53589012013-06-05 13:34:16 +020010807 if (crtc->base.enabled && intel_crtc_to_shared_dpll(crtc) == pll)
10808 enabled_crtcs++;
10809 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
10810 active_crtcs++;
10811 }
10812 WARN(pll->active != active_crtcs,
10813 "pll active crtcs mismatch (expected %i, found %i)\n",
10814 pll->active, active_crtcs);
10815 WARN(pll->refcount != enabled_crtcs,
10816 "pll enabled crtcs mismatch (expected %i, found %i)\n",
10817 pll->refcount, enabled_crtcs);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010818
10819 WARN(pll->on && memcmp(&pll->hw_state, &dpll_hw_state,
10820 sizeof(dpll_hw_state)),
10821 "pll hw state mismatch\n");
Daniel Vetter53589012013-06-05 13:34:16 +020010822 }
Daniel Vettera6778b32012-07-02 09:56:42 +020010823}
10824
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010825void
10826intel_modeset_check_state(struct drm_device *dev)
10827{
10828 check_connector_state(dev);
10829 check_encoder_state(dev);
10830 check_crtc_state(dev);
10831 check_shared_dpll_state(dev);
10832}
10833
Ville Syrjälä18442d02013-09-13 16:00:08 +030010834void ironlake_check_encoder_dotclock(const struct intel_crtc_config *pipe_config,
10835 int dotclock)
10836{
10837 /*
10838 * FDI already provided one idea for the dotclock.
10839 * Yell if the encoder disagrees.
10840 */
Damien Lespiau241bfc32013-09-25 16:45:37 +010010841 WARN(!intel_fuzzy_clock_check(pipe_config->adjusted_mode.crtc_clock, dotclock),
Ville Syrjälä18442d02013-09-13 16:00:08 +030010842 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
Damien Lespiau241bfc32013-09-25 16:45:37 +010010843 pipe_config->adjusted_mode.crtc_clock, dotclock);
Ville Syrjälä18442d02013-09-13 16:00:08 +030010844}
10845
Ville Syrjälä80715b22014-05-15 20:23:23 +030010846static void update_scanline_offset(struct intel_crtc *crtc)
10847{
10848 struct drm_device *dev = crtc->base.dev;
10849
10850 /*
10851 * The scanline counter increments at the leading edge of hsync.
10852 *
10853 * On most platforms it starts counting from vtotal-1 on the
10854 * first active line. That means the scanline counter value is
10855 * always one less than what we would expect. Ie. just after
10856 * start of vblank, which also occurs at start of hsync (on the
10857 * last active line), the scanline counter will read vblank_start-1.
10858 *
10859 * On gen2 the scanline counter starts counting from 1 instead
10860 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
10861 * to keep the value positive), instead of adding one.
10862 *
10863 * On HSW+ the behaviour of the scanline counter depends on the output
10864 * type. For DP ports it behaves like most other platforms, but on HDMI
10865 * there's an extra 1 line difference. So we need to add two instead of
10866 * one to the value.
10867 */
10868 if (IS_GEN2(dev)) {
10869 const struct drm_display_mode *mode = &crtc->config.adjusted_mode;
10870 int vtotal;
10871
10872 vtotal = mode->crtc_vtotal;
10873 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
10874 vtotal /= 2;
10875
10876 crtc->scanline_offset = vtotal - 1;
10877 } else if (HAS_DDI(dev) &&
10878 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI)) {
10879 crtc->scanline_offset = 2;
10880 } else
10881 crtc->scanline_offset = 1;
10882}
10883
Daniel Vetterf30da182013-04-11 20:22:50 +020010884static int __intel_set_mode(struct drm_crtc *crtc,
10885 struct drm_display_mode *mode,
10886 int x, int y, struct drm_framebuffer *fb)
Daniel Vettera6778b32012-07-02 09:56:42 +020010887{
10888 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +030010889 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030010890 struct drm_display_mode *saved_mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010891 struct intel_crtc_config *pipe_config = NULL;
Daniel Vetter25c5b262012-07-08 22:08:04 +020010892 struct intel_crtc *intel_crtc;
10893 unsigned disable_pipes, prepare_pipes, modeset_pipes;
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010894 int ret = 0;
Daniel Vettera6778b32012-07-02 09:56:42 +020010895
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030010896 saved_mode = kmalloc(sizeof(*saved_mode), GFP_KERNEL);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010897 if (!saved_mode)
10898 return -ENOMEM;
Daniel Vettera6778b32012-07-02 09:56:42 +020010899
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010900 intel_modeset_affected_pipes(crtc, &modeset_pipes,
Daniel Vetter25c5b262012-07-08 22:08:04 +020010901 &prepare_pipes, &disable_pipes);
10902
Tim Gardner3ac18232012-12-07 07:54:26 -070010903 *saved_mode = crtc->mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020010904
Daniel Vetter25c5b262012-07-08 22:08:04 +020010905 /* Hack: Because we don't (yet) support global modeset on multiple
10906 * crtcs, we don't keep track of the new mode for more than one crtc.
10907 * Hence simply check whether any bit is set in modeset_pipes in all the
10908 * pieces of code that are not yet converted to deal with mutliple crtcs
10909 * changing their mode at the same time. */
Daniel Vetter25c5b262012-07-08 22:08:04 +020010910 if (modeset_pipes) {
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010911 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010912 if (IS_ERR(pipe_config)) {
10913 ret = PTR_ERR(pipe_config);
10914 pipe_config = NULL;
10915
Tim Gardner3ac18232012-12-07 07:54:26 -070010916 goto out;
Daniel Vetter25c5b262012-07-08 22:08:04 +020010917 }
Daniel Vetterc0b03412013-05-28 12:05:54 +020010918 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
10919 "[modeset]");
Ville Syrjälä50741ab2014-01-10 11:28:07 +020010920 to_intel_crtc(crtc)->new_config = pipe_config;
Daniel Vettera6778b32012-07-02 09:56:42 +020010921 }
10922
Jesse Barnes30a970c2013-11-04 13:48:12 -080010923 /*
10924 * See if the config requires any additional preparation, e.g.
10925 * to adjust global state with pipes off. We need to do this
10926 * here so we can get the modeset_pipe updated config for the new
10927 * mode set on this crtc. For other crtcs we need to use the
10928 * adjusted_mode bits in the crtc directly.
10929 */
Ville Syrjäläc164f832013-11-05 22:34:12 +020010930 if (IS_VALLEYVIEW(dev)) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +020010931 valleyview_modeset_global_pipes(dev, &prepare_pipes);
Jesse Barnes30a970c2013-11-04 13:48:12 -080010932
Ville Syrjäläc164f832013-11-05 22:34:12 +020010933 /* may have added more to prepare_pipes than we should */
10934 prepare_pipes &= ~disable_pipes;
10935 }
10936
Daniel Vetter460da9162013-03-27 00:44:51 +010010937 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
10938 intel_crtc_disable(&intel_crtc->base);
10939
Daniel Vetterea9d7582012-07-10 10:42:52 +020010940 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
10941 if (intel_crtc->base.enabled)
10942 dev_priv->display.crtc_disable(&intel_crtc->base);
10943 }
Daniel Vettera6778b32012-07-02 09:56:42 +020010944
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020010945 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
10946 * to set it here already despite that we pass it down the callchain.
10947 */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010948 if (modeset_pipes) {
Daniel Vetter25c5b262012-07-08 22:08:04 +020010949 crtc->mode = *mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010950 /* mode_set/enable/disable functions rely on a correct pipe
10951 * config. */
10952 to_intel_crtc(crtc)->config = *pipe_config;
Ville Syrjälä50741ab2014-01-10 11:28:07 +020010953 to_intel_crtc(crtc)->new_config = &to_intel_crtc(crtc)->config;
Ville Syrjäläc326c0a2013-10-28 12:53:41 +020010954
10955 /*
10956 * Calculate and store various constants which
10957 * are later needed by vblank and swap-completion
10958 * timestamping. They are derived from true hwmode.
10959 */
10960 drm_calc_timestamping_constants(crtc,
10961 &pipe_config->adjusted_mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010962 }
Daniel Vetter7758a112012-07-08 19:40:39 +020010963
Daniel Vetterea9d7582012-07-10 10:42:52 +020010964 /* Only after disabling all output pipelines that will be changed can we
10965 * update the the output configuration. */
10966 intel_modeset_update_state(dev, prepare_pipes);
10967
Daniel Vetter47fab732012-10-26 10:58:18 +020010968 if (dev_priv->display.modeset_global_resources)
10969 dev_priv->display.modeset_global_resources(dev);
10970
Daniel Vettera6778b32012-07-02 09:56:42 +020010971 /* Set up the DPLL and any encoders state that needs to adjust or depend
10972 * on the DPLL.
10973 */
Daniel Vetter25c5b262012-07-08 22:08:04 +020010974 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
Matt Roper2ff8fde2014-07-08 07:50:07 -070010975 struct drm_framebuffer *old_fb = crtc->primary->fb;
10976 struct drm_i915_gem_object *old_obj = intel_fb_obj(old_fb);
10977 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Daniel Vetter4c107942014-04-24 23:55:05 +020010978
10979 mutex_lock(&dev->struct_mutex);
10980 ret = intel_pin_and_fence_fb_obj(dev,
Daniel Vettera071fa02014-06-18 23:28:09 +020010981 obj,
Daniel Vetter4c107942014-04-24 23:55:05 +020010982 NULL);
10983 if (ret != 0) {
10984 DRM_ERROR("pin & fence failed\n");
10985 mutex_unlock(&dev->struct_mutex);
10986 goto done;
10987 }
Matt Roper2ff8fde2014-07-08 07:50:07 -070010988 if (old_fb)
Daniel Vettera071fa02014-06-18 23:28:09 +020010989 intel_unpin_fb_obj(old_obj);
Daniel Vettera071fa02014-06-18 23:28:09 +020010990 i915_gem_track_fb(old_obj, obj,
10991 INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe));
Daniel Vetter4c107942014-04-24 23:55:05 +020010992 mutex_unlock(&dev->struct_mutex);
10993
10994 crtc->primary->fb = fb;
10995 crtc->x = x;
10996 crtc->y = y;
10997
Daniel Vetter4271b752014-04-24 23:55:00 +020010998 ret = dev_priv->display.crtc_mode_set(&intel_crtc->base,
10999 x, y, fb);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011000 if (ret)
11001 goto done;
Daniel Vettera6778b32012-07-02 09:56:42 +020011002 }
11003
11004 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Ville Syrjälä80715b22014-05-15 20:23:23 +030011005 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
11006 update_scanline_offset(intel_crtc);
11007
Daniel Vetter25c5b262012-07-08 22:08:04 +020011008 dev_priv->display.crtc_enable(&intel_crtc->base);
Ville Syrjälä80715b22014-05-15 20:23:23 +030011009 }
Daniel Vettera6778b32012-07-02 09:56:42 +020011010
Daniel Vettera6778b32012-07-02 09:56:42 +020011011 /* FIXME: add subpixel order */
11012done:
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030011013 if (ret && crtc->enabled)
Tim Gardner3ac18232012-12-07 07:54:26 -070011014 crtc->mode = *saved_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020011015
Tim Gardner3ac18232012-12-07 07:54:26 -070011016out:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011017 kfree(pipe_config);
Tim Gardner3ac18232012-12-07 07:54:26 -070011018 kfree(saved_mode);
Daniel Vettera6778b32012-07-02 09:56:42 +020011019 return ret;
11020}
11021
Damien Lespiaue7457a92013-08-08 22:28:59 +010011022static int intel_set_mode(struct drm_crtc *crtc,
11023 struct drm_display_mode *mode,
11024 int x, int y, struct drm_framebuffer *fb)
Daniel Vetterf30da182013-04-11 20:22:50 +020011025{
11026 int ret;
11027
11028 ret = __intel_set_mode(crtc, mode, x, y, fb);
11029
11030 if (ret == 0)
11031 intel_modeset_check_state(crtc->dev);
11032
11033 return ret;
11034}
11035
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011036void intel_crtc_restore_mode(struct drm_crtc *crtc)
11037{
Matt Roperf4510a22014-04-01 15:22:40 -070011038 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->primary->fb);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011039}
11040
Daniel Vetter25c5b262012-07-08 22:08:04 +020011041#undef for_each_intel_crtc_masked
11042
Daniel Vetterd9e55602012-07-04 22:16:09 +020011043static void intel_set_config_free(struct intel_set_config *config)
11044{
11045 if (!config)
11046 return;
11047
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011048 kfree(config->save_connector_encoders);
11049 kfree(config->save_encoder_crtcs);
Ville Syrjälä76688512014-01-10 11:28:06 +020011050 kfree(config->save_crtc_enabled);
Daniel Vetterd9e55602012-07-04 22:16:09 +020011051 kfree(config);
11052}
11053
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011054static int intel_set_config_save_state(struct drm_device *dev,
11055 struct intel_set_config *config)
11056{
Ville Syrjälä76688512014-01-10 11:28:06 +020011057 struct drm_crtc *crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011058 struct drm_encoder *encoder;
11059 struct drm_connector *connector;
11060 int count;
11061
Ville Syrjälä76688512014-01-10 11:28:06 +020011062 config->save_crtc_enabled =
11063 kcalloc(dev->mode_config.num_crtc,
11064 sizeof(bool), GFP_KERNEL);
11065 if (!config->save_crtc_enabled)
11066 return -ENOMEM;
11067
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011068 config->save_encoder_crtcs =
11069 kcalloc(dev->mode_config.num_encoder,
11070 sizeof(struct drm_crtc *), GFP_KERNEL);
11071 if (!config->save_encoder_crtcs)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011072 return -ENOMEM;
11073
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011074 config->save_connector_encoders =
11075 kcalloc(dev->mode_config.num_connector,
11076 sizeof(struct drm_encoder *), GFP_KERNEL);
11077 if (!config->save_connector_encoders)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011078 return -ENOMEM;
11079
11080 /* Copy data. Note that driver private data is not affected.
11081 * Should anything bad happen only the expected state is
11082 * restored, not the drivers personal bookkeeping.
11083 */
11084 count = 0;
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010011085 for_each_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011086 config->save_crtc_enabled[count++] = crtc->enabled;
11087 }
11088
11089 count = 0;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011090 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011091 config->save_encoder_crtcs[count++] = encoder->crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011092 }
11093
11094 count = 0;
11095 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011096 config->save_connector_encoders[count++] = connector->encoder;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011097 }
11098
11099 return 0;
11100}
11101
11102static void intel_set_config_restore_state(struct drm_device *dev,
11103 struct intel_set_config *config)
11104{
Ville Syrjälä76688512014-01-10 11:28:06 +020011105 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020011106 struct intel_encoder *encoder;
11107 struct intel_connector *connector;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011108 int count;
11109
11110 count = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011111 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011112 crtc->new_enabled = config->save_crtc_enabled[count++];
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011113
11114 if (crtc->new_enabled)
11115 crtc->new_config = &crtc->config;
11116 else
11117 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020011118 }
11119
11120 count = 0;
Damien Lespiaub2784e12014-08-05 11:29:37 +010011121 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011122 encoder->new_crtc =
11123 to_intel_crtc(config->save_encoder_crtcs[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011124 }
11125
11126 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020011127 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
11128 connector->new_encoder =
11129 to_intel_encoder(config->save_connector_encoders[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011130 }
11131}
11132
Imre Deake3de42b2013-05-03 19:44:07 +020011133static bool
Chris Wilson2e57f472013-07-17 12:14:40 +010011134is_crtc_connector_off(struct drm_mode_set *set)
Imre Deake3de42b2013-05-03 19:44:07 +020011135{
11136 int i;
11137
Chris Wilson2e57f472013-07-17 12:14:40 +010011138 if (set->num_connectors == 0)
11139 return false;
11140
11141 if (WARN_ON(set->connectors == NULL))
11142 return false;
11143
11144 for (i = 0; i < set->num_connectors; i++)
11145 if (set->connectors[i]->encoder &&
11146 set->connectors[i]->encoder->crtc == set->crtc &&
11147 set->connectors[i]->dpms != DRM_MODE_DPMS_ON)
Imre Deake3de42b2013-05-03 19:44:07 +020011148 return true;
11149
11150 return false;
11151}
11152
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011153static void
11154intel_set_config_compute_mode_changes(struct drm_mode_set *set,
11155 struct intel_set_config *config)
11156{
11157
11158 /* We should be able to check here if the fb has the same properties
11159 * and then just flip_or_move it */
Chris Wilson2e57f472013-07-17 12:14:40 +010011160 if (is_crtc_connector_off(set)) {
11161 config->mode_changed = true;
Matt Roperf4510a22014-04-01 15:22:40 -070011162 } else if (set->crtc->primary->fb != set->fb) {
Matt Roper3b150f02014-05-29 08:06:53 -070011163 /*
11164 * If we have no fb, we can only flip as long as the crtc is
11165 * active, otherwise we need a full mode set. The crtc may
11166 * be active if we've only disabled the primary plane, or
11167 * in fastboot situations.
11168 */
Matt Roperf4510a22014-04-01 15:22:40 -070011169 if (set->crtc->primary->fb == NULL) {
Jesse Barnes319d9822013-06-26 01:38:19 +030011170 struct intel_crtc *intel_crtc =
11171 to_intel_crtc(set->crtc);
11172
Matt Roper3b150f02014-05-29 08:06:53 -070011173 if (intel_crtc->active) {
Jesse Barnes319d9822013-06-26 01:38:19 +030011174 DRM_DEBUG_KMS("crtc has no fb, will flip\n");
11175 config->fb_changed = true;
11176 } else {
11177 DRM_DEBUG_KMS("inactive crtc, full mode set\n");
11178 config->mode_changed = true;
11179 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011180 } else if (set->fb == NULL) {
11181 config->mode_changed = true;
Daniel Vetter72f49012013-03-28 16:01:35 +010011182 } else if (set->fb->pixel_format !=
Matt Roperf4510a22014-04-01 15:22:40 -070011183 set->crtc->primary->fb->pixel_format) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011184 config->mode_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020011185 } else {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011186 config->fb_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020011187 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011188 }
11189
Daniel Vetter835c5872012-07-10 18:11:08 +020011190 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011191 config->fb_changed = true;
11192
11193 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
11194 DRM_DEBUG_KMS("modes are different, full mode set\n");
11195 drm_mode_debug_printmodeline(&set->crtc->mode);
11196 drm_mode_debug_printmodeline(set->mode);
11197 config->mode_changed = true;
11198 }
Chris Wilsona1d95702013-08-13 18:48:47 +010011199
11200 DRM_DEBUG_KMS("computed changes for [CRTC:%d], mode_changed=%d, fb_changed=%d\n",
11201 set->crtc->base.id, config->mode_changed, config->fb_changed);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011202}
11203
Daniel Vetter2e431052012-07-04 22:42:15 +020011204static int
Daniel Vetter9a935852012-07-05 22:34:27 +020011205intel_modeset_stage_output_state(struct drm_device *dev,
11206 struct drm_mode_set *set,
11207 struct intel_set_config *config)
Daniel Vetter50f56112012-07-02 09:35:43 +020011208{
Daniel Vetter9a935852012-07-05 22:34:27 +020011209 struct intel_connector *connector;
11210 struct intel_encoder *encoder;
Ville Syrjälä76688512014-01-10 11:28:06 +020011211 struct intel_crtc *crtc;
Paulo Zanonif3f08572013-08-12 14:56:53 -030011212 int ro;
Daniel Vetter50f56112012-07-02 09:35:43 +020011213
Damien Lespiau9abdda72013-02-13 13:29:23 +000011214 /* The upper layers ensure that we either disable a crtc or have a list
Daniel Vetter9a935852012-07-05 22:34:27 +020011215 * of connectors. For paranoia, double-check this. */
11216 WARN_ON(!set->fb && (set->num_connectors != 0));
11217 WARN_ON(set->fb && (set->num_connectors == 0));
11218
Daniel Vetter9a935852012-07-05 22:34:27 +020011219 list_for_each_entry(connector, &dev->mode_config.connector_list,
11220 base.head) {
11221 /* Otherwise traverse passed in connector list and get encoders
11222 * for them. */
Daniel Vetter50f56112012-07-02 09:35:43 +020011223 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011224 if (set->connectors[ro] == &connector->base) {
Dave Airlie0e32b392014-05-02 14:02:48 +100011225 connector->new_encoder = intel_find_encoder(connector, to_intel_crtc(set->crtc)->pipe);
Daniel Vetter50f56112012-07-02 09:35:43 +020011226 break;
11227 }
11228 }
11229
Daniel Vetter9a935852012-07-05 22:34:27 +020011230 /* If we disable the crtc, disable all its connectors. Also, if
11231 * the connector is on the changing crtc but not on the new
11232 * connector list, disable it. */
11233 if ((!set->fb || ro == set->num_connectors) &&
11234 connector->base.encoder &&
11235 connector->base.encoder->crtc == set->crtc) {
11236 connector->new_encoder = NULL;
11237
11238 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
11239 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030011240 connector->base.name);
Daniel Vetter9a935852012-07-05 22:34:27 +020011241 }
11242
11243
11244 if (&connector->new_encoder->base != connector->base.encoder) {
Daniel Vetter50f56112012-07-02 09:35:43 +020011245 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011246 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020011247 }
Daniel Vetter9a935852012-07-05 22:34:27 +020011248 }
11249 /* connector->new_encoder is now updated for all connectors. */
11250
11251 /* Update crtc of enabled connectors. */
Daniel Vetter9a935852012-07-05 22:34:27 +020011252 list_for_each_entry(connector, &dev->mode_config.connector_list,
11253 base.head) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011254 struct drm_crtc *new_crtc;
11255
Daniel Vetter9a935852012-07-05 22:34:27 +020011256 if (!connector->new_encoder)
Daniel Vetter50f56112012-07-02 09:35:43 +020011257 continue;
11258
Daniel Vetter9a935852012-07-05 22:34:27 +020011259 new_crtc = connector->new_encoder->base.crtc;
Daniel Vetter50f56112012-07-02 09:35:43 +020011260
11261 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011262 if (set->connectors[ro] == &connector->base)
Daniel Vetter50f56112012-07-02 09:35:43 +020011263 new_crtc = set->crtc;
11264 }
11265
11266 /* Make sure the new CRTC will work with the encoder */
Thierry Reding14509912014-01-13 12:00:22 +010011267 if (!drm_encoder_crtc_ok(&connector->new_encoder->base,
11268 new_crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011269 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +020011270 }
Dave Airlie0e32b392014-05-02 14:02:48 +100011271 connector->new_encoder->new_crtc = to_intel_crtc(new_crtc);
Daniel Vetter9a935852012-07-05 22:34:27 +020011272
11273 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
11274 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030011275 connector->base.name,
Daniel Vetter9a935852012-07-05 22:34:27 +020011276 new_crtc->base.id);
11277 }
11278
11279 /* Check for any encoders that needs to be disabled. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010011280 for_each_intel_encoder(dev, encoder) {
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011281 int num_connectors = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020011282 list_for_each_entry(connector,
11283 &dev->mode_config.connector_list,
11284 base.head) {
11285 if (connector->new_encoder == encoder) {
11286 WARN_ON(!connector->new_encoder->new_crtc);
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011287 num_connectors++;
Daniel Vetter9a935852012-07-05 22:34:27 +020011288 }
11289 }
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011290
11291 if (num_connectors == 0)
11292 encoder->new_crtc = NULL;
11293 else if (num_connectors > 1)
11294 return -EINVAL;
11295
Daniel Vetter9a935852012-07-05 22:34:27 +020011296 /* Only now check for crtc changes so we don't miss encoders
11297 * that will be disabled. */
11298 if (&encoder->new_crtc->base != encoder->base.crtc) {
Daniel Vetter50f56112012-07-02 09:35:43 +020011299 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011300 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020011301 }
11302 }
Daniel Vetter9a935852012-07-05 22:34:27 +020011303 /* Now we've also updated encoder->new_crtc for all encoders. */
Dave Airlie0e32b392014-05-02 14:02:48 +100011304 list_for_each_entry(connector, &dev->mode_config.connector_list,
11305 base.head) {
11306 if (connector->new_encoder)
11307 if (connector->new_encoder != connector->encoder)
11308 connector->encoder = connector->new_encoder;
11309 }
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011310 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011311 crtc->new_enabled = false;
11312
Damien Lespiaub2784e12014-08-05 11:29:37 +010011313 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011314 if (encoder->new_crtc == crtc) {
11315 crtc->new_enabled = true;
11316 break;
11317 }
11318 }
11319
11320 if (crtc->new_enabled != crtc->base.enabled) {
11321 DRM_DEBUG_KMS("crtc %sabled, full mode switch\n",
11322 crtc->new_enabled ? "en" : "dis");
11323 config->mode_changed = true;
11324 }
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011325
11326 if (crtc->new_enabled)
11327 crtc->new_config = &crtc->config;
11328 else
11329 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020011330 }
11331
Daniel Vetter2e431052012-07-04 22:42:15 +020011332 return 0;
11333}
11334
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011335static void disable_crtc_nofb(struct intel_crtc *crtc)
11336{
11337 struct drm_device *dev = crtc->base.dev;
11338 struct intel_encoder *encoder;
11339 struct intel_connector *connector;
11340
11341 DRM_DEBUG_KMS("Trying to restore without FB -> disabling pipe %c\n",
11342 pipe_name(crtc->pipe));
11343
11344 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
11345 if (connector->new_encoder &&
11346 connector->new_encoder->new_crtc == crtc)
11347 connector->new_encoder = NULL;
11348 }
11349
Damien Lespiaub2784e12014-08-05 11:29:37 +010011350 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011351 if (encoder->new_crtc == crtc)
11352 encoder->new_crtc = NULL;
11353 }
11354
11355 crtc->new_enabled = false;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011356 crtc->new_config = NULL;
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011357}
11358
Daniel Vetter2e431052012-07-04 22:42:15 +020011359static int intel_crtc_set_config(struct drm_mode_set *set)
11360{
11361 struct drm_device *dev;
Daniel Vetter2e431052012-07-04 22:42:15 +020011362 struct drm_mode_set save_set;
11363 struct intel_set_config *config;
11364 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +020011365
Daniel Vetter8d3e3752012-07-05 16:09:09 +020011366 BUG_ON(!set);
11367 BUG_ON(!set->crtc);
11368 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +020011369
Daniel Vetter7e53f3a2013-01-21 10:52:17 +010011370 /* Enforce sane interface api - has been abused by the fb helper. */
11371 BUG_ON(!set->mode && set->fb);
11372 BUG_ON(set->fb && set->num_connectors == 0);
Daniel Vetter431e50f2012-07-10 17:53:42 +020011373
Daniel Vetter2e431052012-07-04 22:42:15 +020011374 if (set->fb) {
11375 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
11376 set->crtc->base.id, set->fb->base.id,
11377 (int)set->num_connectors, set->x, set->y);
11378 } else {
11379 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +020011380 }
11381
11382 dev = set->crtc->dev;
11383
11384 ret = -ENOMEM;
11385 config = kzalloc(sizeof(*config), GFP_KERNEL);
11386 if (!config)
11387 goto out_config;
11388
11389 ret = intel_set_config_save_state(dev, config);
11390 if (ret)
11391 goto out_config;
11392
11393 save_set.crtc = set->crtc;
11394 save_set.mode = &set->crtc->mode;
11395 save_set.x = set->crtc->x;
11396 save_set.y = set->crtc->y;
Matt Roperf4510a22014-04-01 15:22:40 -070011397 save_set.fb = set->crtc->primary->fb;
Daniel Vetter2e431052012-07-04 22:42:15 +020011398
11399 /* Compute whether we need a full modeset, only an fb base update or no
11400 * change at all. In the future we might also check whether only the
11401 * mode changed, e.g. for LVDS where we only change the panel fitter in
11402 * such cases. */
11403 intel_set_config_compute_mode_changes(set, config);
11404
Daniel Vetter9a935852012-07-05 22:34:27 +020011405 ret = intel_modeset_stage_output_state(dev, set, config);
Daniel Vetter2e431052012-07-04 22:42:15 +020011406 if (ret)
11407 goto fail;
11408
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011409 if (config->mode_changed) {
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011410 ret = intel_set_mode(set->crtc, set->mode,
11411 set->x, set->y, set->fb);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011412 } else if (config->fb_changed) {
Matt Roper3b150f02014-05-29 08:06:53 -070011413 struct intel_crtc *intel_crtc = to_intel_crtc(set->crtc);
11414
Ville Syrjälä4878cae2013-02-18 19:08:48 +020011415 intel_crtc_wait_for_pending_flips(set->crtc);
11416
Daniel Vetter4f660f42012-07-02 09:47:37 +020011417 ret = intel_pipe_set_base(set->crtc,
Daniel Vetter94352cf2012-07-05 22:51:56 +020011418 set->x, set->y, set->fb);
Matt Roper3b150f02014-05-29 08:06:53 -070011419
11420 /*
11421 * We need to make sure the primary plane is re-enabled if it
11422 * has previously been turned off.
11423 */
11424 if (!intel_crtc->primary_enabled && ret == 0) {
11425 WARN_ON(!intel_crtc->active);
Ville Syrjäläfdd508a2014-08-08 21:51:11 +030011426 intel_enable_primary_hw_plane(set->crtc->primary, set->crtc);
Matt Roper3b150f02014-05-29 08:06:53 -070011427 }
11428
Jesse Barnes7ca51a32014-01-07 13:50:49 -080011429 /*
11430 * In the fastboot case this may be our only check of the
11431 * state after boot. It would be better to only do it on
11432 * the first update, but we don't have a nice way of doing that
11433 * (and really, set_config isn't used much for high freq page
11434 * flipping, so increasing its cost here shouldn't be a big
11435 * deal).
11436 */
Jani Nikulad330a952014-01-21 11:24:25 +020011437 if (i915.fastboot && ret == 0)
Jesse Barnes7ca51a32014-01-07 13:50:49 -080011438 intel_modeset_check_state(set->crtc->dev);
Daniel Vetter50f56112012-07-02 09:35:43 +020011439 }
11440
Chris Wilson2d05eae2013-05-03 17:36:25 +010011441 if (ret) {
Daniel Vetterbf67dfe2013-06-25 11:06:52 +020011442 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
11443 set->crtc->base.id, ret);
Daniel Vetter50f56112012-07-02 09:35:43 +020011444fail:
Chris Wilson2d05eae2013-05-03 17:36:25 +010011445 intel_set_config_restore_state(dev, config);
Daniel Vetter50f56112012-07-02 09:35:43 +020011446
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011447 /*
11448 * HACK: if the pipe was on, but we didn't have a framebuffer,
11449 * force the pipe off to avoid oopsing in the modeset code
11450 * due to fb==NULL. This should only happen during boot since
11451 * we don't yet reconstruct the FB from the hardware state.
11452 */
11453 if (to_intel_crtc(save_set.crtc)->new_enabled && !save_set.fb)
11454 disable_crtc_nofb(to_intel_crtc(save_set.crtc));
11455
Chris Wilson2d05eae2013-05-03 17:36:25 +010011456 /* Try to restore the config */
11457 if (config->mode_changed &&
11458 intel_set_mode(save_set.crtc, save_set.mode,
11459 save_set.x, save_set.y, save_set.fb))
11460 DRM_ERROR("failed to restore config after modeset failure\n");
11461 }
Daniel Vetter50f56112012-07-02 09:35:43 +020011462
Daniel Vetterd9e55602012-07-04 22:16:09 +020011463out_config:
11464 intel_set_config_free(config);
Daniel Vetter50f56112012-07-02 09:35:43 +020011465 return ret;
11466}
11467
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011468static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011469 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +020011470 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011471 .destroy = intel_crtc_destroy,
11472 .page_flip = intel_crtc_page_flip,
11473};
11474
Daniel Vetter53589012013-06-05 13:34:16 +020011475static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
11476 struct intel_shared_dpll *pll,
11477 struct intel_dpll_hw_state *hw_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011478{
Daniel Vetter53589012013-06-05 13:34:16 +020011479 uint32_t val;
11480
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030011481 if (!intel_display_power_enabled(dev_priv, POWER_DOMAIN_PLLS))
11482 return false;
11483
Daniel Vetter53589012013-06-05 13:34:16 +020011484 val = I915_READ(PCH_DPLL(pll->id));
Daniel Vetter66e985c2013-06-05 13:34:20 +020011485 hw_state->dpll = val;
11486 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
11487 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
Daniel Vetter53589012013-06-05 13:34:16 +020011488
11489 return val & DPLL_VCO_ENABLE;
11490}
11491
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011492static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
11493 struct intel_shared_dpll *pll)
11494{
11495 I915_WRITE(PCH_FP0(pll->id), pll->hw_state.fp0);
11496 I915_WRITE(PCH_FP1(pll->id), pll->hw_state.fp1);
11497}
11498
Daniel Vettere7b903d2013-06-05 13:34:14 +020011499static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
11500 struct intel_shared_dpll *pll)
11501{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011502 /* PCH refclock must be enabled first */
Paulo Zanoni89eff4b2014-01-08 11:12:28 -020011503 ibx_assert_pch_refclk_enabled(dev_priv);
Daniel Vettere7b903d2013-06-05 13:34:14 +020011504
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011505 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
11506
11507 /* Wait for the clocks to stabilize. */
11508 POSTING_READ(PCH_DPLL(pll->id));
11509 udelay(150);
11510
11511 /* The pixel multiplier can only be updated once the
11512 * DPLL is enabled and the clocks are stable.
11513 *
11514 * So write it again.
11515 */
11516 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
11517 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020011518 udelay(200);
11519}
11520
11521static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
11522 struct intel_shared_dpll *pll)
11523{
11524 struct drm_device *dev = dev_priv->dev;
11525 struct intel_crtc *crtc;
Daniel Vettere7b903d2013-06-05 13:34:14 +020011526
11527 /* Make sure no transcoder isn't still depending on us. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011528 for_each_intel_crtc(dev, crtc) {
Daniel Vettere7b903d2013-06-05 13:34:14 +020011529 if (intel_crtc_to_shared_dpll(crtc) == pll)
11530 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
11531 }
11532
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011533 I915_WRITE(PCH_DPLL(pll->id), 0);
11534 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020011535 udelay(200);
11536}
11537
Daniel Vetter46edb022013-06-05 13:34:12 +020011538static char *ibx_pch_dpll_names[] = {
11539 "PCH DPLL A",
11540 "PCH DPLL B",
11541};
11542
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011543static void ibx_pch_dpll_init(struct drm_device *dev)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011544{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011545 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011546 int i;
11547
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011548 dev_priv->num_shared_dpll = 2;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011549
Daniel Vettere72f9fb2013-06-05 13:34:06 +020011550 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
Daniel Vetter46edb022013-06-05 13:34:12 +020011551 dev_priv->shared_dplls[i].id = i;
11552 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011553 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
Daniel Vettere7b903d2013-06-05 13:34:14 +020011554 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
11555 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
Daniel Vetter53589012013-06-05 13:34:16 +020011556 dev_priv->shared_dplls[i].get_hw_state =
11557 ibx_pch_dpll_get_hw_state;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011558 }
11559}
11560
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011561static void intel_shared_dpll_init(struct drm_device *dev)
11562{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011563 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011564
Daniel Vetter9cd86932014-06-25 22:01:57 +030011565 if (HAS_DDI(dev))
11566 intel_ddi_pll_init(dev);
11567 else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011568 ibx_pch_dpll_init(dev);
11569 else
11570 dev_priv->num_shared_dpll = 0;
11571
11572 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011573}
11574
Matt Roper465c1202014-05-29 08:06:54 -070011575static int
11576intel_primary_plane_disable(struct drm_plane *plane)
11577{
11578 struct drm_device *dev = plane->dev;
Matt Roper465c1202014-05-29 08:06:54 -070011579 struct intel_crtc *intel_crtc;
11580
11581 if (!plane->fb)
11582 return 0;
11583
11584 BUG_ON(!plane->crtc);
11585
11586 intel_crtc = to_intel_crtc(plane->crtc);
11587
11588 /*
11589 * Even though we checked plane->fb above, it's still possible that
11590 * the primary plane has been implicitly disabled because the crtc
11591 * coordinates given weren't visible, or because we detected
11592 * that it was 100% covered by a sprite plane. Or, the CRTC may be
11593 * off and we've set a fb, but haven't actually turned on the CRTC yet.
11594 * In either case, we need to unpin the FB and let the fb pointer get
11595 * updated, but otherwise we don't need to touch the hardware.
11596 */
11597 if (!intel_crtc->primary_enabled)
11598 goto disable_unpin;
11599
11600 intel_crtc_wait_for_pending_flips(plane->crtc);
Ville Syrjäläfdd508a2014-08-08 21:51:11 +030011601 intel_disable_primary_hw_plane(plane, plane->crtc);
11602
Matt Roper465c1202014-05-29 08:06:54 -070011603disable_unpin:
Matt Roper4c345742014-07-09 16:22:10 -070011604 mutex_lock(&dev->struct_mutex);
Matt Roper2ff8fde2014-07-08 07:50:07 -070011605 i915_gem_track_fb(intel_fb_obj(plane->fb), NULL,
Daniel Vettera071fa02014-06-18 23:28:09 +020011606 INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe));
Matt Roper2ff8fde2014-07-08 07:50:07 -070011607 intel_unpin_fb_obj(intel_fb_obj(plane->fb));
Matt Roper4c345742014-07-09 16:22:10 -070011608 mutex_unlock(&dev->struct_mutex);
Matt Roper465c1202014-05-29 08:06:54 -070011609 plane->fb = NULL;
11610
11611 return 0;
11612}
11613
11614static int
11615intel_primary_plane_setplane(struct drm_plane *plane, struct drm_crtc *crtc,
11616 struct drm_framebuffer *fb, int crtc_x, int crtc_y,
11617 unsigned int crtc_w, unsigned int crtc_h,
11618 uint32_t src_x, uint32_t src_y,
11619 uint32_t src_w, uint32_t src_h)
11620{
11621 struct drm_device *dev = crtc->dev;
Sonika Jindal48404c12014-08-22 14:06:04 +053011622 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roper465c1202014-05-29 08:06:54 -070011623 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper2ff8fde2014-07-08 07:50:07 -070011624 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
11625 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->fb);
Matt Roper465c1202014-05-29 08:06:54 -070011626 struct drm_rect dest = {
11627 /* integer pixels */
11628 .x1 = crtc_x,
11629 .y1 = crtc_y,
11630 .x2 = crtc_x + crtc_w,
11631 .y2 = crtc_y + crtc_h,
11632 };
11633 struct drm_rect src = {
11634 /* 16.16 fixed point */
11635 .x1 = src_x,
11636 .y1 = src_y,
11637 .x2 = src_x + src_w,
11638 .y2 = src_y + src_h,
11639 };
11640 const struct drm_rect clip = {
11641 /* integer pixels */
11642 .x2 = intel_crtc->active ? intel_crtc->config.pipe_src_w : 0,
11643 .y2 = intel_crtc->active ? intel_crtc->config.pipe_src_h : 0,
11644 };
Sonika Jindalce54d852014-08-21 11:44:39 +053011645 const struct {
11646 int crtc_x, crtc_y;
11647 unsigned int crtc_w, crtc_h;
11648 uint32_t src_x, src_y, src_w, src_h;
11649 } orig = {
11650 .crtc_x = crtc_x,
11651 .crtc_y = crtc_y,
11652 .crtc_w = crtc_w,
11653 .crtc_h = crtc_h,
11654 .src_x = src_x,
11655 .src_y = src_y,
11656 .src_w = src_w,
11657 .src_h = src_h,
11658 };
11659 struct intel_plane *intel_plane = to_intel_plane(plane);
Matt Roper465c1202014-05-29 08:06:54 -070011660 bool visible;
11661 int ret;
11662
11663 ret = drm_plane_helper_check_update(plane, crtc, fb,
11664 &src, &dest, &clip,
11665 DRM_PLANE_HELPER_NO_SCALING,
11666 DRM_PLANE_HELPER_NO_SCALING,
11667 false, true, &visible);
11668
11669 if (ret)
11670 return ret;
11671
11672 /*
11673 * If the CRTC isn't enabled, we're just pinning the framebuffer,
11674 * updating the fb pointer, and returning without touching the
11675 * hardware. This allows us to later do a drmModeSetCrtc with fb=-1 to
11676 * turn on the display with all planes setup as desired.
11677 */
11678 if (!crtc->enabled) {
Matt Roper4c345742014-07-09 16:22:10 -070011679 mutex_lock(&dev->struct_mutex);
11680
Matt Roper465c1202014-05-29 08:06:54 -070011681 /*
11682 * If we already called setplane while the crtc was disabled,
11683 * we may have an fb pinned; unpin it.
11684 */
11685 if (plane->fb)
Daniel Vettera071fa02014-06-18 23:28:09 +020011686 intel_unpin_fb_obj(old_obj);
11687
11688 i915_gem_track_fb(old_obj, obj,
11689 INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe));
Matt Roper465c1202014-05-29 08:06:54 -070011690
11691 /* Pin and return without programming hardware */
Matt Roper4c345742014-07-09 16:22:10 -070011692 ret = intel_pin_and_fence_fb_obj(dev, obj, NULL);
11693 mutex_unlock(&dev->struct_mutex);
11694
11695 return ret;
Matt Roper465c1202014-05-29 08:06:54 -070011696 }
11697
11698 intel_crtc_wait_for_pending_flips(crtc);
11699
11700 /*
11701 * If clipping results in a non-visible primary plane, we'll disable
11702 * the primary plane. Note that this is a bit different than what
11703 * happens if userspace explicitly disables the plane by passing fb=0
11704 * because plane->fb still gets set and pinned.
11705 */
11706 if (!visible) {
Matt Roper4c345742014-07-09 16:22:10 -070011707 mutex_lock(&dev->struct_mutex);
11708
Matt Roper465c1202014-05-29 08:06:54 -070011709 /*
11710 * Try to pin the new fb first so that we can bail out if we
11711 * fail.
11712 */
11713 if (plane->fb != fb) {
Daniel Vettera071fa02014-06-18 23:28:09 +020011714 ret = intel_pin_and_fence_fb_obj(dev, obj, NULL);
Matt Roper4c345742014-07-09 16:22:10 -070011715 if (ret) {
11716 mutex_unlock(&dev->struct_mutex);
Matt Roper465c1202014-05-29 08:06:54 -070011717 return ret;
Matt Roper4c345742014-07-09 16:22:10 -070011718 }
Matt Roper465c1202014-05-29 08:06:54 -070011719 }
11720
Daniel Vettera071fa02014-06-18 23:28:09 +020011721 i915_gem_track_fb(old_obj, obj,
11722 INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe));
11723
Matt Roper465c1202014-05-29 08:06:54 -070011724 if (intel_crtc->primary_enabled)
Ville Syrjäläfdd508a2014-08-08 21:51:11 +030011725 intel_disable_primary_hw_plane(plane, crtc);
Matt Roper465c1202014-05-29 08:06:54 -070011726
11727
11728 if (plane->fb != fb)
11729 if (plane->fb)
Daniel Vettera071fa02014-06-18 23:28:09 +020011730 intel_unpin_fb_obj(old_obj);
Matt Roper465c1202014-05-29 08:06:54 -070011731
Matt Roper4c345742014-07-09 16:22:10 -070011732 mutex_unlock(&dev->struct_mutex);
11733
Sonika Jindalce54d852014-08-21 11:44:39 +053011734 } else {
Sonika Jindal48404c12014-08-22 14:06:04 +053011735 if (intel_crtc && intel_crtc->active &&
11736 intel_crtc->primary_enabled) {
11737 /*
11738 * FBC does not work on some platforms for rotated
11739 * planes, so disable it when rotation is not 0 and
11740 * update it when rotation is set back to 0.
11741 *
11742 * FIXME: This is redundant with the fbc update done in
11743 * the primary plane enable function except that that
11744 * one is done too late. We eventually need to unify
11745 * this.
11746 */
11747 if (INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev) &&
11748 dev_priv->fbc.plane == intel_crtc->plane &&
11749 intel_plane->rotation != BIT(DRM_ROTATE_0)) {
11750 intel_disable_fbc(dev);
11751 }
11752 }
Sonika Jindalce54d852014-08-21 11:44:39 +053011753 ret = intel_pipe_set_base(crtc, src.x1, src.y1, fb);
11754 if (ret)
11755 return ret;
11756
11757 if (!intel_crtc->primary_enabled)
11758 intel_enable_primary_hw_plane(plane, crtc);
Matt Roper465c1202014-05-29 08:06:54 -070011759 }
11760
Sonika Jindalce54d852014-08-21 11:44:39 +053011761 intel_plane->crtc_x = orig.crtc_x;
11762 intel_plane->crtc_y = orig.crtc_y;
11763 intel_plane->crtc_w = orig.crtc_w;
11764 intel_plane->crtc_h = orig.crtc_h;
11765 intel_plane->src_x = orig.src_x;
11766 intel_plane->src_y = orig.src_y;
11767 intel_plane->src_w = orig.src_w;
11768 intel_plane->src_h = orig.src_h;
11769 intel_plane->obj = obj;
Matt Roper465c1202014-05-29 08:06:54 -070011770
11771 return 0;
11772}
11773
Matt Roper3d7d6512014-06-10 08:28:13 -070011774/* Common destruction function for both primary and cursor planes */
11775static void intel_plane_destroy(struct drm_plane *plane)
Matt Roper465c1202014-05-29 08:06:54 -070011776{
11777 struct intel_plane *intel_plane = to_intel_plane(plane);
11778 drm_plane_cleanup(plane);
11779 kfree(intel_plane);
11780}
11781
11782static const struct drm_plane_funcs intel_primary_plane_funcs = {
11783 .update_plane = intel_primary_plane_setplane,
11784 .disable_plane = intel_primary_plane_disable,
Matt Roper3d7d6512014-06-10 08:28:13 -070011785 .destroy = intel_plane_destroy,
Sonika Jindal48404c12014-08-22 14:06:04 +053011786 .set_property = intel_plane_set_property
Matt Roper465c1202014-05-29 08:06:54 -070011787};
11788
11789static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
11790 int pipe)
11791{
11792 struct intel_plane *primary;
11793 const uint32_t *intel_primary_formats;
11794 int num_formats;
11795
11796 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
11797 if (primary == NULL)
11798 return NULL;
11799
11800 primary->can_scale = false;
11801 primary->max_downscale = 1;
11802 primary->pipe = pipe;
11803 primary->plane = pipe;
Sonika Jindal48404c12014-08-22 14:06:04 +053011804 primary->rotation = BIT(DRM_ROTATE_0);
Matt Roper465c1202014-05-29 08:06:54 -070011805 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
11806 primary->plane = !pipe;
11807
11808 if (INTEL_INFO(dev)->gen <= 3) {
11809 intel_primary_formats = intel_primary_formats_gen2;
11810 num_formats = ARRAY_SIZE(intel_primary_formats_gen2);
11811 } else {
11812 intel_primary_formats = intel_primary_formats_gen4;
11813 num_formats = ARRAY_SIZE(intel_primary_formats_gen4);
11814 }
11815
11816 drm_universal_plane_init(dev, &primary->base, 0,
11817 &intel_primary_plane_funcs,
11818 intel_primary_formats, num_formats,
11819 DRM_PLANE_TYPE_PRIMARY);
Sonika Jindal48404c12014-08-22 14:06:04 +053011820
11821 if (INTEL_INFO(dev)->gen >= 4) {
11822 if (!dev->mode_config.rotation_property)
11823 dev->mode_config.rotation_property =
11824 drm_mode_create_rotation_property(dev,
11825 BIT(DRM_ROTATE_0) |
11826 BIT(DRM_ROTATE_180));
11827 if (dev->mode_config.rotation_property)
11828 drm_object_attach_property(&primary->base.base,
11829 dev->mode_config.rotation_property,
11830 primary->rotation);
11831 }
11832
Matt Roper465c1202014-05-29 08:06:54 -070011833 return &primary->base;
11834}
11835
Matt Roper3d7d6512014-06-10 08:28:13 -070011836static int
11837intel_cursor_plane_disable(struct drm_plane *plane)
11838{
11839 if (!plane->fb)
11840 return 0;
11841
11842 BUG_ON(!plane->crtc);
11843
11844 return intel_crtc_cursor_set_obj(plane->crtc, NULL, 0, 0);
11845}
11846
11847static int
11848intel_cursor_plane_update(struct drm_plane *plane, struct drm_crtc *crtc,
11849 struct drm_framebuffer *fb, int crtc_x, int crtc_y,
11850 unsigned int crtc_w, unsigned int crtc_h,
11851 uint32_t src_x, uint32_t src_y,
11852 uint32_t src_w, uint32_t src_h)
11853{
11854 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11855 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
11856 struct drm_i915_gem_object *obj = intel_fb->obj;
11857 struct drm_rect dest = {
11858 /* integer pixels */
11859 .x1 = crtc_x,
11860 .y1 = crtc_y,
11861 .x2 = crtc_x + crtc_w,
11862 .y2 = crtc_y + crtc_h,
11863 };
11864 struct drm_rect src = {
11865 /* 16.16 fixed point */
11866 .x1 = src_x,
11867 .y1 = src_y,
11868 .x2 = src_x + src_w,
11869 .y2 = src_y + src_h,
11870 };
11871 const struct drm_rect clip = {
11872 /* integer pixels */
Ville Syrjälä1add1432014-08-12 19:39:52 +030011873 .x2 = intel_crtc->active ? intel_crtc->config.pipe_src_w : 0,
11874 .y2 = intel_crtc->active ? intel_crtc->config.pipe_src_h : 0,
Matt Roper3d7d6512014-06-10 08:28:13 -070011875 };
11876 bool visible;
11877 int ret;
11878
11879 ret = drm_plane_helper_check_update(plane, crtc, fb,
11880 &src, &dest, &clip,
11881 DRM_PLANE_HELPER_NO_SCALING,
11882 DRM_PLANE_HELPER_NO_SCALING,
11883 true, true, &visible);
11884 if (ret)
11885 return ret;
11886
11887 crtc->cursor_x = crtc_x;
11888 crtc->cursor_y = crtc_y;
11889 if (fb != crtc->cursor->fb) {
11890 return intel_crtc_cursor_set_obj(crtc, obj, crtc_w, crtc_h);
11891 } else {
11892 intel_crtc_update_cursor(crtc, visible);
Daniel Vetter4ed91092014-08-08 20:27:01 +020011893
11894 intel_frontbuffer_flip(crtc->dev,
11895 INTEL_FRONTBUFFER_CURSOR(intel_crtc->pipe));
11896
Matt Roper3d7d6512014-06-10 08:28:13 -070011897 return 0;
11898 }
11899}
11900static const struct drm_plane_funcs intel_cursor_plane_funcs = {
11901 .update_plane = intel_cursor_plane_update,
11902 .disable_plane = intel_cursor_plane_disable,
11903 .destroy = intel_plane_destroy,
11904};
11905
11906static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
11907 int pipe)
11908{
11909 struct intel_plane *cursor;
11910
11911 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
11912 if (cursor == NULL)
11913 return NULL;
11914
11915 cursor->can_scale = false;
11916 cursor->max_downscale = 1;
11917 cursor->pipe = pipe;
11918 cursor->plane = pipe;
11919
11920 drm_universal_plane_init(dev, &cursor->base, 0,
11921 &intel_cursor_plane_funcs,
11922 intel_cursor_formats,
11923 ARRAY_SIZE(intel_cursor_formats),
11924 DRM_PLANE_TYPE_CURSOR);
11925 return &cursor->base;
11926}
11927
Hannes Ederb358d0a2008-12-18 21:18:47 +010011928static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -080011929{
Jani Nikulafbee40d2014-03-31 14:27:18 +030011930 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080011931 struct intel_crtc *intel_crtc;
Matt Roper3d7d6512014-06-10 08:28:13 -070011932 struct drm_plane *primary = NULL;
11933 struct drm_plane *cursor = NULL;
Matt Roper465c1202014-05-29 08:06:54 -070011934 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080011935
Daniel Vetter955382f2013-09-19 14:05:45 +020011936 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -080011937 if (intel_crtc == NULL)
11938 return;
11939
Matt Roper465c1202014-05-29 08:06:54 -070011940 primary = intel_primary_plane_create(dev, pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070011941 if (!primary)
11942 goto fail;
11943
11944 cursor = intel_cursor_plane_create(dev, pipe);
11945 if (!cursor)
11946 goto fail;
11947
Matt Roper465c1202014-05-29 08:06:54 -070011948 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
Matt Roper3d7d6512014-06-10 08:28:13 -070011949 cursor, &intel_crtc_funcs);
11950 if (ret)
11951 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080011952
11953 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -080011954 for (i = 0; i < 256; i++) {
11955 intel_crtc->lut_r[i] = i;
11956 intel_crtc->lut_g[i] = i;
11957 intel_crtc->lut_b[i] = i;
11958 }
11959
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020011960 /*
11961 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
Daniel Vetter8c0f92e2014-06-16 02:08:26 +020011962 * is hooked to pipe B. Hence we want plane A feeding pipe B.
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020011963 */
Jesse Barnes80824002009-09-10 15:28:06 -070011964 intel_crtc->pipe = pipe;
11965 intel_crtc->plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +010011966 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
Zhao Yakui28c97732009-10-09 11:39:41 +080011967 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +010011968 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -070011969 }
11970
Chris Wilson4b0e3332014-05-30 16:35:26 +030011971 intel_crtc->cursor_base = ~0;
11972 intel_crtc->cursor_cntl = ~0;
Ville Syrjälädc41c152014-08-13 11:57:05 +030011973 intel_crtc->cursor_size = ~0;
Chris Wilson4b0e3332014-05-30 16:35:26 +030011974
Jesse Barnes22fd0fa2009-12-02 13:42:53 -080011975 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
11976 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
11977 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
11978 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
11979
Jesse Barnes79e53942008-11-07 14:24:08 -080011980 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Daniel Vetter87b6b102014-05-15 15:33:46 +020011981
11982 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070011983 return;
11984
11985fail:
11986 if (primary)
11987 drm_plane_cleanup(primary);
11988 if (cursor)
11989 drm_plane_cleanup(cursor);
11990 kfree(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -080011991}
11992
Jesse Barnes752aa882013-10-31 18:55:49 +020011993enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
11994{
11995 struct drm_encoder *encoder = connector->base.encoder;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020011996 struct drm_device *dev = connector->base.dev;
Jesse Barnes752aa882013-10-31 18:55:49 +020011997
Rob Clark51fd3712013-11-19 12:10:12 -050011998 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Jesse Barnes752aa882013-10-31 18:55:49 +020011999
12000 if (!encoder)
12001 return INVALID_PIPE;
12002
12003 return to_intel_crtc(encoder->crtc)->pipe;
12004}
12005
Carl Worth08d7b3d2009-04-29 14:43:54 -070012006int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +000012007 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -070012008{
Carl Worth08d7b3d2009-04-29 14:43:54 -070012009 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Rob Clark7707e652014-07-17 23:30:04 -040012010 struct drm_crtc *drmmode_crtc;
Daniel Vetterc05422d2009-08-11 16:05:30 +020012011 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012012
Daniel Vetter1cff8f62012-04-24 09:55:08 +020012013 if (!drm_core_check_feature(dev, DRIVER_MODESET))
12014 return -ENODEV;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012015
Rob Clark7707e652014-07-17 23:30:04 -040012016 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
Carl Worth08d7b3d2009-04-29 14:43:54 -070012017
Rob Clark7707e652014-07-17 23:30:04 -040012018 if (!drmmode_crtc) {
Carl Worth08d7b3d2009-04-29 14:43:54 -070012019 DRM_ERROR("no such CRTC id\n");
Ville Syrjälä3f2c2052013-10-17 13:35:03 +030012020 return -ENOENT;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012021 }
12022
Rob Clark7707e652014-07-17 23:30:04 -040012023 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetterc05422d2009-08-11 16:05:30 +020012024 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012025
Daniel Vetterc05422d2009-08-11 16:05:30 +020012026 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012027}
12028
Daniel Vetter66a92782012-07-12 20:08:18 +020012029static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080012030{
Daniel Vetter66a92782012-07-12 20:08:18 +020012031 struct drm_device *dev = encoder->base.dev;
12032 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080012033 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080012034 int entry = 0;
12035
Damien Lespiaub2784e12014-08-05 11:29:37 +010012036 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020012037 if (encoders_cloneable(encoder, source_encoder))
Daniel Vetter66a92782012-07-12 20:08:18 +020012038 index_mask |= (1 << entry);
12039
Jesse Barnes79e53942008-11-07 14:24:08 -080012040 entry++;
12041 }
Chris Wilson4ef69c72010-09-09 15:14:28 +010012042
Jesse Barnes79e53942008-11-07 14:24:08 -080012043 return index_mask;
12044}
12045
Chris Wilson4d302442010-12-14 19:21:29 +000012046static bool has_edp_a(struct drm_device *dev)
12047{
12048 struct drm_i915_private *dev_priv = dev->dev_private;
12049
12050 if (!IS_MOBILE(dev))
12051 return false;
12052
12053 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
12054 return false;
12055
Damien Lespiaue3589902014-02-07 19:12:50 +000012056 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
Chris Wilson4d302442010-12-14 19:21:29 +000012057 return false;
12058
12059 return true;
12060}
12061
Damien Lespiauba0fbca2014-01-08 14:18:23 +000012062const char *intel_output_name(int output)
12063{
12064 static const char *names[] = {
12065 [INTEL_OUTPUT_UNUSED] = "Unused",
12066 [INTEL_OUTPUT_ANALOG] = "Analog",
12067 [INTEL_OUTPUT_DVO] = "DVO",
12068 [INTEL_OUTPUT_SDVO] = "SDVO",
12069 [INTEL_OUTPUT_LVDS] = "LVDS",
12070 [INTEL_OUTPUT_TVOUT] = "TV",
12071 [INTEL_OUTPUT_HDMI] = "HDMI",
12072 [INTEL_OUTPUT_DISPLAYPORT] = "DisplayPort",
12073 [INTEL_OUTPUT_EDP] = "eDP",
12074 [INTEL_OUTPUT_DSI] = "DSI",
12075 [INTEL_OUTPUT_UNKNOWN] = "Unknown",
12076 };
12077
12078 if (output < 0 || output >= ARRAY_SIZE(names) || !names[output])
12079 return "Invalid";
12080
12081 return names[output];
12082}
12083
Jesse Barnes84b4e042014-06-25 08:24:29 -070012084static bool intel_crt_present(struct drm_device *dev)
12085{
12086 struct drm_i915_private *dev_priv = dev->dev_private;
12087
12088 if (IS_ULT(dev))
12089 return false;
12090
12091 if (IS_CHERRYVIEW(dev))
12092 return false;
12093
12094 if (IS_VALLEYVIEW(dev) && !dev_priv->vbt.int_crt_support)
12095 return false;
12096
12097 return true;
12098}
12099
Jesse Barnes79e53942008-11-07 14:24:08 -080012100static void intel_setup_outputs(struct drm_device *dev)
12101{
Eric Anholt725e30a2009-01-22 13:01:02 -080012102 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +010012103 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012104 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -080012105
Daniel Vetterc9093352013-06-06 22:22:47 +020012106 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080012107
Jesse Barnes84b4e042014-06-25 08:24:29 -070012108 if (intel_crt_present(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -020012109 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012110
Paulo Zanoniaffa9352012-11-23 15:30:39 -020012111 if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030012112 int found;
12113
12114 /* Haswell uses DDI functions to detect digital outputs */
12115 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
12116 /* DDI A only supports eDP */
12117 if (found)
12118 intel_ddi_init(dev, PORT_A);
12119
12120 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
12121 * register */
12122 found = I915_READ(SFUSE_STRAP);
12123
12124 if (found & SFUSE_STRAP_DDIB_DETECTED)
12125 intel_ddi_init(dev, PORT_B);
12126 if (found & SFUSE_STRAP_DDIC_DETECTED)
12127 intel_ddi_init(dev, PORT_C);
12128 if (found & SFUSE_STRAP_DDID_DETECTED)
12129 intel_ddi_init(dev, PORT_D);
12130 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012131 int found;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020012132 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
Daniel Vetter270b3042012-10-27 15:52:05 +020012133
12134 if (has_edp_a(dev))
12135 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012136
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012137 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +080012138 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +010012139 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012140 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012141 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012142 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012143 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012144 }
12145
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012146 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012147 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012148
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012149 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012150 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012151
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012152 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012153 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012154
Daniel Vetter270b3042012-10-27 15:52:05 +020012155 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012156 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -070012157 } else if (IS_VALLEYVIEW(dev)) {
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030012158 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED) {
12159 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
12160 PORT_B);
12161 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED)
12162 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
12163 }
12164
Jesse Barnes6f6005a2013-08-09 09:34:35 -070012165 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED) {
12166 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
12167 PORT_C);
12168 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED)
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020012169 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
Jesse Barnes6f6005a2013-08-09 09:34:35 -070012170 }
Gajanan Bhat19c03922012-09-27 19:13:07 +053012171
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030012172 if (IS_CHERRYVIEW(dev)) {
12173 if (I915_READ(VLV_DISPLAY_BASE + CHV_HDMID) & SDVO_DETECTED) {
12174 intel_hdmi_init(dev, VLV_DISPLAY_BASE + CHV_HDMID,
12175 PORT_D);
12176 if (I915_READ(VLV_DISPLAY_BASE + DP_D) & DP_DETECTED)
12177 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_D, PORT_D);
12178 }
12179 }
12180
Jani Nikula3cfca972013-08-27 15:12:26 +030012181 intel_dsi_init(dev);
Zhenyu Wang103a1962009-11-27 11:44:36 +080012182 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +080012183 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -080012184
Paulo Zanonie2debe92013-02-18 19:00:27 -030012185 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012186 DRM_DEBUG_KMS("probing SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012187 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012188 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
12189 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012190 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012191 }
Ma Ling27185ae2009-08-24 13:50:23 +080012192
Imre Deake7281ea2013-05-08 13:14:08 +030012193 if (!found && SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012194 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -080012195 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -040012196
12197 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -040012198
Paulo Zanonie2debe92013-02-18 19:00:27 -030012199 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012200 DRM_DEBUG_KMS("probing SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012201 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012202 }
Ma Ling27185ae2009-08-24 13:50:23 +080012203
Paulo Zanonie2debe92013-02-18 19:00:27 -030012204 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +080012205
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012206 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
12207 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012208 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012209 }
Imre Deake7281ea2013-05-08 13:14:08 +030012210 if (SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012211 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -080012212 }
Ma Ling27185ae2009-08-24 13:50:23 +080012213
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012214 if (SUPPORTS_INTEGRATED_DP(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +030012215 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012216 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -070012217 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080012218 intel_dvo_init(dev);
12219
Zhenyu Wang103a1962009-11-27 11:44:36 +080012220 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080012221 intel_tv_init(dev);
12222
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -070012223 intel_edp_psr_init(dev);
12224
Damien Lespiaub2784e12014-08-05 11:29:37 +010012225 for_each_intel_encoder(dev, encoder) {
Chris Wilson4ef69c72010-09-09 15:14:28 +010012226 encoder->base.possible_crtcs = encoder->crtc_mask;
12227 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +020012228 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -080012229 }
Chris Wilson47356eb2011-01-11 17:06:04 +000012230
Paulo Zanonidde86e22012-12-01 12:04:25 -020012231 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +020012232
12233 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080012234}
12235
12236static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
12237{
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012238 struct drm_device *dev = fb->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -080012239 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -080012240
Daniel Vetteref2d6332014-02-10 18:00:38 +010012241 drm_framebuffer_cleanup(fb);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012242 mutex_lock(&dev->struct_mutex);
Daniel Vetteref2d6332014-02-10 18:00:38 +010012243 WARN_ON(!intel_fb->obj->framebuffer_references--);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012244 drm_gem_object_unreference(&intel_fb->obj->base);
12245 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080012246 kfree(intel_fb);
12247}
12248
12249static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +000012250 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -080012251 unsigned int *handle)
12252{
12253 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +000012254 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080012255
Chris Wilson05394f32010-11-08 19:18:58 +000012256 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -080012257}
12258
12259static const struct drm_framebuffer_funcs intel_fb_funcs = {
12260 .destroy = intel_user_framebuffer_destroy,
12261 .create_handle = intel_user_framebuffer_create_handle,
12262};
12263
Daniel Vetterb5ea6422014-03-02 21:18:00 +010012264static int intel_framebuffer_init(struct drm_device *dev,
12265 struct intel_framebuffer *intel_fb,
12266 struct drm_mode_fb_cmd2 *mode_cmd,
12267 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -080012268{
Jesse Barnesa57ce0b2014-02-07 12:10:35 -080012269 int aligned_height;
Chris Wilsona35cdaa2013-06-25 17:26:45 +010012270 int pitch_limit;
Jesse Barnes79e53942008-11-07 14:24:08 -080012271 int ret;
12272
Daniel Vetterdd4916c2013-10-09 21:23:51 +020012273 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
12274
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012275 if (obj->tiling_mode == I915_TILING_Y) {
12276 DRM_DEBUG("hardware does not support tiling Y\n");
Chris Wilson57cd6502010-08-08 12:34:44 +010012277 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012278 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012279
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012280 if (mode_cmd->pitches[0] & 63) {
12281 DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n",
12282 mode_cmd->pitches[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +010012283 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012284 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012285
Chris Wilsona35cdaa2013-06-25 17:26:45 +010012286 if (INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev)) {
12287 pitch_limit = 32*1024;
12288 } else if (INTEL_INFO(dev)->gen >= 4) {
12289 if (obj->tiling_mode)
12290 pitch_limit = 16*1024;
12291 else
12292 pitch_limit = 32*1024;
12293 } else if (INTEL_INFO(dev)->gen >= 3) {
12294 if (obj->tiling_mode)
12295 pitch_limit = 8*1024;
12296 else
12297 pitch_limit = 16*1024;
12298 } else
12299 /* XXX DSPC is limited to 4k tiled */
12300 pitch_limit = 8*1024;
12301
12302 if (mode_cmd->pitches[0] > pitch_limit) {
12303 DRM_DEBUG("%s pitch (%d) must be at less than %d\n",
12304 obj->tiling_mode ? "tiled" : "linear",
12305 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012306 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012307 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012308
12309 if (obj->tiling_mode != I915_TILING_NONE &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012310 mode_cmd->pitches[0] != obj->stride) {
12311 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
12312 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012313 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012314 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012315
Ville Syrjälä57779d02012-10-31 17:50:14 +020012316 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080012317 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020012318 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020012319 case DRM_FORMAT_RGB565:
12320 case DRM_FORMAT_XRGB8888:
12321 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020012322 break;
12323 case DRM_FORMAT_XRGB1555:
12324 case DRM_FORMAT_ARGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012325 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012326 DRM_DEBUG("unsupported pixel format: %s\n",
12327 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012328 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012329 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020012330 break;
12331 case DRM_FORMAT_XBGR8888:
12332 case DRM_FORMAT_ABGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020012333 case DRM_FORMAT_XRGB2101010:
12334 case DRM_FORMAT_ARGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020012335 case DRM_FORMAT_XBGR2101010:
12336 case DRM_FORMAT_ABGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012337 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012338 DRM_DEBUG("unsupported pixel format: %s\n",
12339 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012340 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012341 }
Jesse Barnesb5626742011-06-24 12:19:27 -070012342 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020012343 case DRM_FORMAT_YUYV:
12344 case DRM_FORMAT_UYVY:
12345 case DRM_FORMAT_YVYU:
12346 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012347 if (INTEL_INFO(dev)->gen < 5) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012348 DRM_DEBUG("unsupported pixel format: %s\n",
12349 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012350 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012351 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012352 break;
12353 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012354 DRM_DEBUG("unsupported pixel format: %s\n",
12355 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010012356 return -EINVAL;
12357 }
12358
Ville Syrjälä90f9a332012-10-31 17:50:19 +020012359 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
12360 if (mode_cmd->offsets[0] != 0)
12361 return -EINVAL;
12362
Jesse Barnesa57ce0b2014-02-07 12:10:35 -080012363 aligned_height = intel_align_height(dev, mode_cmd->height,
12364 obj->tiling_mode);
Daniel Vetter53155c02013-10-09 21:55:33 +020012365 /* FIXME drm helper for size checks (especially planar formats)? */
12366 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
12367 return -EINVAL;
12368
Daniel Vetterc7d73f62012-12-13 23:38:38 +010012369 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
12370 intel_fb->obj = obj;
Daniel Vetter80075d42013-10-09 21:23:52 +020012371 intel_fb->obj->framebuffer_references++;
Daniel Vetterc7d73f62012-12-13 23:38:38 +010012372
Jesse Barnes79e53942008-11-07 14:24:08 -080012373 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
12374 if (ret) {
12375 DRM_ERROR("framebuffer init failed %d\n", ret);
12376 return ret;
12377 }
12378
Jesse Barnes79e53942008-11-07 14:24:08 -080012379 return 0;
12380}
12381
Jesse Barnes79e53942008-11-07 14:24:08 -080012382static struct drm_framebuffer *
12383intel_user_framebuffer_create(struct drm_device *dev,
12384 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -080012385 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080012386{
Chris Wilson05394f32010-11-08 19:18:58 +000012387 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080012388
Jesse Barnes308e5bc2011-11-14 14:51:28 -080012389 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
12390 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +000012391 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010012392 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080012393
Chris Wilsond2dff872011-04-19 08:36:26 +010012394 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -080012395}
12396
Daniel Vetter4520f532013-10-09 09:18:51 +020012397#ifndef CONFIG_DRM_I915_FBDEV
Daniel Vetter0632fef2013-10-08 17:44:49 +020012398static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
Daniel Vetter4520f532013-10-09 09:18:51 +020012399{
12400}
12401#endif
12402
Jesse Barnes79e53942008-11-07 14:24:08 -080012403static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080012404 .fb_create = intel_user_framebuffer_create,
Daniel Vetter0632fef2013-10-08 17:44:49 +020012405 .output_poll_changed = intel_fbdev_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -080012406};
12407
Jesse Barnese70236a2009-09-21 10:42:27 -070012408/* Set up chip specific display functions */
12409static void intel_init_display(struct drm_device *dev)
12410{
12411 struct drm_i915_private *dev_priv = dev->dev_private;
12412
Daniel Vetteree9300b2013-06-03 22:40:22 +020012413 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
12414 dev_priv->display.find_dpll = g4x_find_best_dpll;
Chon Ming Leeef9348c2014-04-09 13:28:18 +030012415 else if (IS_CHERRYVIEW(dev))
12416 dev_priv->display.find_dpll = chv_find_best_dpll;
Daniel Vetteree9300b2013-06-03 22:40:22 +020012417 else if (IS_VALLEYVIEW(dev))
12418 dev_priv->display.find_dpll = vlv_find_best_dpll;
12419 else if (IS_PINEVIEW(dev))
12420 dev_priv->display.find_dpll = pnv_find_best_dpll;
12421 else
12422 dev_priv->display.find_dpll = i9xx_find_best_dpll;
12423
Paulo Zanoniaffa9352012-11-23 15:30:39 -020012424 if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012425 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Jesse Barnes4c6baa52014-03-07 08:57:50 -080012426 dev_priv->display.get_plane_config = ironlake_get_plane_config;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030012427 dev_priv->display.crtc_mode_set = haswell_crtc_mode_set;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020012428 dev_priv->display.crtc_enable = haswell_crtc_enable;
12429 dev_priv->display.crtc_disable = haswell_crtc_disable;
Daniel Vetterdf8ad702014-06-25 22:02:03 +030012430 dev_priv->display.off = ironlake_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070012431 dev_priv->display.update_primary_plane =
12432 ironlake_update_primary_plane;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030012433 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012434 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Jesse Barnes4c6baa52014-03-07 08:57:50 -080012435 dev_priv->display.get_plane_config = ironlake_get_plane_config;
Eric Anholtf564048e2011-03-30 13:01:02 -070012436 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +020012437 dev_priv->display.crtc_enable = ironlake_crtc_enable;
12438 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010012439 dev_priv->display.off = ironlake_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070012440 dev_priv->display.update_primary_plane =
12441 ironlake_update_primary_plane;
Jesse Barnes89b667f2013-04-18 14:51:36 -070012442 } else if (IS_VALLEYVIEW(dev)) {
12443 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Jesse Barnes1ad292b2014-03-07 08:57:49 -080012444 dev_priv->display.get_plane_config = i9xx_get_plane_config;
Jesse Barnes89b667f2013-04-18 14:51:36 -070012445 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
12446 dev_priv->display.crtc_enable = valleyview_crtc_enable;
12447 dev_priv->display.crtc_disable = i9xx_crtc_disable;
12448 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070012449 dev_priv->display.update_primary_plane =
12450 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070012451 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012452 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Jesse Barnes1ad292b2014-03-07 08:57:49 -080012453 dev_priv->display.get_plane_config = i9xx_get_plane_config;
Eric Anholtf564048e2011-03-30 13:01:02 -070012454 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +020012455 dev_priv->display.crtc_enable = i9xx_crtc_enable;
12456 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010012457 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070012458 dev_priv->display.update_primary_plane =
12459 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070012460 }
Jesse Barnese70236a2009-09-21 10:42:27 -070012461
Jesse Barnese70236a2009-09-21 10:42:27 -070012462 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070012463 if (IS_VALLEYVIEW(dev))
12464 dev_priv->display.get_display_clock_speed =
12465 valleyview_get_display_clock_speed;
12466 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -070012467 dev_priv->display.get_display_clock_speed =
12468 i945_get_display_clock_speed;
12469 else if (IS_I915G(dev))
12470 dev_priv->display.get_display_clock_speed =
12471 i915_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020012472 else if (IS_I945GM(dev) || IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070012473 dev_priv->display.get_display_clock_speed =
12474 i9xx_misc_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020012475 else if (IS_PINEVIEW(dev))
12476 dev_priv->display.get_display_clock_speed =
12477 pnv_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070012478 else if (IS_I915GM(dev))
12479 dev_priv->display.get_display_clock_speed =
12480 i915gm_get_display_clock_speed;
12481 else if (IS_I865G(dev))
12482 dev_priv->display.get_display_clock_speed =
12483 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +020012484 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070012485 dev_priv->display.get_display_clock_speed =
12486 i855_get_display_clock_speed;
12487 else /* 852, 830 */
12488 dev_priv->display.get_display_clock_speed =
12489 i830_get_display_clock_speed;
12490
Sonika Jindal3bb11b52014-08-11 09:06:39 +053012491 if (IS_G4X(dev)) {
Wu Fengguange0dac652011-09-05 14:25:34 +080012492 dev_priv->display.write_eld = g4x_write_eld;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053012493 } else if (IS_GEN5(dev)) {
12494 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
12495 dev_priv->display.write_eld = ironlake_write_eld;
12496 } else if (IS_GEN6(dev)) {
12497 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
12498 dev_priv->display.write_eld = ironlake_write_eld;
12499 dev_priv->display.modeset_global_resources =
12500 snb_modeset_global_resources;
12501 } else if (IS_IVYBRIDGE(dev)) {
12502 /* FIXME: detect B0+ stepping and use auto training */
12503 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
12504 dev_priv->display.write_eld = ironlake_write_eld;
12505 dev_priv->display.modeset_global_resources =
12506 ivb_modeset_global_resources;
12507 } else if (IS_HASWELL(dev) || IS_GEN8(dev)) {
12508 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
12509 dev_priv->display.write_eld = haswell_write_eld;
12510 dev_priv->display.modeset_global_resources =
12511 haswell_modeset_global_resources;
Jesse Barnes30a970c2013-11-04 13:48:12 -080012512 } else if (IS_VALLEYVIEW(dev)) {
12513 dev_priv->display.modeset_global_resources =
12514 valleyview_modeset_global_resources;
Mengdong Lin9ca2fe72013-11-01 00:17:03 -040012515 dev_priv->display.write_eld = ironlake_write_eld;
Jesse Barnese70236a2009-09-21 10:42:27 -070012516 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070012517
12518 /* Default just returns -ENODEV to indicate unsupported */
12519 dev_priv->display.queue_flip = intel_default_queue_flip;
12520
12521 switch (INTEL_INFO(dev)->gen) {
12522 case 2:
12523 dev_priv->display.queue_flip = intel_gen2_queue_flip;
12524 break;
12525
12526 case 3:
12527 dev_priv->display.queue_flip = intel_gen3_queue_flip;
12528 break;
12529
12530 case 4:
12531 case 5:
12532 dev_priv->display.queue_flip = intel_gen4_queue_flip;
12533 break;
12534
12535 case 6:
12536 dev_priv->display.queue_flip = intel_gen6_queue_flip;
12537 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070012538 case 7:
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070012539 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
Jesse Barnes7c9017e2011-06-16 12:18:54 -070012540 dev_priv->display.queue_flip = intel_gen7_queue_flip;
12541 break;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070012542 }
Jani Nikula7bd688c2013-11-08 16:48:56 +020012543
12544 intel_panel_init_backlight_funcs(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070012545}
12546
Jesse Barnesb690e962010-07-19 13:53:12 -070012547/*
12548 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
12549 * resume, or other times. This quirk makes sure that's the case for
12550 * affected systems.
12551 */
Akshay Joshi0206e352011-08-16 15:34:10 -040012552static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070012553{
12554 struct drm_i915_private *dev_priv = dev->dev_private;
12555
12556 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020012557 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070012558}
12559
Keith Packard435793d2011-07-12 14:56:22 -070012560/*
12561 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
12562 */
12563static void quirk_ssc_force_disable(struct drm_device *dev)
12564{
12565 struct drm_i915_private *dev_priv = dev->dev_private;
12566 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020012567 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070012568}
12569
Carsten Emde4dca20e2012-03-15 15:56:26 +010012570/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010012571 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
12572 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010012573 */
12574static void quirk_invert_brightness(struct drm_device *dev)
12575{
12576 struct drm_i915_private *dev_priv = dev->dev_private;
12577 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020012578 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070012579}
12580
Scot Doyle9c72cc62014-07-03 23:27:50 +000012581/* Some VBT's incorrectly indicate no backlight is present */
12582static void quirk_backlight_present(struct drm_device *dev)
12583{
12584 struct drm_i915_private *dev_priv = dev->dev_private;
12585 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
12586 DRM_INFO("applying backlight present quirk\n");
12587}
12588
Jesse Barnesb690e962010-07-19 13:53:12 -070012589struct intel_quirk {
12590 int device;
12591 int subsystem_vendor;
12592 int subsystem_device;
12593 void (*hook)(struct drm_device *dev);
12594};
12595
Egbert Eich5f85f1762012-10-14 15:46:38 +020012596/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
12597struct intel_dmi_quirk {
12598 void (*hook)(struct drm_device *dev);
12599 const struct dmi_system_id (*dmi_id_list)[];
12600};
12601
12602static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
12603{
12604 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
12605 return 1;
12606}
12607
12608static const struct intel_dmi_quirk intel_dmi_quirks[] = {
12609 {
12610 .dmi_id_list = &(const struct dmi_system_id[]) {
12611 {
12612 .callback = intel_dmi_reverse_brightness,
12613 .ident = "NCR Corporation",
12614 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
12615 DMI_MATCH(DMI_PRODUCT_NAME, ""),
12616 },
12617 },
12618 { } /* terminating entry */
12619 },
12620 .hook = quirk_invert_brightness,
12621 },
12622};
12623
Ben Widawskyc43b5632012-04-16 14:07:40 -070012624static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070012625 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -040012626 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -070012627
Jesse Barnesb690e962010-07-19 13:53:12 -070012628 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
12629 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
12630
Jesse Barnesb690e962010-07-19 13:53:12 -070012631 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
12632 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
12633
Keith Packard435793d2011-07-12 14:56:22 -070012634 /* Lenovo U160 cannot use SSC on LVDS */
12635 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020012636
12637 /* Sony Vaio Y cannot use SSC on LVDS */
12638 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010012639
Alexander van Heukelumbe505f62013-12-28 21:00:39 +010012640 /* Acer Aspire 5734Z must invert backlight brightness */
12641 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
12642
12643 /* Acer/eMachines G725 */
12644 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
12645
12646 /* Acer/eMachines e725 */
12647 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
12648
12649 /* Acer/Packard Bell NCL20 */
12650 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
12651
12652 /* Acer Aspire 4736Z */
12653 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jani Nikula0f540c32014-01-13 17:30:34 +020012654
12655 /* Acer Aspire 5336 */
12656 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
Scot Doyle2e93a1a2014-07-03 23:27:51 +000012657
12658 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
12659 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
Scot Doyled4967d82014-07-03 23:27:52 +000012660
12661 /* Toshiba CB35 Chromebook (Celeron 2955U) */
12662 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
Scot Doyle724cb062014-07-11 22:16:30 +000012663
12664 /* HP Chromebook 14 (Celeron 2955U) */
12665 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
Jesse Barnesb690e962010-07-19 13:53:12 -070012666};
12667
12668static void intel_init_quirks(struct drm_device *dev)
12669{
12670 struct pci_dev *d = dev->pdev;
12671 int i;
12672
12673 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
12674 struct intel_quirk *q = &intel_quirks[i];
12675
12676 if (d->device == q->device &&
12677 (d->subsystem_vendor == q->subsystem_vendor ||
12678 q->subsystem_vendor == PCI_ANY_ID) &&
12679 (d->subsystem_device == q->subsystem_device ||
12680 q->subsystem_device == PCI_ANY_ID))
12681 q->hook(dev);
12682 }
Egbert Eich5f85f1762012-10-14 15:46:38 +020012683 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
12684 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
12685 intel_dmi_quirks[i].hook(dev);
12686 }
Jesse Barnesb690e962010-07-19 13:53:12 -070012687}
12688
Jesse Barnes9cce37f2010-08-13 15:11:26 -070012689/* Disable the VGA plane that we never use */
12690static void i915_disable_vga(struct drm_device *dev)
12691{
12692 struct drm_i915_private *dev_priv = dev->dev_private;
12693 u8 sr1;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020012694 u32 vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070012695
Ville Syrjälä2b37c612014-01-22 21:32:38 +020012696 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
Jesse Barnes9cce37f2010-08-13 15:11:26 -070012697 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070012698 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070012699 sr1 = inb(VGA_SR_DATA);
12700 outb(sr1 | 1<<5, VGA_SR_DATA);
12701 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
12702 udelay(300);
12703
12704 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
12705 POSTING_READ(vga_reg);
12706}
12707
Daniel Vetterf8175862012-04-10 15:50:11 +020012708void intel_modeset_init_hw(struct drm_device *dev)
12709{
Eugeni Dodonova8f78b52012-06-28 15:55:35 -030012710 intel_prepare_ddi(dev);
12711
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +030012712 if (IS_VALLEYVIEW(dev))
12713 vlv_update_cdclk(dev);
12714
Daniel Vetterf8175862012-04-10 15:50:11 +020012715 intel_init_clock_gating(dev);
12716
Daniel Vetter8090c6b2012-06-24 16:42:32 +020012717 intel_enable_gt_powersave(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020012718}
12719
Imre Deak7d708ee2013-04-17 14:04:50 +030012720void intel_modeset_suspend_hw(struct drm_device *dev)
12721{
12722 intel_suspend_hw(dev);
12723}
12724
Jesse Barnes79e53942008-11-07 14:24:08 -080012725void intel_modeset_init(struct drm_device *dev)
12726{
Jesse Barnes652c3932009-08-17 13:31:43 -070012727 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau1fe47782014-03-03 17:31:47 +000012728 int sprite, ret;
Damien Lespiau8cc87b72014-03-03 17:31:44 +000012729 enum pipe pipe;
Jesse Barnes46f297f2014-03-07 08:57:48 -080012730 struct intel_crtc *crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -080012731
12732 drm_mode_config_init(dev);
12733
12734 dev->mode_config.min_width = 0;
12735 dev->mode_config.min_height = 0;
12736
Dave Airlie019d96c2011-09-29 16:20:42 +010012737 dev->mode_config.preferred_depth = 24;
12738 dev->mode_config.prefer_shadow = 1;
12739
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020012740 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080012741
Jesse Barnesb690e962010-07-19 13:53:12 -070012742 intel_init_quirks(dev);
12743
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030012744 intel_init_pm(dev);
12745
Ben Widawskye3c74752013-04-05 13:12:39 -070012746 if (INTEL_INFO(dev)->num_pipes == 0)
12747 return;
12748
Jesse Barnese70236a2009-09-21 10:42:27 -070012749 intel_init_display(dev);
12750
Chris Wilsona6c45cf2010-09-17 00:32:17 +010012751 if (IS_GEN2(dev)) {
12752 dev->mode_config.max_width = 2048;
12753 dev->mode_config.max_height = 2048;
12754 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070012755 dev->mode_config.max_width = 4096;
12756 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080012757 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010012758 dev->mode_config.max_width = 8192;
12759 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080012760 }
Damien Lespiau068be562014-03-28 14:17:49 +000012761
Ville Syrjälädc41c152014-08-13 11:57:05 +030012762 if (IS_845G(dev) || IS_I865G(dev)) {
12763 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
12764 dev->mode_config.cursor_height = 1023;
12765 } else if (IS_GEN2(dev)) {
Damien Lespiau068be562014-03-28 14:17:49 +000012766 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
12767 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
12768 } else {
12769 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
12770 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
12771 }
12772
Ben Widawsky5d4545a2013-01-17 12:45:15 -080012773 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080012774
Zhao Yakui28c97732009-10-09 11:39:41 +080012775 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070012776 INTEL_INFO(dev)->num_pipes,
12777 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080012778
Damien Lespiau055e3932014-08-18 13:49:10 +010012779 for_each_pipe(dev_priv, pipe) {
Damien Lespiau8cc87b72014-03-03 17:31:44 +000012780 intel_crtc_init(dev, pipe);
Damien Lespiau1fe47782014-03-03 17:31:47 +000012781 for_each_sprite(pipe, sprite) {
12782 ret = intel_plane_init(dev, pipe, sprite);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070012783 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030012784 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +000012785 pipe_name(pipe), sprite_name(pipe, sprite), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070012786 }
Jesse Barnes79e53942008-11-07 14:24:08 -080012787 }
12788
Jesse Barnesf42bb702013-12-16 16:34:23 -080012789 intel_init_dpio(dev);
12790
Daniel Vettere72f9fb2013-06-05 13:34:06 +020012791 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010012792
Jesse Barnes9cce37f2010-08-13 15:11:26 -070012793 /* Just disable it once at startup */
12794 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080012795 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000012796
12797 /* Just in case the BIOS is doing something questionable. */
12798 intel_disable_fbc(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080012799
Daniel Vetter6e9f7982014-05-29 23:54:47 +020012800 drm_modeset_lock_all(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080012801 intel_modeset_setup_hw_state(dev, false);
Daniel Vetter6e9f7982014-05-29 23:54:47 +020012802 drm_modeset_unlock_all(dev);
Jesse Barnes46f297f2014-03-07 08:57:48 -080012803
Damien Lespiaud3fcc802014-05-13 23:32:22 +010012804 for_each_intel_crtc(dev, crtc) {
Jesse Barnes46f297f2014-03-07 08:57:48 -080012805 if (!crtc->active)
12806 continue;
12807
Jesse Barnes46f297f2014-03-07 08:57:48 -080012808 /*
Jesse Barnes46f297f2014-03-07 08:57:48 -080012809 * Note that reserving the BIOS fb up front prevents us
12810 * from stuffing other stolen allocations like the ring
12811 * on top. This prevents some ugliness at boot time, and
12812 * can even allow for smooth boot transitions if the BIOS
12813 * fb is large enough for the active pipe configuration.
12814 */
12815 if (dev_priv->display.get_plane_config) {
12816 dev_priv->display.get_plane_config(crtc,
12817 &crtc->plane_config);
12818 /*
12819 * If the fb is shared between multiple heads, we'll
12820 * just get the first one.
12821 */
Jesse Barnes484b41d2014-03-07 08:57:55 -080012822 intel_find_plane_obj(crtc, &crtc->plane_config);
Jesse Barnes46f297f2014-03-07 08:57:48 -080012823 }
Jesse Barnes46f297f2014-03-07 08:57:48 -080012824 }
Chris Wilson2c7111d2011-03-29 10:40:27 +010012825}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080012826
Daniel Vetter7fad7982012-07-04 17:51:47 +020012827static void intel_enable_pipe_a(struct drm_device *dev)
12828{
12829 struct intel_connector *connector;
12830 struct drm_connector *crt = NULL;
12831 struct intel_load_detect_pipe load_detect_temp;
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030012832 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
Daniel Vetter7fad7982012-07-04 17:51:47 +020012833
12834 /* We can't just switch on the pipe A, we need to set things up with a
12835 * proper mode and output configuration. As a gross hack, enable pipe A
12836 * by enabling the load detect pipe once. */
12837 list_for_each_entry(connector,
12838 &dev->mode_config.connector_list,
12839 base.head) {
12840 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
12841 crt = &connector->base;
12842 break;
12843 }
12844 }
12845
12846 if (!crt)
12847 return;
12848
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030012849 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
12850 intel_release_load_detect_pipe(crt, &load_detect_temp);
Daniel Vetter7fad7982012-07-04 17:51:47 +020012851}
12852
Daniel Vetterfa555832012-10-10 23:14:00 +020012853static bool
12854intel_check_plane_mapping(struct intel_crtc *crtc)
12855{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070012856 struct drm_device *dev = crtc->base.dev;
12857 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020012858 u32 reg, val;
12859
Ben Widawsky7eb552a2013-03-13 14:05:41 -070012860 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020012861 return true;
12862
12863 reg = DSPCNTR(!crtc->plane);
12864 val = I915_READ(reg);
12865
12866 if ((val & DISPLAY_PLANE_ENABLE) &&
12867 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
12868 return false;
12869
12870 return true;
12871}
12872
Daniel Vetter24929352012-07-02 20:28:59 +020012873static void intel_sanitize_crtc(struct intel_crtc *crtc)
12874{
12875 struct drm_device *dev = crtc->base.dev;
12876 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020012877 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +020012878
Daniel Vetter24929352012-07-02 20:28:59 +020012879 /* Clear any frame start delays used for debugging left by the BIOS */
Daniel Vetter3b117c82013-04-17 20:15:07 +020012880 reg = PIPECONF(crtc->config.cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +020012881 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
12882
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030012883 /* restore vblank interrupts to correct state */
12884 if (crtc->active)
12885 drm_vblank_on(dev, crtc->pipe);
12886 else
12887 drm_vblank_off(dev, crtc->pipe);
12888
Daniel Vetter24929352012-07-02 20:28:59 +020012889 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020012890 * disable the crtc (and hence change the state) if it is wrong. Note
12891 * that gen4+ has a fixed plane -> pipe mapping. */
12892 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020012893 struct intel_connector *connector;
12894 bool plane;
12895
Daniel Vetter24929352012-07-02 20:28:59 +020012896 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
12897 crtc->base.base.id);
12898
12899 /* Pipe has the wrong plane attached and the plane is active.
12900 * Temporarily change the plane mapping and disable everything
12901 * ... */
12902 plane = crtc->plane;
12903 crtc->plane = !plane;
Daniel Vetter9c8958b2014-07-14 19:35:31 +020012904 crtc->primary_enabled = true;
Daniel Vetter24929352012-07-02 20:28:59 +020012905 dev_priv->display.crtc_disable(&crtc->base);
12906 crtc->plane = plane;
12907
12908 /* ... and break all links. */
12909 list_for_each_entry(connector, &dev->mode_config.connector_list,
12910 base.head) {
12911 if (connector->encoder->base.crtc != &crtc->base)
12912 continue;
12913
Egbert Eich7f1950f2014-04-25 10:56:22 +020012914 connector->base.dpms = DRM_MODE_DPMS_OFF;
12915 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020012916 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020012917 /* multiple connectors may have the same encoder:
12918 * handle them and break crtc link separately */
12919 list_for_each_entry(connector, &dev->mode_config.connector_list,
12920 base.head)
12921 if (connector->encoder->base.crtc == &crtc->base) {
12922 connector->encoder->base.crtc = NULL;
12923 connector->encoder->connectors_active = false;
12924 }
Daniel Vetter24929352012-07-02 20:28:59 +020012925
12926 WARN_ON(crtc->active);
12927 crtc->base.enabled = false;
12928 }
Daniel Vetter24929352012-07-02 20:28:59 +020012929
Daniel Vetter7fad7982012-07-04 17:51:47 +020012930 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
12931 crtc->pipe == PIPE_A && !crtc->active) {
12932 /* BIOS forgot to enable pipe A, this mostly happens after
12933 * resume. Force-enable the pipe to fix this, the update_dpms
12934 * call below we restore the pipe to the right state, but leave
12935 * the required bits on. */
12936 intel_enable_pipe_a(dev);
12937 }
12938
Daniel Vetter24929352012-07-02 20:28:59 +020012939 /* Adjust the state of the output pipe according to whether we
12940 * have active connectors/encoders. */
12941 intel_crtc_update_dpms(&crtc->base);
12942
12943 if (crtc->active != crtc->base.enabled) {
12944 struct intel_encoder *encoder;
12945
12946 /* This can happen either due to bugs in the get_hw_state
12947 * functions or because the pipe is force-enabled due to the
12948 * pipe A quirk. */
12949 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
12950 crtc->base.base.id,
12951 crtc->base.enabled ? "enabled" : "disabled",
12952 crtc->active ? "enabled" : "disabled");
12953
12954 crtc->base.enabled = crtc->active;
12955
12956 /* Because we only establish the connector -> encoder ->
12957 * crtc links if something is active, this means the
12958 * crtc is now deactivated. Break the links. connector
12959 * -> encoder links are only establish when things are
12960 * actually up, hence no need to break them. */
12961 WARN_ON(crtc->active);
12962
12963 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
12964 WARN_ON(encoder->connectors_active);
12965 encoder->base.crtc = NULL;
12966 }
12967 }
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020012968
12969 if (crtc->active || IS_VALLEYVIEW(dev) || INTEL_INFO(dev)->gen < 5) {
Daniel Vetter4cc31482014-03-24 00:01:41 +010012970 /*
12971 * We start out with underrun reporting disabled to avoid races.
12972 * For correct bookkeeping mark this on active crtcs.
12973 *
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020012974 * Also on gmch platforms we dont have any hardware bits to
12975 * disable the underrun reporting. Which means we need to start
12976 * out with underrun reporting disabled also on inactive pipes,
12977 * since otherwise we'll complain about the garbage we read when
12978 * e.g. coming up after runtime pm.
12979 *
Daniel Vetter4cc31482014-03-24 00:01:41 +010012980 * No protection against concurrent access is required - at
12981 * worst a fifo underrun happens which also sets this to false.
12982 */
12983 crtc->cpu_fifo_underrun_disabled = true;
12984 crtc->pch_fifo_underrun_disabled = true;
Ville Syrjälä80715b22014-05-15 20:23:23 +030012985
12986 update_scanline_offset(crtc);
Daniel Vetter4cc31482014-03-24 00:01:41 +010012987 }
Daniel Vetter24929352012-07-02 20:28:59 +020012988}
12989
12990static void intel_sanitize_encoder(struct intel_encoder *encoder)
12991{
12992 struct intel_connector *connector;
12993 struct drm_device *dev = encoder->base.dev;
12994
12995 /* We need to check both for a crtc link (meaning that the
12996 * encoder is active and trying to read from a pipe) and the
12997 * pipe itself being active. */
12998 bool has_active_crtc = encoder->base.crtc &&
12999 to_intel_crtc(encoder->base.crtc)->active;
13000
13001 if (encoder->connectors_active && !has_active_crtc) {
13002 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
13003 encoder->base.base.id,
Jani Nikula8e329a02014-06-03 14:56:21 +030013004 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020013005
13006 /* Connector is active, but has no active pipe. This is
13007 * fallout from our resume register restoring. Disable
13008 * the encoder manually again. */
13009 if (encoder->base.crtc) {
13010 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
13011 encoder->base.base.id,
Jani Nikula8e329a02014-06-03 14:56:21 +030013012 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020013013 encoder->disable(encoder);
Ville Syrjäläa62d1492014-06-28 02:04:01 +030013014 if (encoder->post_disable)
13015 encoder->post_disable(encoder);
Daniel Vetter24929352012-07-02 20:28:59 +020013016 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020013017 encoder->base.crtc = NULL;
13018 encoder->connectors_active = false;
Daniel Vetter24929352012-07-02 20:28:59 +020013019
13020 /* Inconsistent output/port/pipe state happens presumably due to
13021 * a bug in one of the get_hw_state functions. Or someplace else
13022 * in our code, like the register restore mess on resume. Clamp
13023 * things to off as a safer default. */
13024 list_for_each_entry(connector,
13025 &dev->mode_config.connector_list,
13026 base.head) {
13027 if (connector->encoder != encoder)
13028 continue;
Egbert Eich7f1950f2014-04-25 10:56:22 +020013029 connector->base.dpms = DRM_MODE_DPMS_OFF;
13030 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020013031 }
13032 }
13033 /* Enabled encoders without active connectors will be fixed in
13034 * the crtc fixup. */
13035}
13036
Imre Deak04098752014-02-18 00:02:16 +020013037void i915_redisable_vga_power_on(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013038{
13039 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020013040 u32 vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013041
Imre Deak04098752014-02-18 00:02:16 +020013042 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
13043 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
13044 i915_disable_vga(dev);
13045 }
13046}
13047
13048void i915_redisable_vga(struct drm_device *dev)
13049{
13050 struct drm_i915_private *dev_priv = dev->dev_private;
13051
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030013052 /* This function can be called both from intel_modeset_setup_hw_state or
13053 * at a very early point in our resume sequence, where the power well
13054 * structures are not yet restored. Since this function is at a very
13055 * paranoid "someone might have enabled VGA while we were not looking"
13056 * level, just check if the power well is enabled instead of trying to
13057 * follow the "don't touch the power well if we don't need it" policy
13058 * the rest of the driver uses. */
Imre Deak04098752014-02-18 00:02:16 +020013059 if (!intel_display_power_enabled(dev_priv, POWER_DOMAIN_VGA))
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030013060 return;
13061
Imre Deak04098752014-02-18 00:02:16 +020013062 i915_redisable_vga_power_on(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013063}
13064
Ville Syrjälä98ec7732014-04-30 17:43:01 +030013065static bool primary_get_hw_state(struct intel_crtc *crtc)
13066{
13067 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
13068
13069 if (!crtc->active)
13070 return false;
13071
13072 return I915_READ(DSPCNTR(crtc->plane)) & DISPLAY_PLANE_ENABLE;
13073}
13074
Daniel Vetter30e984d2013-06-05 13:34:17 +020013075static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020013076{
13077 struct drm_i915_private *dev_priv = dev->dev_private;
13078 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020013079 struct intel_crtc *crtc;
13080 struct intel_encoder *encoder;
13081 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020013082 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020013083
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013084 for_each_intel_crtc(dev, crtc) {
Daniel Vetter88adfff2013-03-28 10:42:01 +010013085 memset(&crtc->config, 0, sizeof(crtc->config));
Daniel Vetter3b117c82013-04-17 20:15:07 +020013086
Daniel Vetter99535992014-04-13 12:00:33 +020013087 crtc->config.quirks |= PIPE_CONFIG_QUIRK_INHERITED_MODE;
13088
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010013089 crtc->active = dev_priv->display.get_pipe_config(crtc,
13090 &crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020013091
13092 crtc->base.enabled = crtc->active;
Ville Syrjälä98ec7732014-04-30 17:43:01 +030013093 crtc->primary_enabled = primary_get_hw_state(crtc);
Daniel Vetter24929352012-07-02 20:28:59 +020013094
13095 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
13096 crtc->base.base.id,
13097 crtc->active ? "enabled" : "disabled");
13098 }
13099
Daniel Vetter53589012013-06-05 13:34:16 +020013100 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13101 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13102
13103 pll->on = pll->get_hw_state(dev_priv, pll, &pll->hw_state);
13104 pll->active = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013105 for_each_intel_crtc(dev, crtc) {
Daniel Vetter53589012013-06-05 13:34:16 +020013106 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
13107 pll->active++;
13108 }
13109 pll->refcount = pll->active;
13110
Daniel Vetter35c95372013-07-17 06:55:04 +020013111 DRM_DEBUG_KMS("%s hw state readout: refcount %i, on %i\n",
13112 pll->name, pll->refcount, pll->on);
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030013113
13114 if (pll->refcount)
13115 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
Daniel Vetter53589012013-06-05 13:34:16 +020013116 }
13117
Damien Lespiaub2784e12014-08-05 11:29:37 +010013118 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020013119 pipe = 0;
13120
13121 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -070013122 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
13123 encoder->base.crtc = &crtc->base;
Daniel Vetter1d37b682013-11-18 09:00:59 +010013124 encoder->get_config(encoder, &crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020013125 } else {
13126 encoder->base.crtc = NULL;
13127 }
13128
13129 encoder->connectors_active = false;
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010013130 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
Daniel Vetter24929352012-07-02 20:28:59 +020013131 encoder->base.base.id,
Jani Nikula8e329a02014-06-03 14:56:21 +030013132 encoder->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020013133 encoder->base.crtc ? "enabled" : "disabled",
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010013134 pipe_name(pipe));
Daniel Vetter24929352012-07-02 20:28:59 +020013135 }
13136
13137 list_for_each_entry(connector, &dev->mode_config.connector_list,
13138 base.head) {
13139 if (connector->get_hw_state(connector)) {
13140 connector->base.dpms = DRM_MODE_DPMS_ON;
13141 connector->encoder->connectors_active = true;
13142 connector->base.encoder = &connector->encoder->base;
13143 } else {
13144 connector->base.dpms = DRM_MODE_DPMS_OFF;
13145 connector->base.encoder = NULL;
13146 }
13147 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
13148 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030013149 connector->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020013150 connector->base.encoder ? "enabled" : "disabled");
13151 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020013152}
13153
13154/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
13155 * and i915 state tracking structures. */
13156void intel_modeset_setup_hw_state(struct drm_device *dev,
13157 bool force_restore)
13158{
13159 struct drm_i915_private *dev_priv = dev->dev_private;
13160 enum pipe pipe;
Daniel Vetter30e984d2013-06-05 13:34:17 +020013161 struct intel_crtc *crtc;
13162 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020013163 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020013164
13165 intel_modeset_readout_hw_state(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020013166
Jesse Barnesbabea612013-06-26 18:57:38 +030013167 /*
13168 * Now that we have the config, copy it to each CRTC struct
13169 * Note that this could go away if we move to using crtc_config
13170 * checking everywhere.
13171 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013172 for_each_intel_crtc(dev, crtc) {
Jani Nikulad330a952014-01-21 11:24:25 +020013173 if (crtc->active && i915.fastboot) {
Daniel Vetterf6a83282014-02-11 15:28:57 -080013174 intel_mode_from_pipe_config(&crtc->base.mode, &crtc->config);
Jesse Barnesbabea612013-06-26 18:57:38 +030013175 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
13176 crtc->base.base.id);
13177 drm_mode_debug_printmodeline(&crtc->base.mode);
13178 }
13179 }
13180
Daniel Vetter24929352012-07-02 20:28:59 +020013181 /* HW state is read out, now we need to sanitize this mess. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010013182 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020013183 intel_sanitize_encoder(encoder);
13184 }
13185
Damien Lespiau055e3932014-08-18 13:49:10 +010013186 for_each_pipe(dev_priv, pipe) {
Daniel Vetter24929352012-07-02 20:28:59 +020013187 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
13188 intel_sanitize_crtc(crtc);
Daniel Vetterc0b03412013-05-28 12:05:54 +020013189 intel_dump_pipe_config(crtc, &crtc->config, "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020013190 }
Daniel Vetter9a935852012-07-05 22:34:27 +020013191
Daniel Vetter35c95372013-07-17 06:55:04 +020013192 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13193 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13194
13195 if (!pll->on || pll->active)
13196 continue;
13197
13198 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
13199
13200 pll->disable(dev_priv, pll);
13201 pll->on = false;
13202 }
13203
Ville Syrjälä96f90c52013-12-05 15:51:38 +020013204 if (HAS_PCH_SPLIT(dev))
Ville Syrjälä243e6a42013-10-14 14:55:24 +030013205 ilk_wm_get_hw_state(dev);
13206
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010013207 if (force_restore) {
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030013208 i915_redisable_vga(dev);
13209
Daniel Vetterf30da182013-04-11 20:22:50 +020013210 /*
13211 * We need to use raw interfaces for restoring state to avoid
13212 * checking (bogus) intermediate states.
13213 */
Damien Lespiau055e3932014-08-18 13:49:10 +010013214 for_each_pipe(dev_priv, pipe) {
Jesse Barnesb5644d02013-03-26 13:25:27 -070013215 struct drm_crtc *crtc =
13216 dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vetterf30da182013-04-11 20:22:50 +020013217
13218 __intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
Matt Roperf4510a22014-04-01 15:22:40 -070013219 crtc->primary->fb);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010013220 }
13221 } else {
13222 intel_modeset_update_staged_output_state(dev);
13223 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013224
13225 intel_modeset_check_state(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +010013226}
13227
13228void intel_modeset_gem_init(struct drm_device *dev)
13229{
Jesse Barnes484b41d2014-03-07 08:57:55 -080013230 struct drm_crtc *c;
Matt Roper2ff8fde2014-07-08 07:50:07 -070013231 struct drm_i915_gem_object *obj;
Jesse Barnes484b41d2014-03-07 08:57:55 -080013232
Imre Deakae484342014-03-31 15:10:44 +030013233 mutex_lock(&dev->struct_mutex);
13234 intel_init_gt_powersave(dev);
13235 mutex_unlock(&dev->struct_mutex);
13236
Chris Wilson1833b132012-05-09 11:56:28 +010013237 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020013238
13239 intel_setup_overlay(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -080013240
13241 /*
13242 * Make sure any fbs we allocated at startup are properly
13243 * pinned & fenced. When we do the allocation it's too early
13244 * for this.
13245 */
13246 mutex_lock(&dev->struct_mutex);
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010013247 for_each_crtc(dev, c) {
Matt Roper2ff8fde2014-07-08 07:50:07 -070013248 obj = intel_fb_obj(c->primary->fb);
13249 if (obj == NULL)
Jesse Barnes484b41d2014-03-07 08:57:55 -080013250 continue;
13251
Matt Roper2ff8fde2014-07-08 07:50:07 -070013252 if (intel_pin_and_fence_fb_obj(dev, obj, NULL)) {
Jesse Barnes484b41d2014-03-07 08:57:55 -080013253 DRM_ERROR("failed to pin boot fb on pipe %d\n",
13254 to_intel_crtc(c)->pipe);
Dave Airlie66e514c2014-04-03 07:51:54 +100013255 drm_framebuffer_unreference(c->primary->fb);
13256 c->primary->fb = NULL;
Jesse Barnes484b41d2014-03-07 08:57:55 -080013257 }
13258 }
13259 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080013260}
13261
Imre Deak4932e2c2014-02-11 17:12:48 +020013262void intel_connector_unregister(struct intel_connector *intel_connector)
13263{
13264 struct drm_connector *connector = &intel_connector->base;
13265
13266 intel_panel_destroy_backlight(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +010013267 drm_connector_unregister(connector);
Imre Deak4932e2c2014-02-11 17:12:48 +020013268}
13269
Jesse Barnes79e53942008-11-07 14:24:08 -080013270void intel_modeset_cleanup(struct drm_device *dev)
13271{
Jesse Barnes652c3932009-08-17 13:31:43 -070013272 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid9255d52013-09-26 20:05:59 -030013273 struct drm_connector *connector;
Jesse Barnes652c3932009-08-17 13:31:43 -070013274
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013275 /*
13276 * Interrupts and polling as the first thing to avoid creating havoc.
13277 * Too much stuff here (turning of rps, connectors, ...) would
13278 * experience fancy races otherwise.
13279 */
13280 drm_irq_uninstall(dev);
Imre Deak1d0d3432014-08-18 14:42:44 +030013281 intel_hpd_cancel_work(dev_priv);
Jesse Barneseb21b922014-06-20 11:57:33 -070013282 dev_priv->pm._irqs_disabled = true;
13283
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013284 /*
13285 * Due to the hpd irq storm handling the hotplug work can re-arm the
13286 * poll handlers. Hence disable polling after hpd handling is shut down.
13287 */
Keith Packardf87ea762010-10-03 19:36:26 -070013288 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013289
Jesse Barnes652c3932009-08-17 13:31:43 -070013290 mutex_lock(&dev->struct_mutex);
13291
Jesse Barnes723bfd72010-10-07 16:01:13 -070013292 intel_unregister_dsm_handler();
13293
Chris Wilson973d04f2011-07-08 12:22:37 +010013294 intel_disable_fbc(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070013295
Daniel Vetter8090c6b2012-06-24 16:42:32 +020013296 intel_disable_gt_powersave(dev);
Chris Wilson0cdab212010-12-05 17:27:06 +000013297
Daniel Vetter930ebb42012-06-29 23:32:16 +020013298 ironlake_teardown_rc6(dev);
13299
Kristian Høgsberg69341a52009-11-11 12:19:17 -050013300 mutex_unlock(&dev->struct_mutex);
13301
Chris Wilson1630fe72011-07-08 12:22:42 +010013302 /* flush any delayed tasks or pending work */
13303 flush_scheduled_work();
13304
Jani Nikuladb31af12013-11-08 16:48:53 +020013305 /* destroy the backlight and sysfs files before encoders/connectors */
13306 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Imre Deak4932e2c2014-02-11 17:12:48 +020013307 struct intel_connector *intel_connector;
13308
13309 intel_connector = to_intel_connector(connector);
13310 intel_connector->unregister(intel_connector);
Jani Nikuladb31af12013-11-08 16:48:53 +020013311 }
Paulo Zanonid9255d52013-09-26 20:05:59 -030013312
Jesse Barnes79e53942008-11-07 14:24:08 -080013313 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010013314
13315 intel_cleanup_overlay(dev);
Imre Deakae484342014-03-31 15:10:44 +030013316
13317 mutex_lock(&dev->struct_mutex);
13318 intel_cleanup_gt_powersave(dev);
13319 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080013320}
13321
Dave Airlie28d52042009-09-21 14:33:58 +100013322/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +080013323 * Return which encoder is currently attached for connector.
13324 */
Chris Wilsondf0e9242010-09-09 16:20:55 +010013325struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -080013326{
Chris Wilsondf0e9242010-09-09 16:20:55 +010013327 return &intel_attached_encoder(connector)->base;
13328}
Jesse Barnes79e53942008-11-07 14:24:08 -080013329
Chris Wilsondf0e9242010-09-09 16:20:55 +010013330void intel_connector_attach_encoder(struct intel_connector *connector,
13331 struct intel_encoder *encoder)
13332{
13333 connector->encoder = encoder;
13334 drm_mode_connector_attach_encoder(&connector->base,
13335 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080013336}
Dave Airlie28d52042009-09-21 14:33:58 +100013337
13338/*
13339 * set vga decode state - true == enable VGA decode
13340 */
13341int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
13342{
13343 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona885b3c2013-12-17 14:34:50 +000013344 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
Dave Airlie28d52042009-09-21 14:33:58 +100013345 u16 gmch_ctrl;
13346
Chris Wilson75fa0412014-02-07 18:37:02 -020013347 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
13348 DRM_ERROR("failed to read control word\n");
13349 return -EIO;
13350 }
13351
Chris Wilsonc0cc8a52014-02-07 18:37:03 -020013352 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
13353 return 0;
13354
Dave Airlie28d52042009-09-21 14:33:58 +100013355 if (state)
13356 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
13357 else
13358 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
Chris Wilson75fa0412014-02-07 18:37:02 -020013359
13360 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
13361 DRM_ERROR("failed to write control word\n");
13362 return -EIO;
13363 }
13364
Dave Airlie28d52042009-09-21 14:33:58 +100013365 return 0;
13366}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013367
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013368struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030013369
13370 u32 power_well_driver;
13371
Chris Wilson63b66e52013-08-08 15:12:06 +020013372 int num_transcoders;
13373
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013374 struct intel_cursor_error_state {
13375 u32 control;
13376 u32 position;
13377 u32 base;
13378 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010013379 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013380
13381 struct intel_pipe_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020013382 bool power_domain_on;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013383 u32 source;
Imre Deakf301b1e2014-04-18 15:55:04 +030013384 u32 stat;
Damien Lespiau52331302012-08-15 19:23:25 +010013385 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013386
13387 struct intel_plane_error_state {
13388 u32 control;
13389 u32 stride;
13390 u32 size;
13391 u32 pos;
13392 u32 addr;
13393 u32 surface;
13394 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010013395 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020013396
13397 struct intel_transcoder_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020013398 bool power_domain_on;
Chris Wilson63b66e52013-08-08 15:12:06 +020013399 enum transcoder cpu_transcoder;
13400
13401 u32 conf;
13402
13403 u32 htotal;
13404 u32 hblank;
13405 u32 hsync;
13406 u32 vtotal;
13407 u32 vblank;
13408 u32 vsync;
13409 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013410};
13411
13412struct intel_display_error_state *
13413intel_display_capture_error_state(struct drm_device *dev)
13414{
Jani Nikulafbee40d2014-03-31 14:27:18 +030013415 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013416 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020013417 int transcoders[] = {
13418 TRANSCODER_A,
13419 TRANSCODER_B,
13420 TRANSCODER_C,
13421 TRANSCODER_EDP,
13422 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013423 int i;
13424
Chris Wilson63b66e52013-08-08 15:12:06 +020013425 if (INTEL_INFO(dev)->num_pipes == 0)
13426 return NULL;
13427
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020013428 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013429 if (error == NULL)
13430 return NULL;
13431
Imre Deak190be112013-11-25 17:15:31 +020013432 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030013433 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
13434
Damien Lespiau055e3932014-08-18 13:49:10 +010013435 for_each_pipe(dev_priv, i) {
Imre Deakddf9c532013-11-27 22:02:02 +020013436 error->pipe[i].power_domain_on =
Imre Deakbfafe932014-06-05 20:31:47 +030013437 intel_display_power_enabled_unlocked(dev_priv,
13438 POWER_DOMAIN_PIPE(i));
Imre Deakddf9c532013-11-27 22:02:02 +020013439 if (!error->pipe[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020013440 continue;
13441
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030013442 error->cursor[i].control = I915_READ(CURCNTR(i));
13443 error->cursor[i].position = I915_READ(CURPOS(i));
13444 error->cursor[i].base = I915_READ(CURBASE(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013445
13446 error->plane[i].control = I915_READ(DSPCNTR(i));
13447 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030013448 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030013449 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030013450 error->plane[i].pos = I915_READ(DSPPOS(i));
13451 }
Paulo Zanonica291362013-03-06 20:03:14 -030013452 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
13453 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013454 if (INTEL_INFO(dev)->gen >= 4) {
13455 error->plane[i].surface = I915_READ(DSPSURF(i));
13456 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
13457 }
13458
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013459 error->pipe[i].source = I915_READ(PIPESRC(i));
Imre Deakf301b1e2014-04-18 15:55:04 +030013460
Sonika Jindal3abfce72014-07-21 15:23:43 +053013461 if (HAS_GMCH_DISPLAY(dev))
Imre Deakf301b1e2014-04-18 15:55:04 +030013462 error->pipe[i].stat = I915_READ(PIPESTAT(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020013463 }
13464
13465 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
13466 if (HAS_DDI(dev_priv->dev))
13467 error->num_transcoders++; /* Account for eDP. */
13468
13469 for (i = 0; i < error->num_transcoders; i++) {
13470 enum transcoder cpu_transcoder = transcoders[i];
13471
Imre Deakddf9c532013-11-27 22:02:02 +020013472 error->transcoder[i].power_domain_on =
Imre Deakbfafe932014-06-05 20:31:47 +030013473 intel_display_power_enabled_unlocked(dev_priv,
Paulo Zanoni38cc1da2013-12-20 15:09:41 -020013474 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020013475 if (!error->transcoder[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020013476 continue;
13477
Chris Wilson63b66e52013-08-08 15:12:06 +020013478 error->transcoder[i].cpu_transcoder = cpu_transcoder;
13479
13480 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
13481 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
13482 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
13483 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
13484 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
13485 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
13486 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013487 }
13488
13489 return error;
13490}
13491
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013492#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
13493
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013494void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013495intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013496 struct drm_device *dev,
13497 struct intel_display_error_state *error)
13498{
Damien Lespiau055e3932014-08-18 13:49:10 +010013499 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013500 int i;
13501
Chris Wilson63b66e52013-08-08 15:12:06 +020013502 if (!error)
13503 return;
13504
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013505 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Imre Deak190be112013-11-25 17:15:31 +020013506 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013507 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030013508 error->power_well_driver);
Damien Lespiau055e3932014-08-18 13:49:10 +010013509 for_each_pipe(dev_priv, i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013510 err_printf(m, "Pipe [%d]:\n", i);
Imre Deakddf9c532013-11-27 22:02:02 +020013511 err_printf(m, " Power: %s\n",
13512 error->pipe[i].power_domain_on ? "on" : "off");
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013513 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Imre Deakf301b1e2014-04-18 15:55:04 +030013514 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013515
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013516 err_printf(m, "Plane [%d]:\n", i);
13517 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
13518 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030013519 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013520 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
13521 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030013522 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030013523 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013524 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013525 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013526 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
13527 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013528 }
13529
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013530 err_printf(m, "Cursor [%d]:\n", i);
13531 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
13532 err_printf(m, " POS: %08x\n", error->cursor[i].position);
13533 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013534 }
Chris Wilson63b66e52013-08-08 15:12:06 +020013535
13536 for (i = 0; i < error->num_transcoders; i++) {
Chris Wilson1cf84bb2013-10-21 09:10:33 +010013537 err_printf(m, "CPU transcoder: %c\n",
Chris Wilson63b66e52013-08-08 15:12:06 +020013538 transcoder_name(error->transcoder[i].cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020013539 err_printf(m, " Power: %s\n",
13540 error->transcoder[i].power_domain_on ? "on" : "off");
Chris Wilson63b66e52013-08-08 15:12:06 +020013541 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
13542 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
13543 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
13544 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
13545 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
13546 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
13547 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
13548 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013549}
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030013550
13551void intel_modeset_preclose(struct drm_device *dev, struct drm_file *file)
13552{
13553 struct intel_crtc *crtc;
13554
13555 for_each_intel_crtc(dev, crtc) {
13556 struct intel_unpin_work *work;
13557 unsigned long irqflags;
13558
13559 spin_lock_irqsave(&dev->event_lock, irqflags);
13560
13561 work = crtc->unpin_work;
13562
13563 if (work && work->event &&
13564 work->event->base.file_priv == file) {
13565 kfree(work->event);
13566 work->event = NULL;
13567 }
13568
13569 spin_unlock_irqrestore(&dev->event_lock, irqflags);
13570 }
13571}