blob: 4b01876b760fddcadcbf967f1fd730bd40a9d041 [file] [log] [blame]
Jesse Barnes79e53942008-11-07 14:24:08 -08001/*
2 * Copyright © 2006-2007 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 */
26
Daniel Vetter618563e2012-04-01 13:38:50 +020027#include <linux/dmi.h>
Jesse Barnesc1c7af62009-09-10 15:28:03 -070028#include <linux/module.h>
29#include <linux/input.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080030#include <linux/i2c.h>
Shaohua Li7662c8b2009-06-26 11:23:55 +080031#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Jesse Barnes9cce37f2010-08-13 15:11:26 -070033#include <linux/vgaarb.h>
Wu Fengguange0dac652011-09-05 14:25:34 +080034#include <drm/drm_edid.h>
David Howells760285e2012-10-02 18:01:07 +010035#include <drm/drmP.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080036#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010037#include <drm/i915_drm.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080038#include "i915_drv.h"
Jesse Barnese5510fa2010-07-01 16:48:37 -070039#include "i915_trace.h"
Matt Roperc196e1d2015-01-21 16:35:48 -080040#include <drm/drm_atomic_helper.h>
David Howells760285e2012-10-02 18:01:07 +010041#include <drm/drm_dp_helper.h>
42#include <drm/drm_crtc_helper.h>
Matt Roper465c1202014-05-29 08:06:54 -070043#include <drm/drm_plane_helper.h>
44#include <drm/drm_rect.h>
Keith Packardc0f372b32011-11-16 22:24:52 -080045#include <linux/dma_remapping.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080046
Matt Roper465c1202014-05-29 08:06:54 -070047/* Primary plane formats supported by all gen */
48#define COMMON_PRIMARY_FORMATS \
49 DRM_FORMAT_C8, \
50 DRM_FORMAT_RGB565, \
51 DRM_FORMAT_XRGB8888, \
52 DRM_FORMAT_ARGB8888
53
54/* Primary plane formats for gen <= 3 */
55static const uint32_t intel_primary_formats_gen2[] = {
56 COMMON_PRIMARY_FORMATS,
57 DRM_FORMAT_XRGB1555,
58 DRM_FORMAT_ARGB1555,
59};
60
61/* Primary plane formats for gen >= 4 */
62static const uint32_t intel_primary_formats_gen4[] = {
63 COMMON_PRIMARY_FORMATS, \
64 DRM_FORMAT_XBGR8888,
65 DRM_FORMAT_ABGR8888,
66 DRM_FORMAT_XRGB2101010,
67 DRM_FORMAT_ARGB2101010,
68 DRM_FORMAT_XBGR2101010,
69 DRM_FORMAT_ABGR2101010,
70};
71
Matt Roper3d7d6512014-06-10 08:28:13 -070072/* Cursor formats */
73static const uint32_t intel_cursor_formats[] = {
74 DRM_FORMAT_ARGB8888,
75};
76
Chris Wilson6b383a72010-09-13 13:54:26 +010077static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
Jesse Barnes79e53942008-11-07 14:24:08 -080078
Jesse Barnesf1f644d2013-06-27 00:39:25 +030079static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020080 struct intel_crtc_state *pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +030081static void ironlake_pch_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020082 struct intel_crtc_state *pipe_config);
Jesse Barnesf1f644d2013-06-27 00:39:25 +030083
Damien Lespiaue7457a92013-08-08 22:28:59 +010084static int intel_set_mode(struct drm_crtc *crtc, struct drm_display_mode *mode,
85 int x, int y, struct drm_framebuffer *old_fb);
Jesse Barneseb1bfe82014-02-12 12:26:25 -080086static int intel_framebuffer_init(struct drm_device *dev,
87 struct intel_framebuffer *ifb,
88 struct drm_mode_fb_cmd2 *mode_cmd,
89 struct drm_i915_gem_object *obj);
Daniel Vetter5b18e572014-04-24 23:55:06 +020090static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc);
91static void intel_set_pipe_timings(struct intel_crtc *intel_crtc);
Daniel Vetter29407aa2014-04-24 23:55:08 +020092static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -070093 struct intel_link_m_n *m_n,
94 struct intel_link_m_n *m2_n2);
Daniel Vetter29407aa2014-04-24 23:55:08 +020095static void ironlake_set_pipeconf(struct drm_crtc *crtc);
Daniel Vetter229fca92014-04-24 23:55:09 +020096static void haswell_set_pipeconf(struct drm_crtc *crtc);
97static void intel_set_pipe_csc(struct drm_crtc *crtc);
Ville Syrjäläd288f652014-10-28 13:20:22 +020098static void vlv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020099 const struct intel_crtc_state *pipe_config);
Ville Syrjäläd288f652014-10-28 13:20:22 +0200100static void chv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200101 const struct intel_crtc_state *pipe_config);
Matt Roperea2c67b2014-12-23 10:41:52 -0800102static void intel_begin_crtc_commit(struct drm_crtc *crtc);
103static void intel_finish_crtc_commit(struct drm_crtc *crtc);
Damien Lespiaue7457a92013-08-08 22:28:59 +0100104
Dave Airlie0e32b392014-05-02 14:02:48 +1000105static struct intel_encoder *intel_find_encoder(struct intel_connector *connector, int pipe)
106{
107 if (!connector->mst_port)
108 return connector->encoder;
109 else
110 return &connector->mst_port->mst_encoders[pipe]->base;
111}
112
Jesse Barnes79e53942008-11-07 14:24:08 -0800113typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -0400114 int min, max;
Jesse Barnes79e53942008-11-07 14:24:08 -0800115} intel_range_t;
116
117typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -0400118 int dot_limit;
119 int p2_slow, p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -0800120} intel_p2_t;
121
Ma Lingd4906092009-03-18 20:13:27 +0800122typedef struct intel_limit intel_limit_t;
123struct intel_limit {
Akshay Joshi0206e352011-08-16 15:34:10 -0400124 intel_range_t dot, vco, n, m, m1, m2, p, p1;
125 intel_p2_t p2;
Ma Lingd4906092009-03-18 20:13:27 +0800126};
Jesse Barnes79e53942008-11-07 14:24:08 -0800127
Daniel Vetterd2acd212012-10-20 20:57:43 +0200128int
129intel_pch_rawclk(struct drm_device *dev)
130{
131 struct drm_i915_private *dev_priv = dev->dev_private;
132
133 WARN_ON(!HAS_PCH_SPLIT(dev));
134
135 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
136}
137
Chris Wilson021357a2010-09-07 20:54:59 +0100138static inline u32 /* units of 100MHz */
139intel_fdi_link_freq(struct drm_device *dev)
140{
Chris Wilson8b99e682010-10-13 09:59:17 +0100141 if (IS_GEN5(dev)) {
142 struct drm_i915_private *dev_priv = dev->dev_private;
143 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
144 } else
145 return 27;
Chris Wilson021357a2010-09-07 20:54:59 +0100146}
147
Daniel Vetter5d536e22013-07-06 12:52:06 +0200148static const intel_limit_t intel_limits_i8xx_dac = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400149 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200150 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200151 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400152 .m = { .min = 96, .max = 140 },
153 .m1 = { .min = 18, .max = 26 },
154 .m2 = { .min = 6, .max = 16 },
155 .p = { .min = 4, .max = 128 },
156 .p1 = { .min = 2, .max = 33 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700157 .p2 = { .dot_limit = 165000,
158 .p2_slow = 4, .p2_fast = 2 },
Keith Packarde4b36692009-06-05 19:22:17 -0700159};
160
Daniel Vetter5d536e22013-07-06 12:52:06 +0200161static const intel_limit_t intel_limits_i8xx_dvo = {
162 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200163 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200164 .n = { .min = 2, .max = 16 },
Daniel Vetter5d536e22013-07-06 12:52:06 +0200165 .m = { .min = 96, .max = 140 },
166 .m1 = { .min = 18, .max = 26 },
167 .m2 = { .min = 6, .max = 16 },
168 .p = { .min = 4, .max = 128 },
169 .p1 = { .min = 2, .max = 33 },
170 .p2 = { .dot_limit = 165000,
171 .p2_slow = 4, .p2_fast = 4 },
172};
173
Keith Packarde4b36692009-06-05 19:22:17 -0700174static const intel_limit_t intel_limits_i8xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400175 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200176 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200177 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400178 .m = { .min = 96, .max = 140 },
179 .m1 = { .min = 18, .max = 26 },
180 .m2 = { .min = 6, .max = 16 },
181 .p = { .min = 4, .max = 128 },
182 .p1 = { .min = 1, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700183 .p2 = { .dot_limit = 165000,
184 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700185};
Eric Anholt273e27c2011-03-30 13:01:10 -0700186
Keith Packarde4b36692009-06-05 19:22:17 -0700187static const intel_limit_t intel_limits_i9xx_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400188 .dot = { .min = 20000, .max = 400000 },
189 .vco = { .min = 1400000, .max = 2800000 },
190 .n = { .min = 1, .max = 6 },
191 .m = { .min = 70, .max = 120 },
Patrik Jakobsson4f7dfb62013-02-13 22:20:22 +0100192 .m1 = { .min = 8, .max = 18 },
193 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400194 .p = { .min = 5, .max = 80 },
195 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700196 .p2 = { .dot_limit = 200000,
197 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700198};
199
200static const intel_limit_t intel_limits_i9xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400201 .dot = { .min = 20000, .max = 400000 },
202 .vco = { .min = 1400000, .max = 2800000 },
203 .n = { .min = 1, .max = 6 },
204 .m = { .min = 70, .max = 120 },
Patrik Jakobsson53a7d2d2013-02-13 22:20:21 +0100205 .m1 = { .min = 8, .max = 18 },
206 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400207 .p = { .min = 7, .max = 98 },
208 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700209 .p2 = { .dot_limit = 112000,
210 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700211};
212
Eric Anholt273e27c2011-03-30 13:01:10 -0700213
Keith Packarde4b36692009-06-05 19:22:17 -0700214static const intel_limit_t intel_limits_g4x_sdvo = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700215 .dot = { .min = 25000, .max = 270000 },
216 .vco = { .min = 1750000, .max = 3500000},
217 .n = { .min = 1, .max = 4 },
218 .m = { .min = 104, .max = 138 },
219 .m1 = { .min = 17, .max = 23 },
220 .m2 = { .min = 5, .max = 11 },
221 .p = { .min = 10, .max = 30 },
222 .p1 = { .min = 1, .max = 3},
223 .p2 = { .dot_limit = 270000,
224 .p2_slow = 10,
225 .p2_fast = 10
Ma Ling044c7c42009-03-18 20:13:23 +0800226 },
Keith Packarde4b36692009-06-05 19:22:17 -0700227};
228
229static const intel_limit_t intel_limits_g4x_hdmi = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700230 .dot = { .min = 22000, .max = 400000 },
231 .vco = { .min = 1750000, .max = 3500000},
232 .n = { .min = 1, .max = 4 },
233 .m = { .min = 104, .max = 138 },
234 .m1 = { .min = 16, .max = 23 },
235 .m2 = { .min = 5, .max = 11 },
236 .p = { .min = 5, .max = 80 },
237 .p1 = { .min = 1, .max = 8},
238 .p2 = { .dot_limit = 165000,
239 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700240};
241
242static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700243 .dot = { .min = 20000, .max = 115000 },
244 .vco = { .min = 1750000, .max = 3500000 },
245 .n = { .min = 1, .max = 3 },
246 .m = { .min = 104, .max = 138 },
247 .m1 = { .min = 17, .max = 23 },
248 .m2 = { .min = 5, .max = 11 },
249 .p = { .min = 28, .max = 112 },
250 .p1 = { .min = 2, .max = 8 },
251 .p2 = { .dot_limit = 0,
252 .p2_slow = 14, .p2_fast = 14
Ma Ling044c7c42009-03-18 20:13:23 +0800253 },
Keith Packarde4b36692009-06-05 19:22:17 -0700254};
255
256static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700257 .dot = { .min = 80000, .max = 224000 },
258 .vco = { .min = 1750000, .max = 3500000 },
259 .n = { .min = 1, .max = 3 },
260 .m = { .min = 104, .max = 138 },
261 .m1 = { .min = 17, .max = 23 },
262 .m2 = { .min = 5, .max = 11 },
263 .p = { .min = 14, .max = 42 },
264 .p1 = { .min = 2, .max = 6 },
265 .p2 = { .dot_limit = 0,
266 .p2_slow = 7, .p2_fast = 7
Ma Ling044c7c42009-03-18 20:13:23 +0800267 },
Keith Packarde4b36692009-06-05 19:22:17 -0700268};
269
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500270static const intel_limit_t intel_limits_pineview_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400271 .dot = { .min = 20000, .max = 400000},
272 .vco = { .min = 1700000, .max = 3500000 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700273 /* Pineview's Ncounter is a ring counter */
Akshay Joshi0206e352011-08-16 15:34:10 -0400274 .n = { .min = 3, .max = 6 },
275 .m = { .min = 2, .max = 256 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700276 /* Pineview only has one combined m divider, which we treat as m2. */
Akshay Joshi0206e352011-08-16 15:34:10 -0400277 .m1 = { .min = 0, .max = 0 },
278 .m2 = { .min = 0, .max = 254 },
279 .p = { .min = 5, .max = 80 },
280 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700281 .p2 = { .dot_limit = 200000,
282 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700283};
284
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500285static const intel_limit_t intel_limits_pineview_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400286 .dot = { .min = 20000, .max = 400000 },
287 .vco = { .min = 1700000, .max = 3500000 },
288 .n = { .min = 3, .max = 6 },
289 .m = { .min = 2, .max = 256 },
290 .m1 = { .min = 0, .max = 0 },
291 .m2 = { .min = 0, .max = 254 },
292 .p = { .min = 7, .max = 112 },
293 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700294 .p2 = { .dot_limit = 112000,
295 .p2_slow = 14, .p2_fast = 14 },
Keith Packarde4b36692009-06-05 19:22:17 -0700296};
297
Eric Anholt273e27c2011-03-30 13:01:10 -0700298/* Ironlake / Sandybridge
299 *
300 * We calculate clock using (register_value + 2) for N/M1/M2, so here
301 * the range value for them is (actual_value - 2).
302 */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800303static const intel_limit_t intel_limits_ironlake_dac = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700304 .dot = { .min = 25000, .max = 350000 },
305 .vco = { .min = 1760000, .max = 3510000 },
306 .n = { .min = 1, .max = 5 },
307 .m = { .min = 79, .max = 127 },
308 .m1 = { .min = 12, .max = 22 },
309 .m2 = { .min = 5, .max = 9 },
310 .p = { .min = 5, .max = 80 },
311 .p1 = { .min = 1, .max = 8 },
312 .p2 = { .dot_limit = 225000,
313 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700314};
315
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800316static const intel_limit_t intel_limits_ironlake_single_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700317 .dot = { .min = 25000, .max = 350000 },
318 .vco = { .min = 1760000, .max = 3510000 },
319 .n = { .min = 1, .max = 3 },
320 .m = { .min = 79, .max = 118 },
321 .m1 = { .min = 12, .max = 22 },
322 .m2 = { .min = 5, .max = 9 },
323 .p = { .min = 28, .max = 112 },
324 .p1 = { .min = 2, .max = 8 },
325 .p2 = { .dot_limit = 225000,
326 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800327};
328
329static const intel_limit_t intel_limits_ironlake_dual_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700330 .dot = { .min = 25000, .max = 350000 },
331 .vco = { .min = 1760000, .max = 3510000 },
332 .n = { .min = 1, .max = 3 },
333 .m = { .min = 79, .max = 127 },
334 .m1 = { .min = 12, .max = 22 },
335 .m2 = { .min = 5, .max = 9 },
336 .p = { .min = 14, .max = 56 },
337 .p1 = { .min = 2, .max = 8 },
338 .p2 = { .dot_limit = 225000,
339 .p2_slow = 7, .p2_fast = 7 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800340};
341
Eric Anholt273e27c2011-03-30 13:01:10 -0700342/* LVDS 100mhz refclk limits. */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800343static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700344 .dot = { .min = 25000, .max = 350000 },
345 .vco = { .min = 1760000, .max = 3510000 },
346 .n = { .min = 1, .max = 2 },
347 .m = { .min = 79, .max = 126 },
348 .m1 = { .min = 12, .max = 22 },
349 .m2 = { .min = 5, .max = 9 },
350 .p = { .min = 28, .max = 112 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400351 .p1 = { .min = 2, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700352 .p2 = { .dot_limit = 225000,
353 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800354};
355
356static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700357 .dot = { .min = 25000, .max = 350000 },
358 .vco = { .min = 1760000, .max = 3510000 },
359 .n = { .min = 1, .max = 3 },
360 .m = { .min = 79, .max = 126 },
361 .m1 = { .min = 12, .max = 22 },
362 .m2 = { .min = 5, .max = 9 },
363 .p = { .min = 14, .max = 42 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400364 .p1 = { .min = 2, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700365 .p2 = { .dot_limit = 225000,
366 .p2_slow = 7, .p2_fast = 7 },
Zhao Yakui45476682009-12-31 16:06:04 +0800367};
368
Ville Syrjälädc730512013-09-24 21:26:30 +0300369static const intel_limit_t intel_limits_vlv = {
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300370 /*
371 * These are the data rate limits (measured in fast clocks)
372 * since those are the strictest limits we have. The fast
373 * clock and actual rate limits are more relaxed, so checking
374 * them would make no difference.
375 */
376 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
Daniel Vetter75e53982013-04-18 21:10:43 +0200377 .vco = { .min = 4000000, .max = 6000000 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700378 .n = { .min = 1, .max = 7 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700379 .m1 = { .min = 2, .max = 3 },
380 .m2 = { .min = 11, .max = 156 },
Ville Syrjäläb99ab662013-09-24 21:26:26 +0300381 .p1 = { .min = 2, .max = 3 },
Ville Syrjälä5fdc9c492013-09-24 21:26:29 +0300382 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700383};
384
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300385static const intel_limit_t intel_limits_chv = {
386 /*
387 * These are the data rate limits (measured in fast clocks)
388 * since those are the strictest limits we have. The fast
389 * clock and actual rate limits are more relaxed, so checking
390 * them would make no difference.
391 */
392 .dot = { .min = 25000 * 5, .max = 540000 * 5},
393 .vco = { .min = 4860000, .max = 6700000 },
394 .n = { .min = 1, .max = 1 },
395 .m1 = { .min = 2, .max = 2 },
396 .m2 = { .min = 24 << 22, .max = 175 << 22 },
397 .p1 = { .min = 2, .max = 4 },
398 .p2 = { .p2_slow = 1, .p2_fast = 14 },
399};
400
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300401static void vlv_clock(int refclk, intel_clock_t *clock)
402{
403 clock->m = clock->m1 * clock->m2;
404 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200405 if (WARN_ON(clock->n == 0 || clock->p == 0))
406 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300407 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
408 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300409}
410
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300411/**
412 * Returns whether any output on the specified pipe is of the specified type
413 */
Damien Lespiau40935612014-10-29 11:16:59 +0000414bool intel_pipe_has_type(struct intel_crtc *crtc, enum intel_output_type type)
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300415{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300416 struct drm_device *dev = crtc->base.dev;
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300417 struct intel_encoder *encoder;
418
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300419 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300420 if (encoder->type == type)
421 return true;
422
423 return false;
424}
425
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200426/**
427 * Returns whether any output on the specified pipe will have the specified
428 * type after a staged modeset is complete, i.e., the same as
429 * intel_pipe_has_type() but looking at encoder->new_crtc instead of
430 * encoder->crtc.
431 */
432static bool intel_pipe_will_have_type(struct intel_crtc *crtc, int type)
433{
434 struct drm_device *dev = crtc->base.dev;
435 struct intel_encoder *encoder;
436
437 for_each_intel_encoder(dev, encoder)
438 if (encoder->new_crtc == crtc && encoder->type == type)
439 return true;
440
441 return false;
442}
443
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300444static const intel_limit_t *intel_ironlake_limit(struct intel_crtc *crtc,
Chris Wilson1b894b52010-12-14 20:04:54 +0000445 int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800446{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300447 struct drm_device *dev = crtc->base.dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800448 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800449
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200450 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100451 if (intel_is_dual_link_lvds(dev)) {
Chris Wilson1b894b52010-12-14 20:04:54 +0000452 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800453 limit = &intel_limits_ironlake_dual_lvds_100m;
454 else
455 limit = &intel_limits_ironlake_dual_lvds;
456 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000457 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800458 limit = &intel_limits_ironlake_single_lvds_100m;
459 else
460 limit = &intel_limits_ironlake_single_lvds;
461 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200462 } else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800463 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800464
465 return limit;
466}
467
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300468static const intel_limit_t *intel_g4x_limit(struct intel_crtc *crtc)
Ma Ling044c7c42009-03-18 20:13:23 +0800469{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300470 struct drm_device *dev = crtc->base.dev;
Ma Ling044c7c42009-03-18 20:13:23 +0800471 const intel_limit_t *limit;
472
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200473 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100474 if (intel_is_dual_link_lvds(dev))
Keith Packarde4b36692009-06-05 19:22:17 -0700475 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800476 else
Keith Packarde4b36692009-06-05 19:22:17 -0700477 limit = &intel_limits_g4x_single_channel_lvds;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200478 } else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_HDMI) ||
479 intel_pipe_will_have_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700480 limit = &intel_limits_g4x_hdmi;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200481 } else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700482 limit = &intel_limits_g4x_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800483 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700484 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800485
486 return limit;
487}
488
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300489static const intel_limit_t *intel_limit(struct intel_crtc *crtc, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800490{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300491 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800492 const intel_limit_t *limit;
493
Eric Anholtbad720f2009-10-22 16:11:14 -0700494 if (HAS_PCH_SPLIT(dev))
Chris Wilson1b894b52010-12-14 20:04:54 +0000495 limit = intel_ironlake_limit(crtc, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800496 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800497 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500498 } else if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200499 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500500 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800501 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500502 limit = &intel_limits_pineview_sdvo;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300503 } else if (IS_CHERRYVIEW(dev)) {
504 limit = &intel_limits_chv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700505 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälädc730512013-09-24 21:26:30 +0300506 limit = &intel_limits_vlv;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100507 } else if (!IS_GEN2(dev)) {
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200508 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100509 limit = &intel_limits_i9xx_lvds;
510 else
511 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800512 } else {
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200513 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700514 limit = &intel_limits_i8xx_lvds;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200515 else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_DVO))
Keith Packarde4b36692009-06-05 19:22:17 -0700516 limit = &intel_limits_i8xx_dvo;
Daniel Vetter5d536e22013-07-06 12:52:06 +0200517 else
518 limit = &intel_limits_i8xx_dac;
Jesse Barnes79e53942008-11-07 14:24:08 -0800519 }
520 return limit;
521}
522
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500523/* m1 is reserved as 0 in Pineview, n is a ring counter */
524static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800525{
Shaohua Li21778322009-02-23 15:19:16 +0800526 clock->m = clock->m2 + 2;
527 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200528 if (WARN_ON(clock->n == 0 || clock->p == 0))
529 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300530 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
531 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Shaohua Li21778322009-02-23 15:19:16 +0800532}
533
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200534static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
535{
536 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
537}
538
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200539static void i9xx_clock(int refclk, intel_clock_t *clock)
Shaohua Li21778322009-02-23 15:19:16 +0800540{
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200541 clock->m = i9xx_dpll_compute_m(clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800542 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200543 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
544 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300545 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
546 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Jesse Barnes79e53942008-11-07 14:24:08 -0800547}
548
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300549static void chv_clock(int refclk, intel_clock_t *clock)
550{
551 clock->m = clock->m1 * clock->m2;
552 clock->p = clock->p1 * clock->p2;
553 if (WARN_ON(clock->n == 0 || clock->p == 0))
554 return;
555 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
556 clock->n << 22);
557 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
558}
559
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800560#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800561/**
562 * Returns whether the given set of divisors are valid for a given refclk with
563 * the given connectors.
564 */
565
Chris Wilson1b894b52010-12-14 20:04:54 +0000566static bool intel_PLL_is_valid(struct drm_device *dev,
567 const intel_limit_t *limit,
568 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800569{
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300570 if (clock->n < limit->n.min || limit->n.max < clock->n)
571 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800572 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400573 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800574 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400575 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800576 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400577 INTELPllInvalid("m1 out of range\n");
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300578
579 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev))
580 if (clock->m1 <= clock->m2)
581 INTELPllInvalid("m1 <= m2\n");
582
583 if (!IS_VALLEYVIEW(dev)) {
584 if (clock->p < limit->p.min || limit->p.max < clock->p)
585 INTELPllInvalid("p out of range\n");
586 if (clock->m < limit->m.min || limit->m.max < clock->m)
587 INTELPllInvalid("m out of range\n");
588 }
589
Jesse Barnes79e53942008-11-07 14:24:08 -0800590 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400591 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800592 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
593 * connector, etc., rather than just a single range.
594 */
595 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400596 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800597
598 return true;
599}
600
Ma Lingd4906092009-03-18 20:13:27 +0800601static bool
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300602i9xx_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800603 int target, int refclk, intel_clock_t *match_clock,
604 intel_clock_t *best_clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800605{
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300606 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800607 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800608 int err = target;
609
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200610 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800611 /*
Daniel Vettera210b022012-11-26 17:22:08 +0100612 * For LVDS just rely on its current settings for dual-channel.
613 * We haven't figured out how to reliably set up different
614 * single/dual channel state, if we even can.
Jesse Barnes79e53942008-11-07 14:24:08 -0800615 */
Daniel Vetter1974cad2012-11-26 17:22:09 +0100616 if (intel_is_dual_link_lvds(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800617 clock.p2 = limit->p2.p2_fast;
618 else
619 clock.p2 = limit->p2.p2_slow;
620 } else {
621 if (target < limit->p2.dot_limit)
622 clock.p2 = limit->p2.p2_slow;
623 else
624 clock.p2 = limit->p2.p2_fast;
625 }
626
Akshay Joshi0206e352011-08-16 15:34:10 -0400627 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800628
Zhao Yakui42158662009-11-20 11:24:18 +0800629 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
630 clock.m1++) {
631 for (clock.m2 = limit->m2.min;
632 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterc0efc382013-06-03 20:56:24 +0200633 if (clock.m2 >= clock.m1)
Zhao Yakui42158662009-11-20 11:24:18 +0800634 break;
635 for (clock.n = limit->n.min;
636 clock.n <= limit->n.max; clock.n++) {
637 for (clock.p1 = limit->p1.min;
638 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800639 int this_err;
640
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200641 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000642 if (!intel_PLL_is_valid(dev, limit,
643 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800644 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800645 if (match_clock &&
646 clock.p != match_clock->p)
647 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800648
649 this_err = abs(clock.dot - target);
650 if (this_err < err) {
651 *best_clock = clock;
652 err = this_err;
653 }
654 }
655 }
656 }
657 }
658
659 return (err != target);
660}
661
Ma Lingd4906092009-03-18 20:13:27 +0800662static bool
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300663pnv_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200664 int target, int refclk, intel_clock_t *match_clock,
665 intel_clock_t *best_clock)
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200666{
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300667 struct drm_device *dev = crtc->base.dev;
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200668 intel_clock_t clock;
669 int err = target;
670
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200671 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200672 /*
673 * For LVDS just rely on its current settings for dual-channel.
674 * We haven't figured out how to reliably set up different
675 * single/dual channel state, if we even can.
676 */
677 if (intel_is_dual_link_lvds(dev))
678 clock.p2 = limit->p2.p2_fast;
679 else
680 clock.p2 = limit->p2.p2_slow;
681 } else {
682 if (target < limit->p2.dot_limit)
683 clock.p2 = limit->p2.p2_slow;
684 else
685 clock.p2 = limit->p2.p2_fast;
686 }
687
688 memset(best_clock, 0, sizeof(*best_clock));
689
690 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
691 clock.m1++) {
692 for (clock.m2 = limit->m2.min;
693 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200694 for (clock.n = limit->n.min;
695 clock.n <= limit->n.max; clock.n++) {
696 for (clock.p1 = limit->p1.min;
697 clock.p1 <= limit->p1.max; clock.p1++) {
698 int this_err;
699
700 pineview_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800701 if (!intel_PLL_is_valid(dev, limit,
702 &clock))
703 continue;
704 if (match_clock &&
705 clock.p != match_clock->p)
706 continue;
707
708 this_err = abs(clock.dot - target);
709 if (this_err < err) {
710 *best_clock = clock;
711 err = this_err;
712 }
713 }
714 }
715 }
716 }
717
718 return (err != target);
719}
720
Ma Lingd4906092009-03-18 20:13:27 +0800721static bool
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300722g4x_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200723 int target, int refclk, intel_clock_t *match_clock,
724 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800725{
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300726 struct drm_device *dev = crtc->base.dev;
Ma Lingd4906092009-03-18 20:13:27 +0800727 intel_clock_t clock;
728 int max_n;
729 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400730 /* approximately equals target * 0.00585 */
731 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800732 found = false;
733
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200734 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100735 if (intel_is_dual_link_lvds(dev))
Ma Lingd4906092009-03-18 20:13:27 +0800736 clock.p2 = limit->p2.p2_fast;
737 else
738 clock.p2 = limit->p2.p2_slow;
739 } else {
740 if (target < limit->p2.dot_limit)
741 clock.p2 = limit->p2.p2_slow;
742 else
743 clock.p2 = limit->p2.p2_fast;
744 }
745
746 memset(best_clock, 0, sizeof(*best_clock));
747 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200748 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800749 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200750 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800751 for (clock.m1 = limit->m1.max;
752 clock.m1 >= limit->m1.min; clock.m1--) {
753 for (clock.m2 = limit->m2.max;
754 clock.m2 >= limit->m2.min; clock.m2--) {
755 for (clock.p1 = limit->p1.max;
756 clock.p1 >= limit->p1.min; clock.p1--) {
757 int this_err;
758
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200759 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000760 if (!intel_PLL_is_valid(dev, limit,
761 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800762 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000763
764 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800765 if (this_err < err_most) {
766 *best_clock = clock;
767 err_most = this_err;
768 max_n = clock.n;
769 found = true;
770 }
771 }
772 }
773 }
774 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800775 return found;
776}
Ma Lingd4906092009-03-18 20:13:27 +0800777
Zhenyu Wang2c072452009-06-05 15:38:42 +0800778static bool
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300779vlv_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200780 int target, int refclk, intel_clock_t *match_clock,
781 intel_clock_t *best_clock)
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700782{
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300783 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300784 intel_clock_t clock;
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300785 unsigned int bestppm = 1000000;
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300786 /* min update 19.2 MHz */
787 int max_n = min(limit->n.max, refclk / 19200);
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300788 bool found = false;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700789
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300790 target *= 5; /* fast clock */
791
792 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700793
794 /* based on hardware requirement, prefer smaller n to precision */
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300795 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Ville Syrjälä811bbf02013-09-24 21:26:25 +0300796 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
Ville Syrjälä889059d2013-09-24 21:26:27 +0300797 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
Ville Syrjäläc1a9ae42013-09-24 21:26:23 +0300798 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300799 clock.p = clock.p1 * clock.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700800 /* based on hardware requirement, prefer bigger m1,m2 values */
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300801 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300802 unsigned int ppm, diff;
803
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300804 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
805 refclk * clock.m1);
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300806
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300807 vlv_clock(refclk, &clock);
808
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300809 if (!intel_PLL_is_valid(dev, limit,
810 &clock))
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300811 continue;
812
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300813 diff = abs(clock.dot - target);
814 ppm = div_u64(1000000ULL * diff, target);
815
816 if (ppm < 100 && clock.p > best_clock->p) {
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300817 bestppm = 0;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300818 *best_clock = clock;
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300819 found = true;
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300820 }
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300821
Ville Syrjäläc6861222013-09-24 21:26:21 +0300822 if (bestppm >= 10 && ppm < bestppm - 10) {
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300823 bestppm = ppm;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300824 *best_clock = clock;
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300825 found = true;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700826 }
827 }
828 }
829 }
830 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700831
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300832 return found;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700833}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700834
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300835static bool
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300836chv_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300837 int target, int refclk, intel_clock_t *match_clock,
838 intel_clock_t *best_clock)
839{
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300840 struct drm_device *dev = crtc->base.dev;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300841 intel_clock_t clock;
842 uint64_t m2;
843 int found = false;
844
845 memset(best_clock, 0, sizeof(*best_clock));
846
847 /*
848 * Based on hardware doc, the n always set to 1, and m1 always
849 * set to 2. If requires to support 200Mhz refclk, we need to
850 * revisit this because n may not 1 anymore.
851 */
852 clock.n = 1, clock.m1 = 2;
853 target *= 5; /* fast clock */
854
855 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
856 for (clock.p2 = limit->p2.p2_fast;
857 clock.p2 >= limit->p2.p2_slow;
858 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
859
860 clock.p = clock.p1 * clock.p2;
861
862 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
863 clock.n) << 22, refclk * clock.m1);
864
865 if (m2 > INT_MAX/clock.m1)
866 continue;
867
868 clock.m2 = m2;
869
870 chv_clock(refclk, &clock);
871
872 if (!intel_PLL_is_valid(dev, limit, &clock))
873 continue;
874
875 /* based on hardware requirement, prefer bigger p
876 */
877 if (clock.p > best_clock->p) {
878 *best_clock = clock;
879 found = true;
880 }
881 }
882 }
883
884 return found;
885}
886
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300887bool intel_crtc_active(struct drm_crtc *crtc)
888{
889 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
890
891 /* Be paranoid as we can arrive here with only partial
892 * state retrieved from the hardware during setup.
893 *
Damien Lespiau241bfc32013-09-25 16:45:37 +0100894 * We can ditch the adjusted_mode.crtc_clock check as soon
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300895 * as Haswell has gained clock readout/fastboot support.
896 *
Dave Airlie66e514c2014-04-03 07:51:54 +1000897 * We can ditch the crtc->primary->fb check as soon as we can
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300898 * properly reconstruct framebuffers.
899 */
Matt Roperf4510a22014-04-01 15:22:40 -0700900 return intel_crtc->active && crtc->primary->fb &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200901 intel_crtc->config->base.adjusted_mode.crtc_clock;
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300902}
903
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200904enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
905 enum pipe pipe)
906{
907 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
908 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
909
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200910 return intel_crtc->config->cpu_transcoder;
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200911}
912
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +0300913static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
914{
915 struct drm_i915_private *dev_priv = dev->dev_private;
916 u32 reg = PIPEDSL(pipe);
917 u32 line1, line2;
918 u32 line_mask;
919
920 if (IS_GEN2(dev))
921 line_mask = DSL_LINEMASK_GEN2;
922 else
923 line_mask = DSL_LINEMASK_GEN3;
924
925 line1 = I915_READ(reg) & line_mask;
926 mdelay(5);
927 line2 = I915_READ(reg) & line_mask;
928
929 return line1 == line2;
930}
931
Keith Packardab7ad7f2010-10-03 00:33:06 -0700932/*
933 * intel_wait_for_pipe_off - wait for pipe to turn off
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300934 * @crtc: crtc whose pipe to wait for
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700935 *
936 * After disabling a pipe, we can't wait for vblank in the usual way,
937 * spinning on the vblank interrupt status bit, since we won't actually
938 * see an interrupt when the pipe is disabled.
939 *
Keith Packardab7ad7f2010-10-03 00:33:06 -0700940 * On Gen4 and above:
941 * wait for the pipe register state bit to turn off
942 *
943 * Otherwise:
944 * wait for the display line value to settle (it usually
945 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +0100946 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700947 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300948static void intel_wait_for_pipe_off(struct intel_crtc *crtc)
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700949{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300950 struct drm_device *dev = crtc->base.dev;
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700951 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200952 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300953 enum pipe pipe = crtc->pipe;
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700954
Keith Packardab7ad7f2010-10-03 00:33:06 -0700955 if (INTEL_INFO(dev)->gen >= 4) {
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200956 int reg = PIPECONF(cpu_transcoder);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700957
Keith Packardab7ad7f2010-10-03 00:33:06 -0700958 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100959 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
960 100))
Daniel Vetter284637d2012-07-09 09:51:57 +0200961 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700962 } else {
Keith Packardab7ad7f2010-10-03 00:33:06 -0700963 /* Wait for the display line to settle */
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +0300964 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
Daniel Vetter284637d2012-07-09 09:51:57 +0200965 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700966 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800967}
968
Damien Lespiaub0ea7d32012-12-13 16:09:00 +0000969/*
970 * ibx_digital_port_connected - is the specified port connected?
971 * @dev_priv: i915 private structure
972 * @port: the port to test
973 *
974 * Returns true if @port is connected, false otherwise.
975 */
976bool ibx_digital_port_connected(struct drm_i915_private *dev_priv,
977 struct intel_digital_port *port)
978{
979 u32 bit;
980
Damien Lespiauc36346e2012-12-13 16:09:03 +0000981 if (HAS_PCH_IBX(dev_priv->dev)) {
Robin Schroereba905b2014-05-18 02:24:50 +0200982 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +0000983 case PORT_B:
984 bit = SDE_PORTB_HOTPLUG;
985 break;
986 case PORT_C:
987 bit = SDE_PORTC_HOTPLUG;
988 break;
989 case PORT_D:
990 bit = SDE_PORTD_HOTPLUG;
991 break;
992 default:
993 return true;
994 }
995 } else {
Robin Schroereba905b2014-05-18 02:24:50 +0200996 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +0000997 case PORT_B:
998 bit = SDE_PORTB_HOTPLUG_CPT;
999 break;
1000 case PORT_C:
1001 bit = SDE_PORTC_HOTPLUG_CPT;
1002 break;
1003 case PORT_D:
1004 bit = SDE_PORTD_HOTPLUG_CPT;
1005 break;
1006 default:
1007 return true;
1008 }
Damien Lespiaub0ea7d32012-12-13 16:09:00 +00001009 }
1010
1011 return I915_READ(SDEISR) & bit;
1012}
1013
Jesse Barnesb24e7172011-01-04 15:09:30 -08001014static const char *state_string(bool enabled)
1015{
1016 return enabled ? "on" : "off";
1017}
1018
1019/* Only for pre-ILK configs */
Daniel Vetter55607e82013-06-16 21:42:39 +02001020void assert_pll(struct drm_i915_private *dev_priv,
1021 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001022{
1023 int reg;
1024 u32 val;
1025 bool cur_state;
1026
1027 reg = DPLL(pipe);
1028 val = I915_READ(reg);
1029 cur_state = !!(val & DPLL_VCO_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001030 I915_STATE_WARN(cur_state != state,
Jesse Barnesb24e7172011-01-04 15:09:30 -08001031 "PLL state assertion failure (expected %s, current %s)\n",
1032 state_string(state), state_string(cur_state));
1033}
Jesse Barnesb24e7172011-01-04 15:09:30 -08001034
Jani Nikula23538ef2013-08-27 15:12:22 +03001035/* XXX: the dsi pll is shared between MIPI DSI ports */
1036static void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
1037{
1038 u32 val;
1039 bool cur_state;
1040
1041 mutex_lock(&dev_priv->dpio_lock);
1042 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
1043 mutex_unlock(&dev_priv->dpio_lock);
1044
1045 cur_state = val & DSI_PLL_VCO_EN;
Rob Clarke2c719b2014-12-15 13:56:32 -05001046 I915_STATE_WARN(cur_state != state,
Jani Nikula23538ef2013-08-27 15:12:22 +03001047 "DSI PLL state assertion failure (expected %s, current %s)\n",
1048 state_string(state), state_string(cur_state));
1049}
1050#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1051#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1052
Daniel Vetter55607e82013-06-16 21:42:39 +02001053struct intel_shared_dpll *
Daniel Vettere2b78262013-06-07 23:10:03 +02001054intel_crtc_to_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes040484a2011-01-03 12:14:26 -08001055{
Daniel Vettere2b78262013-06-07 23:10:03 +02001056 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1057
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001058 if (crtc->config->shared_dpll < 0)
Daniel Vettere2b78262013-06-07 23:10:03 +02001059 return NULL;
1060
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001061 return &dev_priv->shared_dplls[crtc->config->shared_dpll];
Daniel Vettere2b78262013-06-07 23:10:03 +02001062}
1063
Jesse Barnesb24e7172011-01-04 15:09:30 -08001064/* For ILK+ */
Daniel Vetter55607e82013-06-16 21:42:39 +02001065void assert_shared_dpll(struct drm_i915_private *dev_priv,
1066 struct intel_shared_dpll *pll,
1067 bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001068{
Jesse Barnes040484a2011-01-03 12:14:26 -08001069 bool cur_state;
Daniel Vetter53589012013-06-05 13:34:16 +02001070 struct intel_dpll_hw_state hw_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001071
Chris Wilson92b27b02012-05-20 18:10:50 +01001072 if (WARN (!pll,
Daniel Vetter46edb022013-06-05 13:34:12 +02001073 "asserting DPLL %s with no DPLL\n", state_string(state)))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001074 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001075
Daniel Vetter53589012013-06-05 13:34:16 +02001076 cur_state = pll->get_hw_state(dev_priv, pll, &hw_state);
Rob Clarke2c719b2014-12-15 13:56:32 -05001077 I915_STATE_WARN(cur_state != state,
Daniel Vetter53589012013-06-05 13:34:16 +02001078 "%s assertion failure (expected %s, current %s)\n",
1079 pll->name, state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001080}
Jesse Barnes040484a2011-01-03 12:14:26 -08001081
1082static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1083 enum pipe pipe, bool state)
1084{
1085 int reg;
1086 u32 val;
1087 bool cur_state;
Paulo Zanoniad80a812012-10-24 16:06:19 -02001088 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1089 pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001090
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001091 if (HAS_DDI(dev_priv->dev)) {
1092 /* DDI does not have a specific FDI_TX register */
Paulo Zanoniad80a812012-10-24 16:06:19 -02001093 reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001094 val = I915_READ(reg);
Paulo Zanoniad80a812012-10-24 16:06:19 -02001095 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001096 } else {
1097 reg = FDI_TX_CTL(pipe);
1098 val = I915_READ(reg);
1099 cur_state = !!(val & FDI_TX_ENABLE);
1100 }
Rob Clarke2c719b2014-12-15 13:56:32 -05001101 I915_STATE_WARN(cur_state != state,
Jesse Barnes040484a2011-01-03 12:14:26 -08001102 "FDI TX state assertion failure (expected %s, current %s)\n",
1103 state_string(state), state_string(cur_state));
1104}
1105#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1106#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1107
1108static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1109 enum pipe pipe, bool state)
1110{
1111 int reg;
1112 u32 val;
1113 bool cur_state;
1114
Paulo Zanonid63fa0d2012-11-20 13:27:35 -02001115 reg = FDI_RX_CTL(pipe);
1116 val = I915_READ(reg);
1117 cur_state = !!(val & FDI_RX_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001118 I915_STATE_WARN(cur_state != state,
Jesse Barnes040484a2011-01-03 12:14:26 -08001119 "FDI RX state assertion failure (expected %s, current %s)\n",
1120 state_string(state), state_string(cur_state));
1121}
1122#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1123#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1124
1125static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1126 enum pipe pipe)
1127{
1128 int reg;
1129 u32 val;
1130
1131 /* ILK FDI PLL is always enabled */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001132 if (INTEL_INFO(dev_priv->dev)->gen == 5)
Jesse Barnes040484a2011-01-03 12:14:26 -08001133 return;
1134
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001135 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001136 if (HAS_DDI(dev_priv->dev))
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001137 return;
1138
Jesse Barnes040484a2011-01-03 12:14:26 -08001139 reg = FDI_TX_CTL(pipe);
1140 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001141 I915_STATE_WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
Jesse Barnes040484a2011-01-03 12:14:26 -08001142}
1143
Daniel Vetter55607e82013-06-16 21:42:39 +02001144void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1145 enum pipe pipe, bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001146{
1147 int reg;
1148 u32 val;
Daniel Vetter55607e82013-06-16 21:42:39 +02001149 bool cur_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001150
1151 reg = FDI_RX_CTL(pipe);
1152 val = I915_READ(reg);
Daniel Vetter55607e82013-06-16 21:42:39 +02001153 cur_state = !!(val & FDI_RX_PLL_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001154 I915_STATE_WARN(cur_state != state,
Daniel Vetter55607e82013-06-16 21:42:39 +02001155 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1156 state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001157}
1158
Daniel Vetterb680c372014-09-19 18:27:27 +02001159void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1160 enum pipe pipe)
Jesse Barnesea0760c2011-01-04 15:09:32 -08001161{
Jani Nikulabedd4db2014-08-22 15:04:13 +03001162 struct drm_device *dev = dev_priv->dev;
1163 int pp_reg;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001164 u32 val;
1165 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001166 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001167
Jani Nikulabedd4db2014-08-22 15:04:13 +03001168 if (WARN_ON(HAS_DDI(dev)))
1169 return;
1170
1171 if (HAS_PCH_SPLIT(dev)) {
1172 u32 port_sel;
1173
Jesse Barnesea0760c2011-01-04 15:09:32 -08001174 pp_reg = PCH_PP_CONTROL;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001175 port_sel = I915_READ(PCH_PP_ON_DELAYS) & PANEL_PORT_SELECT_MASK;
1176
1177 if (port_sel == PANEL_PORT_SELECT_LVDS &&
1178 I915_READ(PCH_LVDS) & LVDS_PIPEB_SELECT)
1179 panel_pipe = PIPE_B;
1180 /* XXX: else fix for eDP */
1181 } else if (IS_VALLEYVIEW(dev)) {
1182 /* presumably write lock depends on pipe, not port select */
1183 pp_reg = VLV_PIPE_PP_CONTROL(pipe);
1184 panel_pipe = pipe;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001185 } else {
1186 pp_reg = PP_CONTROL;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001187 if (I915_READ(LVDS) & LVDS_PIPEB_SELECT)
1188 panel_pipe = PIPE_B;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001189 }
1190
1191 val = I915_READ(pp_reg);
1192 if (!(val & PANEL_POWER_ON) ||
Jani Nikulaec49ba22014-08-21 15:06:25 +03001193 ((val & PANEL_UNLOCK_MASK) == PANEL_UNLOCK_REGS))
Jesse Barnesea0760c2011-01-04 15:09:32 -08001194 locked = false;
1195
Rob Clarke2c719b2014-12-15 13:56:32 -05001196 I915_STATE_WARN(panel_pipe == pipe && locked,
Jesse Barnesea0760c2011-01-04 15:09:32 -08001197 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001198 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001199}
1200
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001201static void assert_cursor(struct drm_i915_private *dev_priv,
1202 enum pipe pipe, bool state)
1203{
1204 struct drm_device *dev = dev_priv->dev;
1205 bool cur_state;
1206
Paulo Zanonid9d82082014-02-27 16:30:56 -03001207 if (IS_845G(dev) || IS_I865G(dev))
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001208 cur_state = I915_READ(_CURACNTR) & CURSOR_ENABLE;
Paulo Zanonid9d82082014-02-27 16:30:56 -03001209 else
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03001210 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001211
Rob Clarke2c719b2014-12-15 13:56:32 -05001212 I915_STATE_WARN(cur_state != state,
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001213 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
1214 pipe_name(pipe), state_string(state), state_string(cur_state));
1215}
1216#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1217#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1218
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001219void assert_pipe(struct drm_i915_private *dev_priv,
1220 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001221{
1222 int reg;
1223 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001224 bool cur_state;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001225 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1226 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001227
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001228 /* if we need the pipe quirk it must be always on */
1229 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1230 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Daniel Vetter8e636782012-01-22 01:36:48 +01001231 state = true;
1232
Daniel Vetterf458ebb2014-09-30 10:56:39 +02001233 if (!intel_display_power_is_enabled(dev_priv,
Paulo Zanonib97186f2013-05-03 12:15:36 -03001234 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
Paulo Zanoni69310162013-01-29 16:35:19 -02001235 cur_state = false;
1236 } else {
1237 reg = PIPECONF(cpu_transcoder);
1238 val = I915_READ(reg);
1239 cur_state = !!(val & PIPECONF_ENABLE);
1240 }
1241
Rob Clarke2c719b2014-12-15 13:56:32 -05001242 I915_STATE_WARN(cur_state != state,
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001243 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001244 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001245}
1246
Chris Wilson931872f2012-01-16 23:01:13 +00001247static void assert_plane(struct drm_i915_private *dev_priv,
1248 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001249{
1250 int reg;
1251 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001252 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001253
1254 reg = DSPCNTR(plane);
1255 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001256 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001257 I915_STATE_WARN(cur_state != state,
Chris Wilson931872f2012-01-16 23:01:13 +00001258 "plane %c assertion failure (expected %s, current %s)\n",
1259 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001260}
1261
Chris Wilson931872f2012-01-16 23:01:13 +00001262#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1263#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1264
Jesse Barnesb24e7172011-01-04 15:09:30 -08001265static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1266 enum pipe pipe)
1267{
Ville Syrjälä653e1022013-06-04 13:49:05 +03001268 struct drm_device *dev = dev_priv->dev;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001269 int reg, i;
1270 u32 val;
1271 int cur_pipe;
1272
Ville Syrjälä653e1022013-06-04 13:49:05 +03001273 /* Primary planes are fixed to pipes on gen4+ */
1274 if (INTEL_INFO(dev)->gen >= 4) {
Adam Jackson28c057942011-10-07 14:38:42 -04001275 reg = DSPCNTR(pipe);
1276 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001277 I915_STATE_WARN(val & DISPLAY_PLANE_ENABLE,
Adam Jackson28c057942011-10-07 14:38:42 -04001278 "plane %c assertion failure, should be disabled but not\n",
1279 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001280 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001281 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001282
Jesse Barnesb24e7172011-01-04 15:09:30 -08001283 /* Need to check both planes against the pipe */
Damien Lespiau055e3932014-08-18 13:49:10 +01001284 for_each_pipe(dev_priv, i) {
Jesse Barnesb24e7172011-01-04 15:09:30 -08001285 reg = DSPCNTR(i);
1286 val = I915_READ(reg);
1287 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1288 DISPPLANE_SEL_PIPE_SHIFT;
Rob Clarke2c719b2014-12-15 13:56:32 -05001289 I915_STATE_WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001290 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1291 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001292 }
1293}
1294
Jesse Barnes19332d72013-03-28 09:55:38 -07001295static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1296 enum pipe pipe)
1297{
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001298 struct drm_device *dev = dev_priv->dev;
Damien Lespiau1fe47782014-03-03 17:31:47 +00001299 int reg, sprite;
Jesse Barnes19332d72013-03-28 09:55:38 -07001300 u32 val;
1301
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001302 if (INTEL_INFO(dev)->gen >= 9) {
1303 for_each_sprite(pipe, sprite) {
1304 val = I915_READ(PLANE_CTL(pipe, sprite));
Rob Clarke2c719b2014-12-15 13:56:32 -05001305 I915_STATE_WARN(val & PLANE_CTL_ENABLE,
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001306 "plane %d assertion failure, should be off on pipe %c but is still active\n",
1307 sprite, pipe_name(pipe));
1308 }
1309 } else if (IS_VALLEYVIEW(dev)) {
Damien Lespiau1fe47782014-03-03 17:31:47 +00001310 for_each_sprite(pipe, sprite) {
1311 reg = SPCNTR(pipe, sprite);
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001312 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001313 I915_STATE_WARN(val & SP_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001314 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +00001315 sprite_name(pipe, sprite), pipe_name(pipe));
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001316 }
1317 } else if (INTEL_INFO(dev)->gen >= 7) {
1318 reg = SPRCTL(pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07001319 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001320 I915_STATE_WARN(val & SPRITE_ENABLE,
Ville Syrjälä06da8da2013-04-17 17:48:51 +03001321 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001322 plane_name(pipe), pipe_name(pipe));
1323 } else if (INTEL_INFO(dev)->gen >= 5) {
1324 reg = DVSCNTR(pipe);
1325 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001326 I915_STATE_WARN(val & DVS_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001327 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1328 plane_name(pipe), pipe_name(pipe));
Jesse Barnes19332d72013-03-28 09:55:38 -07001329 }
1330}
1331
Ville Syrjälä08c71e52014-08-06 14:49:45 +03001332static void assert_vblank_disabled(struct drm_crtc *crtc)
1333{
Rob Clarke2c719b2014-12-15 13:56:32 -05001334 if (I915_STATE_WARN_ON(drm_crtc_vblank_get(crtc) == 0))
Ville Syrjälä08c71e52014-08-06 14:49:45 +03001335 drm_crtc_vblank_put(crtc);
1336}
1337
Paulo Zanoni89eff4b2014-01-08 11:12:28 -02001338static void ibx_assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
Jesse Barnes92f25842011-01-04 15:09:34 -08001339{
1340 u32 val;
1341 bool enabled;
1342
Rob Clarke2c719b2014-12-15 13:56:32 -05001343 I915_STATE_WARN_ON(!(HAS_PCH_IBX(dev_priv->dev) || HAS_PCH_CPT(dev_priv->dev)));
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001344
Jesse Barnes92f25842011-01-04 15:09:34 -08001345 val = I915_READ(PCH_DREF_CONTROL);
1346 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1347 DREF_SUPERSPREAD_SOURCE_MASK));
Rob Clarke2c719b2014-12-15 13:56:32 -05001348 I915_STATE_WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
Jesse Barnes92f25842011-01-04 15:09:34 -08001349}
1350
Daniel Vetterab9412b2013-05-03 11:49:46 +02001351static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1352 enum pipe pipe)
Jesse Barnes92f25842011-01-04 15:09:34 -08001353{
1354 int reg;
1355 u32 val;
1356 bool enabled;
1357
Daniel Vetterab9412b2013-05-03 11:49:46 +02001358 reg = PCH_TRANSCONF(pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001359 val = I915_READ(reg);
1360 enabled = !!(val & TRANS_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001361 I915_STATE_WARN(enabled,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001362 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1363 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001364}
1365
Keith Packard4e634382011-08-06 10:39:45 -07001366static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1367 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001368{
1369 if ((val & DP_PORT_EN) == 0)
1370 return false;
1371
1372 if (HAS_PCH_CPT(dev_priv->dev)) {
1373 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1374 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1375 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1376 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001377 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1378 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1379 return false;
Keith Packardf0575e92011-07-25 22:12:43 -07001380 } else {
1381 if ((val & DP_PIPE_MASK) != (pipe << 30))
1382 return false;
1383 }
1384 return true;
1385}
1386
Keith Packard1519b992011-08-06 10:35:34 -07001387static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1388 enum pipe pipe, u32 val)
1389{
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001390 if ((val & SDVO_ENABLE) == 0)
Keith Packard1519b992011-08-06 10:35:34 -07001391 return false;
1392
1393 if (HAS_PCH_CPT(dev_priv->dev)) {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001394 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001395 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001396 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1397 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1398 return false;
Keith Packard1519b992011-08-06 10:35:34 -07001399 } else {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001400 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001401 return false;
1402 }
1403 return true;
1404}
1405
1406static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1407 enum pipe pipe, u32 val)
1408{
1409 if ((val & LVDS_PORT_EN) == 0)
1410 return false;
1411
1412 if (HAS_PCH_CPT(dev_priv->dev)) {
1413 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1414 return false;
1415 } else {
1416 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1417 return false;
1418 }
1419 return true;
1420}
1421
1422static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1423 enum pipe pipe, u32 val)
1424{
1425 if ((val & ADPA_DAC_ENABLE) == 0)
1426 return false;
1427 if (HAS_PCH_CPT(dev_priv->dev)) {
1428 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1429 return false;
1430 } else {
1431 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1432 return false;
1433 }
1434 return true;
1435}
1436
Jesse Barnes291906f2011-02-02 12:28:03 -08001437static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001438 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001439{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001440 u32 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001441 I915_STATE_WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001442 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001443 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001444
Rob Clarke2c719b2014-12-15 13:56:32 -05001445 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001446 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001447 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001448}
1449
1450static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1451 enum pipe pipe, int reg)
1452{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001453 u32 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001454 I915_STATE_WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001455 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001456 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001457
Rob Clarke2c719b2014-12-15 13:56:32 -05001458 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001459 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001460 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001461}
1462
1463static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1464 enum pipe pipe)
1465{
1466 int reg;
1467 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001468
Keith Packardf0575e92011-07-25 22:12:43 -07001469 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1470 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1471 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001472
1473 reg = PCH_ADPA;
1474 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001475 I915_STATE_WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001476 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001477 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001478
1479 reg = PCH_LVDS;
1480 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001481 I915_STATE_WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001482 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001483 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001484
Paulo Zanonie2debe92013-02-18 19:00:27 -03001485 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1486 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1487 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
Jesse Barnes291906f2011-02-02 12:28:03 -08001488}
1489
Jesse Barnes40e9cf62013-10-03 11:35:46 -07001490static void intel_init_dpio(struct drm_device *dev)
1491{
1492 struct drm_i915_private *dev_priv = dev->dev_private;
1493
1494 if (!IS_VALLEYVIEW(dev))
1495 return;
1496
Chon Ming Leea09cadd2014-04-09 13:28:14 +03001497 /*
1498 * IOSF_PORT_DPIO is used for VLV x2 PHY (DP/HDMI B and C),
1499 * CHV x1 PHY (DP/HDMI D)
1500 * IOSF_PORT_DPIO_2 is used for CHV x2 PHY (DP/HDMI B and C)
1501 */
1502 if (IS_CHERRYVIEW(dev)) {
1503 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO_2;
1504 DPIO_PHY_IOSF_PORT(DPIO_PHY1) = IOSF_PORT_DPIO;
1505 } else {
1506 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO;
1507 }
Jesse Barnes5382f5f352013-12-16 16:34:24 -08001508}
1509
Ville Syrjäläd288f652014-10-28 13:20:22 +02001510static void vlv_enable_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001511 const struct intel_crtc_state *pipe_config)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001512{
Daniel Vetter426115c2013-07-11 22:13:42 +02001513 struct drm_device *dev = crtc->base.dev;
1514 struct drm_i915_private *dev_priv = dev->dev_private;
1515 int reg = DPLL(crtc->pipe);
Ville Syrjäläd288f652014-10-28 13:20:22 +02001516 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001517
Daniel Vetter426115c2013-07-11 22:13:42 +02001518 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001519
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001520 /* No really, not for ILK+ */
Daniel Vetter87442f72013-06-06 00:52:17 +02001521 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev));
1522
1523 /* PLL is protected by panel, make sure we can write it */
Jani Nikula6a9e7362014-08-22 15:06:35 +03001524 if (IS_MOBILE(dev_priv->dev))
Daniel Vetter426115c2013-07-11 22:13:42 +02001525 assert_panel_unlocked(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001526
Daniel Vetter426115c2013-07-11 22:13:42 +02001527 I915_WRITE(reg, dpll);
1528 POSTING_READ(reg);
1529 udelay(150);
1530
1531 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1532 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1533
Ville Syrjäläd288f652014-10-28 13:20:22 +02001534 I915_WRITE(DPLL_MD(crtc->pipe), pipe_config->dpll_hw_state.dpll_md);
Daniel Vetter426115c2013-07-11 22:13:42 +02001535 POSTING_READ(DPLL_MD(crtc->pipe));
Daniel Vetter87442f72013-06-06 00:52:17 +02001536
1537 /* We do this three times for luck */
Daniel Vetter426115c2013-07-11 22:13:42 +02001538 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001539 POSTING_READ(reg);
1540 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001541 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001542 POSTING_READ(reg);
1543 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001544 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001545 POSTING_READ(reg);
1546 udelay(150); /* wait for warmup */
1547}
1548
Ville Syrjäläd288f652014-10-28 13:20:22 +02001549static void chv_enable_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001550 const struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001551{
1552 struct drm_device *dev = crtc->base.dev;
1553 struct drm_i915_private *dev_priv = dev->dev_private;
1554 int pipe = crtc->pipe;
1555 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001556 u32 tmp;
1557
1558 assert_pipe_disabled(dev_priv, crtc->pipe);
1559
1560 BUG_ON(!IS_CHERRYVIEW(dev_priv->dev));
1561
1562 mutex_lock(&dev_priv->dpio_lock);
1563
1564 /* Enable back the 10bit clock to display controller */
1565 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1566 tmp |= DPIO_DCLKP_EN;
1567 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1568
1569 /*
1570 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1571 */
1572 udelay(1);
1573
1574 /* Enable PLL */
Ville Syrjäläd288f652014-10-28 13:20:22 +02001575 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001576
1577 /* Check PLL is locked */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001578 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001579 DRM_ERROR("PLL %d failed to lock\n", pipe);
1580
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001581 /* not sure when this should be written */
Ville Syrjäläd288f652014-10-28 13:20:22 +02001582 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001583 POSTING_READ(DPLL_MD(pipe));
1584
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001585 mutex_unlock(&dev_priv->dpio_lock);
1586}
1587
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001588static int intel_num_dvo_pipes(struct drm_device *dev)
1589{
1590 struct intel_crtc *crtc;
1591 int count = 0;
1592
1593 for_each_intel_crtc(dev, crtc)
1594 count += crtc->active &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001595 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO);
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001596
1597 return count;
1598}
1599
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001600static void i9xx_enable_pll(struct intel_crtc *crtc)
Daniel Vetter87442f72013-06-06 00:52:17 +02001601{
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001602 struct drm_device *dev = crtc->base.dev;
1603 struct drm_i915_private *dev_priv = dev->dev_private;
1604 int reg = DPLL(crtc->pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001605 u32 dpll = crtc->config->dpll_hw_state.dpll;
Daniel Vetter87442f72013-06-06 00:52:17 +02001606
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001607 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001608
1609 /* No really, not for ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001610 BUG_ON(INTEL_INFO(dev)->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001611
1612 /* PLL is protected by panel, make sure we can write it */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001613 if (IS_MOBILE(dev) && !IS_I830(dev))
1614 assert_panel_unlocked(dev_priv, crtc->pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001615
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001616 /* Enable DVO 2x clock on both PLLs if necessary */
1617 if (IS_I830(dev) && intel_num_dvo_pipes(dev) > 0) {
1618 /*
1619 * It appears to be important that we don't enable this
1620 * for the current pipe before otherwise configuring the
1621 * PLL. No idea how this should be handled if multiple
1622 * DVO outputs are enabled simultaneosly.
1623 */
1624 dpll |= DPLL_DVO_2X_MODE;
1625 I915_WRITE(DPLL(!crtc->pipe),
1626 I915_READ(DPLL(!crtc->pipe)) | DPLL_DVO_2X_MODE);
1627 }
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001628
1629 /* Wait for the clocks to stabilize. */
1630 POSTING_READ(reg);
1631 udelay(150);
1632
1633 if (INTEL_INFO(dev)->gen >= 4) {
1634 I915_WRITE(DPLL_MD(crtc->pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001635 crtc->config->dpll_hw_state.dpll_md);
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001636 } else {
1637 /* The pixel multiplier can only be updated once the
1638 * DPLL is enabled and the clocks are stable.
1639 *
1640 * So write it again.
1641 */
1642 I915_WRITE(reg, dpll);
1643 }
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001644
1645 /* We do this three times for luck */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001646 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001647 POSTING_READ(reg);
1648 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001649 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001650 POSTING_READ(reg);
1651 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001652 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001653 POSTING_READ(reg);
1654 udelay(150); /* wait for warmup */
1655}
1656
1657/**
Daniel Vetter50b44a42013-06-05 13:34:33 +02001658 * i9xx_disable_pll - disable a PLL
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001659 * @dev_priv: i915 private structure
1660 * @pipe: pipe PLL to disable
1661 *
1662 * Disable the PLL for @pipe, making sure the pipe is off first.
1663 *
1664 * Note! This is for pre-ILK only.
1665 */
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001666static void i9xx_disable_pll(struct intel_crtc *crtc)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001667{
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001668 struct drm_device *dev = crtc->base.dev;
1669 struct drm_i915_private *dev_priv = dev->dev_private;
1670 enum pipe pipe = crtc->pipe;
1671
1672 /* Disable DVO 2x clock on both PLLs if necessary */
1673 if (IS_I830(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001674 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO) &&
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001675 intel_num_dvo_pipes(dev) == 1) {
1676 I915_WRITE(DPLL(PIPE_B),
1677 I915_READ(DPLL(PIPE_B)) & ~DPLL_DVO_2X_MODE);
1678 I915_WRITE(DPLL(PIPE_A),
1679 I915_READ(DPLL(PIPE_A)) & ~DPLL_DVO_2X_MODE);
1680 }
1681
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001682 /* Don't disable pipe or pipe PLLs if needed */
1683 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1684 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001685 return;
1686
1687 /* Make sure the pipe isn't still relying on us */
1688 assert_pipe_disabled(dev_priv, pipe);
1689
Daniel Vetter50b44a42013-06-05 13:34:33 +02001690 I915_WRITE(DPLL(pipe), 0);
1691 POSTING_READ(DPLL(pipe));
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001692}
1693
Jesse Barnesf6071162013-10-01 10:41:38 -07001694static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1695{
1696 u32 val = 0;
1697
1698 /* Make sure the pipe isn't still relying on us */
1699 assert_pipe_disabled(dev_priv, pipe);
1700
Imre Deake5cbfbf2014-01-09 17:08:16 +02001701 /*
1702 * Leave integrated clock source and reference clock enabled for pipe B.
1703 * The latter is needed for VGA hotplug / manual detection.
1704 */
Jesse Barnesf6071162013-10-01 10:41:38 -07001705 if (pipe == PIPE_B)
Imre Deake5cbfbf2014-01-09 17:08:16 +02001706 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REFA_CLK_ENABLE_VLV;
Jesse Barnesf6071162013-10-01 10:41:38 -07001707 I915_WRITE(DPLL(pipe), val);
1708 POSTING_READ(DPLL(pipe));
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001709
1710}
1711
1712static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1713{
Ville Syrjäläd7520482014-04-09 13:28:59 +03001714 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001715 u32 val;
1716
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001717 /* Make sure the pipe isn't still relying on us */
1718 assert_pipe_disabled(dev_priv, pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001719
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001720 /* Set PLL en = 0 */
Ville Syrjäläd17ec4c2014-06-28 02:03:59 +03001721 val = DPLL_SSC_REF_CLOCK_CHV | DPLL_REFA_CLK_ENABLE_VLV;
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001722 if (pipe != PIPE_A)
1723 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1724 I915_WRITE(DPLL(pipe), val);
1725 POSTING_READ(DPLL(pipe));
Ville Syrjäläd7520482014-04-09 13:28:59 +03001726
1727 mutex_lock(&dev_priv->dpio_lock);
1728
1729 /* Disable 10bit clock to display controller */
1730 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1731 val &= ~DPIO_DCLKP_EN;
1732 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1733
Ville Syrjälä61407f62014-05-27 16:32:55 +03001734 /* disable left/right clock distribution */
1735 if (pipe != PIPE_B) {
1736 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1737 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1738 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1739 } else {
1740 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1741 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1742 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1743 }
1744
Ville Syrjäläd7520482014-04-09 13:28:59 +03001745 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesf6071162013-10-01 10:41:38 -07001746}
1747
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001748void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
1749 struct intel_digital_port *dport)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001750{
1751 u32 port_mask;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001752 int dpll_reg;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001753
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001754 switch (dport->port) {
1755 case PORT_B:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001756 port_mask = DPLL_PORTB_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001757 dpll_reg = DPLL(0);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001758 break;
1759 case PORT_C:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001760 port_mask = DPLL_PORTC_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001761 dpll_reg = DPLL(0);
1762 break;
1763 case PORT_D:
1764 port_mask = DPLL_PORTD_READY_MASK;
1765 dpll_reg = DPIO_PHY_STATUS;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001766 break;
1767 default:
1768 BUG();
1769 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07001770
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001771 if (wait_for((I915_READ(dpll_reg) & port_mask) == 0, 1000))
Jesse Barnes89b667f2013-04-18 14:51:36 -07001772 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001773 port_name(dport->port), I915_READ(dpll_reg));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001774}
1775
Daniel Vetterb14b1052014-04-24 23:55:13 +02001776static void intel_prepare_shared_dpll(struct intel_crtc *crtc)
1777{
1778 struct drm_device *dev = crtc->base.dev;
1779 struct drm_i915_private *dev_priv = dev->dev_private;
1780 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
1781
Chris Wilsonbe19f0f2014-05-28 16:16:42 +01001782 if (WARN_ON(pll == NULL))
1783 return;
1784
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001785 WARN_ON(!pll->config.crtc_mask);
Daniel Vetterb14b1052014-04-24 23:55:13 +02001786 if (pll->active == 0) {
1787 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
1788 WARN_ON(pll->on);
1789 assert_shared_dpll_disabled(dev_priv, pll);
1790
1791 pll->mode_set(dev_priv, pll);
1792 }
1793}
1794
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001795/**
Daniel Vetter85b38942014-04-24 23:55:14 +02001796 * intel_enable_shared_dpll - enable PCH PLL
Jesse Barnes92f25842011-01-04 15:09:34 -08001797 * @dev_priv: i915 private structure
1798 * @pipe: pipe PLL to enable
1799 *
1800 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1801 * drives the transcoder clock.
1802 */
Daniel Vetter85b38942014-04-24 23:55:14 +02001803static void intel_enable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001804{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001805 struct drm_device *dev = crtc->base.dev;
1806 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001807 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes92f25842011-01-04 15:09:34 -08001808
Daniel Vetter87a875b2013-06-05 13:34:19 +02001809 if (WARN_ON(pll == NULL))
Chris Wilson48da64a2012-05-13 20:16:12 +01001810 return;
1811
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001812 if (WARN_ON(pll->config.crtc_mask == 0))
Chris Wilson48da64a2012-05-13 20:16:12 +01001813 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001814
Damien Lespiau74dd6922014-07-29 18:06:17 +01001815 DRM_DEBUG_KMS("enable %s (active %d, on? %d) for crtc %d\n",
Daniel Vetter46edb022013-06-05 13:34:12 +02001816 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001817 crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001818
Daniel Vettercdbd2312013-06-05 13:34:03 +02001819 if (pll->active++) {
1820 WARN_ON(!pll->on);
Daniel Vettere9d69442013-06-05 13:34:15 +02001821 assert_shared_dpll_enabled(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001822 return;
1823 }
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001824 WARN_ON(pll->on);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001825
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001826 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
1827
Daniel Vetter46edb022013-06-05 13:34:12 +02001828 DRM_DEBUG_KMS("enabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001829 pll->enable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001830 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001831}
1832
Damien Lespiauf6daaec2014-08-09 23:00:56 +01001833static void intel_disable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001834{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001835 struct drm_device *dev = crtc->base.dev;
1836 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001837 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001838
Jesse Barnes92f25842011-01-04 15:09:34 -08001839 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001840 BUG_ON(INTEL_INFO(dev)->gen < 5);
Daniel Vetter87a875b2013-06-05 13:34:19 +02001841 if (WARN_ON(pll == NULL))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001842 return;
1843
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001844 if (WARN_ON(pll->config.crtc_mask == 0))
Chris Wilson48da64a2012-05-13 20:16:12 +01001845 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001846
Daniel Vetter46edb022013-06-05 13:34:12 +02001847 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1848 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001849 crtc->base.base.id);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001850
Chris Wilson48da64a2012-05-13 20:16:12 +01001851 if (WARN_ON(pll->active == 0)) {
Daniel Vettere9d69442013-06-05 13:34:15 +02001852 assert_shared_dpll_disabled(dev_priv, pll);
Chris Wilson48da64a2012-05-13 20:16:12 +01001853 return;
1854 }
1855
Daniel Vettere9d69442013-06-05 13:34:15 +02001856 assert_shared_dpll_enabled(dev_priv, pll);
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001857 WARN_ON(!pll->on);
Daniel Vettercdbd2312013-06-05 13:34:03 +02001858 if (--pll->active)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001859 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001860
Daniel Vetter46edb022013-06-05 13:34:12 +02001861 DRM_DEBUG_KMS("disabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001862 pll->disable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001863 pll->on = false;
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001864
1865 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
Jesse Barnes92f25842011-01-04 15:09:34 -08001866}
1867
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001868static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1869 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001870{
Daniel Vetter23670b322012-11-01 09:15:30 +01001871 struct drm_device *dev = dev_priv->dev;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001872 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vettere2b78262013-06-07 23:10:03 +02001873 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter23670b322012-11-01 09:15:30 +01001874 uint32_t reg, val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001875
1876 /* PCH only available on ILK+ */
Ville Syrjälä55522f32014-09-03 14:09:53 +03001877 BUG_ON(!HAS_PCH_SPLIT(dev));
Jesse Barnes040484a2011-01-03 12:14:26 -08001878
1879 /* Make sure PCH DPLL is enabled */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02001880 assert_shared_dpll_enabled(dev_priv,
Daniel Vettere9d69442013-06-05 13:34:15 +02001881 intel_crtc_to_shared_dpll(intel_crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001882
1883 /* FDI must be feeding us bits for PCH ports */
1884 assert_fdi_tx_enabled(dev_priv, pipe);
1885 assert_fdi_rx_enabled(dev_priv, pipe);
1886
Daniel Vetter23670b322012-11-01 09:15:30 +01001887 if (HAS_PCH_CPT(dev)) {
1888 /* Workaround: Set the timing override bit before enabling the
1889 * pch transcoder. */
1890 reg = TRANS_CHICKEN2(pipe);
1891 val = I915_READ(reg);
1892 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1893 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001894 }
Daniel Vetter23670b322012-11-01 09:15:30 +01001895
Daniel Vetterab9412b2013-05-03 11:49:46 +02001896 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001897 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001898 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001899
1900 if (HAS_PCH_IBX(dev_priv->dev)) {
1901 /*
1902 * make the BPC in transcoder be consistent with
1903 * that in pipeconf reg.
1904 */
Daniel Vetterdfd07d72012-12-17 11:21:38 +01001905 val &= ~PIPECONF_BPC_MASK;
1906 val |= pipeconf_val & PIPECONF_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001907 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001908
1909 val &= ~TRANS_INTERLACE_MASK;
1910 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001911 if (HAS_PCH_IBX(dev_priv->dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001912 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001913 val |= TRANS_LEGACY_INTERLACED_ILK;
1914 else
1915 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001916 else
1917 val |= TRANS_PROGRESSIVE;
1918
Jesse Barnes040484a2011-01-03 12:14:26 -08001919 I915_WRITE(reg, val | TRANS_ENABLE);
1920 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001921 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
Jesse Barnes040484a2011-01-03 12:14:26 -08001922}
1923
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001924static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02001925 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08001926{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001927 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001928
1929 /* PCH only available on ILK+ */
Ville Syrjälä55522f32014-09-03 14:09:53 +03001930 BUG_ON(!HAS_PCH_SPLIT(dev_priv->dev));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001931
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001932 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01001933 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02001934 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001935
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001936 /* Workaround: set timing override bit. */
1937 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001938 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001939 I915_WRITE(_TRANSA_CHICKEN2, val);
1940
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02001941 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02001942 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001943
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02001944 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1945 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02001946 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001947 else
1948 val |= TRANS_PROGRESSIVE;
1949
Daniel Vetterab9412b2013-05-03 11:49:46 +02001950 I915_WRITE(LPT_TRANSCONF, val);
1951 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
Paulo Zanoni937bb612012-10-31 18:12:47 -02001952 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001953}
1954
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001955static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1956 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001957{
Daniel Vetter23670b322012-11-01 09:15:30 +01001958 struct drm_device *dev = dev_priv->dev;
1959 uint32_t reg, val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001960
1961 /* FDI relies on the transcoder */
1962 assert_fdi_tx_disabled(dev_priv, pipe);
1963 assert_fdi_rx_disabled(dev_priv, pipe);
1964
Jesse Barnes291906f2011-02-02 12:28:03 -08001965 /* Ports must be off as well */
1966 assert_pch_ports_disabled(dev_priv, pipe);
1967
Daniel Vetterab9412b2013-05-03 11:49:46 +02001968 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001969 val = I915_READ(reg);
1970 val &= ~TRANS_ENABLE;
1971 I915_WRITE(reg, val);
1972 /* wait for PCH transcoder off, transcoder state */
1973 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001974 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
Daniel Vetter23670b322012-11-01 09:15:30 +01001975
1976 if (!HAS_PCH_IBX(dev)) {
1977 /* Workaround: Clear the timing override chicken bit again. */
1978 reg = TRANS_CHICKEN2(pipe);
1979 val = I915_READ(reg);
1980 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1981 I915_WRITE(reg, val);
1982 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001983}
1984
Paulo Zanoniab4d9662012-10-31 18:12:55 -02001985static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001986{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001987 u32 val;
1988
Daniel Vetterab9412b2013-05-03 11:49:46 +02001989 val = I915_READ(LPT_TRANSCONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001990 val &= ~TRANS_ENABLE;
Daniel Vetterab9412b2013-05-03 11:49:46 +02001991 I915_WRITE(LPT_TRANSCONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001992 /* wait for PCH transcoder off, transcoder state */
Daniel Vetterab9412b2013-05-03 11:49:46 +02001993 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02001994 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001995
1996 /* Workaround: clear timing override bit. */
1997 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001998 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001999 I915_WRITE(_TRANSA_CHICKEN2, val);
Jesse Barnes92f25842011-01-04 15:09:34 -08002000}
2001
2002/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002003 * intel_enable_pipe - enable a pipe, asserting requirements
Paulo Zanoni03722642014-01-17 13:51:09 -02002004 * @crtc: crtc responsible for the pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08002005 *
Paulo Zanoni03722642014-01-17 13:51:09 -02002006 * Enable @crtc's pipe, making sure that various hardware specific requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08002007 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002008 */
Paulo Zanonie1fdc472014-01-17 13:51:12 -02002009static void intel_enable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002010{
Paulo Zanoni03722642014-01-17 13:51:09 -02002011 struct drm_device *dev = crtc->base.dev;
2012 struct drm_i915_private *dev_priv = dev->dev_private;
2013 enum pipe pipe = crtc->pipe;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002014 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
2015 pipe);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002016 enum pipe pch_transcoder;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002017 int reg;
2018 u32 val;
2019
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002020 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002021 assert_cursor_disabled(dev_priv, pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002022 assert_sprites_disabled(dev_priv, pipe);
2023
Paulo Zanoni681e5812012-12-06 11:12:38 -02002024 if (HAS_PCH_LPT(dev_priv->dev))
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002025 pch_transcoder = TRANSCODER_A;
2026 else
2027 pch_transcoder = pipe;
2028
Jesse Barnesb24e7172011-01-04 15:09:30 -08002029 /*
2030 * A pipe without a PLL won't actually be able to drive bits from
2031 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
2032 * need the check.
2033 */
2034 if (!HAS_PCH_SPLIT(dev_priv->dev))
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03002035 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
Jani Nikula23538ef2013-08-27 15:12:22 +03002036 assert_dsi_pll_enabled(dev_priv);
2037 else
2038 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002039 else {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002040 if (crtc->config->has_pch_encoder) {
Jesse Barnes040484a2011-01-03 12:14:26 -08002041 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002042 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002043 assert_fdi_tx_pll_enabled(dev_priv,
2044 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08002045 }
2046 /* FIXME: assert CPU port conditions for SNB+ */
2047 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08002048
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002049 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002050 val = I915_READ(reg);
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002051 if (val & PIPECONF_ENABLE) {
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002052 WARN_ON(!((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
2053 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)));
Chris Wilson00d70b12011-03-17 07:18:29 +00002054 return;
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002055 }
Chris Wilson00d70b12011-03-17 07:18:29 +00002056
2057 I915_WRITE(reg, val | PIPECONF_ENABLE);
Paulo Zanoni851855d2013-12-19 19:12:29 -02002058 POSTING_READ(reg);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002059}
2060
2061/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002062 * intel_disable_pipe - disable a pipe, asserting requirements
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002063 * @crtc: crtc whose pipes is to be disabled
Jesse Barnesb24e7172011-01-04 15:09:30 -08002064 *
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002065 * Disable the pipe of @crtc, making sure that various hardware
2066 * specific requirements are met, if applicable, e.g. plane
2067 * disabled, panel fitter off, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002068 *
2069 * Will wait until the pipe has shut down before returning.
2070 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002071static void intel_disable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002072{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002073 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002074 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002075 enum pipe pipe = crtc->pipe;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002076 int reg;
2077 u32 val;
2078
2079 /*
2080 * Make sure planes won't keep trying to pump pixels to us,
2081 * or we might hang the display.
2082 */
2083 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002084 assert_cursor_disabled(dev_priv, pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07002085 assert_sprites_disabled(dev_priv, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002086
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002087 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002088 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00002089 if ((val & PIPECONF_ENABLE) == 0)
2090 return;
2091
Ville Syrjälä67adc642014-08-15 01:21:57 +03002092 /*
2093 * Double wide has implications for planes
2094 * so best keep it disabled when not needed.
2095 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002096 if (crtc->config->double_wide)
Ville Syrjälä67adc642014-08-15 01:21:57 +03002097 val &= ~PIPECONF_DOUBLE_WIDE;
2098
2099 /* Don't disable pipe or pipe PLLs if needed */
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002100 if (!(pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) &&
2101 !(pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Ville Syrjälä67adc642014-08-15 01:21:57 +03002102 val &= ~PIPECONF_ENABLE;
2103
2104 I915_WRITE(reg, val);
2105 if ((val & PIPECONF_ENABLE) == 0)
2106 intel_wait_for_pipe_off(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002107}
2108
Keith Packardd74362c2011-07-28 14:47:14 -07002109/*
2110 * Plane regs are double buffered, going from enabled->disabled needs a
2111 * trigger in order to latch. The display address reg provides this.
2112 */
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002113void intel_flush_primary_plane(struct drm_i915_private *dev_priv,
2114 enum plane plane)
Keith Packardd74362c2011-07-28 14:47:14 -07002115{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00002116 struct drm_device *dev = dev_priv->dev;
2117 u32 reg = INTEL_INFO(dev)->gen >= 4 ? DSPSURF(plane) : DSPADDR(plane);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002118
2119 I915_WRITE(reg, I915_READ(reg));
2120 POSTING_READ(reg);
Keith Packardd74362c2011-07-28 14:47:14 -07002121}
2122
Jesse Barnesb24e7172011-01-04 15:09:30 -08002123/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002124 * intel_enable_primary_hw_plane - enable the primary plane on a given pipe
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002125 * @plane: plane to be enabled
2126 * @crtc: crtc for the plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002127 *
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002128 * Enable @plane on @crtc, making sure that the pipe is running first.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002129 */
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002130static void intel_enable_primary_hw_plane(struct drm_plane *plane,
2131 struct drm_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002132{
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002133 struct drm_device *dev = plane->dev;
2134 struct drm_i915_private *dev_priv = dev->dev_private;
2135 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002136
2137 /* If the pipe isn't enabled, we can't pump pixels and may hang */
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002138 assert_pipe_enabled(dev_priv, intel_crtc->pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002139
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002140 if (intel_crtc->primary_enabled)
2141 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002142
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002143 intel_crtc->primary_enabled = true;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002144
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002145 dev_priv->display.update_primary_plane(crtc, plane->fb,
2146 crtc->x, crtc->y);
Ville Syrjälä33c3b0d2014-06-24 13:59:28 +03002147
2148 /*
2149 * BDW signals flip done immediately if the plane
2150 * is disabled, even if the plane enable is already
2151 * armed to occur at the next vblank :(
2152 */
2153 if (IS_BROADWELL(dev))
2154 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002155}
2156
Jesse Barnesb24e7172011-01-04 15:09:30 -08002157/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002158 * intel_disable_primary_hw_plane - disable the primary hardware plane
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002159 * @plane: plane to be disabled
2160 * @crtc: crtc for the plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002161 *
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002162 * Disable @plane on @crtc, making sure that the pipe is running first.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002163 */
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002164static void intel_disable_primary_hw_plane(struct drm_plane *plane,
2165 struct drm_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002166{
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002167 struct drm_device *dev = plane->dev;
2168 struct drm_i915_private *dev_priv = dev->dev_private;
2169 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2170
Matt Roper32b7eee2014-12-24 07:59:06 -08002171 if (WARN_ON(!intel_crtc->active))
2172 return;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002173
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002174 if (!intel_crtc->primary_enabled)
2175 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002176
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002177 intel_crtc->primary_enabled = false;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002178
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002179 dev_priv->display.update_primary_plane(crtc, plane->fb,
2180 crtc->x, crtc->y);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002181}
2182
Chris Wilson693db182013-03-05 14:52:39 +00002183static bool need_vtd_wa(struct drm_device *dev)
2184{
2185#ifdef CONFIG_INTEL_IOMMU
2186 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2187 return true;
2188#endif
2189 return false;
2190}
2191
Damien Lespiauec2c9812015-01-20 12:51:45 +00002192int
Daniel Vetter091df6c2015-02-10 17:16:10 +00002193intel_fb_align_height(struct drm_device *dev, int height,
2194 uint32_t pixel_format,
2195 uint64_t fb_format_modifier)
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002196{
2197 int tile_height;
2198
Daniel Vetter091df6c2015-02-10 17:16:10 +00002199 tile_height = fb_format_modifier == I915_FORMAT_MOD_X_TILED ?
2200 (IS_GEN2(dev) ? 16 : 8) : 1;
2201
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002202 return ALIGN(height, tile_height);
2203}
2204
Chris Wilson127bd2a2010-07-23 23:32:05 +01002205int
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002206intel_pin_and_fence_fb_obj(struct drm_plane *plane,
2207 struct drm_framebuffer *fb,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002208 struct intel_engine_cs *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002209{
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002210 struct drm_device *dev = fb->dev;
Chris Wilsonce453d82011-02-21 14:43:56 +00002211 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002212 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002213 u32 alignment;
2214 int ret;
2215
Matt Roperebcdd392014-07-09 16:22:11 -07002216 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
2217
Chris Wilson05394f32010-11-08 19:18:58 +00002218 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002219 case I915_TILING_NONE:
Damien Lespiau1fada4c2013-07-03 21:06:02 +01002220 if (INTEL_INFO(dev)->gen >= 9)
2221 alignment = 256 * 1024;
2222 else if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
Chris Wilson534843d2010-07-05 18:01:46 +01002223 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002224 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01002225 alignment = 4 * 1024;
2226 else
2227 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002228 break;
2229 case I915_TILING_X:
Damien Lespiau1fada4c2013-07-03 21:06:02 +01002230 if (INTEL_INFO(dev)->gen >= 9)
2231 alignment = 256 * 1024;
2232 else {
2233 /* pin() will align the object as required by fence */
2234 alignment = 0;
2235 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002236 break;
2237 case I915_TILING_Y:
Daniel Vetter80075d42013-10-09 21:23:52 +02002238 WARN(1, "Y tiled bo slipped through, driver bug!\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002239 return -EINVAL;
2240 default:
2241 BUG();
2242 }
2243
Chris Wilson693db182013-03-05 14:52:39 +00002244 /* Note that the w/a also requires 64 PTE of padding following the
2245 * bo. We currently fill all unused PTE with the shadow page and so
2246 * we should always have valid PTE following the scanout preventing
2247 * the VT-d warning.
2248 */
2249 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2250 alignment = 256 * 1024;
2251
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002252 /*
2253 * Global gtt pte registers are special registers which actually forward
2254 * writes to a chunk of system memory. Which means that there is no risk
2255 * that the register values disappear as soon as we call
2256 * intel_runtime_pm_put(), so it is correct to wrap only the
2257 * pin/unpin/fence and not more.
2258 */
2259 intel_runtime_pm_get(dev_priv);
2260
Chris Wilsonce453d82011-02-21 14:43:56 +00002261 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002262 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01002263 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00002264 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002265
2266 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2267 * fence, whereas 965+ only requires a fence if using
2268 * framebuffer compression. For simplicity, we always install
2269 * a fence as the cost is not that onerous.
2270 */
Chris Wilson06d98132012-04-17 15:31:24 +01002271 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002272 if (ret)
2273 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002274
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002275 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002276
Chris Wilsonce453d82011-02-21 14:43:56 +00002277 dev_priv->mm.interruptible = true;
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002278 intel_runtime_pm_put(dev_priv);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002279 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01002280
2281err_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01002282 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00002283err_interruptible:
2284 dev_priv->mm.interruptible = true;
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002285 intel_runtime_pm_put(dev_priv);
Chris Wilson48b956c2010-09-14 12:50:34 +01002286 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002287}
2288
Chris Wilson1690e1e2011-12-14 13:57:08 +01002289void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
2290{
Matt Roperebcdd392014-07-09 16:22:11 -07002291 WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex));
2292
Chris Wilson1690e1e2011-12-14 13:57:08 +01002293 i915_gem_object_unpin_fence(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01002294 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002295}
2296
Daniel Vetterc2c75132012-07-05 12:17:30 +02002297/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2298 * is assumed to be a power-of-two. */
Chris Wilsonbc752862013-02-21 20:04:31 +00002299unsigned long intel_gen4_compute_page_offset(int *x, int *y,
2300 unsigned int tiling_mode,
2301 unsigned int cpp,
2302 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02002303{
Chris Wilsonbc752862013-02-21 20:04:31 +00002304 if (tiling_mode != I915_TILING_NONE) {
2305 unsigned int tile_rows, tiles;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002306
Chris Wilsonbc752862013-02-21 20:04:31 +00002307 tile_rows = *y / 8;
2308 *y %= 8;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002309
Chris Wilsonbc752862013-02-21 20:04:31 +00002310 tiles = *x / (512/cpp);
2311 *x %= 512/cpp;
2312
2313 return tile_rows * pitch * 8 + tiles * 4096;
2314 } else {
2315 unsigned int offset;
2316
2317 offset = *y * pitch + *x * cpp;
2318 *y = 0;
2319 *x = (offset & 4095) / cpp;
2320 return offset & -4096;
2321 }
Daniel Vetterc2c75132012-07-05 12:17:30 +02002322}
2323
Damien Lespiaub35d63f2015-01-20 12:51:50 +00002324static int i9xx_format_to_fourcc(int format)
Jesse Barnes46f297f2014-03-07 08:57:48 -08002325{
2326 switch (format) {
2327 case DISPPLANE_8BPP:
2328 return DRM_FORMAT_C8;
2329 case DISPPLANE_BGRX555:
2330 return DRM_FORMAT_XRGB1555;
2331 case DISPPLANE_BGRX565:
2332 return DRM_FORMAT_RGB565;
2333 default:
2334 case DISPPLANE_BGRX888:
2335 return DRM_FORMAT_XRGB8888;
2336 case DISPPLANE_RGBX888:
2337 return DRM_FORMAT_XBGR8888;
2338 case DISPPLANE_BGRX101010:
2339 return DRM_FORMAT_XRGB2101010;
2340 case DISPPLANE_RGBX101010:
2341 return DRM_FORMAT_XBGR2101010;
2342 }
2343}
2344
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00002345static int skl_format_to_fourcc(int format, bool rgb_order, bool alpha)
2346{
2347 switch (format) {
2348 case PLANE_CTL_FORMAT_RGB_565:
2349 return DRM_FORMAT_RGB565;
2350 default:
2351 case PLANE_CTL_FORMAT_XRGB_8888:
2352 if (rgb_order) {
2353 if (alpha)
2354 return DRM_FORMAT_ABGR8888;
2355 else
2356 return DRM_FORMAT_XBGR8888;
2357 } else {
2358 if (alpha)
2359 return DRM_FORMAT_ARGB8888;
2360 else
2361 return DRM_FORMAT_XRGB8888;
2362 }
2363 case PLANE_CTL_FORMAT_XRGB_2101010:
2364 if (rgb_order)
2365 return DRM_FORMAT_XBGR2101010;
2366 else
2367 return DRM_FORMAT_XRGB2101010;
2368 }
2369}
2370
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002371static bool
2372intel_alloc_plane_obj(struct intel_crtc *crtc,
2373 struct intel_initial_plane_config *plane_config)
Jesse Barnes46f297f2014-03-07 08:57:48 -08002374{
2375 struct drm_device *dev = crtc->base.dev;
2376 struct drm_i915_gem_object *obj = NULL;
2377 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Damien Lespiau2d140302015-02-05 17:22:18 +00002378 struct drm_framebuffer *fb = &plane_config->fb->base;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002379 u32 base = plane_config->base;
2380
Chris Wilsonff2652e2014-03-10 08:07:02 +00002381 if (plane_config->size == 0)
2382 return false;
2383
Jesse Barnes46f297f2014-03-07 08:57:48 -08002384 obj = i915_gem_object_create_stolen_for_preallocated(dev, base, base,
2385 plane_config->size);
2386 if (!obj)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002387 return false;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002388
Damien Lespiau49af4492015-01-20 12:51:44 +00002389 obj->tiling_mode = plane_config->tiling;
2390 if (obj->tiling_mode == I915_TILING_X)
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002391 obj->stride = fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002392
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002393 mode_cmd.pixel_format = fb->pixel_format;
2394 mode_cmd.width = fb->width;
2395 mode_cmd.height = fb->height;
2396 mode_cmd.pitches[0] = fb->pitches[0];
Daniel Vetter18c52472015-02-10 17:16:09 +00002397 mode_cmd.modifier[0] = fb->modifier[0];
2398 mode_cmd.flags = DRM_MODE_FB_MODIFIERS;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002399
2400 mutex_lock(&dev->struct_mutex);
2401
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002402 if (intel_framebuffer_init(dev, to_intel_framebuffer(fb),
Jesse Barnes484b41d2014-03-07 08:57:55 -08002403 &mode_cmd, obj)) {
Jesse Barnes46f297f2014-03-07 08:57:48 -08002404 DRM_DEBUG_KMS("intel fb init failed\n");
2405 goto out_unref_obj;
2406 }
2407
Daniel Vettera071fa02014-06-18 23:28:09 +02002408 obj->frontbuffer_bits = INTEL_FRONTBUFFER_PRIMARY(crtc->pipe);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002409 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002410
2411 DRM_DEBUG_KMS("plane fb obj %p\n", obj);
2412 return true;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002413
2414out_unref_obj:
2415 drm_gem_object_unreference(&obj->base);
2416 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002417 return false;
2418}
2419
Matt Roperafd65eb2015-02-03 13:10:04 -08002420/* Update plane->state->fb to match plane->fb after driver-internal updates */
2421static void
2422update_state_fb(struct drm_plane *plane)
2423{
2424 if (plane->fb == plane->state->fb)
2425 return;
2426
2427 if (plane->state->fb)
2428 drm_framebuffer_unreference(plane->state->fb);
2429 plane->state->fb = plane->fb;
2430 if (plane->state->fb)
2431 drm_framebuffer_reference(plane->state->fb);
2432}
2433
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002434static void
2435intel_find_plane_obj(struct intel_crtc *intel_crtc,
2436 struct intel_initial_plane_config *plane_config)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002437{
2438 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnesd9ceb812014-10-09 12:57:43 -07002439 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002440 struct drm_crtc *c;
2441 struct intel_crtc *i;
Matt Roper2ff8fde2014-07-08 07:50:07 -07002442 struct drm_i915_gem_object *obj;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002443
Damien Lespiau2d140302015-02-05 17:22:18 +00002444 if (!plane_config->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002445 return;
2446
Damien Lespiauf55548b2015-02-05 18:30:20 +00002447 if (intel_alloc_plane_obj(intel_crtc, plane_config)) {
Damien Lespiaufb9981a2015-02-05 19:24:25 +00002448 struct drm_plane *primary = intel_crtc->base.primary;
2449
2450 primary->fb = &plane_config->fb->base;
2451 primary->state->crtc = &intel_crtc->base;
2452 update_state_fb(primary);
2453
Jesse Barnes484b41d2014-03-07 08:57:55 -08002454 return;
Damien Lespiauf55548b2015-02-05 18:30:20 +00002455 }
Jesse Barnes484b41d2014-03-07 08:57:55 -08002456
Damien Lespiau2d140302015-02-05 17:22:18 +00002457 kfree(plane_config->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002458
2459 /*
2460 * Failed to alloc the obj, check to see if we should share
2461 * an fb with another CRTC instead
2462 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002463 for_each_crtc(dev, c) {
Jesse Barnes484b41d2014-03-07 08:57:55 -08002464 i = to_intel_crtc(c);
2465
2466 if (c == &intel_crtc->base)
2467 continue;
2468
Matt Roper2ff8fde2014-07-08 07:50:07 -07002469 if (!i->active)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002470 continue;
2471
Matt Roper2ff8fde2014-07-08 07:50:07 -07002472 obj = intel_fb_obj(c->primary->fb);
2473 if (obj == NULL)
2474 continue;
2475
2476 if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) {
Damien Lespiaufb9981a2015-02-05 19:24:25 +00002477 struct drm_plane *primary = intel_crtc->base.primary;
2478
Jesse Barnesd9ceb812014-10-09 12:57:43 -07002479 if (obj->tiling_mode != I915_TILING_NONE)
2480 dev_priv->preserve_bios_swizzle = true;
2481
Dave Airlie66e514c2014-04-03 07:51:54 +10002482 drm_framebuffer_reference(c->primary->fb);
Damien Lespiaufb9981a2015-02-05 19:24:25 +00002483 primary->fb = c->primary->fb;
2484 primary->state->crtc = &intel_crtc->base;
Damien Lespiau5ba76c42015-02-05 17:22:15 +00002485 update_state_fb(intel_crtc->base.primary);
Matt Roper2ff8fde2014-07-08 07:50:07 -07002486 obj->frontbuffer_bits |= INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002487 break;
2488 }
2489 }
Matt Roperafd65eb2015-02-03 13:10:04 -08002490
Jesse Barnes46f297f2014-03-07 08:57:48 -08002491}
2492
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002493static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2494 struct drm_framebuffer *fb,
2495 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07002496{
2497 struct drm_device *dev = crtc->dev;
2498 struct drm_i915_private *dev_priv = dev->dev_private;
2499 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002500 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002501 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002502 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002503 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002504 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302505 int pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002506
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002507 if (!intel_crtc->primary_enabled) {
2508 I915_WRITE(reg, 0);
2509 if (INTEL_INFO(dev)->gen >= 4)
2510 I915_WRITE(DSPSURF(plane), 0);
2511 else
2512 I915_WRITE(DSPADDR(plane), 0);
2513 POSTING_READ(reg);
2514 return;
2515 }
2516
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002517 obj = intel_fb_obj(fb);
2518 if (WARN_ON(obj == NULL))
2519 return;
2520
2521 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2522
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002523 dspcntr = DISPPLANE_GAMMA_ENABLE;
2524
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002525 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002526
2527 if (INTEL_INFO(dev)->gen < 4) {
2528 if (intel_crtc->pipe == PIPE_B)
2529 dspcntr |= DISPPLANE_SEL_PIPE_B;
2530
2531 /* pipesrc and dspsize control the size that is scaled from,
2532 * which should always be the user's requested size.
2533 */
2534 I915_WRITE(DSPSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002535 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2536 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002537 I915_WRITE(DSPPOS(plane), 0);
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002538 } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) {
2539 I915_WRITE(PRIMSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002540 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2541 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002542 I915_WRITE(PRIMPOS(plane), 0);
2543 I915_WRITE(PRIMCNSTALPHA(plane), 0);
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002544 }
2545
Ville Syrjälä57779d02012-10-31 17:50:14 +02002546 switch (fb->pixel_format) {
2547 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002548 dspcntr |= DISPPLANE_8BPP;
2549 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002550 case DRM_FORMAT_XRGB1555:
2551 case DRM_FORMAT_ARGB1555:
2552 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002553 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002554 case DRM_FORMAT_RGB565:
2555 dspcntr |= DISPPLANE_BGRX565;
2556 break;
2557 case DRM_FORMAT_XRGB8888:
2558 case DRM_FORMAT_ARGB8888:
2559 dspcntr |= DISPPLANE_BGRX888;
2560 break;
2561 case DRM_FORMAT_XBGR8888:
2562 case DRM_FORMAT_ABGR8888:
2563 dspcntr |= DISPPLANE_RGBX888;
2564 break;
2565 case DRM_FORMAT_XRGB2101010:
2566 case DRM_FORMAT_ARGB2101010:
2567 dspcntr |= DISPPLANE_BGRX101010;
2568 break;
2569 case DRM_FORMAT_XBGR2101010:
2570 case DRM_FORMAT_ABGR2101010:
2571 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002572 break;
2573 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002574 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07002575 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002576
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002577 if (INTEL_INFO(dev)->gen >= 4 &&
2578 obj->tiling_mode != I915_TILING_NONE)
2579 dspcntr |= DISPPLANE_TILED;
Jesse Barnes81255562010-08-02 12:07:50 -07002580
Ville Syrjäläde1aa622013-06-07 10:47:01 +03002581 if (IS_G4X(dev))
2582 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2583
Ville Syrjäläb98971272014-08-27 16:51:22 +03002584 linear_offset = y * fb->pitches[0] + x * pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002585
Daniel Vetterc2c75132012-07-05 12:17:30 +02002586 if (INTEL_INFO(dev)->gen >= 4) {
2587 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002588 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002589 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002590 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002591 linear_offset -= intel_crtc->dspaddr_offset;
2592 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002593 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002594 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002595
Matt Roper8e7d6882015-01-21 16:35:41 -08002596 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302597 dspcntr |= DISPPLANE_ROTATE_180;
2598
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002599 x += (intel_crtc->config->pipe_src_w - 1);
2600 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302601
2602 /* Finding the last pixel of the last line of the display
2603 data and adding to linear_offset*/
2604 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002605 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2606 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302607 }
2608
2609 I915_WRITE(reg, dspcntr);
2610
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002611 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2612 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2613 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002614 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002615 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002616 I915_WRITE(DSPSURF(plane),
2617 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002618 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002619 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002620 } else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002621 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002622 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002623}
2624
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002625static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2626 struct drm_framebuffer *fb,
2627 int x, int y)
Jesse Barnes17638cd2011-06-24 12:19:23 -07002628{
2629 struct drm_device *dev = crtc->dev;
2630 struct drm_i915_private *dev_priv = dev->dev_private;
2631 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002632 struct drm_i915_gem_object *obj;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002633 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002634 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002635 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002636 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302637 int pixel_size;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002638
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002639 if (!intel_crtc->primary_enabled) {
2640 I915_WRITE(reg, 0);
2641 I915_WRITE(DSPSURF(plane), 0);
2642 POSTING_READ(reg);
2643 return;
2644 }
2645
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002646 obj = intel_fb_obj(fb);
2647 if (WARN_ON(obj == NULL))
2648 return;
2649
2650 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2651
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002652 dspcntr = DISPPLANE_GAMMA_ENABLE;
2653
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002654 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002655
2656 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
2657 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
2658
Ville Syrjälä57779d02012-10-31 17:50:14 +02002659 switch (fb->pixel_format) {
2660 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002661 dspcntr |= DISPPLANE_8BPP;
2662 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002663 case DRM_FORMAT_RGB565:
2664 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002665 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002666 case DRM_FORMAT_XRGB8888:
2667 case DRM_FORMAT_ARGB8888:
2668 dspcntr |= DISPPLANE_BGRX888;
2669 break;
2670 case DRM_FORMAT_XBGR8888:
2671 case DRM_FORMAT_ABGR8888:
2672 dspcntr |= DISPPLANE_RGBX888;
2673 break;
2674 case DRM_FORMAT_XRGB2101010:
2675 case DRM_FORMAT_ARGB2101010:
2676 dspcntr |= DISPPLANE_BGRX101010;
2677 break;
2678 case DRM_FORMAT_XBGR2101010:
2679 case DRM_FORMAT_ABGR2101010:
2680 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002681 break;
2682 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002683 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002684 }
2685
2686 if (obj->tiling_mode != I915_TILING_NONE)
2687 dspcntr |= DISPPLANE_TILED;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002688
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002689 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03002690 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002691
Ville Syrjäläb98971272014-08-27 16:51:22 +03002692 linear_offset = y * fb->pitches[0] + x * pixel_size;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002693 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002694 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002695 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002696 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002697 linear_offset -= intel_crtc->dspaddr_offset;
Matt Roper8e7d6882015-01-21 16:35:41 -08002698 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302699 dspcntr |= DISPPLANE_ROTATE_180;
2700
2701 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002702 x += (intel_crtc->config->pipe_src_w - 1);
2703 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302704
2705 /* Finding the last pixel of the last line of the display
2706 data and adding to linear_offset*/
2707 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002708 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2709 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302710 }
2711 }
2712
2713 I915_WRITE(reg, dspcntr);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002714
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002715 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2716 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2717 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002718 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002719 I915_WRITE(DSPSURF(plane),
2720 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Paulo Zanonib3dc6852013-11-02 21:07:33 -07002721 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002722 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2723 } else {
2724 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2725 I915_WRITE(DSPLINOFF(plane), linear_offset);
2726 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002727 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002728}
2729
Damien Lespiau70d21f02013-07-03 21:06:04 +01002730static void skylake_update_primary_plane(struct drm_crtc *crtc,
2731 struct drm_framebuffer *fb,
2732 int x, int y)
2733{
2734 struct drm_device *dev = crtc->dev;
2735 struct drm_i915_private *dev_priv = dev->dev_private;
2736 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2737 struct intel_framebuffer *intel_fb;
2738 struct drm_i915_gem_object *obj;
2739 int pipe = intel_crtc->pipe;
2740 u32 plane_ctl, stride;
2741
2742 if (!intel_crtc->primary_enabled) {
2743 I915_WRITE(PLANE_CTL(pipe, 0), 0);
2744 I915_WRITE(PLANE_SURF(pipe, 0), 0);
2745 POSTING_READ(PLANE_CTL(pipe, 0));
2746 return;
2747 }
2748
2749 plane_ctl = PLANE_CTL_ENABLE |
2750 PLANE_CTL_PIPE_GAMMA_ENABLE |
2751 PLANE_CTL_PIPE_CSC_ENABLE;
2752
2753 switch (fb->pixel_format) {
2754 case DRM_FORMAT_RGB565:
2755 plane_ctl |= PLANE_CTL_FORMAT_RGB_565;
2756 break;
2757 case DRM_FORMAT_XRGB8888:
2758 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2759 break;
2760 case DRM_FORMAT_XBGR8888:
2761 plane_ctl |= PLANE_CTL_ORDER_RGBX;
2762 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2763 break;
2764 case DRM_FORMAT_XRGB2101010:
2765 plane_ctl |= PLANE_CTL_FORMAT_XRGB_2101010;
2766 break;
2767 case DRM_FORMAT_XBGR2101010:
2768 plane_ctl |= PLANE_CTL_ORDER_RGBX;
2769 plane_ctl |= PLANE_CTL_FORMAT_XRGB_2101010;
2770 break;
2771 default:
2772 BUG();
2773 }
2774
2775 intel_fb = to_intel_framebuffer(fb);
2776 obj = intel_fb->obj;
2777
2778 /*
2779 * The stride is either expressed as a multiple of 64 bytes chunks for
2780 * linear buffers or in number of tiles for tiled buffers.
2781 */
Daniel Vetter30af77c2015-02-10 17:16:11 +00002782 switch (fb->modifier[0]) {
2783 case DRM_FORMAT_MOD_NONE:
Damien Lespiau70d21f02013-07-03 21:06:04 +01002784 stride = fb->pitches[0] >> 6;
2785 break;
Daniel Vetter30af77c2015-02-10 17:16:11 +00002786 case I915_FORMAT_MOD_X_TILED:
Damien Lespiau70d21f02013-07-03 21:06:04 +01002787 plane_ctl |= PLANE_CTL_TILED_X;
2788 stride = fb->pitches[0] >> 9;
2789 break;
2790 default:
2791 BUG();
2792 }
2793
2794 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
Matt Roper8e7d6882015-01-21 16:35:41 -08002795 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180))
Sonika Jindal1447dde2014-10-04 10:53:31 +01002796 plane_ctl |= PLANE_CTL_ROTATE_180;
Damien Lespiau70d21f02013-07-03 21:06:04 +01002797
2798 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
2799
2800 DRM_DEBUG_KMS("Writing base %08lX %d,%d,%d,%d pitch=%d\n",
2801 i915_gem_obj_ggtt_offset(obj),
2802 x, y, fb->width, fb->height,
2803 fb->pitches[0]);
2804
2805 I915_WRITE(PLANE_POS(pipe, 0), 0);
2806 I915_WRITE(PLANE_OFFSET(pipe, 0), (y << 16) | x);
2807 I915_WRITE(PLANE_SIZE(pipe, 0),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002808 (intel_crtc->config->pipe_src_h - 1) << 16 |
2809 (intel_crtc->config->pipe_src_w - 1));
Damien Lespiau70d21f02013-07-03 21:06:04 +01002810 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
2811 I915_WRITE(PLANE_SURF(pipe, 0), i915_gem_obj_ggtt_offset(obj));
2812
2813 POSTING_READ(PLANE_SURF(pipe, 0));
2814}
2815
Jesse Barnes17638cd2011-06-24 12:19:23 -07002816/* Assume fb object is pinned & idle & fenced and just update base pointers */
2817static int
2818intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2819 int x, int y, enum mode_set_atomic state)
2820{
2821 struct drm_device *dev = crtc->dev;
2822 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002823
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002824 if (dev_priv->display.disable_fbc)
2825 dev_priv->display.disable_fbc(dev);
Jesse Barnes81255562010-08-02 12:07:50 -07002826
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002827 dev_priv->display.update_primary_plane(crtc, fb, x, y);
2828
2829 return 0;
Jesse Barnes81255562010-08-02 12:07:50 -07002830}
2831
Ville Syrjälä75147472014-11-24 18:28:11 +02002832static void intel_complete_page_flips(struct drm_device *dev)
Ville Syrjälä96a02912013-02-18 19:08:49 +02002833{
Ville Syrjälä96a02912013-02-18 19:08:49 +02002834 struct drm_crtc *crtc;
2835
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002836 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002837 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2838 enum plane plane = intel_crtc->plane;
2839
2840 intel_prepare_page_flip(dev, plane);
2841 intel_finish_page_flip_plane(dev, plane);
2842 }
Ville Syrjälä75147472014-11-24 18:28:11 +02002843}
2844
2845static void intel_update_primary_planes(struct drm_device *dev)
2846{
2847 struct drm_i915_private *dev_priv = dev->dev_private;
2848 struct drm_crtc *crtc;
Ville Syrjälä96a02912013-02-18 19:08:49 +02002849
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002850 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002851 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2852
Rob Clark51fd3712013-11-19 12:10:12 -05002853 drm_modeset_lock(&crtc->mutex, NULL);
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002854 /*
2855 * FIXME: Once we have proper support for primary planes (and
2856 * disabling them without disabling the entire crtc) allow again
Dave Airlie66e514c2014-04-03 07:51:54 +10002857 * a NULL crtc->primary->fb.
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002858 */
Matt Roperf4510a22014-04-01 15:22:40 -07002859 if (intel_crtc->active && crtc->primary->fb)
Matt Roper262ca2b2014-03-18 17:22:55 -07002860 dev_priv->display.update_primary_plane(crtc,
Dave Airlie66e514c2014-04-03 07:51:54 +10002861 crtc->primary->fb,
Matt Roper262ca2b2014-03-18 17:22:55 -07002862 crtc->x,
2863 crtc->y);
Rob Clark51fd3712013-11-19 12:10:12 -05002864 drm_modeset_unlock(&crtc->mutex);
Ville Syrjälä96a02912013-02-18 19:08:49 +02002865 }
2866}
2867
Ville Syrjälä75147472014-11-24 18:28:11 +02002868void intel_prepare_reset(struct drm_device *dev)
2869{
Ville Syrjäläf98ce922014-11-21 21:54:30 +02002870 struct drm_i915_private *dev_priv = to_i915(dev);
2871 struct intel_crtc *crtc;
2872
Ville Syrjälä75147472014-11-24 18:28:11 +02002873 /* no reset support for gen2 */
2874 if (IS_GEN2(dev))
2875 return;
2876
2877 /* reset doesn't touch the display */
2878 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
2879 return;
2880
2881 drm_modeset_lock_all(dev);
Ville Syrjäläf98ce922014-11-21 21:54:30 +02002882
2883 /*
2884 * Disabling the crtcs gracefully seems nicer. Also the
2885 * g33 docs say we should at least disable all the planes.
2886 */
2887 for_each_intel_crtc(dev, crtc) {
2888 if (crtc->active)
2889 dev_priv->display.crtc_disable(&crtc->base);
2890 }
Ville Syrjälä75147472014-11-24 18:28:11 +02002891}
2892
2893void intel_finish_reset(struct drm_device *dev)
2894{
2895 struct drm_i915_private *dev_priv = to_i915(dev);
2896
2897 /*
2898 * Flips in the rings will be nuked by the reset,
2899 * so complete all pending flips so that user space
2900 * will get its events and not get stuck.
2901 */
2902 intel_complete_page_flips(dev);
2903
2904 /* no reset support for gen2 */
2905 if (IS_GEN2(dev))
2906 return;
2907
2908 /* reset doesn't touch the display */
2909 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) {
2910 /*
2911 * Flips in the rings have been nuked by the reset,
2912 * so update the base address of all primary
2913 * planes to the the last fb to make sure we're
2914 * showing the correct fb after a reset.
2915 */
2916 intel_update_primary_planes(dev);
2917 return;
2918 }
2919
2920 /*
2921 * The display has been reset as well,
2922 * so need a full re-initialization.
2923 */
2924 intel_runtime_pm_disable_interrupts(dev_priv);
2925 intel_runtime_pm_enable_interrupts(dev_priv);
2926
2927 intel_modeset_init_hw(dev);
2928
2929 spin_lock_irq(&dev_priv->irq_lock);
2930 if (dev_priv->display.hpd_irq_setup)
2931 dev_priv->display.hpd_irq_setup(dev);
2932 spin_unlock_irq(&dev_priv->irq_lock);
2933
2934 intel_modeset_setup_hw_state(dev, true);
2935
2936 intel_hpd_init(dev_priv);
2937
2938 drm_modeset_unlock_all(dev);
2939}
2940
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002941static int
Chris Wilson14667a42012-04-03 17:58:35 +01002942intel_finish_fb(struct drm_framebuffer *old_fb)
2943{
Matt Roper2ff8fde2014-07-08 07:50:07 -07002944 struct drm_i915_gem_object *obj = intel_fb_obj(old_fb);
Chris Wilson14667a42012-04-03 17:58:35 +01002945 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2946 bool was_interruptible = dev_priv->mm.interruptible;
2947 int ret;
2948
Chris Wilson14667a42012-04-03 17:58:35 +01002949 /* Big Hammer, we also need to ensure that any pending
2950 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2951 * current scanout is retired before unpinning the old
2952 * framebuffer.
2953 *
2954 * This should only fail upon a hung GPU, in which case we
2955 * can safely continue.
2956 */
2957 dev_priv->mm.interruptible = false;
2958 ret = i915_gem_object_finish_gpu(obj);
2959 dev_priv->mm.interruptible = was_interruptible;
2960
2961 return ret;
2962}
2963
Chris Wilson7d5e3792014-03-04 13:15:08 +00002964static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2965{
2966 struct drm_device *dev = crtc->dev;
2967 struct drm_i915_private *dev_priv = dev->dev_private;
2968 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson7d5e3792014-03-04 13:15:08 +00002969 bool pending;
2970
2971 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
2972 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
2973 return false;
2974
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02002975 spin_lock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00002976 pending = to_intel_crtc(crtc)->unpin_work != NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02002977 spin_unlock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00002978
2979 return pending;
2980}
2981
Gustavo Padovane30e8f72014-09-10 12:04:17 -03002982static void intel_update_pipe_size(struct intel_crtc *crtc)
2983{
2984 struct drm_device *dev = crtc->base.dev;
2985 struct drm_i915_private *dev_priv = dev->dev_private;
2986 const struct drm_display_mode *adjusted_mode;
2987
2988 if (!i915.fastboot)
2989 return;
2990
2991 /*
2992 * Update pipe size and adjust fitter if needed: the reason for this is
2993 * that in compute_mode_changes we check the native mode (not the pfit
2994 * mode) to see if we can flip rather than do a full mode set. In the
2995 * fastboot case, we'll flip, but if we don't update the pipesrc and
2996 * pfit state, we'll end up with a big fb scanned out into the wrong
2997 * sized surface.
2998 *
2999 * To fix this properly, we need to hoist the checks up into
3000 * compute_mode_changes (or above), check the actual pfit state and
3001 * whether the platform allows pfit disable with pipe active, and only
3002 * then update the pipesrc and pfit state, even on the flip path.
3003 */
3004
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003005 adjusted_mode = &crtc->config->base.adjusted_mode;
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003006
3007 I915_WRITE(PIPESRC(crtc->pipe),
3008 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
3009 (adjusted_mode->crtc_vdisplay - 1));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003010 if (!crtc->config->pch_pfit.enabled &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03003011 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
3012 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003013 I915_WRITE(PF_CTL(crtc->pipe), 0);
3014 I915_WRITE(PF_WIN_POS(crtc->pipe), 0);
3015 I915_WRITE(PF_WIN_SZ(crtc->pipe), 0);
3016 }
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003017 crtc->config->pipe_src_w = adjusted_mode->crtc_hdisplay;
3018 crtc->config->pipe_src_h = adjusted_mode->crtc_vdisplay;
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003019}
3020
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003021static void intel_fdi_normal_train(struct drm_crtc *crtc)
3022{
3023 struct drm_device *dev = crtc->dev;
3024 struct drm_i915_private *dev_priv = dev->dev_private;
3025 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3026 int pipe = intel_crtc->pipe;
3027 u32 reg, temp;
3028
3029 /* enable normal train */
3030 reg = FDI_TX_CTL(pipe);
3031 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07003032 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07003033 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3034 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07003035 } else {
3036 temp &= ~FDI_LINK_TRAIN_NONE;
3037 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07003038 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003039 I915_WRITE(reg, temp);
3040
3041 reg = FDI_RX_CTL(pipe);
3042 temp = I915_READ(reg);
3043 if (HAS_PCH_CPT(dev)) {
3044 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3045 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3046 } else {
3047 temp &= ~FDI_LINK_TRAIN_NONE;
3048 temp |= FDI_LINK_TRAIN_NONE;
3049 }
3050 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3051
3052 /* wait one idle pattern time */
3053 POSTING_READ(reg);
3054 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07003055
3056 /* IVB wants error correction enabled */
3057 if (IS_IVYBRIDGE(dev))
3058 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3059 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003060}
3061
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003062static bool pipe_has_enabled_pch(struct intel_crtc *crtc)
Daniel Vetter1e833f42013-02-19 22:31:57 +01003063{
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003064 return crtc->base.enabled && crtc->active &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003065 crtc->config->has_pch_encoder;
Daniel Vetter1e833f42013-02-19 22:31:57 +01003066}
3067
Daniel Vetter01a415f2012-10-27 15:58:40 +02003068static void ivb_modeset_global_resources(struct drm_device *dev)
3069{
3070 struct drm_i915_private *dev_priv = dev->dev_private;
3071 struct intel_crtc *pipe_B_crtc =
3072 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
3073 struct intel_crtc *pipe_C_crtc =
3074 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
3075 uint32_t temp;
3076
Daniel Vetter1e833f42013-02-19 22:31:57 +01003077 /*
3078 * When everything is off disable fdi C so that we could enable fdi B
3079 * with all lanes. Note that we don't care about enabled pipes without
3080 * an enabled pch encoder.
3081 */
3082 if (!pipe_has_enabled_pch(pipe_B_crtc) &&
3083 !pipe_has_enabled_pch(pipe_C_crtc)) {
Daniel Vetter01a415f2012-10-27 15:58:40 +02003084 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3085 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3086
3087 temp = I915_READ(SOUTH_CHICKEN1);
3088 temp &= ~FDI_BC_BIFURCATION_SELECT;
3089 DRM_DEBUG_KMS("disabling fdi C rx\n");
3090 I915_WRITE(SOUTH_CHICKEN1, temp);
3091 }
3092}
3093
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003094/* The FDI link training functions for ILK/Ibexpeak. */
3095static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3096{
3097 struct drm_device *dev = crtc->dev;
3098 struct drm_i915_private *dev_priv = dev->dev_private;
3099 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3100 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003101 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003102
Ville Syrjälä1c8562f2014-04-25 22:12:07 +03003103 /* FDI needs bits from pipe first */
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003104 assert_pipe_enabled(dev_priv, pipe);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003105
Adam Jacksone1a44742010-06-25 15:32:14 -04003106 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3107 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003108 reg = FDI_RX_IMR(pipe);
3109 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003110 temp &= ~FDI_RX_SYMBOL_LOCK;
3111 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003112 I915_WRITE(reg, temp);
3113 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003114 udelay(150);
3115
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003116 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003117 reg = FDI_TX_CTL(pipe);
3118 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003119 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003120 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003121 temp &= ~FDI_LINK_TRAIN_NONE;
3122 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003123 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003124
Chris Wilson5eddb702010-09-11 13:48:45 +01003125 reg = FDI_RX_CTL(pipe);
3126 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003127 temp &= ~FDI_LINK_TRAIN_NONE;
3128 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003129 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3130
3131 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003132 udelay(150);
3133
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003134 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01003135 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3136 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3137 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003138
Chris Wilson5eddb702010-09-11 13:48:45 +01003139 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003140 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003141 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003142 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3143
3144 if ((temp & FDI_RX_BIT_LOCK)) {
3145 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01003146 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003147 break;
3148 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003149 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003150 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003151 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003152
3153 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003154 reg = FDI_TX_CTL(pipe);
3155 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003156 temp &= ~FDI_LINK_TRAIN_NONE;
3157 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003158 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003159
Chris Wilson5eddb702010-09-11 13:48:45 +01003160 reg = FDI_RX_CTL(pipe);
3161 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003162 temp &= ~FDI_LINK_TRAIN_NONE;
3163 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003164 I915_WRITE(reg, temp);
3165
3166 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003167 udelay(150);
3168
Chris Wilson5eddb702010-09-11 13:48:45 +01003169 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003170 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003171 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003172 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3173
3174 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003175 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003176 DRM_DEBUG_KMS("FDI train 2 done.\n");
3177 break;
3178 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003179 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003180 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003181 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003182
3183 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07003184
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003185}
3186
Akshay Joshi0206e352011-08-16 15:34:10 -04003187static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003188 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3189 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3190 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3191 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3192};
3193
3194/* The FDI link training functions for SNB/Cougarpoint. */
3195static void gen6_fdi_link_train(struct drm_crtc *crtc)
3196{
3197 struct drm_device *dev = crtc->dev;
3198 struct drm_i915_private *dev_priv = dev->dev_private;
3199 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3200 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05003201 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003202
Adam Jacksone1a44742010-06-25 15:32:14 -04003203 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3204 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003205 reg = FDI_RX_IMR(pipe);
3206 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003207 temp &= ~FDI_RX_SYMBOL_LOCK;
3208 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003209 I915_WRITE(reg, temp);
3210
3211 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003212 udelay(150);
3213
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003214 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003215 reg = FDI_TX_CTL(pipe);
3216 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003217 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003218 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003219 temp &= ~FDI_LINK_TRAIN_NONE;
3220 temp |= FDI_LINK_TRAIN_PATTERN_1;
3221 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3222 /* SNB-B */
3223 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01003224 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003225
Daniel Vetterd74cf322012-10-26 10:58:13 +02003226 I915_WRITE(FDI_RX_MISC(pipe),
3227 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3228
Chris Wilson5eddb702010-09-11 13:48:45 +01003229 reg = FDI_RX_CTL(pipe);
3230 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003231 if (HAS_PCH_CPT(dev)) {
3232 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3233 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3234 } else {
3235 temp &= ~FDI_LINK_TRAIN_NONE;
3236 temp |= FDI_LINK_TRAIN_PATTERN_1;
3237 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003238 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3239
3240 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003241 udelay(150);
3242
Akshay Joshi0206e352011-08-16 15:34:10 -04003243 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003244 reg = FDI_TX_CTL(pipe);
3245 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003246 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3247 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003248 I915_WRITE(reg, temp);
3249
3250 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003251 udelay(500);
3252
Sean Paulfa37d392012-03-02 12:53:39 -05003253 for (retry = 0; retry < 5; retry++) {
3254 reg = FDI_RX_IIR(pipe);
3255 temp = I915_READ(reg);
3256 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3257 if (temp & FDI_RX_BIT_LOCK) {
3258 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3259 DRM_DEBUG_KMS("FDI train 1 done.\n");
3260 break;
3261 }
3262 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003263 }
Sean Paulfa37d392012-03-02 12:53:39 -05003264 if (retry < 5)
3265 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003266 }
3267 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003268 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003269
3270 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003271 reg = FDI_TX_CTL(pipe);
3272 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003273 temp &= ~FDI_LINK_TRAIN_NONE;
3274 temp |= FDI_LINK_TRAIN_PATTERN_2;
3275 if (IS_GEN6(dev)) {
3276 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3277 /* SNB-B */
3278 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3279 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003280 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003281
Chris Wilson5eddb702010-09-11 13:48:45 +01003282 reg = FDI_RX_CTL(pipe);
3283 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003284 if (HAS_PCH_CPT(dev)) {
3285 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3286 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3287 } else {
3288 temp &= ~FDI_LINK_TRAIN_NONE;
3289 temp |= FDI_LINK_TRAIN_PATTERN_2;
3290 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003291 I915_WRITE(reg, temp);
3292
3293 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003294 udelay(150);
3295
Akshay Joshi0206e352011-08-16 15:34:10 -04003296 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003297 reg = FDI_TX_CTL(pipe);
3298 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003299 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3300 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003301 I915_WRITE(reg, temp);
3302
3303 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003304 udelay(500);
3305
Sean Paulfa37d392012-03-02 12:53:39 -05003306 for (retry = 0; retry < 5; retry++) {
3307 reg = FDI_RX_IIR(pipe);
3308 temp = I915_READ(reg);
3309 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3310 if (temp & FDI_RX_SYMBOL_LOCK) {
3311 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3312 DRM_DEBUG_KMS("FDI train 2 done.\n");
3313 break;
3314 }
3315 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003316 }
Sean Paulfa37d392012-03-02 12:53:39 -05003317 if (retry < 5)
3318 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003319 }
3320 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003321 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003322
3323 DRM_DEBUG_KMS("FDI train done.\n");
3324}
3325
Jesse Barnes357555c2011-04-28 15:09:55 -07003326/* Manual link training for Ivy Bridge A0 parts */
3327static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3328{
3329 struct drm_device *dev = crtc->dev;
3330 struct drm_i915_private *dev_priv = dev->dev_private;
3331 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3332 int pipe = intel_crtc->pipe;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003333 u32 reg, temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07003334
3335 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3336 for train result */
3337 reg = FDI_RX_IMR(pipe);
3338 temp = I915_READ(reg);
3339 temp &= ~FDI_RX_SYMBOL_LOCK;
3340 temp &= ~FDI_RX_BIT_LOCK;
3341 I915_WRITE(reg, temp);
3342
3343 POSTING_READ(reg);
3344 udelay(150);
3345
Daniel Vetter01a415f2012-10-27 15:58:40 +02003346 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3347 I915_READ(FDI_RX_IIR(pipe)));
3348
Jesse Barnes139ccd32013-08-19 11:04:55 -07003349 /* Try each vswing and preemphasis setting twice before moving on */
3350 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3351 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07003352 reg = FDI_TX_CTL(pipe);
3353 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003354 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3355 temp &= ~FDI_TX_ENABLE;
3356 I915_WRITE(reg, temp);
3357
3358 reg = FDI_RX_CTL(pipe);
3359 temp = I915_READ(reg);
3360 temp &= ~FDI_LINK_TRAIN_AUTO;
3361 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3362 temp &= ~FDI_RX_ENABLE;
3363 I915_WRITE(reg, temp);
3364
3365 /* enable CPU FDI TX and PCH FDI RX */
3366 reg = FDI_TX_CTL(pipe);
3367 temp = I915_READ(reg);
3368 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003369 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003370 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07003371 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003372 temp |= snb_b_fdi_train_param[j/2];
3373 temp |= FDI_COMPOSITE_SYNC;
3374 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3375
3376 I915_WRITE(FDI_RX_MISC(pipe),
3377 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3378
3379 reg = FDI_RX_CTL(pipe);
3380 temp = I915_READ(reg);
3381 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3382 temp |= FDI_COMPOSITE_SYNC;
3383 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3384
3385 POSTING_READ(reg);
3386 udelay(1); /* should be 0.5us */
3387
3388 for (i = 0; i < 4; i++) {
3389 reg = FDI_RX_IIR(pipe);
3390 temp = I915_READ(reg);
3391 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3392
3393 if (temp & FDI_RX_BIT_LOCK ||
3394 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3395 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3396 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3397 i);
3398 break;
3399 }
3400 udelay(1); /* should be 0.5us */
3401 }
3402 if (i == 4) {
3403 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3404 continue;
3405 }
3406
3407 /* Train 2 */
3408 reg = FDI_TX_CTL(pipe);
3409 temp = I915_READ(reg);
3410 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3411 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3412 I915_WRITE(reg, temp);
3413
3414 reg = FDI_RX_CTL(pipe);
3415 temp = I915_READ(reg);
3416 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3417 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07003418 I915_WRITE(reg, temp);
3419
3420 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003421 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003422
Jesse Barnes139ccd32013-08-19 11:04:55 -07003423 for (i = 0; i < 4; i++) {
3424 reg = FDI_RX_IIR(pipe);
3425 temp = I915_READ(reg);
3426 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07003427
Jesse Barnes139ccd32013-08-19 11:04:55 -07003428 if (temp & FDI_RX_SYMBOL_LOCK ||
3429 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3430 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3431 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3432 i);
3433 goto train_done;
3434 }
3435 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003436 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07003437 if (i == 4)
3438 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07003439 }
Jesse Barnes357555c2011-04-28 15:09:55 -07003440
Jesse Barnes139ccd32013-08-19 11:04:55 -07003441train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07003442 DRM_DEBUG_KMS("FDI train done.\n");
3443}
3444
Daniel Vetter88cefb62012-08-12 19:27:14 +02003445static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07003446{
Daniel Vetter88cefb62012-08-12 19:27:14 +02003447 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003448 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003449 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003450 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003451
Jesse Barnesc64e3112010-09-10 11:27:03 -07003452
Jesse Barnes0e23b992010-09-10 11:10:00 -07003453 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01003454 reg = FDI_RX_CTL(pipe);
3455 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003456 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003457 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003458 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01003459 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3460
3461 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003462 udelay(200);
3463
3464 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003465 temp = I915_READ(reg);
3466 I915_WRITE(reg, temp | FDI_PCDCLK);
3467
3468 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003469 udelay(200);
3470
Paulo Zanoni20749732012-11-23 15:30:38 -02003471 /* Enable CPU FDI TX PLL, always on for Ironlake */
3472 reg = FDI_TX_CTL(pipe);
3473 temp = I915_READ(reg);
3474 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3475 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01003476
Paulo Zanoni20749732012-11-23 15:30:38 -02003477 POSTING_READ(reg);
3478 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003479 }
3480}
3481
Daniel Vetter88cefb62012-08-12 19:27:14 +02003482static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3483{
3484 struct drm_device *dev = intel_crtc->base.dev;
3485 struct drm_i915_private *dev_priv = dev->dev_private;
3486 int pipe = intel_crtc->pipe;
3487 u32 reg, temp;
3488
3489 /* Switch from PCDclk to Rawclk */
3490 reg = FDI_RX_CTL(pipe);
3491 temp = I915_READ(reg);
3492 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3493
3494 /* Disable CPU FDI TX PLL */
3495 reg = FDI_TX_CTL(pipe);
3496 temp = I915_READ(reg);
3497 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3498
3499 POSTING_READ(reg);
3500 udelay(100);
3501
3502 reg = FDI_RX_CTL(pipe);
3503 temp = I915_READ(reg);
3504 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3505
3506 /* Wait for the clocks to turn off. */
3507 POSTING_READ(reg);
3508 udelay(100);
3509}
3510
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003511static void ironlake_fdi_disable(struct drm_crtc *crtc)
3512{
3513 struct drm_device *dev = crtc->dev;
3514 struct drm_i915_private *dev_priv = dev->dev_private;
3515 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3516 int pipe = intel_crtc->pipe;
3517 u32 reg, temp;
3518
3519 /* disable CPU FDI tx and PCH FDI rx */
3520 reg = FDI_TX_CTL(pipe);
3521 temp = I915_READ(reg);
3522 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3523 POSTING_READ(reg);
3524
3525 reg = FDI_RX_CTL(pipe);
3526 temp = I915_READ(reg);
3527 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003528 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003529 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3530
3531 POSTING_READ(reg);
3532 udelay(100);
3533
3534 /* Ironlake workaround, disable clock pointer after downing FDI */
Robin Schroereba905b2014-05-18 02:24:50 +02003535 if (HAS_PCH_IBX(dev))
Jesse Barnes6f06ce12011-01-04 15:09:38 -08003536 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003537
3538 /* still set train pattern 1 */
3539 reg = FDI_TX_CTL(pipe);
3540 temp = I915_READ(reg);
3541 temp &= ~FDI_LINK_TRAIN_NONE;
3542 temp |= FDI_LINK_TRAIN_PATTERN_1;
3543 I915_WRITE(reg, temp);
3544
3545 reg = FDI_RX_CTL(pipe);
3546 temp = I915_READ(reg);
3547 if (HAS_PCH_CPT(dev)) {
3548 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3549 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3550 } else {
3551 temp &= ~FDI_LINK_TRAIN_NONE;
3552 temp |= FDI_LINK_TRAIN_PATTERN_1;
3553 }
3554 /* BPC in FDI rx is consistent with that in PIPECONF */
3555 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003556 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003557 I915_WRITE(reg, temp);
3558
3559 POSTING_READ(reg);
3560 udelay(100);
3561}
3562
Chris Wilson5dce5b932014-01-20 10:17:36 +00003563bool intel_has_pending_fb_unpin(struct drm_device *dev)
3564{
3565 struct intel_crtc *crtc;
3566
3567 /* Note that we don't need to be called with mode_config.lock here
3568 * as our list of CRTC objects is static for the lifetime of the
3569 * device and so cannot disappear as we iterate. Similarly, we can
3570 * happily treat the predicates as racy, atomic checks as userspace
3571 * cannot claim and pin a new fb without at least acquring the
3572 * struct_mutex and so serialising with us.
3573 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003574 for_each_intel_crtc(dev, crtc) {
Chris Wilson5dce5b932014-01-20 10:17:36 +00003575 if (atomic_read(&crtc->unpin_work_count) == 0)
3576 continue;
3577
3578 if (crtc->unpin_work)
3579 intel_wait_for_vblank(dev, crtc->pipe);
3580
3581 return true;
3582 }
3583
3584 return false;
3585}
3586
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003587static void page_flip_completed(struct intel_crtc *intel_crtc)
3588{
3589 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
3590 struct intel_unpin_work *work = intel_crtc->unpin_work;
3591
3592 /* ensure that the unpin work is consistent wrt ->pending. */
3593 smp_rmb();
3594 intel_crtc->unpin_work = NULL;
3595
3596 if (work->event)
3597 drm_send_vblank_event(intel_crtc->base.dev,
3598 intel_crtc->pipe,
3599 work->event);
3600
3601 drm_crtc_vblank_put(&intel_crtc->base);
3602
3603 wake_up_all(&dev_priv->pending_flip_queue);
3604 queue_work(dev_priv->wq, &work->work);
3605
3606 trace_i915_flip_complete(intel_crtc->plane,
3607 work->pending_flip_obj);
3608}
3609
Ville Syrjälä46a55d32014-05-21 14:04:46 +03003610void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003611{
Chris Wilson0f911282012-04-17 10:05:38 +01003612 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01003613 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003614
Daniel Vetter2c10d572012-12-20 21:24:07 +01003615 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
Chris Wilson9c787942014-09-05 07:13:25 +01003616 if (WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3617 !intel_crtc_has_pending_flip(crtc),
3618 60*HZ) == 0)) {
3619 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter2c10d572012-12-20 21:24:07 +01003620
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003621 spin_lock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003622 if (intel_crtc->unpin_work) {
3623 WARN_ONCE(1, "Removing stuck page flip\n");
3624 page_flip_completed(intel_crtc);
3625 }
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003626 spin_unlock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003627 }
Chris Wilson5bb61642012-09-27 21:25:58 +01003628
Chris Wilson975d5682014-08-20 13:13:34 +01003629 if (crtc->primary->fb) {
3630 mutex_lock(&dev->struct_mutex);
3631 intel_finish_fb(crtc->primary->fb);
3632 mutex_unlock(&dev->struct_mutex);
3633 }
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003634}
3635
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003636/* Program iCLKIP clock to the desired frequency */
3637static void lpt_program_iclkip(struct drm_crtc *crtc)
3638{
3639 struct drm_device *dev = crtc->dev;
3640 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003641 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003642 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3643 u32 temp;
3644
Daniel Vetter09153002012-12-12 14:06:44 +01003645 mutex_lock(&dev_priv->dpio_lock);
3646
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003647 /* It is necessary to ungate the pixclk gate prior to programming
3648 * the divisors, and gate it back when it is done.
3649 */
3650 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3651
3652 /* Disable SSCCTL */
3653 intel_sbi_write(dev_priv, SBI_SSCCTL6,
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003654 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
3655 SBI_SSCCTL_DISABLE,
3656 SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003657
3658 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003659 if (clock == 20000) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003660 auxdiv = 1;
3661 divsel = 0x41;
3662 phaseinc = 0x20;
3663 } else {
3664 /* The iCLK virtual clock root frequency is in MHz,
Damien Lespiau241bfc32013-09-25 16:45:37 +01003665 * but the adjusted_mode->crtc_clock in in KHz. To get the
3666 * divisors, it is necessary to divide one by another, so we
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003667 * convert the virtual clock precision to KHz here for higher
3668 * precision.
3669 */
3670 u32 iclk_virtual_root_freq = 172800 * 1000;
3671 u32 iclk_pi_range = 64;
3672 u32 desired_divisor, msb_divisor_value, pi_value;
3673
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003674 desired_divisor = (iclk_virtual_root_freq / clock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003675 msb_divisor_value = desired_divisor / iclk_pi_range;
3676 pi_value = desired_divisor % iclk_pi_range;
3677
3678 auxdiv = 0;
3679 divsel = msb_divisor_value - 2;
3680 phaseinc = pi_value;
3681 }
3682
3683 /* This should not happen with any sane values */
3684 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3685 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3686 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3687 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3688
3689 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 +03003690 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003691 auxdiv,
3692 divsel,
3693 phasedir,
3694 phaseinc);
3695
3696 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003697 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003698 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3699 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3700 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3701 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3702 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3703 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003704 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003705
3706 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003707 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003708 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3709 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003710 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003711
3712 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003713 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003714 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003715 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003716
3717 /* Wait for initialization time */
3718 udelay(24);
3719
3720 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
Daniel Vetter09153002012-12-12 14:06:44 +01003721
3722 mutex_unlock(&dev_priv->dpio_lock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003723}
3724
Daniel Vetter275f01b22013-05-03 11:49:47 +02003725static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3726 enum pipe pch_transcoder)
3727{
3728 struct drm_device *dev = crtc->base.dev;
3729 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003730 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Daniel Vetter275f01b22013-05-03 11:49:47 +02003731
3732 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
3733 I915_READ(HTOTAL(cpu_transcoder)));
3734 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
3735 I915_READ(HBLANK(cpu_transcoder)));
3736 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
3737 I915_READ(HSYNC(cpu_transcoder)));
3738
3739 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
3740 I915_READ(VTOTAL(cpu_transcoder)));
3741 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
3742 I915_READ(VBLANK(cpu_transcoder)));
3743 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
3744 I915_READ(VSYNC(cpu_transcoder)));
3745 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
3746 I915_READ(VSYNCSHIFT(cpu_transcoder)));
3747}
3748
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003749static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
3750{
3751 struct drm_i915_private *dev_priv = dev->dev_private;
3752 uint32_t temp;
3753
3754 temp = I915_READ(SOUTH_CHICKEN1);
3755 if (temp & FDI_BC_BIFURCATION_SELECT)
3756 return;
3757
3758 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3759 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3760
3761 temp |= FDI_BC_BIFURCATION_SELECT;
3762 DRM_DEBUG_KMS("enabling fdi C rx\n");
3763 I915_WRITE(SOUTH_CHICKEN1, temp);
3764 POSTING_READ(SOUTH_CHICKEN1);
3765}
3766
3767static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
3768{
3769 struct drm_device *dev = intel_crtc->base.dev;
3770 struct drm_i915_private *dev_priv = dev->dev_private;
3771
3772 switch (intel_crtc->pipe) {
3773 case PIPE_A:
3774 break;
3775 case PIPE_B:
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003776 if (intel_crtc->config->fdi_lanes > 2)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003777 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
3778 else
3779 cpt_enable_fdi_bc_bifurcation(dev);
3780
3781 break;
3782 case PIPE_C:
3783 cpt_enable_fdi_bc_bifurcation(dev);
3784
3785 break;
3786 default:
3787 BUG();
3788 }
3789}
3790
Jesse Barnesf67a5592011-01-05 10:31:48 -08003791/*
3792 * Enable PCH resources required for PCH ports:
3793 * - PCH PLLs
3794 * - FDI training & RX/TX
3795 * - update transcoder timings
3796 * - DP transcoding bits
3797 * - transcoder
3798 */
3799static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003800{
3801 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003802 struct drm_i915_private *dev_priv = dev->dev_private;
3803 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3804 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003805 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003806
Daniel Vetterab9412b2013-05-03 11:49:46 +02003807 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01003808
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003809 if (IS_IVYBRIDGE(dev))
3810 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
3811
Daniel Vettercd986ab2012-10-26 10:58:12 +02003812 /* Write the TU size bits before fdi link training, so that error
3813 * detection works. */
3814 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3815 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3816
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003817 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07003818 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003819
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003820 /* We need to program the right clock selection before writing the pixel
3821 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003822 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003823 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07003824
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003825 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02003826 temp |= TRANS_DPLL_ENABLE(pipe);
3827 sel = TRANS_DPLLB_SEL(pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003828 if (intel_crtc->config->shared_dpll == DPLL_ID_PCH_PLL_B)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003829 temp |= sel;
3830 else
3831 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003832 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003833 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003834
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003835 /* XXX: pch pll's can be enabled any time before we enable the PCH
3836 * transcoder, and we actually should do this to not upset any PCH
3837 * transcoder that already use the clock when we share it.
3838 *
3839 * Note that enable_shared_dpll tries to do the right thing, but
3840 * get_shared_dpll unconditionally resets the pll - we need that to have
3841 * the right LVDS enable sequence. */
Daniel Vetter85b38942014-04-24 23:55:14 +02003842 intel_enable_shared_dpll(intel_crtc);
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003843
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08003844 /* set transcoder timing, panel must allow it */
3845 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02003846 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003847
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003848 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003849
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003850 /* For PCH DP, enable TRANS_DP_CTL */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003851 if (HAS_PCH_CPT(dev) && intel_crtc->config->has_dp_encoder) {
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003852 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01003853 reg = TRANS_DP_CTL(pipe);
3854 temp = I915_READ(reg);
3855 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08003856 TRANS_DP_SYNC_MASK |
3857 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01003858 temp |= (TRANS_DP_OUTPUT_ENABLE |
3859 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003860 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003861
3862 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003863 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003864 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003865 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003866
3867 switch (intel_trans_dp_port_sel(crtc)) {
3868 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01003869 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003870 break;
3871 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01003872 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003873 break;
3874 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01003875 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003876 break;
3877 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02003878 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003879 }
3880
Chris Wilson5eddb702010-09-11 13:48:45 +01003881 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003882 }
3883
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003884 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003885}
3886
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003887static void lpt_pch_enable(struct drm_crtc *crtc)
3888{
3889 struct drm_device *dev = crtc->dev;
3890 struct drm_i915_private *dev_priv = dev->dev_private;
3891 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003892 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003893
Daniel Vetterab9412b2013-05-03 11:49:46 +02003894 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003895
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02003896 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003897
Paulo Zanoni0540e482012-10-31 18:12:40 -02003898 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02003899 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003900
Paulo Zanoni937bb612012-10-31 18:12:47 -02003901 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003902}
3903
Daniel Vetter716c2e52014-06-25 22:02:02 +03003904void intel_put_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003905{
Daniel Vettere2b78262013-06-07 23:10:03 +02003906 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003907
3908 if (pll == NULL)
3909 return;
3910
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02003911 if (!(pll->config.crtc_mask & (1 << crtc->pipe))) {
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +02003912 WARN(1, "bad %s crtc mask\n", pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003913 return;
3914 }
3915
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02003916 pll->config.crtc_mask &= ~(1 << crtc->pipe);
3917 if (pll->config.crtc_mask == 0) {
Daniel Vetterf4a091c2013-06-10 17:28:22 +02003918 WARN_ON(pll->on);
3919 WARN_ON(pll->active);
3920 }
3921
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003922 crtc->config->shared_dpll = DPLL_ID_PRIVATE;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003923}
3924
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02003925struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc,
3926 struct intel_crtc_state *crtc_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003927{
Daniel Vettere2b78262013-06-07 23:10:03 +02003928 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003929 struct intel_shared_dpll *pll;
Daniel Vettere2b78262013-06-07 23:10:03 +02003930 enum intel_dpll_id i;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003931
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003932 if (HAS_PCH_IBX(dev_priv->dev)) {
3933 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
Daniel Vetterd94ab062013-07-04 12:01:16 +02003934 i = (enum intel_dpll_id) crtc->pipe;
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003935 pll = &dev_priv->shared_dplls[i];
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003936
Daniel Vetter46edb022013-06-05 13:34:12 +02003937 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
3938 crtc->base.base.id, pll->name);
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003939
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003940 WARN_ON(pll->new_config->crtc_mask);
Daniel Vetterf2a69f42014-05-20 15:19:19 +02003941
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003942 goto found;
3943 }
3944
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003945 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3946 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003947
3948 /* Only want to check enabled timings first */
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003949 if (pll->new_config->crtc_mask == 0)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003950 continue;
3951
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02003952 if (memcmp(&crtc_state->dpll_hw_state,
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003953 &pll->new_config->hw_state,
3954 sizeof(pll->new_config->hw_state)) == 0) {
3955 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (crtc mask 0x%08x, ative %d)\n",
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +02003956 crtc->base.base.id, pll->name,
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003957 pll->new_config->crtc_mask,
3958 pll->active);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003959 goto found;
3960 }
3961 }
3962
3963 /* Ok no matching timings, maybe there's a free one? */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003964 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3965 pll = &dev_priv->shared_dplls[i];
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003966 if (pll->new_config->crtc_mask == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003967 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
3968 crtc->base.base.id, pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003969 goto found;
3970 }
3971 }
3972
3973 return NULL;
3974
3975found:
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003976 if (pll->new_config->crtc_mask == 0)
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02003977 pll->new_config->hw_state = crtc_state->dpll_hw_state;
Daniel Vetterf2a69f42014-05-20 15:19:19 +02003978
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02003979 crtc_state->shared_dpll = i;
Daniel Vetter46edb022013-06-05 13:34:12 +02003980 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
3981 pipe_name(crtc->pipe));
Daniel Vetter66e985c2013-06-05 13:34:20 +02003982
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003983 pll->new_config->crtc_mask |= 1 << crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003984
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003985 return pll;
3986}
3987
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003988/**
3989 * intel_shared_dpll_start_config - start a new PLL staged config
3990 * @dev_priv: DRM device
3991 * @clear_pipes: mask of pipes that will have their PLLs freed
3992 *
3993 * Starts a new PLL staged config, copying the current config but
3994 * releasing the references of pipes specified in clear_pipes.
3995 */
3996static int intel_shared_dpll_start_config(struct drm_i915_private *dev_priv,
3997 unsigned clear_pipes)
3998{
3999 struct intel_shared_dpll *pll;
4000 enum intel_dpll_id i;
4001
4002 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4003 pll = &dev_priv->shared_dplls[i];
4004
4005 pll->new_config = kmemdup(&pll->config, sizeof pll->config,
4006 GFP_KERNEL);
4007 if (!pll->new_config)
4008 goto cleanup;
4009
4010 pll->new_config->crtc_mask &= ~clear_pipes;
4011 }
4012
4013 return 0;
4014
4015cleanup:
4016 while (--i >= 0) {
4017 pll = &dev_priv->shared_dplls[i];
Ander Conselvan de Oliveiraf354d732014-11-07 14:07:41 +02004018 kfree(pll->new_config);
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004019 pll->new_config = NULL;
4020 }
4021
4022 return -ENOMEM;
4023}
4024
4025static void intel_shared_dpll_commit(struct drm_i915_private *dev_priv)
4026{
4027 struct intel_shared_dpll *pll;
4028 enum intel_dpll_id i;
4029
4030 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4031 pll = &dev_priv->shared_dplls[i];
4032
4033 WARN_ON(pll->new_config == &pll->config);
4034
4035 pll->config = *pll->new_config;
4036 kfree(pll->new_config);
4037 pll->new_config = NULL;
4038 }
4039}
4040
4041static void intel_shared_dpll_abort_config(struct drm_i915_private *dev_priv)
4042{
4043 struct intel_shared_dpll *pll;
4044 enum intel_dpll_id i;
4045
4046 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4047 pll = &dev_priv->shared_dplls[i];
4048
4049 WARN_ON(pll->new_config == &pll->config);
4050
4051 kfree(pll->new_config);
4052 pll->new_config = NULL;
4053 }
4054}
4055
Daniel Vettera1520312013-05-03 11:49:50 +02004056static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07004057{
4058 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01004059 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07004060 u32 temp;
4061
4062 temp = I915_READ(dslreg);
4063 udelay(500);
4064 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07004065 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03004066 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07004067 }
4068}
4069
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004070static void skylake_pfit_enable(struct intel_crtc *crtc)
4071{
4072 struct drm_device *dev = crtc->base.dev;
4073 struct drm_i915_private *dev_priv = dev->dev_private;
4074 int pipe = crtc->pipe;
4075
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004076 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004077 I915_WRITE(PS_CTL(pipe), PS_ENABLE);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004078 I915_WRITE(PS_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4079 I915_WRITE(PS_WIN_SZ(pipe), crtc->config->pch_pfit.size);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004080 }
4081}
4082
Jesse Barnesb074cec2013-04-25 12:55:02 -07004083static void ironlake_pfit_enable(struct intel_crtc *crtc)
4084{
4085 struct drm_device *dev = crtc->base.dev;
4086 struct drm_i915_private *dev_priv = dev->dev_private;
4087 int pipe = crtc->pipe;
4088
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004089 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07004090 /* Force use of hard-coded filter coefficients
4091 * as some pre-programmed values are broken,
4092 * e.g. x201.
4093 */
4094 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
4095 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4096 PF_PIPE_SEL_IVB(pipe));
4097 else
4098 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004099 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4100 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08004101 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004102}
4103
Matt Roper4a3b8762014-12-23 10:41:51 -08004104static void intel_enable_sprite_planes(struct drm_crtc *crtc)
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004105{
4106 struct drm_device *dev = crtc->dev;
4107 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07004108 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004109 struct intel_plane *intel_plane;
4110
Matt Roperaf2b6532014-04-01 15:22:32 -07004111 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
4112 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004113 if (intel_plane->pipe == pipe)
4114 intel_plane_restore(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07004115 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004116}
4117
Matt Roper4a3b8762014-12-23 10:41:51 -08004118static void intel_disable_sprite_planes(struct drm_crtc *crtc)
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004119{
4120 struct drm_device *dev = crtc->dev;
4121 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07004122 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004123 struct intel_plane *intel_plane;
4124
Matt Roperaf2b6532014-04-01 15:22:32 -07004125 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
4126 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004127 if (intel_plane->pipe == pipe)
Matt Ropercf4c7c12014-12-04 10:27:42 -08004128 plane->funcs->disable_plane(plane);
Matt Roperaf2b6532014-04-01 15:22:32 -07004129 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004130}
4131
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004132void hsw_enable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004133{
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004134 struct drm_device *dev = crtc->base.dev;
4135 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid77e4532013-09-24 13:52:55 -03004136
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004137 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004138 return;
4139
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004140 /* We can only enable IPS after we enable a plane and wait for a vblank */
4141 intel_wait_for_vblank(dev, crtc->pipe);
4142
Paulo Zanonid77e4532013-09-24 13:52:55 -03004143 assert_plane_enabled(dev_priv, crtc->plane);
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004144 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004145 mutex_lock(&dev_priv->rps.hw_lock);
4146 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4147 mutex_unlock(&dev_priv->rps.hw_lock);
4148 /* Quoting Art Runyan: "its not safe to expect any particular
4149 * value in IPS_CTL bit 31 after enabling IPS through the
Jesse Barnese59150d2014-01-07 13:30:45 -08004150 * mailbox." Moreover, the mailbox may return a bogus state,
4151 * so we need to just enable it and continue on.
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004152 */
4153 } else {
4154 I915_WRITE(IPS_CTL, IPS_ENABLE);
4155 /* The bit only becomes 1 in the next vblank, so this wait here
4156 * is essentially intel_wait_for_vblank. If we don't have this
4157 * and don't wait for vblanks until the end of crtc_enable, then
4158 * the HW state readout code will complain that the expected
4159 * IPS_CTL value is not the one we read. */
4160 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
4161 DRM_ERROR("Timed out waiting for IPS enable\n");
4162 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004163}
4164
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004165void hsw_disable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004166{
4167 struct drm_device *dev = crtc->base.dev;
4168 struct drm_i915_private *dev_priv = dev->dev_private;
4169
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004170 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004171 return;
4172
4173 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004174 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004175 mutex_lock(&dev_priv->rps.hw_lock);
4176 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4177 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004178 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
4179 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
4180 DRM_ERROR("Timed out waiting for IPS disable\n");
Jesse Barnese59150d2014-01-07 13:30:45 -08004181 } else {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004182 I915_WRITE(IPS_CTL, 0);
Jesse Barnese59150d2014-01-07 13:30:45 -08004183 POSTING_READ(IPS_CTL);
4184 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004185
4186 /* We need to wait for a vblank before we can disable the plane. */
4187 intel_wait_for_vblank(dev, crtc->pipe);
4188}
4189
4190/** Loads the palette/gamma unit for the CRTC with the prepared values */
4191static void intel_crtc_load_lut(struct drm_crtc *crtc)
4192{
4193 struct drm_device *dev = crtc->dev;
4194 struct drm_i915_private *dev_priv = dev->dev_private;
4195 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4196 enum pipe pipe = intel_crtc->pipe;
4197 int palreg = PALETTE(pipe);
4198 int i;
4199 bool reenable_ips = false;
4200
4201 /* The clocks have to be on to load the palette. */
4202 if (!crtc->enabled || !intel_crtc->active)
4203 return;
4204
4205 if (!HAS_PCH_SPLIT(dev_priv->dev)) {
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03004206 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI))
Paulo Zanonid77e4532013-09-24 13:52:55 -03004207 assert_dsi_pll_enabled(dev_priv);
4208 else
4209 assert_pll_enabled(dev_priv, pipe);
4210 }
4211
4212 /* use legacy palette for Ironlake */
Sonika Jindal7a1db492014-07-22 11:18:27 +05304213 if (!HAS_GMCH_DISPLAY(dev))
Paulo Zanonid77e4532013-09-24 13:52:55 -03004214 palreg = LGC_PALETTE(pipe);
4215
4216 /* Workaround : Do not read or write the pipe palette/gamma data while
4217 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
4218 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004219 if (IS_HASWELL(dev) && intel_crtc->config->ips_enabled &&
Paulo Zanonid77e4532013-09-24 13:52:55 -03004220 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
4221 GAMMA_MODE_MODE_SPLIT)) {
4222 hsw_disable_ips(intel_crtc);
4223 reenable_ips = true;
4224 }
4225
4226 for (i = 0; i < 256; i++) {
4227 I915_WRITE(palreg + 4 * i,
4228 (intel_crtc->lut_r[i] << 16) |
4229 (intel_crtc->lut_g[i] << 8) |
4230 intel_crtc->lut_b[i]);
4231 }
4232
4233 if (reenable_ips)
4234 hsw_enable_ips(intel_crtc);
4235}
4236
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004237static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
4238{
4239 if (!enable && intel_crtc->overlay) {
4240 struct drm_device *dev = intel_crtc->base.dev;
4241 struct drm_i915_private *dev_priv = dev->dev_private;
4242
4243 mutex_lock(&dev->struct_mutex);
4244 dev_priv->mm.interruptible = false;
4245 (void) intel_overlay_switch_off(intel_crtc->overlay);
4246 dev_priv->mm.interruptible = true;
4247 mutex_unlock(&dev->struct_mutex);
4248 }
4249
4250 /* Let userspace switch the overlay on again. In most cases userspace
4251 * has to recompute where to put it anyway.
4252 */
4253}
4254
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004255static void intel_crtc_enable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004256{
4257 struct drm_device *dev = crtc->dev;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004258 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4259 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004260
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03004261 intel_enable_primary_hw_plane(crtc->primary, crtc);
Matt Roper4a3b8762014-12-23 10:41:51 -08004262 intel_enable_sprite_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004263 intel_crtc_update_cursor(crtc, true);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004264 intel_crtc_dpms_overlay(intel_crtc, true);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004265
4266 hsw_enable_ips(intel_crtc);
4267
4268 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004269 intel_fbc_update(dev);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004270 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf99d7062014-06-19 16:01:59 +02004271
4272 /*
4273 * FIXME: Once we grow proper nuclear flip support out of this we need
4274 * to compute the mask of flip planes precisely. For the time being
4275 * consider this a flip from a NULL plane.
4276 */
4277 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004278}
4279
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004280static void intel_crtc_disable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004281{
4282 struct drm_device *dev = crtc->dev;
4283 struct drm_i915_private *dev_priv = dev->dev_private;
4284 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4285 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004286
4287 intel_crtc_wait_for_pending_flips(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004288
Paulo Zanonie35fef22015-02-09 14:46:29 -02004289 if (dev_priv->fbc.crtc == intel_crtc)
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004290 intel_fbc_disable(dev);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004291
4292 hsw_disable_ips(intel_crtc);
4293
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004294 intel_crtc_dpms_overlay(intel_crtc, false);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004295 intel_crtc_update_cursor(crtc, false);
Matt Roper4a3b8762014-12-23 10:41:51 -08004296 intel_disable_sprite_planes(crtc);
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03004297 intel_disable_primary_hw_plane(crtc->primary, crtc);
Ville Syrjäläf98551a2014-05-22 17:48:06 +03004298
Daniel Vetterf99d7062014-06-19 16:01:59 +02004299 /*
4300 * FIXME: Once we grow proper nuclear flip support out of this we need
4301 * to compute the mask of flip planes precisely. For the time being
4302 * consider this a flip to a NULL plane.
4303 */
4304 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004305}
4306
Jesse Barnesf67a5592011-01-05 10:31:48 -08004307static void ironlake_crtc_enable(struct drm_crtc *crtc)
4308{
4309 struct drm_device *dev = crtc->dev;
4310 struct drm_i915_private *dev_priv = dev->dev_private;
4311 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004312 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004313 int pipe = intel_crtc->pipe;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004314
Daniel Vetter08a48462012-07-02 11:43:47 +02004315 WARN_ON(!crtc->enabled);
4316
Jesse Barnesf67a5592011-01-05 10:31:48 -08004317 if (intel_crtc->active)
4318 return;
4319
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004320 if (intel_crtc->config->has_pch_encoder)
Daniel Vetterb14b1052014-04-24 23:55:13 +02004321 intel_prepare_shared_dpll(intel_crtc);
4322
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004323 if (intel_crtc->config->has_dp_encoder)
Daniel Vetter29407aa2014-04-24 23:55:08 +02004324 intel_dp_set_m_n(intel_crtc);
4325
4326 intel_set_pipe_timings(intel_crtc);
4327
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004328 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter29407aa2014-04-24 23:55:08 +02004329 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004330 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004331 }
4332
4333 ironlake_set_pipeconf(crtc);
4334
Jesse Barnesf67a5592011-01-05 10:31:48 -08004335 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004336
Daniel Vettera72e4c92014-09-30 10:56:47 +02004337 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4338 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni86642812013-04-12 17:57:57 -03004339
Daniel Vetterf6736a12013-06-05 13:34:30 +02004340 for_each_encoder_on_crtc(dev, crtc, encoder)
Daniel Vetter952735e2013-06-05 13:34:27 +02004341 if (encoder->pre_enable)
4342 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004343
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004344 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02004345 /* Note: FDI PLL enabling _must_ be done before we enable the
4346 * cpu pipes, hence this is separate from all the other fdi/pch
4347 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02004348 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02004349 } else {
4350 assert_fdi_tx_disabled(dev_priv, pipe);
4351 assert_fdi_rx_disabled(dev_priv, pipe);
4352 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004353
Jesse Barnesb074cec2013-04-25 12:55:02 -07004354 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004355
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02004356 /*
4357 * On ILK+ LUT must be loaded before the pipe is running but with
4358 * clocks enabled
4359 */
4360 intel_crtc_load_lut(crtc);
4361
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004362 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004363 intel_enable_pipe(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004364
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004365 if (intel_crtc->config->has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08004366 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004367
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004368 assert_vblank_disabled(crtc);
4369 drm_crtc_vblank_on(crtc);
4370
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004371 for_each_encoder_on_crtc(dev, crtc, encoder)
4372 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02004373
4374 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02004375 cpt_verify_modeset(dev, intel_crtc->pipe);
Daniel Vetter6ce94102012-10-04 19:20:03 +02004376
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004377 intel_crtc_enable_planes(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004378}
4379
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004380/* IPS only exists on ULT machines and is tied to pipe A. */
4381static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4382{
Damien Lespiauf5adf942013-06-24 18:29:34 +01004383 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004384}
4385
Paulo Zanonie4916942013-09-20 16:21:19 -03004386/*
4387 * This implements the workaround described in the "notes" section of the mode
4388 * set sequence documentation. When going from no pipes or single pipe to
4389 * multiple pipes, and planes are enabled after the pipe, we need to wait at
4390 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
4391 */
4392static void haswell_mode_set_planes_workaround(struct intel_crtc *crtc)
4393{
4394 struct drm_device *dev = crtc->base.dev;
4395 struct intel_crtc *crtc_it, *other_active_crtc = NULL;
4396
4397 /* We want to get the other_active_crtc only if there's only 1 other
4398 * active crtc. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004399 for_each_intel_crtc(dev, crtc_it) {
Paulo Zanonie4916942013-09-20 16:21:19 -03004400 if (!crtc_it->active || crtc_it == crtc)
4401 continue;
4402
4403 if (other_active_crtc)
4404 return;
4405
4406 other_active_crtc = crtc_it;
4407 }
4408 if (!other_active_crtc)
4409 return;
4410
4411 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4412 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4413}
4414
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004415static void haswell_crtc_enable(struct drm_crtc *crtc)
4416{
4417 struct drm_device *dev = crtc->dev;
4418 struct drm_i915_private *dev_priv = dev->dev_private;
4419 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4420 struct intel_encoder *encoder;
4421 int pipe = intel_crtc->pipe;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004422
4423 WARN_ON(!crtc->enabled);
4424
4425 if (intel_crtc->active)
4426 return;
4427
Daniel Vetterdf8ad702014-06-25 22:02:03 +03004428 if (intel_crtc_to_shared_dpll(intel_crtc))
4429 intel_enable_shared_dpll(intel_crtc);
4430
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004431 if (intel_crtc->config->has_dp_encoder)
Daniel Vetter229fca92014-04-24 23:55:09 +02004432 intel_dp_set_m_n(intel_crtc);
4433
4434 intel_set_pipe_timings(intel_crtc);
4435
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004436 if (intel_crtc->config->cpu_transcoder != TRANSCODER_EDP) {
4437 I915_WRITE(PIPE_MULT(intel_crtc->config->cpu_transcoder),
4438 intel_crtc->config->pixel_multiplier - 1);
Clint Taylorebb69c92014-09-30 10:30:22 -07004439 }
4440
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004441 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter229fca92014-04-24 23:55:09 +02004442 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004443 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter229fca92014-04-24 23:55:09 +02004444 }
4445
4446 haswell_set_pipeconf(crtc);
4447
4448 intel_set_pipe_csc(crtc);
4449
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004450 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004451
Daniel Vettera72e4c92014-09-30 10:56:47 +02004452 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004453 for_each_encoder_on_crtc(dev, crtc, encoder)
4454 if (encoder->pre_enable)
4455 encoder->pre_enable(encoder);
4456
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004457 if (intel_crtc->config->has_pch_encoder) {
Daniel Vettera72e4c92014-09-30 10:56:47 +02004458 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4459 true);
Imre Deak4fe94672014-06-25 22:01:49 +03004460 dev_priv->display.fdi_link_train(crtc);
4461 }
4462
Paulo Zanoni1f544382012-10-24 11:32:00 -02004463 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004464
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004465 if (IS_SKYLAKE(dev))
4466 skylake_pfit_enable(intel_crtc);
4467 else
4468 ironlake_pfit_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004469
4470 /*
4471 * On ILK+ LUT must be loaded before the pipe is running but with
4472 * clocks enabled
4473 */
4474 intel_crtc_load_lut(crtc);
4475
Paulo Zanoni1f544382012-10-24 11:32:00 -02004476 intel_ddi_set_pipe_settings(crtc);
Damien Lespiau8228c252013-03-07 15:30:27 +00004477 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004478
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004479 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004480 intel_enable_pipe(intel_crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004481
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004482 if (intel_crtc->config->has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004483 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004484
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004485 if (intel_crtc->config->dp_encoder_is_mst)
Dave Airlie0e32b392014-05-02 14:02:48 +10004486 intel_ddi_set_vc_payload_alloc(crtc, true);
4487
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004488 assert_vblank_disabled(crtc);
4489 drm_crtc_vblank_on(crtc);
4490
Jani Nikula8807e552013-08-30 19:40:32 +03004491 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004492 encoder->enable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004493 intel_opregion_notify_encoder(encoder, true);
4494 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004495
Paulo Zanonie4916942013-09-20 16:21:19 -03004496 /* If we change the relative order between pipe/planes enabling, we need
4497 * to change the workaround. */
4498 haswell_mode_set_planes_workaround(intel_crtc);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004499 intel_crtc_enable_planes(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004500}
4501
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004502static void skylake_pfit_disable(struct intel_crtc *crtc)
4503{
4504 struct drm_device *dev = crtc->base.dev;
4505 struct drm_i915_private *dev_priv = dev->dev_private;
4506 int pipe = crtc->pipe;
4507
4508 /* To avoid upsetting the power well on haswell only disable the pfit if
4509 * it's in use. The hw state code will make sure we get this right. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004510 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004511 I915_WRITE(PS_CTL(pipe), 0);
4512 I915_WRITE(PS_WIN_POS(pipe), 0);
4513 I915_WRITE(PS_WIN_SZ(pipe), 0);
4514 }
4515}
4516
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004517static void ironlake_pfit_disable(struct intel_crtc *crtc)
4518{
4519 struct drm_device *dev = crtc->base.dev;
4520 struct drm_i915_private *dev_priv = dev->dev_private;
4521 int pipe = crtc->pipe;
4522
4523 /* To avoid upsetting the power well on haswell only disable the pfit if
4524 * it's in use. The hw state code will make sure we get this right. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004525 if (crtc->config->pch_pfit.enabled) {
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004526 I915_WRITE(PF_CTL(pipe), 0);
4527 I915_WRITE(PF_WIN_POS(pipe), 0);
4528 I915_WRITE(PF_WIN_SZ(pipe), 0);
4529 }
4530}
4531
Jesse Barnes6be4a602010-09-10 10:26:01 -07004532static void ironlake_crtc_disable(struct drm_crtc *crtc)
4533{
4534 struct drm_device *dev = crtc->dev;
4535 struct drm_i915_private *dev_priv = dev->dev_private;
4536 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004537 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004538 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01004539 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004540
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004541 if (!intel_crtc->active)
4542 return;
4543
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004544 intel_crtc_disable_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004545
Daniel Vetterea9d7582012-07-10 10:42:52 +02004546 for_each_encoder_on_crtc(dev, crtc, encoder)
4547 encoder->disable(encoder);
4548
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004549 drm_crtc_vblank_off(crtc);
4550 assert_vblank_disabled(crtc);
4551
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004552 if (intel_crtc->config->has_pch_encoder)
Daniel Vettera72e4c92014-09-30 10:56:47 +02004553 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
Daniel Vetterd925c592013-06-05 13:34:04 +02004554
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03004555 intel_disable_pipe(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004556
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004557 ironlake_pfit_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004558
Daniel Vetterbf49ec82012-09-06 22:15:40 +02004559 for_each_encoder_on_crtc(dev, crtc, encoder)
4560 if (encoder->post_disable)
4561 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004562
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004563 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterd925c592013-06-05 13:34:04 +02004564 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004565
Daniel Vetterd925c592013-06-05 13:34:04 +02004566 ironlake_disable_pch_transcoder(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004567
Daniel Vetterd925c592013-06-05 13:34:04 +02004568 if (HAS_PCH_CPT(dev)) {
4569 /* disable TRANS_DP_CTL */
4570 reg = TRANS_DP_CTL(pipe);
4571 temp = I915_READ(reg);
4572 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
4573 TRANS_DP_PORT_SEL_MASK);
4574 temp |= TRANS_DP_PORT_SEL_NONE;
4575 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004576
Daniel Vetterd925c592013-06-05 13:34:04 +02004577 /* disable DPLL_SEL */
4578 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02004579 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
Daniel Vetterd925c592013-06-05 13:34:04 +02004580 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004581 }
Daniel Vetterd925c592013-06-05 13:34:04 +02004582
4583 /* disable PCH DPLL */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004584 intel_disable_shared_dpll(intel_crtc);
Daniel Vetterd925c592013-06-05 13:34:04 +02004585
4586 ironlake_fdi_pll_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004587 }
4588
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004589 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004590 intel_update_watermarks(crtc);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004591
4592 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004593 intel_fbc_update(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004594 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004595}
4596
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004597static void haswell_crtc_disable(struct drm_crtc *crtc)
4598{
4599 struct drm_device *dev = crtc->dev;
4600 struct drm_i915_private *dev_priv = dev->dev_private;
4601 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4602 struct intel_encoder *encoder;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004603 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004604
4605 if (!intel_crtc->active)
4606 return;
4607
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004608 intel_crtc_disable_planes(crtc);
Ville Syrjälädda9a662013-09-19 17:00:37 -03004609
Jani Nikula8807e552013-08-30 19:40:32 +03004610 for_each_encoder_on_crtc(dev, crtc, encoder) {
4611 intel_opregion_notify_encoder(encoder, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004612 encoder->disable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004613 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004614
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004615 drm_crtc_vblank_off(crtc);
4616 assert_vblank_disabled(crtc);
4617
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004618 if (intel_crtc->config->has_pch_encoder)
Daniel Vettera72e4c92014-09-30 10:56:47 +02004619 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4620 false);
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03004621 intel_disable_pipe(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004622
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004623 if (intel_crtc->config->dp_encoder_is_mst)
Ville Syrjäläa4bf2142014-08-18 21:27:34 +03004624 intel_ddi_set_vc_payload_alloc(crtc, false);
4625
Paulo Zanoniad80a812012-10-24 16:06:19 -02004626 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004627
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004628 if (IS_SKYLAKE(dev))
4629 skylake_pfit_disable(intel_crtc);
4630 else
4631 ironlake_pfit_disable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004632
Paulo Zanoni1f544382012-10-24 11:32:00 -02004633 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004634
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004635 if (intel_crtc->config->has_pch_encoder) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02004636 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02004637 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02004638 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004639
Imre Deak97b040a2014-06-25 22:01:50 +03004640 for_each_encoder_on_crtc(dev, crtc, encoder)
4641 if (encoder->post_disable)
4642 encoder->post_disable(encoder);
4643
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004644 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004645 intel_update_watermarks(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004646
4647 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004648 intel_fbc_update(dev);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004649 mutex_unlock(&dev->struct_mutex);
Daniel Vetterdf8ad702014-06-25 22:02:03 +03004650
4651 if (intel_crtc_to_shared_dpll(intel_crtc))
4652 intel_disable_shared_dpll(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004653}
4654
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004655static void ironlake_crtc_off(struct drm_crtc *crtc)
4656{
4657 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004658 intel_put_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004659}
4660
Paulo Zanoni6441ab52012-10-05 12:05:58 -03004661
Jesse Barnes2dd24552013-04-25 12:55:01 -07004662static void i9xx_pfit_enable(struct intel_crtc *crtc)
4663{
4664 struct drm_device *dev = crtc->base.dev;
4665 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004666 struct intel_crtc_state *pipe_config = crtc->config;
Jesse Barnes2dd24552013-04-25 12:55:01 -07004667
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02004668 if (!pipe_config->gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07004669 return;
4670
Daniel Vetterc0b03412013-05-28 12:05:54 +02004671 /*
4672 * The panel fitter should only be adjusted whilst the pipe is disabled,
4673 * according to register description and PRM.
4674 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07004675 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
4676 assert_pipe_disabled(dev_priv, crtc->pipe);
4677
Jesse Barnesb074cec2013-04-25 12:55:02 -07004678 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
4679 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02004680
4681 /* Border color in case we don't scale up to the full screen. Black by
4682 * default, change to something else for debugging. */
4683 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07004684}
4685
Dave Airlied05410f2014-06-05 13:22:59 +10004686static enum intel_display_power_domain port_to_power_domain(enum port port)
4687{
4688 switch (port) {
4689 case PORT_A:
4690 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
4691 case PORT_B:
4692 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
4693 case PORT_C:
4694 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
4695 case PORT_D:
4696 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
4697 default:
4698 WARN_ON_ONCE(1);
4699 return POWER_DOMAIN_PORT_OTHER;
4700 }
4701}
4702
Imre Deak77d22dc2014-03-05 16:20:52 +02004703#define for_each_power_domain(domain, mask) \
4704 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
4705 if ((1 << (domain)) & (mask))
4706
Imre Deak319be8a2014-03-04 19:22:57 +02004707enum intel_display_power_domain
4708intel_display_port_power_domain(struct intel_encoder *intel_encoder)
Imre Deak77d22dc2014-03-05 16:20:52 +02004709{
Imre Deak319be8a2014-03-04 19:22:57 +02004710 struct drm_device *dev = intel_encoder->base.dev;
4711 struct intel_digital_port *intel_dig_port;
4712
4713 switch (intel_encoder->type) {
4714 case INTEL_OUTPUT_UNKNOWN:
4715 /* Only DDI platforms should ever use this output type */
4716 WARN_ON_ONCE(!HAS_DDI(dev));
4717 case INTEL_OUTPUT_DISPLAYPORT:
4718 case INTEL_OUTPUT_HDMI:
4719 case INTEL_OUTPUT_EDP:
4720 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
Dave Airlied05410f2014-06-05 13:22:59 +10004721 return port_to_power_domain(intel_dig_port->port);
Dave Airlie0e32b392014-05-02 14:02:48 +10004722 case INTEL_OUTPUT_DP_MST:
4723 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
4724 return port_to_power_domain(intel_dig_port->port);
Imre Deak319be8a2014-03-04 19:22:57 +02004725 case INTEL_OUTPUT_ANALOG:
4726 return POWER_DOMAIN_PORT_CRT;
4727 case INTEL_OUTPUT_DSI:
4728 return POWER_DOMAIN_PORT_DSI;
4729 default:
4730 return POWER_DOMAIN_PORT_OTHER;
4731 }
4732}
4733
4734static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
4735{
4736 struct drm_device *dev = crtc->dev;
4737 struct intel_encoder *intel_encoder;
4738 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4739 enum pipe pipe = intel_crtc->pipe;
Imre Deak77d22dc2014-03-05 16:20:52 +02004740 unsigned long mask;
4741 enum transcoder transcoder;
4742
4743 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
4744
4745 mask = BIT(POWER_DOMAIN_PIPE(pipe));
4746 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004747 if (intel_crtc->config->pch_pfit.enabled ||
4748 intel_crtc->config->pch_pfit.force_thru)
Imre Deak77d22dc2014-03-05 16:20:52 +02004749 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
4750
Imre Deak319be8a2014-03-04 19:22:57 +02004751 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4752 mask |= BIT(intel_display_port_power_domain(intel_encoder));
4753
Imre Deak77d22dc2014-03-05 16:20:52 +02004754 return mask;
4755}
4756
Imre Deak77d22dc2014-03-05 16:20:52 +02004757static void modeset_update_crtc_power_domains(struct drm_device *dev)
4758{
4759 struct drm_i915_private *dev_priv = dev->dev_private;
4760 unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
4761 struct intel_crtc *crtc;
4762
4763 /*
4764 * First get all needed power domains, then put all unneeded, to avoid
4765 * any unnecessary toggling of the power wells.
4766 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004767 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004768 enum intel_display_power_domain domain;
4769
4770 if (!crtc->base.enabled)
4771 continue;
4772
Imre Deak319be8a2014-03-04 19:22:57 +02004773 pipe_domains[crtc->pipe] = get_crtc_power_domains(&crtc->base);
Imre Deak77d22dc2014-03-05 16:20:52 +02004774
4775 for_each_power_domain(domain, pipe_domains[crtc->pipe])
4776 intel_display_power_get(dev_priv, domain);
4777 }
4778
Ville Syrjälä50f6e502014-11-06 14:49:12 +02004779 if (dev_priv->display.modeset_global_resources)
4780 dev_priv->display.modeset_global_resources(dev);
4781
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004782 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004783 enum intel_display_power_domain domain;
4784
4785 for_each_power_domain(domain, crtc->enabled_power_domains)
4786 intel_display_power_put(dev_priv, domain);
4787
4788 crtc->enabled_power_domains = pipe_domains[crtc->pipe];
4789 }
4790
4791 intel_display_set_init_power(dev_priv, false);
4792}
4793
Ville Syrjälädfcab172014-06-13 13:37:47 +03004794/* returns HPLL frequency in kHz */
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004795static int valleyview_get_vco(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004796{
Jesse Barnes586f49d2013-11-04 16:06:59 -08004797 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
Jesse Barnes30a970c2013-11-04 13:48:12 -08004798
Jesse Barnes586f49d2013-11-04 16:06:59 -08004799 /* Obtain SKU information */
4800 mutex_lock(&dev_priv->dpio_lock);
4801 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
4802 CCK_FUSE_HPLL_FREQ_MASK;
4803 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004804
Ville Syrjälädfcab172014-06-13 13:37:47 +03004805 return vco_freq[hpll_freq] * 1000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004806}
4807
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004808static void vlv_update_cdclk(struct drm_device *dev)
4809{
4810 struct drm_i915_private *dev_priv = dev->dev_private;
4811
4812 dev_priv->vlv_cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
Ville Syrjälä43dc52c2014-10-07 17:41:20 +03004813 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004814 dev_priv->vlv_cdclk_freq);
4815
4816 /*
4817 * Program the gmbus_freq based on the cdclk frequency.
4818 * BSpec erroneously claims we should aim for 4MHz, but
4819 * in fact 1MHz is the correct frequency.
4820 */
Ville Syrjälä6be1e3d2014-10-16 20:52:31 +03004821 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->vlv_cdclk_freq, 1000));
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004822}
4823
Jesse Barnes30a970c2013-11-04 13:48:12 -08004824/* Adjust CDclk dividers to allow high res or save power if possible */
4825static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
4826{
4827 struct drm_i915_private *dev_priv = dev->dev_private;
4828 u32 val, cmd;
4829
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03004830 WARN_ON(dev_priv->display.get_display_clock_speed(dev) != dev_priv->vlv_cdclk_freq);
Imre Deakd60c4472014-03-27 17:45:10 +02004831
Ville Syrjälädfcab172014-06-13 13:37:47 +03004832 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
Jesse Barnes30a970c2013-11-04 13:48:12 -08004833 cmd = 2;
Ville Syrjälädfcab172014-06-13 13:37:47 +03004834 else if (cdclk == 266667)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004835 cmd = 1;
4836 else
4837 cmd = 0;
4838
4839 mutex_lock(&dev_priv->rps.hw_lock);
4840 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4841 val &= ~DSPFREQGUAR_MASK;
4842 val |= (cmd << DSPFREQGUAR_SHIFT);
4843 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4844 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4845 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
4846 50)) {
4847 DRM_ERROR("timed out waiting for CDclk change\n");
4848 }
4849 mutex_unlock(&dev_priv->rps.hw_lock);
4850
Ville Syrjälädfcab172014-06-13 13:37:47 +03004851 if (cdclk == 400000) {
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03004852 u32 divider;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004853
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03004854 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004855
4856 mutex_lock(&dev_priv->dpio_lock);
4857 /* adjust cdclk divider */
4858 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
Ville Syrjälä9cf33db2014-06-13 13:37:48 +03004859 val &= ~DISPLAY_FREQUENCY_VALUES;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004860 val |= divider;
4861 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
Ville Syrjäläa877e802014-06-13 13:37:52 +03004862
4863 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
4864 DISPLAY_FREQUENCY_STATUS) == (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
4865 50))
4866 DRM_ERROR("timed out waiting for CDclk change\n");
Jesse Barnes30a970c2013-11-04 13:48:12 -08004867 mutex_unlock(&dev_priv->dpio_lock);
4868 }
4869
4870 mutex_lock(&dev_priv->dpio_lock);
4871 /* adjust self-refresh exit latency value */
4872 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
4873 val &= ~0x7f;
4874
4875 /*
4876 * For high bandwidth configs, we set a higher latency in the bunit
4877 * so that the core display fetch happens in time to avoid underruns.
4878 */
Ville Syrjälädfcab172014-06-13 13:37:47 +03004879 if (cdclk == 400000)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004880 val |= 4500 / 250; /* 4.5 usec */
4881 else
4882 val |= 3000 / 250; /* 3.0 usec */
4883 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
4884 mutex_unlock(&dev_priv->dpio_lock);
4885
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004886 vlv_update_cdclk(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004887}
4888
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004889static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
4890{
4891 struct drm_i915_private *dev_priv = dev->dev_private;
4892 u32 val, cmd;
4893
4894 WARN_ON(dev_priv->display.get_display_clock_speed(dev) != dev_priv->vlv_cdclk_freq);
4895
4896 switch (cdclk) {
4897 case 400000:
4898 cmd = 3;
4899 break;
4900 case 333333:
4901 case 320000:
4902 cmd = 2;
4903 break;
4904 case 266667:
4905 cmd = 1;
4906 break;
4907 case 200000:
4908 cmd = 0;
4909 break;
4910 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01004911 MISSING_CASE(cdclk);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004912 return;
4913 }
4914
4915 mutex_lock(&dev_priv->rps.hw_lock);
4916 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4917 val &= ~DSPFREQGUAR_MASK_CHV;
4918 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
4919 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4920 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4921 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
4922 50)) {
4923 DRM_ERROR("timed out waiting for CDclk change\n");
4924 }
4925 mutex_unlock(&dev_priv->rps.hw_lock);
4926
4927 vlv_update_cdclk(dev);
4928}
4929
Jesse Barnes30a970c2013-11-04 13:48:12 -08004930static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
4931 int max_pixclk)
4932{
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03004933 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03004934
Ville Syrjäläd49a3402014-06-28 02:03:58 +03004935 /* FIXME: Punit isn't quite ready yet */
4936 if (IS_CHERRYVIEW(dev_priv->dev))
4937 return 400000;
4938
Jesse Barnes30a970c2013-11-04 13:48:12 -08004939 /*
4940 * Really only a few cases to deal with, as only 4 CDclks are supported:
4941 * 200MHz
4942 * 267MHz
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03004943 * 320/333MHz (depends on HPLL freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004944 * 400MHz
4945 * So we check to see whether we're above 90% of the lower bin and
4946 * adjust if needed.
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03004947 *
4948 * We seem to get an unstable or solid color picture at 200MHz.
4949 * Not sure what's wrong. For now use 200MHz only when all pipes
4950 * are off.
Jesse Barnes30a970c2013-11-04 13:48:12 -08004951 */
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03004952 if (max_pixclk > freq_320*9/10)
Ville Syrjälädfcab172014-06-13 13:37:47 +03004953 return 400000;
4954 else if (max_pixclk > 266667*9/10)
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03004955 return freq_320;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03004956 else if (max_pixclk > 0)
Ville Syrjälädfcab172014-06-13 13:37:47 +03004957 return 266667;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03004958 else
4959 return 200000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004960}
4961
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004962/* compute the max pixel clock for new configuration */
4963static int intel_mode_max_pixclk(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004964{
4965 struct drm_device *dev = dev_priv->dev;
4966 struct intel_crtc *intel_crtc;
4967 int max_pixclk = 0;
4968
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004969 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004970 if (intel_crtc->new_enabled)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004971 max_pixclk = max(max_pixclk,
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02004972 intel_crtc->new_config->base.adjusted_mode.crtc_clock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004973 }
4974
4975 return max_pixclk;
4976}
4977
4978static void valleyview_modeset_global_pipes(struct drm_device *dev,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004979 unsigned *prepare_pipes)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004980{
4981 struct drm_i915_private *dev_priv = dev->dev_private;
4982 struct intel_crtc *intel_crtc;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004983 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004984
Imre Deakd60c4472014-03-27 17:45:10 +02004985 if (valleyview_calc_cdclk(dev_priv, max_pixclk) ==
4986 dev_priv->vlv_cdclk_freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004987 return;
4988
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004989 /* disable/enable all currently active pipes while we change cdclk */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004990 for_each_intel_crtc(dev, intel_crtc)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004991 if (intel_crtc->base.enabled)
4992 *prepare_pipes |= (1 << intel_crtc->pipe);
4993}
4994
4995static void valleyview_modeset_global_resources(struct drm_device *dev)
4996{
4997 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004998 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004999 int req_cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
5000
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005001 if (req_cdclk != dev_priv->vlv_cdclk_freq) {
Imre Deak738c05c2014-11-19 16:25:37 +02005002 /*
5003 * FIXME: We can end up here with all power domains off, yet
5004 * with a CDCLK frequency other than the minimum. To account
5005 * for this take the PIPE-A power domain, which covers the HW
5006 * blocks needed for the following programming. This can be
5007 * removed once it's guaranteed that we get here either with
5008 * the minimum CDCLK set, or the required power domains
5009 * enabled.
5010 */
5011 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
5012
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005013 if (IS_CHERRYVIEW(dev))
5014 cherryview_set_cdclk(dev, req_cdclk);
5015 else
5016 valleyview_set_cdclk(dev, req_cdclk);
Imre Deak738c05c2014-11-19 16:25:37 +02005017
5018 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005019 }
Jesse Barnes30a970c2013-11-04 13:48:12 -08005020}
5021
Jesse Barnes89b667f2013-04-18 14:51:36 -07005022static void valleyview_crtc_enable(struct drm_crtc *crtc)
5023{
5024 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02005025 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005026 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5027 struct intel_encoder *encoder;
5028 int pipe = intel_crtc->pipe;
Jani Nikula23538ef2013-08-27 15:12:22 +03005029 bool is_dsi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07005030
5031 WARN_ON(!crtc->enabled);
5032
5033 if (intel_crtc->active)
5034 return;
5035
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005036 is_dsi = intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI);
Shobhit Kumar8525a232014-06-25 12:20:39 +05305037
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005038 if (!is_dsi) {
5039 if (IS_CHERRYVIEW(dev))
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005040 chv_prepare_pll(intel_crtc, intel_crtc->config);
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005041 else
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005042 vlv_prepare_pll(intel_crtc, intel_crtc->config);
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005043 }
Daniel Vetter5b18e572014-04-24 23:55:06 +02005044
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005045 if (intel_crtc->config->has_dp_encoder)
Daniel Vetter5b18e572014-04-24 23:55:06 +02005046 intel_dp_set_m_n(intel_crtc);
5047
5048 intel_set_pipe_timings(intel_crtc);
5049
Ville Syrjäläc14b0482014-10-16 20:52:34 +03005050 if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) {
5051 struct drm_i915_private *dev_priv = dev->dev_private;
5052
5053 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
5054 I915_WRITE(CHV_CANVAS(pipe), 0);
5055 }
5056
Daniel Vetter5b18e572014-04-24 23:55:06 +02005057 i9xx_set_pipeconf(intel_crtc);
5058
Jesse Barnes89b667f2013-04-18 14:51:36 -07005059 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07005060
Daniel Vettera72e4c92014-09-30 10:56:47 +02005061 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005062
Jesse Barnes89b667f2013-04-18 14:51:36 -07005063 for_each_encoder_on_crtc(dev, crtc, encoder)
5064 if (encoder->pre_pll_enable)
5065 encoder->pre_pll_enable(encoder);
5066
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005067 if (!is_dsi) {
5068 if (IS_CHERRYVIEW(dev))
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005069 chv_enable_pll(intel_crtc, intel_crtc->config);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005070 else
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005071 vlv_enable_pll(intel_crtc, intel_crtc->config);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005072 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07005073
5074 for_each_encoder_on_crtc(dev, crtc, encoder)
5075 if (encoder->pre_enable)
5076 encoder->pre_enable(encoder);
5077
Jesse Barnes2dd24552013-04-25 12:55:01 -07005078 i9xx_pfit_enable(intel_crtc);
5079
Ville Syrjälä63cbb072013-06-04 13:48:59 +03005080 intel_crtc_load_lut(crtc);
5081
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005082 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02005083 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02005084
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03005085 assert_vblank_disabled(crtc);
5086 drm_crtc_vblank_on(crtc);
5087
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005088 for_each_encoder_on_crtc(dev, crtc, encoder)
5089 encoder->enable(encoder);
5090
Ville Syrjälä9ab04602014-05-08 19:23:14 +03005091 intel_crtc_enable_planes(crtc);
Daniel Vetterd40d9182014-05-21 11:45:40 +02005092
Ville Syrjälä56b80e12014-05-16 19:40:22 +03005093 /* Underruns don't raise interrupts, so check manually. */
Daniel Vettera72e4c92014-09-30 10:56:47 +02005094 i9xx_check_fifo_underruns(dev_priv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005095}
5096
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005097static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
5098{
5099 struct drm_device *dev = crtc->base.dev;
5100 struct drm_i915_private *dev_priv = dev->dev_private;
5101
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005102 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
5103 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005104}
5105
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005106static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005107{
5108 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02005109 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08005110 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005111 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08005112 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08005113
Daniel Vetter08a48462012-07-02 11:43:47 +02005114 WARN_ON(!crtc->enabled);
5115
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005116 if (intel_crtc->active)
5117 return;
5118
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005119 i9xx_set_pll_dividers(intel_crtc);
5120
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005121 if (intel_crtc->config->has_dp_encoder)
Daniel Vetter5b18e572014-04-24 23:55:06 +02005122 intel_dp_set_m_n(intel_crtc);
5123
5124 intel_set_pipe_timings(intel_crtc);
5125
Daniel Vetter5b18e572014-04-24 23:55:06 +02005126 i9xx_set_pipeconf(intel_crtc);
5127
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005128 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01005129
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005130 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005131 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005132
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02005133 for_each_encoder_on_crtc(dev, crtc, encoder)
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02005134 if (encoder->pre_enable)
5135 encoder->pre_enable(encoder);
5136
Daniel Vetterf6736a12013-06-05 13:34:30 +02005137 i9xx_enable_pll(intel_crtc);
5138
Jesse Barnes2dd24552013-04-25 12:55:01 -07005139 i9xx_pfit_enable(intel_crtc);
5140
Ville Syrjälä63cbb072013-06-04 13:48:59 +03005141 intel_crtc_load_lut(crtc);
5142
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005143 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02005144 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02005145
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03005146 assert_vblank_disabled(crtc);
5147 drm_crtc_vblank_on(crtc);
5148
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005149 for_each_encoder_on_crtc(dev, crtc, encoder)
5150 encoder->enable(encoder);
5151
Ville Syrjälä9ab04602014-05-08 19:23:14 +03005152 intel_crtc_enable_planes(crtc);
Daniel Vetterd40d9182014-05-21 11:45:40 +02005153
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005154 /*
5155 * Gen2 reports pipe underruns whenever all planes are disabled.
5156 * So don't enable underrun reporting before at least some planes
5157 * are enabled.
5158 * FIXME: Need to fix the logic to work when we turn off all planes
5159 * but leave the pipe running.
5160 */
5161 if (IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005162 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005163
Ville Syrjälä56b80e12014-05-16 19:40:22 +03005164 /* Underruns don't raise interrupts, so check manually. */
Daniel Vettera72e4c92014-09-30 10:56:47 +02005165 i9xx_check_fifo_underruns(dev_priv);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005166}
5167
Daniel Vetter87476d62013-04-11 16:29:06 +02005168static void i9xx_pfit_disable(struct intel_crtc *crtc)
5169{
5170 struct drm_device *dev = crtc->base.dev;
5171 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02005172
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005173 if (!crtc->config->gmch_pfit.control)
Daniel Vetter328d8e82013-05-08 10:36:31 +02005174 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02005175
5176 assert_pipe_disabled(dev_priv, crtc->pipe);
5177
Daniel Vetter328d8e82013-05-08 10:36:31 +02005178 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
5179 I915_READ(PFIT_CONTROL));
5180 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02005181}
5182
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005183static void i9xx_crtc_disable(struct drm_crtc *crtc)
5184{
5185 struct drm_device *dev = crtc->dev;
5186 struct drm_i915_private *dev_priv = dev->dev_private;
5187 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005188 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005189 int pipe = intel_crtc->pipe;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005190
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005191 if (!intel_crtc->active)
5192 return;
5193
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005194 /*
5195 * Gen2 reports pipe underruns whenever all planes are disabled.
5196 * So diasble underrun reporting before all the planes get disabled.
5197 * FIXME: Need to fix the logic to work when we turn off all planes
5198 * but leave the pipe running.
5199 */
5200 if (IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005201 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005202
Imre Deak564ed192014-06-13 14:54:21 +03005203 /*
5204 * Vblank time updates from the shadow to live plane control register
5205 * are blocked if the memory self-refresh mode is active at that
5206 * moment. So to make sure the plane gets truly disabled, disable
5207 * first the self-refresh mode. The self-refresh enable bit in turn
5208 * will be checked/applied by the HW only at the next frame start
5209 * event which is after the vblank start event, so we need to have a
5210 * wait-for-vblank between disabling the plane and the pipe.
5211 */
5212 intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03005213 intel_crtc_disable_planes(crtc);
5214
Ville Syrjälä6304cd92014-04-25 13:30:12 +03005215 /*
5216 * On gen2 planes are double buffered but the pipe isn't, so we must
5217 * wait for planes to fully turn off before disabling the pipe.
Imre Deak564ed192014-06-13 14:54:21 +03005218 * We also need to wait on all gmch platforms because of the
5219 * self-refresh mode constraint explained above.
Ville Syrjälä6304cd92014-04-25 13:30:12 +03005220 */
Imre Deak564ed192014-06-13 14:54:21 +03005221 intel_wait_for_vblank(dev, pipe);
Ville Syrjälä6304cd92014-04-25 13:30:12 +03005222
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03005223 for_each_encoder_on_crtc(dev, crtc, encoder)
5224 encoder->disable(encoder);
5225
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005226 drm_crtc_vblank_off(crtc);
5227 assert_vblank_disabled(crtc);
5228
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03005229 intel_disable_pipe(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02005230
Daniel Vetter87476d62013-04-11 16:29:06 +02005231 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02005232
Jesse Barnes89b667f2013-04-18 14:51:36 -07005233 for_each_encoder_on_crtc(dev, crtc, encoder)
5234 if (encoder->post_disable)
5235 encoder->post_disable(encoder);
5236
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005237 if (!intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI)) {
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03005238 if (IS_CHERRYVIEW(dev))
5239 chv_disable_pll(dev_priv, pipe);
5240 else if (IS_VALLEYVIEW(dev))
5241 vlv_disable_pll(dev_priv, pipe);
5242 else
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03005243 i9xx_disable_pll(intel_crtc);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03005244 }
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005245
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005246 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005247 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005248
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005249 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03005250 intel_update_watermarks(crtc);
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005251
Daniel Vetterefa96242014-04-24 23:55:02 +02005252 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02005253 intel_fbc_update(dev);
Daniel Vetterefa96242014-04-24 23:55:02 +02005254 mutex_unlock(&dev->struct_mutex);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005255}
5256
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005257static void i9xx_crtc_off(struct drm_crtc *crtc)
5258{
5259}
5260
Borun Fub04c5bd2014-07-12 10:02:27 +05305261/* Master function to enable/disable CRTC and corresponding power wells */
5262void intel_crtc_control(struct drm_crtc *crtc, bool enable)
Chris Wilsoncdd59982010-09-08 16:30:16 +01005263{
Chris Wilsoncdd59982010-09-08 16:30:16 +01005264 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005265 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005266 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005267 enum intel_display_power_domain domain;
5268 unsigned long domains;
Daniel Vetter976f8a22012-07-08 22:34:21 +02005269
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005270 if (enable) {
5271 if (!intel_crtc->active) {
Daniel Vettere1e9fb82014-06-25 22:02:04 +03005272 domains = get_crtc_power_domains(crtc);
5273 for_each_power_domain(domain, domains)
5274 intel_display_power_get(dev_priv, domain);
5275 intel_crtc->enabled_power_domains = domains;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005276
5277 dev_priv->display.crtc_enable(crtc);
5278 }
5279 } else {
5280 if (intel_crtc->active) {
5281 dev_priv->display.crtc_disable(crtc);
5282
Daniel Vettere1e9fb82014-06-25 22:02:04 +03005283 domains = intel_crtc->enabled_power_domains;
5284 for_each_power_domain(domain, domains)
5285 intel_display_power_put(dev_priv, domain);
5286 intel_crtc->enabled_power_domains = 0;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005287 }
5288 }
Borun Fub04c5bd2014-07-12 10:02:27 +05305289}
5290
5291/**
5292 * Sets the power management mode of the pipe and plane.
5293 */
5294void intel_crtc_update_dpms(struct drm_crtc *crtc)
5295{
5296 struct drm_device *dev = crtc->dev;
5297 struct intel_encoder *intel_encoder;
5298 bool enable = false;
5299
5300 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
5301 enable |= intel_encoder->connectors_active;
5302
5303 intel_crtc_control(crtc, enable);
Daniel Vetter976f8a22012-07-08 22:34:21 +02005304}
5305
Daniel Vetter976f8a22012-07-08 22:34:21 +02005306static void intel_crtc_disable(struct drm_crtc *crtc)
5307{
5308 struct drm_device *dev = crtc->dev;
5309 struct drm_connector *connector;
5310 struct drm_i915_private *dev_priv = dev->dev_private;
5311
5312 /* crtc should still be enabled when we disable it. */
5313 WARN_ON(!crtc->enabled);
5314
5315 dev_priv->display.crtc_disable(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005316 dev_priv->display.off(crtc);
5317
Gustavo Padovan455a6802014-12-01 15:40:11 -08005318 crtc->primary->funcs->disable_plane(crtc->primary);
Daniel Vetter976f8a22012-07-08 22:34:21 +02005319
5320 /* Update computed state. */
5321 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
5322 if (!connector->encoder || !connector->encoder->crtc)
5323 continue;
5324
5325 if (connector->encoder->crtc != crtc)
5326 continue;
5327
5328 connector->dpms = DRM_MODE_DPMS_OFF;
5329 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01005330 }
5331}
5332
Chris Wilsonea5b2132010-08-04 13:50:23 +01005333void intel_encoder_destroy(struct drm_encoder *encoder)
5334{
Chris Wilson4ef69c72010-09-09 15:14:28 +01005335 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01005336
Chris Wilsonea5b2132010-08-04 13:50:23 +01005337 drm_encoder_cleanup(encoder);
5338 kfree(intel_encoder);
5339}
5340
Damien Lespiau92373292013-08-08 22:28:57 +01005341/* Simple dpms helper for encoders with just one connector, no cloning and only
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005342 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
5343 * state of the entire output pipe. */
Damien Lespiau92373292013-08-08 22:28:57 +01005344static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005345{
5346 if (mode == DRM_MODE_DPMS_ON) {
5347 encoder->connectors_active = true;
5348
Daniel Vetterb2cabb02012-07-01 22:42:24 +02005349 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005350 } else {
5351 encoder->connectors_active = false;
5352
Daniel Vetterb2cabb02012-07-01 22:42:24 +02005353 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005354 }
5355}
5356
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005357/* Cross check the actual hw state with our own modeset state tracking (and it's
5358 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02005359static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005360{
5361 if (connector->get_hw_state(connector)) {
5362 struct intel_encoder *encoder = connector->encoder;
5363 struct drm_crtc *crtc;
5364 bool encoder_enabled;
5365 enum pipe pipe;
5366
5367 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
5368 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03005369 connector->base.name);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005370
Dave Airlie0e32b392014-05-02 14:02:48 +10005371 /* there is no real hw state for MST connectors */
5372 if (connector->mst_port)
5373 return;
5374
Rob Clarke2c719b2014-12-15 13:56:32 -05005375 I915_STATE_WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005376 "wrong connector dpms state\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05005377 I915_STATE_WARN(connector->base.encoder != &encoder->base,
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005378 "active connector not linked to encoder\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005379
Dave Airlie36cd7442014-05-02 13:44:18 +10005380 if (encoder) {
Rob Clarke2c719b2014-12-15 13:56:32 -05005381 I915_STATE_WARN(!encoder->connectors_active,
Dave Airlie36cd7442014-05-02 13:44:18 +10005382 "encoder->connectors_active not set\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005383
Dave Airlie36cd7442014-05-02 13:44:18 +10005384 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
Rob Clarke2c719b2014-12-15 13:56:32 -05005385 I915_STATE_WARN(!encoder_enabled, "encoder not enabled\n");
5386 if (I915_STATE_WARN_ON(!encoder->base.crtc))
Dave Airlie36cd7442014-05-02 13:44:18 +10005387 return;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005388
Dave Airlie36cd7442014-05-02 13:44:18 +10005389 crtc = encoder->base.crtc;
5390
Rob Clarke2c719b2014-12-15 13:56:32 -05005391 I915_STATE_WARN(!crtc->enabled, "crtc not enabled\n");
5392 I915_STATE_WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
5393 I915_STATE_WARN(pipe != to_intel_crtc(crtc)->pipe,
Dave Airlie36cd7442014-05-02 13:44:18 +10005394 "encoder active on the wrong pipe\n");
5395 }
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005396 }
5397}
5398
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005399/* Even simpler default implementation, if there's really no special case to
5400 * consider. */
5401void intel_connector_dpms(struct drm_connector *connector, int mode)
5402{
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005403 /* All the simple cases only support two dpms states. */
5404 if (mode != DRM_MODE_DPMS_ON)
5405 mode = DRM_MODE_DPMS_OFF;
5406
5407 if (mode == connector->dpms)
5408 return;
5409
5410 connector->dpms = mode;
5411
5412 /* Only need to change hw state when actually enabled */
Chris Wilsonc9976dc2013-09-29 19:15:07 +01005413 if (connector->encoder)
5414 intel_encoder_dpms(to_intel_encoder(connector->encoder), mode);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005415
Daniel Vetterb9805142012-08-31 17:37:33 +02005416 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005417}
5418
Daniel Vetterf0947c32012-07-02 13:10:34 +02005419/* Simple connector->get_hw_state implementation for encoders that support only
5420 * one connector and no cloning and hence the encoder state determines the state
5421 * of the connector. */
5422bool intel_connector_get_hw_state(struct intel_connector *connector)
5423{
Daniel Vetter24929352012-07-02 20:28:59 +02005424 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02005425 struct intel_encoder *encoder = connector->encoder;
5426
5427 return encoder->get_hw_state(encoder, &pipe);
5428}
5429
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005430static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005431 struct intel_crtc_state *pipe_config)
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005432{
5433 struct drm_i915_private *dev_priv = dev->dev_private;
5434 struct intel_crtc *pipe_B_crtc =
5435 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
5436
5437 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
5438 pipe_name(pipe), pipe_config->fdi_lanes);
5439 if (pipe_config->fdi_lanes > 4) {
5440 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
5441 pipe_name(pipe), pipe_config->fdi_lanes);
5442 return false;
5443 }
5444
Paulo Zanonibafb6552013-11-02 21:07:44 -07005445 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005446 if (pipe_config->fdi_lanes > 2) {
5447 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
5448 pipe_config->fdi_lanes);
5449 return false;
5450 } else {
5451 return true;
5452 }
5453 }
5454
5455 if (INTEL_INFO(dev)->num_pipes == 2)
5456 return true;
5457
5458 /* Ivybridge 3 pipe is really complicated */
5459 switch (pipe) {
5460 case PIPE_A:
5461 return true;
5462 case PIPE_B:
5463 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
5464 pipe_config->fdi_lanes > 2) {
5465 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5466 pipe_name(pipe), pipe_config->fdi_lanes);
5467 return false;
5468 }
5469 return true;
5470 case PIPE_C:
Daniel Vetter1e833f42013-02-19 22:31:57 +01005471 if (!pipe_has_enabled_pch(pipe_B_crtc) ||
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005472 pipe_B_crtc->config->fdi_lanes <= 2) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005473 if (pipe_config->fdi_lanes > 2) {
5474 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5475 pipe_name(pipe), pipe_config->fdi_lanes);
5476 return false;
5477 }
5478 } else {
5479 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
5480 return false;
5481 }
5482 return true;
5483 default:
5484 BUG();
5485 }
5486}
5487
Daniel Vettere29c22c2013-02-21 00:00:16 +01005488#define RETRY 1
5489static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005490 struct intel_crtc_state *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02005491{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005492 struct drm_device *dev = intel_crtc->base.dev;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02005493 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Daniel Vetterff9a6752013-06-01 17:16:21 +02005494 int lane, link_bw, fdi_dotclock;
Daniel Vettere29c22c2013-02-21 00:00:16 +01005495 bool setup_ok, needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005496
Daniel Vettere29c22c2013-02-21 00:00:16 +01005497retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02005498 /* FDI is a binary signal running at ~2.7GHz, encoding
5499 * each output octet as 10 bits. The actual frequency
5500 * is stored as a divider into a 100MHz clock, and the
5501 * mode pixel clock is stored in units of 1KHz.
5502 * Hence the bw of each lane in terms of the mode signal
5503 * is:
5504 */
5505 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
5506
Damien Lespiau241bfc32013-09-25 16:45:37 +01005507 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005508
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005509 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005510 pipe_config->pipe_bpp);
5511
5512 pipe_config->fdi_lanes = lane;
5513
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005514 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005515 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005516
Daniel Vettere29c22c2013-02-21 00:00:16 +01005517 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
5518 intel_crtc->pipe, pipe_config);
5519 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
5520 pipe_config->pipe_bpp -= 2*3;
5521 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
5522 pipe_config->pipe_bpp);
5523 needs_recompute = true;
5524 pipe_config->bw_constrained = true;
5525
5526 goto retry;
5527 }
5528
5529 if (needs_recompute)
5530 return RETRY;
5531
5532 return setup_ok ? 0 : -EINVAL;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005533}
5534
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005535static void hsw_compute_ips_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005536 struct intel_crtc_state *pipe_config)
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005537{
Jani Nikulad330a952014-01-21 11:24:25 +02005538 pipe_config->ips_enabled = i915.enable_ips &&
Paulo Zanoni3c4ca582013-05-31 16:33:23 -03005539 hsw_crtc_supports_ips(crtc) &&
Jesse Barnesb6dfdc92013-07-25 10:06:50 -07005540 pipe_config->pipe_bpp <= 24;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005541}
5542
Daniel Vettera43f6e02013-06-07 23:10:32 +02005543static int intel_crtc_compute_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005544 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08005545{
Daniel Vettera43f6e02013-06-07 23:10:32 +02005546 struct drm_device *dev = crtc->base.dev;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02005547 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02005548 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Chris Wilson89749352010-09-12 18:25:19 +01005549
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005550 /* FIXME should check pixel clock limits on all platforms */
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005551 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005552 int clock_limit =
5553 dev_priv->display.get_display_clock_speed(dev);
5554
5555 /*
5556 * Enable pixel doubling when the dot clock
5557 * is > 90% of the (display) core speed.
5558 *
Ville Syrjäläb397c962013-09-04 18:30:06 +03005559 * GDG double wide on either pipe,
5560 * otherwise pipe A only.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005561 */
Ville Syrjäläb397c962013-09-04 18:30:06 +03005562 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
Damien Lespiau241bfc32013-09-25 16:45:37 +01005563 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005564 clock_limit *= 2;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005565 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005566 }
5567
Damien Lespiau241bfc32013-09-25 16:45:37 +01005568 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005569 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08005570 }
Chris Wilson89749352010-09-12 18:25:19 +01005571
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03005572 /*
5573 * Pipe horizontal size must be even in:
5574 * - DVO ganged mode
5575 * - LVDS dual channel mode
5576 * - Double wide pipe
5577 */
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005578 if ((intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03005579 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
5580 pipe_config->pipe_src_w &= ~1;
5581
Damien Lespiau8693a822013-05-03 18:48:11 +01005582 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
5583 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03005584 */
5585 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
5586 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005587 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03005588
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005589 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005590 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005591 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005592 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
5593 * for lvds. */
5594 pipe_config->pipe_bpp = 8*3;
5595 }
5596
Damien Lespiauf5adf942013-06-24 18:29:34 +01005597 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02005598 hsw_compute_ips_config(crtc, pipe_config);
5599
Daniel Vetter877d48d2013-04-19 11:24:43 +02005600 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02005601 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02005602
Daniel Vettere29c22c2013-02-21 00:00:16 +01005603 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005604}
5605
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07005606static int valleyview_get_display_clock_speed(struct drm_device *dev)
5607{
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005608 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005609 u32 val;
5610 int divider;
5611
Ville Syrjäläd49a3402014-06-28 02:03:58 +03005612 /* FIXME: Punit isn't quite ready yet */
5613 if (IS_CHERRYVIEW(dev))
5614 return 400000;
5615
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005616 if (dev_priv->hpll_freq == 0)
5617 dev_priv->hpll_freq = valleyview_get_vco(dev_priv);
5618
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005619 mutex_lock(&dev_priv->dpio_lock);
5620 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
5621 mutex_unlock(&dev_priv->dpio_lock);
5622
5623 divider = val & DISPLAY_FREQUENCY_VALUES;
5624
Ville Syrjälä7d007f42014-06-13 13:37:53 +03005625 WARN((val & DISPLAY_FREQUENCY_STATUS) !=
5626 (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
5627 "cdclk change in progress\n");
5628
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005629 return DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, divider + 1);
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07005630}
5631
Jesse Barnese70236a2009-09-21 10:42:27 -07005632static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08005633{
Jesse Barnese70236a2009-09-21 10:42:27 -07005634 return 400000;
5635}
Jesse Barnes79e53942008-11-07 14:24:08 -08005636
Jesse Barnese70236a2009-09-21 10:42:27 -07005637static int i915_get_display_clock_speed(struct drm_device *dev)
5638{
5639 return 333000;
5640}
Jesse Barnes79e53942008-11-07 14:24:08 -08005641
Jesse Barnese70236a2009-09-21 10:42:27 -07005642static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
5643{
5644 return 200000;
5645}
Jesse Barnes79e53942008-11-07 14:24:08 -08005646
Daniel Vetter257a7ff2013-07-26 08:35:42 +02005647static int pnv_get_display_clock_speed(struct drm_device *dev)
5648{
5649 u16 gcfgc = 0;
5650
5651 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5652
5653 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5654 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
5655 return 267000;
5656 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
5657 return 333000;
5658 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
5659 return 444000;
5660 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
5661 return 200000;
5662 default:
5663 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
5664 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
5665 return 133000;
5666 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
5667 return 167000;
5668 }
5669}
5670
Jesse Barnese70236a2009-09-21 10:42:27 -07005671static int i915gm_get_display_clock_speed(struct drm_device *dev)
5672{
5673 u16 gcfgc = 0;
5674
5675 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5676
5677 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08005678 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07005679 else {
5680 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5681 case GC_DISPLAY_CLOCK_333_MHZ:
5682 return 333000;
5683 default:
5684 case GC_DISPLAY_CLOCK_190_200_MHZ:
5685 return 190000;
5686 }
5687 }
5688}
Jesse Barnes79e53942008-11-07 14:24:08 -08005689
Jesse Barnese70236a2009-09-21 10:42:27 -07005690static int i865_get_display_clock_speed(struct drm_device *dev)
5691{
5692 return 266000;
5693}
5694
5695static int i855_get_display_clock_speed(struct drm_device *dev)
5696{
5697 u16 hpllcc = 0;
5698 /* Assume that the hardware is in the high speed state. This
5699 * should be the default.
5700 */
5701 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
5702 case GC_CLOCK_133_200:
5703 case GC_CLOCK_100_200:
5704 return 200000;
5705 case GC_CLOCK_166_250:
5706 return 250000;
5707 case GC_CLOCK_100_133:
5708 return 133000;
5709 }
5710
5711 /* Shouldn't happen */
5712 return 0;
5713}
5714
5715static int i830_get_display_clock_speed(struct drm_device *dev)
5716{
5717 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08005718}
5719
Zhenyu Wang2c072452009-06-05 15:38:42 +08005720static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005721intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005722{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005723 while (*num > DATA_LINK_M_N_MASK ||
5724 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08005725 *num >>= 1;
5726 *den >>= 1;
5727 }
5728}
5729
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005730static void compute_m_n(unsigned int m, unsigned int n,
5731 uint32_t *ret_m, uint32_t *ret_n)
5732{
5733 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
5734 *ret_m = div_u64((uint64_t) m * *ret_n, n);
5735 intel_reduce_m_n_ratio(ret_m, ret_n);
5736}
5737
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005738void
5739intel_link_compute_m_n(int bits_per_pixel, int nlanes,
5740 int pixel_clock, int link_clock,
5741 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005742{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005743 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005744
5745 compute_m_n(bits_per_pixel * pixel_clock,
5746 link_clock * nlanes * 8,
5747 &m_n->gmch_m, &m_n->gmch_n);
5748
5749 compute_m_n(pixel_clock, link_clock,
5750 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005751}
5752
Chris Wilsona7615032011-01-12 17:04:08 +00005753static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
5754{
Jani Nikulad330a952014-01-21 11:24:25 +02005755 if (i915.panel_use_ssc >= 0)
5756 return i915.panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005757 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07005758 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00005759}
5760
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005761static int i9xx_get_refclk(struct intel_crtc *crtc, int num_connectors)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005762{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005763 struct drm_device *dev = crtc->base.dev;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005764 struct drm_i915_private *dev_priv = dev->dev_private;
5765 int refclk;
5766
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005767 if (IS_VALLEYVIEW(dev)) {
Daniel Vetter9a0ea492013-09-16 11:29:34 +02005768 refclk = 100000;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02005769 } else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005770 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02005771 refclk = dev_priv->vbt.lvds_ssc_freq;
5772 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005773 } else if (!IS_GEN2(dev)) {
5774 refclk = 96000;
5775 } else {
5776 refclk = 48000;
5777 }
5778
5779 return refclk;
5780}
5781
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005782static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005783{
Daniel Vetter7df00d72013-05-21 21:54:55 +02005784 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005785}
Daniel Vetterf47709a2013-03-28 10:42:02 +01005786
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005787static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
5788{
5789 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005790}
5791
Daniel Vetterf47709a2013-03-28 10:42:02 +01005792static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005793 struct intel_crtc_state *crtc_state,
Jesse Barnesa7516a02011-12-15 12:30:37 -08005794 intel_clock_t *reduced_clock)
5795{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005796 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005797 u32 fp, fp2 = 0;
5798
5799 if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005800 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005801 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005802 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005803 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005804 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005805 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005806 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005807 }
5808
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005809 crtc_state->dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005810
Daniel Vetterf47709a2013-03-28 10:42:02 +01005811 crtc->lowfreq_avail = false;
Bob Paauwee1f234b2014-11-11 09:29:18 -08005812 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Jani Nikulad330a952014-01-21 11:24:25 +02005813 reduced_clock && i915.powersave) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005814 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005815 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005816 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005817 crtc_state->dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005818 }
5819}
5820
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005821static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
5822 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07005823{
5824 u32 reg_val;
5825
5826 /*
5827 * PLLB opamp always calibrates to max value of 0x3f, force enable it
5828 * and set it to a reasonable value instead.
5829 */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005830 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005831 reg_val &= 0xffffff00;
5832 reg_val |= 0x00000030;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005833 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005834
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005835 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005836 reg_val &= 0x8cffffff;
5837 reg_val = 0x8c000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005838 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005839
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005840 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005841 reg_val &= 0xffffff00;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005842 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005843
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005844 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005845 reg_val &= 0x00ffffff;
5846 reg_val |= 0xb0000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005847 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005848}
5849
Daniel Vetterb5518422013-05-03 11:49:48 +02005850static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
5851 struct intel_link_m_n *m_n)
5852{
5853 struct drm_device *dev = crtc->base.dev;
5854 struct drm_i915_private *dev_priv = dev->dev_private;
5855 int pipe = crtc->pipe;
5856
Daniel Vettere3b95f12013-05-03 11:49:49 +02005857 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5858 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
5859 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
5860 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005861}
5862
5863static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -07005864 struct intel_link_m_n *m_n,
5865 struct intel_link_m_n *m2_n2)
Daniel Vetterb5518422013-05-03 11:49:48 +02005866{
5867 struct drm_device *dev = crtc->base.dev;
5868 struct drm_i915_private *dev_priv = dev->dev_private;
5869 int pipe = crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005870 enum transcoder transcoder = crtc->config->cpu_transcoder;
Daniel Vetterb5518422013-05-03 11:49:48 +02005871
5872 if (INTEL_INFO(dev)->gen >= 5) {
5873 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
5874 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
5875 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
5876 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
Vandana Kannanf769cd22014-08-05 07:51:22 -07005877 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
5878 * for gen < 8) and if DRRS is supported (to make sure the
5879 * registers are not unnecessarily accessed).
5880 */
5881 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005882 crtc->config->has_drrs) {
Vandana Kannanf769cd22014-08-05 07:51:22 -07005883 I915_WRITE(PIPE_DATA_M2(transcoder),
5884 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
5885 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
5886 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
5887 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
5888 }
Daniel Vetterb5518422013-05-03 11:49:48 +02005889 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02005890 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5891 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
5892 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
5893 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005894 }
5895}
5896
Vandana Kannanf769cd22014-08-05 07:51:22 -07005897void intel_dp_set_m_n(struct intel_crtc *crtc)
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005898{
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005899 if (crtc->config->has_pch_encoder)
5900 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005901 else
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005902 intel_cpu_transcoder_set_m_n(crtc, &crtc->config->dp_m_n,
5903 &crtc->config->dp_m2_n2);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005904}
5905
Ville Syrjäläd288f652014-10-28 13:20:22 +02005906static void vlv_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005907 struct intel_crtc_state *pipe_config)
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005908{
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005909 u32 dpll, dpll_md;
5910
5911 /*
5912 * Enable DPIO clock input. We should never disable the reference
5913 * clock for pipe B, since VGA hotplug / manual detection depends
5914 * on it.
5915 */
5916 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
5917 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
5918 /* We should never disable this, set it here for state tracking */
5919 if (crtc->pipe == PIPE_B)
5920 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
5921 dpll |= DPLL_VCO_ENABLE;
Ville Syrjäläd288f652014-10-28 13:20:22 +02005922 pipe_config->dpll_hw_state.dpll = dpll;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005923
Ville Syrjäläd288f652014-10-28 13:20:22 +02005924 dpll_md = (pipe_config->pixel_multiplier - 1)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005925 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjäläd288f652014-10-28 13:20:22 +02005926 pipe_config->dpll_hw_state.dpll_md = dpll_md;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005927}
5928
Ville Syrjäläd288f652014-10-28 13:20:22 +02005929static void vlv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005930 const struct intel_crtc_state *pipe_config)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005931{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005932 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005933 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005934 int pipe = crtc->pipe;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005935 u32 mdiv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005936 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005937 u32 coreclk, reg_val;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005938
Daniel Vetter09153002012-12-12 14:06:44 +01005939 mutex_lock(&dev_priv->dpio_lock);
5940
Ville Syrjäläd288f652014-10-28 13:20:22 +02005941 bestn = pipe_config->dpll.n;
5942 bestm1 = pipe_config->dpll.m1;
5943 bestm2 = pipe_config->dpll.m2;
5944 bestp1 = pipe_config->dpll.p1;
5945 bestp2 = pipe_config->dpll.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005946
Jesse Barnes89b667f2013-04-18 14:51:36 -07005947 /* See eDP HDMI DPIO driver vbios notes doc */
5948
5949 /* PLL B needs special handling */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005950 if (pipe == PIPE_B)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005951 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005952
5953 /* Set up Tx target for periodic Rcomp update */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005954 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005955
5956 /* Disable target IRef on PLL */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005957 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005958 reg_val &= 0x00ffffff;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005959 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005960
5961 /* Disable fast lock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005962 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005963
5964 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005965 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
5966 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
5967 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005968 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07005969
5970 /*
5971 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
5972 * but we don't support that).
5973 * Note: don't use the DAC post divider as it seems unstable.
5974 */
5975 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005976 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005977
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005978 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005979 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005980
Jesse Barnes89b667f2013-04-18 14:51:36 -07005981 /* Set HBR and RBR LPF coefficients */
Ville Syrjäläd288f652014-10-28 13:20:22 +02005982 if (pipe_config->port_clock == 162000 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005983 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG) ||
5984 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005985 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Ville Syrjälä885b01202013-07-05 19:21:38 +03005986 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005987 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005988 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005989 0x00d0000f);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005990
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02005991 if (pipe_config->has_dp_encoder) {
Jesse Barnes89b667f2013-04-18 14:51:36 -07005992 /* Use SSC source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005993 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005994 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005995 0x0df40000);
5996 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005997 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005998 0x0df70000);
5999 } else { /* HDMI or VGA */
6000 /* Use bend source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006001 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006002 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006003 0x0df70000);
6004 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006005 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006006 0x0df40000);
6007 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006008
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006009 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07006010 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006011 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
6012 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
Jesse Barnes89b667f2013-04-18 14:51:36 -07006013 coreclk |= 0x01000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006014 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006015
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006016 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
Daniel Vetter09153002012-12-12 14:06:44 +01006017 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006018}
6019
Ville Syrjäläd288f652014-10-28 13:20:22 +02006020static void chv_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006021 struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006022{
Ville Syrjäläd288f652014-10-28 13:20:22 +02006023 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLOCK_CHV |
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006024 DPLL_REFA_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
6025 DPLL_VCO_ENABLE;
6026 if (crtc->pipe != PIPE_A)
Ville Syrjäläd288f652014-10-28 13:20:22 +02006027 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006028
Ville Syrjäläd288f652014-10-28 13:20:22 +02006029 pipe_config->dpll_hw_state.dpll_md =
6030 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006031}
6032
Ville Syrjäläd288f652014-10-28 13:20:22 +02006033static void chv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006034 const struct intel_crtc_state *pipe_config)
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006035{
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006036 struct drm_device *dev = crtc->base.dev;
6037 struct drm_i915_private *dev_priv = dev->dev_private;
6038 int pipe = crtc->pipe;
6039 int dpll_reg = DPLL(crtc->pipe);
6040 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Ville Syrjälä580d3812014-04-09 13:29:00 +03006041 u32 loopfilter, intcoeff;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006042 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
6043 int refclk;
6044
Ville Syrjäläd288f652014-10-28 13:20:22 +02006045 bestn = pipe_config->dpll.n;
6046 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
6047 bestm1 = pipe_config->dpll.m1;
6048 bestm2 = pipe_config->dpll.m2 >> 22;
6049 bestp1 = pipe_config->dpll.p1;
6050 bestp2 = pipe_config->dpll.p2;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006051
6052 /*
6053 * Enable Refclk and SSC
6054 */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03006055 I915_WRITE(dpll_reg,
Ville Syrjäläd288f652014-10-28 13:20:22 +02006056 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03006057
6058 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006059
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006060 /* p1 and p2 divider */
6061 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
6062 5 << DPIO_CHV_S1_DIV_SHIFT |
6063 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
6064 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
6065 1 << DPIO_CHV_K_DIV_SHIFT);
6066
6067 /* Feedback post-divider - m2 */
6068 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
6069
6070 /* Feedback refclk divider - n and m1 */
6071 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
6072 DPIO_CHV_M1_DIV_BY_2 |
6073 1 << DPIO_CHV_N_DIV_SHIFT);
6074
6075 /* M2 fraction division */
6076 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
6077
6078 /* M2 fraction division enable */
6079 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port),
6080 DPIO_CHV_FRAC_DIV_EN |
6081 (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT));
6082
6083 /* Loop filter */
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006084 refclk = i9xx_get_refclk(crtc, 0);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006085 loopfilter = 5 << DPIO_CHV_PROP_COEFF_SHIFT |
6086 2 << DPIO_CHV_GAIN_CTRL_SHIFT;
6087 if (refclk == 100000)
6088 intcoeff = 11;
6089 else if (refclk == 38400)
6090 intcoeff = 10;
6091 else
6092 intcoeff = 9;
6093 loopfilter |= intcoeff << DPIO_CHV_INT_COEFF_SHIFT;
6094 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
6095
6096 /* AFC Recal */
6097 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
6098 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
6099 DPIO_AFC_RECAL);
6100
6101 mutex_unlock(&dev_priv->dpio_lock);
6102}
6103
Ville Syrjäläd288f652014-10-28 13:20:22 +02006104/**
6105 * vlv_force_pll_on - forcibly enable just the PLL
6106 * @dev_priv: i915 private structure
6107 * @pipe: pipe PLL to enable
6108 * @dpll: PLL configuration
6109 *
6110 * Enable the PLL for @pipe using the supplied @dpll config. To be used
6111 * in cases where we need the PLL enabled even when @pipe is not going to
6112 * be enabled.
6113 */
6114void vlv_force_pll_on(struct drm_device *dev, enum pipe pipe,
6115 const struct dpll *dpll)
6116{
6117 struct intel_crtc *crtc =
6118 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006119 struct intel_crtc_state pipe_config = {
Ville Syrjäläd288f652014-10-28 13:20:22 +02006120 .pixel_multiplier = 1,
6121 .dpll = *dpll,
6122 };
6123
6124 if (IS_CHERRYVIEW(dev)) {
6125 chv_update_pll(crtc, &pipe_config);
6126 chv_prepare_pll(crtc, &pipe_config);
6127 chv_enable_pll(crtc, &pipe_config);
6128 } else {
6129 vlv_update_pll(crtc, &pipe_config);
6130 vlv_prepare_pll(crtc, &pipe_config);
6131 vlv_enable_pll(crtc, &pipe_config);
6132 }
6133}
6134
6135/**
6136 * vlv_force_pll_off - forcibly disable just the PLL
6137 * @dev_priv: i915 private structure
6138 * @pipe: pipe PLL to disable
6139 *
6140 * Disable the PLL for @pipe. To be used in cases where we need
6141 * the PLL enabled even when @pipe is not going to be enabled.
6142 */
6143void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe)
6144{
6145 if (IS_CHERRYVIEW(dev))
6146 chv_disable_pll(to_i915(dev), pipe);
6147 else
6148 vlv_disable_pll(to_i915(dev), pipe);
6149}
6150
Daniel Vetterf47709a2013-03-28 10:42:02 +01006151static void i9xx_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006152 struct intel_crtc_state *crtc_state,
Daniel Vetterf47709a2013-03-28 10:42:02 +01006153 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006154 int num_connectors)
6155{
Daniel Vetterf47709a2013-03-28 10:42:02 +01006156 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006157 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006158 u32 dpll;
6159 bool is_sdvo;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006160 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006161
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006162 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05306163
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006164 is_sdvo = intel_pipe_will_have_type(crtc, INTEL_OUTPUT_SDVO) ||
6165 intel_pipe_will_have_type(crtc, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006166
6167 dpll = DPLL_VGA_MODE_DIS;
6168
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006169 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006170 dpll |= DPLLB_MODE_LVDS;
6171 else
6172 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01006173
Daniel Vetteref1b4602013-06-01 17:17:04 +02006174 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006175 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetter198a037f2013-04-19 11:14:37 +02006176 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006177 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02006178
6179 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006180 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02006181
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006182 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006183 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006184
6185 /* compute bitmask from p1 value */
6186 if (IS_PINEVIEW(dev))
6187 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
6188 else {
6189 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6190 if (IS_G4X(dev) && reduced_clock)
6191 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
6192 }
6193 switch (clock->p2) {
6194 case 5:
6195 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
6196 break;
6197 case 7:
6198 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
6199 break;
6200 case 10:
6201 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
6202 break;
6203 case 14:
6204 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
6205 break;
6206 }
6207 if (INTEL_INFO(dev)->gen >= 4)
6208 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
6209
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006210 if (crtc_state->sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006211 dpll |= PLL_REF_INPUT_TVCLKINBC;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006212 else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006213 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
6214 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
6215 else
6216 dpll |= PLL_REF_INPUT_DREFCLK;
6217
6218 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006219 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006220
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006221 if (INTEL_INFO(dev)->gen >= 4) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006222 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02006223 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006224 crtc_state->dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006225 }
6226}
6227
Daniel Vetterf47709a2013-03-28 10:42:02 +01006228static void i8xx_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006229 struct intel_crtc_state *crtc_state,
Daniel Vetterf47709a2013-03-28 10:42:02 +01006230 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006231 int num_connectors)
6232{
Daniel Vetterf47709a2013-03-28 10:42:02 +01006233 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006234 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006235 u32 dpll;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006236 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006237
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006238 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05306239
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006240 dpll = DPLL_VGA_MODE_DIS;
6241
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006242 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006243 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6244 } else {
6245 if (clock->p1 == 2)
6246 dpll |= PLL_P1_DIVIDE_BY_TWO;
6247 else
6248 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6249 if (clock->p2 == 4)
6250 dpll |= PLL_P2_DIVIDE_BY_4;
6251 }
6252
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006253 if (!IS_I830(dev) && intel_pipe_will_have_type(crtc, INTEL_OUTPUT_DVO))
Daniel Vetter4a33e482013-07-06 12:52:05 +02006254 dpll |= DPLL_DVO_2X_MODE;
6255
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006256 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006257 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
6258 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
6259 else
6260 dpll |= PLL_REF_INPUT_DREFCLK;
6261
6262 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006263 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006264}
6265
Daniel Vetter8a654f32013-06-01 17:16:22 +02006266static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006267{
6268 struct drm_device *dev = intel_crtc->base.dev;
6269 struct drm_i915_private *dev_priv = dev->dev_private;
6270 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006271 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Daniel Vetter8a654f32013-06-01 17:16:22 +02006272 struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006273 &intel_crtc->config->base.adjusted_mode;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02006274 uint32_t crtc_vtotal, crtc_vblank_end;
6275 int vsyncshift = 0;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006276
6277 /* We need to be careful not to changed the adjusted mode, for otherwise
6278 * the hw state checker will get angry at the mismatch. */
6279 crtc_vtotal = adjusted_mode->crtc_vtotal;
6280 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006281
Ville Syrjälä609aeac2014-03-28 23:29:30 +02006282 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006283 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006284 crtc_vtotal -= 1;
6285 crtc_vblank_end -= 1;
Ville Syrjälä609aeac2014-03-28 23:29:30 +02006286
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006287 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjälä609aeac2014-03-28 23:29:30 +02006288 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
6289 else
6290 vsyncshift = adjusted_mode->crtc_hsync_start -
6291 adjusted_mode->crtc_htotal / 2;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02006292 if (vsyncshift < 0)
6293 vsyncshift += adjusted_mode->crtc_htotal;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006294 }
6295
6296 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006297 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006298
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006299 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006300 (adjusted_mode->crtc_hdisplay - 1) |
6301 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006302 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006303 (adjusted_mode->crtc_hblank_start - 1) |
6304 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006305 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006306 (adjusted_mode->crtc_hsync_start - 1) |
6307 ((adjusted_mode->crtc_hsync_end - 1) << 16));
6308
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006309 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006310 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006311 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006312 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006313 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006314 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006315 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006316 (adjusted_mode->crtc_vsync_start - 1) |
6317 ((adjusted_mode->crtc_vsync_end - 1) << 16));
6318
Paulo Zanonib5e508d2012-10-24 11:34:43 -02006319 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
6320 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
6321 * documented on the DDI_FUNC_CTL register description, EDP Input Select
6322 * bits. */
6323 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
6324 (pipe == PIPE_B || pipe == PIPE_C))
6325 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
6326
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006327 /* pipesrc controls the size that is scaled from, which should
6328 * always be the user's requested size.
6329 */
6330 I915_WRITE(PIPESRC(pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006331 ((intel_crtc->config->pipe_src_w - 1) << 16) |
6332 (intel_crtc->config->pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006333}
6334
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006335static void intel_get_pipe_timings(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006336 struct intel_crtc_state *pipe_config)
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006337{
6338 struct drm_device *dev = crtc->base.dev;
6339 struct drm_i915_private *dev_priv = dev->dev_private;
6340 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
6341 uint32_t tmp;
6342
6343 tmp = I915_READ(HTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006344 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
6345 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006346 tmp = I915_READ(HBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006347 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
6348 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006349 tmp = I915_READ(HSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006350 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
6351 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006352
6353 tmp = I915_READ(VTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006354 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
6355 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006356 tmp = I915_READ(VBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006357 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
6358 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006359 tmp = I915_READ(VSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006360 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
6361 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006362
6363 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006364 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
6365 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
6366 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006367 }
6368
6369 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03006370 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
6371 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
6372
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006373 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
6374 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006375}
6376
Daniel Vetterf6a83282014-02-11 15:28:57 -08006377void intel_mode_from_pipe_config(struct drm_display_mode *mode,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006378 struct intel_crtc_state *pipe_config)
Jesse Barnesbabea612013-06-26 18:57:38 +03006379{
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006380 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
6381 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
6382 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
6383 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03006384
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006385 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
6386 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
6387 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
6388 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03006389
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006390 mode->flags = pipe_config->base.adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03006391
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006392 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
6393 mode->flags |= pipe_config->base.adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03006394}
6395
Daniel Vetter84b046f2013-02-19 18:48:54 +01006396static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
6397{
6398 struct drm_device *dev = intel_crtc->base.dev;
6399 struct drm_i915_private *dev_priv = dev->dev_private;
6400 uint32_t pipeconf;
6401
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02006402 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01006403
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03006404 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
6405 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
6406 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
Daniel Vetter67c72a12013-09-24 11:46:14 +02006407
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006408 if (intel_crtc->config->double_wide)
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006409 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01006410
Daniel Vetterff9ce462013-04-24 14:57:17 +02006411 /* only g4x and later have fancy bpc/dither controls */
6412 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02006413 /* Bspec claims that we can't use dithering for 30bpp pipes. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006414 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
Daniel Vetterff9ce462013-04-24 14:57:17 +02006415 pipeconf |= PIPECONF_DITHER_EN |
6416 PIPECONF_DITHER_TYPE_SP;
6417
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006418 switch (intel_crtc->config->pipe_bpp) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02006419 case 18:
6420 pipeconf |= PIPECONF_6BPC;
6421 break;
6422 case 24:
6423 pipeconf |= PIPECONF_8BPC;
6424 break;
6425 case 30:
6426 pipeconf |= PIPECONF_10BPC;
6427 break;
6428 default:
6429 /* Case prevented by intel_choose_pipe_bpp_dither. */
6430 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01006431 }
6432 }
6433
6434 if (HAS_PIPE_CXSR(dev)) {
6435 if (intel_crtc->lowfreq_avail) {
6436 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
6437 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
6438 } else {
6439 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01006440 }
6441 }
6442
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006443 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02006444 if (INTEL_INFO(dev)->gen < 4 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006445 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02006446 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
6447 else
6448 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
6449 } else
Daniel Vetter84b046f2013-02-19 18:48:54 +01006450 pipeconf |= PIPECONF_PROGRESSIVE;
6451
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006452 if (IS_VALLEYVIEW(dev) && intel_crtc->config->limited_color_range)
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02006453 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03006454
Daniel Vetter84b046f2013-02-19 18:48:54 +01006455 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
6456 POSTING_READ(PIPECONF(intel_crtc->pipe));
6457}
6458
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006459static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
6460 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08006461{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03006462 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08006463 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholtc751ce42010-03-25 11:48:48 -07006464 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07006465 intel_clock_t clock, reduced_clock;
Daniel Vettera16af722013-04-30 14:01:44 +02006466 bool ok, has_reduced_clock = false;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006467 bool is_lvds = false, is_dsi = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01006468 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08006469 const intel_limit_t *limit;
Jesse Barnes79e53942008-11-07 14:24:08 -08006470
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006471 for_each_intel_encoder(dev, encoder) {
6472 if (encoder->new_crtc != crtc)
6473 continue;
6474
Chris Wilson5eddb702010-09-11 13:48:45 +01006475 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006476 case INTEL_OUTPUT_LVDS:
6477 is_lvds = true;
6478 break;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006479 case INTEL_OUTPUT_DSI:
6480 is_dsi = true;
6481 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02006482 default:
6483 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08006484 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05006485
Eric Anholtc751ce42010-03-25 11:48:48 -07006486 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08006487 }
6488
Jani Nikulaf2335332013-09-13 11:03:09 +03006489 if (is_dsi)
Daniel Vetter5b18e572014-04-24 23:55:06 +02006490 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006491
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006492 if (!crtc_state->clock_set) {
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006493 refclk = i9xx_get_refclk(crtc, num_connectors);
Jani Nikulaf2335332013-09-13 11:03:09 +03006494
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006495 /*
6496 * Returns a set of divisors for the desired target clock with
6497 * the given refclk, or FALSE. The returned values represent
6498 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
6499 * 2) / p1 / p2.
6500 */
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006501 limit = intel_limit(crtc, refclk);
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03006502 ok = dev_priv->display.find_dpll(limit, crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006503 crtc_state->port_clock,
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006504 refclk, NULL, &clock);
Jani Nikulaf2335332013-09-13 11:03:09 +03006505 if (!ok) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006506 DRM_ERROR("Couldn't find PLL settings for mode!\n");
6507 return -EINVAL;
6508 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006509
Jani Nikulaf2335332013-09-13 11:03:09 +03006510 if (is_lvds && dev_priv->lvds_downclock_avail) {
6511 /*
6512 * Ensure we match the reduced clock's P to the target
6513 * clock. If the clocks don't match, we can't switch
6514 * the display clock by using the FP0/FP1. In such case
6515 * we will disable the LVDS downclock feature.
6516 */
6517 has_reduced_clock =
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03006518 dev_priv->display.find_dpll(limit, crtc,
Jani Nikulaf2335332013-09-13 11:03:09 +03006519 dev_priv->lvds_downclock,
6520 refclk, &clock,
6521 &reduced_clock);
6522 }
6523 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006524 crtc_state->dpll.n = clock.n;
6525 crtc_state->dpll.m1 = clock.m1;
6526 crtc_state->dpll.m2 = clock.m2;
6527 crtc_state->dpll.p1 = clock.p1;
6528 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01006529 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006530
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006531 if (IS_GEN2(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006532 i8xx_update_pll(crtc, crtc_state,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05306533 has_reduced_clock ? &reduced_clock : NULL,
6534 num_connectors);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006535 } else if (IS_CHERRYVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006536 chv_update_pll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006537 } else if (IS_VALLEYVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006538 vlv_update_pll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006539 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006540 i9xx_update_pll(crtc, crtc_state,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006541 has_reduced_clock ? &reduced_clock : NULL,
Robin Schroereba905b2014-05-18 02:24:50 +02006542 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006543 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006544
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02006545 return 0;
Eric Anholtf564048e2011-03-30 13:01:02 -07006546}
6547
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006548static void i9xx_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006549 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006550{
6551 struct drm_device *dev = crtc->base.dev;
6552 struct drm_i915_private *dev_priv = dev->dev_private;
6553 uint32_t tmp;
6554
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02006555 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
6556 return;
6557
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006558 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02006559 if (!(tmp & PFIT_ENABLE))
6560 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006561
Daniel Vetter06922822013-07-11 13:35:40 +02006562 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006563 if (INTEL_INFO(dev)->gen < 4) {
6564 if (crtc->pipe != PIPE_B)
6565 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006566 } else {
6567 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
6568 return;
6569 }
6570
Daniel Vetter06922822013-07-11 13:35:40 +02006571 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006572 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
6573 if (INTEL_INFO(dev)->gen < 5)
6574 pipe_config->gmch_pfit.lvds_border_bits =
6575 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
6576}
6577
Jesse Barnesacbec812013-09-20 11:29:32 -07006578static void vlv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006579 struct intel_crtc_state *pipe_config)
Jesse Barnesacbec812013-09-20 11:29:32 -07006580{
6581 struct drm_device *dev = crtc->base.dev;
6582 struct drm_i915_private *dev_priv = dev->dev_private;
6583 int pipe = pipe_config->cpu_transcoder;
6584 intel_clock_t clock;
6585 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07006586 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07006587
Shobhit Kumarf573de52014-07-30 20:32:37 +05306588 /* In case of MIPI DPLL will not even be used */
6589 if (!(pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE))
6590 return;
6591
Jesse Barnesacbec812013-09-20 11:29:32 -07006592 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006593 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
Jesse Barnesacbec812013-09-20 11:29:32 -07006594 mutex_unlock(&dev_priv->dpio_lock);
6595
6596 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
6597 clock.m2 = mdiv & DPIO_M2DIV_MASK;
6598 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
6599 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
6600 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
6601
Ville Syrjäläf6466282013-10-14 14:50:31 +03006602 vlv_clock(refclk, &clock);
Jesse Barnesacbec812013-09-20 11:29:32 -07006603
Ville Syrjäläf6466282013-10-14 14:50:31 +03006604 /* clock.dot is the fast clock */
6605 pipe_config->port_clock = clock.dot / 5;
Jesse Barnesacbec812013-09-20 11:29:32 -07006606}
6607
Damien Lespiau5724dbd2015-01-20 12:51:52 +00006608static void
6609i9xx_get_initial_plane_config(struct intel_crtc *crtc,
6610 struct intel_initial_plane_config *plane_config)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006611{
6612 struct drm_device *dev = crtc->base.dev;
6613 struct drm_i915_private *dev_priv = dev->dev_private;
6614 u32 val, base, offset;
6615 int pipe = crtc->pipe, plane = crtc->plane;
6616 int fourcc, pixel_format;
6617 int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006618 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00006619 struct intel_framebuffer *intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006620
Damien Lespiau42a7b082015-02-05 19:35:13 +00006621 val = I915_READ(DSPCNTR(plane));
6622 if (!(val & DISPLAY_PLANE_ENABLE))
6623 return;
6624
Damien Lespiaud9806c92015-01-21 14:07:19 +00006625 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00006626 if (!intel_fb) {
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006627 DRM_DEBUG_KMS("failed to alloc fb\n");
6628 return;
6629 }
6630
Damien Lespiau1b842c82015-01-21 13:50:54 +00006631 fb = &intel_fb->base;
6632
Daniel Vetter18c52472015-02-10 17:16:09 +00006633 if (INTEL_INFO(dev)->gen >= 4) {
6634 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00006635 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00006636 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
6637 }
6638 }
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006639
6640 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00006641 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006642 fb->pixel_format = fourcc;
6643 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006644
6645 if (INTEL_INFO(dev)->gen >= 4) {
Damien Lespiau49af4492015-01-20 12:51:44 +00006646 if (plane_config->tiling)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006647 offset = I915_READ(DSPTILEOFF(plane));
6648 else
6649 offset = I915_READ(DSPLINOFF(plane));
6650 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
6651 } else {
6652 base = I915_READ(DSPADDR(plane));
6653 }
6654 plane_config->base = base;
6655
6656 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006657 fb->width = ((val >> 16) & 0xfff) + 1;
6658 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006659
6660 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006661 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006662
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006663 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00006664 fb->pixel_format,
6665 fb->modifier[0]);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006666
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006667 plane_config->size = PAGE_ALIGN(fb->pitches[0] * aligned_height);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006668
Damien Lespiau2844a922015-01-20 12:51:48 +00006669 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
6670 pipe_name(pipe), plane, fb->width, fb->height,
6671 fb->bits_per_pixel, base, fb->pitches[0],
6672 plane_config->size);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006673
Damien Lespiau2d140302015-02-05 17:22:18 +00006674 plane_config->fb = intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006675}
6676
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006677static void chv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006678 struct intel_crtc_state *pipe_config)
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006679{
6680 struct drm_device *dev = crtc->base.dev;
6681 struct drm_i915_private *dev_priv = dev->dev_private;
6682 int pipe = pipe_config->cpu_transcoder;
6683 enum dpio_channel port = vlv_pipe_to_channel(pipe);
6684 intel_clock_t clock;
6685 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2;
6686 int refclk = 100000;
6687
6688 mutex_lock(&dev_priv->dpio_lock);
6689 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
6690 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
6691 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
6692 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
6693 mutex_unlock(&dev_priv->dpio_lock);
6694
6695 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
6696 clock.m2 = ((pll_dw0 & 0xff) << 22) | (pll_dw2 & 0x3fffff);
6697 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
6698 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
6699 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
6700
6701 chv_clock(refclk, &clock);
6702
6703 /* clock.dot is the fast clock */
6704 pipe_config->port_clock = clock.dot / 5;
6705}
6706
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006707static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006708 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006709{
6710 struct drm_device *dev = crtc->base.dev;
6711 struct drm_i915_private *dev_priv = dev->dev_private;
6712 uint32_t tmp;
6713
Daniel Vetterf458ebb2014-09-30 10:56:39 +02006714 if (!intel_display_power_is_enabled(dev_priv,
6715 POWER_DOMAIN_PIPE(crtc->pipe)))
Imre Deakb5482bd2014-03-05 16:20:55 +02006716 return false;
6717
Daniel Vettere143a212013-07-04 12:01:15 +02006718 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02006719 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02006720
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006721 tmp = I915_READ(PIPECONF(crtc->pipe));
6722 if (!(tmp & PIPECONF_ENABLE))
6723 return false;
6724
Ville Syrjälä42571ae2013-09-06 23:29:00 +03006725 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
6726 switch (tmp & PIPECONF_BPC_MASK) {
6727 case PIPECONF_6BPC:
6728 pipe_config->pipe_bpp = 18;
6729 break;
6730 case PIPECONF_8BPC:
6731 pipe_config->pipe_bpp = 24;
6732 break;
6733 case PIPECONF_10BPC:
6734 pipe_config->pipe_bpp = 30;
6735 break;
6736 default:
6737 break;
6738 }
6739 }
6740
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02006741 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
6742 pipe_config->limited_color_range = true;
6743
Ville Syrjälä282740f2013-09-04 18:30:03 +03006744 if (INTEL_INFO(dev)->gen < 4)
6745 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
6746
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006747 intel_get_pipe_timings(crtc, pipe_config);
6748
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006749 i9xx_get_pfit_config(crtc, pipe_config);
6750
Daniel Vetter6c49f242013-06-06 12:45:25 +02006751 if (INTEL_INFO(dev)->gen >= 4) {
6752 tmp = I915_READ(DPLL_MD(crtc->pipe));
6753 pipe_config->pixel_multiplier =
6754 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
6755 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006756 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02006757 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
6758 tmp = I915_READ(DPLL(crtc->pipe));
6759 pipe_config->pixel_multiplier =
6760 ((tmp & SDVO_MULTIPLIER_MASK)
6761 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
6762 } else {
6763 /* Note that on i915G/GM the pixel multiplier is in the sdvo
6764 * port and will be fixed up in the encoder->get_config
6765 * function. */
6766 pipe_config->pixel_multiplier = 1;
6767 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006768 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
6769 if (!IS_VALLEYVIEW(dev)) {
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03006770 /*
6771 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
6772 * on 830. Filter it out here so that we don't
6773 * report errors due to that.
6774 */
6775 if (IS_I830(dev))
6776 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
6777
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006778 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
6779 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03006780 } else {
6781 /* Mask out read-only status bits. */
6782 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
6783 DPLL_PORTC_READY_MASK |
6784 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006785 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02006786
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006787 if (IS_CHERRYVIEW(dev))
6788 chv_crtc_clock_get(crtc, pipe_config);
6789 else if (IS_VALLEYVIEW(dev))
Jesse Barnesacbec812013-09-20 11:29:32 -07006790 vlv_crtc_clock_get(crtc, pipe_config);
6791 else
6792 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03006793
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006794 return true;
6795}
6796
Paulo Zanonidde86e22012-12-01 12:04:25 -02006797static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07006798{
6799 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006800 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006801 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006802 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006803 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006804 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07006805 bool has_ck505 = false;
6806 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006807
6808 /* We need to take the global config into account */
Damien Lespiaub2784e12014-08-05 11:29:37 +01006809 for_each_intel_encoder(dev, encoder) {
Keith Packard199e5d72011-09-22 12:01:57 -07006810 switch (encoder->type) {
6811 case INTEL_OUTPUT_LVDS:
6812 has_panel = true;
6813 has_lvds = true;
6814 break;
6815 case INTEL_OUTPUT_EDP:
6816 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03006817 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07006818 has_cpu_edp = true;
6819 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02006820 default:
6821 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006822 }
6823 }
6824
Keith Packard99eb6a02011-09-26 14:29:12 -07006825 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006826 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07006827 can_ssc = has_ck505;
6828 } else {
6829 has_ck505 = false;
6830 can_ssc = true;
6831 }
6832
Imre Deak2de69052013-05-08 13:14:04 +03006833 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
6834 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006835
6836 /* Ironlake: try to setup display ref clock before DPLL
6837 * enabling. This is only under driver's control after
6838 * PCH B stepping, previous chipset stepping should be
6839 * ignoring this setting.
6840 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006841 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006842
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006843 /* As we must carefully and slowly disable/enable each source in turn,
6844 * compute the final state we want first and check if we need to
6845 * make any changes at all.
6846 */
6847 final = val;
6848 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07006849 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006850 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07006851 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006852 final |= DREF_NONSPREAD_SOURCE_ENABLE;
6853
6854 final &= ~DREF_SSC_SOURCE_MASK;
6855 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
6856 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006857
Keith Packard199e5d72011-09-22 12:01:57 -07006858 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006859 final |= DREF_SSC_SOURCE_ENABLE;
6860
6861 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6862 final |= DREF_SSC1_ENABLE;
6863
6864 if (has_cpu_edp) {
6865 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6866 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
6867 else
6868 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
6869 } else
6870 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6871 } else {
6872 final |= DREF_SSC_SOURCE_DISABLE;
6873 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6874 }
6875
6876 if (final == val)
6877 return;
6878
6879 /* Always enable nonspread source */
6880 val &= ~DREF_NONSPREAD_SOURCE_MASK;
6881
6882 if (has_ck505)
6883 val |= DREF_NONSPREAD_CK505_ENABLE;
6884 else
6885 val |= DREF_NONSPREAD_SOURCE_ENABLE;
6886
6887 if (has_panel) {
6888 val &= ~DREF_SSC_SOURCE_MASK;
6889 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006890
Keith Packard199e5d72011-09-22 12:01:57 -07006891 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07006892 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07006893 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006894 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02006895 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006896 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006897
6898 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006899 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006900 POSTING_READ(PCH_DREF_CONTROL);
6901 udelay(200);
6902
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006903 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006904
6905 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07006906 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07006907 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07006908 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006909 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Robin Schroereba905b2014-05-18 02:24:50 +02006910 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006911 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07006912 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006913 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006914
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006915 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006916 POSTING_READ(PCH_DREF_CONTROL);
6917 udelay(200);
6918 } else {
6919 DRM_DEBUG_KMS("Disabling SSC entirely\n");
6920
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006921 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07006922
6923 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006924 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006925
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006926 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006927 POSTING_READ(PCH_DREF_CONTROL);
6928 udelay(200);
6929
6930 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006931 val &= ~DREF_SSC_SOURCE_MASK;
6932 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006933
6934 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006935 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006936
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006937 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006938 POSTING_READ(PCH_DREF_CONTROL);
6939 udelay(200);
6940 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006941
6942 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006943}
6944
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006945static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02006946{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006947 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02006948
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006949 tmp = I915_READ(SOUTH_CHICKEN2);
6950 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
6951 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006952
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006953 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
6954 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
6955 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02006956
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006957 tmp = I915_READ(SOUTH_CHICKEN2);
6958 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
6959 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006960
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006961 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
6962 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
6963 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006964}
6965
6966/* WaMPhyProgramming:hsw */
6967static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
6968{
6969 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02006970
6971 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
6972 tmp &= ~(0xFF << 24);
6973 tmp |= (0x12 << 24);
6974 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
6975
Paulo Zanonidde86e22012-12-01 12:04:25 -02006976 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
6977 tmp |= (1 << 11);
6978 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
6979
6980 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
6981 tmp |= (1 << 11);
6982 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
6983
Paulo Zanonidde86e22012-12-01 12:04:25 -02006984 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
6985 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6986 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
6987
6988 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
6989 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6990 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
6991
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006992 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
6993 tmp &= ~(7 << 13);
6994 tmp |= (5 << 13);
6995 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006996
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006997 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
6998 tmp &= ~(7 << 13);
6999 tmp |= (5 << 13);
7000 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007001
7002 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
7003 tmp &= ~0xFF;
7004 tmp |= 0x1C;
7005 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
7006
7007 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
7008 tmp &= ~0xFF;
7009 tmp |= 0x1C;
7010 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
7011
7012 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
7013 tmp &= ~(0xFF << 16);
7014 tmp |= (0x1C << 16);
7015 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
7016
7017 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
7018 tmp &= ~(0xFF << 16);
7019 tmp |= (0x1C << 16);
7020 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
7021
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007022 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
7023 tmp |= (1 << 27);
7024 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007025
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007026 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
7027 tmp |= (1 << 27);
7028 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007029
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007030 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
7031 tmp &= ~(0xF << 28);
7032 tmp |= (4 << 28);
7033 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007034
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007035 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
7036 tmp &= ~(0xF << 28);
7037 tmp |= (4 << 28);
7038 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007039}
7040
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007041/* Implements 3 different sequences from BSpec chapter "Display iCLK
7042 * Programming" based on the parameters passed:
7043 * - Sequence to enable CLKOUT_DP
7044 * - Sequence to enable CLKOUT_DP without spread
7045 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
7046 */
7047static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
7048 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007049{
7050 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007051 uint32_t reg, tmp;
7052
7053 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
7054 with_spread = true;
7055 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
7056 with_fdi, "LP PCH doesn't have FDI\n"))
7057 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007058
7059 mutex_lock(&dev_priv->dpio_lock);
7060
7061 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7062 tmp &= ~SBI_SSCCTL_DISABLE;
7063 tmp |= SBI_SSCCTL_PATHALT;
7064 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7065
7066 udelay(24);
7067
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007068 if (with_spread) {
7069 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7070 tmp &= ~SBI_SSCCTL_PATHALT;
7071 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007072
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007073 if (with_fdi) {
7074 lpt_reset_fdi_mphy(dev_priv);
7075 lpt_program_fdi_mphy(dev_priv);
7076 }
7077 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02007078
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007079 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
7080 SBI_GEN0 : SBI_DBUFF0;
7081 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
7082 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
7083 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01007084
7085 mutex_unlock(&dev_priv->dpio_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007086}
7087
Paulo Zanoni47701c32013-07-23 11:19:25 -03007088/* Sequence to disable CLKOUT_DP */
7089static void lpt_disable_clkout_dp(struct drm_device *dev)
7090{
7091 struct drm_i915_private *dev_priv = dev->dev_private;
7092 uint32_t reg, tmp;
7093
7094 mutex_lock(&dev_priv->dpio_lock);
7095
7096 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
7097 SBI_GEN0 : SBI_DBUFF0;
7098 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
7099 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
7100 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
7101
7102 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7103 if (!(tmp & SBI_SSCCTL_DISABLE)) {
7104 if (!(tmp & SBI_SSCCTL_PATHALT)) {
7105 tmp |= SBI_SSCCTL_PATHALT;
7106 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7107 udelay(32);
7108 }
7109 tmp |= SBI_SSCCTL_DISABLE;
7110 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7111 }
7112
7113 mutex_unlock(&dev_priv->dpio_lock);
7114}
7115
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007116static void lpt_init_pch_refclk(struct drm_device *dev)
7117{
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007118 struct intel_encoder *encoder;
7119 bool has_vga = false;
7120
Damien Lespiaub2784e12014-08-05 11:29:37 +01007121 for_each_intel_encoder(dev, encoder) {
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007122 switch (encoder->type) {
7123 case INTEL_OUTPUT_ANALOG:
7124 has_vga = true;
7125 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007126 default:
7127 break;
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007128 }
7129 }
7130
Paulo Zanoni47701c32013-07-23 11:19:25 -03007131 if (has_vga)
7132 lpt_enable_clkout_dp(dev, true, true);
7133 else
7134 lpt_disable_clkout_dp(dev);
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007135}
7136
Paulo Zanonidde86e22012-12-01 12:04:25 -02007137/*
7138 * Initialize reference clocks when the driver loads
7139 */
7140void intel_init_pch_refclk(struct drm_device *dev)
7141{
7142 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
7143 ironlake_init_pch_refclk(dev);
7144 else if (HAS_PCH_LPT(dev))
7145 lpt_init_pch_refclk(dev);
7146}
7147
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007148static int ironlake_get_refclk(struct drm_crtc *crtc)
7149{
7150 struct drm_device *dev = crtc->dev;
7151 struct drm_i915_private *dev_priv = dev->dev_private;
7152 struct intel_encoder *encoder;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007153 int num_connectors = 0;
7154 bool is_lvds = false;
7155
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02007156 for_each_intel_encoder(dev, encoder) {
7157 if (encoder->new_crtc != to_intel_crtc(crtc))
7158 continue;
7159
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007160 switch (encoder->type) {
7161 case INTEL_OUTPUT_LVDS:
7162 is_lvds = true;
7163 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007164 default:
7165 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007166 }
7167 num_connectors++;
7168 }
7169
7170 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007171 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03007172 dev_priv->vbt.lvds_ssc_freq);
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007173 return dev_priv->vbt.lvds_ssc_freq;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007174 }
7175
7176 return 120000;
7177}
7178
Daniel Vetter6ff93602013-04-19 11:24:36 +02007179static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03007180{
7181 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
7182 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7183 int pipe = intel_crtc->pipe;
7184 uint32_t val;
7185
Daniel Vetter78114072013-06-13 00:54:57 +02007186 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03007187
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007188 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03007189 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007190 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007191 break;
7192 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007193 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007194 break;
7195 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007196 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007197 break;
7198 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007199 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007200 break;
7201 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03007202 /* Case prevented by intel_choose_pipe_bpp_dither. */
7203 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03007204 }
7205
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007206 if (intel_crtc->config->dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03007207 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
7208
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007209 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03007210 val |= PIPECONF_INTERLACED_ILK;
7211 else
7212 val |= PIPECONF_PROGRESSIVE;
7213
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007214 if (intel_crtc->config->limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02007215 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02007216
Paulo Zanonic8203562012-09-12 10:06:29 -03007217 I915_WRITE(PIPECONF(pipe), val);
7218 POSTING_READ(PIPECONF(pipe));
7219}
7220
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007221/*
7222 * Set up the pipe CSC unit.
7223 *
7224 * Currently only full range RGB to limited range RGB conversion
7225 * is supported, but eventually this should handle various
7226 * RGB<->YCbCr scenarios as well.
7227 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01007228static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007229{
7230 struct drm_device *dev = crtc->dev;
7231 struct drm_i915_private *dev_priv = dev->dev_private;
7232 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7233 int pipe = intel_crtc->pipe;
7234 uint16_t coeff = 0x7800; /* 1.0 */
7235
7236 /*
7237 * TODO: Check what kind of values actually come out of the pipe
7238 * with these coeff/postoff values and adjust to get the best
7239 * accuracy. Perhaps we even need to take the bpc value into
7240 * consideration.
7241 */
7242
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007243 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007244 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
7245
7246 /*
7247 * GY/GU and RY/RU should be the other way around according
7248 * to BSpec, but reality doesn't agree. Just set them up in
7249 * a way that results in the correct picture.
7250 */
7251 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
7252 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
7253
7254 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
7255 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
7256
7257 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
7258 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
7259
7260 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
7261 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
7262 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
7263
7264 if (INTEL_INFO(dev)->gen > 6) {
7265 uint16_t postoff = 0;
7266
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007267 if (intel_crtc->config->limited_color_range)
Ville Syrjälä32cf0cb2013-11-28 22:10:38 +02007268 postoff = (16 * (1 << 12) / 255) & 0x1fff;
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007269
7270 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
7271 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
7272 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
7273
7274 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
7275 } else {
7276 uint32_t mode = CSC_MODE_YUV_TO_RGB;
7277
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007278 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007279 mode |= CSC_BLACK_SCREEN_OFFSET;
7280
7281 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
7282 }
7283}
7284
Daniel Vetter6ff93602013-04-19 11:24:36 +02007285static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007286{
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007287 struct drm_device *dev = crtc->dev;
7288 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007289 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007290 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007291 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007292 uint32_t val;
7293
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02007294 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007295
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007296 if (IS_HASWELL(dev) && intel_crtc->config->dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007297 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
7298
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007299 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007300 val |= PIPECONF_INTERLACED_ILK;
7301 else
7302 val |= PIPECONF_PROGRESSIVE;
7303
Paulo Zanoni702e7a52012-10-23 18:29:59 -02007304 I915_WRITE(PIPECONF(cpu_transcoder), val);
7305 POSTING_READ(PIPECONF(cpu_transcoder));
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02007306
7307 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
7308 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007309
Satheeshakrishna M3cdf122c2014-04-08 15:46:53 +05307310 if (IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007311 val = 0;
7312
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007313 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007314 case 18:
7315 val |= PIPEMISC_DITHER_6_BPC;
7316 break;
7317 case 24:
7318 val |= PIPEMISC_DITHER_8_BPC;
7319 break;
7320 case 30:
7321 val |= PIPEMISC_DITHER_10_BPC;
7322 break;
7323 case 36:
7324 val |= PIPEMISC_DITHER_12_BPC;
7325 break;
7326 default:
7327 /* Case prevented by pipe_config_set_bpp. */
7328 BUG();
7329 }
7330
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007331 if (intel_crtc->config->dither)
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007332 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
7333
7334 I915_WRITE(PIPEMISC(pipe), val);
7335 }
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007336}
7337
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007338static bool ironlake_compute_clocks(struct drm_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007339 struct intel_crtc_state *crtc_state,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007340 intel_clock_t *clock,
7341 bool *has_reduced_clock,
7342 intel_clock_t *reduced_clock)
7343{
7344 struct drm_device *dev = crtc->dev;
7345 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +03007346 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007347 int refclk;
7348 const intel_limit_t *limit;
Daniel Vettera16af722013-04-30 14:01:44 +02007349 bool ret, is_lvds = false;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007350
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02007351 is_lvds = intel_pipe_will_have_type(intel_crtc, INTEL_OUTPUT_LVDS);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007352
7353 refclk = ironlake_get_refclk(crtc);
7354
7355 /*
7356 * Returns a set of divisors for the desired target clock with the given
7357 * refclk, or FALSE. The returned values represent the clock equation:
7358 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
7359 */
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007360 limit = intel_limit(intel_crtc, refclk);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +03007361 ret = dev_priv->display.find_dpll(limit, intel_crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007362 crtc_state->port_clock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02007363 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007364 if (!ret)
7365 return false;
7366
7367 if (is_lvds && dev_priv->lvds_downclock_avail) {
7368 /*
7369 * Ensure we match the reduced clock's P to the target clock.
7370 * If the clocks don't match, we can't switch the display clock
7371 * by using the FP0/FP1. In such case we will disable the LVDS
7372 * downclock feature.
7373 */
Daniel Vetteree9300b2013-06-03 22:40:22 +02007374 *has_reduced_clock =
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +03007375 dev_priv->display.find_dpll(limit, intel_crtc,
Daniel Vetteree9300b2013-06-03 22:40:22 +02007376 dev_priv->lvds_downclock,
7377 refclk, clock,
7378 reduced_clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007379 }
7380
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007381 return true;
7382}
7383
Paulo Zanonid4b19312012-11-29 11:29:32 -02007384int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
7385{
7386 /*
7387 * Account for spread spectrum to avoid
7388 * oversubscribing the link. Max center spread
7389 * is 2.5%; use 5% for safety's sake.
7390 */
7391 u32 bps = target_clock * bpp * 21 / 20;
Ville Syrjälä619d4d02014-02-27 14:23:14 +02007392 return DIV_ROUND_UP(bps, link_bw * 8);
Paulo Zanonid4b19312012-11-29 11:29:32 -02007393}
7394
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007395static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02007396{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007397 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03007398}
7399
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007400static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007401 struct intel_crtc_state *crtc_state,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007402 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02007403 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007404{
7405 struct drm_crtc *crtc = &intel_crtc->base;
7406 struct drm_device *dev = crtc->dev;
7407 struct drm_i915_private *dev_priv = dev->dev_private;
7408 struct intel_encoder *intel_encoder;
7409 uint32_t dpll;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01007410 int factor, num_connectors = 0;
Daniel Vetter09ede542013-04-30 14:01:45 +02007411 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007412
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02007413 for_each_intel_encoder(dev, intel_encoder) {
7414 if (intel_encoder->new_crtc != to_intel_crtc(crtc))
7415 continue;
7416
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007417 switch (intel_encoder->type) {
7418 case INTEL_OUTPUT_LVDS:
7419 is_lvds = true;
7420 break;
7421 case INTEL_OUTPUT_SDVO:
7422 case INTEL_OUTPUT_HDMI:
7423 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007424 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007425 default:
7426 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007427 }
7428
7429 num_connectors++;
7430 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007431
Chris Wilsonc1858122010-12-03 21:35:48 +00007432 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07007433 factor = 21;
7434 if (is_lvds) {
7435 if ((intel_panel_use_ssc(dev_priv) &&
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007436 dev_priv->vbt.lvds_ssc_freq == 100000) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02007437 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07007438 factor = 25;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007439 } else if (crtc_state->sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07007440 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00007441
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007442 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02007443 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00007444
Daniel Vetter9a7c7892013-04-04 22:20:34 +02007445 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
7446 *fp2 |= FP_CB_TUNE;
7447
Chris Wilson5eddb702010-09-11 13:48:45 +01007448 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08007449
Eric Anholta07d6782011-03-30 13:01:08 -07007450 if (is_lvds)
7451 dpll |= DPLLB_MODE_LVDS;
7452 else
7453 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007454
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007455 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02007456 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007457
7458 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007459 dpll |= DPLL_SDVO_HIGH_SPEED;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007460 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007461 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08007462
Eric Anholta07d6782011-03-30 13:01:08 -07007463 /* compute bitmask from p1 value */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007464 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07007465 /* also FPA1 */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007466 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07007467
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007468 switch (crtc_state->dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07007469 case 5:
7470 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
7471 break;
7472 case 7:
7473 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
7474 break;
7475 case 10:
7476 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
7477 break;
7478 case 14:
7479 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
7480 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08007481 }
7482
Daniel Vetterb4c09f32013-04-30 14:01:42 +02007483 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05007484 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08007485 else
7486 dpll |= PLL_REF_INPUT_DREFCLK;
7487
Daniel Vetter959e16d2013-06-05 13:34:21 +02007488 return dpll | DPLL_VCO_ENABLE;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007489}
7490
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007491static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
7492 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08007493{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007494 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08007495 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007496 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03007497 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01007498 bool is_lvds = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02007499 struct intel_shared_dpll *pll;
Jesse Barnes79e53942008-11-07 14:24:08 -08007500
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007501 is_lvds = intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS);
Jesse Barnes79e53942008-11-07 14:24:08 -08007502
Paulo Zanoni5dc52982012-10-05 12:05:56 -03007503 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
7504 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
7505
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007506 ok = ironlake_compute_clocks(&crtc->base, crtc_state, &clock,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007507 &has_reduced_clock, &reduced_clock);
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007508 if (!ok && !crtc_state->clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08007509 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7510 return -EINVAL;
7511 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01007512 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007513 if (!crtc_state->clock_set) {
7514 crtc_state->dpll.n = clock.n;
7515 crtc_state->dpll.m1 = clock.m1;
7516 crtc_state->dpll.m2 = clock.m2;
7517 crtc_state->dpll.p1 = clock.p1;
7518 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01007519 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007520
Paulo Zanoni5dc52982012-10-05 12:05:56 -03007521 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007522 if (crtc_state->has_pch_encoder) {
7523 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007524 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007525 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007526
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007527 dpll = ironlake_compute_dpll(crtc, crtc_state,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007528 &fp, &reduced_clock,
7529 has_reduced_clock ? &fp2 : NULL);
7530
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007531 crtc_state->dpll_hw_state.dpll = dpll;
7532 crtc_state->dpll_hw_state.fp0 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02007533 if (has_reduced_clock)
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007534 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetter66e985c2013-06-05 13:34:20 +02007535 else
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007536 crtc_state->dpll_hw_state.fp1 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02007537
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007538 pll = intel_get_shared_dpll(crtc, crtc_state);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01007539 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03007540 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007541 pipe_name(crtc->pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07007542 return -EINVAL;
7543 }
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +02007544 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007545
Jani Nikulad330a952014-01-21 11:24:25 +02007546 if (is_lvds && has_reduced_clock && i915.powersave)
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007547 crtc->lowfreq_avail = true;
Daniel Vetterbcd644e2013-06-05 13:34:22 +02007548 else
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007549 crtc->lowfreq_avail = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02007550
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007551 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007552}
7553
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007554static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
7555 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02007556{
7557 struct drm_device *dev = crtc->base.dev;
7558 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007559 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02007560
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007561 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
7562 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
7563 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
7564 & ~TU_SIZE_MASK;
7565 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
7566 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
7567 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7568}
7569
7570static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
7571 enum transcoder transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007572 struct intel_link_m_n *m_n,
7573 struct intel_link_m_n *m2_n2)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007574{
7575 struct drm_device *dev = crtc->base.dev;
7576 struct drm_i915_private *dev_priv = dev->dev_private;
7577 enum pipe pipe = crtc->pipe;
7578
7579 if (INTEL_INFO(dev)->gen >= 5) {
7580 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
7581 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
7582 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
7583 & ~TU_SIZE_MASK;
7584 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
7585 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
7586 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007587 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
7588 * gen < 8) and if DRRS is supported (to make sure the
7589 * registers are not unnecessarily read).
7590 */
7591 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007592 crtc->config->has_drrs) {
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007593 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
7594 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
7595 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
7596 & ~TU_SIZE_MASK;
7597 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
7598 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
7599 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7600 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007601 } else {
7602 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
7603 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
7604 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
7605 & ~TU_SIZE_MASK;
7606 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
7607 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
7608 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7609 }
7610}
7611
7612void intel_dp_get_m_n(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007613 struct intel_crtc_state *pipe_config)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007614{
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02007615 if (pipe_config->has_pch_encoder)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007616 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
7617 else
7618 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007619 &pipe_config->dp_m_n,
7620 &pipe_config->dp_m2_n2);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007621}
7622
Daniel Vetter72419202013-04-04 13:28:53 +02007623static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007624 struct intel_crtc_state *pipe_config)
Daniel Vetter72419202013-04-04 13:28:53 +02007625{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007626 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007627 &pipe_config->fdi_m_n, NULL);
Daniel Vetter72419202013-04-04 13:28:53 +02007628}
7629
Jesse Barnesbd2e2442014-11-13 17:51:47 +00007630static void skylake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007631 struct intel_crtc_state *pipe_config)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00007632{
7633 struct drm_device *dev = crtc->base.dev;
7634 struct drm_i915_private *dev_priv = dev->dev_private;
7635 uint32_t tmp;
7636
7637 tmp = I915_READ(PS_CTL(crtc->pipe));
7638
7639 if (tmp & PS_ENABLE) {
7640 pipe_config->pch_pfit.enabled = true;
7641 pipe_config->pch_pfit.pos = I915_READ(PS_WIN_POS(crtc->pipe));
7642 pipe_config->pch_pfit.size = I915_READ(PS_WIN_SZ(crtc->pipe));
7643 }
7644}
7645
Damien Lespiau5724dbd2015-01-20 12:51:52 +00007646static void
7647skylake_get_initial_plane_config(struct intel_crtc *crtc,
7648 struct intel_initial_plane_config *plane_config)
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007649{
7650 struct drm_device *dev = crtc->base.dev;
7651 struct drm_i915_private *dev_priv = dev->dev_private;
7652 u32 val, base, offset, stride_mult;
7653 int pipe = crtc->pipe;
7654 int fourcc, pixel_format;
7655 int aligned_height;
7656 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00007657 struct intel_framebuffer *intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007658
Damien Lespiaud9806c92015-01-21 14:07:19 +00007659 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00007660 if (!intel_fb) {
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007661 DRM_DEBUG_KMS("failed to alloc fb\n");
7662 return;
7663 }
7664
Damien Lespiau1b842c82015-01-21 13:50:54 +00007665 fb = &intel_fb->base;
7666
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007667 val = I915_READ(PLANE_CTL(pipe, 0));
Damien Lespiau42a7b082015-02-05 19:35:13 +00007668 if (!(val & PLANE_CTL_ENABLE))
7669 goto error;
7670
Daniel Vetter18c52472015-02-10 17:16:09 +00007671 if (val & PLANE_CTL_TILED_MASK) {
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007672 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00007673 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
7674 }
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007675
7676 pixel_format = val & PLANE_CTL_FORMAT_MASK;
7677 fourcc = skl_format_to_fourcc(pixel_format,
7678 val & PLANE_CTL_ORDER_RGBX,
7679 val & PLANE_CTL_ALPHA_MASK);
7680 fb->pixel_format = fourcc;
7681 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
7682
7683 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
7684 plane_config->base = base;
7685
7686 offset = I915_READ(PLANE_OFFSET(pipe, 0));
7687
7688 val = I915_READ(PLANE_SIZE(pipe, 0));
7689 fb->height = ((val >> 16) & 0xfff) + 1;
7690 fb->width = ((val >> 0) & 0x1fff) + 1;
7691
7692 val = I915_READ(PLANE_STRIDE(pipe, 0));
7693 switch (plane_config->tiling) {
7694 case I915_TILING_NONE:
7695 stride_mult = 64;
7696 break;
7697 case I915_TILING_X:
7698 stride_mult = 512;
7699 break;
7700 default:
7701 MISSING_CASE(plane_config->tiling);
7702 goto error;
7703 }
7704 fb->pitches[0] = (val & 0x3ff) * stride_mult;
7705
7706 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00007707 fb->pixel_format,
7708 fb->modifier[0]);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007709
7710 plane_config->size = ALIGN(fb->pitches[0] * aligned_height, PAGE_SIZE);
7711
7712 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
7713 pipe_name(pipe), fb->width, fb->height,
7714 fb->bits_per_pixel, base, fb->pitches[0],
7715 plane_config->size);
7716
Damien Lespiau2d140302015-02-05 17:22:18 +00007717 plane_config->fb = intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007718 return;
7719
7720error:
7721 kfree(fb);
7722}
7723
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007724static void ironlake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007725 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007726{
7727 struct drm_device *dev = crtc->base.dev;
7728 struct drm_i915_private *dev_priv = dev->dev_private;
7729 uint32_t tmp;
7730
7731 tmp = I915_READ(PF_CTL(crtc->pipe));
7732
7733 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01007734 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007735 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
7736 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02007737
7738 /* We currently do not free assignements of panel fitters on
7739 * ivb/hsw (since we don't use the higher upscaling modes which
7740 * differentiates them) so just WARN about this case for now. */
7741 if (IS_GEN7(dev)) {
7742 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
7743 PF_PIPE_SEL_IVB(crtc->pipe));
7744 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007745 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007746}
7747
Damien Lespiau5724dbd2015-01-20 12:51:52 +00007748static void
7749ironlake_get_initial_plane_config(struct intel_crtc *crtc,
7750 struct intel_initial_plane_config *plane_config)
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007751{
7752 struct drm_device *dev = crtc->base.dev;
7753 struct drm_i915_private *dev_priv = dev->dev_private;
7754 u32 val, base, offset;
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007755 int pipe = crtc->pipe;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007756 int fourcc, pixel_format;
7757 int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007758 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00007759 struct intel_framebuffer *intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007760
Damien Lespiau42a7b082015-02-05 19:35:13 +00007761 val = I915_READ(DSPCNTR(pipe));
7762 if (!(val & DISPLAY_PLANE_ENABLE))
7763 return;
7764
Damien Lespiaud9806c92015-01-21 14:07:19 +00007765 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00007766 if (!intel_fb) {
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007767 DRM_DEBUG_KMS("failed to alloc fb\n");
7768 return;
7769 }
7770
Damien Lespiau1b842c82015-01-21 13:50:54 +00007771 fb = &intel_fb->base;
7772
Daniel Vetter18c52472015-02-10 17:16:09 +00007773 if (INTEL_INFO(dev)->gen >= 4) {
7774 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00007775 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00007776 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
7777 }
7778 }
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007779
7780 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00007781 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007782 fb->pixel_format = fourcc;
7783 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007784
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007785 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007786 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007787 offset = I915_READ(DSPOFFSET(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007788 } else {
Damien Lespiau49af4492015-01-20 12:51:44 +00007789 if (plane_config->tiling)
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007790 offset = I915_READ(DSPTILEOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007791 else
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007792 offset = I915_READ(DSPLINOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007793 }
7794 plane_config->base = base;
7795
7796 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007797 fb->width = ((val >> 16) & 0xfff) + 1;
7798 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007799
7800 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007801 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007802
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007803 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00007804 fb->pixel_format,
7805 fb->modifier[0]);
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007806
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007807 plane_config->size = PAGE_ALIGN(fb->pitches[0] * aligned_height);
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007808
Damien Lespiau2844a922015-01-20 12:51:48 +00007809 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
7810 pipe_name(pipe), fb->width, fb->height,
7811 fb->bits_per_pixel, base, fb->pitches[0],
7812 plane_config->size);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007813
Damien Lespiau2d140302015-02-05 17:22:18 +00007814 plane_config->fb = intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007815}
7816
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007817static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007818 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007819{
7820 struct drm_device *dev = crtc->base.dev;
7821 struct drm_i915_private *dev_priv = dev->dev_private;
7822 uint32_t tmp;
7823
Daniel Vetterf458ebb2014-09-30 10:56:39 +02007824 if (!intel_display_power_is_enabled(dev_priv,
7825 POWER_DOMAIN_PIPE(crtc->pipe)))
Paulo Zanoni930e8c92014-07-04 13:38:34 -03007826 return false;
7827
Daniel Vettere143a212013-07-04 12:01:15 +02007828 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007829 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02007830
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007831 tmp = I915_READ(PIPECONF(crtc->pipe));
7832 if (!(tmp & PIPECONF_ENABLE))
7833 return false;
7834
Ville Syrjälä42571ae2013-09-06 23:29:00 +03007835 switch (tmp & PIPECONF_BPC_MASK) {
7836 case PIPECONF_6BPC:
7837 pipe_config->pipe_bpp = 18;
7838 break;
7839 case PIPECONF_8BPC:
7840 pipe_config->pipe_bpp = 24;
7841 break;
7842 case PIPECONF_10BPC:
7843 pipe_config->pipe_bpp = 30;
7844 break;
7845 case PIPECONF_12BPC:
7846 pipe_config->pipe_bpp = 36;
7847 break;
7848 default:
7849 break;
7850 }
7851
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02007852 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
7853 pipe_config->limited_color_range = true;
7854
Daniel Vetterab9412b2013-05-03 11:49:46 +02007855 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02007856 struct intel_shared_dpll *pll;
7857
Daniel Vetter88adfff2013-03-28 10:42:01 +01007858 pipe_config->has_pch_encoder = true;
7859
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007860 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
7861 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7862 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02007863
7864 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007865
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007866 if (HAS_PCH_IBX(dev_priv->dev)) {
Daniel Vetterd94ab062013-07-04 12:01:16 +02007867 pipe_config->shared_dpll =
7868 (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007869 } else {
7870 tmp = I915_READ(PCH_DPLL_SEL);
7871 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
7872 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
7873 else
7874 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
7875 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02007876
7877 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
7878
7879 WARN_ON(!pll->get_hw_state(dev_priv, pll,
7880 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02007881
7882 tmp = pipe_config->dpll_hw_state.dpll;
7883 pipe_config->pixel_multiplier =
7884 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
7885 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03007886
7887 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007888 } else {
7889 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007890 }
7891
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007892 intel_get_pipe_timings(crtc, pipe_config);
7893
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007894 ironlake_get_pfit_config(crtc, pipe_config);
7895
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007896 return true;
7897}
7898
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007899static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
7900{
7901 struct drm_device *dev = dev_priv->dev;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007902 struct intel_crtc *crtc;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007903
Damien Lespiaud3fcc802014-05-13 23:32:22 +01007904 for_each_intel_crtc(dev, crtc)
Rob Clarke2c719b2014-12-15 13:56:32 -05007905 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007906 pipe_name(crtc->pipe));
7907
Rob Clarke2c719b2014-12-15 13:56:32 -05007908 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
7909 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
7910 I915_STATE_WARN(I915_READ(WRPLL_CTL1) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
7911 I915_STATE_WARN(I915_READ(WRPLL_CTL2) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
7912 I915_STATE_WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
7913 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007914 "CPU PWM1 enabled\n");
Paulo Zanonic5107b82014-07-04 11:50:30 -03007915 if (IS_HASWELL(dev))
Rob Clarke2c719b2014-12-15 13:56:32 -05007916 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
Paulo Zanonic5107b82014-07-04 11:50:30 -03007917 "CPU PWM2 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05007918 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007919 "PCH PWM1 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05007920 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007921 "Utility pin enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05007922 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007923
Paulo Zanoni9926ada2014-04-01 19:39:47 -03007924 /*
7925 * In theory we can still leave IRQs enabled, as long as only the HPD
7926 * interrupts remain enabled. We used to check for that, but since it's
7927 * gen-specific and since we only disable LCPLL after we fully disable
7928 * the interrupts, the check below should be enough.
7929 */
Rob Clarke2c719b2014-12-15 13:56:32 -05007930 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007931}
7932
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007933static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
7934{
7935 struct drm_device *dev = dev_priv->dev;
7936
7937 if (IS_HASWELL(dev))
7938 return I915_READ(D_COMP_HSW);
7939 else
7940 return I915_READ(D_COMP_BDW);
7941}
7942
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007943static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
7944{
7945 struct drm_device *dev = dev_priv->dev;
7946
7947 if (IS_HASWELL(dev)) {
7948 mutex_lock(&dev_priv->rps.hw_lock);
7949 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
7950 val))
Paulo Zanonif475dad2014-07-04 11:59:57 -03007951 DRM_ERROR("Failed to write to D_COMP\n");
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007952 mutex_unlock(&dev_priv->rps.hw_lock);
7953 } else {
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007954 I915_WRITE(D_COMP_BDW, val);
7955 POSTING_READ(D_COMP_BDW);
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007956 }
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007957}
7958
7959/*
7960 * This function implements pieces of two sequences from BSpec:
7961 * - Sequence for display software to disable LCPLL
7962 * - Sequence for display software to allow package C8+
7963 * The steps implemented here are just the steps that actually touch the LCPLL
7964 * register. Callers should take care of disabling all the display engine
7965 * functions, doing the mode unset, fixing interrupts, etc.
7966 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03007967static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
7968 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007969{
7970 uint32_t val;
7971
7972 assert_can_disable_lcpll(dev_priv);
7973
7974 val = I915_READ(LCPLL_CTL);
7975
7976 if (switch_to_fclk) {
7977 val |= LCPLL_CD_SOURCE_FCLK;
7978 I915_WRITE(LCPLL_CTL, val);
7979
7980 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
7981 LCPLL_CD_SOURCE_FCLK_DONE, 1))
7982 DRM_ERROR("Switching to FCLK failed\n");
7983
7984 val = I915_READ(LCPLL_CTL);
7985 }
7986
7987 val |= LCPLL_PLL_DISABLE;
7988 I915_WRITE(LCPLL_CTL, val);
7989 POSTING_READ(LCPLL_CTL);
7990
7991 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
7992 DRM_ERROR("LCPLL still locked\n");
7993
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007994 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007995 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007996 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007997 ndelay(100);
7998
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03007999 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
8000 1))
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008001 DRM_ERROR("D_COMP RCOMP still in progress\n");
8002
8003 if (allow_power_down) {
8004 val = I915_READ(LCPLL_CTL);
8005 val |= LCPLL_POWER_DOWN_ALLOW;
8006 I915_WRITE(LCPLL_CTL, val);
8007 POSTING_READ(LCPLL_CTL);
8008 }
8009}
8010
8011/*
8012 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
8013 * source.
8014 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03008015static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008016{
8017 uint32_t val;
8018
8019 val = I915_READ(LCPLL_CTL);
8020
8021 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
8022 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
8023 return;
8024
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03008025 /*
8026 * Make sure we're not on PC8 state before disabling PC8, otherwise
8027 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03008028 */
Mika Kuoppala59bad942015-01-16 11:34:40 +02008029 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Paulo Zanoni215733f2013-08-19 13:18:07 -03008030
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008031 if (val & LCPLL_POWER_DOWN_ALLOW) {
8032 val &= ~LCPLL_POWER_DOWN_ALLOW;
8033 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02008034 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008035 }
8036
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03008037 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008038 val |= D_COMP_COMP_FORCE;
8039 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03008040 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008041
8042 val = I915_READ(LCPLL_CTL);
8043 val &= ~LCPLL_PLL_DISABLE;
8044 I915_WRITE(LCPLL_CTL, val);
8045
8046 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
8047 DRM_ERROR("LCPLL not locked yet\n");
8048
8049 if (val & LCPLL_CD_SOURCE_FCLK) {
8050 val = I915_READ(LCPLL_CTL);
8051 val &= ~LCPLL_CD_SOURCE_FCLK;
8052 I915_WRITE(LCPLL_CTL, val);
8053
8054 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
8055 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
8056 DRM_ERROR("Switching back to LCPLL failed\n");
8057 }
Paulo Zanoni215733f2013-08-19 13:18:07 -03008058
Mika Kuoppala59bad942015-01-16 11:34:40 +02008059 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008060}
8061
Paulo Zanoni765dab672014-03-07 20:08:18 -03008062/*
8063 * Package states C8 and deeper are really deep PC states that can only be
8064 * reached when all the devices on the system allow it, so even if the graphics
8065 * device allows PC8+, it doesn't mean the system will actually get to these
8066 * states. Our driver only allows PC8+ when going into runtime PM.
8067 *
8068 * The requirements for PC8+ are that all the outputs are disabled, the power
8069 * well is disabled and most interrupts are disabled, and these are also
8070 * requirements for runtime PM. When these conditions are met, we manually do
8071 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
8072 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
8073 * hang the machine.
8074 *
8075 * When we really reach PC8 or deeper states (not just when we allow it) we lose
8076 * the state of some registers, so when we come back from PC8+ we need to
8077 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
8078 * need to take care of the registers kept by RC6. Notice that this happens even
8079 * if we don't put the device in PCI D3 state (which is what currently happens
8080 * because of the runtime PM support).
8081 *
8082 * For more, read "Display Sequences for Package C8" on the hardware
8083 * documentation.
8084 */
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03008085void hsw_enable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03008086{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008087 struct drm_device *dev = dev_priv->dev;
8088 uint32_t val;
8089
Paulo Zanonic67a4702013-08-19 13:18:09 -03008090 DRM_DEBUG_KMS("Enabling package C8+\n");
8091
Paulo Zanonic67a4702013-08-19 13:18:09 -03008092 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
8093 val = I915_READ(SOUTH_DSPCLK_GATE_D);
8094 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
8095 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
8096 }
8097
8098 lpt_disable_clkout_dp(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008099 hsw_disable_lcpll(dev_priv, true, true);
8100}
8101
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03008102void hsw_disable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03008103{
8104 struct drm_device *dev = dev_priv->dev;
8105 uint32_t val;
8106
Paulo Zanonic67a4702013-08-19 13:18:09 -03008107 DRM_DEBUG_KMS("Disabling package C8+\n");
8108
8109 hsw_restore_lcpll(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008110 lpt_init_pch_refclk(dev);
8111
8112 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
8113 val = I915_READ(SOUTH_DSPCLK_GATE_D);
8114 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
8115 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
8116 }
8117
8118 intel_prepare_ddi(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008119}
8120
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008121static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
8122 struct intel_crtc_state *crtc_state)
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03008123{
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008124 if (!intel_ddi_pll_select(crtc, crtc_state))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03008125 return -EINVAL;
Daniel Vetter716c2e52014-06-25 22:02:02 +03008126
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008127 crtc->lowfreq_avail = false;
Daniel Vetter644cef32014-04-24 23:55:07 +02008128
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02008129 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008130}
8131
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008132static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
8133 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008134 struct intel_crtc_state *pipe_config)
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008135{
Damien Lespiau3148ade2014-11-21 16:14:56 +00008136 u32 temp, dpll_ctl1;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008137
8138 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
8139 pipe_config->ddi_pll_sel = temp >> (port * 3 + 1);
8140
8141 switch (pipe_config->ddi_pll_sel) {
Damien Lespiau3148ade2014-11-21 16:14:56 +00008142 case SKL_DPLL0:
8143 /*
8144 * On SKL the eDP DPLL (DPLL0 as we don't use SSC) is not part
8145 * of the shared DPLL framework and thus needs to be read out
8146 * separately
8147 */
8148 dpll_ctl1 = I915_READ(DPLL_CTRL1);
8149 pipe_config->dpll_hw_state.ctrl1 = dpll_ctl1 & 0x3f;
8150 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008151 case SKL_DPLL1:
8152 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
8153 break;
8154 case SKL_DPLL2:
8155 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
8156 break;
8157 case SKL_DPLL3:
8158 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
8159 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008160 }
8161}
8162
Damien Lespiau7d2c8172014-07-29 18:06:18 +01008163static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
8164 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008165 struct intel_crtc_state *pipe_config)
Damien Lespiau7d2c8172014-07-29 18:06:18 +01008166{
8167 pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
8168
8169 switch (pipe_config->ddi_pll_sel) {
8170 case PORT_CLK_SEL_WRPLL1:
8171 pipe_config->shared_dpll = DPLL_ID_WRPLL1;
8172 break;
8173 case PORT_CLK_SEL_WRPLL2:
8174 pipe_config->shared_dpll = DPLL_ID_WRPLL2;
8175 break;
8176 }
8177}
8178
Daniel Vetter26804af2014-06-25 22:01:55 +03008179static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008180 struct intel_crtc_state *pipe_config)
Daniel Vetter26804af2014-06-25 22:01:55 +03008181{
8182 struct drm_device *dev = crtc->base.dev;
8183 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterd452c5b2014-07-04 11:27:39 -03008184 struct intel_shared_dpll *pll;
Daniel Vetter26804af2014-06-25 22:01:55 +03008185 enum port port;
8186 uint32_t tmp;
8187
8188 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
8189
8190 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
8191
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008192 if (IS_SKYLAKE(dev))
8193 skylake_get_ddi_pll(dev_priv, port, pipe_config);
8194 else
8195 haswell_get_ddi_pll(dev_priv, port, pipe_config);
Daniel Vetter9cd86932014-06-25 22:01:57 +03008196
Daniel Vetterd452c5b2014-07-04 11:27:39 -03008197 if (pipe_config->shared_dpll >= 0) {
8198 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
8199
8200 WARN_ON(!pll->get_hw_state(dev_priv, pll,
8201 &pipe_config->dpll_hw_state));
8202 }
8203
Daniel Vetter26804af2014-06-25 22:01:55 +03008204 /*
8205 * Haswell has only FDI/PCH transcoder A. It is which is connected to
8206 * DDI E. So just check whether this pipe is wired to DDI E and whether
8207 * the PCH transcoder is on.
8208 */
Damien Lespiauca370452013-12-03 13:56:24 +00008209 if (INTEL_INFO(dev)->gen < 9 &&
8210 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
Daniel Vetter26804af2014-06-25 22:01:55 +03008211 pipe_config->has_pch_encoder = true;
8212
8213 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
8214 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
8215 FDI_DP_PORT_WIDTH_SHIFT) + 1;
8216
8217 ironlake_get_fdi_m_n_config(crtc, pipe_config);
8218 }
8219}
8220
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008221static bool haswell_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008222 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008223{
8224 struct drm_device *dev = crtc->base.dev;
8225 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008226 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008227 uint32_t tmp;
8228
Daniel Vetterf458ebb2014-09-30 10:56:39 +02008229 if (!intel_display_power_is_enabled(dev_priv,
Imre Deakb5482bd2014-03-05 16:20:55 +02008230 POWER_DOMAIN_PIPE(crtc->pipe)))
8231 return false;
8232
Daniel Vettere143a212013-07-04 12:01:15 +02008233 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008234 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
8235
Daniel Vettereccb1402013-05-22 00:50:22 +02008236 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
8237 if (tmp & TRANS_DDI_FUNC_ENABLE) {
8238 enum pipe trans_edp_pipe;
8239 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
8240 default:
8241 WARN(1, "unknown pipe linked to edp transcoder\n");
8242 case TRANS_DDI_EDP_INPUT_A_ONOFF:
8243 case TRANS_DDI_EDP_INPUT_A_ON:
8244 trans_edp_pipe = PIPE_A;
8245 break;
8246 case TRANS_DDI_EDP_INPUT_B_ONOFF:
8247 trans_edp_pipe = PIPE_B;
8248 break;
8249 case TRANS_DDI_EDP_INPUT_C_ONOFF:
8250 trans_edp_pipe = PIPE_C;
8251 break;
8252 }
8253
8254 if (trans_edp_pipe == crtc->pipe)
8255 pipe_config->cpu_transcoder = TRANSCODER_EDP;
8256 }
8257
Daniel Vetterf458ebb2014-09-30 10:56:39 +02008258 if (!intel_display_power_is_enabled(dev_priv,
Daniel Vettereccb1402013-05-22 00:50:22 +02008259 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -03008260 return false;
8261
Daniel Vettereccb1402013-05-22 00:50:22 +02008262 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008263 if (!(tmp & PIPECONF_ENABLE))
8264 return false;
8265
Daniel Vetter26804af2014-06-25 22:01:55 +03008266 haswell_get_ddi_port_state(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02008267
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008268 intel_get_pipe_timings(crtc, pipe_config);
8269
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008270 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00008271 if (intel_display_power_is_enabled(dev_priv, pfit_domain)) {
8272 if (IS_SKYLAKE(dev))
8273 skylake_get_pfit_config(crtc, pipe_config);
8274 else
8275 ironlake_get_pfit_config(crtc, pipe_config);
8276 }
Daniel Vetter88adfff2013-03-28 10:42:01 +01008277
Jesse Barnese59150d2014-01-07 13:30:45 -08008278 if (IS_HASWELL(dev))
8279 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
8280 (I915_READ(IPS_CTL) & IPS_ENABLE);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03008281
Clint Taylorebb69c92014-09-30 10:30:22 -07008282 if (pipe_config->cpu_transcoder != TRANSCODER_EDP) {
8283 pipe_config->pixel_multiplier =
8284 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
8285 } else {
8286 pipe_config->pixel_multiplier = 1;
8287 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02008288
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008289 return true;
8290}
8291
Chris Wilson560b85b2010-08-07 11:01:38 +01008292static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
8293{
8294 struct drm_device *dev = crtc->dev;
8295 struct drm_i915_private *dev_priv = dev->dev_private;
8296 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälädc41c152014-08-13 11:57:05 +03008297 uint32_t cntl = 0, size = 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01008298
Ville Syrjälädc41c152014-08-13 11:57:05 +03008299 if (base) {
8300 unsigned int width = intel_crtc->cursor_width;
8301 unsigned int height = intel_crtc->cursor_height;
8302 unsigned int stride = roundup_pow_of_two(width) * 4;
8303
8304 switch (stride) {
8305 default:
8306 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
8307 width, stride);
8308 stride = 256;
8309 /* fallthrough */
8310 case 256:
8311 case 512:
8312 case 1024:
8313 case 2048:
8314 break;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008315 }
8316
Ville Syrjälädc41c152014-08-13 11:57:05 +03008317 cntl |= CURSOR_ENABLE |
8318 CURSOR_GAMMA_ENABLE |
8319 CURSOR_FORMAT_ARGB |
8320 CURSOR_STRIDE(stride);
8321
8322 size = (height << 12) | width;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008323 }
Chris Wilson560b85b2010-08-07 11:01:38 +01008324
Ville Syrjälädc41c152014-08-13 11:57:05 +03008325 if (intel_crtc->cursor_cntl != 0 &&
8326 (intel_crtc->cursor_base != base ||
8327 intel_crtc->cursor_size != size ||
8328 intel_crtc->cursor_cntl != cntl)) {
8329 /* On these chipsets we can only modify the base/size/stride
8330 * whilst the cursor is disabled.
8331 */
8332 I915_WRITE(_CURACNTR, 0);
8333 POSTING_READ(_CURACNTR);
8334 intel_crtc->cursor_cntl = 0;
8335 }
8336
Ville Syrjälä99d1f382014-09-12 20:53:32 +03008337 if (intel_crtc->cursor_base != base) {
Ville Syrjälädc41c152014-08-13 11:57:05 +03008338 I915_WRITE(_CURABASE, base);
Ville Syrjälä99d1f382014-09-12 20:53:32 +03008339 intel_crtc->cursor_base = base;
8340 }
Ville Syrjälädc41c152014-08-13 11:57:05 +03008341
8342 if (intel_crtc->cursor_size != size) {
8343 I915_WRITE(CURSIZE, size);
8344 intel_crtc->cursor_size = size;
8345 }
8346
Chris Wilson4b0e3332014-05-30 16:35:26 +03008347 if (intel_crtc->cursor_cntl != cntl) {
8348 I915_WRITE(_CURACNTR, cntl);
8349 POSTING_READ(_CURACNTR);
8350 intel_crtc->cursor_cntl = cntl;
8351 }
Chris Wilson560b85b2010-08-07 11:01:38 +01008352}
8353
8354static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
8355{
8356 struct drm_device *dev = crtc->dev;
8357 struct drm_i915_private *dev_priv = dev->dev_private;
8358 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8359 int pipe = intel_crtc->pipe;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008360 uint32_t cntl;
Chris Wilson560b85b2010-08-07 11:01:38 +01008361
Chris Wilson4b0e3332014-05-30 16:35:26 +03008362 cntl = 0;
8363 if (base) {
8364 cntl = MCURSOR_GAMMA_ENABLE;
8365 switch (intel_crtc->cursor_width) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308366 case 64:
8367 cntl |= CURSOR_MODE_64_ARGB_AX;
8368 break;
8369 case 128:
8370 cntl |= CURSOR_MODE_128_ARGB_AX;
8371 break;
8372 case 256:
8373 cntl |= CURSOR_MODE_256_ARGB_AX;
8374 break;
8375 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01008376 MISSING_CASE(intel_crtc->cursor_width);
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308377 return;
Chris Wilson560b85b2010-08-07 11:01:38 +01008378 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03008379 cntl |= pipe << 28; /* Connect to correct pipe */
Ville Syrjälä47bf17a2014-09-12 20:53:33 +03008380
8381 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
8382 cntl |= CURSOR_PIPE_CSC_ENABLE;
Chris Wilson560b85b2010-08-07 11:01:38 +01008383 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03008384
Matt Roper8e7d6882015-01-21 16:35:41 -08008385 if (crtc->cursor->state->rotation == BIT(DRM_ROTATE_180))
Ville Syrjälä4398ad42014-10-23 07:41:34 -07008386 cntl |= CURSOR_ROTATE_180;
8387
Chris Wilson4b0e3332014-05-30 16:35:26 +03008388 if (intel_crtc->cursor_cntl != cntl) {
8389 I915_WRITE(CURCNTR(pipe), cntl);
8390 POSTING_READ(CURCNTR(pipe));
8391 intel_crtc->cursor_cntl = cntl;
8392 }
8393
Jesse Barnes65a21cd2011-10-12 11:10:21 -07008394 /* and commit changes on next vblank */
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008395 I915_WRITE(CURBASE(pipe), base);
8396 POSTING_READ(CURBASE(pipe));
Ville Syrjälä99d1f382014-09-12 20:53:32 +03008397
8398 intel_crtc->cursor_base = base;
Jesse Barnes65a21cd2011-10-12 11:10:21 -07008399}
8400
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008401/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01008402static void intel_crtc_update_cursor(struct drm_crtc *crtc,
8403 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008404{
8405 struct drm_device *dev = crtc->dev;
8406 struct drm_i915_private *dev_priv = dev->dev_private;
8407 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8408 int pipe = intel_crtc->pipe;
Matt Roper3d7d6512014-06-10 08:28:13 -07008409 int x = crtc->cursor_x;
8410 int y = crtc->cursor_y;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008411 u32 base = 0, pos = 0;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008412
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008413 if (on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008414 base = intel_crtc->cursor_addr;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008415
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008416 if (x >= intel_crtc->config->pipe_src_w)
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008417 base = 0;
8418
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008419 if (y >= intel_crtc->config->pipe_src_h)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008420 base = 0;
8421
8422 if (x < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03008423 if (x + intel_crtc->cursor_width <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008424 base = 0;
8425
8426 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
8427 x = -x;
8428 }
8429 pos |= x << CURSOR_X_SHIFT;
8430
8431 if (y < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03008432 if (y + intel_crtc->cursor_height <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008433 base = 0;
8434
8435 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
8436 y = -y;
8437 }
8438 pos |= y << CURSOR_Y_SHIFT;
8439
Chris Wilson4b0e3332014-05-30 16:35:26 +03008440 if (base == 0 && intel_crtc->cursor_base == 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008441 return;
8442
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008443 I915_WRITE(CURPOS(pipe), pos);
8444
Ville Syrjälä4398ad42014-10-23 07:41:34 -07008445 /* ILK+ do this automagically */
8446 if (HAS_GMCH_DISPLAY(dev) &&
Matt Roper8e7d6882015-01-21 16:35:41 -08008447 crtc->cursor->state->rotation == BIT(DRM_ROTATE_180)) {
Ville Syrjälä4398ad42014-10-23 07:41:34 -07008448 base += (intel_crtc->cursor_height *
8449 intel_crtc->cursor_width - 1) * 4;
8450 }
8451
Ville Syrjälä8ac54662014-08-12 19:39:54 +03008452 if (IS_845G(dev) || IS_I865G(dev))
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008453 i845_update_cursor(crtc, base);
8454 else
8455 i9xx_update_cursor(crtc, base);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008456}
8457
Ville Syrjälädc41c152014-08-13 11:57:05 +03008458static bool cursor_size_ok(struct drm_device *dev,
8459 uint32_t width, uint32_t height)
8460{
8461 if (width == 0 || height == 0)
8462 return false;
8463
8464 /*
8465 * 845g/865g are special in that they are only limited by
8466 * the width of their cursors, the height is arbitrary up to
8467 * the precision of the register. Everything else requires
8468 * square cursors, limited to a few power-of-two sizes.
8469 */
8470 if (IS_845G(dev) || IS_I865G(dev)) {
8471 if ((width & 63) != 0)
8472 return false;
8473
8474 if (width > (IS_845G(dev) ? 64 : 512))
8475 return false;
8476
8477 if (height > 1023)
8478 return false;
8479 } else {
8480 switch (width | height) {
8481 case 256:
8482 case 128:
8483 if (IS_GEN2(dev))
8484 return false;
8485 case 64:
8486 break;
8487 default:
8488 return false;
8489 }
8490 }
8491
8492 return true;
8493}
8494
Jesse Barnes79e53942008-11-07 14:24:08 -08008495static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01008496 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08008497{
James Simmons72034252010-08-03 01:33:19 +01008498 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08008499 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008500
James Simmons72034252010-08-03 01:33:19 +01008501 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008502 intel_crtc->lut_r[i] = red[i] >> 8;
8503 intel_crtc->lut_g[i] = green[i] >> 8;
8504 intel_crtc->lut_b[i] = blue[i] >> 8;
8505 }
8506
8507 intel_crtc_load_lut(crtc);
8508}
8509
Jesse Barnes79e53942008-11-07 14:24:08 -08008510/* VESA 640x480x72Hz mode to set on the pipe */
8511static struct drm_display_mode load_detect_mode = {
8512 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
8513 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
8514};
8515
Daniel Vettera8bb6812014-02-10 18:00:39 +01008516struct drm_framebuffer *
8517__intel_framebuffer_create(struct drm_device *dev,
8518 struct drm_mode_fb_cmd2 *mode_cmd,
8519 struct drm_i915_gem_object *obj)
Chris Wilsond2dff872011-04-19 08:36:26 +01008520{
8521 struct intel_framebuffer *intel_fb;
8522 int ret;
8523
8524 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
8525 if (!intel_fb) {
Alexey Khoroshilov6ccb81f2014-11-08 01:41:23 +03008526 drm_gem_object_unreference(&obj->base);
Chris Wilsond2dff872011-04-19 08:36:26 +01008527 return ERR_PTR(-ENOMEM);
8528 }
8529
8530 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008531 if (ret)
8532 goto err;
Chris Wilsond2dff872011-04-19 08:36:26 +01008533
8534 return &intel_fb->base;
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008535err:
Alexey Khoroshilov6ccb81f2014-11-08 01:41:23 +03008536 drm_gem_object_unreference(&obj->base);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008537 kfree(intel_fb);
8538
8539 return ERR_PTR(ret);
Chris Wilsond2dff872011-04-19 08:36:26 +01008540}
8541
Daniel Vetterb5ea6422014-03-02 21:18:00 +01008542static struct drm_framebuffer *
Daniel Vettera8bb6812014-02-10 18:00:39 +01008543intel_framebuffer_create(struct drm_device *dev,
8544 struct drm_mode_fb_cmd2 *mode_cmd,
8545 struct drm_i915_gem_object *obj)
8546{
8547 struct drm_framebuffer *fb;
8548 int ret;
8549
8550 ret = i915_mutex_lock_interruptible(dev);
8551 if (ret)
8552 return ERR_PTR(ret);
8553 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
8554 mutex_unlock(&dev->struct_mutex);
8555
8556 return fb;
8557}
8558
Chris Wilsond2dff872011-04-19 08:36:26 +01008559static u32
8560intel_framebuffer_pitch_for_width(int width, int bpp)
8561{
8562 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
8563 return ALIGN(pitch, 64);
8564}
8565
8566static u32
8567intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
8568{
8569 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
Fabian Frederick1267a262014-07-01 20:39:41 +02008570 return PAGE_ALIGN(pitch * mode->vdisplay);
Chris Wilsond2dff872011-04-19 08:36:26 +01008571}
8572
8573static struct drm_framebuffer *
8574intel_framebuffer_create_for_mode(struct drm_device *dev,
8575 struct drm_display_mode *mode,
8576 int depth, int bpp)
8577{
8578 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +00008579 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +01008580
8581 obj = i915_gem_alloc_object(dev,
8582 intel_framebuffer_size_for_mode(mode, bpp));
8583 if (obj == NULL)
8584 return ERR_PTR(-ENOMEM);
8585
8586 mode_cmd.width = mode->hdisplay;
8587 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008588 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
8589 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00008590 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01008591
8592 return intel_framebuffer_create(dev, &mode_cmd, obj);
8593}
8594
8595static struct drm_framebuffer *
8596mode_fits_in_fbdev(struct drm_device *dev,
8597 struct drm_display_mode *mode)
8598{
Daniel Vetter4520f532013-10-09 09:18:51 +02008599#ifdef CONFIG_DRM_I915_FBDEV
Chris Wilsond2dff872011-04-19 08:36:26 +01008600 struct drm_i915_private *dev_priv = dev->dev_private;
8601 struct drm_i915_gem_object *obj;
8602 struct drm_framebuffer *fb;
8603
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008604 if (!dev_priv->fbdev)
8605 return NULL;
8606
8607 if (!dev_priv->fbdev->fb)
Chris Wilsond2dff872011-04-19 08:36:26 +01008608 return NULL;
8609
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008610 obj = dev_priv->fbdev->fb->obj;
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008611 BUG_ON(!obj);
Chris Wilsond2dff872011-04-19 08:36:26 +01008612
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008613 fb = &dev_priv->fbdev->fb->base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008614 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
8615 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01008616 return NULL;
8617
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008618 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01008619 return NULL;
8620
8621 return fb;
Daniel Vetter4520f532013-10-09 09:18:51 +02008622#else
8623 return NULL;
8624#endif
Chris Wilsond2dff872011-04-19 08:36:26 +01008625}
8626
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008627bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01008628 struct drm_display_mode *mode,
Rob Clark51fd3712013-11-19 12:10:12 -05008629 struct intel_load_detect_pipe *old,
8630 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -08008631{
8632 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008633 struct intel_encoder *intel_encoder =
8634 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08008635 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01008636 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08008637 struct drm_crtc *crtc = NULL;
8638 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02008639 struct drm_framebuffer *fb;
Rob Clark51fd3712013-11-19 12:10:12 -05008640 struct drm_mode_config *config = &dev->mode_config;
8641 int ret, i = -1;
Jesse Barnes79e53942008-11-07 14:24:08 -08008642
Chris Wilsond2dff872011-04-19 08:36:26 +01008643 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03008644 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +03008645 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +01008646
Rob Clark51fd3712013-11-19 12:10:12 -05008647retry:
8648 ret = drm_modeset_lock(&config->connection_mutex, ctx);
8649 if (ret)
8650 goto fail_unlock;
Daniel Vetter6e9f7982014-05-29 23:54:47 +02008651
Jesse Barnes79e53942008-11-07 14:24:08 -08008652 /*
8653 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01008654 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008655 * - if the connector already has an assigned crtc, use it (but make
8656 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01008657 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008658 * - try to find the first unused crtc that can drive this connector,
8659 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08008660 */
8661
8662 /* See if we already have a CRTC for this connector */
8663 if (encoder->crtc) {
8664 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01008665
Rob Clark51fd3712013-11-19 12:10:12 -05008666 ret = drm_modeset_lock(&crtc->mutex, ctx);
8667 if (ret)
8668 goto fail_unlock;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01008669 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
8670 if (ret)
8671 goto fail_unlock;
Daniel Vetter7b240562012-12-12 00:35:33 +01008672
Daniel Vetter24218aa2012-08-12 19:27:11 +02008673 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008674 old->load_detect_temp = false;
8675
8676 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008677 if (connector->dpms != DRM_MODE_DPMS_ON)
8678 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01008679
Chris Wilson71731882011-04-19 23:10:58 +01008680 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08008681 }
8682
8683 /* Find an unused one (if possible) */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008684 for_each_crtc(dev, possible_crtc) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008685 i++;
8686 if (!(encoder->possible_crtcs & (1 << i)))
8687 continue;
Ville Syrjäläa4592492014-08-11 13:15:36 +03008688 if (possible_crtc->enabled)
8689 continue;
8690 /* This can occur when applying the pipe A quirk on resume. */
8691 if (to_intel_crtc(possible_crtc)->new_enabled)
8692 continue;
8693
8694 crtc = possible_crtc;
8695 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08008696 }
8697
8698 /*
8699 * If we didn't find an unused CRTC, don't use any.
8700 */
8701 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01008702 DRM_DEBUG_KMS("no pipe available for load-detect\n");
Rob Clark51fd3712013-11-19 12:10:12 -05008703 goto fail_unlock;
Jesse Barnes79e53942008-11-07 14:24:08 -08008704 }
8705
Rob Clark51fd3712013-11-19 12:10:12 -05008706 ret = drm_modeset_lock(&crtc->mutex, ctx);
8707 if (ret)
8708 goto fail_unlock;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01008709 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
8710 if (ret)
8711 goto fail_unlock;
Daniel Vetterfc303102012-07-09 10:40:58 +02008712 intel_encoder->new_crtc = to_intel_crtc(crtc);
8713 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008714
8715 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008716 intel_crtc->new_enabled = true;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008717 intel_crtc->new_config = intel_crtc->config;
Daniel Vetter24218aa2012-08-12 19:27:11 +02008718 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008719 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01008720 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08008721
Chris Wilson64927112011-04-20 07:25:26 +01008722 if (!mode)
8723 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08008724
Chris Wilsond2dff872011-04-19 08:36:26 +01008725 /* We need a framebuffer large enough to accommodate all accesses
8726 * that the plane may generate whilst we perform load detection.
8727 * We can not rely on the fbcon either being present (we get called
8728 * during its initialisation to detect all boot displays, or it may
8729 * not even exist) or that it is large enough to satisfy the
8730 * requested mode.
8731 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02008732 fb = mode_fits_in_fbdev(dev, mode);
8733 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008734 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008735 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
8736 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01008737 } else
8738 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008739 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008740 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008741 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008742 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008743
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008744 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01008745 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01008746 if (old->release_fb)
8747 old->release_fb->funcs->destroy(old->release_fb);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008748 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008749 }
Chris Wilson71731882011-04-19 23:10:58 +01008750
Jesse Barnes79e53942008-11-07 14:24:08 -08008751 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008752 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +01008753 return true;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008754
8755 fail:
8756 intel_crtc->new_enabled = crtc->enabled;
8757 if (intel_crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008758 intel_crtc->new_config = intel_crtc->config;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008759 else
8760 intel_crtc->new_config = NULL;
Rob Clark51fd3712013-11-19 12:10:12 -05008761fail_unlock:
8762 if (ret == -EDEADLK) {
8763 drm_modeset_backoff(ctx);
8764 goto retry;
8765 }
8766
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008767 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08008768}
8769
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008770void intel_release_load_detect_pipe(struct drm_connector *connector,
Ville Syrjälä208bf9f2014-08-11 13:15:35 +03008771 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08008772{
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008773 struct intel_encoder *intel_encoder =
8774 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01008775 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +01008776 struct drm_crtc *crtc = encoder->crtc;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008777 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008778
Chris Wilsond2dff872011-04-19 08:36:26 +01008779 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03008780 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +03008781 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +01008782
Chris Wilson8261b192011-04-19 23:18:09 +01008783 if (old->load_detect_temp) {
Daniel Vetterfc303102012-07-09 10:40:58 +02008784 to_intel_connector(connector)->new_encoder = NULL;
8785 intel_encoder->new_crtc = NULL;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008786 intel_crtc->new_enabled = false;
8787 intel_crtc->new_config = NULL;
Daniel Vetterfc303102012-07-09 10:40:58 +02008788 intel_set_mode(crtc, NULL, 0, 0, NULL);
Chris Wilsond2dff872011-04-19 08:36:26 +01008789
Daniel Vetter36206362012-12-10 20:42:17 +01008790 if (old->release_fb) {
8791 drm_framebuffer_unregister_private(old->release_fb);
8792 drm_framebuffer_unreference(old->release_fb);
8793 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008794
Chris Wilson0622a532011-04-21 09:32:11 +01008795 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008796 }
8797
Eric Anholtc751ce42010-03-25 11:48:48 -07008798 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008799 if (old->dpms_mode != DRM_MODE_DPMS_ON)
8800 connector->funcs->dpms(connector, old->dpms_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08008801}
8802
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008803static int i9xx_pll_refclk(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008804 const struct intel_crtc_state *pipe_config)
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008805{
8806 struct drm_i915_private *dev_priv = dev->dev_private;
8807 u32 dpll = pipe_config->dpll_hw_state.dpll;
8808
8809 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008810 return dev_priv->vbt.lvds_ssc_freq;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008811 else if (HAS_PCH_SPLIT(dev))
8812 return 120000;
8813 else if (!IS_GEN2(dev))
8814 return 96000;
8815 else
8816 return 48000;
8817}
8818
Jesse Barnes79e53942008-11-07 14:24:08 -08008819/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008820static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008821 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08008822{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008823 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08008824 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008825 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008826 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -08008827 u32 fp;
8828 intel_clock_t clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008829 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -08008830
8831 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +03008832 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008833 else
Ville Syrjälä293623f2013-09-13 16:18:46 +03008834 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -08008835
8836 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008837 if (IS_PINEVIEW(dev)) {
8838 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
8839 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08008840 } else {
8841 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
8842 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
8843 }
8844
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008845 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008846 if (IS_PINEVIEW(dev))
8847 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
8848 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08008849 else
8850 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08008851 DPLL_FPA01_P1_POST_DIV_SHIFT);
8852
8853 switch (dpll & DPLL_MODE_MASK) {
8854 case DPLLB_MODE_DAC_SERIAL:
8855 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
8856 5 : 10;
8857 break;
8858 case DPLLB_MODE_LVDS:
8859 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
8860 7 : 14;
8861 break;
8862 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08008863 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08008864 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008865 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008866 }
8867
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008868 if (IS_PINEVIEW(dev))
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008869 pineview_clock(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008870 else
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008871 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008872 } else {
Ville Syrjälä0fb58222014-01-10 14:06:46 +02008873 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008874 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
Jesse Barnes79e53942008-11-07 14:24:08 -08008875
8876 if (is_lvds) {
8877 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
8878 DPLL_FPA01_P1_POST_DIV_SHIFT);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008879
8880 if (lvds & LVDS_CLKB_POWER_UP)
8881 clock.p2 = 7;
8882 else
8883 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -08008884 } else {
8885 if (dpll & PLL_P1_DIVIDE_BY_TWO)
8886 clock.p1 = 2;
8887 else {
8888 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
8889 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
8890 }
8891 if (dpll & PLL_P2_DIVIDE_BY_4)
8892 clock.p2 = 4;
8893 else
8894 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -08008895 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008896
8897 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008898 }
8899
Ville Syrjälä18442d02013-09-13 16:00:08 +03008900 /*
8901 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +01008902 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +03008903 * encoder's get_config() function.
8904 */
8905 pipe_config->port_clock = clock.dot;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008906}
8907
Ville Syrjälä6878da02013-09-13 15:59:11 +03008908int intel_dotclock_calculate(int link_freq,
8909 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008910{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008911 /*
8912 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008913 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008914 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008915 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008916 *
8917 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008918 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -08008919 */
8920
Ville Syrjälä6878da02013-09-13 15:59:11 +03008921 if (!m_n->link_n)
8922 return 0;
8923
8924 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
8925}
8926
Ville Syrjälä18442d02013-09-13 16:00:08 +03008927static void ironlake_pch_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008928 struct intel_crtc_state *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +03008929{
8930 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä18442d02013-09-13 16:00:08 +03008931
8932 /* read out port_clock from the DPLL */
8933 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +03008934
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008935 /*
Ville Syrjälä18442d02013-09-13 16:00:08 +03008936 * This value does not include pixel_multiplier.
Damien Lespiau241bfc32013-09-25 16:45:37 +01008937 * We will check that port_clock and adjusted_mode.crtc_clock
Ville Syrjälä18442d02013-09-13 16:00:08 +03008938 * agree once we know their relationship in the encoder's
8939 * get_config() function.
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008940 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02008941 pipe_config->base.adjusted_mode.crtc_clock =
Ville Syrjälä18442d02013-09-13 16:00:08 +03008942 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
8943 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -08008944}
8945
8946/** Returns the currently programmed mode of the given pipe. */
8947struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
8948 struct drm_crtc *crtc)
8949{
Jesse Barnes548f2452011-02-17 10:40:53 -08008950 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08008951 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008952 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008953 struct drm_display_mode *mode;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008954 struct intel_crtc_state pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -02008955 int htot = I915_READ(HTOTAL(cpu_transcoder));
8956 int hsync = I915_READ(HSYNC(cpu_transcoder));
8957 int vtot = I915_READ(VTOTAL(cpu_transcoder));
8958 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +03008959 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08008960
8961 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
8962 if (!mode)
8963 return NULL;
8964
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008965 /*
8966 * Construct a pipe_config sufficient for getting the clock info
8967 * back out of crtc_clock_get.
8968 *
8969 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
8970 * to use a real value here instead.
8971 */
Ville Syrjälä293623f2013-09-13 16:18:46 +03008972 pipe_config.cpu_transcoder = (enum transcoder) pipe;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008973 pipe_config.pixel_multiplier = 1;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008974 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
8975 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
8976 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008977 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
8978
Ville Syrjälä773ae032013-09-23 17:48:20 +03008979 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -08008980 mode->hdisplay = (htot & 0xffff) + 1;
8981 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
8982 mode->hsync_start = (hsync & 0xffff) + 1;
8983 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
8984 mode->vdisplay = (vtot & 0xffff) + 1;
8985 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
8986 mode->vsync_start = (vsync & 0xffff) + 1;
8987 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
8988
8989 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08008990
8991 return mode;
8992}
8993
Jesse Barnes652c3932009-08-17 13:31:43 -07008994static void intel_decrease_pllclock(struct drm_crtc *crtc)
8995{
8996 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +03008997 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -07008998 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07008999
Sonika Jindalbaff2962014-07-22 11:16:35 +05309000 if (!HAS_GMCH_DISPLAY(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07009001 return;
9002
9003 if (!dev_priv->lvds_downclock_avail)
9004 return;
9005
9006 /*
9007 * Since this is called by a timer, we should never get here in
9008 * the manual case.
9009 */
9010 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01009011 int pipe = intel_crtc->pipe;
9012 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02009013 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01009014
Zhao Yakui44d98a62009-10-09 11:39:40 +08009015 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07009016
Sean Paul8ac5a6d2012-02-13 13:14:51 -05009017 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07009018
Chris Wilson074b5e12012-05-02 12:07:06 +01009019 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07009020 dpll |= DISPLAY_RATE_SELECT_FPA1;
9021 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07009022 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07009023 dpll = I915_READ(dpll_reg);
9024 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08009025 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07009026 }
9027
9028}
9029
Chris Wilsonf047e392012-07-21 12:31:41 +01009030void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07009031{
Paulo Zanonic67a4702013-08-19 13:18:09 -03009032 struct drm_i915_private *dev_priv = dev->dev_private;
9033
Chris Wilsonf62a0072014-02-21 17:55:39 +00009034 if (dev_priv->mm.busy)
9035 return;
9036
Paulo Zanoni43694d62014-03-07 20:08:08 -03009037 intel_runtime_pm_get(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009038 i915_update_gfx_val(dev_priv);
Chris Wilsonf62a0072014-02-21 17:55:39 +00009039 dev_priv->mm.busy = true;
Chris Wilsonf047e392012-07-21 12:31:41 +01009040}
9041
9042void intel_mark_idle(struct drm_device *dev)
9043{
Paulo Zanonic67a4702013-08-19 13:18:09 -03009044 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson725a5b52013-01-08 11:02:57 +00009045 struct drm_crtc *crtc;
9046
Chris Wilsonf62a0072014-02-21 17:55:39 +00009047 if (!dev_priv->mm.busy)
9048 return;
9049
9050 dev_priv->mm.busy = false;
9051
Jani Nikulad330a952014-01-21 11:24:25 +02009052 if (!i915.powersave)
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03009053 goto out;
Chris Wilson725a5b52013-01-08 11:02:57 +00009054
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01009055 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -07009056 if (!crtc->primary->fb)
Chris Wilson725a5b52013-01-08 11:02:57 +00009057 continue;
9058
9059 intel_decrease_pllclock(crtc);
9060 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01009061
Damien Lespiau3d13ef22014-02-07 19:12:47 +00009062 if (INTEL_INFO(dev)->gen >= 6)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01009063 gen6_rps_idle(dev->dev_private);
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03009064
9065out:
Paulo Zanoni43694d62014-03-07 20:08:08 -03009066 intel_runtime_pm_put(dev_priv);
Chris Wilsonf047e392012-07-21 12:31:41 +01009067}
9068
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +02009069static void intel_crtc_set_state(struct intel_crtc *crtc,
9070 struct intel_crtc_state *crtc_state)
9071{
9072 kfree(crtc->config);
9073 crtc->config = crtc_state;
Ander Conselvan de Oliveira16f3f652015-01-15 14:55:27 +02009074 crtc->base.state = &crtc_state->base;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +02009075}
9076
Jesse Barnes79e53942008-11-07 14:24:08 -08009077static void intel_crtc_destroy(struct drm_crtc *crtc)
9078{
9079 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009080 struct drm_device *dev = crtc->dev;
9081 struct intel_unpin_work *work;
Daniel Vetter67e77c52010-08-20 22:26:30 +02009082
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009083 spin_lock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009084 work = intel_crtc->unpin_work;
9085 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009086 spin_unlock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009087
9088 if (work) {
9089 cancel_work_sync(&work->work);
9090 kfree(work);
9091 }
Jesse Barnes79e53942008-11-07 14:24:08 -08009092
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +02009093 intel_crtc_set_state(intel_crtc, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08009094 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009095
Jesse Barnes79e53942008-11-07 14:24:08 -08009096 kfree(intel_crtc);
9097}
9098
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009099static void intel_unpin_work_fn(struct work_struct *__work)
9100{
9101 struct intel_unpin_work *work =
9102 container_of(__work, struct intel_unpin_work, work);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009103 struct drm_device *dev = work->crtc->dev;
Daniel Vetterf99d7062014-06-19 16:01:59 +02009104 enum pipe pipe = to_intel_crtc(work->crtc)->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009105
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009106 mutex_lock(&dev->struct_mutex);
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +00009107 intel_unpin_fb_obj(intel_fb_obj(work->old_fb));
Chris Wilson05394f32010-11-08 19:18:58 +00009108 drm_gem_object_unreference(&work->pending_flip_obj->base);
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +00009109 drm_framebuffer_unreference(work->old_fb);
Chris Wilsond9e86c02010-11-10 16:40:20 +00009110
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02009111 intel_fbc_update(dev);
John Harrisonf06cc1b2014-11-24 18:49:37 +00009112
9113 if (work->flip_queued_req)
John Harrison146d84f2014-12-05 13:49:33 +00009114 i915_gem_request_assign(&work->flip_queued_req, NULL);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009115 mutex_unlock(&dev->struct_mutex);
9116
Daniel Vetterf99d7062014-06-19 16:01:59 +02009117 intel_frontbuffer_flip_complete(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
9118
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009119 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
9120 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
9121
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009122 kfree(work);
9123}
9124
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009125static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01009126 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009127{
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009128 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9129 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009130 unsigned long flags;
9131
9132 /* Ignore early vblank irqs */
9133 if (intel_crtc == NULL)
9134 return;
9135
Daniel Vetterf3260382014-09-15 14:55:23 +02009136 /*
9137 * This is called both by irq handlers and the reset code (to complete
9138 * lost pageflips) so needs the full irqsave spinlocks.
9139 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009140 spin_lock_irqsave(&dev->event_lock, flags);
9141 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +00009142
9143 /* Ensure we don't miss a work->pending update ... */
9144 smp_rmb();
9145
9146 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009147 spin_unlock_irqrestore(&dev->event_lock, flags);
9148 return;
9149 }
9150
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009151 page_flip_completed(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01009152
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009153 spin_unlock_irqrestore(&dev->event_lock, flags);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009154}
9155
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009156void intel_finish_page_flip(struct drm_device *dev, int pipe)
9157{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009158 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009159 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
9160
Mario Kleiner49b14a52010-12-09 07:00:07 +01009161 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009162}
9163
9164void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
9165{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009166 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009167 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
9168
Mario Kleiner49b14a52010-12-09 07:00:07 +01009169 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009170}
9171
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009172/* Is 'a' after or equal to 'b'? */
9173static bool g4x_flip_count_after_eq(u32 a, u32 b)
9174{
9175 return !((a - b) & 0x80000000);
9176}
9177
9178static bool page_flip_finished(struct intel_crtc *crtc)
9179{
9180 struct drm_device *dev = crtc->base.dev;
9181 struct drm_i915_private *dev_priv = dev->dev_private;
9182
Ville Syrjäläbdfa7542014-05-27 21:33:09 +03009183 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
9184 crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
9185 return true;
9186
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009187 /*
9188 * The relevant registers doen't exist on pre-ctg.
9189 * As the flip done interrupt doesn't trigger for mmio
9190 * flips on gmch platforms, a flip count check isn't
9191 * really needed there. But since ctg has the registers,
9192 * include it in the check anyway.
9193 */
9194 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
9195 return true;
9196
9197 /*
9198 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
9199 * used the same base address. In that case the mmio flip might
9200 * have completed, but the CS hasn't even executed the flip yet.
9201 *
9202 * A flip count check isn't enough as the CS might have updated
9203 * the base address just after start of vblank, but before we
9204 * managed to process the interrupt. This means we'd complete the
9205 * CS flip too soon.
9206 *
9207 * Combining both checks should get us a good enough result. It may
9208 * still happen that the CS flip has been executed, but has not
9209 * yet actually completed. But in case the base address is the same
9210 * anyway, we don't really care.
9211 */
9212 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
9213 crtc->unpin_work->gtt_offset &&
9214 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_GM45(crtc->pipe)),
9215 crtc->unpin_work->flip_count);
9216}
9217
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009218void intel_prepare_page_flip(struct drm_device *dev, int plane)
9219{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009220 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009221 struct intel_crtc *intel_crtc =
9222 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
9223 unsigned long flags;
9224
Daniel Vetterf3260382014-09-15 14:55:23 +02009225
9226 /*
9227 * This is called both by irq handlers and the reset code (to complete
9228 * lost pageflips) so needs the full irqsave spinlocks.
9229 *
9230 * NB: An MMIO update of the plane base pointer will also
Chris Wilsone7d841c2012-12-03 11:36:30 +00009231 * generate a page-flip completion irq, i.e. every modeset
9232 * is also accompanied by a spurious intel_prepare_page_flip().
9233 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009234 spin_lock_irqsave(&dev->event_lock, flags);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009235 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
Chris Wilsone7d841c2012-12-03 11:36:30 +00009236 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009237 spin_unlock_irqrestore(&dev->event_lock, flags);
9238}
9239
Robin Schroereba905b2014-05-18 02:24:50 +02009240static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
Chris Wilsone7d841c2012-12-03 11:36:30 +00009241{
9242 /* Ensure that the work item is consistent when activating it ... */
9243 smp_wmb();
9244 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
9245 /* and that it is marked active as soon as the irq could fire. */
9246 smp_wmb();
9247}
9248
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009249static int intel_gen2_queue_flip(struct drm_device *dev,
9250 struct drm_crtc *crtc,
9251 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009252 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009253 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009254 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009255{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009256 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009257 u32 flip_mask;
9258 int ret;
9259
Daniel Vetter6d90c952012-04-26 23:28:05 +02009260 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009261 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009262 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009263
9264 /* Can't queue multiple flips, so wait for the previous
9265 * one to finish before executing the next.
9266 */
9267 if (intel_crtc->plane)
9268 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
9269 else
9270 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009271 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
9272 intel_ring_emit(ring, MI_NOOP);
9273 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9274 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9275 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009276 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02009277 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +00009278
9279 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009280 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009281 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009282}
9283
9284static int intel_gen3_queue_flip(struct drm_device *dev,
9285 struct drm_crtc *crtc,
9286 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009287 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009288 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009289 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009290{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009291 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009292 u32 flip_mask;
9293 int ret;
9294
Daniel Vetter6d90c952012-04-26 23:28:05 +02009295 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009296 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009297 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009298
9299 if (intel_crtc->plane)
9300 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
9301 else
9302 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009303 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
9304 intel_ring_emit(ring, MI_NOOP);
9305 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
9306 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9307 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009308 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02009309 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009310
Chris Wilsone7d841c2012-12-03 11:36:30 +00009311 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009312 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009313 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009314}
9315
9316static int intel_gen4_queue_flip(struct drm_device *dev,
9317 struct drm_crtc *crtc,
9318 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009319 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009320 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009321 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009322{
9323 struct drm_i915_private *dev_priv = dev->dev_private;
9324 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9325 uint32_t pf, pipesrc;
9326 int ret;
9327
Daniel Vetter6d90c952012-04-26 23:28:05 +02009328 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009329 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009330 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009331
9332 /* i965+ uses the linear or tiled offsets from the
9333 * Display Registers (which do not change across a page-flip)
9334 * so we need only reprogram the base address.
9335 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02009336 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9337 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9338 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009339 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
Daniel Vetterc2c75132012-07-05 12:17:30 +02009340 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009341
9342 /* XXX Enabling the panel-fitter across page-flip is so far
9343 * untested on non-native modes, so ignore it for now.
9344 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
9345 */
9346 pf = 0;
9347 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009348 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009349
9350 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009351 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009352 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009353}
9354
9355static int intel_gen6_queue_flip(struct drm_device *dev,
9356 struct drm_crtc *crtc,
9357 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009358 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009359 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009360 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009361{
9362 struct drm_i915_private *dev_priv = dev->dev_private;
9363 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9364 uint32_t pf, pipesrc;
9365 int ret;
9366
Daniel Vetter6d90c952012-04-26 23:28:05 +02009367 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009368 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009369 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009370
Daniel Vetter6d90c952012-04-26 23:28:05 +02009371 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9372 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9373 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009374 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009375
Chris Wilson99d9acd2012-04-17 20:37:00 +01009376 /* Contrary to the suggestions in the documentation,
9377 * "Enable Panel Fitter" does not seem to be required when page
9378 * flipping with a non-native mode, and worse causes a normal
9379 * modeset to fail.
9380 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
9381 */
9382 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009383 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009384 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009385
9386 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009387 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009388 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009389}
9390
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009391static int intel_gen7_queue_flip(struct drm_device *dev,
9392 struct drm_crtc *crtc,
9393 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009394 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009395 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009396 uint32_t flags)
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009397{
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009398 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009399 uint32_t plane_bit = 0;
Chris Wilsonffe74d72013-08-26 20:58:12 +01009400 int len, ret;
9401
Robin Schroereba905b2014-05-18 02:24:50 +02009402 switch (intel_crtc->plane) {
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009403 case PLANE_A:
9404 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
9405 break;
9406 case PLANE_B:
9407 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
9408 break;
9409 case PLANE_C:
9410 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
9411 break;
9412 default:
9413 WARN_ONCE(1, "unknown plane in flip command\n");
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009414 return -ENODEV;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009415 }
9416
Chris Wilsonffe74d72013-08-26 20:58:12 +01009417 len = 4;
Damien Lespiauf4768282014-04-07 20:24:34 +01009418 if (ring->id == RCS) {
Chris Wilsonffe74d72013-08-26 20:58:12 +01009419 len += 6;
Damien Lespiauf4768282014-04-07 20:24:34 +01009420 /*
9421 * On Gen 8, SRM is now taking an extra dword to accommodate
9422 * 48bits addresses, and we need a NOOP for the batch size to
9423 * stay even.
9424 */
9425 if (IS_GEN8(dev))
9426 len += 2;
9427 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009428
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009429 /*
9430 * BSpec MI_DISPLAY_FLIP for IVB:
9431 * "The full packet must be contained within the same cache line."
9432 *
9433 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
9434 * cacheline, if we ever start emitting more commands before
9435 * the MI_DISPLAY_FLIP we may need to first emit everything else,
9436 * then do the cacheline alignment, and finally emit the
9437 * MI_DISPLAY_FLIP.
9438 */
9439 ret = intel_ring_cacheline_align(ring);
9440 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009441 return ret;
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009442
Chris Wilsonffe74d72013-08-26 20:58:12 +01009443 ret = intel_ring_begin(ring, len);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009444 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009445 return ret;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009446
Chris Wilsonffe74d72013-08-26 20:58:12 +01009447 /* Unmask the flip-done completion message. Note that the bspec says that
9448 * we should do this for both the BCS and RCS, and that we must not unmask
9449 * more than one flip event at any time (or ensure that one flip message
9450 * can be sent by waiting for flip-done prior to queueing new flips).
9451 * Experimentation says that BCS works despite DERRMR masking all
9452 * flip-done completion events and that unmasking all planes at once
9453 * for the RCS also doesn't appear to drop events. Setting the DERRMR
9454 * to zero does lead to lockups within MI_DISPLAY_FLIP.
9455 */
9456 if (ring->id == RCS) {
9457 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9458 intel_ring_emit(ring, DERRMR);
9459 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9460 DERRMR_PIPEB_PRI_FLIP_DONE |
9461 DERRMR_PIPEC_PRI_FLIP_DONE));
Damien Lespiauf4768282014-04-07 20:24:34 +01009462 if (IS_GEN8(dev))
9463 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9464 MI_SRM_LRM_GLOBAL_GTT);
9465 else
9466 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) |
9467 MI_SRM_LRM_GLOBAL_GTT);
Chris Wilsonffe74d72013-08-26 20:58:12 +01009468 intel_ring_emit(ring, DERRMR);
9469 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Damien Lespiauf4768282014-04-07 20:24:34 +01009470 if (IS_GEN8(dev)) {
9471 intel_ring_emit(ring, 0);
9472 intel_ring_emit(ring, MI_NOOP);
9473 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009474 }
9475
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009476 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02009477 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009478 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009479 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +00009480
9481 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009482 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009483 return 0;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009484}
9485
Sourab Gupta84c33a62014-06-02 16:47:17 +05309486static bool use_mmio_flip(struct intel_engine_cs *ring,
9487 struct drm_i915_gem_object *obj)
9488{
9489 /*
9490 * This is not being used for older platforms, because
9491 * non-availability of flip done interrupt forces us to use
9492 * CS flips. Older platforms derive flip done using some clever
9493 * tricks involving the flip_pending status bits and vblank irqs.
9494 * So using MMIO flips there would disrupt this mechanism.
9495 */
9496
Chris Wilson8e09bf82014-07-08 10:40:30 +01009497 if (ring == NULL)
9498 return true;
9499
Sourab Gupta84c33a62014-06-02 16:47:17 +05309500 if (INTEL_INFO(ring->dev)->gen < 5)
9501 return false;
9502
9503 if (i915.use_mmio_flip < 0)
9504 return false;
9505 else if (i915.use_mmio_flip > 0)
9506 return true;
Oscar Mateo14bf9932014-07-24 17:04:34 +01009507 else if (i915.enable_execlists)
9508 return true;
Sourab Gupta84c33a62014-06-02 16:47:17 +05309509 else
John Harrison41c52412014-11-24 18:49:43 +00009510 return ring != i915_gem_request_get_ring(obj->last_read_req);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309511}
9512
Damien Lespiauff944562014-11-20 14:58:16 +00009513static void skl_do_mmio_flip(struct intel_crtc *intel_crtc)
9514{
9515 struct drm_device *dev = intel_crtc->base.dev;
9516 struct drm_i915_private *dev_priv = dev->dev_private;
9517 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
9518 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
9519 struct drm_i915_gem_object *obj = intel_fb->obj;
9520 const enum pipe pipe = intel_crtc->pipe;
9521 u32 ctl, stride;
9522
9523 ctl = I915_READ(PLANE_CTL(pipe, 0));
9524 ctl &= ~PLANE_CTL_TILED_MASK;
9525 if (obj->tiling_mode == I915_TILING_X)
9526 ctl |= PLANE_CTL_TILED_X;
9527
9528 /*
9529 * The stride is either expressed as a multiple of 64 bytes chunks for
9530 * linear buffers or in number of tiles for tiled buffers.
9531 */
9532 stride = fb->pitches[0] >> 6;
9533 if (obj->tiling_mode == I915_TILING_X)
9534 stride = fb->pitches[0] >> 9; /* X tiles are 512 bytes wide */
9535
9536 /*
9537 * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on
9538 * PLANE_SURF updates, the update is then guaranteed to be atomic.
9539 */
9540 I915_WRITE(PLANE_CTL(pipe, 0), ctl);
9541 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
9542
9543 I915_WRITE(PLANE_SURF(pipe, 0), intel_crtc->unpin_work->gtt_offset);
9544 POSTING_READ(PLANE_SURF(pipe, 0));
9545}
9546
9547static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc)
Sourab Gupta84c33a62014-06-02 16:47:17 +05309548{
9549 struct drm_device *dev = intel_crtc->base.dev;
9550 struct drm_i915_private *dev_priv = dev->dev_private;
9551 struct intel_framebuffer *intel_fb =
9552 to_intel_framebuffer(intel_crtc->base.primary->fb);
9553 struct drm_i915_gem_object *obj = intel_fb->obj;
9554 u32 dspcntr;
9555 u32 reg;
9556
Sourab Gupta84c33a62014-06-02 16:47:17 +05309557 reg = DSPCNTR(intel_crtc->plane);
9558 dspcntr = I915_READ(reg);
9559
Damien Lespiauc5d97472014-10-25 00:11:11 +01009560 if (obj->tiling_mode != I915_TILING_NONE)
9561 dspcntr |= DISPPLANE_TILED;
9562 else
9563 dspcntr &= ~DISPPLANE_TILED;
9564
Sourab Gupta84c33a62014-06-02 16:47:17 +05309565 I915_WRITE(reg, dspcntr);
9566
9567 I915_WRITE(DSPSURF(intel_crtc->plane),
9568 intel_crtc->unpin_work->gtt_offset);
9569 POSTING_READ(DSPSURF(intel_crtc->plane));
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009570
Damien Lespiauff944562014-11-20 14:58:16 +00009571}
9572
9573/*
9574 * XXX: This is the temporary way to update the plane registers until we get
9575 * around to using the usual plane update functions for MMIO flips
9576 */
9577static void intel_do_mmio_flip(struct intel_crtc *intel_crtc)
9578{
9579 struct drm_device *dev = intel_crtc->base.dev;
9580 bool atomic_update;
9581 u32 start_vbl_count;
9582
9583 intel_mark_page_flip_active(intel_crtc);
9584
9585 atomic_update = intel_pipe_update_start(intel_crtc, &start_vbl_count);
9586
9587 if (INTEL_INFO(dev)->gen >= 9)
9588 skl_do_mmio_flip(intel_crtc);
9589 else
9590 /* use_mmio_flip() retricts MMIO flips to ilk+ */
9591 ilk_do_mmio_flip(intel_crtc);
9592
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009593 if (atomic_update)
9594 intel_pipe_update_end(intel_crtc, start_vbl_count);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309595}
9596
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009597static void intel_mmio_flip_work_func(struct work_struct *work)
Sourab Gupta84c33a62014-06-02 16:47:17 +05309598{
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009599 struct intel_crtc *crtc =
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009600 container_of(work, struct intel_crtc, mmio_flip.work);
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009601 struct intel_mmio_flip *mmio_flip;
Sourab Gupta84c33a62014-06-02 16:47:17 +05309602
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009603 mmio_flip = &crtc->mmio_flip;
9604 if (mmio_flip->req)
John Harrison9c654812014-11-24 18:49:35 +00009605 WARN_ON(__i915_wait_request(mmio_flip->req,
9606 crtc->reset_counter,
9607 false, NULL, NULL) != 0);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309608
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009609 intel_do_mmio_flip(crtc);
9610 if (mmio_flip->req) {
9611 mutex_lock(&crtc->base.dev->struct_mutex);
John Harrison146d84f2014-12-05 13:49:33 +00009612 i915_gem_request_assign(&mmio_flip->req, NULL);
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009613 mutex_unlock(&crtc->base.dev->struct_mutex);
9614 }
Sourab Gupta84c33a62014-06-02 16:47:17 +05309615}
9616
9617static int intel_queue_mmio_flip(struct drm_device *dev,
9618 struct drm_crtc *crtc,
9619 struct drm_framebuffer *fb,
9620 struct drm_i915_gem_object *obj,
9621 struct intel_engine_cs *ring,
9622 uint32_t flags)
9623{
Sourab Gupta84c33a62014-06-02 16:47:17 +05309624 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309625
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009626 i915_gem_request_assign(&intel_crtc->mmio_flip.req,
9627 obj->last_write_req);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309628
Ander Conselvan de Oliveira536f5b52014-11-06 11:03:40 +02009629 schedule_work(&intel_crtc->mmio_flip.work);
9630
Sourab Gupta84c33a62014-06-02 16:47:17 +05309631 return 0;
9632}
9633
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009634static int intel_default_queue_flip(struct drm_device *dev,
9635 struct drm_crtc *crtc,
9636 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009637 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009638 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009639 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009640{
9641 return -ENODEV;
9642}
9643
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009644static bool __intel_pageflip_stall_check(struct drm_device *dev,
9645 struct drm_crtc *crtc)
9646{
9647 struct drm_i915_private *dev_priv = dev->dev_private;
9648 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9649 struct intel_unpin_work *work = intel_crtc->unpin_work;
9650 u32 addr;
9651
9652 if (atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE)
9653 return true;
9654
9655 if (!work->enable_stall_check)
9656 return false;
9657
9658 if (work->flip_ready_vblank == 0) {
Daniel Vetter3a8a9462014-11-26 14:39:48 +01009659 if (work->flip_queued_req &&
9660 !i915_gem_request_completed(work->flip_queued_req, true))
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009661 return false;
9662
9663 work->flip_ready_vblank = drm_vblank_count(dev, intel_crtc->pipe);
9664 }
9665
9666 if (drm_vblank_count(dev, intel_crtc->pipe) - work->flip_ready_vblank < 3)
9667 return false;
9668
9669 /* Potential stall - if we see that the flip has happened,
9670 * assume a missed interrupt. */
9671 if (INTEL_INFO(dev)->gen >= 4)
9672 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane)));
9673 else
9674 addr = I915_READ(DSPADDR(intel_crtc->plane));
9675
9676 /* There is a potential issue here with a false positive after a flip
9677 * to the same address. We could address this by checking for a
9678 * non-incrementing frame counter.
9679 */
9680 return addr == work->gtt_offset;
9681}
9682
9683void intel_check_page_flip(struct drm_device *dev, int pipe)
9684{
9685 struct drm_i915_private *dev_priv = dev->dev_private;
9686 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
9687 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetterf3260382014-09-15 14:55:23 +02009688
9689 WARN_ON(!in_irq());
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009690
9691 if (crtc == NULL)
9692 return;
9693
Daniel Vetterf3260382014-09-15 14:55:23 +02009694 spin_lock(&dev->event_lock);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009695 if (intel_crtc->unpin_work && __intel_pageflip_stall_check(dev, crtc)) {
9696 WARN_ONCE(1, "Kicking stuck page flip: queued at %d, now %d\n",
9697 intel_crtc->unpin_work->flip_queued_vblank, drm_vblank_count(dev, pipe));
9698 page_flip_completed(intel_crtc);
9699 }
Daniel Vetterf3260382014-09-15 14:55:23 +02009700 spin_unlock(&dev->event_lock);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009701}
9702
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009703static int intel_crtc_page_flip(struct drm_crtc *crtc,
9704 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009705 struct drm_pending_vblank_event *event,
9706 uint32_t page_flip_flags)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009707{
9708 struct drm_device *dev = crtc->dev;
9709 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperf4510a22014-04-01 15:22:40 -07009710 struct drm_framebuffer *old_fb = crtc->primary->fb;
Matt Roper2ff8fde2014-07-08 07:50:07 -07009711 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009712 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Gustavo Padovan455a6802014-12-01 15:40:11 -08009713 struct drm_plane *primary = crtc->primary;
Daniel Vettera071fa02014-06-18 23:28:09 +02009714 enum pipe pipe = intel_crtc->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009715 struct intel_unpin_work *work;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009716 struct intel_engine_cs *ring;
Chris Wilson52e68632010-08-08 10:15:59 +01009717 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009718
Matt Roper2ff8fde2014-07-08 07:50:07 -07009719 /*
9720 * drm_mode_page_flip_ioctl() should already catch this, but double
9721 * check to be safe. In the future we may enable pageflipping from
9722 * a disabled primary plane.
9723 */
9724 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
9725 return -EBUSY;
9726
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009727 /* Can't change pixel format via MI display flips. */
Matt Roperf4510a22014-04-01 15:22:40 -07009728 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009729 return -EINVAL;
9730
9731 /*
9732 * TILEOFF/LINOFF registers can't be changed via MI display flips.
9733 * Note that pitch changes could also affect these register.
9734 */
9735 if (INTEL_INFO(dev)->gen > 3 &&
Matt Roperf4510a22014-04-01 15:22:40 -07009736 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
9737 fb->pitches[0] != crtc->primary->fb->pitches[0]))
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009738 return -EINVAL;
9739
Chris Wilsonf900db42014-02-20 09:26:13 +00009740 if (i915_terminally_wedged(&dev_priv->gpu_error))
9741 goto out_hang;
9742
Daniel Vetterb14c5672013-09-19 12:18:32 +02009743 work = kzalloc(sizeof(*work), GFP_KERNEL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009744 if (work == NULL)
9745 return -ENOMEM;
9746
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009747 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009748 work->crtc = crtc;
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +00009749 work->old_fb = old_fb;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009750 INIT_WORK(&work->work, intel_unpin_work_fn);
9751
Daniel Vetter87b6b102014-05-15 15:33:46 +02009752 ret = drm_crtc_vblank_get(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009753 if (ret)
9754 goto free_work;
9755
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009756 /* We borrow the event spin lock for protecting unpin_work */
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009757 spin_lock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009758 if (intel_crtc->unpin_work) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009759 /* Before declaring the flip queue wedged, check if
9760 * the hardware completed the operation behind our backs.
9761 */
9762 if (__intel_pageflip_stall_check(dev, crtc)) {
9763 DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n");
9764 page_flip_completed(intel_crtc);
9765 } else {
9766 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009767 spin_unlock_irq(&dev->event_lock);
Chris Wilson468f0b42010-05-27 13:18:13 +01009768
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009769 drm_crtc_vblank_put(crtc);
9770 kfree(work);
9771 return -EBUSY;
9772 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009773 }
9774 intel_crtc->unpin_work = work;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009775 spin_unlock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009776
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009777 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
9778 flush_workqueue(dev_priv->wq);
9779
Chris Wilson79158102012-05-23 11:13:58 +01009780 ret = i915_mutex_lock_interruptible(dev);
9781 if (ret)
9782 goto cleanup;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009783
Jesse Barnes75dfca82010-02-10 15:09:44 -08009784 /* Reference the objects for the scheduled work. */
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +00009785 drm_framebuffer_reference(work->old_fb);
Chris Wilson05394f32010-11-08 19:18:58 +00009786 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009787
Matt Roperf4510a22014-04-01 15:22:40 -07009788 crtc->primary->fb = fb;
Matt Roperafd65eb2015-02-03 13:10:04 -08009789 update_state_fb(crtc->primary);
Matt Roper1ed1f962015-01-30 16:22:36 -08009790
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009791 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009792
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009793 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +02009794 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009795
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009796 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
Daniel Vettera071fa02014-06-18 23:28:09 +02009797 work->flip_count = I915_READ(PIPE_FLIPCOUNT_GM45(pipe)) + 1;
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009798
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009799 if (IS_VALLEYVIEW(dev)) {
9800 ring = &dev_priv->ring[BCS];
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +00009801 if (obj->tiling_mode != intel_fb_obj(work->old_fb)->tiling_mode)
Chris Wilson8e09bf82014-07-08 10:40:30 +01009802 /* vlv: DISPLAY_FLIP fails to change tiling */
9803 ring = NULL;
Chris Wilson48bf5b22014-12-27 09:48:28 +00009804 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Chris Wilson2a92d5b2014-07-08 10:40:29 +01009805 ring = &dev_priv->ring[BCS];
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009806 } else if (INTEL_INFO(dev)->gen >= 7) {
John Harrison41c52412014-11-24 18:49:43 +00009807 ring = i915_gem_request_get_ring(obj->last_read_req);
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009808 if (ring == NULL || ring->id != RCS)
9809 ring = &dev_priv->ring[BCS];
9810 } else {
9811 ring = &dev_priv->ring[RCS];
9812 }
9813
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00009814 ret = intel_pin_and_fence_fb_obj(crtc->primary, fb, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009815 if (ret)
9816 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009817
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009818 work->gtt_offset =
9819 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset;
9820
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009821 if (use_mmio_flip(ring, obj)) {
Sourab Gupta84c33a62014-06-02 16:47:17 +05309822 ret = intel_queue_mmio_flip(dev, crtc, fb, obj, ring,
9823 page_flip_flags);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009824 if (ret)
9825 goto cleanup_unpin;
9826
John Harrisonf06cc1b2014-11-24 18:49:37 +00009827 i915_gem_request_assign(&work->flip_queued_req,
9828 obj->last_write_req);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009829 } else {
Sourab Gupta84c33a62014-06-02 16:47:17 +05309830 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, ring,
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009831 page_flip_flags);
9832 if (ret)
9833 goto cleanup_unpin;
9834
John Harrisonf06cc1b2014-11-24 18:49:37 +00009835 i915_gem_request_assign(&work->flip_queued_req,
9836 intel_ring_get_request(ring));
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009837 }
9838
9839 work->flip_queued_vblank = drm_vblank_count(dev, intel_crtc->pipe);
9840 work->enable_stall_check = true;
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009841
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +00009842 i915_gem_track_fb(intel_fb_obj(work->old_fb), obj,
Daniel Vettera071fa02014-06-18 23:28:09 +02009843 INTEL_FRONTBUFFER_PRIMARY(pipe));
9844
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02009845 intel_fbc_disable(dev);
Daniel Vetterf99d7062014-06-19 16:01:59 +02009846 intel_frontbuffer_flip_prepare(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009847 mutex_unlock(&dev->struct_mutex);
9848
Jesse Barnese5510fa2010-07-01 16:48:37 -07009849 trace_i915_flip_request(intel_crtc->plane, obj);
9850
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009851 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01009852
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009853cleanup_unpin:
9854 intel_unpin_fb_obj(obj);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009855cleanup_pending:
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009856 atomic_dec(&intel_crtc->unpin_work_count);
Matt Roperf4510a22014-04-01 15:22:40 -07009857 crtc->primary->fb = old_fb;
Matt Roperafd65eb2015-02-03 13:10:04 -08009858 update_state_fb(crtc->primary);
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +00009859 drm_framebuffer_unreference(work->old_fb);
Chris Wilson05394f32010-11-08 19:18:58 +00009860 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01009861 mutex_unlock(&dev->struct_mutex);
9862
Chris Wilson79158102012-05-23 11:13:58 +01009863cleanup:
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009864 spin_lock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +01009865 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009866 spin_unlock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +01009867
Daniel Vetter87b6b102014-05-15 15:33:46 +02009868 drm_crtc_vblank_put(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009869free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01009870 kfree(work);
9871
Chris Wilsonf900db42014-02-20 09:26:13 +00009872 if (ret == -EIO) {
9873out_hang:
Matt Roper53a366b2014-12-23 10:41:53 -08009874 ret = intel_plane_restore(primary);
Chris Wilsonf0d3dad2014-09-07 16:51:12 +01009875 if (ret == 0 && event) {
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009876 spin_lock_irq(&dev->event_lock);
Daniel Vettera071fa02014-06-18 23:28:09 +02009877 drm_send_vblank_event(dev, pipe, event);
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009878 spin_unlock_irq(&dev->event_lock);
Chris Wilsonf0d3dad2014-09-07 16:51:12 +01009879 }
Chris Wilsonf900db42014-02-20 09:26:13 +00009880 }
Chris Wilson96b099f2010-06-07 14:03:04 +01009881 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009882}
9883
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009884static struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009885 .mode_set_base_atomic = intel_pipe_set_base_atomic,
9886 .load_lut = intel_crtc_load_lut,
Matt Roperea2c67b2014-12-23 10:41:52 -08009887 .atomic_begin = intel_begin_crtc_commit,
9888 .atomic_flush = intel_finish_crtc_commit,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009889};
9890
Daniel Vetter9a935852012-07-05 22:34:27 +02009891/**
9892 * intel_modeset_update_staged_output_state
9893 *
9894 * Updates the staged output configuration state, e.g. after we've read out the
9895 * current hw state.
9896 */
9897static void intel_modeset_update_staged_output_state(struct drm_device *dev)
9898{
Ville Syrjälä76688512014-01-10 11:28:06 +02009899 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009900 struct intel_encoder *encoder;
9901 struct intel_connector *connector;
9902
9903 list_for_each_entry(connector, &dev->mode_config.connector_list,
9904 base.head) {
9905 connector->new_encoder =
9906 to_intel_encoder(connector->base.encoder);
9907 }
9908
Damien Lespiaub2784e12014-08-05 11:29:37 +01009909 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +02009910 encoder->new_crtc =
9911 to_intel_crtc(encoder->base.crtc);
9912 }
Ville Syrjälä76688512014-01-10 11:28:06 +02009913
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009914 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009915 crtc->new_enabled = crtc->base.enabled;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +02009916
9917 if (crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009918 crtc->new_config = crtc->config;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +02009919 else
9920 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +02009921 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009922}
9923
9924/**
9925 * intel_modeset_commit_output_state
9926 *
9927 * This function copies the stage display pipe configuration to the real one.
9928 */
9929static void intel_modeset_commit_output_state(struct drm_device *dev)
9930{
Ville Syrjälä76688512014-01-10 11:28:06 +02009931 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009932 struct intel_encoder *encoder;
9933 struct intel_connector *connector;
9934
9935 list_for_each_entry(connector, &dev->mode_config.connector_list,
9936 base.head) {
9937 connector->base.encoder = &connector->new_encoder->base;
9938 }
9939
Damien Lespiaub2784e12014-08-05 11:29:37 +01009940 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +02009941 encoder->base.crtc = &encoder->new_crtc->base;
9942 }
Ville Syrjälä76688512014-01-10 11:28:06 +02009943
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009944 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009945 crtc->base.enabled = crtc->new_enabled;
9946 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009947}
9948
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009949static void
Robin Schroereba905b2014-05-18 02:24:50 +02009950connected_sink_compute_bpp(struct intel_connector *connector,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009951 struct intel_crtc_state *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009952{
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009953 int bpp = pipe_config->pipe_bpp;
9954
9955 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
9956 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03009957 connector->base.name);
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009958
9959 /* Don't use an invalid EDID bpc value */
9960 if (connector->base.display_info.bpc &&
9961 connector->base.display_info.bpc * 3 < bpp) {
9962 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
9963 bpp, connector->base.display_info.bpc*3);
9964 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
9965 }
9966
9967 /* Clamp bpp to 8 on screens without EDID 1.4 */
9968 if (connector->base.display_info.bpc == 0 && bpp > 24) {
9969 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
9970 bpp);
9971 pipe_config->pipe_bpp = 24;
9972 }
9973}
9974
9975static int
9976compute_baseline_pipe_bpp(struct intel_crtc *crtc,
9977 struct drm_framebuffer *fb,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009978 struct intel_crtc_state *pipe_config)
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009979{
9980 struct drm_device *dev = crtc->base.dev;
9981 struct intel_connector *connector;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009982 int bpp;
9983
Daniel Vetterd42264b2013-03-28 16:38:08 +01009984 switch (fb->pixel_format) {
9985 case DRM_FORMAT_C8:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009986 bpp = 8*3; /* since we go through a colormap */
9987 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01009988 case DRM_FORMAT_XRGB1555:
9989 case DRM_FORMAT_ARGB1555:
9990 /* checked in intel_framebuffer_init already */
9991 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
9992 return -EINVAL;
9993 case DRM_FORMAT_RGB565:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009994 bpp = 6*3; /* min is 18bpp */
9995 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01009996 case DRM_FORMAT_XBGR8888:
9997 case DRM_FORMAT_ABGR8888:
9998 /* checked in intel_framebuffer_init already */
9999 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
10000 return -EINVAL;
10001 case DRM_FORMAT_XRGB8888:
10002 case DRM_FORMAT_ARGB8888:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010003 bpp = 8*3;
10004 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +010010005 case DRM_FORMAT_XRGB2101010:
10006 case DRM_FORMAT_ARGB2101010:
10007 case DRM_FORMAT_XBGR2101010:
10008 case DRM_FORMAT_ABGR2101010:
10009 /* checked in intel_framebuffer_init already */
10010 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
Daniel Vetterbaba1332013-03-27 00:45:00 +010010011 return -EINVAL;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010012 bpp = 10*3;
10013 break;
Daniel Vetterbaba1332013-03-27 00:45:00 +010010014 /* TODO: gen4+ supports 16 bpc floating point, too. */
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010015 default:
10016 DRM_DEBUG_KMS("unsupported depth\n");
10017 return -EINVAL;
10018 }
10019
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010020 pipe_config->pipe_bpp = bpp;
10021
10022 /* Clamp display bpp to EDID value */
10023 list_for_each_entry(connector, &dev->mode_config.connector_list,
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010024 base.head) {
Daniel Vetter1b829e02013-06-02 13:26:24 +020010025 if (!connector->new_encoder ||
10026 connector->new_encoder->new_crtc != crtc)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010027 continue;
10028
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010029 connected_sink_compute_bpp(connector, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010030 }
10031
10032 return bpp;
10033}
10034
Daniel Vetter644db712013-09-19 14:53:58 +020010035static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
10036{
10037 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
10038 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +010010039 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +020010040 mode->crtc_hdisplay, mode->crtc_hsync_start,
10041 mode->crtc_hsync_end, mode->crtc_htotal,
10042 mode->crtc_vdisplay, mode->crtc_vsync_start,
10043 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
10044}
10045
Daniel Vetterc0b03412013-05-28 12:05:54 +020010046static void intel_dump_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010047 struct intel_crtc_state *pipe_config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020010048 const char *context)
10049{
10050 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
10051 context, pipe_name(crtc->pipe));
10052
10053 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
10054 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
10055 pipe_config->pipe_bpp, pipe_config->dither);
10056 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
10057 pipe_config->has_pch_encoder,
10058 pipe_config->fdi_lanes,
10059 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
10060 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
10061 pipe_config->fdi_m_n.tu);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010062 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
10063 pipe_config->has_dp_encoder,
10064 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
10065 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
10066 pipe_config->dp_m_n.tu);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010067
10068 DRM_DEBUG_KMS("dp: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n",
10069 pipe_config->has_dp_encoder,
10070 pipe_config->dp_m2_n2.gmch_m,
10071 pipe_config->dp_m2_n2.gmch_n,
10072 pipe_config->dp_m2_n2.link_m,
10073 pipe_config->dp_m2_n2.link_n,
10074 pipe_config->dp_m2_n2.tu);
10075
Daniel Vetter55072d12014-11-20 16:10:28 +010010076 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
10077 pipe_config->has_audio,
10078 pipe_config->has_infoframe);
10079
Daniel Vetterc0b03412013-05-28 12:05:54 +020010080 DRM_DEBUG_KMS("requested mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010081 drm_mode_debug_printmodeline(&pipe_config->base.mode);
Daniel Vetterc0b03412013-05-28 12:05:54 +020010082 DRM_DEBUG_KMS("adjusted mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010083 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
10084 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +030010085 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010086 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
10087 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Daniel Vetterc0b03412013-05-28 12:05:54 +020010088 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
10089 pipe_config->gmch_pfit.control,
10090 pipe_config->gmch_pfit.pgm_ratios,
10091 pipe_config->gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010092 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
Daniel Vetterc0b03412013-05-28 12:05:54 +020010093 pipe_config->pch_pfit.pos,
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010094 pipe_config->pch_pfit.size,
10095 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
Paulo Zanoni42db64e2013-05-31 16:33:22 -030010096 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Ville Syrjäläcf532bb2013-09-04 18:30:02 +030010097 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
Daniel Vetterc0b03412013-05-28 12:05:54 +020010098}
10099
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010100static bool encoders_cloneable(const struct intel_encoder *a,
10101 const struct intel_encoder *b)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010102{
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010103 /* masks could be asymmetric, so check both ways */
10104 return a == b || (a->cloneable & (1 << b->type) &&
10105 b->cloneable & (1 << a->type));
10106}
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010107
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010108static bool check_single_encoder_cloning(struct intel_crtc *crtc,
10109 struct intel_encoder *encoder)
10110{
10111 struct drm_device *dev = crtc->base.dev;
10112 struct intel_encoder *source_encoder;
10113
Damien Lespiaub2784e12014-08-05 11:29:37 +010010114 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010115 if (source_encoder->new_crtc != crtc)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010116 continue;
10117
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010118 if (!encoders_cloneable(encoder, source_encoder))
10119 return false;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010120 }
10121
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010122 return true;
10123}
10124
10125static bool check_encoder_cloning(struct intel_crtc *crtc)
10126{
10127 struct drm_device *dev = crtc->base.dev;
10128 struct intel_encoder *encoder;
10129
Damien Lespiaub2784e12014-08-05 11:29:37 +010010130 for_each_intel_encoder(dev, encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010131 if (encoder->new_crtc != crtc)
10132 continue;
10133
10134 if (!check_single_encoder_cloning(crtc, encoder))
10135 return false;
10136 }
10137
10138 return true;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010139}
10140
Ville Syrjälä00f0b372014-12-02 14:10:46 +020010141static bool check_digital_port_conflicts(struct drm_device *dev)
10142{
10143 struct intel_connector *connector;
10144 unsigned int used_ports = 0;
10145
10146 /*
10147 * Walk the connector list instead of the encoder
10148 * list to detect the problem on ddi platforms
10149 * where there's just one encoder per digital port.
10150 */
10151 list_for_each_entry(connector,
10152 &dev->mode_config.connector_list, base.head) {
10153 struct intel_encoder *encoder = connector->new_encoder;
10154
10155 if (!encoder)
10156 continue;
10157
10158 WARN_ON(!encoder->new_crtc);
10159
10160 switch (encoder->type) {
10161 unsigned int port_mask;
10162 case INTEL_OUTPUT_UNKNOWN:
10163 if (WARN_ON(!HAS_DDI(dev)))
10164 break;
10165 case INTEL_OUTPUT_DISPLAYPORT:
10166 case INTEL_OUTPUT_HDMI:
10167 case INTEL_OUTPUT_EDP:
10168 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
10169
10170 /* the same port mustn't appear more than once */
10171 if (used_ports & port_mask)
10172 return false;
10173
10174 used_ports |= port_mask;
10175 default:
10176 break;
10177 }
10178 }
10179
10180 return true;
10181}
10182
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010183static struct intel_crtc_state *
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010184intel_modeset_pipe_config(struct drm_crtc *crtc,
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010185 struct drm_framebuffer *fb,
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010186 struct drm_display_mode *mode)
Daniel Vetter7758a112012-07-08 19:40:39 +020010187{
10188 struct drm_device *dev = crtc->dev;
Daniel Vetter7758a112012-07-08 19:40:39 +020010189 struct intel_encoder *encoder;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010190 struct intel_crtc_state *pipe_config;
Daniel Vettere29c22c2013-02-21 00:00:16 +010010191 int plane_bpp, ret = -EINVAL;
10192 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +020010193
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010194 if (!check_encoder_cloning(to_intel_crtc(crtc))) {
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010195 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
10196 return ERR_PTR(-EINVAL);
10197 }
10198
Ville Syrjälä00f0b372014-12-02 14:10:46 +020010199 if (!check_digital_port_conflicts(dev)) {
10200 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
10201 return ERR_PTR(-EINVAL);
10202 }
10203
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010204 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
10205 if (!pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +020010206 return ERR_PTR(-ENOMEM);
10207
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010208 drm_mode_copy(&pipe_config->base.adjusted_mode, mode);
10209 drm_mode_copy(&pipe_config->base.mode, mode);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010210
Daniel Vettere143a212013-07-04 12:01:15 +020010211 pipe_config->cpu_transcoder =
10212 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010213 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010214
Imre Deak2960bc92013-07-30 13:36:32 +030010215 /*
10216 * Sanitize sync polarity flags based on requested ones. If neither
10217 * positive or negative polarity is requested, treat this as meaning
10218 * negative polarity.
10219 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010220 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030010221 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010222 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030010223
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010224 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030010225 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010226 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030010227
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010228 /* Compute a starting value for pipe_config->pipe_bpp taking the source
10229 * plane pixel format and any sink constraints into account. Returns the
10230 * source plane bpp so that dithering can be selected on mismatches
10231 * after encoders and crtc also have had their say. */
10232 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
10233 fb, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010234 if (plane_bpp < 0)
10235 goto fail;
10236
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030010237 /*
10238 * Determine the real pipe dimensions. Note that stereo modes can
10239 * increase the actual pipe size due to the frame doubling and
10240 * insertion of additional space for blanks between the frame. This
10241 * is stored in the crtc timings. We use the requested mode to do this
10242 * computation to clearly distinguish it from the adjusted mode, which
10243 * can be changed by the connectors in the below retry loop.
10244 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010245 drm_crtc_get_hv_timing(&pipe_config->base.mode,
Gustavo Padovanecb7e162014-12-01 15:40:09 -080010246 &pipe_config->pipe_src_w,
10247 &pipe_config->pipe_src_h);
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030010248
Daniel Vettere29c22c2013-02-21 00:00:16 +010010249encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +020010250 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +020010251 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +020010252 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +020010253
Daniel Vetter135c81b2013-07-21 21:37:09 +020010254 /* Fill in default crtc timings, allow encoders to overwrite them. */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010255 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
10256 CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +020010257
Daniel Vetter7758a112012-07-08 19:40:39 +020010258 /* Pass our mode to the connectors and the CRTC to give them a chance to
10259 * adjust it according to limitations or connector properties, and also
10260 * a chance to reject the mode entirely.
10261 */
Damien Lespiaub2784e12014-08-05 11:29:37 +010010262 for_each_intel_encoder(dev, encoder) {
Daniel Vetter7758a112012-07-08 19:40:39 +020010263
10264 if (&encoder->new_crtc->base != crtc)
10265 continue;
Daniel Vetter7ae89232013-03-27 00:44:52 +010010266
Daniel Vetterefea6e82013-07-21 21:36:59 +020010267 if (!(encoder->compute_config(encoder, pipe_config))) {
10268 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +020010269 goto fail;
10270 }
10271 }
10272
Daniel Vetterff9a6752013-06-01 17:16:21 +020010273 /* Set default port clock if not overwritten by the encoder. Needs to be
10274 * done afterwards in case the encoder adjusts the mode. */
10275 if (!pipe_config->port_clock)
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010276 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
Damien Lespiau241bfc32013-09-25 16:45:37 +010010277 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +020010278
Daniel Vettera43f6e02013-06-07 23:10:32 +020010279 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010010280 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +020010281 DRM_DEBUG_KMS("CRTC fixup failed\n");
10282 goto fail;
10283 }
Daniel Vettere29c22c2013-02-21 00:00:16 +010010284
10285 if (ret == RETRY) {
10286 if (WARN(!retry, "loop in pipe configuration computation\n")) {
10287 ret = -EINVAL;
10288 goto fail;
10289 }
10290
10291 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
10292 retry = false;
10293 goto encoder_retry;
10294 }
10295
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010296 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
10297 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
10298 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
10299
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010300 return pipe_config;
Daniel Vetter7758a112012-07-08 19:40:39 +020010301fail:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010302 kfree(pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010010303 return ERR_PTR(ret);
Daniel Vetter7758a112012-07-08 19:40:39 +020010304}
10305
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010306/* Computes which crtcs are affected and sets the relevant bits in the mask. For
10307 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
10308static void
10309intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
10310 unsigned *prepare_pipes, unsigned *disable_pipes)
10311{
10312 struct intel_crtc *intel_crtc;
10313 struct drm_device *dev = crtc->dev;
10314 struct intel_encoder *encoder;
10315 struct intel_connector *connector;
10316 struct drm_crtc *tmp_crtc;
10317
10318 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
10319
10320 /* Check which crtcs have changed outputs connected to them, these need
10321 * to be part of the prepare_pipes mask. We don't (yet) support global
10322 * modeset across multiple crtcs, so modeset_pipes will only have one
10323 * bit set at most. */
10324 list_for_each_entry(connector, &dev->mode_config.connector_list,
10325 base.head) {
10326 if (connector->base.encoder == &connector->new_encoder->base)
10327 continue;
10328
10329 if (connector->base.encoder) {
10330 tmp_crtc = connector->base.encoder->crtc;
10331
10332 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
10333 }
10334
10335 if (connector->new_encoder)
10336 *prepare_pipes |=
10337 1 << connector->new_encoder->new_crtc->pipe;
10338 }
10339
Damien Lespiaub2784e12014-08-05 11:29:37 +010010340 for_each_intel_encoder(dev, encoder) {
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010341 if (encoder->base.crtc == &encoder->new_crtc->base)
10342 continue;
10343
10344 if (encoder->base.crtc) {
10345 tmp_crtc = encoder->base.crtc;
10346
10347 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
10348 }
10349
10350 if (encoder->new_crtc)
10351 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
10352 }
10353
Ville Syrjälä76688512014-01-10 11:28:06 +020010354 /* Check for pipes that will be enabled/disabled ... */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010355 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010356 if (intel_crtc->base.enabled == intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010357 continue;
10358
Ville Syrjälä76688512014-01-10 11:28:06 +020010359 if (!intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010360 *disable_pipes |= 1 << intel_crtc->pipe;
Ville Syrjälä76688512014-01-10 11:28:06 +020010361 else
10362 *prepare_pipes |= 1 << intel_crtc->pipe;
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010363 }
10364
10365
10366 /* set_mode is also used to update properties on life display pipes. */
10367 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä76688512014-01-10 11:28:06 +020010368 if (intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010369 *prepare_pipes |= 1 << intel_crtc->pipe;
10370
Daniel Vetterb6c51642013-04-12 18:48:43 +020010371 /*
10372 * For simplicity do a full modeset on any pipe where the output routing
10373 * changed. We could be more clever, but that would require us to be
10374 * more careful with calling the relevant encoder->mode_set functions.
10375 */
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010376 if (*prepare_pipes)
10377 *modeset_pipes = *prepare_pipes;
10378
10379 /* ... and mask these out. */
10380 *modeset_pipes &= ~(*disable_pipes);
10381 *prepare_pipes &= ~(*disable_pipes);
Daniel Vetterb6c51642013-04-12 18:48:43 +020010382
10383 /*
10384 * HACK: We don't (yet) fully support global modesets. intel_set_config
10385 * obies this rule, but the modeset restore mode of
10386 * intel_modeset_setup_hw_state does not.
10387 */
10388 *modeset_pipes &= 1 << intel_crtc->pipe;
10389 *prepare_pipes &= 1 << intel_crtc->pipe;
Daniel Vettere3641d32013-04-11 19:49:07 +020010390
10391 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
10392 *modeset_pipes, *prepare_pipes, *disable_pipes);
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010393}
10394
Daniel Vetterea9d7582012-07-10 10:42:52 +020010395static bool intel_crtc_in_use(struct drm_crtc *crtc)
10396{
10397 struct drm_encoder *encoder;
10398 struct drm_device *dev = crtc->dev;
10399
10400 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
10401 if (encoder->crtc == crtc)
10402 return true;
10403
10404 return false;
10405}
10406
10407static void
10408intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
10409{
Daniel Vetterba41c0de2014-11-03 15:04:55 +010010410 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterea9d7582012-07-10 10:42:52 +020010411 struct intel_encoder *intel_encoder;
10412 struct intel_crtc *intel_crtc;
10413 struct drm_connector *connector;
10414
Daniel Vetterba41c0de2014-11-03 15:04:55 +010010415 intel_shared_dpll_commit(dev_priv);
10416
Damien Lespiaub2784e12014-08-05 11:29:37 +010010417 for_each_intel_encoder(dev, intel_encoder) {
Daniel Vetterea9d7582012-07-10 10:42:52 +020010418 if (!intel_encoder->base.crtc)
10419 continue;
10420
10421 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
10422
10423 if (prepare_pipes & (1 << intel_crtc->pipe))
10424 intel_encoder->connectors_active = false;
10425 }
10426
10427 intel_modeset_commit_output_state(dev);
10428
Ville Syrjälä76688512014-01-10 11:28:06 +020010429 /* Double check state. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010430 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010431 WARN_ON(intel_crtc->base.enabled != intel_crtc_in_use(&intel_crtc->base));
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010432 WARN_ON(intel_crtc->new_config &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010433 intel_crtc->new_config != intel_crtc->config);
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010434 WARN_ON(intel_crtc->base.enabled != !!intel_crtc->new_config);
Daniel Vetterea9d7582012-07-10 10:42:52 +020010435 }
10436
10437 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
10438 if (!connector->encoder || !connector->encoder->crtc)
10439 continue;
10440
10441 intel_crtc = to_intel_crtc(connector->encoder->crtc);
10442
10443 if (prepare_pipes & (1 << intel_crtc->pipe)) {
Daniel Vetter68d34722012-09-06 22:08:35 +020010444 struct drm_property *dpms_property =
10445 dev->mode_config.dpms_property;
10446
Daniel Vetterea9d7582012-07-10 10:42:52 +020010447 connector->dpms = DRM_MODE_DPMS_ON;
Rob Clark662595d2012-10-11 20:36:04 -050010448 drm_object_property_set_value(&connector->base,
Daniel Vetter68d34722012-09-06 22:08:35 +020010449 dpms_property,
10450 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +020010451
10452 intel_encoder = to_intel_encoder(connector->encoder);
10453 intel_encoder->connectors_active = true;
10454 }
10455 }
10456
10457}
10458
Ville Syrjälä3bd26262013-09-06 23:29:02 +030010459static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010460{
Ville Syrjälä3bd26262013-09-06 23:29:02 +030010461 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010462
10463 if (clock1 == clock2)
10464 return true;
10465
10466 if (!clock1 || !clock2)
10467 return false;
10468
10469 diff = abs(clock1 - clock2);
10470
10471 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
10472 return true;
10473
10474 return false;
10475}
10476
Daniel Vetter25c5b262012-07-08 22:08:04 +020010477#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
10478 list_for_each_entry((intel_crtc), \
10479 &(dev)->mode_config.crtc_list, \
10480 base.head) \
Daniel Vetter0973f182013-04-19 11:25:33 +020010481 if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +020010482
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010483static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020010484intel_pipe_config_compare(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010485 struct intel_crtc_state *current_config,
10486 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010487{
Daniel Vetter66e985c2013-06-05 13:34:20 +020010488#define PIPE_CONF_CHECK_X(name) \
10489 if (current_config->name != pipe_config->name) { \
10490 DRM_ERROR("mismatch in " #name " " \
10491 "(expected 0x%08x, found 0x%08x)\n", \
10492 current_config->name, \
10493 pipe_config->name); \
10494 return false; \
10495 }
10496
Daniel Vetter08a24032013-04-19 11:25:34 +020010497#define PIPE_CONF_CHECK_I(name) \
10498 if (current_config->name != pipe_config->name) { \
10499 DRM_ERROR("mismatch in " #name " " \
10500 "(expected %i, found %i)\n", \
10501 current_config->name, \
10502 pipe_config->name); \
10503 return false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +010010504 }
10505
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010506/* This is required for BDW+ where there is only one set of registers for
10507 * switching between high and low RR.
10508 * This macro can be used whenever a comparison has to be made between one
10509 * hw state and multiple sw state variables.
10510 */
10511#define PIPE_CONF_CHECK_I_ALT(name, alt_name) \
10512 if ((current_config->name != pipe_config->name) && \
10513 (current_config->alt_name != pipe_config->name)) { \
10514 DRM_ERROR("mismatch in " #name " " \
10515 "(expected %i or %i, found %i)\n", \
10516 current_config->name, \
10517 current_config->alt_name, \
10518 pipe_config->name); \
10519 return false; \
10520 }
10521
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010522#define PIPE_CONF_CHECK_FLAGS(name, mask) \
10523 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Jesse Barnes6f024882013-07-01 10:19:09 -070010524 DRM_ERROR("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010525 "(expected %i, found %i)\n", \
10526 current_config->name & (mask), \
10527 pipe_config->name & (mask)); \
10528 return false; \
10529 }
10530
Ville Syrjälä5e550652013-09-06 23:29:07 +030010531#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
10532 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
10533 DRM_ERROR("mismatch in " #name " " \
10534 "(expected %i, found %i)\n", \
10535 current_config->name, \
10536 pipe_config->name); \
10537 return false; \
10538 }
10539
Daniel Vetterbb760062013-06-06 14:55:52 +020010540#define PIPE_CONF_QUIRK(quirk) \
10541 ((current_config->quirks | pipe_config->quirks) & (quirk))
10542
Daniel Vettereccb1402013-05-22 00:50:22 +020010543 PIPE_CONF_CHECK_I(cpu_transcoder);
10544
Daniel Vetter08a24032013-04-19 11:25:34 +020010545 PIPE_CONF_CHECK_I(has_pch_encoder);
10546 PIPE_CONF_CHECK_I(fdi_lanes);
Daniel Vetter72419202013-04-04 13:28:53 +020010547 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
10548 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
10549 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
10550 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
10551 PIPE_CONF_CHECK_I(fdi_m_n.tu);
Daniel Vetter08a24032013-04-19 11:25:34 +020010552
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010553 PIPE_CONF_CHECK_I(has_dp_encoder);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010554
10555 if (INTEL_INFO(dev)->gen < 8) {
10556 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
10557 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
10558 PIPE_CONF_CHECK_I(dp_m_n.link_m);
10559 PIPE_CONF_CHECK_I(dp_m_n.link_n);
10560 PIPE_CONF_CHECK_I(dp_m_n.tu);
10561
10562 if (current_config->has_drrs) {
10563 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_m);
10564 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_n);
10565 PIPE_CONF_CHECK_I(dp_m2_n2.link_m);
10566 PIPE_CONF_CHECK_I(dp_m2_n2.link_n);
10567 PIPE_CONF_CHECK_I(dp_m2_n2.tu);
10568 }
10569 } else {
10570 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_m, dp_m2_n2.gmch_m);
10571 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_n, dp_m2_n2.gmch_n);
10572 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_m, dp_m2_n2.link_m);
10573 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_n, dp_m2_n2.link_n);
10574 PIPE_CONF_CHECK_I_ALT(dp_m_n.tu, dp_m2_n2.tu);
10575 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010576
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010577 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
10578 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
10579 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
10580 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
10581 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
10582 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010583
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010584 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
10585 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
10586 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
10587 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
10588 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
10589 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010590
Daniel Vetterc93f54c2013-06-27 19:47:19 +020010591 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6897b4b52014-04-24 23:54:47 +020010592 PIPE_CONF_CHECK_I(has_hdmi_sink);
Daniel Vetterb5a9fa02014-04-24 23:54:49 +020010593 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
10594 IS_VALLEYVIEW(dev))
10595 PIPE_CONF_CHECK_I(limited_color_range);
Jesse Barnese43823e2014-11-05 14:26:08 -080010596 PIPE_CONF_CHECK_I(has_infoframe);
Daniel Vetter6c49f242013-06-06 12:45:25 +020010597
Daniel Vetter9ed109a2014-04-24 23:54:52 +020010598 PIPE_CONF_CHECK_I(has_audio);
10599
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010600 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010601 DRM_MODE_FLAG_INTERLACE);
10602
Daniel Vetterbb760062013-06-06 14:55:52 +020010603 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010604 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010605 DRM_MODE_FLAG_PHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010606 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010607 DRM_MODE_FLAG_NHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010608 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010609 DRM_MODE_FLAG_PVSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010610 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010611 DRM_MODE_FLAG_NVSYNC);
10612 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010613
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010614 PIPE_CONF_CHECK_I(pipe_src_w);
10615 PIPE_CONF_CHECK_I(pipe_src_h);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010616
Daniel Vetter99535992014-04-13 12:00:33 +020010617 /*
10618 * FIXME: BIOS likes to set up a cloned config with lvds+external
10619 * screen. Since we don't yet re-compute the pipe config when moving
10620 * just the lvds port away to another pipe the sw tracking won't match.
10621 *
10622 * Proper atomic modesets with recomputed global state will fix this.
10623 * Until then just don't check gmch state for inherited modes.
10624 */
10625 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE)) {
10626 PIPE_CONF_CHECK_I(gmch_pfit.control);
10627 /* pfit ratios are autocomputed by the hw on gen4+ */
10628 if (INTEL_INFO(dev)->gen < 4)
10629 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
10630 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
10631 }
10632
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010633 PIPE_CONF_CHECK_I(pch_pfit.enabled);
10634 if (current_config->pch_pfit.enabled) {
10635 PIPE_CONF_CHECK_I(pch_pfit.pos);
10636 PIPE_CONF_CHECK_I(pch_pfit.size);
10637 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020010638
Jesse Barnese59150d2014-01-07 13:30:45 -080010639 /* BDW+ don't expose a synchronous way to read the state */
10640 if (IS_HASWELL(dev))
10641 PIPE_CONF_CHECK_I(ips_enabled);
Paulo Zanoni42db64e2013-05-31 16:33:22 -030010642
Ville Syrjälä282740f2013-09-04 18:30:03 +030010643 PIPE_CONF_CHECK_I(double_wide);
10644
Daniel Vetter26804af2014-06-25 22:01:55 +030010645 PIPE_CONF_CHECK_X(ddi_pll_sel);
10646
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010647 PIPE_CONF_CHECK_I(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010648 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +020010649 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010650 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
10651 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterd452c5b2014-07-04 11:27:39 -030010652 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
Damien Lespiau3f4cd192014-11-13 14:55:21 +000010653 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
10654 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
10655 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010656
Ville Syrjälä42571ae2013-09-06 23:29:00 +030010657 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
10658 PIPE_CONF_CHECK_I(pipe_bpp);
10659
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010660 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
Jesse Barnesa9a7e982014-01-20 14:18:04 -080010661 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
Ville Syrjälä5e550652013-09-06 23:29:07 +030010662
Daniel Vetter66e985c2013-06-05 13:34:20 +020010663#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +020010664#undef PIPE_CONF_CHECK_I
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010665#undef PIPE_CONF_CHECK_I_ALT
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010666#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +030010667#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +020010668#undef PIPE_CONF_QUIRK
Daniel Vetter627eb5a2013-04-29 19:33:42 +020010669
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010670 return true;
10671}
10672
Damien Lespiau08db6652014-11-04 17:06:52 +000010673static void check_wm_state(struct drm_device *dev)
10674{
10675 struct drm_i915_private *dev_priv = dev->dev_private;
10676 struct skl_ddb_allocation hw_ddb, *sw_ddb;
10677 struct intel_crtc *intel_crtc;
10678 int plane;
10679
10680 if (INTEL_INFO(dev)->gen < 9)
10681 return;
10682
10683 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
10684 sw_ddb = &dev_priv->wm.skl_hw.ddb;
10685
10686 for_each_intel_crtc(dev, intel_crtc) {
10687 struct skl_ddb_entry *hw_entry, *sw_entry;
10688 const enum pipe pipe = intel_crtc->pipe;
10689
10690 if (!intel_crtc->active)
10691 continue;
10692
10693 /* planes */
10694 for_each_plane(pipe, plane) {
10695 hw_entry = &hw_ddb.plane[pipe][plane];
10696 sw_entry = &sw_ddb->plane[pipe][plane];
10697
10698 if (skl_ddb_entry_equal(hw_entry, sw_entry))
10699 continue;
10700
10701 DRM_ERROR("mismatch in DDB state pipe %c plane %d "
10702 "(expected (%u,%u), found (%u,%u))\n",
10703 pipe_name(pipe), plane + 1,
10704 sw_entry->start, sw_entry->end,
10705 hw_entry->start, hw_entry->end);
10706 }
10707
10708 /* cursor */
10709 hw_entry = &hw_ddb.cursor[pipe];
10710 sw_entry = &sw_ddb->cursor[pipe];
10711
10712 if (skl_ddb_entry_equal(hw_entry, sw_entry))
10713 continue;
10714
10715 DRM_ERROR("mismatch in DDB state pipe %c cursor "
10716 "(expected (%u,%u), found (%u,%u))\n",
10717 pipe_name(pipe),
10718 sw_entry->start, sw_entry->end,
10719 hw_entry->start, hw_entry->end);
10720 }
10721}
10722
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010723static void
10724check_connector_state(struct drm_device *dev)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010725{
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010726 struct intel_connector *connector;
10727
10728 list_for_each_entry(connector, &dev->mode_config.connector_list,
10729 base.head) {
10730 /* This also checks the encoder/connector hw state with the
10731 * ->get_hw_state callbacks. */
10732 intel_connector_check_state(connector);
10733
Rob Clarke2c719b2014-12-15 13:56:32 -050010734 I915_STATE_WARN(&connector->new_encoder->base != connector->base.encoder,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010735 "connector's staged encoder doesn't match current encoder\n");
10736 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010737}
10738
10739static void
10740check_encoder_state(struct drm_device *dev)
10741{
10742 struct intel_encoder *encoder;
10743 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010744
Damien Lespiaub2784e12014-08-05 11:29:37 +010010745 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010746 bool enabled = false;
10747 bool active = false;
10748 enum pipe pipe, tracked_pipe;
10749
10750 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
10751 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030010752 encoder->base.name);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010753
Rob Clarke2c719b2014-12-15 13:56:32 -050010754 I915_STATE_WARN(&encoder->new_crtc->base != encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010755 "encoder's stage crtc doesn't match current crtc\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050010756 I915_STATE_WARN(encoder->connectors_active && !encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010757 "encoder's active_connectors set, but no crtc\n");
10758
10759 list_for_each_entry(connector, &dev->mode_config.connector_list,
10760 base.head) {
10761 if (connector->base.encoder != &encoder->base)
10762 continue;
10763 enabled = true;
10764 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
10765 active = true;
10766 }
Dave Airlie0e32b392014-05-02 14:02:48 +100010767 /*
10768 * for MST connectors if we unplug the connector is gone
10769 * away but the encoder is still connected to a crtc
10770 * until a modeset happens in response to the hotplug.
10771 */
10772 if (!enabled && encoder->base.encoder_type == DRM_MODE_ENCODER_DPMST)
10773 continue;
10774
Rob Clarke2c719b2014-12-15 13:56:32 -050010775 I915_STATE_WARN(!!encoder->base.crtc != enabled,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010776 "encoder's enabled state mismatch "
10777 "(expected %i, found %i)\n",
10778 !!encoder->base.crtc, enabled);
Rob Clarke2c719b2014-12-15 13:56:32 -050010779 I915_STATE_WARN(active && !encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010780 "active encoder with no crtc\n");
10781
Rob Clarke2c719b2014-12-15 13:56:32 -050010782 I915_STATE_WARN(encoder->connectors_active != active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010783 "encoder's computed active state doesn't match tracked active state "
10784 "(expected %i, found %i)\n", active, encoder->connectors_active);
10785
10786 active = encoder->get_hw_state(encoder, &pipe);
Rob Clarke2c719b2014-12-15 13:56:32 -050010787 I915_STATE_WARN(active != encoder->connectors_active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010788 "encoder's hw state doesn't match sw tracking "
10789 "(expected %i, found %i)\n",
10790 encoder->connectors_active, active);
10791
10792 if (!encoder->base.crtc)
10793 continue;
10794
10795 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
Rob Clarke2c719b2014-12-15 13:56:32 -050010796 I915_STATE_WARN(active && pipe != tracked_pipe,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010797 "active encoder's pipe doesn't match"
10798 "(expected %i, found %i)\n",
10799 tracked_pipe, pipe);
10800
10801 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010802}
10803
10804static void
10805check_crtc_state(struct drm_device *dev)
10806{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010807 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010808 struct intel_crtc *crtc;
10809 struct intel_encoder *encoder;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010810 struct intel_crtc_state pipe_config;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010811
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010812 for_each_intel_crtc(dev, crtc) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010813 bool enabled = false;
10814 bool active = false;
10815
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010816 memset(&pipe_config, 0, sizeof(pipe_config));
10817
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010818 DRM_DEBUG_KMS("[CRTC:%d]\n",
10819 crtc->base.base.id);
10820
Rob Clarke2c719b2014-12-15 13:56:32 -050010821 I915_STATE_WARN(crtc->active && !crtc->base.enabled,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010822 "active crtc, but not enabled in sw tracking\n");
10823
Damien Lespiaub2784e12014-08-05 11:29:37 +010010824 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010825 if (encoder->base.crtc != &crtc->base)
10826 continue;
10827 enabled = true;
10828 if (encoder->connectors_active)
10829 active = true;
10830 }
Daniel Vetter6c49f242013-06-06 12:45:25 +020010831
Rob Clarke2c719b2014-12-15 13:56:32 -050010832 I915_STATE_WARN(active != crtc->active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010833 "crtc's computed active state doesn't match tracked active state "
10834 "(expected %i, found %i)\n", active, crtc->active);
Rob Clarke2c719b2014-12-15 13:56:32 -050010835 I915_STATE_WARN(enabled != crtc->base.enabled,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010836 "crtc's computed enabled state doesn't match tracked enabled state "
10837 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
10838
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010839 active = dev_priv->display.get_pipe_config(crtc,
10840 &pipe_config);
Daniel Vetterd62cf622013-05-29 10:41:29 +020010841
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030010842 /* hw state is inconsistent with the pipe quirk */
10843 if ((crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
10844 (crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Daniel Vetterd62cf622013-05-29 10:41:29 +020010845 active = crtc->active;
10846
Damien Lespiaub2784e12014-08-05 11:29:37 +010010847 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä3eaba512013-08-05 17:57:48 +030010848 enum pipe pipe;
Daniel Vetter6c49f242013-06-06 12:45:25 +020010849 if (encoder->base.crtc != &crtc->base)
10850 continue;
Daniel Vetter1d37b682013-11-18 09:00:59 +010010851 if (encoder->get_hw_state(encoder, &pipe))
Daniel Vetter6c49f242013-06-06 12:45:25 +020010852 encoder->get_config(encoder, &pipe_config);
10853 }
10854
Rob Clarke2c719b2014-12-15 13:56:32 -050010855 I915_STATE_WARN(crtc->active != active,
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010856 "crtc active state doesn't match with hw state "
10857 "(expected %i, found %i)\n", crtc->active, active);
10858
Daniel Vetterc0b03412013-05-28 12:05:54 +020010859 if (active &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010860 !intel_pipe_config_compare(dev, crtc->config, &pipe_config)) {
Rob Clarke2c719b2014-12-15 13:56:32 -050010861 I915_STATE_WARN(1, "pipe state doesn't match!\n");
Daniel Vetterc0b03412013-05-28 12:05:54 +020010862 intel_dump_pipe_config(crtc, &pipe_config,
10863 "[hw state]");
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010864 intel_dump_pipe_config(crtc, crtc->config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020010865 "[sw state]");
10866 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010867 }
10868}
10869
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010870static void
10871check_shared_dpll_state(struct drm_device *dev)
10872{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010873 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010874 struct intel_crtc *crtc;
10875 struct intel_dpll_hw_state dpll_hw_state;
10876 int i;
Daniel Vetter53589012013-06-05 13:34:16 +020010877
10878 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
10879 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
10880 int enabled_crtcs = 0, active_crtcs = 0;
10881 bool active;
10882
10883 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
10884
10885 DRM_DEBUG_KMS("%s\n", pll->name);
10886
10887 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
10888
Rob Clarke2c719b2014-12-15 13:56:32 -050010889 I915_STATE_WARN(pll->active > hweight32(pll->config.crtc_mask),
Daniel Vetter53589012013-06-05 13:34:16 +020010890 "more active pll users than references: %i vs %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020010891 pll->active, hweight32(pll->config.crtc_mask));
Rob Clarke2c719b2014-12-15 13:56:32 -050010892 I915_STATE_WARN(pll->active && !pll->on,
Daniel Vetter53589012013-06-05 13:34:16 +020010893 "pll in active use but not on in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050010894 I915_STATE_WARN(pll->on && !pll->active,
Daniel Vetter35c95372013-07-17 06:55:04 +020010895 "pll in on but not on in use in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050010896 I915_STATE_WARN(pll->on != active,
Daniel Vetter53589012013-06-05 13:34:16 +020010897 "pll on state mismatch (expected %i, found %i)\n",
10898 pll->on, active);
10899
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010900 for_each_intel_crtc(dev, crtc) {
Daniel Vetter53589012013-06-05 13:34:16 +020010901 if (crtc->base.enabled && intel_crtc_to_shared_dpll(crtc) == pll)
10902 enabled_crtcs++;
10903 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
10904 active_crtcs++;
10905 }
Rob Clarke2c719b2014-12-15 13:56:32 -050010906 I915_STATE_WARN(pll->active != active_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020010907 "pll active crtcs mismatch (expected %i, found %i)\n",
10908 pll->active, active_crtcs);
Rob Clarke2c719b2014-12-15 13:56:32 -050010909 I915_STATE_WARN(hweight32(pll->config.crtc_mask) != enabled_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020010910 "pll enabled crtcs mismatch (expected %i, found %i)\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020010911 hweight32(pll->config.crtc_mask), enabled_crtcs);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010912
Rob Clarke2c719b2014-12-15 13:56:32 -050010913 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state, &dpll_hw_state,
Daniel Vetter66e985c2013-06-05 13:34:20 +020010914 sizeof(dpll_hw_state)),
10915 "pll hw state mismatch\n");
Daniel Vetter53589012013-06-05 13:34:16 +020010916 }
Daniel Vettera6778b32012-07-02 09:56:42 +020010917}
10918
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010919void
10920intel_modeset_check_state(struct drm_device *dev)
10921{
Damien Lespiau08db6652014-11-04 17:06:52 +000010922 check_wm_state(dev);
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010923 check_connector_state(dev);
10924 check_encoder_state(dev);
10925 check_crtc_state(dev);
10926 check_shared_dpll_state(dev);
10927}
10928
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010929void ironlake_check_encoder_dotclock(const struct intel_crtc_state *pipe_config,
Ville Syrjälä18442d02013-09-13 16:00:08 +030010930 int dotclock)
10931{
10932 /*
10933 * FDI already provided one idea for the dotclock.
10934 * Yell if the encoder disagrees.
10935 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010936 WARN(!intel_fuzzy_clock_check(pipe_config->base.adjusted_mode.crtc_clock, dotclock),
Ville Syrjälä18442d02013-09-13 16:00:08 +030010937 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010938 pipe_config->base.adjusted_mode.crtc_clock, dotclock);
Ville Syrjälä18442d02013-09-13 16:00:08 +030010939}
10940
Ville Syrjälä80715b22014-05-15 20:23:23 +030010941static void update_scanline_offset(struct intel_crtc *crtc)
10942{
10943 struct drm_device *dev = crtc->base.dev;
10944
10945 /*
10946 * The scanline counter increments at the leading edge of hsync.
10947 *
10948 * On most platforms it starts counting from vtotal-1 on the
10949 * first active line. That means the scanline counter value is
10950 * always one less than what we would expect. Ie. just after
10951 * start of vblank, which also occurs at start of hsync (on the
10952 * last active line), the scanline counter will read vblank_start-1.
10953 *
10954 * On gen2 the scanline counter starts counting from 1 instead
10955 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
10956 * to keep the value positive), instead of adding one.
10957 *
10958 * On HSW+ the behaviour of the scanline counter depends on the output
10959 * type. For DP ports it behaves like most other platforms, but on HDMI
10960 * there's an extra 1 line difference. So we need to add two instead of
10961 * one to the value.
10962 */
10963 if (IS_GEN2(dev)) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010964 const struct drm_display_mode *mode = &crtc->config->base.adjusted_mode;
Ville Syrjälä80715b22014-05-15 20:23:23 +030010965 int vtotal;
10966
10967 vtotal = mode->crtc_vtotal;
10968 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
10969 vtotal /= 2;
10970
10971 crtc->scanline_offset = vtotal - 1;
10972 } else if (HAS_DDI(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +030010973 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) {
Ville Syrjälä80715b22014-05-15 20:23:23 +030010974 crtc->scanline_offset = 2;
10975 } else
10976 crtc->scanline_offset = 1;
10977}
10978
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010979static struct intel_crtc_state *
Jesse Barnes7f27126e2014-11-05 14:26:06 -080010980intel_modeset_compute_config(struct drm_crtc *crtc,
10981 struct drm_display_mode *mode,
10982 struct drm_framebuffer *fb,
10983 unsigned *modeset_pipes,
10984 unsigned *prepare_pipes,
10985 unsigned *disable_pipes)
10986{
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010987 struct intel_crtc_state *pipe_config = NULL;
Jesse Barnes7f27126e2014-11-05 14:26:06 -080010988
10989 intel_modeset_affected_pipes(crtc, modeset_pipes,
10990 prepare_pipes, disable_pipes);
10991
10992 if ((*modeset_pipes) == 0)
10993 goto out;
10994
10995 /*
10996 * Note this needs changes when we start tracking multiple modes
10997 * and crtcs. At that point we'll need to compute the whole config
10998 * (i.e. one pipe_config for each crtc) rather than just the one
10999 * for this crtc.
11000 */
11001 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
11002 if (IS_ERR(pipe_config)) {
11003 goto out;
11004 }
11005 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
11006 "[modeset]");
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011007
11008out:
11009 return pipe_config;
11010}
11011
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020011012static int __intel_set_mode_setup_plls(struct drm_device *dev,
11013 unsigned modeset_pipes,
11014 unsigned disable_pipes)
11015{
11016 struct drm_i915_private *dev_priv = to_i915(dev);
11017 unsigned clear_pipes = modeset_pipes | disable_pipes;
11018 struct intel_crtc *intel_crtc;
11019 int ret = 0;
11020
11021 if (!dev_priv->display.crtc_compute_clock)
11022 return 0;
11023
11024 ret = intel_shared_dpll_start_config(dev_priv, clear_pipes);
11025 if (ret)
11026 goto done;
11027
11028 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
11029 struct intel_crtc_state *state = intel_crtc->new_config;
11030 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
11031 state);
11032 if (ret) {
11033 intel_shared_dpll_abort_config(dev_priv);
11034 goto done;
11035 }
11036 }
11037
11038done:
11039 return ret;
11040}
11041
Daniel Vetterf30da182013-04-11 20:22:50 +020011042static int __intel_set_mode(struct drm_crtc *crtc,
11043 struct drm_display_mode *mode,
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011044 int x, int y, struct drm_framebuffer *fb,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011045 struct intel_crtc_state *pipe_config,
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011046 unsigned modeset_pipes,
11047 unsigned prepare_pipes,
11048 unsigned disable_pipes)
Daniel Vettera6778b32012-07-02 09:56:42 +020011049{
11050 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +030011051 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030011052 struct drm_display_mode *saved_mode;
Daniel Vetter25c5b262012-07-08 22:08:04 +020011053 struct intel_crtc *intel_crtc;
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011054 int ret = 0;
Daniel Vettera6778b32012-07-02 09:56:42 +020011055
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030011056 saved_mode = kmalloc(sizeof(*saved_mode), GFP_KERNEL);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011057 if (!saved_mode)
11058 return -ENOMEM;
Daniel Vettera6778b32012-07-02 09:56:42 +020011059
Tim Gardner3ac18232012-12-07 07:54:26 -070011060 *saved_mode = crtc->mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020011061
Ville Syrjäläb9950a12014-11-21 21:00:36 +020011062 if (modeset_pipes)
11063 to_intel_crtc(crtc)->new_config = pipe_config;
11064
Jesse Barnes30a970c2013-11-04 13:48:12 -080011065 /*
11066 * See if the config requires any additional preparation, e.g.
11067 * to adjust global state with pipes off. We need to do this
11068 * here so we can get the modeset_pipe updated config for the new
11069 * mode set on this crtc. For other crtcs we need to use the
11070 * adjusted_mode bits in the crtc directly.
11071 */
Ville Syrjäläc164f832013-11-05 22:34:12 +020011072 if (IS_VALLEYVIEW(dev)) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +020011073 valleyview_modeset_global_pipes(dev, &prepare_pipes);
Jesse Barnes30a970c2013-11-04 13:48:12 -080011074
Ville Syrjäläc164f832013-11-05 22:34:12 +020011075 /* may have added more to prepare_pipes than we should */
11076 prepare_pipes &= ~disable_pipes;
11077 }
11078
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020011079 ret = __intel_set_mode_setup_plls(dev, modeset_pipes, disable_pipes);
11080 if (ret)
11081 goto done;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +020011082
Daniel Vetter460da9162013-03-27 00:44:51 +010011083 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
11084 intel_crtc_disable(&intel_crtc->base);
11085
Daniel Vetterea9d7582012-07-10 10:42:52 +020011086 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
11087 if (intel_crtc->base.enabled)
11088 dev_priv->display.crtc_disable(&intel_crtc->base);
11089 }
Daniel Vettera6778b32012-07-02 09:56:42 +020011090
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020011091 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
11092 * to set it here already despite that we pass it down the callchain.
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011093 *
11094 * Note we'll need to fix this up when we start tracking multiple
11095 * pipes; here we assume a single modeset_pipe and only track the
11096 * single crtc and mode.
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020011097 */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011098 if (modeset_pipes) {
Daniel Vetter25c5b262012-07-08 22:08:04 +020011099 crtc->mode = *mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011100 /* mode_set/enable/disable functions rely on a correct pipe
11101 * config. */
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020011102 intel_crtc_set_state(to_intel_crtc(crtc), pipe_config);
Ville Syrjäläc326c0a2013-10-28 12:53:41 +020011103
11104 /*
11105 * Calculate and store various constants which
11106 * are later needed by vblank and swap-completion
11107 * timestamping. They are derived from true hwmode.
11108 */
11109 drm_calc_timestamping_constants(crtc,
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011110 &pipe_config->base.adjusted_mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011111 }
Daniel Vetter7758a112012-07-08 19:40:39 +020011112
Daniel Vetterea9d7582012-07-10 10:42:52 +020011113 /* Only after disabling all output pipelines that will be changed can we
11114 * update the the output configuration. */
11115 intel_modeset_update_state(dev, prepare_pipes);
11116
Ville Syrjälä50f6e502014-11-06 14:49:12 +020011117 modeset_update_crtc_power_domains(dev);
Daniel Vetter47fab732012-10-26 10:58:18 +020011118
Daniel Vettera6778b32012-07-02 09:56:42 +020011119 /* Set up the DPLL and any encoders state that needs to adjust or depend
11120 * on the DPLL.
11121 */
Daniel Vetter25c5b262012-07-08 22:08:04 +020011122 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
Gustavo Padovan455a6802014-12-01 15:40:11 -080011123 struct drm_plane *primary = intel_crtc->base.primary;
11124 int vdisplay, hdisplay;
Daniel Vetter4c107942014-04-24 23:55:05 +020011125
Gustavo Padovan455a6802014-12-01 15:40:11 -080011126 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
11127 ret = primary->funcs->update_plane(primary, &intel_crtc->base,
11128 fb, 0, 0,
11129 hdisplay, vdisplay,
11130 x << 16, y << 16,
11131 hdisplay << 16, vdisplay << 16);
Daniel Vettera6778b32012-07-02 09:56:42 +020011132 }
11133
11134 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Ville Syrjälä80715b22014-05-15 20:23:23 +030011135 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
11136 update_scanline_offset(intel_crtc);
11137
Daniel Vetter25c5b262012-07-08 22:08:04 +020011138 dev_priv->display.crtc_enable(&intel_crtc->base);
Ville Syrjälä80715b22014-05-15 20:23:23 +030011139 }
Daniel Vettera6778b32012-07-02 09:56:42 +020011140
Daniel Vettera6778b32012-07-02 09:56:42 +020011141 /* FIXME: add subpixel order */
11142done:
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030011143 if (ret && crtc->enabled)
Tim Gardner3ac18232012-12-07 07:54:26 -070011144 crtc->mode = *saved_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020011145
Tim Gardner3ac18232012-12-07 07:54:26 -070011146 kfree(saved_mode);
Daniel Vettera6778b32012-07-02 09:56:42 +020011147 return ret;
11148}
11149
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011150static int intel_set_mode_pipes(struct drm_crtc *crtc,
11151 struct drm_display_mode *mode,
11152 int x, int y, struct drm_framebuffer *fb,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011153 struct intel_crtc_state *pipe_config,
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011154 unsigned modeset_pipes,
11155 unsigned prepare_pipes,
11156 unsigned disable_pipes)
11157{
11158 int ret;
11159
11160 ret = __intel_set_mode(crtc, mode, x, y, fb, pipe_config, modeset_pipes,
11161 prepare_pipes, disable_pipes);
11162
11163 if (ret == 0)
11164 intel_modeset_check_state(crtc->dev);
11165
11166 return ret;
11167}
11168
Damien Lespiaue7457a92013-08-08 22:28:59 +010011169static int intel_set_mode(struct drm_crtc *crtc,
11170 struct drm_display_mode *mode,
11171 int x, int y, struct drm_framebuffer *fb)
Daniel Vetterf30da182013-04-11 20:22:50 +020011172{
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011173 struct intel_crtc_state *pipe_config;
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011174 unsigned modeset_pipes, prepare_pipes, disable_pipes;
Daniel Vetterf30da182013-04-11 20:22:50 +020011175
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011176 pipe_config = intel_modeset_compute_config(crtc, mode, fb,
11177 &modeset_pipes,
11178 &prepare_pipes,
11179 &disable_pipes);
Daniel Vetterf30da182013-04-11 20:22:50 +020011180
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011181 if (IS_ERR(pipe_config))
11182 return PTR_ERR(pipe_config);
Daniel Vetterf30da182013-04-11 20:22:50 +020011183
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011184 return intel_set_mode_pipes(crtc, mode, x, y, fb, pipe_config,
11185 modeset_pipes, prepare_pipes,
11186 disable_pipes);
Daniel Vetterf30da182013-04-11 20:22:50 +020011187}
11188
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011189void intel_crtc_restore_mode(struct drm_crtc *crtc)
11190{
Matt Roperf4510a22014-04-01 15:22:40 -070011191 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->primary->fb);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011192}
11193
Daniel Vetter25c5b262012-07-08 22:08:04 +020011194#undef for_each_intel_crtc_masked
11195
Daniel Vetterd9e55602012-07-04 22:16:09 +020011196static void intel_set_config_free(struct intel_set_config *config)
11197{
11198 if (!config)
11199 return;
11200
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011201 kfree(config->save_connector_encoders);
11202 kfree(config->save_encoder_crtcs);
Ville Syrjälä76688512014-01-10 11:28:06 +020011203 kfree(config->save_crtc_enabled);
Daniel Vetterd9e55602012-07-04 22:16:09 +020011204 kfree(config);
11205}
11206
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011207static int intel_set_config_save_state(struct drm_device *dev,
11208 struct intel_set_config *config)
11209{
Ville Syrjälä76688512014-01-10 11:28:06 +020011210 struct drm_crtc *crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011211 struct drm_encoder *encoder;
11212 struct drm_connector *connector;
11213 int count;
11214
Ville Syrjälä76688512014-01-10 11:28:06 +020011215 config->save_crtc_enabled =
11216 kcalloc(dev->mode_config.num_crtc,
11217 sizeof(bool), GFP_KERNEL);
11218 if (!config->save_crtc_enabled)
11219 return -ENOMEM;
11220
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011221 config->save_encoder_crtcs =
11222 kcalloc(dev->mode_config.num_encoder,
11223 sizeof(struct drm_crtc *), GFP_KERNEL);
11224 if (!config->save_encoder_crtcs)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011225 return -ENOMEM;
11226
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011227 config->save_connector_encoders =
11228 kcalloc(dev->mode_config.num_connector,
11229 sizeof(struct drm_encoder *), GFP_KERNEL);
11230 if (!config->save_connector_encoders)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011231 return -ENOMEM;
11232
11233 /* Copy data. Note that driver private data is not affected.
11234 * Should anything bad happen only the expected state is
11235 * restored, not the drivers personal bookkeeping.
11236 */
11237 count = 0;
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010011238 for_each_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011239 config->save_crtc_enabled[count++] = crtc->enabled;
11240 }
11241
11242 count = 0;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011243 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011244 config->save_encoder_crtcs[count++] = encoder->crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011245 }
11246
11247 count = 0;
11248 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011249 config->save_connector_encoders[count++] = connector->encoder;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011250 }
11251
11252 return 0;
11253}
11254
11255static void intel_set_config_restore_state(struct drm_device *dev,
11256 struct intel_set_config *config)
11257{
Ville Syrjälä76688512014-01-10 11:28:06 +020011258 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020011259 struct intel_encoder *encoder;
11260 struct intel_connector *connector;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011261 int count;
11262
11263 count = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011264 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011265 crtc->new_enabled = config->save_crtc_enabled[count++];
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011266
11267 if (crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011268 crtc->new_config = crtc->config;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011269 else
11270 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020011271 }
11272
11273 count = 0;
Damien Lespiaub2784e12014-08-05 11:29:37 +010011274 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011275 encoder->new_crtc =
11276 to_intel_crtc(config->save_encoder_crtcs[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011277 }
11278
11279 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020011280 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
11281 connector->new_encoder =
11282 to_intel_encoder(config->save_connector_encoders[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011283 }
11284}
11285
Imre Deake3de42b2013-05-03 19:44:07 +020011286static bool
Chris Wilson2e57f472013-07-17 12:14:40 +010011287is_crtc_connector_off(struct drm_mode_set *set)
Imre Deake3de42b2013-05-03 19:44:07 +020011288{
11289 int i;
11290
Chris Wilson2e57f472013-07-17 12:14:40 +010011291 if (set->num_connectors == 0)
11292 return false;
11293
11294 if (WARN_ON(set->connectors == NULL))
11295 return false;
11296
11297 for (i = 0; i < set->num_connectors; i++)
11298 if (set->connectors[i]->encoder &&
11299 set->connectors[i]->encoder->crtc == set->crtc &&
11300 set->connectors[i]->dpms != DRM_MODE_DPMS_ON)
Imre Deake3de42b2013-05-03 19:44:07 +020011301 return true;
11302
11303 return false;
11304}
11305
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011306static void
11307intel_set_config_compute_mode_changes(struct drm_mode_set *set,
11308 struct intel_set_config *config)
11309{
11310
11311 /* We should be able to check here if the fb has the same properties
11312 * and then just flip_or_move it */
Chris Wilson2e57f472013-07-17 12:14:40 +010011313 if (is_crtc_connector_off(set)) {
11314 config->mode_changed = true;
Matt Roperf4510a22014-04-01 15:22:40 -070011315 } else if (set->crtc->primary->fb != set->fb) {
Matt Roper3b150f02014-05-29 08:06:53 -070011316 /*
11317 * If we have no fb, we can only flip as long as the crtc is
11318 * active, otherwise we need a full mode set. The crtc may
11319 * be active if we've only disabled the primary plane, or
11320 * in fastboot situations.
11321 */
Matt Roperf4510a22014-04-01 15:22:40 -070011322 if (set->crtc->primary->fb == NULL) {
Jesse Barnes319d9822013-06-26 01:38:19 +030011323 struct intel_crtc *intel_crtc =
11324 to_intel_crtc(set->crtc);
11325
Matt Roper3b150f02014-05-29 08:06:53 -070011326 if (intel_crtc->active) {
Jesse Barnes319d9822013-06-26 01:38:19 +030011327 DRM_DEBUG_KMS("crtc has no fb, will flip\n");
11328 config->fb_changed = true;
11329 } else {
11330 DRM_DEBUG_KMS("inactive crtc, full mode set\n");
11331 config->mode_changed = true;
11332 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011333 } else if (set->fb == NULL) {
11334 config->mode_changed = true;
Daniel Vetter72f49012013-03-28 16:01:35 +010011335 } else if (set->fb->pixel_format !=
Matt Roperf4510a22014-04-01 15:22:40 -070011336 set->crtc->primary->fb->pixel_format) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011337 config->mode_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020011338 } else {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011339 config->fb_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020011340 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011341 }
11342
Daniel Vetter835c5872012-07-10 18:11:08 +020011343 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011344 config->fb_changed = true;
11345
11346 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
11347 DRM_DEBUG_KMS("modes are different, full mode set\n");
11348 drm_mode_debug_printmodeline(&set->crtc->mode);
11349 drm_mode_debug_printmodeline(set->mode);
11350 config->mode_changed = true;
11351 }
Chris Wilsona1d95702013-08-13 18:48:47 +010011352
11353 DRM_DEBUG_KMS("computed changes for [CRTC:%d], mode_changed=%d, fb_changed=%d\n",
11354 set->crtc->base.id, config->mode_changed, config->fb_changed);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011355}
11356
Daniel Vetter2e431052012-07-04 22:42:15 +020011357static int
Daniel Vetter9a935852012-07-05 22:34:27 +020011358intel_modeset_stage_output_state(struct drm_device *dev,
11359 struct drm_mode_set *set,
11360 struct intel_set_config *config)
Daniel Vetter50f56112012-07-02 09:35:43 +020011361{
Daniel Vetter9a935852012-07-05 22:34:27 +020011362 struct intel_connector *connector;
11363 struct intel_encoder *encoder;
Ville Syrjälä76688512014-01-10 11:28:06 +020011364 struct intel_crtc *crtc;
Paulo Zanonif3f08572013-08-12 14:56:53 -030011365 int ro;
Daniel Vetter50f56112012-07-02 09:35:43 +020011366
Damien Lespiau9abdda72013-02-13 13:29:23 +000011367 /* The upper layers ensure that we either disable a crtc or have a list
Daniel Vetter9a935852012-07-05 22:34:27 +020011368 * of connectors. For paranoia, double-check this. */
11369 WARN_ON(!set->fb && (set->num_connectors != 0));
11370 WARN_ON(set->fb && (set->num_connectors == 0));
11371
Daniel Vetter9a935852012-07-05 22:34:27 +020011372 list_for_each_entry(connector, &dev->mode_config.connector_list,
11373 base.head) {
11374 /* Otherwise traverse passed in connector list and get encoders
11375 * for them. */
Daniel Vetter50f56112012-07-02 09:35:43 +020011376 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011377 if (set->connectors[ro] == &connector->base) {
Dave Airlie0e32b392014-05-02 14:02:48 +100011378 connector->new_encoder = intel_find_encoder(connector, to_intel_crtc(set->crtc)->pipe);
Daniel Vetter50f56112012-07-02 09:35:43 +020011379 break;
11380 }
11381 }
11382
Daniel Vetter9a935852012-07-05 22:34:27 +020011383 /* If we disable the crtc, disable all its connectors. Also, if
11384 * the connector is on the changing crtc but not on the new
11385 * connector list, disable it. */
11386 if ((!set->fb || ro == set->num_connectors) &&
11387 connector->base.encoder &&
11388 connector->base.encoder->crtc == set->crtc) {
11389 connector->new_encoder = NULL;
11390
11391 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
11392 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030011393 connector->base.name);
Daniel Vetter9a935852012-07-05 22:34:27 +020011394 }
11395
11396
11397 if (&connector->new_encoder->base != connector->base.encoder) {
Daniel Vetter50f56112012-07-02 09:35:43 +020011398 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011399 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020011400 }
Daniel Vetter9a935852012-07-05 22:34:27 +020011401 }
11402 /* connector->new_encoder is now updated for all connectors. */
11403
11404 /* Update crtc of enabled connectors. */
Daniel Vetter9a935852012-07-05 22:34:27 +020011405 list_for_each_entry(connector, &dev->mode_config.connector_list,
11406 base.head) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011407 struct drm_crtc *new_crtc;
11408
Daniel Vetter9a935852012-07-05 22:34:27 +020011409 if (!connector->new_encoder)
Daniel Vetter50f56112012-07-02 09:35:43 +020011410 continue;
11411
Daniel Vetter9a935852012-07-05 22:34:27 +020011412 new_crtc = connector->new_encoder->base.crtc;
Daniel Vetter50f56112012-07-02 09:35:43 +020011413
11414 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011415 if (set->connectors[ro] == &connector->base)
Daniel Vetter50f56112012-07-02 09:35:43 +020011416 new_crtc = set->crtc;
11417 }
11418
11419 /* Make sure the new CRTC will work with the encoder */
Thierry Reding14509912014-01-13 12:00:22 +010011420 if (!drm_encoder_crtc_ok(&connector->new_encoder->base,
11421 new_crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011422 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +020011423 }
Dave Airlie0e32b392014-05-02 14:02:48 +100011424 connector->new_encoder->new_crtc = to_intel_crtc(new_crtc);
Daniel Vetter9a935852012-07-05 22:34:27 +020011425
11426 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
11427 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030011428 connector->base.name,
Daniel Vetter9a935852012-07-05 22:34:27 +020011429 new_crtc->base.id);
11430 }
11431
11432 /* Check for any encoders that needs to be disabled. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010011433 for_each_intel_encoder(dev, encoder) {
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011434 int num_connectors = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020011435 list_for_each_entry(connector,
11436 &dev->mode_config.connector_list,
11437 base.head) {
11438 if (connector->new_encoder == encoder) {
11439 WARN_ON(!connector->new_encoder->new_crtc);
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011440 num_connectors++;
Daniel Vetter9a935852012-07-05 22:34:27 +020011441 }
11442 }
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011443
11444 if (num_connectors == 0)
11445 encoder->new_crtc = NULL;
11446 else if (num_connectors > 1)
11447 return -EINVAL;
11448
Daniel Vetter9a935852012-07-05 22:34:27 +020011449 /* Only now check for crtc changes so we don't miss encoders
11450 * that will be disabled. */
11451 if (&encoder->new_crtc->base != encoder->base.crtc) {
Daniel Vetter50f56112012-07-02 09:35:43 +020011452 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011453 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020011454 }
11455 }
Daniel Vetter9a935852012-07-05 22:34:27 +020011456 /* Now we've also updated encoder->new_crtc for all encoders. */
Dave Airlie0e32b392014-05-02 14:02:48 +100011457 list_for_each_entry(connector, &dev->mode_config.connector_list,
11458 base.head) {
11459 if (connector->new_encoder)
11460 if (connector->new_encoder != connector->encoder)
11461 connector->encoder = connector->new_encoder;
11462 }
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011463 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011464 crtc->new_enabled = false;
11465
Damien Lespiaub2784e12014-08-05 11:29:37 +010011466 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011467 if (encoder->new_crtc == crtc) {
11468 crtc->new_enabled = true;
11469 break;
11470 }
11471 }
11472
11473 if (crtc->new_enabled != crtc->base.enabled) {
11474 DRM_DEBUG_KMS("crtc %sabled, full mode switch\n",
11475 crtc->new_enabled ? "en" : "dis");
11476 config->mode_changed = true;
11477 }
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011478
11479 if (crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011480 crtc->new_config = crtc->config;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011481 else
11482 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020011483 }
11484
Daniel Vetter2e431052012-07-04 22:42:15 +020011485 return 0;
11486}
11487
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011488static void disable_crtc_nofb(struct intel_crtc *crtc)
11489{
11490 struct drm_device *dev = crtc->base.dev;
11491 struct intel_encoder *encoder;
11492 struct intel_connector *connector;
11493
11494 DRM_DEBUG_KMS("Trying to restore without FB -> disabling pipe %c\n",
11495 pipe_name(crtc->pipe));
11496
11497 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
11498 if (connector->new_encoder &&
11499 connector->new_encoder->new_crtc == crtc)
11500 connector->new_encoder = NULL;
11501 }
11502
Damien Lespiaub2784e12014-08-05 11:29:37 +010011503 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011504 if (encoder->new_crtc == crtc)
11505 encoder->new_crtc = NULL;
11506 }
11507
11508 crtc->new_enabled = false;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011509 crtc->new_config = NULL;
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011510}
11511
Daniel Vetter2e431052012-07-04 22:42:15 +020011512static int intel_crtc_set_config(struct drm_mode_set *set)
11513{
11514 struct drm_device *dev;
Daniel Vetter2e431052012-07-04 22:42:15 +020011515 struct drm_mode_set save_set;
11516 struct intel_set_config *config;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011517 struct intel_crtc_state *pipe_config;
Jesse Barnes50f52752014-11-07 13:11:00 -080011518 unsigned modeset_pipes, prepare_pipes, disable_pipes;
Daniel Vetter2e431052012-07-04 22:42:15 +020011519 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +020011520
Daniel Vetter8d3e3752012-07-05 16:09:09 +020011521 BUG_ON(!set);
11522 BUG_ON(!set->crtc);
11523 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +020011524
Daniel Vetter7e53f3a2013-01-21 10:52:17 +010011525 /* Enforce sane interface api - has been abused by the fb helper. */
11526 BUG_ON(!set->mode && set->fb);
11527 BUG_ON(set->fb && set->num_connectors == 0);
Daniel Vetter431e50f2012-07-10 17:53:42 +020011528
Daniel Vetter2e431052012-07-04 22:42:15 +020011529 if (set->fb) {
11530 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
11531 set->crtc->base.id, set->fb->base.id,
11532 (int)set->num_connectors, set->x, set->y);
11533 } else {
11534 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +020011535 }
11536
11537 dev = set->crtc->dev;
11538
11539 ret = -ENOMEM;
11540 config = kzalloc(sizeof(*config), GFP_KERNEL);
11541 if (!config)
11542 goto out_config;
11543
11544 ret = intel_set_config_save_state(dev, config);
11545 if (ret)
11546 goto out_config;
11547
11548 save_set.crtc = set->crtc;
11549 save_set.mode = &set->crtc->mode;
11550 save_set.x = set->crtc->x;
11551 save_set.y = set->crtc->y;
Matt Roperf4510a22014-04-01 15:22:40 -070011552 save_set.fb = set->crtc->primary->fb;
Daniel Vetter2e431052012-07-04 22:42:15 +020011553
11554 /* Compute whether we need a full modeset, only an fb base update or no
11555 * change at all. In the future we might also check whether only the
11556 * mode changed, e.g. for LVDS where we only change the panel fitter in
11557 * such cases. */
11558 intel_set_config_compute_mode_changes(set, config);
11559
Daniel Vetter9a935852012-07-05 22:34:27 +020011560 ret = intel_modeset_stage_output_state(dev, set, config);
Daniel Vetter2e431052012-07-04 22:42:15 +020011561 if (ret)
11562 goto fail;
11563
Jesse Barnes50f52752014-11-07 13:11:00 -080011564 pipe_config = intel_modeset_compute_config(set->crtc, set->mode,
11565 set->fb,
11566 &modeset_pipes,
11567 &prepare_pipes,
11568 &disable_pipes);
Jesse Barnes20664592014-11-05 14:26:09 -080011569 if (IS_ERR(pipe_config)) {
Matt Roper6ac04832014-11-17 09:59:28 -080011570 ret = PTR_ERR(pipe_config);
Jesse Barnes50f52752014-11-07 13:11:00 -080011571 goto fail;
Jesse Barnes20664592014-11-05 14:26:09 -080011572 } else if (pipe_config) {
Ville Syrjäläb9950a12014-11-21 21:00:36 +020011573 if (pipe_config->has_audio !=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011574 to_intel_crtc(set->crtc)->config->has_audio)
Jesse Barnes20664592014-11-05 14:26:09 -080011575 config->mode_changed = true;
11576
Jesse Barnesaf15d2c2014-12-01 09:54:28 -080011577 /*
11578 * Note we have an issue here with infoframes: current code
11579 * only updates them on the full mode set path per hw
11580 * requirements. So here we should be checking for any
11581 * required changes and forcing a mode set.
11582 */
Jesse Barnes20664592014-11-05 14:26:09 -080011583 }
Jesse Barnes50f52752014-11-07 13:11:00 -080011584
11585 /* set_mode will free it in the mode_changed case */
11586 if (!config->mode_changed)
11587 kfree(pipe_config);
11588
Jesse Barnes1f9954d2014-11-05 14:26:10 -080011589 intel_update_pipe_size(to_intel_crtc(set->crtc));
11590
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011591 if (config->mode_changed) {
Jesse Barnes50f52752014-11-07 13:11:00 -080011592 ret = intel_set_mode_pipes(set->crtc, set->mode,
11593 set->x, set->y, set->fb, pipe_config,
11594 modeset_pipes, prepare_pipes,
11595 disable_pipes);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011596 } else if (config->fb_changed) {
Matt Roper3b150f02014-05-29 08:06:53 -070011597 struct intel_crtc *intel_crtc = to_intel_crtc(set->crtc);
Gustavo Padovan455a6802014-12-01 15:40:11 -080011598 struct drm_plane *primary = set->crtc->primary;
11599 int vdisplay, hdisplay;
Matt Roper3b150f02014-05-29 08:06:53 -070011600
Gustavo Padovan455a6802014-12-01 15:40:11 -080011601 drm_crtc_get_hv_timing(set->mode, &hdisplay, &vdisplay);
11602 ret = primary->funcs->update_plane(primary, set->crtc, set->fb,
11603 0, 0, hdisplay, vdisplay,
11604 set->x << 16, set->y << 16,
11605 hdisplay << 16, vdisplay << 16);
Matt Roper3b150f02014-05-29 08:06:53 -070011606
11607 /*
11608 * We need to make sure the primary plane is re-enabled if it
11609 * has previously been turned off.
11610 */
11611 if (!intel_crtc->primary_enabled && ret == 0) {
11612 WARN_ON(!intel_crtc->active);
Ville Syrjäläfdd508a62014-08-08 21:51:11 +030011613 intel_enable_primary_hw_plane(set->crtc->primary, set->crtc);
Matt Roper3b150f02014-05-29 08:06:53 -070011614 }
11615
Jesse Barnes7ca51a32014-01-07 13:50:49 -080011616 /*
11617 * In the fastboot case this may be our only check of the
11618 * state after boot. It would be better to only do it on
11619 * the first update, but we don't have a nice way of doing that
11620 * (and really, set_config isn't used much for high freq page
11621 * flipping, so increasing its cost here shouldn't be a big
11622 * deal).
11623 */
Jani Nikulad330a952014-01-21 11:24:25 +020011624 if (i915.fastboot && ret == 0)
Jesse Barnes7ca51a32014-01-07 13:50:49 -080011625 intel_modeset_check_state(set->crtc->dev);
Daniel Vetter50f56112012-07-02 09:35:43 +020011626 }
11627
Chris Wilson2d05eae2013-05-03 17:36:25 +010011628 if (ret) {
Daniel Vetterbf67dfe2013-06-25 11:06:52 +020011629 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
11630 set->crtc->base.id, ret);
Daniel Vetter50f56112012-07-02 09:35:43 +020011631fail:
Chris Wilson2d05eae2013-05-03 17:36:25 +010011632 intel_set_config_restore_state(dev, config);
Daniel Vetter50f56112012-07-02 09:35:43 +020011633
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011634 /*
11635 * HACK: if the pipe was on, but we didn't have a framebuffer,
11636 * force the pipe off to avoid oopsing in the modeset code
11637 * due to fb==NULL. This should only happen during boot since
11638 * we don't yet reconstruct the FB from the hardware state.
11639 */
11640 if (to_intel_crtc(save_set.crtc)->new_enabled && !save_set.fb)
11641 disable_crtc_nofb(to_intel_crtc(save_set.crtc));
11642
Chris Wilson2d05eae2013-05-03 17:36:25 +010011643 /* Try to restore the config */
11644 if (config->mode_changed &&
11645 intel_set_mode(save_set.crtc, save_set.mode,
11646 save_set.x, save_set.y, save_set.fb))
11647 DRM_ERROR("failed to restore config after modeset failure\n");
11648 }
Daniel Vetter50f56112012-07-02 09:35:43 +020011649
Daniel Vetterd9e55602012-07-04 22:16:09 +020011650out_config:
11651 intel_set_config_free(config);
Daniel Vetter50f56112012-07-02 09:35:43 +020011652 return ret;
11653}
11654
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011655static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011656 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +020011657 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011658 .destroy = intel_crtc_destroy,
11659 .page_flip = intel_crtc_page_flip,
Matt Roper13568372015-01-21 16:35:47 -080011660 .atomic_duplicate_state = intel_crtc_duplicate_state,
11661 .atomic_destroy_state = intel_crtc_destroy_state,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011662};
11663
Daniel Vetter53589012013-06-05 13:34:16 +020011664static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
11665 struct intel_shared_dpll *pll,
11666 struct intel_dpll_hw_state *hw_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011667{
Daniel Vetter53589012013-06-05 13:34:16 +020011668 uint32_t val;
11669
Daniel Vetterf458ebb2014-09-30 10:56:39 +020011670 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_PLLS))
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030011671 return false;
11672
Daniel Vetter53589012013-06-05 13:34:16 +020011673 val = I915_READ(PCH_DPLL(pll->id));
Daniel Vetter66e985c2013-06-05 13:34:20 +020011674 hw_state->dpll = val;
11675 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
11676 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
Daniel Vetter53589012013-06-05 13:34:16 +020011677
11678 return val & DPLL_VCO_ENABLE;
11679}
11680
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011681static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
11682 struct intel_shared_dpll *pll)
11683{
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011684 I915_WRITE(PCH_FP0(pll->id), pll->config.hw_state.fp0);
11685 I915_WRITE(PCH_FP1(pll->id), pll->config.hw_state.fp1);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011686}
11687
Daniel Vettere7b903d2013-06-05 13:34:14 +020011688static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
11689 struct intel_shared_dpll *pll)
11690{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011691 /* PCH refclock must be enabled first */
Paulo Zanoni89eff4b2014-01-08 11:12:28 -020011692 ibx_assert_pch_refclk_enabled(dev_priv);
Daniel Vettere7b903d2013-06-05 13:34:14 +020011693
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011694 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011695
11696 /* Wait for the clocks to stabilize. */
11697 POSTING_READ(PCH_DPLL(pll->id));
11698 udelay(150);
11699
11700 /* The pixel multiplier can only be updated once the
11701 * DPLL is enabled and the clocks are stable.
11702 *
11703 * So write it again.
11704 */
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011705 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011706 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020011707 udelay(200);
11708}
11709
11710static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
11711 struct intel_shared_dpll *pll)
11712{
11713 struct drm_device *dev = dev_priv->dev;
11714 struct intel_crtc *crtc;
Daniel Vettere7b903d2013-06-05 13:34:14 +020011715
11716 /* Make sure no transcoder isn't still depending on us. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011717 for_each_intel_crtc(dev, crtc) {
Daniel Vettere7b903d2013-06-05 13:34:14 +020011718 if (intel_crtc_to_shared_dpll(crtc) == pll)
11719 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
11720 }
11721
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011722 I915_WRITE(PCH_DPLL(pll->id), 0);
11723 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020011724 udelay(200);
11725}
11726
Daniel Vetter46edb022013-06-05 13:34:12 +020011727static char *ibx_pch_dpll_names[] = {
11728 "PCH DPLL A",
11729 "PCH DPLL B",
11730};
11731
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011732static void ibx_pch_dpll_init(struct drm_device *dev)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011733{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011734 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011735 int i;
11736
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011737 dev_priv->num_shared_dpll = 2;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011738
Daniel Vettere72f9fb2013-06-05 13:34:06 +020011739 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
Daniel Vetter46edb022013-06-05 13:34:12 +020011740 dev_priv->shared_dplls[i].id = i;
11741 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011742 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
Daniel Vettere7b903d2013-06-05 13:34:14 +020011743 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
11744 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
Daniel Vetter53589012013-06-05 13:34:16 +020011745 dev_priv->shared_dplls[i].get_hw_state =
11746 ibx_pch_dpll_get_hw_state;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011747 }
11748}
11749
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011750static void intel_shared_dpll_init(struct drm_device *dev)
11751{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011752 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011753
Daniel Vetter9cd86932014-06-25 22:01:57 +030011754 if (HAS_DDI(dev))
11755 intel_ddi_pll_init(dev);
11756 else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011757 ibx_pch_dpll_init(dev);
11758 else
11759 dev_priv->num_shared_dpll = 0;
11760
11761 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011762}
11763
Matt Roper6beb8c232014-12-01 15:40:14 -080011764/**
11765 * intel_prepare_plane_fb - Prepare fb for usage on plane
11766 * @plane: drm plane to prepare for
11767 * @fb: framebuffer to prepare for presentation
11768 *
11769 * Prepares a framebuffer for usage on a display plane. Generally this
11770 * involves pinning the underlying object and updating the frontbuffer tracking
11771 * bits. Some older platforms need special physical address handling for
11772 * cursor planes.
11773 *
11774 * Returns 0 on success, negative error code on failure.
11775 */
11776int
11777intel_prepare_plane_fb(struct drm_plane *plane,
11778 struct drm_framebuffer *fb)
Matt Roper465c1202014-05-29 08:06:54 -070011779{
11780 struct drm_device *dev = plane->dev;
Matt Roper6beb8c232014-12-01 15:40:14 -080011781 struct intel_plane *intel_plane = to_intel_plane(plane);
11782 enum pipe pipe = intel_plane->pipe;
11783 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
11784 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->fb);
11785 unsigned frontbuffer_bits = 0;
11786 int ret = 0;
Matt Roper465c1202014-05-29 08:06:54 -070011787
Matt Roperea2c67b2014-12-23 10:41:52 -080011788 if (!obj)
Matt Roper465c1202014-05-29 08:06:54 -070011789 return 0;
11790
Matt Roper6beb8c232014-12-01 15:40:14 -080011791 switch (plane->type) {
11792 case DRM_PLANE_TYPE_PRIMARY:
11793 frontbuffer_bits = INTEL_FRONTBUFFER_PRIMARY(pipe);
11794 break;
11795 case DRM_PLANE_TYPE_CURSOR:
11796 frontbuffer_bits = INTEL_FRONTBUFFER_CURSOR(pipe);
11797 break;
11798 case DRM_PLANE_TYPE_OVERLAY:
11799 frontbuffer_bits = INTEL_FRONTBUFFER_SPRITE(pipe);
11800 break;
11801 }
Matt Roper465c1202014-05-29 08:06:54 -070011802
Matt Roper4c345742014-07-09 16:22:10 -070011803 mutex_lock(&dev->struct_mutex);
Matt Roper465c1202014-05-29 08:06:54 -070011804
Matt Roper6beb8c232014-12-01 15:40:14 -080011805 if (plane->type == DRM_PLANE_TYPE_CURSOR &&
11806 INTEL_INFO(dev)->cursor_needs_physical) {
11807 int align = IS_I830(dev) ? 16 * 1024 : 256;
11808 ret = i915_gem_object_attach_phys(obj, align);
11809 if (ret)
11810 DRM_DEBUG_KMS("failed to attach phys object\n");
11811 } else {
11812 ret = intel_pin_and_fence_fb_obj(plane, fb, NULL);
11813 }
11814
11815 if (ret == 0)
11816 i915_gem_track_fb(old_obj, obj, frontbuffer_bits);
11817
11818 mutex_unlock(&dev->struct_mutex);
11819
11820 return ret;
11821}
11822
Matt Roper38f3ce32014-12-02 07:45:25 -080011823/**
11824 * intel_cleanup_plane_fb - Cleans up an fb after plane use
11825 * @plane: drm plane to clean up for
11826 * @fb: old framebuffer that was on plane
11827 *
11828 * Cleans up a framebuffer that has just been removed from a plane.
11829 */
11830void
11831intel_cleanup_plane_fb(struct drm_plane *plane,
11832 struct drm_framebuffer *fb)
11833{
11834 struct drm_device *dev = plane->dev;
11835 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
11836
11837 if (WARN_ON(!obj))
11838 return;
11839
11840 if (plane->type != DRM_PLANE_TYPE_CURSOR ||
11841 !INTEL_INFO(dev)->cursor_needs_physical) {
11842 mutex_lock(&dev->struct_mutex);
11843 intel_unpin_fb_obj(obj);
11844 mutex_unlock(&dev->struct_mutex);
11845 }
Matt Roper465c1202014-05-29 08:06:54 -070011846}
11847
11848static int
Gustavo Padovan3c692a42014-09-05 17:04:49 -030011849intel_check_primary_plane(struct drm_plane *plane,
11850 struct intel_plane_state *state)
Matt Roper465c1202014-05-29 08:06:54 -070011851{
Matt Roper32b7eee2014-12-24 07:59:06 -080011852 struct drm_device *dev = plane->dev;
11853 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roper2b875c22014-12-01 15:40:13 -080011854 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080011855 struct intel_crtc *intel_crtc;
Matt Roper2b875c22014-12-01 15:40:13 -080011856 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030011857 struct drm_rect *dest = &state->dst;
11858 struct drm_rect *src = &state->src;
11859 const struct drm_rect *clip = &state->clip;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011860 int ret;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030011861
Matt Roperea2c67b2014-12-23 10:41:52 -080011862 crtc = crtc ? crtc : plane->crtc;
11863 intel_crtc = to_intel_crtc(crtc);
11864
Matt Roperc59cb172014-12-01 15:40:16 -080011865 ret = drm_plane_helper_check_update(plane, crtc, fb,
11866 src, dest, clip,
11867 DRM_PLANE_HELPER_NO_SCALING,
11868 DRM_PLANE_HELPER_NO_SCALING,
11869 false, true, &state->visible);
11870 if (ret)
11871 return ret;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011872
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011873 if (intel_crtc->active) {
Matt Roper32b7eee2014-12-24 07:59:06 -080011874 intel_crtc->atomic.wait_for_flips = true;
11875
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011876 /*
11877 * FBC does not work on some platforms for rotated
11878 * planes, so disable it when rotation is not 0 and
11879 * update it when rotation is set back to 0.
11880 *
11881 * FIXME: This is redundant with the fbc update done in
11882 * the primary plane enable function except that that
11883 * one is done too late. We eventually need to unify
11884 * this.
11885 */
11886 if (intel_crtc->primary_enabled &&
11887 INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev) &&
Paulo Zanonie35fef22015-02-09 14:46:29 -020011888 dev_priv->fbc.crtc == intel_crtc &&
Matt Roper8e7d6882015-01-21 16:35:41 -080011889 state->base.rotation != BIT(DRM_ROTATE_0)) {
Matt Roper32b7eee2014-12-24 07:59:06 -080011890 intel_crtc->atomic.disable_fbc = true;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011891 }
11892
11893 if (state->visible) {
Matt Roper32b7eee2014-12-24 07:59:06 -080011894 /*
11895 * BDW signals flip done immediately if the plane
11896 * is disabled, even if the plane enable is already
11897 * armed to occur at the next vblank :(
11898 */
11899 if (IS_BROADWELL(dev) && !intel_crtc->primary_enabled)
11900 intel_crtc->atomic.wait_vblank = true;
11901 }
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011902
Matt Roper32b7eee2014-12-24 07:59:06 -080011903 intel_crtc->atomic.fb_bits |=
11904 INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
11905
11906 intel_crtc->atomic.update_fbc = true;
Matt Roperc59cb172014-12-01 15:40:16 -080011907 }
11908
11909 return 0;
Matt Roper465c1202014-05-29 08:06:54 -070011910}
11911
Sonika Jindal48404c12014-08-22 14:06:04 +053011912static void
11913intel_commit_primary_plane(struct drm_plane *plane,
11914 struct intel_plane_state *state)
11915{
Matt Roper2b875c22014-12-01 15:40:13 -080011916 struct drm_crtc *crtc = state->base.crtc;
11917 struct drm_framebuffer *fb = state->base.fb;
11918 struct drm_device *dev = plane->dev;
Sonika Jindal48404c12014-08-22 14:06:04 +053011919 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperea2c67b2014-12-23 10:41:52 -080011920 struct intel_crtc *intel_crtc;
Sonika Jindal48404c12014-08-22 14:06:04 +053011921 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Sonika Jindalce54d852014-08-21 11:44:39 +053011922 struct intel_plane *intel_plane = to_intel_plane(plane);
11923 struct drm_rect *src = &state->src;
Matt Ropercf4c7c12014-12-04 10:27:42 -080011924
Matt Roperea2c67b2014-12-23 10:41:52 -080011925 crtc = crtc ? crtc : plane->crtc;
11926 intel_crtc = to_intel_crtc(crtc);
11927
Matt Ropercf4c7c12014-12-04 10:27:42 -080011928 plane->fb = fb;
Sonika Jindalce54d852014-08-21 11:44:39 +053011929 crtc->x = src->x1 >> 16;
Matt Roper465c1202014-05-29 08:06:54 -070011930 crtc->y = src->y1 >> 16;
11931
Sonika Jindalce54d852014-08-21 11:44:39 +053011932 intel_plane->obj = obj;
Matt Roper465c1202014-05-29 08:06:54 -070011933
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011934 if (intel_crtc->active) {
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011935 if (state->visible) {
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011936 /* FIXME: kill this fastboot hack */
11937 intel_update_pipe_size(intel_crtc);
11938
11939 intel_crtc->primary_enabled = true;
11940
11941 dev_priv->display.update_primary_plane(crtc, plane->fb,
11942 crtc->x, crtc->y);
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011943 } else {
11944 /*
11945 * If clipping results in a non-visible primary plane,
11946 * we'll disable the primary plane. Note that this is
11947 * a bit different than what happens if userspace
11948 * explicitly disables the plane by passing fb=0
11949 * because plane->fb still gets set and pinned.
11950 */
11951 intel_disable_primary_hw_plane(plane, crtc);
11952 }
Matt Roper32b7eee2014-12-24 07:59:06 -080011953 }
11954}
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011955
Matt Roper32b7eee2014-12-24 07:59:06 -080011956static void intel_begin_crtc_commit(struct drm_crtc *crtc)
11957{
11958 struct drm_device *dev = crtc->dev;
11959 struct drm_i915_private *dev_priv = dev->dev_private;
11960 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roperea2c67b2014-12-23 10:41:52 -080011961 struct intel_plane *intel_plane;
11962 struct drm_plane *p;
11963 unsigned fb_bits = 0;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011964
Matt Roperea2c67b2014-12-23 10:41:52 -080011965 /* Track fb's for any planes being disabled */
11966 list_for_each_entry(p, &dev->mode_config.plane_list, head) {
11967 intel_plane = to_intel_plane(p);
11968
11969 if (intel_crtc->atomic.disabled_planes &
11970 (1 << drm_plane_index(p))) {
11971 switch (p->type) {
11972 case DRM_PLANE_TYPE_PRIMARY:
11973 fb_bits = INTEL_FRONTBUFFER_PRIMARY(intel_plane->pipe);
11974 break;
11975 case DRM_PLANE_TYPE_CURSOR:
11976 fb_bits = INTEL_FRONTBUFFER_CURSOR(intel_plane->pipe);
11977 break;
11978 case DRM_PLANE_TYPE_OVERLAY:
11979 fb_bits = INTEL_FRONTBUFFER_SPRITE(intel_plane->pipe);
11980 break;
11981 }
11982
11983 mutex_lock(&dev->struct_mutex);
11984 i915_gem_track_fb(intel_fb_obj(p->fb), NULL, fb_bits);
11985 mutex_unlock(&dev->struct_mutex);
11986 }
11987 }
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030011988
Matt Roper32b7eee2014-12-24 07:59:06 -080011989 if (intel_crtc->atomic.wait_for_flips)
11990 intel_crtc_wait_for_pending_flips(crtc);
11991
11992 if (intel_crtc->atomic.disable_fbc)
11993 intel_fbc_disable(dev);
11994
11995 if (intel_crtc->atomic.pre_disable_primary)
11996 intel_pre_disable_primary(crtc);
11997
11998 if (intel_crtc->atomic.update_wm)
11999 intel_update_watermarks(crtc);
12000
12001 intel_runtime_pm_get(dev_priv);
Matt Roperc34c9ee2014-12-23 10:41:50 -080012002
12003 /* Perform vblank evasion around commit operation */
12004 if (intel_crtc->active)
12005 intel_crtc->atomic.evade =
12006 intel_pipe_update_start(intel_crtc,
12007 &intel_crtc->atomic.start_vbl_count);
Matt Roper32b7eee2014-12-24 07:59:06 -080012008}
12009
12010static void intel_finish_crtc_commit(struct drm_crtc *crtc)
12011{
12012 struct drm_device *dev = crtc->dev;
12013 struct drm_i915_private *dev_priv = dev->dev_private;
12014 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12015 struct drm_plane *p;
12016
Matt Roperc34c9ee2014-12-23 10:41:50 -080012017 if (intel_crtc->atomic.evade)
12018 intel_pipe_update_end(intel_crtc,
12019 intel_crtc->atomic.start_vbl_count);
12020
Matt Roper32b7eee2014-12-24 07:59:06 -080012021 intel_runtime_pm_put(dev_priv);
12022
12023 if (intel_crtc->atomic.wait_vblank)
12024 intel_wait_for_vblank(dev, intel_crtc->pipe);
12025
12026 intel_frontbuffer_flip(dev, intel_crtc->atomic.fb_bits);
12027
12028 if (intel_crtc->atomic.update_fbc) {
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012029 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020012030 intel_fbc_update(dev);
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012031 mutex_unlock(&dev->struct_mutex);
12032 }
Matt Roper465c1202014-05-29 08:06:54 -070012033
Matt Roper32b7eee2014-12-24 07:59:06 -080012034 if (intel_crtc->atomic.post_enable_primary)
12035 intel_post_enable_primary(crtc);
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012036
Matt Roper32b7eee2014-12-24 07:59:06 -080012037 drm_for_each_legacy_plane(p, &dev->mode_config.plane_list)
12038 if (intel_crtc->atomic.update_sprite_watermarks & drm_plane_index(p))
12039 intel_update_sprite_watermarks(p, crtc, 0, 0, 0,
12040 false, false);
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012041
Matt Roper32b7eee2014-12-24 07:59:06 -080012042 memset(&intel_crtc->atomic, 0, sizeof(intel_crtc->atomic));
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012043}
12044
Matt Ropercf4c7c12014-12-04 10:27:42 -080012045/**
Matt Roper4a3b8762014-12-23 10:41:51 -080012046 * intel_plane_destroy - destroy a plane
12047 * @plane: plane to destroy
Matt Ropercf4c7c12014-12-04 10:27:42 -080012048 *
Matt Roper4a3b8762014-12-23 10:41:51 -080012049 * Common destruction function for all types of planes (primary, cursor,
12050 * sprite).
Matt Ropercf4c7c12014-12-04 10:27:42 -080012051 */
Matt Roper4a3b8762014-12-23 10:41:51 -080012052void intel_plane_destroy(struct drm_plane *plane)
Matt Roper465c1202014-05-29 08:06:54 -070012053{
12054 struct intel_plane *intel_plane = to_intel_plane(plane);
12055 drm_plane_cleanup(plane);
12056 kfree(intel_plane);
12057}
12058
Matt Roper65a3fea2015-01-21 16:35:42 -080012059const struct drm_plane_funcs intel_plane_funcs = {
Matt Roper3f678c92015-01-30 16:22:37 -080012060 .update_plane = drm_atomic_helper_update_plane,
12061 .disable_plane = drm_atomic_helper_disable_plane,
Matt Roper3d7d6512014-06-10 08:28:13 -070012062 .destroy = intel_plane_destroy,
Matt Roperc196e1d2015-01-21 16:35:48 -080012063 .set_property = drm_atomic_helper_plane_set_property,
Matt Ropera98b3432015-01-21 16:35:43 -080012064 .atomic_get_property = intel_plane_atomic_get_property,
12065 .atomic_set_property = intel_plane_atomic_set_property,
Matt Roperea2c67b2014-12-23 10:41:52 -080012066 .atomic_duplicate_state = intel_plane_duplicate_state,
12067 .atomic_destroy_state = intel_plane_destroy_state,
12068
Matt Roper465c1202014-05-29 08:06:54 -070012069};
12070
12071static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
12072 int pipe)
12073{
12074 struct intel_plane *primary;
Matt Roper8e7d6882015-01-21 16:35:41 -080012075 struct intel_plane_state *state;
Matt Roper465c1202014-05-29 08:06:54 -070012076 const uint32_t *intel_primary_formats;
12077 int num_formats;
12078
12079 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
12080 if (primary == NULL)
12081 return NULL;
12082
Matt Roper8e7d6882015-01-21 16:35:41 -080012083 state = intel_create_plane_state(&primary->base);
12084 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080012085 kfree(primary);
12086 return NULL;
12087 }
Matt Roper8e7d6882015-01-21 16:35:41 -080012088 primary->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080012089
Matt Roper465c1202014-05-29 08:06:54 -070012090 primary->can_scale = false;
12091 primary->max_downscale = 1;
12092 primary->pipe = pipe;
12093 primary->plane = pipe;
Matt Roperc59cb172014-12-01 15:40:16 -080012094 primary->check_plane = intel_check_primary_plane;
12095 primary->commit_plane = intel_commit_primary_plane;
Matt Roper465c1202014-05-29 08:06:54 -070012096 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
12097 primary->plane = !pipe;
12098
12099 if (INTEL_INFO(dev)->gen <= 3) {
12100 intel_primary_formats = intel_primary_formats_gen2;
12101 num_formats = ARRAY_SIZE(intel_primary_formats_gen2);
12102 } else {
12103 intel_primary_formats = intel_primary_formats_gen4;
12104 num_formats = ARRAY_SIZE(intel_primary_formats_gen4);
12105 }
12106
12107 drm_universal_plane_init(dev, &primary->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080012108 &intel_plane_funcs,
Matt Roper465c1202014-05-29 08:06:54 -070012109 intel_primary_formats, num_formats,
12110 DRM_PLANE_TYPE_PRIMARY);
Sonika Jindal48404c12014-08-22 14:06:04 +053012111
12112 if (INTEL_INFO(dev)->gen >= 4) {
12113 if (!dev->mode_config.rotation_property)
12114 dev->mode_config.rotation_property =
12115 drm_mode_create_rotation_property(dev,
12116 BIT(DRM_ROTATE_0) |
12117 BIT(DRM_ROTATE_180));
12118 if (dev->mode_config.rotation_property)
12119 drm_object_attach_property(&primary->base.base,
12120 dev->mode_config.rotation_property,
Matt Roper8e7d6882015-01-21 16:35:41 -080012121 state->base.rotation);
Sonika Jindal48404c12014-08-22 14:06:04 +053012122 }
12123
Matt Roperea2c67b2014-12-23 10:41:52 -080012124 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
12125
Matt Roper465c1202014-05-29 08:06:54 -070012126 return &primary->base;
12127}
12128
Matt Roper3d7d6512014-06-10 08:28:13 -070012129static int
Gustavo Padovan852e7872014-09-05 17:22:31 -030012130intel_check_cursor_plane(struct drm_plane *plane,
12131 struct intel_plane_state *state)
Matt Roper3d7d6512014-06-10 08:28:13 -070012132{
Matt Roper2b875c22014-12-01 15:40:13 -080012133 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080012134 struct drm_device *dev = plane->dev;
Matt Roper2b875c22014-12-01 15:40:13 -080012135 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan852e7872014-09-05 17:22:31 -030012136 struct drm_rect *dest = &state->dst;
12137 struct drm_rect *src = &state->src;
12138 const struct drm_rect *clip = &state->clip;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012139 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Matt Roperea2c67b2014-12-23 10:41:52 -080012140 struct intel_crtc *intel_crtc;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012141 unsigned stride;
12142 int ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030012143
Matt Roperea2c67b2014-12-23 10:41:52 -080012144 crtc = crtc ? crtc : plane->crtc;
12145 intel_crtc = to_intel_crtc(crtc);
12146
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012147 ret = drm_plane_helper_check_update(plane, crtc, fb,
Gustavo Padovan852e7872014-09-05 17:22:31 -030012148 src, dest, clip,
12149 DRM_PLANE_HELPER_NO_SCALING,
12150 DRM_PLANE_HELPER_NO_SCALING,
12151 true, true, &state->visible);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012152 if (ret)
12153 return ret;
12154
12155
12156 /* if we want to turn off the cursor ignore width and height */
12157 if (!obj)
Matt Roper32b7eee2014-12-24 07:59:06 -080012158 goto finish;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012159
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012160 /* Check for which cursor types we support */
Matt Roperea2c67b2014-12-23 10:41:52 -080012161 if (!cursor_size_ok(dev, state->base.crtc_w, state->base.crtc_h)) {
12162 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
12163 state->base.crtc_w, state->base.crtc_h);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012164 return -EINVAL;
12165 }
12166
Matt Roperea2c67b2014-12-23 10:41:52 -080012167 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
12168 if (obj->base.size < stride * state->base.crtc_h) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012169 DRM_DEBUG_KMS("buffer is too small\n");
12170 return -ENOMEM;
12171 }
12172
Gustavo Padovane391ea82014-09-24 14:20:25 -030012173 if (fb == crtc->cursor->fb)
12174 return 0;
12175
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012176 /* we only need to pin inside GTT if cursor is non-phy */
12177 mutex_lock(&dev->struct_mutex);
12178 if (!INTEL_INFO(dev)->cursor_needs_physical && obj->tiling_mode) {
12179 DRM_DEBUG_KMS("cursor cannot be tiled\n");
12180 ret = -EINVAL;
12181 }
12182 mutex_unlock(&dev->struct_mutex);
12183
Matt Roper32b7eee2014-12-24 07:59:06 -080012184finish:
12185 if (intel_crtc->active) {
Matt Roperea2c67b2014-12-23 10:41:52 -080012186 if (intel_crtc->cursor_width != state->base.crtc_w)
Matt Roper32b7eee2014-12-24 07:59:06 -080012187 intel_crtc->atomic.update_wm = true;
12188
12189 intel_crtc->atomic.fb_bits |=
12190 INTEL_FRONTBUFFER_CURSOR(intel_crtc->pipe);
12191 }
12192
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012193 return ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030012194}
12195
Matt Roperf4a2cf22014-12-01 15:40:12 -080012196static void
Gustavo Padovan852e7872014-09-05 17:22:31 -030012197intel_commit_cursor_plane(struct drm_plane *plane,
12198 struct intel_plane_state *state)
12199{
Matt Roper2b875c22014-12-01 15:40:13 -080012200 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080012201 struct drm_device *dev = plane->dev;
12202 struct intel_crtc *intel_crtc;
Sonika Jindala919db92014-10-23 07:41:33 -070012203 struct intel_plane *intel_plane = to_intel_plane(plane);
Matt Roper2b875c22014-12-01 15:40:13 -080012204 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
Gustavo Padovana912f122014-12-01 15:40:10 -080012205 uint32_t addr;
Matt Roper3d7d6512014-06-10 08:28:13 -070012206
Matt Roperea2c67b2014-12-23 10:41:52 -080012207 crtc = crtc ? crtc : plane->crtc;
12208 intel_crtc = to_intel_crtc(crtc);
Sonika Jindala919db92014-10-23 07:41:33 -070012209
Matt Roperea2c67b2014-12-23 10:41:52 -080012210 plane->fb = state->base.fb;
12211 crtc->cursor_x = state->base.crtc_x;
12212 crtc->cursor_y = state->base.crtc_y;
12213
Sonika Jindala919db92014-10-23 07:41:33 -070012214 intel_plane->obj = obj;
12215
Gustavo Padovana912f122014-12-01 15:40:10 -080012216 if (intel_crtc->cursor_bo == obj)
12217 goto update;
12218
Matt Roperf4a2cf22014-12-01 15:40:12 -080012219 if (!obj)
Gustavo Padovana912f122014-12-01 15:40:10 -080012220 addr = 0;
Matt Roperf4a2cf22014-12-01 15:40:12 -080012221 else if (!INTEL_INFO(dev)->cursor_needs_physical)
Gustavo Padovana912f122014-12-01 15:40:10 -080012222 addr = i915_gem_obj_ggtt_offset(obj);
Matt Roperf4a2cf22014-12-01 15:40:12 -080012223 else
Gustavo Padovana912f122014-12-01 15:40:10 -080012224 addr = obj->phys_handle->busaddr;
Gustavo Padovana912f122014-12-01 15:40:10 -080012225
Gustavo Padovana912f122014-12-01 15:40:10 -080012226 intel_crtc->cursor_addr = addr;
12227 intel_crtc->cursor_bo = obj;
12228update:
Matt Roperea2c67b2014-12-23 10:41:52 -080012229 intel_crtc->cursor_width = state->base.crtc_w;
12230 intel_crtc->cursor_height = state->base.crtc_h;
Gustavo Padovana912f122014-12-01 15:40:10 -080012231
Matt Roper32b7eee2014-12-24 07:59:06 -080012232 if (intel_crtc->active)
Gustavo Padovan852e7872014-09-05 17:22:31 -030012233 intel_crtc_update_cursor(crtc, state->visible);
Matt Roper3d7d6512014-06-10 08:28:13 -070012234}
Gustavo Padovan852e7872014-09-05 17:22:31 -030012235
Matt Roper3d7d6512014-06-10 08:28:13 -070012236static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
12237 int pipe)
12238{
12239 struct intel_plane *cursor;
Matt Roper8e7d6882015-01-21 16:35:41 -080012240 struct intel_plane_state *state;
Matt Roper3d7d6512014-06-10 08:28:13 -070012241
12242 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
12243 if (cursor == NULL)
12244 return NULL;
12245
Matt Roper8e7d6882015-01-21 16:35:41 -080012246 state = intel_create_plane_state(&cursor->base);
12247 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080012248 kfree(cursor);
12249 return NULL;
12250 }
Matt Roper8e7d6882015-01-21 16:35:41 -080012251 cursor->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080012252
Matt Roper3d7d6512014-06-10 08:28:13 -070012253 cursor->can_scale = false;
12254 cursor->max_downscale = 1;
12255 cursor->pipe = pipe;
12256 cursor->plane = pipe;
Matt Roperc59cb172014-12-01 15:40:16 -080012257 cursor->check_plane = intel_check_cursor_plane;
12258 cursor->commit_plane = intel_commit_cursor_plane;
Matt Roper3d7d6512014-06-10 08:28:13 -070012259
12260 drm_universal_plane_init(dev, &cursor->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080012261 &intel_plane_funcs,
Matt Roper3d7d6512014-06-10 08:28:13 -070012262 intel_cursor_formats,
12263 ARRAY_SIZE(intel_cursor_formats),
12264 DRM_PLANE_TYPE_CURSOR);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070012265
12266 if (INTEL_INFO(dev)->gen >= 4) {
12267 if (!dev->mode_config.rotation_property)
12268 dev->mode_config.rotation_property =
12269 drm_mode_create_rotation_property(dev,
12270 BIT(DRM_ROTATE_0) |
12271 BIT(DRM_ROTATE_180));
12272 if (dev->mode_config.rotation_property)
12273 drm_object_attach_property(&cursor->base.base,
12274 dev->mode_config.rotation_property,
Matt Roper8e7d6882015-01-21 16:35:41 -080012275 state->base.rotation);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070012276 }
12277
Matt Roperea2c67b2014-12-23 10:41:52 -080012278 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
12279
Matt Roper3d7d6512014-06-10 08:28:13 -070012280 return &cursor->base;
12281}
12282
Hannes Ederb358d0a2008-12-18 21:18:47 +010012283static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -080012284{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012285 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080012286 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020012287 struct intel_crtc_state *crtc_state = NULL;
Matt Roper3d7d6512014-06-10 08:28:13 -070012288 struct drm_plane *primary = NULL;
12289 struct drm_plane *cursor = NULL;
Matt Roper465c1202014-05-29 08:06:54 -070012290 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080012291
Daniel Vetter955382f2013-09-19 14:05:45 +020012292 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -080012293 if (intel_crtc == NULL)
12294 return;
12295
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020012296 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
12297 if (!crtc_state)
12298 goto fail;
12299 intel_crtc_set_state(intel_crtc, crtc_state);
12300
Matt Roper465c1202014-05-29 08:06:54 -070012301 primary = intel_primary_plane_create(dev, pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070012302 if (!primary)
12303 goto fail;
12304
12305 cursor = intel_cursor_plane_create(dev, pipe);
12306 if (!cursor)
12307 goto fail;
12308
Matt Roper465c1202014-05-29 08:06:54 -070012309 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
Matt Roper3d7d6512014-06-10 08:28:13 -070012310 cursor, &intel_crtc_funcs);
12311 if (ret)
12312 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080012313
12314 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -080012315 for (i = 0; i < 256; i++) {
12316 intel_crtc->lut_r[i] = i;
12317 intel_crtc->lut_g[i] = i;
12318 intel_crtc->lut_b[i] = i;
12319 }
12320
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020012321 /*
12322 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
Daniel Vetter8c0f92e2014-06-16 02:08:26 +020012323 * is hooked to pipe B. Hence we want plane A feeding pipe B.
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020012324 */
Jesse Barnes80824002009-09-10 15:28:06 -070012325 intel_crtc->pipe = pipe;
12326 intel_crtc->plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +010012327 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
Zhao Yakui28c97732009-10-09 11:39:41 +080012328 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +010012329 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -070012330 }
12331
Chris Wilson4b0e3332014-05-30 16:35:26 +030012332 intel_crtc->cursor_base = ~0;
12333 intel_crtc->cursor_cntl = ~0;
Ville Syrjälädc41c152014-08-13 11:57:05 +030012334 intel_crtc->cursor_size = ~0;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030012335
Jesse Barnes22fd0fa2009-12-02 13:42:53 -080012336 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
12337 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
12338 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
12339 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
12340
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020012341 INIT_WORK(&intel_crtc->mmio_flip.work, intel_mmio_flip_work_func);
12342
Jesse Barnes79e53942008-11-07 14:24:08 -080012343 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Daniel Vetter87b6b102014-05-15 15:33:46 +020012344
12345 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070012346 return;
12347
12348fail:
12349 if (primary)
12350 drm_plane_cleanup(primary);
12351 if (cursor)
12352 drm_plane_cleanup(cursor);
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020012353 kfree(crtc_state);
Matt Roper3d7d6512014-06-10 08:28:13 -070012354 kfree(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -080012355}
12356
Jesse Barnes752aa882013-10-31 18:55:49 +020012357enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
12358{
12359 struct drm_encoder *encoder = connector->base.encoder;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020012360 struct drm_device *dev = connector->base.dev;
Jesse Barnes752aa882013-10-31 18:55:49 +020012361
Rob Clark51fd3712013-11-19 12:10:12 -050012362 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Jesse Barnes752aa882013-10-31 18:55:49 +020012363
Ville Syrjäläd3babd32014-11-07 11:16:01 +020012364 if (!encoder || WARN_ON(!encoder->crtc))
Jesse Barnes752aa882013-10-31 18:55:49 +020012365 return INVALID_PIPE;
12366
12367 return to_intel_crtc(encoder->crtc)->pipe;
12368}
12369
Carl Worth08d7b3d2009-04-29 14:43:54 -070012370int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +000012371 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -070012372{
Carl Worth08d7b3d2009-04-29 14:43:54 -070012373 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Rob Clark7707e652014-07-17 23:30:04 -040012374 struct drm_crtc *drmmode_crtc;
Daniel Vetterc05422d2009-08-11 16:05:30 +020012375 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012376
Daniel Vetter1cff8f62012-04-24 09:55:08 +020012377 if (!drm_core_check_feature(dev, DRIVER_MODESET))
12378 return -ENODEV;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012379
Rob Clark7707e652014-07-17 23:30:04 -040012380 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
Carl Worth08d7b3d2009-04-29 14:43:54 -070012381
Rob Clark7707e652014-07-17 23:30:04 -040012382 if (!drmmode_crtc) {
Carl Worth08d7b3d2009-04-29 14:43:54 -070012383 DRM_ERROR("no such CRTC id\n");
Ville Syrjälä3f2c2052013-10-17 13:35:03 +030012384 return -ENOENT;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012385 }
12386
Rob Clark7707e652014-07-17 23:30:04 -040012387 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetterc05422d2009-08-11 16:05:30 +020012388 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012389
Daniel Vetterc05422d2009-08-11 16:05:30 +020012390 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012391}
12392
Daniel Vetter66a92782012-07-12 20:08:18 +020012393static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080012394{
Daniel Vetter66a92782012-07-12 20:08:18 +020012395 struct drm_device *dev = encoder->base.dev;
12396 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080012397 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080012398 int entry = 0;
12399
Damien Lespiaub2784e12014-08-05 11:29:37 +010012400 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020012401 if (encoders_cloneable(encoder, source_encoder))
Daniel Vetter66a92782012-07-12 20:08:18 +020012402 index_mask |= (1 << entry);
12403
Jesse Barnes79e53942008-11-07 14:24:08 -080012404 entry++;
12405 }
Chris Wilson4ef69c72010-09-09 15:14:28 +010012406
Jesse Barnes79e53942008-11-07 14:24:08 -080012407 return index_mask;
12408}
12409
Chris Wilson4d302442010-12-14 19:21:29 +000012410static bool has_edp_a(struct drm_device *dev)
12411{
12412 struct drm_i915_private *dev_priv = dev->dev_private;
12413
12414 if (!IS_MOBILE(dev))
12415 return false;
12416
12417 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
12418 return false;
12419
Damien Lespiaue3589902014-02-07 19:12:50 +000012420 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
Chris Wilson4d302442010-12-14 19:21:29 +000012421 return false;
12422
12423 return true;
12424}
12425
Jesse Barnes84b4e042014-06-25 08:24:29 -070012426static bool intel_crt_present(struct drm_device *dev)
12427{
12428 struct drm_i915_private *dev_priv = dev->dev_private;
12429
Damien Lespiau884497e2013-12-03 13:56:23 +000012430 if (INTEL_INFO(dev)->gen >= 9)
12431 return false;
12432
Damien Lespiaucf404ce2014-10-01 20:04:15 +010012433 if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
Jesse Barnes84b4e042014-06-25 08:24:29 -070012434 return false;
12435
12436 if (IS_CHERRYVIEW(dev))
12437 return false;
12438
12439 if (IS_VALLEYVIEW(dev) && !dev_priv->vbt.int_crt_support)
12440 return false;
12441
12442 return true;
12443}
12444
Jesse Barnes79e53942008-11-07 14:24:08 -080012445static void intel_setup_outputs(struct drm_device *dev)
12446{
Eric Anholt725e30a2009-01-22 13:01:02 -080012447 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +010012448 struct intel_encoder *encoder;
Matt Roperc6f95f22015-01-22 16:50:32 -080012449 struct drm_connector *connector;
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012450 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -080012451
Daniel Vetterc9093352013-06-06 22:22:47 +020012452 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080012453
Jesse Barnes84b4e042014-06-25 08:24:29 -070012454 if (intel_crt_present(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -020012455 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012456
Paulo Zanoniaffa9352012-11-23 15:30:39 -020012457 if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030012458 int found;
12459
12460 /* Haswell uses DDI functions to detect digital outputs */
12461 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
12462 /* DDI A only supports eDP */
12463 if (found)
12464 intel_ddi_init(dev, PORT_A);
12465
12466 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
12467 * register */
12468 found = I915_READ(SFUSE_STRAP);
12469
12470 if (found & SFUSE_STRAP_DDIB_DETECTED)
12471 intel_ddi_init(dev, PORT_B);
12472 if (found & SFUSE_STRAP_DDIC_DETECTED)
12473 intel_ddi_init(dev, PORT_C);
12474 if (found & SFUSE_STRAP_DDID_DETECTED)
12475 intel_ddi_init(dev, PORT_D);
12476 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012477 int found;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020012478 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
Daniel Vetter270b3042012-10-27 15:52:05 +020012479
12480 if (has_edp_a(dev))
12481 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012482
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012483 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +080012484 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +010012485 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012486 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012487 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012488 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012489 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012490 }
12491
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012492 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012493 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012494
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012495 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012496 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012497
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012498 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012499 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012500
Daniel Vetter270b3042012-10-27 15:52:05 +020012501 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012502 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -070012503 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012504 /*
12505 * The DP_DETECTED bit is the latched state of the DDC
12506 * SDA pin at boot. However since eDP doesn't require DDC
12507 * (no way to plug in a DP->HDMI dongle) the DDC pins for
12508 * eDP ports may have been muxed to an alternate function.
12509 * Thus we can't rely on the DP_DETECTED bit alone to detect
12510 * eDP ports. Consult the VBT as well as DP_DETECTED to
12511 * detect eDP ports.
12512 */
Ville Syrjäläd2182a62015-01-09 14:21:14 +020012513 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED &&
12514 !intel_dp_is_edp(dev, PORT_B))
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030012515 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
12516 PORT_B);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012517 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED ||
12518 intel_dp_is_edp(dev, PORT_B))
12519 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030012520
Ville Syrjäläd2182a62015-01-09 14:21:14 +020012521 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED &&
12522 !intel_dp_is_edp(dev, PORT_C))
Jesse Barnes6f6005a2013-08-09 09:34:35 -070012523 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
12524 PORT_C);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012525 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED ||
12526 intel_dp_is_edp(dev, PORT_C))
12527 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
Gajanan Bhat19c03922012-09-27 19:13:07 +053012528
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030012529 if (IS_CHERRYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012530 if (I915_READ(VLV_DISPLAY_BASE + CHV_HDMID) & SDVO_DETECTED)
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030012531 intel_hdmi_init(dev, VLV_DISPLAY_BASE + CHV_HDMID,
12532 PORT_D);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012533 /* eDP not supported on port D, so don't check VBT */
12534 if (I915_READ(VLV_DISPLAY_BASE + DP_D) & DP_DETECTED)
12535 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_D, PORT_D);
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030012536 }
12537
Jani Nikula3cfca972013-08-27 15:12:26 +030012538 intel_dsi_init(dev);
Zhenyu Wang103a1962009-11-27 11:44:36 +080012539 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +080012540 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -080012541
Paulo Zanonie2debe92013-02-18 19:00:27 -030012542 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012543 DRM_DEBUG_KMS("probing SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012544 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012545 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
12546 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012547 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012548 }
Ma Ling27185ae2009-08-24 13:50:23 +080012549
Imre Deake7281ea2013-05-08 13:14:08 +030012550 if (!found && SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012551 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -080012552 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -040012553
12554 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -040012555
Paulo Zanonie2debe92013-02-18 19:00:27 -030012556 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012557 DRM_DEBUG_KMS("probing SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012558 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012559 }
Ma Ling27185ae2009-08-24 13:50:23 +080012560
Paulo Zanonie2debe92013-02-18 19:00:27 -030012561 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +080012562
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012563 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
12564 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012565 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012566 }
Imre Deake7281ea2013-05-08 13:14:08 +030012567 if (SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012568 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -080012569 }
Ma Ling27185ae2009-08-24 13:50:23 +080012570
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012571 if (SUPPORTS_INTEGRATED_DP(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +030012572 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012573 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -070012574 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080012575 intel_dvo_init(dev);
12576
Zhenyu Wang103a1962009-11-27 11:44:36 +080012577 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080012578 intel_tv_init(dev);
12579
Matt Roperc6f95f22015-01-22 16:50:32 -080012580 /*
12581 * FIXME: We don't have full atomic support yet, but we want to be
12582 * able to enable/test plane updates via the atomic interface in the
12583 * meantime. However as soon as we flip DRIVER_ATOMIC on, the DRM core
12584 * will take some atomic codepaths to lookup properties during
12585 * drmModeGetConnector() that unconditionally dereference
12586 * connector->state.
12587 *
12588 * We create a dummy connector state here for each connector to ensure
12589 * the DRM core doesn't try to dereference a NULL connector->state.
12590 * The actual connector properties will never be updated or contain
12591 * useful information, but since we're doing this specifically for
12592 * testing/debug of the plane operations (and only when a specific
12593 * kernel module option is given), that shouldn't really matter.
12594 *
12595 * Once atomic support for crtc's + connectors lands, this loop should
12596 * be removed since we'll be setting up real connector state, which
12597 * will contain Intel-specific properties.
12598 */
12599 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
12600 list_for_each_entry(connector,
12601 &dev->mode_config.connector_list,
12602 head) {
12603 if (!WARN_ON(connector->state)) {
12604 connector->state =
12605 kzalloc(sizeof(*connector->state),
12606 GFP_KERNEL);
12607 }
12608 }
12609 }
12610
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -080012611 intel_psr_init(dev);
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -070012612
Damien Lespiaub2784e12014-08-05 11:29:37 +010012613 for_each_intel_encoder(dev, encoder) {
Chris Wilson4ef69c72010-09-09 15:14:28 +010012614 encoder->base.possible_crtcs = encoder->crtc_mask;
12615 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +020012616 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -080012617 }
Chris Wilson47356eb2011-01-11 17:06:04 +000012618
Paulo Zanonidde86e22012-12-01 12:04:25 -020012619 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +020012620
12621 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080012622}
12623
12624static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
12625{
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012626 struct drm_device *dev = fb->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -080012627 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -080012628
Daniel Vetteref2d6332014-02-10 18:00:38 +010012629 drm_framebuffer_cleanup(fb);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012630 mutex_lock(&dev->struct_mutex);
Daniel Vetteref2d6332014-02-10 18:00:38 +010012631 WARN_ON(!intel_fb->obj->framebuffer_references--);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012632 drm_gem_object_unreference(&intel_fb->obj->base);
12633 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080012634 kfree(intel_fb);
12635}
12636
12637static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +000012638 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -080012639 unsigned int *handle)
12640{
12641 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +000012642 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080012643
Chris Wilson05394f32010-11-08 19:18:58 +000012644 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -080012645}
12646
12647static const struct drm_framebuffer_funcs intel_fb_funcs = {
12648 .destroy = intel_user_framebuffer_destroy,
12649 .create_handle = intel_user_framebuffer_create_handle,
12650};
12651
Daniel Vetterb5ea6422014-03-02 21:18:00 +010012652static int intel_framebuffer_init(struct drm_device *dev,
12653 struct intel_framebuffer *intel_fb,
12654 struct drm_mode_fb_cmd2 *mode_cmd,
12655 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -080012656{
Jesse Barnesa57ce0b2014-02-07 12:10:35 -080012657 int aligned_height;
Chris Wilsona35cdaa2013-06-25 17:26:45 +010012658 int pitch_limit;
Jesse Barnes79e53942008-11-07 14:24:08 -080012659 int ret;
12660
Daniel Vetterdd4916c2013-10-09 21:23:51 +020012661 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
12662
Daniel Vetter2a80ead2015-02-10 17:16:06 +000012663 if (mode_cmd->flags & DRM_MODE_FB_MODIFIERS) {
12664 /* Enforce that fb modifier and tiling mode match, but only for
12665 * X-tiled. This is needed for FBC. */
12666 if (!!(obj->tiling_mode == I915_TILING_X) !=
12667 !!(mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED)) {
12668 DRM_DEBUG("tiling_mode doesn't match fb modifier\n");
12669 return -EINVAL;
12670 }
12671 } else {
12672 if (obj->tiling_mode == I915_TILING_X)
12673 mode_cmd->modifier[0] = I915_FORMAT_MOD_X_TILED;
12674 else if (obj->tiling_mode == I915_TILING_Y) {
12675 DRM_DEBUG("No Y tiling for legacy addfb\n");
12676 return -EINVAL;
12677 }
12678 }
12679
12680 if (mode_cmd->modifier[0] == I915_FORMAT_MOD_Y_TILED) {
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012681 DRM_DEBUG("hardware does not support tiling Y\n");
Chris Wilson57cd6502010-08-08 12:34:44 +010012682 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012683 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012684
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012685 if (mode_cmd->pitches[0] & 63) {
12686 DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n",
12687 mode_cmd->pitches[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +010012688 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012689 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012690
Chris Wilsona35cdaa2013-06-25 17:26:45 +010012691 if (INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev)) {
12692 pitch_limit = 32*1024;
12693 } else if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter2a80ead2015-02-10 17:16:06 +000012694 if (mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED)
Chris Wilsona35cdaa2013-06-25 17:26:45 +010012695 pitch_limit = 16*1024;
12696 else
12697 pitch_limit = 32*1024;
12698 } else if (INTEL_INFO(dev)->gen >= 3) {
Daniel Vetter2a80ead2015-02-10 17:16:06 +000012699 if (mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED)
Chris Wilsona35cdaa2013-06-25 17:26:45 +010012700 pitch_limit = 8*1024;
12701 else
12702 pitch_limit = 16*1024;
12703 } else
12704 /* XXX DSPC is limited to 4k tiled */
12705 pitch_limit = 8*1024;
12706
12707 if (mode_cmd->pitches[0] > pitch_limit) {
12708 DRM_DEBUG("%s pitch (%d) must be at less than %d\n",
Daniel Vetter2a80ead2015-02-10 17:16:06 +000012709 mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED ?
12710 "tiled" : "linear",
Chris Wilsona35cdaa2013-06-25 17:26:45 +010012711 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012712 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012713 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012714
Daniel Vetter2a80ead2015-02-10 17:16:06 +000012715 if (mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012716 mode_cmd->pitches[0] != obj->stride) {
12717 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
12718 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012719 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012720 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012721
Ville Syrjälä57779d02012-10-31 17:50:14 +020012722 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080012723 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020012724 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020012725 case DRM_FORMAT_RGB565:
12726 case DRM_FORMAT_XRGB8888:
12727 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020012728 break;
12729 case DRM_FORMAT_XRGB1555:
12730 case DRM_FORMAT_ARGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012731 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012732 DRM_DEBUG("unsupported pixel format: %s\n",
12733 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012734 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012735 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020012736 break;
12737 case DRM_FORMAT_XBGR8888:
12738 case DRM_FORMAT_ABGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020012739 case DRM_FORMAT_XRGB2101010:
12740 case DRM_FORMAT_ARGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020012741 case DRM_FORMAT_XBGR2101010:
12742 case DRM_FORMAT_ABGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012743 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012744 DRM_DEBUG("unsupported pixel format: %s\n",
12745 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012746 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012747 }
Jesse Barnesb5626742011-06-24 12:19:27 -070012748 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020012749 case DRM_FORMAT_YUYV:
12750 case DRM_FORMAT_UYVY:
12751 case DRM_FORMAT_YVYU:
12752 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012753 if (INTEL_INFO(dev)->gen < 5) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012754 DRM_DEBUG("unsupported pixel format: %s\n",
12755 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012756 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012757 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012758 break;
12759 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012760 DRM_DEBUG("unsupported pixel format: %s\n",
12761 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010012762 return -EINVAL;
12763 }
12764
Ville Syrjälä90f9a332012-10-31 17:50:19 +020012765 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
12766 if (mode_cmd->offsets[0] != 0)
12767 return -EINVAL;
12768
Damien Lespiauec2c9812015-01-20 12:51:45 +000012769 aligned_height = intel_fb_align_height(dev, mode_cmd->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +000012770 mode_cmd->pixel_format,
12771 mode_cmd->modifier[0]);
Daniel Vetter53155c02013-10-09 21:55:33 +020012772 /* FIXME drm helper for size checks (especially planar formats)? */
12773 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
12774 return -EINVAL;
12775
Daniel Vetterc7d73f62012-12-13 23:38:38 +010012776 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
12777 intel_fb->obj = obj;
Daniel Vetter80075d42013-10-09 21:23:52 +020012778 intel_fb->obj->framebuffer_references++;
Daniel Vetterc7d73f62012-12-13 23:38:38 +010012779
Jesse Barnes79e53942008-11-07 14:24:08 -080012780 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
12781 if (ret) {
12782 DRM_ERROR("framebuffer init failed %d\n", ret);
12783 return ret;
12784 }
12785
Jesse Barnes79e53942008-11-07 14:24:08 -080012786 return 0;
12787}
12788
Jesse Barnes79e53942008-11-07 14:24:08 -080012789static struct drm_framebuffer *
12790intel_user_framebuffer_create(struct drm_device *dev,
12791 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -080012792 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080012793{
Chris Wilson05394f32010-11-08 19:18:58 +000012794 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080012795
Jesse Barnes308e5bc2011-11-14 14:51:28 -080012796 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
12797 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +000012798 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010012799 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080012800
Chris Wilsond2dff872011-04-19 08:36:26 +010012801 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -080012802}
12803
Daniel Vetter4520f532013-10-09 09:18:51 +020012804#ifndef CONFIG_DRM_I915_FBDEV
Daniel Vetter0632fef2013-10-08 17:44:49 +020012805static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
Daniel Vetter4520f532013-10-09 09:18:51 +020012806{
12807}
12808#endif
12809
Jesse Barnes79e53942008-11-07 14:24:08 -080012810static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080012811 .fb_create = intel_user_framebuffer_create,
Daniel Vetter0632fef2013-10-08 17:44:49 +020012812 .output_poll_changed = intel_fbdev_output_poll_changed,
Matt Roper5ee67f12015-01-21 16:35:44 -080012813 .atomic_check = intel_atomic_check,
12814 .atomic_commit = intel_atomic_commit,
Jesse Barnes79e53942008-11-07 14:24:08 -080012815};
12816
Jesse Barnese70236a2009-09-21 10:42:27 -070012817/* Set up chip specific display functions */
12818static void intel_init_display(struct drm_device *dev)
12819{
12820 struct drm_i915_private *dev_priv = dev->dev_private;
12821
Daniel Vetteree9300b2013-06-03 22:40:22 +020012822 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
12823 dev_priv->display.find_dpll = g4x_find_best_dpll;
Chon Ming Leeef9348c2014-04-09 13:28:18 +030012824 else if (IS_CHERRYVIEW(dev))
12825 dev_priv->display.find_dpll = chv_find_best_dpll;
Daniel Vetteree9300b2013-06-03 22:40:22 +020012826 else if (IS_VALLEYVIEW(dev))
12827 dev_priv->display.find_dpll = vlv_find_best_dpll;
12828 else if (IS_PINEVIEW(dev))
12829 dev_priv->display.find_dpll = pnv_find_best_dpll;
12830 else
12831 dev_priv->display.find_dpll = i9xx_find_best_dpll;
12832
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000012833 if (INTEL_INFO(dev)->gen >= 9) {
12834 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000012835 dev_priv->display.get_initial_plane_config =
12836 skylake_get_initial_plane_config;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000012837 dev_priv->display.crtc_compute_clock =
12838 haswell_crtc_compute_clock;
12839 dev_priv->display.crtc_enable = haswell_crtc_enable;
12840 dev_priv->display.crtc_disable = haswell_crtc_disable;
12841 dev_priv->display.off = ironlake_crtc_off;
12842 dev_priv->display.update_primary_plane =
12843 skylake_update_primary_plane;
12844 } else if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012845 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000012846 dev_priv->display.get_initial_plane_config =
12847 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira797d0252014-10-29 11:32:34 +020012848 dev_priv->display.crtc_compute_clock =
12849 haswell_crtc_compute_clock;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020012850 dev_priv->display.crtc_enable = haswell_crtc_enable;
12851 dev_priv->display.crtc_disable = haswell_crtc_disable;
Daniel Vetterdf8ad702014-06-25 22:02:03 +030012852 dev_priv->display.off = ironlake_crtc_off;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000012853 dev_priv->display.update_primary_plane =
12854 ironlake_update_primary_plane;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030012855 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012856 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000012857 dev_priv->display.get_initial_plane_config =
12858 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +020012859 dev_priv->display.crtc_compute_clock =
12860 ironlake_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020012861 dev_priv->display.crtc_enable = ironlake_crtc_enable;
12862 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010012863 dev_priv->display.off = ironlake_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070012864 dev_priv->display.update_primary_plane =
12865 ironlake_update_primary_plane;
Jesse Barnes89b667f2013-04-18 14:51:36 -070012866 } else if (IS_VALLEYVIEW(dev)) {
12867 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000012868 dev_priv->display.get_initial_plane_config =
12869 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020012870 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Jesse Barnes89b667f2013-04-18 14:51:36 -070012871 dev_priv->display.crtc_enable = valleyview_crtc_enable;
12872 dev_priv->display.crtc_disable = i9xx_crtc_disable;
12873 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070012874 dev_priv->display.update_primary_plane =
12875 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070012876 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012877 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000012878 dev_priv->display.get_initial_plane_config =
12879 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020012880 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020012881 dev_priv->display.crtc_enable = i9xx_crtc_enable;
12882 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010012883 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070012884 dev_priv->display.update_primary_plane =
12885 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070012886 }
Jesse Barnese70236a2009-09-21 10:42:27 -070012887
Jesse Barnese70236a2009-09-21 10:42:27 -070012888 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070012889 if (IS_VALLEYVIEW(dev))
12890 dev_priv->display.get_display_clock_speed =
12891 valleyview_get_display_clock_speed;
12892 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -070012893 dev_priv->display.get_display_clock_speed =
12894 i945_get_display_clock_speed;
12895 else if (IS_I915G(dev))
12896 dev_priv->display.get_display_clock_speed =
12897 i915_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020012898 else if (IS_I945GM(dev) || IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070012899 dev_priv->display.get_display_clock_speed =
12900 i9xx_misc_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020012901 else if (IS_PINEVIEW(dev))
12902 dev_priv->display.get_display_clock_speed =
12903 pnv_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070012904 else if (IS_I915GM(dev))
12905 dev_priv->display.get_display_clock_speed =
12906 i915gm_get_display_clock_speed;
12907 else if (IS_I865G(dev))
12908 dev_priv->display.get_display_clock_speed =
12909 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +020012910 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070012911 dev_priv->display.get_display_clock_speed =
12912 i855_get_display_clock_speed;
12913 else /* 852, 830 */
12914 dev_priv->display.get_display_clock_speed =
12915 i830_get_display_clock_speed;
12916
Jani Nikula7c10a2b2014-10-27 16:26:43 +020012917 if (IS_GEN5(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053012918 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053012919 } else if (IS_GEN6(dev)) {
12920 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053012921 } else if (IS_IVYBRIDGE(dev)) {
12922 /* FIXME: detect B0+ stepping and use auto training */
12923 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053012924 dev_priv->display.modeset_global_resources =
12925 ivb_modeset_global_resources;
Paulo Zanoni059b2fe2014-09-02 16:53:57 -030012926 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053012927 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Jesse Barnes30a970c2013-11-04 13:48:12 -080012928 } else if (IS_VALLEYVIEW(dev)) {
12929 dev_priv->display.modeset_global_resources =
12930 valleyview_modeset_global_resources;
Jesse Barnese70236a2009-09-21 10:42:27 -070012931 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070012932
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070012933 switch (INTEL_INFO(dev)->gen) {
12934 case 2:
12935 dev_priv->display.queue_flip = intel_gen2_queue_flip;
12936 break;
12937
12938 case 3:
12939 dev_priv->display.queue_flip = intel_gen3_queue_flip;
12940 break;
12941
12942 case 4:
12943 case 5:
12944 dev_priv->display.queue_flip = intel_gen4_queue_flip;
12945 break;
12946
12947 case 6:
12948 dev_priv->display.queue_flip = intel_gen6_queue_flip;
12949 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070012950 case 7:
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070012951 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
Jesse Barnes7c9017e2011-06-16 12:18:54 -070012952 dev_priv->display.queue_flip = intel_gen7_queue_flip;
12953 break;
Damien Lespiau830c81d2014-11-13 17:51:46 +000012954 case 9:
Tvrtko Ursulinba343e02015-02-10 17:16:12 +000012955 /* Drop through - unsupported since execlist only. */
12956 default:
12957 /* Default just returns -ENODEV to indicate unsupported */
12958 dev_priv->display.queue_flip = intel_default_queue_flip;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070012959 }
Jani Nikula7bd688c2013-11-08 16:48:56 +020012960
12961 intel_panel_init_backlight_funcs(dev);
Ville Syrjäläe39b9992014-09-04 14:53:14 +030012962
12963 mutex_init(&dev_priv->pps_mutex);
Jesse Barnese70236a2009-09-21 10:42:27 -070012964}
12965
Jesse Barnesb690e962010-07-19 13:53:12 -070012966/*
12967 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
12968 * resume, or other times. This quirk makes sure that's the case for
12969 * affected systems.
12970 */
Akshay Joshi0206e352011-08-16 15:34:10 -040012971static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070012972{
12973 struct drm_i915_private *dev_priv = dev->dev_private;
12974
12975 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020012976 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070012977}
12978
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030012979static void quirk_pipeb_force(struct drm_device *dev)
12980{
12981 struct drm_i915_private *dev_priv = dev->dev_private;
12982
12983 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
12984 DRM_INFO("applying pipe b force quirk\n");
12985}
12986
Keith Packard435793d2011-07-12 14:56:22 -070012987/*
12988 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
12989 */
12990static void quirk_ssc_force_disable(struct drm_device *dev)
12991{
12992 struct drm_i915_private *dev_priv = dev->dev_private;
12993 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020012994 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070012995}
12996
Carsten Emde4dca20e2012-03-15 15:56:26 +010012997/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010012998 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
12999 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010013000 */
13001static void quirk_invert_brightness(struct drm_device *dev)
13002{
13003 struct drm_i915_private *dev_priv = dev->dev_private;
13004 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020013005 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070013006}
13007
Scot Doyle9c72cc62014-07-03 23:27:50 +000013008/* Some VBT's incorrectly indicate no backlight is present */
13009static void quirk_backlight_present(struct drm_device *dev)
13010{
13011 struct drm_i915_private *dev_priv = dev->dev_private;
13012 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
13013 DRM_INFO("applying backlight present quirk\n");
13014}
13015
Jesse Barnesb690e962010-07-19 13:53:12 -070013016struct intel_quirk {
13017 int device;
13018 int subsystem_vendor;
13019 int subsystem_device;
13020 void (*hook)(struct drm_device *dev);
13021};
13022
Egbert Eich5f85f172012-10-14 15:46:38 +020013023/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
13024struct intel_dmi_quirk {
13025 void (*hook)(struct drm_device *dev);
13026 const struct dmi_system_id (*dmi_id_list)[];
13027};
13028
13029static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
13030{
13031 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
13032 return 1;
13033}
13034
13035static const struct intel_dmi_quirk intel_dmi_quirks[] = {
13036 {
13037 .dmi_id_list = &(const struct dmi_system_id[]) {
13038 {
13039 .callback = intel_dmi_reverse_brightness,
13040 .ident = "NCR Corporation",
13041 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
13042 DMI_MATCH(DMI_PRODUCT_NAME, ""),
13043 },
13044 },
13045 { } /* terminating entry */
13046 },
13047 .hook = quirk_invert_brightness,
13048 },
13049};
13050
Ben Widawskyc43b5632012-04-16 14:07:40 -070013051static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070013052 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -040013053 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -070013054
Jesse Barnesb690e962010-07-19 13:53:12 -070013055 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
13056 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
13057
Jesse Barnesb690e962010-07-19 13:53:12 -070013058 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
13059 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
13060
Ville Syrjälä5f080c02014-08-15 01:22:06 +030013061 /* 830 needs to leave pipe A & dpll A up */
13062 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
13063
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030013064 /* 830 needs to leave pipe B & dpll B up */
13065 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
13066
Keith Packard435793d2011-07-12 14:56:22 -070013067 /* Lenovo U160 cannot use SSC on LVDS */
13068 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020013069
13070 /* Sony Vaio Y cannot use SSC on LVDS */
13071 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010013072
Alexander van Heukelumbe505f62013-12-28 21:00:39 +010013073 /* Acer Aspire 5734Z must invert backlight brightness */
13074 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
13075
13076 /* Acer/eMachines G725 */
13077 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
13078
13079 /* Acer/eMachines e725 */
13080 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
13081
13082 /* Acer/Packard Bell NCL20 */
13083 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
13084
13085 /* Acer Aspire 4736Z */
13086 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jani Nikula0f540c32014-01-13 17:30:34 +020013087
13088 /* Acer Aspire 5336 */
13089 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
Scot Doyle2e93a1a2014-07-03 23:27:51 +000013090
13091 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
13092 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
Scot Doyled4967d82014-07-03 23:27:52 +000013093
Scot Doyledfb3d47b2014-08-21 16:08:02 +000013094 /* Acer C720 Chromebook (Core i3 4005U) */
13095 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
13096
jens steinb2a96012014-10-28 20:25:53 +010013097 /* Apple Macbook 2,1 (Core 2 T7400) */
13098 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
13099
Scot Doyled4967d82014-07-03 23:27:52 +000013100 /* Toshiba CB35 Chromebook (Celeron 2955U) */
13101 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
Scot Doyle724cb062014-07-11 22:16:30 +000013102
13103 /* HP Chromebook 14 (Celeron 2955U) */
13104 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
Jesse Barnesb690e962010-07-19 13:53:12 -070013105};
13106
13107static void intel_init_quirks(struct drm_device *dev)
13108{
13109 struct pci_dev *d = dev->pdev;
13110 int i;
13111
13112 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
13113 struct intel_quirk *q = &intel_quirks[i];
13114
13115 if (d->device == q->device &&
13116 (d->subsystem_vendor == q->subsystem_vendor ||
13117 q->subsystem_vendor == PCI_ANY_ID) &&
13118 (d->subsystem_device == q->subsystem_device ||
13119 q->subsystem_device == PCI_ANY_ID))
13120 q->hook(dev);
13121 }
Egbert Eich5f85f172012-10-14 15:46:38 +020013122 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
13123 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
13124 intel_dmi_quirks[i].hook(dev);
13125 }
Jesse Barnesb690e962010-07-19 13:53:12 -070013126}
13127
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013128/* Disable the VGA plane that we never use */
13129static void i915_disable_vga(struct drm_device *dev)
13130{
13131 struct drm_i915_private *dev_priv = dev->dev_private;
13132 u8 sr1;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020013133 u32 vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013134
Ville Syrjälä2b37c612014-01-22 21:32:38 +020013135 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013136 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070013137 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013138 sr1 = inb(VGA_SR_DATA);
13139 outb(sr1 | 1<<5, VGA_SR_DATA);
13140 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
13141 udelay(300);
13142
Ville Syrjälä01f5a622014-12-16 18:38:37 +020013143 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013144 POSTING_READ(vga_reg);
13145}
13146
Daniel Vetterf8175862012-04-10 15:50:11 +020013147void intel_modeset_init_hw(struct drm_device *dev)
13148{
Eugeni Dodonova8f78b52012-06-28 15:55:35 -030013149 intel_prepare_ddi(dev);
13150
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +030013151 if (IS_VALLEYVIEW(dev))
13152 vlv_update_cdclk(dev);
13153
Daniel Vetterf8175862012-04-10 15:50:11 +020013154 intel_init_clock_gating(dev);
13155
Daniel Vetter8090c6b2012-06-24 16:42:32 +020013156 intel_enable_gt_powersave(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020013157}
13158
Jesse Barnes79e53942008-11-07 14:24:08 -080013159void intel_modeset_init(struct drm_device *dev)
13160{
Jesse Barnes652c3932009-08-17 13:31:43 -070013161 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau1fe47782014-03-03 17:31:47 +000013162 int sprite, ret;
Damien Lespiau8cc87b72014-03-03 17:31:44 +000013163 enum pipe pipe;
Jesse Barnes46f297f2014-03-07 08:57:48 -080013164 struct intel_crtc *crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -080013165
13166 drm_mode_config_init(dev);
13167
13168 dev->mode_config.min_width = 0;
13169 dev->mode_config.min_height = 0;
13170
Dave Airlie019d96c2011-09-29 16:20:42 +010013171 dev->mode_config.preferred_depth = 24;
13172 dev->mode_config.prefer_shadow = 1;
13173
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020013174 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080013175
Jesse Barnesb690e962010-07-19 13:53:12 -070013176 intel_init_quirks(dev);
13177
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030013178 intel_init_pm(dev);
13179
Ben Widawskye3c74752013-04-05 13:12:39 -070013180 if (INTEL_INFO(dev)->num_pipes == 0)
13181 return;
13182
Jesse Barnese70236a2009-09-21 10:42:27 -070013183 intel_init_display(dev);
Jani Nikula7c10a2b2014-10-27 16:26:43 +020013184 intel_init_audio(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070013185
Chris Wilsona6c45cf2010-09-17 00:32:17 +010013186 if (IS_GEN2(dev)) {
13187 dev->mode_config.max_width = 2048;
13188 dev->mode_config.max_height = 2048;
13189 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070013190 dev->mode_config.max_width = 4096;
13191 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080013192 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010013193 dev->mode_config.max_width = 8192;
13194 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080013195 }
Damien Lespiau068be562014-03-28 14:17:49 +000013196
Ville Syrjälädc41c152014-08-13 11:57:05 +030013197 if (IS_845G(dev) || IS_I865G(dev)) {
13198 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
13199 dev->mode_config.cursor_height = 1023;
13200 } else if (IS_GEN2(dev)) {
Damien Lespiau068be562014-03-28 14:17:49 +000013201 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
13202 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
13203 } else {
13204 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
13205 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
13206 }
13207
Ben Widawsky5d4545a2013-01-17 12:45:15 -080013208 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080013209
Zhao Yakui28c97732009-10-09 11:39:41 +080013210 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070013211 INTEL_INFO(dev)->num_pipes,
13212 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080013213
Damien Lespiau055e3932014-08-18 13:49:10 +010013214 for_each_pipe(dev_priv, pipe) {
Damien Lespiau8cc87b72014-03-03 17:31:44 +000013215 intel_crtc_init(dev, pipe);
Damien Lespiau1fe47782014-03-03 17:31:47 +000013216 for_each_sprite(pipe, sprite) {
13217 ret = intel_plane_init(dev, pipe, sprite);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070013218 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030013219 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +000013220 pipe_name(pipe), sprite_name(pipe, sprite), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070013221 }
Jesse Barnes79e53942008-11-07 14:24:08 -080013222 }
13223
Jesse Barnesf42bb702013-12-16 16:34:23 -080013224 intel_init_dpio(dev);
13225
Daniel Vettere72f9fb2013-06-05 13:34:06 +020013226 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013227
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013228 /* Just disable it once at startup */
13229 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080013230 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000013231
13232 /* Just in case the BIOS is doing something questionable. */
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020013233 intel_fbc_disable(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080013234
Daniel Vetter6e9f7982014-05-29 23:54:47 +020013235 drm_modeset_lock_all(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080013236 intel_modeset_setup_hw_state(dev, false);
Daniel Vetter6e9f7982014-05-29 23:54:47 +020013237 drm_modeset_unlock_all(dev);
Jesse Barnes46f297f2014-03-07 08:57:48 -080013238
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013239 for_each_intel_crtc(dev, crtc) {
Jesse Barnes46f297f2014-03-07 08:57:48 -080013240 if (!crtc->active)
13241 continue;
13242
Jesse Barnes46f297f2014-03-07 08:57:48 -080013243 /*
Jesse Barnes46f297f2014-03-07 08:57:48 -080013244 * Note that reserving the BIOS fb up front prevents us
13245 * from stuffing other stolen allocations like the ring
13246 * on top. This prevents some ugliness at boot time, and
13247 * can even allow for smooth boot transitions if the BIOS
13248 * fb is large enough for the active pipe configuration.
13249 */
Damien Lespiau5724dbd2015-01-20 12:51:52 +000013250 if (dev_priv->display.get_initial_plane_config) {
13251 dev_priv->display.get_initial_plane_config(crtc,
Jesse Barnes46f297f2014-03-07 08:57:48 -080013252 &crtc->plane_config);
13253 /*
13254 * If the fb is shared between multiple heads, we'll
13255 * just get the first one.
13256 */
Jesse Barnes484b41d2014-03-07 08:57:55 -080013257 intel_find_plane_obj(crtc, &crtc->plane_config);
Jesse Barnes46f297f2014-03-07 08:57:48 -080013258 }
Jesse Barnes46f297f2014-03-07 08:57:48 -080013259 }
Chris Wilson2c7111d2011-03-29 10:40:27 +010013260}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080013261
Daniel Vetter7fad7982012-07-04 17:51:47 +020013262static void intel_enable_pipe_a(struct drm_device *dev)
13263{
13264 struct intel_connector *connector;
13265 struct drm_connector *crt = NULL;
13266 struct intel_load_detect_pipe load_detect_temp;
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030013267 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
Daniel Vetter7fad7982012-07-04 17:51:47 +020013268
13269 /* We can't just switch on the pipe A, we need to set things up with a
13270 * proper mode and output configuration. As a gross hack, enable pipe A
13271 * by enabling the load detect pipe once. */
13272 list_for_each_entry(connector,
13273 &dev->mode_config.connector_list,
13274 base.head) {
13275 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
13276 crt = &connector->base;
13277 break;
13278 }
13279 }
13280
13281 if (!crt)
13282 return;
13283
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030013284 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
13285 intel_release_load_detect_pipe(crt, &load_detect_temp);
Daniel Vetter7fad7982012-07-04 17:51:47 +020013286}
13287
Daniel Vetterfa555832012-10-10 23:14:00 +020013288static bool
13289intel_check_plane_mapping(struct intel_crtc *crtc)
13290{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070013291 struct drm_device *dev = crtc->base.dev;
13292 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020013293 u32 reg, val;
13294
Ben Widawsky7eb552a2013-03-13 14:05:41 -070013295 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020013296 return true;
13297
13298 reg = DSPCNTR(!crtc->plane);
13299 val = I915_READ(reg);
13300
13301 if ((val & DISPLAY_PLANE_ENABLE) &&
13302 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
13303 return false;
13304
13305 return true;
13306}
13307
Daniel Vetter24929352012-07-02 20:28:59 +020013308static void intel_sanitize_crtc(struct intel_crtc *crtc)
13309{
13310 struct drm_device *dev = crtc->base.dev;
13311 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020013312 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +020013313
Daniel Vetter24929352012-07-02 20:28:59 +020013314 /* Clear any frame start delays used for debugging left by the BIOS */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013315 reg = PIPECONF(crtc->config->cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +020013316 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
13317
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030013318 /* restore vblank interrupts to correct state */
Ville Syrjäläd297e102014-08-06 14:50:01 +030013319 if (crtc->active) {
13320 update_scanline_offset(crtc);
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030013321 drm_vblank_on(dev, crtc->pipe);
Ville Syrjäläd297e102014-08-06 14:50:01 +030013322 } else
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030013323 drm_vblank_off(dev, crtc->pipe);
13324
Daniel Vetter24929352012-07-02 20:28:59 +020013325 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020013326 * disable the crtc (and hence change the state) if it is wrong. Note
13327 * that gen4+ has a fixed plane -> pipe mapping. */
13328 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020013329 struct intel_connector *connector;
13330 bool plane;
13331
Daniel Vetter24929352012-07-02 20:28:59 +020013332 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
13333 crtc->base.base.id);
13334
13335 /* Pipe has the wrong plane attached and the plane is active.
13336 * Temporarily change the plane mapping and disable everything
13337 * ... */
13338 plane = crtc->plane;
13339 crtc->plane = !plane;
Daniel Vetter9c8958b2014-07-14 19:35:31 +020013340 crtc->primary_enabled = true;
Daniel Vetter24929352012-07-02 20:28:59 +020013341 dev_priv->display.crtc_disable(&crtc->base);
13342 crtc->plane = plane;
13343
13344 /* ... and break all links. */
13345 list_for_each_entry(connector, &dev->mode_config.connector_list,
13346 base.head) {
13347 if (connector->encoder->base.crtc != &crtc->base)
13348 continue;
13349
Egbert Eich7f1950f2014-04-25 10:56:22 +020013350 connector->base.dpms = DRM_MODE_DPMS_OFF;
13351 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020013352 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020013353 /* multiple connectors may have the same encoder:
13354 * handle them and break crtc link separately */
13355 list_for_each_entry(connector, &dev->mode_config.connector_list,
13356 base.head)
13357 if (connector->encoder->base.crtc == &crtc->base) {
13358 connector->encoder->base.crtc = NULL;
13359 connector->encoder->connectors_active = false;
13360 }
Daniel Vetter24929352012-07-02 20:28:59 +020013361
13362 WARN_ON(crtc->active);
13363 crtc->base.enabled = false;
13364 }
Daniel Vetter24929352012-07-02 20:28:59 +020013365
Daniel Vetter7fad7982012-07-04 17:51:47 +020013366 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
13367 crtc->pipe == PIPE_A && !crtc->active) {
13368 /* BIOS forgot to enable pipe A, this mostly happens after
13369 * resume. Force-enable the pipe to fix this, the update_dpms
13370 * call below we restore the pipe to the right state, but leave
13371 * the required bits on. */
13372 intel_enable_pipe_a(dev);
13373 }
13374
Daniel Vetter24929352012-07-02 20:28:59 +020013375 /* Adjust the state of the output pipe according to whether we
13376 * have active connectors/encoders. */
13377 intel_crtc_update_dpms(&crtc->base);
13378
13379 if (crtc->active != crtc->base.enabled) {
13380 struct intel_encoder *encoder;
13381
13382 /* This can happen either due to bugs in the get_hw_state
13383 * functions or because the pipe is force-enabled due to the
13384 * pipe A quirk. */
13385 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
13386 crtc->base.base.id,
13387 crtc->base.enabled ? "enabled" : "disabled",
13388 crtc->active ? "enabled" : "disabled");
13389
13390 crtc->base.enabled = crtc->active;
13391
13392 /* Because we only establish the connector -> encoder ->
13393 * crtc links if something is active, this means the
13394 * crtc is now deactivated. Break the links. connector
13395 * -> encoder links are only establish when things are
13396 * actually up, hence no need to break them. */
13397 WARN_ON(crtc->active);
13398
13399 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
13400 WARN_ON(encoder->connectors_active);
13401 encoder->base.crtc = NULL;
13402 }
13403 }
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020013404
Ville Syrjäläa3ed6aa2014-09-03 14:09:52 +030013405 if (crtc->active || HAS_GMCH_DISPLAY(dev)) {
Daniel Vetter4cc31482014-03-24 00:01:41 +010013406 /*
13407 * We start out with underrun reporting disabled to avoid races.
13408 * For correct bookkeeping mark this on active crtcs.
13409 *
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020013410 * Also on gmch platforms we dont have any hardware bits to
13411 * disable the underrun reporting. Which means we need to start
13412 * out with underrun reporting disabled also on inactive pipes,
13413 * since otherwise we'll complain about the garbage we read when
13414 * e.g. coming up after runtime pm.
13415 *
Daniel Vetter4cc31482014-03-24 00:01:41 +010013416 * No protection against concurrent access is required - at
13417 * worst a fifo underrun happens which also sets this to false.
13418 */
13419 crtc->cpu_fifo_underrun_disabled = true;
13420 crtc->pch_fifo_underrun_disabled = true;
13421 }
Daniel Vetter24929352012-07-02 20:28:59 +020013422}
13423
13424static void intel_sanitize_encoder(struct intel_encoder *encoder)
13425{
13426 struct intel_connector *connector;
13427 struct drm_device *dev = encoder->base.dev;
13428
13429 /* We need to check both for a crtc link (meaning that the
13430 * encoder is active and trying to read from a pipe) and the
13431 * pipe itself being active. */
13432 bool has_active_crtc = encoder->base.crtc &&
13433 to_intel_crtc(encoder->base.crtc)->active;
13434
13435 if (encoder->connectors_active && !has_active_crtc) {
13436 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
13437 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030013438 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020013439
13440 /* Connector is active, but has no active pipe. This is
13441 * fallout from our resume register restoring. Disable
13442 * the encoder manually again. */
13443 if (encoder->base.crtc) {
13444 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
13445 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030013446 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020013447 encoder->disable(encoder);
Ville Syrjäläa62d1492014-06-28 02:04:01 +030013448 if (encoder->post_disable)
13449 encoder->post_disable(encoder);
Daniel Vetter24929352012-07-02 20:28:59 +020013450 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020013451 encoder->base.crtc = NULL;
13452 encoder->connectors_active = false;
Daniel Vetter24929352012-07-02 20:28:59 +020013453
13454 /* Inconsistent output/port/pipe state happens presumably due to
13455 * a bug in one of the get_hw_state functions. Or someplace else
13456 * in our code, like the register restore mess on resume. Clamp
13457 * things to off as a safer default. */
13458 list_for_each_entry(connector,
13459 &dev->mode_config.connector_list,
13460 base.head) {
13461 if (connector->encoder != encoder)
13462 continue;
Egbert Eich7f1950f2014-04-25 10:56:22 +020013463 connector->base.dpms = DRM_MODE_DPMS_OFF;
13464 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020013465 }
13466 }
13467 /* Enabled encoders without active connectors will be fixed in
13468 * the crtc fixup. */
13469}
13470
Imre Deak04098752014-02-18 00:02:16 +020013471void i915_redisable_vga_power_on(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013472{
13473 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020013474 u32 vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013475
Imre Deak04098752014-02-18 00:02:16 +020013476 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
13477 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
13478 i915_disable_vga(dev);
13479 }
13480}
13481
13482void i915_redisable_vga(struct drm_device *dev)
13483{
13484 struct drm_i915_private *dev_priv = dev->dev_private;
13485
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030013486 /* This function can be called both from intel_modeset_setup_hw_state or
13487 * at a very early point in our resume sequence, where the power well
13488 * structures are not yet restored. Since this function is at a very
13489 * paranoid "someone might have enabled VGA while we were not looking"
13490 * level, just check if the power well is enabled instead of trying to
13491 * follow the "don't touch the power well if we don't need it" policy
13492 * the rest of the driver uses. */
Daniel Vetterf458ebb2014-09-30 10:56:39 +020013493 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_VGA))
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030013494 return;
13495
Imre Deak04098752014-02-18 00:02:16 +020013496 i915_redisable_vga_power_on(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013497}
13498
Ville Syrjälä98ec7732014-04-30 17:43:01 +030013499static bool primary_get_hw_state(struct intel_crtc *crtc)
13500{
13501 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
13502
13503 if (!crtc->active)
13504 return false;
13505
13506 return I915_READ(DSPCNTR(crtc->plane)) & DISPLAY_PLANE_ENABLE;
13507}
13508
Daniel Vetter30e984d2013-06-05 13:34:17 +020013509static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020013510{
13511 struct drm_i915_private *dev_priv = dev->dev_private;
13512 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020013513 struct intel_crtc *crtc;
13514 struct intel_encoder *encoder;
13515 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020013516 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020013517
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013518 for_each_intel_crtc(dev, crtc) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013519 memset(crtc->config, 0, sizeof(*crtc->config));
Daniel Vetter3b117c82013-04-17 20:15:07 +020013520
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013521 crtc->config->quirks |= PIPE_CONFIG_QUIRK_INHERITED_MODE;
Daniel Vetter99535992014-04-13 12:00:33 +020013522
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010013523 crtc->active = dev_priv->display.get_pipe_config(crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013524 crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020013525
13526 crtc->base.enabled = crtc->active;
Ville Syrjälä98ec7732014-04-30 17:43:01 +030013527 crtc->primary_enabled = primary_get_hw_state(crtc);
Daniel Vetter24929352012-07-02 20:28:59 +020013528
13529 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
13530 crtc->base.base.id,
13531 crtc->active ? "enabled" : "disabled");
13532 }
13533
Daniel Vetter53589012013-06-05 13:34:16 +020013534 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13535 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13536
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013537 pll->on = pll->get_hw_state(dev_priv, pll,
13538 &pll->config.hw_state);
Daniel Vetter53589012013-06-05 13:34:16 +020013539 pll->active = 0;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013540 pll->config.crtc_mask = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013541 for_each_intel_crtc(dev, crtc) {
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020013542 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll) {
Daniel Vetter53589012013-06-05 13:34:16 +020013543 pll->active++;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013544 pll->config.crtc_mask |= 1 << crtc->pipe;
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020013545 }
Daniel Vetter53589012013-06-05 13:34:16 +020013546 }
Daniel Vetter53589012013-06-05 13:34:16 +020013547
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020013548 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013549 pll->name, pll->config.crtc_mask, pll->on);
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030013550
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013551 if (pll->config.crtc_mask)
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030013552 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
Daniel Vetter53589012013-06-05 13:34:16 +020013553 }
13554
Damien Lespiaub2784e12014-08-05 11:29:37 +010013555 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020013556 pipe = 0;
13557
13558 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -070013559 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
13560 encoder->base.crtc = &crtc->base;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013561 encoder->get_config(encoder, crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020013562 } else {
13563 encoder->base.crtc = NULL;
13564 }
13565
13566 encoder->connectors_active = false;
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010013567 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
Daniel Vetter24929352012-07-02 20:28:59 +020013568 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030013569 encoder->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020013570 encoder->base.crtc ? "enabled" : "disabled",
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010013571 pipe_name(pipe));
Daniel Vetter24929352012-07-02 20:28:59 +020013572 }
13573
13574 list_for_each_entry(connector, &dev->mode_config.connector_list,
13575 base.head) {
13576 if (connector->get_hw_state(connector)) {
13577 connector->base.dpms = DRM_MODE_DPMS_ON;
13578 connector->encoder->connectors_active = true;
13579 connector->base.encoder = &connector->encoder->base;
13580 } else {
13581 connector->base.dpms = DRM_MODE_DPMS_OFF;
13582 connector->base.encoder = NULL;
13583 }
13584 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
13585 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030013586 connector->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020013587 connector->base.encoder ? "enabled" : "disabled");
13588 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020013589}
13590
13591/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
13592 * and i915 state tracking structures. */
13593void intel_modeset_setup_hw_state(struct drm_device *dev,
13594 bool force_restore)
13595{
13596 struct drm_i915_private *dev_priv = dev->dev_private;
13597 enum pipe pipe;
Daniel Vetter30e984d2013-06-05 13:34:17 +020013598 struct intel_crtc *crtc;
13599 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020013600 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020013601
13602 intel_modeset_readout_hw_state(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020013603
Jesse Barnesbabea612013-06-26 18:57:38 +030013604 /*
13605 * Now that we have the config, copy it to each CRTC struct
13606 * Note that this could go away if we move to using crtc_config
13607 * checking everywhere.
13608 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013609 for_each_intel_crtc(dev, crtc) {
Jani Nikulad330a952014-01-21 11:24:25 +020013610 if (crtc->active && i915.fastboot) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013611 intel_mode_from_pipe_config(&crtc->base.mode,
13612 crtc->config);
Jesse Barnesbabea612013-06-26 18:57:38 +030013613 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
13614 crtc->base.base.id);
13615 drm_mode_debug_printmodeline(&crtc->base.mode);
13616 }
13617 }
13618
Daniel Vetter24929352012-07-02 20:28:59 +020013619 /* HW state is read out, now we need to sanitize this mess. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010013620 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020013621 intel_sanitize_encoder(encoder);
13622 }
13623
Damien Lespiau055e3932014-08-18 13:49:10 +010013624 for_each_pipe(dev_priv, pipe) {
Daniel Vetter24929352012-07-02 20:28:59 +020013625 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
13626 intel_sanitize_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013627 intel_dump_pipe_config(crtc, crtc->config,
13628 "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020013629 }
Daniel Vetter9a935852012-07-05 22:34:27 +020013630
Daniel Vetter35c95372013-07-17 06:55:04 +020013631 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13632 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13633
13634 if (!pll->on || pll->active)
13635 continue;
13636
13637 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
13638
13639 pll->disable(dev_priv, pll);
13640 pll->on = false;
13641 }
13642
Pradeep Bhat30789992014-11-04 17:06:45 +000013643 if (IS_GEN9(dev))
13644 skl_wm_get_hw_state(dev);
13645 else if (HAS_PCH_SPLIT(dev))
Ville Syrjälä243e6a42013-10-14 14:55:24 +030013646 ilk_wm_get_hw_state(dev);
13647
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010013648 if (force_restore) {
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030013649 i915_redisable_vga(dev);
13650
Daniel Vetterf30da182013-04-11 20:22:50 +020013651 /*
13652 * We need to use raw interfaces for restoring state to avoid
13653 * checking (bogus) intermediate states.
13654 */
Damien Lespiau055e3932014-08-18 13:49:10 +010013655 for_each_pipe(dev_priv, pipe) {
Jesse Barnesb5644d02013-03-26 13:25:27 -070013656 struct drm_crtc *crtc =
13657 dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vetterf30da182013-04-11 20:22:50 +020013658
Jesse Barnes7f27126e2014-11-05 14:26:06 -080013659 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
13660 crtc->primary->fb);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010013661 }
13662 } else {
13663 intel_modeset_update_staged_output_state(dev);
13664 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013665
13666 intel_modeset_check_state(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +010013667}
13668
13669void intel_modeset_gem_init(struct drm_device *dev)
13670{
Jesse Barnes92122782014-10-09 12:57:42 -070013671 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes484b41d2014-03-07 08:57:55 -080013672 struct drm_crtc *c;
Matt Roper2ff8fde2014-07-08 07:50:07 -070013673 struct drm_i915_gem_object *obj;
Jesse Barnes484b41d2014-03-07 08:57:55 -080013674
Imre Deakae484342014-03-31 15:10:44 +030013675 mutex_lock(&dev->struct_mutex);
13676 intel_init_gt_powersave(dev);
13677 mutex_unlock(&dev->struct_mutex);
13678
Jesse Barnes92122782014-10-09 12:57:42 -070013679 /*
13680 * There may be no VBT; and if the BIOS enabled SSC we can
13681 * just keep using it to avoid unnecessary flicker. Whereas if the
13682 * BIOS isn't using it, don't assume it will work even if the VBT
13683 * indicates as much.
13684 */
13685 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
13686 dev_priv->vbt.lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
13687 DREF_SSC1_ENABLE);
13688
Chris Wilson1833b132012-05-09 11:56:28 +010013689 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020013690
13691 intel_setup_overlay(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -080013692
13693 /*
13694 * Make sure any fbs we allocated at startup are properly
13695 * pinned & fenced. When we do the allocation it's too early
13696 * for this.
13697 */
13698 mutex_lock(&dev->struct_mutex);
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010013699 for_each_crtc(dev, c) {
Matt Roper2ff8fde2014-07-08 07:50:07 -070013700 obj = intel_fb_obj(c->primary->fb);
13701 if (obj == NULL)
Jesse Barnes484b41d2014-03-07 08:57:55 -080013702 continue;
13703
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +000013704 if (intel_pin_and_fence_fb_obj(c->primary,
13705 c->primary->fb,
13706 NULL)) {
Jesse Barnes484b41d2014-03-07 08:57:55 -080013707 DRM_ERROR("failed to pin boot fb on pipe %d\n",
13708 to_intel_crtc(c)->pipe);
Dave Airlie66e514c2014-04-03 07:51:54 +100013709 drm_framebuffer_unreference(c->primary->fb);
13710 c->primary->fb = NULL;
Matt Roperafd65eb2015-02-03 13:10:04 -080013711 update_state_fb(c->primary);
Jesse Barnes484b41d2014-03-07 08:57:55 -080013712 }
13713 }
13714 mutex_unlock(&dev->struct_mutex);
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020013715
13716 intel_backlight_register(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080013717}
13718
Imre Deak4932e2c2014-02-11 17:12:48 +020013719void intel_connector_unregister(struct intel_connector *intel_connector)
13720{
13721 struct drm_connector *connector = &intel_connector->base;
13722
13723 intel_panel_destroy_backlight(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +010013724 drm_connector_unregister(connector);
Imre Deak4932e2c2014-02-11 17:12:48 +020013725}
13726
Jesse Barnes79e53942008-11-07 14:24:08 -080013727void intel_modeset_cleanup(struct drm_device *dev)
13728{
Jesse Barnes652c3932009-08-17 13:31:43 -070013729 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid9255d52013-09-26 20:05:59 -030013730 struct drm_connector *connector;
Jesse Barnes652c3932009-08-17 13:31:43 -070013731
Imre Deak2eb52522014-11-19 15:30:05 +020013732 intel_disable_gt_powersave(dev);
13733
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020013734 intel_backlight_unregister(dev);
13735
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013736 /*
13737 * Interrupts and polling as the first thing to avoid creating havoc.
Imre Deak2eb52522014-11-19 15:30:05 +020013738 * Too much stuff here (turning of connectors, ...) would
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013739 * experience fancy races otherwise.
13740 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +020013741 intel_irq_uninstall(dev_priv);
Jesse Barneseb21b922014-06-20 11:57:33 -070013742
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013743 /*
13744 * Due to the hpd irq storm handling the hotplug work can re-arm the
13745 * poll handlers. Hence disable polling after hpd handling is shut down.
13746 */
Keith Packardf87ea762010-10-03 19:36:26 -070013747 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013748
Jesse Barnes652c3932009-08-17 13:31:43 -070013749 mutex_lock(&dev->struct_mutex);
13750
Jesse Barnes723bfd72010-10-07 16:01:13 -070013751 intel_unregister_dsm_handler();
13752
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020013753 intel_fbc_disable(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070013754
Daniel Vetter930ebb42012-06-29 23:32:16 +020013755 ironlake_teardown_rc6(dev);
13756
Kristian Høgsberg69341a52009-11-11 12:19:17 -050013757 mutex_unlock(&dev->struct_mutex);
13758
Chris Wilson1630fe72011-07-08 12:22:42 +010013759 /* flush any delayed tasks or pending work */
13760 flush_scheduled_work();
13761
Jani Nikuladb31af1d2013-11-08 16:48:53 +020013762 /* destroy the backlight and sysfs files before encoders/connectors */
13763 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Imre Deak4932e2c2014-02-11 17:12:48 +020013764 struct intel_connector *intel_connector;
13765
13766 intel_connector = to_intel_connector(connector);
13767 intel_connector->unregister(intel_connector);
Jani Nikuladb31af1d2013-11-08 16:48:53 +020013768 }
Paulo Zanonid9255d52013-09-26 20:05:59 -030013769
Jesse Barnes79e53942008-11-07 14:24:08 -080013770 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010013771
13772 intel_cleanup_overlay(dev);
Imre Deakae484342014-03-31 15:10:44 +030013773
13774 mutex_lock(&dev->struct_mutex);
13775 intel_cleanup_gt_powersave(dev);
13776 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080013777}
13778
Dave Airlie28d52042009-09-21 14:33:58 +100013779/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +080013780 * Return which encoder is currently attached for connector.
13781 */
Chris Wilsondf0e9242010-09-09 16:20:55 +010013782struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -080013783{
Chris Wilsondf0e9242010-09-09 16:20:55 +010013784 return &intel_attached_encoder(connector)->base;
13785}
Jesse Barnes79e53942008-11-07 14:24:08 -080013786
Chris Wilsondf0e9242010-09-09 16:20:55 +010013787void intel_connector_attach_encoder(struct intel_connector *connector,
13788 struct intel_encoder *encoder)
13789{
13790 connector->encoder = encoder;
13791 drm_mode_connector_attach_encoder(&connector->base,
13792 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080013793}
Dave Airlie28d52042009-09-21 14:33:58 +100013794
13795/*
13796 * set vga decode state - true == enable VGA decode
13797 */
13798int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
13799{
13800 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona885b3c2013-12-17 14:34:50 +000013801 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
Dave Airlie28d52042009-09-21 14:33:58 +100013802 u16 gmch_ctrl;
13803
Chris Wilson75fa0412014-02-07 18:37:02 -020013804 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
13805 DRM_ERROR("failed to read control word\n");
13806 return -EIO;
13807 }
13808
Chris Wilsonc0cc8a52014-02-07 18:37:03 -020013809 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
13810 return 0;
13811
Dave Airlie28d52042009-09-21 14:33:58 +100013812 if (state)
13813 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
13814 else
13815 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
Chris Wilson75fa0412014-02-07 18:37:02 -020013816
13817 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
13818 DRM_ERROR("failed to write control word\n");
13819 return -EIO;
13820 }
13821
Dave Airlie28d52042009-09-21 14:33:58 +100013822 return 0;
13823}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013824
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013825struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030013826
13827 u32 power_well_driver;
13828
Chris Wilson63b66e52013-08-08 15:12:06 +020013829 int num_transcoders;
13830
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013831 struct intel_cursor_error_state {
13832 u32 control;
13833 u32 position;
13834 u32 base;
13835 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010013836 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013837
13838 struct intel_pipe_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020013839 bool power_domain_on;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013840 u32 source;
Imre Deakf301b1e12014-04-18 15:55:04 +030013841 u32 stat;
Damien Lespiau52331302012-08-15 19:23:25 +010013842 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013843
13844 struct intel_plane_error_state {
13845 u32 control;
13846 u32 stride;
13847 u32 size;
13848 u32 pos;
13849 u32 addr;
13850 u32 surface;
13851 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010013852 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020013853
13854 struct intel_transcoder_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020013855 bool power_domain_on;
Chris Wilson63b66e52013-08-08 15:12:06 +020013856 enum transcoder cpu_transcoder;
13857
13858 u32 conf;
13859
13860 u32 htotal;
13861 u32 hblank;
13862 u32 hsync;
13863 u32 vtotal;
13864 u32 vblank;
13865 u32 vsync;
13866 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013867};
13868
13869struct intel_display_error_state *
13870intel_display_capture_error_state(struct drm_device *dev)
13871{
Jani Nikulafbee40d2014-03-31 14:27:18 +030013872 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013873 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020013874 int transcoders[] = {
13875 TRANSCODER_A,
13876 TRANSCODER_B,
13877 TRANSCODER_C,
13878 TRANSCODER_EDP,
13879 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013880 int i;
13881
Chris Wilson63b66e52013-08-08 15:12:06 +020013882 if (INTEL_INFO(dev)->num_pipes == 0)
13883 return NULL;
13884
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020013885 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013886 if (error == NULL)
13887 return NULL;
13888
Imre Deak190be112013-11-25 17:15:31 +020013889 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030013890 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
13891
Damien Lespiau055e3932014-08-18 13:49:10 +010013892 for_each_pipe(dev_priv, i) {
Imre Deakddf9c532013-11-27 22:02:02 +020013893 error->pipe[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020013894 __intel_display_power_is_enabled(dev_priv,
13895 POWER_DOMAIN_PIPE(i));
Imre Deakddf9c532013-11-27 22:02:02 +020013896 if (!error->pipe[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020013897 continue;
13898
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030013899 error->cursor[i].control = I915_READ(CURCNTR(i));
13900 error->cursor[i].position = I915_READ(CURPOS(i));
13901 error->cursor[i].base = I915_READ(CURBASE(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013902
13903 error->plane[i].control = I915_READ(DSPCNTR(i));
13904 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030013905 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030013906 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030013907 error->plane[i].pos = I915_READ(DSPPOS(i));
13908 }
Paulo Zanonica291362013-03-06 20:03:14 -030013909 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
13910 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013911 if (INTEL_INFO(dev)->gen >= 4) {
13912 error->plane[i].surface = I915_READ(DSPSURF(i));
13913 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
13914 }
13915
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013916 error->pipe[i].source = I915_READ(PIPESRC(i));
Imre Deakf301b1e12014-04-18 15:55:04 +030013917
Sonika Jindal3abfce72014-07-21 15:23:43 +053013918 if (HAS_GMCH_DISPLAY(dev))
Imre Deakf301b1e12014-04-18 15:55:04 +030013919 error->pipe[i].stat = I915_READ(PIPESTAT(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020013920 }
13921
13922 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
13923 if (HAS_DDI(dev_priv->dev))
13924 error->num_transcoders++; /* Account for eDP. */
13925
13926 for (i = 0; i < error->num_transcoders; i++) {
13927 enum transcoder cpu_transcoder = transcoders[i];
13928
Imre Deakddf9c532013-11-27 22:02:02 +020013929 error->transcoder[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020013930 __intel_display_power_is_enabled(dev_priv,
Paulo Zanoni38cc1da2013-12-20 15:09:41 -020013931 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020013932 if (!error->transcoder[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020013933 continue;
13934
Chris Wilson63b66e52013-08-08 15:12:06 +020013935 error->transcoder[i].cpu_transcoder = cpu_transcoder;
13936
13937 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
13938 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
13939 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
13940 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
13941 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
13942 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
13943 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013944 }
13945
13946 return error;
13947}
13948
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013949#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
13950
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013951void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013952intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013953 struct drm_device *dev,
13954 struct intel_display_error_state *error)
13955{
Damien Lespiau055e3932014-08-18 13:49:10 +010013956 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013957 int i;
13958
Chris Wilson63b66e52013-08-08 15:12:06 +020013959 if (!error)
13960 return;
13961
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013962 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Imre Deak190be112013-11-25 17:15:31 +020013963 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013964 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030013965 error->power_well_driver);
Damien Lespiau055e3932014-08-18 13:49:10 +010013966 for_each_pipe(dev_priv, i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013967 err_printf(m, "Pipe [%d]:\n", i);
Imre Deakddf9c532013-11-27 22:02:02 +020013968 err_printf(m, " Power: %s\n",
13969 error->pipe[i].power_domain_on ? "on" : "off");
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013970 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Imre Deakf301b1e12014-04-18 15:55:04 +030013971 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013972
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013973 err_printf(m, "Plane [%d]:\n", i);
13974 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
13975 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030013976 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013977 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
13978 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030013979 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030013980 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013981 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013982 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013983 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
13984 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013985 }
13986
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030013987 err_printf(m, "Cursor [%d]:\n", i);
13988 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
13989 err_printf(m, " POS: %08x\n", error->cursor[i].position);
13990 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000013991 }
Chris Wilson63b66e52013-08-08 15:12:06 +020013992
13993 for (i = 0; i < error->num_transcoders; i++) {
Chris Wilson1cf84bb2013-10-21 09:10:33 +010013994 err_printf(m, "CPU transcoder: %c\n",
Chris Wilson63b66e52013-08-08 15:12:06 +020013995 transcoder_name(error->transcoder[i].cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020013996 err_printf(m, " Power: %s\n",
13997 error->transcoder[i].power_domain_on ? "on" : "off");
Chris Wilson63b66e52013-08-08 15:12:06 +020013998 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
13999 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
14000 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
14001 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
14002 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
14003 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
14004 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
14005 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014006}
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014007
14008void intel_modeset_preclose(struct drm_device *dev, struct drm_file *file)
14009{
14010 struct intel_crtc *crtc;
14011
14012 for_each_intel_crtc(dev, crtc) {
14013 struct intel_unpin_work *work;
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014014
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020014015 spin_lock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014016
14017 work = crtc->unpin_work;
14018
14019 if (work && work->event &&
14020 work->event->base.file_priv == file) {
14021 kfree(work->event);
14022 work->event = NULL;
14023 }
14024
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020014025 spin_unlock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014026 }
14027}