blob: f1c0295f69e5c4da7aed74222dd88a97ad3079f4 [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"
Xi Ruoyao319c1d42015-03-12 20:16:32 +080040#include <drm/drm_atomic.h>
Matt Roperc196e1d2015-01-21 16:35:48 -080041#include <drm/drm_atomic_helper.h>
David Howells760285e2012-10-02 18:01:07 +010042#include <drm/drm_dp_helper.h>
43#include <drm/drm_crtc_helper.h>
Matt Roper465c1202014-05-29 08:06:54 -070044#include <drm/drm_plane_helper.h>
45#include <drm/drm_rect.h>
Keith Packardc0f372b32011-11-16 22:24:52 -080046#include <linux/dma_remapping.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080047
Matt Roper465c1202014-05-29 08:06:54 -070048/* Primary plane formats supported by all gen */
49#define COMMON_PRIMARY_FORMATS \
50 DRM_FORMAT_C8, \
51 DRM_FORMAT_RGB565, \
52 DRM_FORMAT_XRGB8888, \
53 DRM_FORMAT_ARGB8888
54
55/* Primary plane formats for gen <= 3 */
56static const uint32_t intel_primary_formats_gen2[] = {
57 COMMON_PRIMARY_FORMATS,
58 DRM_FORMAT_XRGB1555,
59 DRM_FORMAT_ARGB1555,
60};
61
62/* Primary plane formats for gen >= 4 */
63static const uint32_t intel_primary_formats_gen4[] = {
64 COMMON_PRIMARY_FORMATS, \
65 DRM_FORMAT_XBGR8888,
66 DRM_FORMAT_ABGR8888,
67 DRM_FORMAT_XRGB2101010,
68 DRM_FORMAT_ARGB2101010,
69 DRM_FORMAT_XBGR2101010,
70 DRM_FORMAT_ABGR2101010,
71};
72
Matt Roper3d7d6512014-06-10 08:28:13 -070073/* Cursor formats */
74static const uint32_t intel_cursor_formats[] = {
75 DRM_FORMAT_ARGB8888,
76};
77
Chris Wilson6b383a72010-09-13 13:54:26 +010078static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
Jesse Barnes79e53942008-11-07 14:24:08 -080079
Jesse Barnesf1f644d2013-06-27 00:39:25 +030080static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020081 struct intel_crtc_state *pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +030082static void ironlake_pch_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020083 struct intel_crtc_state *pipe_config);
Jesse Barnesf1f644d2013-06-27 00:39:25 +030084
Damien Lespiaue7457a92013-08-08 22:28:59 +010085static int intel_set_mode(struct drm_crtc *crtc, struct drm_display_mode *mode,
86 int x, int y, struct drm_framebuffer *old_fb);
Jesse Barneseb1bfe82014-02-12 12:26:25 -080087static int intel_framebuffer_init(struct drm_device *dev,
88 struct intel_framebuffer *ifb,
89 struct drm_mode_fb_cmd2 *mode_cmd,
90 struct drm_i915_gem_object *obj);
Daniel Vetter5b18e572014-04-24 23:55:06 +020091static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc);
92static void intel_set_pipe_timings(struct intel_crtc *intel_crtc);
Daniel Vetter29407aa2014-04-24 23:55:08 +020093static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -070094 struct intel_link_m_n *m_n,
95 struct intel_link_m_n *m2_n2);
Daniel Vetter29407aa2014-04-24 23:55:08 +020096static void ironlake_set_pipeconf(struct drm_crtc *crtc);
Daniel Vetter229fca92014-04-24 23:55:09 +020097static void haswell_set_pipeconf(struct drm_crtc *crtc);
98static void intel_set_pipe_csc(struct drm_crtc *crtc);
Ville Syrjäläd288f652014-10-28 13:20:22 +020099static void vlv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200100 const struct intel_crtc_state *pipe_config);
Ville Syrjäläd288f652014-10-28 13:20:22 +0200101static void chv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200102 const struct intel_crtc_state *pipe_config);
Matt Roperea2c67b2014-12-23 10:41:52 -0800103static void intel_begin_crtc_commit(struct drm_crtc *crtc);
104static void intel_finish_crtc_commit(struct drm_crtc *crtc);
Damien Lespiaue7457a92013-08-08 22:28:59 +0100105
Dave Airlie0e32b392014-05-02 14:02:48 +1000106static struct intel_encoder *intel_find_encoder(struct intel_connector *connector, int pipe)
107{
108 if (!connector->mst_port)
109 return connector->encoder;
110 else
111 return &connector->mst_port->mst_encoders[pipe]->base;
112}
113
Jesse Barnes79e53942008-11-07 14:24:08 -0800114typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -0400115 int min, max;
Jesse Barnes79e53942008-11-07 14:24:08 -0800116} intel_range_t;
117
118typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -0400119 int dot_limit;
120 int p2_slow, p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -0800121} intel_p2_t;
122
Ma Lingd4906092009-03-18 20:13:27 +0800123typedef struct intel_limit intel_limit_t;
124struct intel_limit {
Akshay Joshi0206e352011-08-16 15:34:10 -0400125 intel_range_t dot, vco, n, m, m1, m2, p, p1;
126 intel_p2_t p2;
Ma Lingd4906092009-03-18 20:13:27 +0800127};
Jesse Barnes79e53942008-11-07 14:24:08 -0800128
Daniel Vetterd2acd212012-10-20 20:57:43 +0200129int
130intel_pch_rawclk(struct drm_device *dev)
131{
132 struct drm_i915_private *dev_priv = dev->dev_private;
133
134 WARN_ON(!HAS_PCH_SPLIT(dev));
135
136 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
137}
138
Chris Wilson021357a2010-09-07 20:54:59 +0100139static inline u32 /* units of 100MHz */
140intel_fdi_link_freq(struct drm_device *dev)
141{
Chris Wilson8b99e682010-10-13 09:59:17 +0100142 if (IS_GEN5(dev)) {
143 struct drm_i915_private *dev_priv = dev->dev_private;
144 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
145 } else
146 return 27;
Chris Wilson021357a2010-09-07 20:54:59 +0100147}
148
Daniel Vetter5d536e22013-07-06 12:52:06 +0200149static const intel_limit_t intel_limits_i8xx_dac = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400150 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200151 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200152 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400153 .m = { .min = 96, .max = 140 },
154 .m1 = { .min = 18, .max = 26 },
155 .m2 = { .min = 6, .max = 16 },
156 .p = { .min = 4, .max = 128 },
157 .p1 = { .min = 2, .max = 33 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700158 .p2 = { .dot_limit = 165000,
159 .p2_slow = 4, .p2_fast = 2 },
Keith Packarde4b36692009-06-05 19:22:17 -0700160};
161
Daniel Vetter5d536e22013-07-06 12:52:06 +0200162static const intel_limit_t intel_limits_i8xx_dvo = {
163 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200164 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200165 .n = { .min = 2, .max = 16 },
Daniel Vetter5d536e22013-07-06 12:52:06 +0200166 .m = { .min = 96, .max = 140 },
167 .m1 = { .min = 18, .max = 26 },
168 .m2 = { .min = 6, .max = 16 },
169 .p = { .min = 4, .max = 128 },
170 .p1 = { .min = 2, .max = 33 },
171 .p2 = { .dot_limit = 165000,
172 .p2_slow = 4, .p2_fast = 4 },
173};
174
Keith Packarde4b36692009-06-05 19:22:17 -0700175static const intel_limit_t intel_limits_i8xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400176 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200177 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200178 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400179 .m = { .min = 96, .max = 140 },
180 .m1 = { .min = 18, .max = 26 },
181 .m2 = { .min = 6, .max = 16 },
182 .p = { .min = 4, .max = 128 },
183 .p1 = { .min = 1, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700184 .p2 = { .dot_limit = 165000,
185 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700186};
Eric Anholt273e27c2011-03-30 13:01:10 -0700187
Keith Packarde4b36692009-06-05 19:22:17 -0700188static const intel_limit_t intel_limits_i9xx_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400189 .dot = { .min = 20000, .max = 400000 },
190 .vco = { .min = 1400000, .max = 2800000 },
191 .n = { .min = 1, .max = 6 },
192 .m = { .min = 70, .max = 120 },
Patrik Jakobsson4f7dfb62013-02-13 22:20:22 +0100193 .m1 = { .min = 8, .max = 18 },
194 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400195 .p = { .min = 5, .max = 80 },
196 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700197 .p2 = { .dot_limit = 200000,
198 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700199};
200
201static const intel_limit_t intel_limits_i9xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400202 .dot = { .min = 20000, .max = 400000 },
203 .vco = { .min = 1400000, .max = 2800000 },
204 .n = { .min = 1, .max = 6 },
205 .m = { .min = 70, .max = 120 },
Patrik Jakobsson53a7d2d2013-02-13 22:20:21 +0100206 .m1 = { .min = 8, .max = 18 },
207 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400208 .p = { .min = 7, .max = 98 },
209 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700210 .p2 = { .dot_limit = 112000,
211 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700212};
213
Eric Anholt273e27c2011-03-30 13:01:10 -0700214
Keith Packarde4b36692009-06-05 19:22:17 -0700215static const intel_limit_t intel_limits_g4x_sdvo = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700216 .dot = { .min = 25000, .max = 270000 },
217 .vco = { .min = 1750000, .max = 3500000},
218 .n = { .min = 1, .max = 4 },
219 .m = { .min = 104, .max = 138 },
220 .m1 = { .min = 17, .max = 23 },
221 .m2 = { .min = 5, .max = 11 },
222 .p = { .min = 10, .max = 30 },
223 .p1 = { .min = 1, .max = 3},
224 .p2 = { .dot_limit = 270000,
225 .p2_slow = 10,
226 .p2_fast = 10
Ma Ling044c7c42009-03-18 20:13:23 +0800227 },
Keith Packarde4b36692009-06-05 19:22:17 -0700228};
229
230static const intel_limit_t intel_limits_g4x_hdmi = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700231 .dot = { .min = 22000, .max = 400000 },
232 .vco = { .min = 1750000, .max = 3500000},
233 .n = { .min = 1, .max = 4 },
234 .m = { .min = 104, .max = 138 },
235 .m1 = { .min = 16, .max = 23 },
236 .m2 = { .min = 5, .max = 11 },
237 .p = { .min = 5, .max = 80 },
238 .p1 = { .min = 1, .max = 8},
239 .p2 = { .dot_limit = 165000,
240 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700241};
242
243static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700244 .dot = { .min = 20000, .max = 115000 },
245 .vco = { .min = 1750000, .max = 3500000 },
246 .n = { .min = 1, .max = 3 },
247 .m = { .min = 104, .max = 138 },
248 .m1 = { .min = 17, .max = 23 },
249 .m2 = { .min = 5, .max = 11 },
250 .p = { .min = 28, .max = 112 },
251 .p1 = { .min = 2, .max = 8 },
252 .p2 = { .dot_limit = 0,
253 .p2_slow = 14, .p2_fast = 14
Ma Ling044c7c42009-03-18 20:13:23 +0800254 },
Keith Packarde4b36692009-06-05 19:22:17 -0700255};
256
257static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700258 .dot = { .min = 80000, .max = 224000 },
259 .vco = { .min = 1750000, .max = 3500000 },
260 .n = { .min = 1, .max = 3 },
261 .m = { .min = 104, .max = 138 },
262 .m1 = { .min = 17, .max = 23 },
263 .m2 = { .min = 5, .max = 11 },
264 .p = { .min = 14, .max = 42 },
265 .p1 = { .min = 2, .max = 6 },
266 .p2 = { .dot_limit = 0,
267 .p2_slow = 7, .p2_fast = 7
Ma Ling044c7c42009-03-18 20:13:23 +0800268 },
Keith Packarde4b36692009-06-05 19:22:17 -0700269};
270
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500271static const intel_limit_t intel_limits_pineview_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400272 .dot = { .min = 20000, .max = 400000},
273 .vco = { .min = 1700000, .max = 3500000 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700274 /* Pineview's Ncounter is a ring counter */
Akshay Joshi0206e352011-08-16 15:34:10 -0400275 .n = { .min = 3, .max = 6 },
276 .m = { .min = 2, .max = 256 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700277 /* Pineview only has one combined m divider, which we treat as m2. */
Akshay Joshi0206e352011-08-16 15:34:10 -0400278 .m1 = { .min = 0, .max = 0 },
279 .m2 = { .min = 0, .max = 254 },
280 .p = { .min = 5, .max = 80 },
281 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700282 .p2 = { .dot_limit = 200000,
283 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700284};
285
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500286static const intel_limit_t intel_limits_pineview_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400287 .dot = { .min = 20000, .max = 400000 },
288 .vco = { .min = 1700000, .max = 3500000 },
289 .n = { .min = 3, .max = 6 },
290 .m = { .min = 2, .max = 256 },
291 .m1 = { .min = 0, .max = 0 },
292 .m2 = { .min = 0, .max = 254 },
293 .p = { .min = 7, .max = 112 },
294 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700295 .p2 = { .dot_limit = 112000,
296 .p2_slow = 14, .p2_fast = 14 },
Keith Packarde4b36692009-06-05 19:22:17 -0700297};
298
Eric Anholt273e27c2011-03-30 13:01:10 -0700299/* Ironlake / Sandybridge
300 *
301 * We calculate clock using (register_value + 2) for N/M1/M2, so here
302 * the range value for them is (actual_value - 2).
303 */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800304static const intel_limit_t intel_limits_ironlake_dac = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700305 .dot = { .min = 25000, .max = 350000 },
306 .vco = { .min = 1760000, .max = 3510000 },
307 .n = { .min = 1, .max = 5 },
308 .m = { .min = 79, .max = 127 },
309 .m1 = { .min = 12, .max = 22 },
310 .m2 = { .min = 5, .max = 9 },
311 .p = { .min = 5, .max = 80 },
312 .p1 = { .min = 1, .max = 8 },
313 .p2 = { .dot_limit = 225000,
314 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700315};
316
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800317static const intel_limit_t intel_limits_ironlake_single_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700318 .dot = { .min = 25000, .max = 350000 },
319 .vco = { .min = 1760000, .max = 3510000 },
320 .n = { .min = 1, .max = 3 },
321 .m = { .min = 79, .max = 118 },
322 .m1 = { .min = 12, .max = 22 },
323 .m2 = { .min = 5, .max = 9 },
324 .p = { .min = 28, .max = 112 },
325 .p1 = { .min = 2, .max = 8 },
326 .p2 = { .dot_limit = 225000,
327 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800328};
329
330static const intel_limit_t intel_limits_ironlake_dual_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700331 .dot = { .min = 25000, .max = 350000 },
332 .vco = { .min = 1760000, .max = 3510000 },
333 .n = { .min = 1, .max = 3 },
334 .m = { .min = 79, .max = 127 },
335 .m1 = { .min = 12, .max = 22 },
336 .m2 = { .min = 5, .max = 9 },
337 .p = { .min = 14, .max = 56 },
338 .p1 = { .min = 2, .max = 8 },
339 .p2 = { .dot_limit = 225000,
340 .p2_slow = 7, .p2_fast = 7 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800341};
342
Eric Anholt273e27c2011-03-30 13:01:10 -0700343/* LVDS 100mhz refclk limits. */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800344static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700345 .dot = { .min = 25000, .max = 350000 },
346 .vco = { .min = 1760000, .max = 3510000 },
347 .n = { .min = 1, .max = 2 },
348 .m = { .min = 79, .max = 126 },
349 .m1 = { .min = 12, .max = 22 },
350 .m2 = { .min = 5, .max = 9 },
351 .p = { .min = 28, .max = 112 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400352 .p1 = { .min = 2, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700353 .p2 = { .dot_limit = 225000,
354 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800355};
356
357static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700358 .dot = { .min = 25000, .max = 350000 },
359 .vco = { .min = 1760000, .max = 3510000 },
360 .n = { .min = 1, .max = 3 },
361 .m = { .min = 79, .max = 126 },
362 .m1 = { .min = 12, .max = 22 },
363 .m2 = { .min = 5, .max = 9 },
364 .p = { .min = 14, .max = 42 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400365 .p1 = { .min = 2, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700366 .p2 = { .dot_limit = 225000,
367 .p2_slow = 7, .p2_fast = 7 },
Zhao Yakui45476682009-12-31 16:06:04 +0800368};
369
Ville Syrjälädc730512013-09-24 21:26:30 +0300370static const intel_limit_t intel_limits_vlv = {
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300371 /*
372 * These are the data rate limits (measured in fast clocks)
373 * since those are the strictest limits we have. The fast
374 * clock and actual rate limits are more relaxed, so checking
375 * them would make no difference.
376 */
377 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
Daniel Vetter75e53982013-04-18 21:10:43 +0200378 .vco = { .min = 4000000, .max = 6000000 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700379 .n = { .min = 1, .max = 7 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700380 .m1 = { .min = 2, .max = 3 },
381 .m2 = { .min = 11, .max = 156 },
Ville Syrjäläb99ab662013-09-24 21:26:26 +0300382 .p1 = { .min = 2, .max = 3 },
Ville Syrjälä5fdc9c492013-09-24 21:26:29 +0300383 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700384};
385
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300386static const intel_limit_t intel_limits_chv = {
387 /*
388 * These are the data rate limits (measured in fast clocks)
389 * since those are the strictest limits we have. The fast
390 * clock and actual rate limits are more relaxed, so checking
391 * them would make no difference.
392 */
393 .dot = { .min = 25000 * 5, .max = 540000 * 5},
Ville Syrjälä17fe1022015-02-26 21:01:52 +0200394 .vco = { .min = 4800000, .max = 6480000 },
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300395 .n = { .min = 1, .max = 1 },
396 .m1 = { .min = 2, .max = 2 },
397 .m2 = { .min = 24 << 22, .max = 175 << 22 },
398 .p1 = { .min = 2, .max = 4 },
399 .p2 = { .p2_slow = 1, .p2_fast = 14 },
400};
401
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300402static void vlv_clock(int refclk, intel_clock_t *clock)
403{
404 clock->m = clock->m1 * clock->m2;
405 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200406 if (WARN_ON(clock->n == 0 || clock->p == 0))
407 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300408 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
409 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300410}
411
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300412/**
413 * Returns whether any output on the specified pipe is of the specified type
414 */
Damien Lespiau40935612014-10-29 11:16:59 +0000415bool intel_pipe_has_type(struct intel_crtc *crtc, enum intel_output_type type)
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300416{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300417 struct drm_device *dev = crtc->base.dev;
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300418 struct intel_encoder *encoder;
419
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300420 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300421 if (encoder->type == type)
422 return true;
423
424 return false;
425}
426
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200427/**
428 * Returns whether any output on the specified pipe will have the specified
429 * type after a staged modeset is complete, i.e., the same as
430 * intel_pipe_has_type() but looking at encoder->new_crtc instead of
431 * encoder->crtc.
432 */
433static bool intel_pipe_will_have_type(struct intel_crtc *crtc, int type)
434{
435 struct drm_device *dev = crtc->base.dev;
436 struct intel_encoder *encoder;
437
438 for_each_intel_encoder(dev, encoder)
439 if (encoder->new_crtc == crtc && encoder->type == type)
440 return true;
441
442 return false;
443}
444
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300445static const intel_limit_t *intel_ironlake_limit(struct intel_crtc *crtc,
Chris Wilson1b894b52010-12-14 20:04:54 +0000446 int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800447{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300448 struct drm_device *dev = crtc->base.dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800449 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800450
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200451 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100452 if (intel_is_dual_link_lvds(dev)) {
Chris Wilson1b894b52010-12-14 20:04:54 +0000453 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800454 limit = &intel_limits_ironlake_dual_lvds_100m;
455 else
456 limit = &intel_limits_ironlake_dual_lvds;
457 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000458 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800459 limit = &intel_limits_ironlake_single_lvds_100m;
460 else
461 limit = &intel_limits_ironlake_single_lvds;
462 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200463 } else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800464 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800465
466 return limit;
467}
468
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300469static const intel_limit_t *intel_g4x_limit(struct intel_crtc *crtc)
Ma Ling044c7c42009-03-18 20:13:23 +0800470{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300471 struct drm_device *dev = crtc->base.dev;
Ma Ling044c7c42009-03-18 20:13:23 +0800472 const intel_limit_t *limit;
473
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200474 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100475 if (intel_is_dual_link_lvds(dev))
Keith Packarde4b36692009-06-05 19:22:17 -0700476 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800477 else
Keith Packarde4b36692009-06-05 19:22:17 -0700478 limit = &intel_limits_g4x_single_channel_lvds;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200479 } else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_HDMI) ||
480 intel_pipe_will_have_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700481 limit = &intel_limits_g4x_hdmi;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200482 } else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700483 limit = &intel_limits_g4x_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800484 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700485 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800486
487 return limit;
488}
489
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300490static const intel_limit_t *intel_limit(struct intel_crtc *crtc, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800491{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300492 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800493 const intel_limit_t *limit;
494
Eric Anholtbad720f2009-10-22 16:11:14 -0700495 if (HAS_PCH_SPLIT(dev))
Chris Wilson1b894b52010-12-14 20:04:54 +0000496 limit = intel_ironlake_limit(crtc, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800497 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800498 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500499 } else if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200500 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500501 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800502 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500503 limit = &intel_limits_pineview_sdvo;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300504 } else if (IS_CHERRYVIEW(dev)) {
505 limit = &intel_limits_chv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700506 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälädc730512013-09-24 21:26:30 +0300507 limit = &intel_limits_vlv;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100508 } else if (!IS_GEN2(dev)) {
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200509 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100510 limit = &intel_limits_i9xx_lvds;
511 else
512 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800513 } else {
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200514 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700515 limit = &intel_limits_i8xx_lvds;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200516 else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_DVO))
Keith Packarde4b36692009-06-05 19:22:17 -0700517 limit = &intel_limits_i8xx_dvo;
Daniel Vetter5d536e22013-07-06 12:52:06 +0200518 else
519 limit = &intel_limits_i8xx_dac;
Jesse Barnes79e53942008-11-07 14:24:08 -0800520 }
521 return limit;
522}
523
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500524/* m1 is reserved as 0 in Pineview, n is a ring counter */
525static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800526{
Shaohua Li21778322009-02-23 15:19:16 +0800527 clock->m = clock->m2 + 2;
528 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200529 if (WARN_ON(clock->n == 0 || clock->p == 0))
530 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300531 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
532 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Shaohua Li21778322009-02-23 15:19:16 +0800533}
534
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200535static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
536{
537 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
538}
539
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200540static void i9xx_clock(int refclk, intel_clock_t *clock)
Shaohua Li21778322009-02-23 15:19:16 +0800541{
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200542 clock->m = i9xx_dpll_compute_m(clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800543 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200544 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
545 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300546 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
547 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Jesse Barnes79e53942008-11-07 14:24:08 -0800548}
549
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300550static void chv_clock(int refclk, intel_clock_t *clock)
551{
552 clock->m = clock->m1 * clock->m2;
553 clock->p = clock->p1 * clock->p2;
554 if (WARN_ON(clock->n == 0 || clock->p == 0))
555 return;
556 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
557 clock->n << 22);
558 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
559}
560
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800561#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800562/**
563 * Returns whether the given set of divisors are valid for a given refclk with
564 * the given connectors.
565 */
566
Chris Wilson1b894b52010-12-14 20:04:54 +0000567static bool intel_PLL_is_valid(struct drm_device *dev,
568 const intel_limit_t *limit,
569 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800570{
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300571 if (clock->n < limit->n.min || limit->n.max < clock->n)
572 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800573 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400574 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800575 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400576 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800577 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400578 INTELPllInvalid("m1 out of range\n");
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300579
580 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev))
581 if (clock->m1 <= clock->m2)
582 INTELPllInvalid("m1 <= m2\n");
583
584 if (!IS_VALLEYVIEW(dev)) {
585 if (clock->p < limit->p.min || limit->p.max < clock->p)
586 INTELPllInvalid("p out of range\n");
587 if (clock->m < limit->m.min || limit->m.max < clock->m)
588 INTELPllInvalid("m out of range\n");
589 }
590
Jesse Barnes79e53942008-11-07 14:24:08 -0800591 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400592 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800593 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
594 * connector, etc., rather than just a single range.
595 */
596 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400597 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800598
599 return true;
600}
601
Ma Lingd4906092009-03-18 20:13:27 +0800602static bool
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300603i9xx_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800604 int target, int refclk, intel_clock_t *match_clock,
605 intel_clock_t *best_clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800606{
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300607 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800608 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800609 int err = target;
610
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200611 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800612 /*
Daniel Vettera210b022012-11-26 17:22:08 +0100613 * For LVDS just rely on its current settings for dual-channel.
614 * We haven't figured out how to reliably set up different
615 * single/dual channel state, if we even can.
Jesse Barnes79e53942008-11-07 14:24:08 -0800616 */
Daniel Vetter1974cad2012-11-26 17:22:09 +0100617 if (intel_is_dual_link_lvds(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800618 clock.p2 = limit->p2.p2_fast;
619 else
620 clock.p2 = limit->p2.p2_slow;
621 } else {
622 if (target < limit->p2.dot_limit)
623 clock.p2 = limit->p2.p2_slow;
624 else
625 clock.p2 = limit->p2.p2_fast;
626 }
627
Akshay Joshi0206e352011-08-16 15:34:10 -0400628 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800629
Zhao Yakui42158662009-11-20 11:24:18 +0800630 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
631 clock.m1++) {
632 for (clock.m2 = limit->m2.min;
633 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterc0efc382013-06-03 20:56:24 +0200634 if (clock.m2 >= clock.m1)
Zhao Yakui42158662009-11-20 11:24:18 +0800635 break;
636 for (clock.n = limit->n.min;
637 clock.n <= limit->n.max; clock.n++) {
638 for (clock.p1 = limit->p1.min;
639 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800640 int this_err;
641
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200642 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000643 if (!intel_PLL_is_valid(dev, limit,
644 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800645 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800646 if (match_clock &&
647 clock.p != match_clock->p)
648 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800649
650 this_err = abs(clock.dot - target);
651 if (this_err < err) {
652 *best_clock = clock;
653 err = this_err;
654 }
655 }
656 }
657 }
658 }
659
660 return (err != target);
661}
662
Ma Lingd4906092009-03-18 20:13:27 +0800663static bool
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300664pnv_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200665 int target, int refclk, intel_clock_t *match_clock,
666 intel_clock_t *best_clock)
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200667{
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300668 struct drm_device *dev = crtc->base.dev;
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200669 intel_clock_t clock;
670 int err = target;
671
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200672 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200673 /*
674 * For LVDS just rely on its current settings for dual-channel.
675 * We haven't figured out how to reliably set up different
676 * single/dual channel state, if we even can.
677 */
678 if (intel_is_dual_link_lvds(dev))
679 clock.p2 = limit->p2.p2_fast;
680 else
681 clock.p2 = limit->p2.p2_slow;
682 } else {
683 if (target < limit->p2.dot_limit)
684 clock.p2 = limit->p2.p2_slow;
685 else
686 clock.p2 = limit->p2.p2_fast;
687 }
688
689 memset(best_clock, 0, sizeof(*best_clock));
690
691 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
692 clock.m1++) {
693 for (clock.m2 = limit->m2.min;
694 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200695 for (clock.n = limit->n.min;
696 clock.n <= limit->n.max; clock.n++) {
697 for (clock.p1 = limit->p1.min;
698 clock.p1 <= limit->p1.max; clock.p1++) {
699 int this_err;
700
701 pineview_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800702 if (!intel_PLL_is_valid(dev, limit,
703 &clock))
704 continue;
705 if (match_clock &&
706 clock.p != match_clock->p)
707 continue;
708
709 this_err = abs(clock.dot - target);
710 if (this_err < err) {
711 *best_clock = clock;
712 err = this_err;
713 }
714 }
715 }
716 }
717 }
718
719 return (err != target);
720}
721
Ma Lingd4906092009-03-18 20:13:27 +0800722static bool
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300723g4x_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200724 int target, int refclk, intel_clock_t *match_clock,
725 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800726{
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300727 struct drm_device *dev = crtc->base.dev;
Ma Lingd4906092009-03-18 20:13:27 +0800728 intel_clock_t clock;
729 int max_n;
730 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400731 /* approximately equals target * 0.00585 */
732 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800733 found = false;
734
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200735 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100736 if (intel_is_dual_link_lvds(dev))
Ma Lingd4906092009-03-18 20:13:27 +0800737 clock.p2 = limit->p2.p2_fast;
738 else
739 clock.p2 = limit->p2.p2_slow;
740 } else {
741 if (target < limit->p2.dot_limit)
742 clock.p2 = limit->p2.p2_slow;
743 else
744 clock.p2 = limit->p2.p2_fast;
745 }
746
747 memset(best_clock, 0, sizeof(*best_clock));
748 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200749 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800750 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200751 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800752 for (clock.m1 = limit->m1.max;
753 clock.m1 >= limit->m1.min; clock.m1--) {
754 for (clock.m2 = limit->m2.max;
755 clock.m2 >= limit->m2.min; clock.m2--) {
756 for (clock.p1 = limit->p1.max;
757 clock.p1 >= limit->p1.min; clock.p1--) {
758 int this_err;
759
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200760 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000761 if (!intel_PLL_is_valid(dev, limit,
762 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800763 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000764
765 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800766 if (this_err < err_most) {
767 *best_clock = clock;
768 err_most = this_err;
769 max_n = clock.n;
770 found = true;
771 }
772 }
773 }
774 }
775 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800776 return found;
777}
Ma Lingd4906092009-03-18 20:13:27 +0800778
Zhenyu Wang2c072452009-06-05 15:38:42 +0800779static bool
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300780vlv_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200781 int target, int refclk, intel_clock_t *match_clock,
782 intel_clock_t *best_clock)
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700783{
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300784 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300785 intel_clock_t clock;
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300786 unsigned int bestppm = 1000000;
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300787 /* min update 19.2 MHz */
788 int max_n = min(limit->n.max, refclk / 19200);
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300789 bool found = false;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700790
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300791 target *= 5; /* fast clock */
792
793 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700794
795 /* based on hardware requirement, prefer smaller n to precision */
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300796 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Ville Syrjälä811bbf02013-09-24 21:26:25 +0300797 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
Ville Syrjälä889059d2013-09-24 21:26:27 +0300798 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
Ville Syrjäläc1a9ae42013-09-24 21:26:23 +0300799 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300800 clock.p = clock.p1 * clock.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700801 /* based on hardware requirement, prefer bigger m1,m2 values */
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300802 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300803 unsigned int ppm, diff;
804
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300805 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
806 refclk * clock.m1);
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300807
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300808 vlv_clock(refclk, &clock);
809
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300810 if (!intel_PLL_is_valid(dev, limit,
811 &clock))
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300812 continue;
813
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300814 diff = abs(clock.dot - target);
815 ppm = div_u64(1000000ULL * diff, target);
816
817 if (ppm < 100 && clock.p > best_clock->p) {
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300818 bestppm = 0;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300819 *best_clock = clock;
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300820 found = true;
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300821 }
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300822
Ville Syrjäläc6861222013-09-24 21:26:21 +0300823 if (bestppm >= 10 && ppm < bestppm - 10) {
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300824 bestppm = ppm;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300825 *best_clock = clock;
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300826 found = true;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700827 }
828 }
829 }
830 }
831 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700832
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300833 return found;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700834}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700835
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300836static bool
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300837chv_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300838 int target, int refclk, intel_clock_t *match_clock,
839 intel_clock_t *best_clock)
840{
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300841 struct drm_device *dev = crtc->base.dev;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300842 intel_clock_t clock;
843 uint64_t m2;
844 int found = false;
845
846 memset(best_clock, 0, sizeof(*best_clock));
847
848 /*
849 * Based on hardware doc, the n always set to 1, and m1 always
850 * set to 2. If requires to support 200Mhz refclk, we need to
851 * revisit this because n may not 1 anymore.
852 */
853 clock.n = 1, clock.m1 = 2;
854 target *= 5; /* fast clock */
855
856 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
857 for (clock.p2 = limit->p2.p2_fast;
858 clock.p2 >= limit->p2.p2_slow;
859 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
860
861 clock.p = clock.p1 * clock.p2;
862
863 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
864 clock.n) << 22, refclk * clock.m1);
865
866 if (m2 > INT_MAX/clock.m1)
867 continue;
868
869 clock.m2 = m2;
870
871 chv_clock(refclk, &clock);
872
873 if (!intel_PLL_is_valid(dev, limit, &clock))
874 continue;
875
876 /* based on hardware requirement, prefer bigger p
877 */
878 if (clock.p > best_clock->p) {
879 *best_clock = clock;
880 found = true;
881 }
882 }
883 }
884
885 return found;
886}
887
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300888bool intel_crtc_active(struct drm_crtc *crtc)
889{
890 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
891
892 /* Be paranoid as we can arrive here with only partial
893 * state retrieved from the hardware during setup.
894 *
Damien Lespiau241bfc32013-09-25 16:45:37 +0100895 * We can ditch the adjusted_mode.crtc_clock check as soon
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300896 * as Haswell has gained clock readout/fastboot support.
897 *
Dave Airlie66e514c2014-04-03 07:51:54 +1000898 * We can ditch the crtc->primary->fb check as soon as we can
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300899 * properly reconstruct framebuffers.
Matt Roperc3d1f432015-03-09 10:19:23 -0700900 *
901 * FIXME: The intel_crtc->active here should be switched to
902 * crtc->state->active once we have proper CRTC states wired up
903 * for atomic.
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300904 */
Matt Roperc3d1f432015-03-09 10:19:23 -0700905 return intel_crtc->active && crtc->primary->state->fb &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200906 intel_crtc->config->base.adjusted_mode.crtc_clock;
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300907}
908
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200909enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
910 enum pipe pipe)
911{
912 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
913 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
914
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200915 return intel_crtc->config->cpu_transcoder;
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200916}
917
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +0300918static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
919{
920 struct drm_i915_private *dev_priv = dev->dev_private;
921 u32 reg = PIPEDSL(pipe);
922 u32 line1, line2;
923 u32 line_mask;
924
925 if (IS_GEN2(dev))
926 line_mask = DSL_LINEMASK_GEN2;
927 else
928 line_mask = DSL_LINEMASK_GEN3;
929
930 line1 = I915_READ(reg) & line_mask;
931 mdelay(5);
932 line2 = I915_READ(reg) & line_mask;
933
934 return line1 == line2;
935}
936
Keith Packardab7ad7f2010-10-03 00:33:06 -0700937/*
938 * intel_wait_for_pipe_off - wait for pipe to turn off
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300939 * @crtc: crtc whose pipe to wait for
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700940 *
941 * After disabling a pipe, we can't wait for vblank in the usual way,
942 * spinning on the vblank interrupt status bit, since we won't actually
943 * see an interrupt when the pipe is disabled.
944 *
Keith Packardab7ad7f2010-10-03 00:33:06 -0700945 * On Gen4 and above:
946 * wait for the pipe register state bit to turn off
947 *
948 * Otherwise:
949 * wait for the display line value to settle (it usually
950 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +0100951 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700952 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300953static void intel_wait_for_pipe_off(struct intel_crtc *crtc)
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700954{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300955 struct drm_device *dev = crtc->base.dev;
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700956 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200957 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +0300958 enum pipe pipe = crtc->pipe;
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700959
Keith Packardab7ad7f2010-10-03 00:33:06 -0700960 if (INTEL_INFO(dev)->gen >= 4) {
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200961 int reg = PIPECONF(cpu_transcoder);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700962
Keith Packardab7ad7f2010-10-03 00:33:06 -0700963 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100964 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
965 100))
Daniel Vetter284637d2012-07-09 09:51:57 +0200966 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700967 } else {
Keith Packardab7ad7f2010-10-03 00:33:06 -0700968 /* Wait for the display line to settle */
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +0300969 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
Daniel Vetter284637d2012-07-09 09:51:57 +0200970 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700971 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800972}
973
Damien Lespiaub0ea7d32012-12-13 16:09:00 +0000974/*
975 * ibx_digital_port_connected - is the specified port connected?
976 * @dev_priv: i915 private structure
977 * @port: the port to test
978 *
979 * Returns true if @port is connected, false otherwise.
980 */
981bool ibx_digital_port_connected(struct drm_i915_private *dev_priv,
982 struct intel_digital_port *port)
983{
984 u32 bit;
985
Damien Lespiauc36346e2012-12-13 16:09:03 +0000986 if (HAS_PCH_IBX(dev_priv->dev)) {
Robin Schroereba905b2014-05-18 02:24:50 +0200987 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +0000988 case PORT_B:
989 bit = SDE_PORTB_HOTPLUG;
990 break;
991 case PORT_C:
992 bit = SDE_PORTC_HOTPLUG;
993 break;
994 case PORT_D:
995 bit = SDE_PORTD_HOTPLUG;
996 break;
997 default:
998 return true;
999 }
1000 } else {
Robin Schroereba905b2014-05-18 02:24:50 +02001001 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +00001002 case PORT_B:
1003 bit = SDE_PORTB_HOTPLUG_CPT;
1004 break;
1005 case PORT_C:
1006 bit = SDE_PORTC_HOTPLUG_CPT;
1007 break;
1008 case PORT_D:
1009 bit = SDE_PORTD_HOTPLUG_CPT;
1010 break;
1011 default:
1012 return true;
1013 }
Damien Lespiaub0ea7d32012-12-13 16:09:00 +00001014 }
1015
1016 return I915_READ(SDEISR) & bit;
1017}
1018
Jesse Barnesb24e7172011-01-04 15:09:30 -08001019static const char *state_string(bool enabled)
1020{
1021 return enabled ? "on" : "off";
1022}
1023
1024/* Only for pre-ILK configs */
Daniel Vetter55607e82013-06-16 21:42:39 +02001025void assert_pll(struct drm_i915_private *dev_priv,
1026 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001027{
1028 int reg;
1029 u32 val;
1030 bool cur_state;
1031
1032 reg = DPLL(pipe);
1033 val = I915_READ(reg);
1034 cur_state = !!(val & DPLL_VCO_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001035 I915_STATE_WARN(cur_state != state,
Jesse Barnesb24e7172011-01-04 15:09:30 -08001036 "PLL state assertion failure (expected %s, current %s)\n",
1037 state_string(state), state_string(cur_state));
1038}
Jesse Barnesb24e7172011-01-04 15:09:30 -08001039
Jani Nikula23538ef2013-08-27 15:12:22 +03001040/* XXX: the dsi pll is shared between MIPI DSI ports */
1041static void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
1042{
1043 u32 val;
1044 bool cur_state;
1045
1046 mutex_lock(&dev_priv->dpio_lock);
1047 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
1048 mutex_unlock(&dev_priv->dpio_lock);
1049
1050 cur_state = val & DSI_PLL_VCO_EN;
Rob Clarke2c719b2014-12-15 13:56:32 -05001051 I915_STATE_WARN(cur_state != state,
Jani Nikula23538ef2013-08-27 15:12:22 +03001052 "DSI PLL state assertion failure (expected %s, current %s)\n",
1053 state_string(state), state_string(cur_state));
1054}
1055#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1056#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1057
Daniel Vetter55607e82013-06-16 21:42:39 +02001058struct intel_shared_dpll *
Daniel Vettere2b78262013-06-07 23:10:03 +02001059intel_crtc_to_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes040484a2011-01-03 12:14:26 -08001060{
Daniel Vettere2b78262013-06-07 23:10:03 +02001061 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1062
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001063 if (crtc->config->shared_dpll < 0)
Daniel Vettere2b78262013-06-07 23:10:03 +02001064 return NULL;
1065
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001066 return &dev_priv->shared_dplls[crtc->config->shared_dpll];
Daniel Vettere2b78262013-06-07 23:10:03 +02001067}
1068
Jesse Barnesb24e7172011-01-04 15:09:30 -08001069/* For ILK+ */
Daniel Vetter55607e82013-06-16 21:42:39 +02001070void assert_shared_dpll(struct drm_i915_private *dev_priv,
1071 struct intel_shared_dpll *pll,
1072 bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001073{
Jesse Barnes040484a2011-01-03 12:14:26 -08001074 bool cur_state;
Daniel Vetter53589012013-06-05 13:34:16 +02001075 struct intel_dpll_hw_state hw_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001076
Chris Wilson92b27b02012-05-20 18:10:50 +01001077 if (WARN (!pll,
Daniel Vetter46edb022013-06-05 13:34:12 +02001078 "asserting DPLL %s with no DPLL\n", state_string(state)))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001079 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001080
Daniel Vetter53589012013-06-05 13:34:16 +02001081 cur_state = pll->get_hw_state(dev_priv, pll, &hw_state);
Rob Clarke2c719b2014-12-15 13:56:32 -05001082 I915_STATE_WARN(cur_state != state,
Daniel Vetter53589012013-06-05 13:34:16 +02001083 "%s assertion failure (expected %s, current %s)\n",
1084 pll->name, state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001085}
Jesse Barnes040484a2011-01-03 12:14:26 -08001086
1087static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1088 enum pipe pipe, bool state)
1089{
1090 int reg;
1091 u32 val;
1092 bool cur_state;
Paulo Zanoniad80a812012-10-24 16:06:19 -02001093 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1094 pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001095
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001096 if (HAS_DDI(dev_priv->dev)) {
1097 /* DDI does not have a specific FDI_TX register */
Paulo Zanoniad80a812012-10-24 16:06:19 -02001098 reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001099 val = I915_READ(reg);
Paulo Zanoniad80a812012-10-24 16:06:19 -02001100 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001101 } else {
1102 reg = FDI_TX_CTL(pipe);
1103 val = I915_READ(reg);
1104 cur_state = !!(val & FDI_TX_ENABLE);
1105 }
Rob Clarke2c719b2014-12-15 13:56:32 -05001106 I915_STATE_WARN(cur_state != state,
Jesse Barnes040484a2011-01-03 12:14:26 -08001107 "FDI TX state assertion failure (expected %s, current %s)\n",
1108 state_string(state), state_string(cur_state));
1109}
1110#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1111#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1112
1113static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1114 enum pipe pipe, bool state)
1115{
1116 int reg;
1117 u32 val;
1118 bool cur_state;
1119
Paulo Zanonid63fa0d2012-11-20 13:27:35 -02001120 reg = FDI_RX_CTL(pipe);
1121 val = I915_READ(reg);
1122 cur_state = !!(val & FDI_RX_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001123 I915_STATE_WARN(cur_state != state,
Jesse Barnes040484a2011-01-03 12:14:26 -08001124 "FDI RX state assertion failure (expected %s, current %s)\n",
1125 state_string(state), state_string(cur_state));
1126}
1127#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1128#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1129
1130static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1131 enum pipe pipe)
1132{
1133 int reg;
1134 u32 val;
1135
1136 /* ILK FDI PLL is always enabled */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001137 if (INTEL_INFO(dev_priv->dev)->gen == 5)
Jesse Barnes040484a2011-01-03 12:14:26 -08001138 return;
1139
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001140 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001141 if (HAS_DDI(dev_priv->dev))
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001142 return;
1143
Jesse Barnes040484a2011-01-03 12:14:26 -08001144 reg = FDI_TX_CTL(pipe);
1145 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001146 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 -08001147}
1148
Daniel Vetter55607e82013-06-16 21:42:39 +02001149void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1150 enum pipe pipe, bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001151{
1152 int reg;
1153 u32 val;
Daniel Vetter55607e82013-06-16 21:42:39 +02001154 bool cur_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001155
1156 reg = FDI_RX_CTL(pipe);
1157 val = I915_READ(reg);
Daniel Vetter55607e82013-06-16 21:42:39 +02001158 cur_state = !!(val & FDI_RX_PLL_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001159 I915_STATE_WARN(cur_state != state,
Daniel Vetter55607e82013-06-16 21:42:39 +02001160 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1161 state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001162}
1163
Daniel Vetterb680c372014-09-19 18:27:27 +02001164void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1165 enum pipe pipe)
Jesse Barnesea0760c2011-01-04 15:09:32 -08001166{
Jani Nikulabedd4db2014-08-22 15:04:13 +03001167 struct drm_device *dev = dev_priv->dev;
1168 int pp_reg;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001169 u32 val;
1170 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001171 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001172
Jani Nikulabedd4db2014-08-22 15:04:13 +03001173 if (WARN_ON(HAS_DDI(dev)))
1174 return;
1175
1176 if (HAS_PCH_SPLIT(dev)) {
1177 u32 port_sel;
1178
Jesse Barnesea0760c2011-01-04 15:09:32 -08001179 pp_reg = PCH_PP_CONTROL;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001180 port_sel = I915_READ(PCH_PP_ON_DELAYS) & PANEL_PORT_SELECT_MASK;
1181
1182 if (port_sel == PANEL_PORT_SELECT_LVDS &&
1183 I915_READ(PCH_LVDS) & LVDS_PIPEB_SELECT)
1184 panel_pipe = PIPE_B;
1185 /* XXX: else fix for eDP */
1186 } else if (IS_VALLEYVIEW(dev)) {
1187 /* presumably write lock depends on pipe, not port select */
1188 pp_reg = VLV_PIPE_PP_CONTROL(pipe);
1189 panel_pipe = pipe;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001190 } else {
1191 pp_reg = PP_CONTROL;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001192 if (I915_READ(LVDS) & LVDS_PIPEB_SELECT)
1193 panel_pipe = PIPE_B;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001194 }
1195
1196 val = I915_READ(pp_reg);
1197 if (!(val & PANEL_POWER_ON) ||
Jani Nikulaec49ba22014-08-21 15:06:25 +03001198 ((val & PANEL_UNLOCK_MASK) == PANEL_UNLOCK_REGS))
Jesse Barnesea0760c2011-01-04 15:09:32 -08001199 locked = false;
1200
Rob Clarke2c719b2014-12-15 13:56:32 -05001201 I915_STATE_WARN(panel_pipe == pipe && locked,
Jesse Barnesea0760c2011-01-04 15:09:32 -08001202 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001203 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001204}
1205
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001206static void assert_cursor(struct drm_i915_private *dev_priv,
1207 enum pipe pipe, bool state)
1208{
1209 struct drm_device *dev = dev_priv->dev;
1210 bool cur_state;
1211
Paulo Zanonid9d82082014-02-27 16:30:56 -03001212 if (IS_845G(dev) || IS_I865G(dev))
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001213 cur_state = I915_READ(_CURACNTR) & CURSOR_ENABLE;
Paulo Zanonid9d82082014-02-27 16:30:56 -03001214 else
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03001215 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001216
Rob Clarke2c719b2014-12-15 13:56:32 -05001217 I915_STATE_WARN(cur_state != state,
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001218 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
1219 pipe_name(pipe), state_string(state), state_string(cur_state));
1220}
1221#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1222#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1223
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001224void assert_pipe(struct drm_i915_private *dev_priv,
1225 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001226{
1227 int reg;
1228 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001229 bool cur_state;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001230 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1231 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001232
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001233 /* if we need the pipe quirk it must be always on */
1234 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1235 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Daniel Vetter8e636782012-01-22 01:36:48 +01001236 state = true;
1237
Daniel Vetterf458ebb2014-09-30 10:56:39 +02001238 if (!intel_display_power_is_enabled(dev_priv,
Paulo Zanonib97186f2013-05-03 12:15:36 -03001239 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
Paulo Zanoni69310162013-01-29 16:35:19 -02001240 cur_state = false;
1241 } else {
1242 reg = PIPECONF(cpu_transcoder);
1243 val = I915_READ(reg);
1244 cur_state = !!(val & PIPECONF_ENABLE);
1245 }
1246
Rob Clarke2c719b2014-12-15 13:56:32 -05001247 I915_STATE_WARN(cur_state != state,
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001248 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001249 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001250}
1251
Chris Wilson931872f2012-01-16 23:01:13 +00001252static void assert_plane(struct drm_i915_private *dev_priv,
1253 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001254{
1255 int reg;
1256 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001257 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001258
1259 reg = DSPCNTR(plane);
1260 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001261 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001262 I915_STATE_WARN(cur_state != state,
Chris Wilson931872f2012-01-16 23:01:13 +00001263 "plane %c assertion failure (expected %s, current %s)\n",
1264 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001265}
1266
Chris Wilson931872f2012-01-16 23:01:13 +00001267#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1268#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1269
Jesse Barnesb24e7172011-01-04 15:09:30 -08001270static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1271 enum pipe pipe)
1272{
Ville Syrjälä653e1022013-06-04 13:49:05 +03001273 struct drm_device *dev = dev_priv->dev;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001274 int reg, i;
1275 u32 val;
1276 int cur_pipe;
1277
Ville Syrjälä653e1022013-06-04 13:49:05 +03001278 /* Primary planes are fixed to pipes on gen4+ */
1279 if (INTEL_INFO(dev)->gen >= 4) {
Adam Jackson28c057942011-10-07 14:38:42 -04001280 reg = DSPCNTR(pipe);
1281 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001282 I915_STATE_WARN(val & DISPLAY_PLANE_ENABLE,
Adam Jackson28c057942011-10-07 14:38:42 -04001283 "plane %c assertion failure, should be disabled but not\n",
1284 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001285 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001286 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001287
Jesse Barnesb24e7172011-01-04 15:09:30 -08001288 /* Need to check both planes against the pipe */
Damien Lespiau055e3932014-08-18 13:49:10 +01001289 for_each_pipe(dev_priv, i) {
Jesse Barnesb24e7172011-01-04 15:09:30 -08001290 reg = DSPCNTR(i);
1291 val = I915_READ(reg);
1292 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1293 DISPPLANE_SEL_PIPE_SHIFT;
Rob Clarke2c719b2014-12-15 13:56:32 -05001294 I915_STATE_WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001295 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1296 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001297 }
1298}
1299
Jesse Barnes19332d72013-03-28 09:55:38 -07001300static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1301 enum pipe pipe)
1302{
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001303 struct drm_device *dev = dev_priv->dev;
Damien Lespiau1fe47782014-03-03 17:31:47 +00001304 int reg, sprite;
Jesse Barnes19332d72013-03-28 09:55:38 -07001305 u32 val;
1306
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001307 if (INTEL_INFO(dev)->gen >= 9) {
Damien Lespiau3bdcfc02015-02-28 14:54:09 +00001308 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001309 val = I915_READ(PLANE_CTL(pipe, sprite));
Rob Clarke2c719b2014-12-15 13:56:32 -05001310 I915_STATE_WARN(val & PLANE_CTL_ENABLE,
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001311 "plane %d assertion failure, should be off on pipe %c but is still active\n",
1312 sprite, pipe_name(pipe));
1313 }
1314 } else if (IS_VALLEYVIEW(dev)) {
Damien Lespiau3bdcfc02015-02-28 14:54:09 +00001315 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau1fe47782014-03-03 17:31:47 +00001316 reg = SPCNTR(pipe, sprite);
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001317 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001318 I915_STATE_WARN(val & SP_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001319 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +00001320 sprite_name(pipe, sprite), pipe_name(pipe));
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001321 }
1322 } else if (INTEL_INFO(dev)->gen >= 7) {
1323 reg = SPRCTL(pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07001324 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001325 I915_STATE_WARN(val & SPRITE_ENABLE,
Ville Syrjälä06da8da2013-04-17 17:48:51 +03001326 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001327 plane_name(pipe), pipe_name(pipe));
1328 } else if (INTEL_INFO(dev)->gen >= 5) {
1329 reg = DVSCNTR(pipe);
1330 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001331 I915_STATE_WARN(val & DVS_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001332 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1333 plane_name(pipe), pipe_name(pipe));
Jesse Barnes19332d72013-03-28 09:55:38 -07001334 }
1335}
1336
Ville Syrjälä08c71e52014-08-06 14:49:45 +03001337static void assert_vblank_disabled(struct drm_crtc *crtc)
1338{
Rob Clarke2c719b2014-12-15 13:56:32 -05001339 if (I915_STATE_WARN_ON(drm_crtc_vblank_get(crtc) == 0))
Ville Syrjälä08c71e52014-08-06 14:49:45 +03001340 drm_crtc_vblank_put(crtc);
1341}
1342
Paulo Zanoni89eff4b2014-01-08 11:12:28 -02001343static void ibx_assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
Jesse Barnes92f25842011-01-04 15:09:34 -08001344{
1345 u32 val;
1346 bool enabled;
1347
Rob Clarke2c719b2014-12-15 13:56:32 -05001348 I915_STATE_WARN_ON(!(HAS_PCH_IBX(dev_priv->dev) || HAS_PCH_CPT(dev_priv->dev)));
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001349
Jesse Barnes92f25842011-01-04 15:09:34 -08001350 val = I915_READ(PCH_DREF_CONTROL);
1351 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1352 DREF_SUPERSPREAD_SOURCE_MASK));
Rob Clarke2c719b2014-12-15 13:56:32 -05001353 I915_STATE_WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
Jesse Barnes92f25842011-01-04 15:09:34 -08001354}
1355
Daniel Vetterab9412b2013-05-03 11:49:46 +02001356static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1357 enum pipe pipe)
Jesse Barnes92f25842011-01-04 15:09:34 -08001358{
1359 int reg;
1360 u32 val;
1361 bool enabled;
1362
Daniel Vetterab9412b2013-05-03 11:49:46 +02001363 reg = PCH_TRANSCONF(pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001364 val = I915_READ(reg);
1365 enabled = !!(val & TRANS_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001366 I915_STATE_WARN(enabled,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001367 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1368 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001369}
1370
Keith Packard4e634382011-08-06 10:39:45 -07001371static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1372 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001373{
1374 if ((val & DP_PORT_EN) == 0)
1375 return false;
1376
1377 if (HAS_PCH_CPT(dev_priv->dev)) {
1378 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1379 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1380 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1381 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001382 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1383 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1384 return false;
Keith Packardf0575e92011-07-25 22:12:43 -07001385 } else {
1386 if ((val & DP_PIPE_MASK) != (pipe << 30))
1387 return false;
1388 }
1389 return true;
1390}
1391
Keith Packard1519b992011-08-06 10:35:34 -07001392static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1393 enum pipe pipe, u32 val)
1394{
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001395 if ((val & SDVO_ENABLE) == 0)
Keith Packard1519b992011-08-06 10:35:34 -07001396 return false;
1397
1398 if (HAS_PCH_CPT(dev_priv->dev)) {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001399 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001400 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001401 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1402 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1403 return false;
Keith Packard1519b992011-08-06 10:35:34 -07001404 } else {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001405 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001406 return false;
1407 }
1408 return true;
1409}
1410
1411static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1412 enum pipe pipe, u32 val)
1413{
1414 if ((val & LVDS_PORT_EN) == 0)
1415 return false;
1416
1417 if (HAS_PCH_CPT(dev_priv->dev)) {
1418 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1419 return false;
1420 } else {
1421 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1422 return false;
1423 }
1424 return true;
1425}
1426
1427static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1428 enum pipe pipe, u32 val)
1429{
1430 if ((val & ADPA_DAC_ENABLE) == 0)
1431 return false;
1432 if (HAS_PCH_CPT(dev_priv->dev)) {
1433 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1434 return false;
1435 } else {
1436 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1437 return false;
1438 }
1439 return true;
1440}
1441
Jesse Barnes291906f2011-02-02 12:28:03 -08001442static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001443 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001444{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001445 u32 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001446 I915_STATE_WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001447 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001448 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001449
Rob Clarke2c719b2014-12-15 13:56:32 -05001450 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001451 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001452 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001453}
1454
1455static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1456 enum pipe pipe, int reg)
1457{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001458 u32 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001459 I915_STATE_WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001460 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001461 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001462
Rob Clarke2c719b2014-12-15 13:56:32 -05001463 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001464 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001465 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001466}
1467
1468static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1469 enum pipe pipe)
1470{
1471 int reg;
1472 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001473
Keith Packardf0575e92011-07-25 22:12:43 -07001474 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1475 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1476 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001477
1478 reg = PCH_ADPA;
1479 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001480 I915_STATE_WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001481 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001482 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001483
1484 reg = PCH_LVDS;
1485 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001486 I915_STATE_WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001487 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001488 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001489
Paulo Zanonie2debe92013-02-18 19:00:27 -03001490 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1491 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1492 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
Jesse Barnes291906f2011-02-02 12:28:03 -08001493}
1494
Jesse Barnes40e9cf62013-10-03 11:35:46 -07001495static void intel_init_dpio(struct drm_device *dev)
1496{
1497 struct drm_i915_private *dev_priv = dev->dev_private;
1498
1499 if (!IS_VALLEYVIEW(dev))
1500 return;
1501
Chon Ming Leea09cadd2014-04-09 13:28:14 +03001502 /*
1503 * IOSF_PORT_DPIO is used for VLV x2 PHY (DP/HDMI B and C),
1504 * CHV x1 PHY (DP/HDMI D)
1505 * IOSF_PORT_DPIO_2 is used for CHV x2 PHY (DP/HDMI B and C)
1506 */
1507 if (IS_CHERRYVIEW(dev)) {
1508 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO_2;
1509 DPIO_PHY_IOSF_PORT(DPIO_PHY1) = IOSF_PORT_DPIO;
1510 } else {
1511 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO;
1512 }
Jesse Barnes5382f5f352013-12-16 16:34:24 -08001513}
1514
Ville Syrjäläd288f652014-10-28 13:20:22 +02001515static void vlv_enable_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001516 const struct intel_crtc_state *pipe_config)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001517{
Daniel Vetter426115c2013-07-11 22:13:42 +02001518 struct drm_device *dev = crtc->base.dev;
1519 struct drm_i915_private *dev_priv = dev->dev_private;
1520 int reg = DPLL(crtc->pipe);
Ville Syrjäläd288f652014-10-28 13:20:22 +02001521 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001522
Daniel Vetter426115c2013-07-11 22:13:42 +02001523 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001524
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001525 /* No really, not for ILK+ */
Daniel Vetter87442f72013-06-06 00:52:17 +02001526 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev));
1527
1528 /* PLL is protected by panel, make sure we can write it */
Jani Nikula6a9e7362014-08-22 15:06:35 +03001529 if (IS_MOBILE(dev_priv->dev))
Daniel Vetter426115c2013-07-11 22:13:42 +02001530 assert_panel_unlocked(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001531
Daniel Vetter426115c2013-07-11 22:13:42 +02001532 I915_WRITE(reg, dpll);
1533 POSTING_READ(reg);
1534 udelay(150);
1535
1536 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1537 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1538
Ville Syrjäläd288f652014-10-28 13:20:22 +02001539 I915_WRITE(DPLL_MD(crtc->pipe), pipe_config->dpll_hw_state.dpll_md);
Daniel Vetter426115c2013-07-11 22:13:42 +02001540 POSTING_READ(DPLL_MD(crtc->pipe));
Daniel Vetter87442f72013-06-06 00:52:17 +02001541
1542 /* We do this three times for luck */
Daniel Vetter426115c2013-07-11 22:13:42 +02001543 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001544 POSTING_READ(reg);
1545 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001546 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001547 POSTING_READ(reg);
1548 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001549 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001550 POSTING_READ(reg);
1551 udelay(150); /* wait for warmup */
1552}
1553
Ville Syrjäläd288f652014-10-28 13:20:22 +02001554static void chv_enable_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001555 const struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001556{
1557 struct drm_device *dev = crtc->base.dev;
1558 struct drm_i915_private *dev_priv = dev->dev_private;
1559 int pipe = crtc->pipe;
1560 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001561 u32 tmp;
1562
1563 assert_pipe_disabled(dev_priv, crtc->pipe);
1564
1565 BUG_ON(!IS_CHERRYVIEW(dev_priv->dev));
1566
1567 mutex_lock(&dev_priv->dpio_lock);
1568
1569 /* Enable back the 10bit clock to display controller */
1570 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1571 tmp |= DPIO_DCLKP_EN;
1572 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1573
1574 /*
1575 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1576 */
1577 udelay(1);
1578
1579 /* Enable PLL */
Ville Syrjäläd288f652014-10-28 13:20:22 +02001580 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001581
1582 /* Check PLL is locked */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001583 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001584 DRM_ERROR("PLL %d failed to lock\n", pipe);
1585
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001586 /* not sure when this should be written */
Ville Syrjäläd288f652014-10-28 13:20:22 +02001587 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001588 POSTING_READ(DPLL_MD(pipe));
1589
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001590 mutex_unlock(&dev_priv->dpio_lock);
1591}
1592
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001593static int intel_num_dvo_pipes(struct drm_device *dev)
1594{
1595 struct intel_crtc *crtc;
1596 int count = 0;
1597
1598 for_each_intel_crtc(dev, crtc)
1599 count += crtc->active &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001600 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO);
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001601
1602 return count;
1603}
1604
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001605static void i9xx_enable_pll(struct intel_crtc *crtc)
Daniel Vetter87442f72013-06-06 00:52:17 +02001606{
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001607 struct drm_device *dev = crtc->base.dev;
1608 struct drm_i915_private *dev_priv = dev->dev_private;
1609 int reg = DPLL(crtc->pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001610 u32 dpll = crtc->config->dpll_hw_state.dpll;
Daniel Vetter87442f72013-06-06 00:52:17 +02001611
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001612 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001613
1614 /* No really, not for ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001615 BUG_ON(INTEL_INFO(dev)->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001616
1617 /* PLL is protected by panel, make sure we can write it */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001618 if (IS_MOBILE(dev) && !IS_I830(dev))
1619 assert_panel_unlocked(dev_priv, crtc->pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001620
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001621 /* Enable DVO 2x clock on both PLLs if necessary */
1622 if (IS_I830(dev) && intel_num_dvo_pipes(dev) > 0) {
1623 /*
1624 * It appears to be important that we don't enable this
1625 * for the current pipe before otherwise configuring the
1626 * PLL. No idea how this should be handled if multiple
1627 * DVO outputs are enabled simultaneosly.
1628 */
1629 dpll |= DPLL_DVO_2X_MODE;
1630 I915_WRITE(DPLL(!crtc->pipe),
1631 I915_READ(DPLL(!crtc->pipe)) | DPLL_DVO_2X_MODE);
1632 }
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001633
1634 /* Wait for the clocks to stabilize. */
1635 POSTING_READ(reg);
1636 udelay(150);
1637
1638 if (INTEL_INFO(dev)->gen >= 4) {
1639 I915_WRITE(DPLL_MD(crtc->pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001640 crtc->config->dpll_hw_state.dpll_md);
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001641 } else {
1642 /* The pixel multiplier can only be updated once the
1643 * DPLL is enabled and the clocks are stable.
1644 *
1645 * So write it again.
1646 */
1647 I915_WRITE(reg, dpll);
1648 }
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001649
1650 /* We do this three times for luck */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001651 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001652 POSTING_READ(reg);
1653 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001654 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001655 POSTING_READ(reg);
1656 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001657 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001658 POSTING_READ(reg);
1659 udelay(150); /* wait for warmup */
1660}
1661
1662/**
Daniel Vetter50b44a42013-06-05 13:34:33 +02001663 * i9xx_disable_pll - disable a PLL
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001664 * @dev_priv: i915 private structure
1665 * @pipe: pipe PLL to disable
1666 *
1667 * Disable the PLL for @pipe, making sure the pipe is off first.
1668 *
1669 * Note! This is for pre-ILK only.
1670 */
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001671static void i9xx_disable_pll(struct intel_crtc *crtc)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001672{
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001673 struct drm_device *dev = crtc->base.dev;
1674 struct drm_i915_private *dev_priv = dev->dev_private;
1675 enum pipe pipe = crtc->pipe;
1676
1677 /* Disable DVO 2x clock on both PLLs if necessary */
1678 if (IS_I830(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001679 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO) &&
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001680 intel_num_dvo_pipes(dev) == 1) {
1681 I915_WRITE(DPLL(PIPE_B),
1682 I915_READ(DPLL(PIPE_B)) & ~DPLL_DVO_2X_MODE);
1683 I915_WRITE(DPLL(PIPE_A),
1684 I915_READ(DPLL(PIPE_A)) & ~DPLL_DVO_2X_MODE);
1685 }
1686
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001687 /* Don't disable pipe or pipe PLLs if needed */
1688 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1689 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001690 return;
1691
1692 /* Make sure the pipe isn't still relying on us */
1693 assert_pipe_disabled(dev_priv, pipe);
1694
Daniel Vetter50b44a42013-06-05 13:34:33 +02001695 I915_WRITE(DPLL(pipe), 0);
1696 POSTING_READ(DPLL(pipe));
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001697}
1698
Jesse Barnesf6071162013-10-01 10:41:38 -07001699static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1700{
1701 u32 val = 0;
1702
1703 /* Make sure the pipe isn't still relying on us */
1704 assert_pipe_disabled(dev_priv, pipe);
1705
Imre Deake5cbfbf2014-01-09 17:08:16 +02001706 /*
1707 * Leave integrated clock source and reference clock enabled for pipe B.
1708 * The latter is needed for VGA hotplug / manual detection.
1709 */
Jesse Barnesf6071162013-10-01 10:41:38 -07001710 if (pipe == PIPE_B)
Imre Deake5cbfbf2014-01-09 17:08:16 +02001711 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REFA_CLK_ENABLE_VLV;
Jesse Barnesf6071162013-10-01 10:41:38 -07001712 I915_WRITE(DPLL(pipe), val);
1713 POSTING_READ(DPLL(pipe));
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001714
1715}
1716
1717static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1718{
Ville Syrjäläd7520482014-04-09 13:28:59 +03001719 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001720 u32 val;
1721
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001722 /* Make sure the pipe isn't still relying on us */
1723 assert_pipe_disabled(dev_priv, pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001724
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001725 /* Set PLL en = 0 */
Ville Syrjäläd17ec4c2014-06-28 02:03:59 +03001726 val = DPLL_SSC_REF_CLOCK_CHV | DPLL_REFA_CLK_ENABLE_VLV;
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001727 if (pipe != PIPE_A)
1728 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1729 I915_WRITE(DPLL(pipe), val);
1730 POSTING_READ(DPLL(pipe));
Ville Syrjäläd7520482014-04-09 13:28:59 +03001731
1732 mutex_lock(&dev_priv->dpio_lock);
1733
1734 /* Disable 10bit clock to display controller */
1735 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1736 val &= ~DPIO_DCLKP_EN;
1737 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1738
Ville Syrjälä61407f62014-05-27 16:32:55 +03001739 /* disable left/right clock distribution */
1740 if (pipe != PIPE_B) {
1741 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1742 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1743 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1744 } else {
1745 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1746 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1747 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1748 }
1749
Ville Syrjäläd7520482014-04-09 13:28:59 +03001750 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesf6071162013-10-01 10:41:38 -07001751}
1752
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001753void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
1754 struct intel_digital_port *dport)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001755{
1756 u32 port_mask;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001757 int dpll_reg;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001758
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001759 switch (dport->port) {
1760 case PORT_B:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001761 port_mask = DPLL_PORTB_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001762 dpll_reg = DPLL(0);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001763 break;
1764 case PORT_C:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001765 port_mask = DPLL_PORTC_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001766 dpll_reg = DPLL(0);
1767 break;
1768 case PORT_D:
1769 port_mask = DPLL_PORTD_READY_MASK;
1770 dpll_reg = DPIO_PHY_STATUS;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001771 break;
1772 default:
1773 BUG();
1774 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07001775
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001776 if (wait_for((I915_READ(dpll_reg) & port_mask) == 0, 1000))
Jesse Barnes89b667f2013-04-18 14:51:36 -07001777 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001778 port_name(dport->port), I915_READ(dpll_reg));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001779}
1780
Daniel Vetterb14b1052014-04-24 23:55:13 +02001781static void intel_prepare_shared_dpll(struct intel_crtc *crtc)
1782{
1783 struct drm_device *dev = crtc->base.dev;
1784 struct drm_i915_private *dev_priv = dev->dev_private;
1785 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
1786
Chris Wilsonbe19f0f2014-05-28 16:16:42 +01001787 if (WARN_ON(pll == NULL))
1788 return;
1789
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001790 WARN_ON(!pll->config.crtc_mask);
Daniel Vetterb14b1052014-04-24 23:55:13 +02001791 if (pll->active == 0) {
1792 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
1793 WARN_ON(pll->on);
1794 assert_shared_dpll_disabled(dev_priv, pll);
1795
1796 pll->mode_set(dev_priv, pll);
1797 }
1798}
1799
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001800/**
Daniel Vetter85b38942014-04-24 23:55:14 +02001801 * intel_enable_shared_dpll - enable PCH PLL
Jesse Barnes92f25842011-01-04 15:09:34 -08001802 * @dev_priv: i915 private structure
1803 * @pipe: pipe PLL to enable
1804 *
1805 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1806 * drives the transcoder clock.
1807 */
Daniel Vetter85b38942014-04-24 23:55:14 +02001808static void intel_enable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001809{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001810 struct drm_device *dev = crtc->base.dev;
1811 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001812 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes92f25842011-01-04 15:09:34 -08001813
Daniel Vetter87a875b2013-06-05 13:34:19 +02001814 if (WARN_ON(pll == NULL))
Chris Wilson48da64a2012-05-13 20:16:12 +01001815 return;
1816
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001817 if (WARN_ON(pll->config.crtc_mask == 0))
Chris Wilson48da64a2012-05-13 20:16:12 +01001818 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001819
Damien Lespiau74dd6922014-07-29 18:06:17 +01001820 DRM_DEBUG_KMS("enable %s (active %d, on? %d) for crtc %d\n",
Daniel Vetter46edb022013-06-05 13:34:12 +02001821 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001822 crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001823
Daniel Vettercdbd2312013-06-05 13:34:03 +02001824 if (pll->active++) {
1825 WARN_ON(!pll->on);
Daniel Vettere9d69442013-06-05 13:34:15 +02001826 assert_shared_dpll_enabled(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001827 return;
1828 }
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001829 WARN_ON(pll->on);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001830
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001831 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
1832
Daniel Vetter46edb022013-06-05 13:34:12 +02001833 DRM_DEBUG_KMS("enabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001834 pll->enable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001835 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001836}
1837
Damien Lespiauf6daaec2014-08-09 23:00:56 +01001838static void intel_disable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001839{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001840 struct drm_device *dev = crtc->base.dev;
1841 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001842 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001843
Jesse Barnes92f25842011-01-04 15:09:34 -08001844 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001845 BUG_ON(INTEL_INFO(dev)->gen < 5);
Daniel Vetter87a875b2013-06-05 13:34:19 +02001846 if (WARN_ON(pll == NULL))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001847 return;
1848
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001849 if (WARN_ON(pll->config.crtc_mask == 0))
Chris Wilson48da64a2012-05-13 20:16:12 +01001850 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001851
Daniel Vetter46edb022013-06-05 13:34:12 +02001852 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1853 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001854 crtc->base.base.id);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001855
Chris Wilson48da64a2012-05-13 20:16:12 +01001856 if (WARN_ON(pll->active == 0)) {
Daniel Vettere9d69442013-06-05 13:34:15 +02001857 assert_shared_dpll_disabled(dev_priv, pll);
Chris Wilson48da64a2012-05-13 20:16:12 +01001858 return;
1859 }
1860
Daniel Vettere9d69442013-06-05 13:34:15 +02001861 assert_shared_dpll_enabled(dev_priv, pll);
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001862 WARN_ON(!pll->on);
Daniel Vettercdbd2312013-06-05 13:34:03 +02001863 if (--pll->active)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001864 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001865
Daniel Vetter46edb022013-06-05 13:34:12 +02001866 DRM_DEBUG_KMS("disabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001867 pll->disable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001868 pll->on = false;
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001869
1870 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
Jesse Barnes92f25842011-01-04 15:09:34 -08001871}
1872
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001873static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1874 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001875{
Daniel Vetter23670b322012-11-01 09:15:30 +01001876 struct drm_device *dev = dev_priv->dev;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001877 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vettere2b78262013-06-07 23:10:03 +02001878 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter23670b322012-11-01 09:15:30 +01001879 uint32_t reg, val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001880
1881 /* PCH only available on ILK+ */
Ville Syrjälä55522f32014-09-03 14:09:53 +03001882 BUG_ON(!HAS_PCH_SPLIT(dev));
Jesse Barnes040484a2011-01-03 12:14:26 -08001883
1884 /* Make sure PCH DPLL is enabled */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02001885 assert_shared_dpll_enabled(dev_priv,
Daniel Vettere9d69442013-06-05 13:34:15 +02001886 intel_crtc_to_shared_dpll(intel_crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001887
1888 /* FDI must be feeding us bits for PCH ports */
1889 assert_fdi_tx_enabled(dev_priv, pipe);
1890 assert_fdi_rx_enabled(dev_priv, pipe);
1891
Daniel Vetter23670b322012-11-01 09:15:30 +01001892 if (HAS_PCH_CPT(dev)) {
1893 /* Workaround: Set the timing override bit before enabling the
1894 * pch transcoder. */
1895 reg = TRANS_CHICKEN2(pipe);
1896 val = I915_READ(reg);
1897 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1898 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001899 }
Daniel Vetter23670b322012-11-01 09:15:30 +01001900
Daniel Vetterab9412b2013-05-03 11:49:46 +02001901 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001902 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001903 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001904
1905 if (HAS_PCH_IBX(dev_priv->dev)) {
1906 /*
1907 * make the BPC in transcoder be consistent with
1908 * that in pipeconf reg.
1909 */
Daniel Vetterdfd07d72012-12-17 11:21:38 +01001910 val &= ~PIPECONF_BPC_MASK;
1911 val |= pipeconf_val & PIPECONF_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001912 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001913
1914 val &= ~TRANS_INTERLACE_MASK;
1915 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001916 if (HAS_PCH_IBX(dev_priv->dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001917 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001918 val |= TRANS_LEGACY_INTERLACED_ILK;
1919 else
1920 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001921 else
1922 val |= TRANS_PROGRESSIVE;
1923
Jesse Barnes040484a2011-01-03 12:14:26 -08001924 I915_WRITE(reg, val | TRANS_ENABLE);
1925 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001926 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
Jesse Barnes040484a2011-01-03 12:14:26 -08001927}
1928
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001929static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02001930 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08001931{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001932 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001933
1934 /* PCH only available on ILK+ */
Ville Syrjälä55522f32014-09-03 14:09:53 +03001935 BUG_ON(!HAS_PCH_SPLIT(dev_priv->dev));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001936
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001937 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01001938 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02001939 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001940
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001941 /* Workaround: set timing override bit. */
1942 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001943 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001944 I915_WRITE(_TRANSA_CHICKEN2, val);
1945
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02001946 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02001947 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001948
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02001949 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1950 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02001951 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001952 else
1953 val |= TRANS_PROGRESSIVE;
1954
Daniel Vetterab9412b2013-05-03 11:49:46 +02001955 I915_WRITE(LPT_TRANSCONF, val);
1956 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
Paulo Zanoni937bb612012-10-31 18:12:47 -02001957 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001958}
1959
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001960static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1961 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001962{
Daniel Vetter23670b322012-11-01 09:15:30 +01001963 struct drm_device *dev = dev_priv->dev;
1964 uint32_t reg, val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001965
1966 /* FDI relies on the transcoder */
1967 assert_fdi_tx_disabled(dev_priv, pipe);
1968 assert_fdi_rx_disabled(dev_priv, pipe);
1969
Jesse Barnes291906f2011-02-02 12:28:03 -08001970 /* Ports must be off as well */
1971 assert_pch_ports_disabled(dev_priv, pipe);
1972
Daniel Vetterab9412b2013-05-03 11:49:46 +02001973 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001974 val = I915_READ(reg);
1975 val &= ~TRANS_ENABLE;
1976 I915_WRITE(reg, val);
1977 /* wait for PCH transcoder off, transcoder state */
1978 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001979 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
Daniel Vetter23670b322012-11-01 09:15:30 +01001980
1981 if (!HAS_PCH_IBX(dev)) {
1982 /* Workaround: Clear the timing override chicken bit again. */
1983 reg = TRANS_CHICKEN2(pipe);
1984 val = I915_READ(reg);
1985 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1986 I915_WRITE(reg, val);
1987 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001988}
1989
Paulo Zanoniab4d9662012-10-31 18:12:55 -02001990static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001991{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001992 u32 val;
1993
Daniel Vetterab9412b2013-05-03 11:49:46 +02001994 val = I915_READ(LPT_TRANSCONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001995 val &= ~TRANS_ENABLE;
Daniel Vetterab9412b2013-05-03 11:49:46 +02001996 I915_WRITE(LPT_TRANSCONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001997 /* wait for PCH transcoder off, transcoder state */
Daniel Vetterab9412b2013-05-03 11:49:46 +02001998 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02001999 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002000
2001 /* Workaround: clear timing override bit. */
2002 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01002003 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002004 I915_WRITE(_TRANSA_CHICKEN2, val);
Jesse Barnes92f25842011-01-04 15:09:34 -08002005}
2006
2007/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002008 * intel_enable_pipe - enable a pipe, asserting requirements
Paulo Zanoni03722642014-01-17 13:51:09 -02002009 * @crtc: crtc responsible for the pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08002010 *
Paulo Zanoni03722642014-01-17 13:51:09 -02002011 * Enable @crtc's pipe, making sure that various hardware specific requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08002012 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002013 */
Paulo Zanonie1fdc472014-01-17 13:51:12 -02002014static void intel_enable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002015{
Paulo Zanoni03722642014-01-17 13:51:09 -02002016 struct drm_device *dev = crtc->base.dev;
2017 struct drm_i915_private *dev_priv = dev->dev_private;
2018 enum pipe pipe = crtc->pipe;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002019 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
2020 pipe);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002021 enum pipe pch_transcoder;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002022 int reg;
2023 u32 val;
2024
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002025 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002026 assert_cursor_disabled(dev_priv, pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002027 assert_sprites_disabled(dev_priv, pipe);
2028
Paulo Zanoni681e5812012-12-06 11:12:38 -02002029 if (HAS_PCH_LPT(dev_priv->dev))
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002030 pch_transcoder = TRANSCODER_A;
2031 else
2032 pch_transcoder = pipe;
2033
Jesse Barnesb24e7172011-01-04 15:09:30 -08002034 /*
2035 * A pipe without a PLL won't actually be able to drive bits from
2036 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
2037 * need the check.
2038 */
2039 if (!HAS_PCH_SPLIT(dev_priv->dev))
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03002040 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
Jani Nikula23538ef2013-08-27 15:12:22 +03002041 assert_dsi_pll_enabled(dev_priv);
2042 else
2043 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002044 else {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002045 if (crtc->config->has_pch_encoder) {
Jesse Barnes040484a2011-01-03 12:14:26 -08002046 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002047 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002048 assert_fdi_tx_pll_enabled(dev_priv,
2049 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08002050 }
2051 /* FIXME: assert CPU port conditions for SNB+ */
2052 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08002053
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002054 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002055 val = I915_READ(reg);
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002056 if (val & PIPECONF_ENABLE) {
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002057 WARN_ON(!((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
2058 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)));
Chris Wilson00d70b12011-03-17 07:18:29 +00002059 return;
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002060 }
Chris Wilson00d70b12011-03-17 07:18:29 +00002061
2062 I915_WRITE(reg, val | PIPECONF_ENABLE);
Paulo Zanoni851855d2013-12-19 19:12:29 -02002063 POSTING_READ(reg);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002064}
2065
2066/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002067 * intel_disable_pipe - disable a pipe, asserting requirements
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002068 * @crtc: crtc whose pipes is to be disabled
Jesse Barnesb24e7172011-01-04 15:09:30 -08002069 *
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002070 * Disable the pipe of @crtc, making sure that various hardware
2071 * specific requirements are met, if applicable, e.g. plane
2072 * disabled, panel fitter off, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002073 *
2074 * Will wait until the pipe has shut down before returning.
2075 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002076static void intel_disable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002077{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002078 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002079 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002080 enum pipe pipe = crtc->pipe;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002081 int reg;
2082 u32 val;
2083
2084 /*
2085 * Make sure planes won't keep trying to pump pixels to us,
2086 * or we might hang the display.
2087 */
2088 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002089 assert_cursor_disabled(dev_priv, pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07002090 assert_sprites_disabled(dev_priv, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002091
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002092 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002093 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00002094 if ((val & PIPECONF_ENABLE) == 0)
2095 return;
2096
Ville Syrjälä67adc642014-08-15 01:21:57 +03002097 /*
2098 * Double wide has implications for planes
2099 * so best keep it disabled when not needed.
2100 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002101 if (crtc->config->double_wide)
Ville Syrjälä67adc642014-08-15 01:21:57 +03002102 val &= ~PIPECONF_DOUBLE_WIDE;
2103
2104 /* Don't disable pipe or pipe PLLs if needed */
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002105 if (!(pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) &&
2106 !(pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Ville Syrjälä67adc642014-08-15 01:21:57 +03002107 val &= ~PIPECONF_ENABLE;
2108
2109 I915_WRITE(reg, val);
2110 if ((val & PIPECONF_ENABLE) == 0)
2111 intel_wait_for_pipe_off(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002112}
2113
Keith Packardd74362c2011-07-28 14:47:14 -07002114/*
2115 * Plane regs are double buffered, going from enabled->disabled needs a
2116 * trigger in order to latch. The display address reg provides this.
2117 */
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002118void intel_flush_primary_plane(struct drm_i915_private *dev_priv,
2119 enum plane plane)
Keith Packardd74362c2011-07-28 14:47:14 -07002120{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00002121 struct drm_device *dev = dev_priv->dev;
2122 u32 reg = INTEL_INFO(dev)->gen >= 4 ? DSPSURF(plane) : DSPADDR(plane);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002123
2124 I915_WRITE(reg, I915_READ(reg));
2125 POSTING_READ(reg);
Keith Packardd74362c2011-07-28 14:47:14 -07002126}
2127
Jesse Barnesb24e7172011-01-04 15:09:30 -08002128/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002129 * intel_enable_primary_hw_plane - enable the primary plane on a given pipe
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002130 * @plane: plane to be enabled
2131 * @crtc: crtc for the plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002132 *
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002133 * Enable @plane on @crtc, making sure that the pipe is running first.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002134 */
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002135static void intel_enable_primary_hw_plane(struct drm_plane *plane,
2136 struct drm_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002137{
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002138 struct drm_device *dev = plane->dev;
2139 struct drm_i915_private *dev_priv = dev->dev_private;
2140 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002141
2142 /* If the pipe isn't enabled, we can't pump pixels and may hang */
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002143 assert_pipe_enabled(dev_priv, intel_crtc->pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002144
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002145 if (intel_crtc->primary_enabled)
2146 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002147
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002148 intel_crtc->primary_enabled = true;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002149
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002150 dev_priv->display.update_primary_plane(crtc, plane->fb,
2151 crtc->x, crtc->y);
Ville Syrjälä33c3b0d2014-06-24 13:59:28 +03002152
2153 /*
2154 * BDW signals flip done immediately if the plane
2155 * is disabled, even if the plane enable is already
2156 * armed to occur at the next vblank :(
2157 */
2158 if (IS_BROADWELL(dev))
2159 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002160}
2161
Jesse Barnesb24e7172011-01-04 15:09:30 -08002162/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002163 * intel_disable_primary_hw_plane - disable the primary hardware plane
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002164 * @plane: plane to be disabled
2165 * @crtc: crtc for the plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002166 *
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002167 * Disable @plane on @crtc, making sure that the pipe is running first.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002168 */
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002169static void intel_disable_primary_hw_plane(struct drm_plane *plane,
2170 struct drm_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002171{
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002172 struct drm_device *dev = plane->dev;
2173 struct drm_i915_private *dev_priv = dev->dev_private;
2174 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2175
Matt Roper32b7eee2014-12-24 07:59:06 -08002176 if (WARN_ON(!intel_crtc->active))
2177 return;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002178
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002179 if (!intel_crtc->primary_enabled)
2180 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002181
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002182 intel_crtc->primary_enabled = false;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002183
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002184 dev_priv->display.update_primary_plane(crtc, plane->fb,
2185 crtc->x, crtc->y);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002186}
2187
Chris Wilson693db182013-03-05 14:52:39 +00002188static bool need_vtd_wa(struct drm_device *dev)
2189{
2190#ifdef CONFIG_INTEL_IOMMU
2191 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2192 return true;
2193#endif
2194 return false;
2195}
2196
Damien Lespiauec2c9812015-01-20 12:51:45 +00002197int
Daniel Vetter091df6c2015-02-10 17:16:10 +00002198intel_fb_align_height(struct drm_device *dev, int height,
2199 uint32_t pixel_format,
2200 uint64_t fb_format_modifier)
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002201{
2202 int tile_height;
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002203 uint32_t bits_per_pixel;
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002204
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002205 switch (fb_format_modifier) {
2206 case DRM_FORMAT_MOD_NONE:
2207 tile_height = 1;
2208 break;
2209 case I915_FORMAT_MOD_X_TILED:
2210 tile_height = IS_GEN2(dev) ? 16 : 8;
2211 break;
2212 case I915_FORMAT_MOD_Y_TILED:
2213 tile_height = 32;
2214 break;
2215 case I915_FORMAT_MOD_Yf_TILED:
2216 bits_per_pixel = drm_format_plane_cpp(pixel_format, 0) * 8;
2217 switch (bits_per_pixel) {
2218 default:
2219 case 8:
2220 tile_height = 64;
2221 break;
2222 case 16:
2223 case 32:
2224 tile_height = 32;
2225 break;
2226 case 64:
2227 tile_height = 16;
2228 break;
2229 case 128:
2230 WARN_ONCE(1,
2231 "128-bit pixels are not supported for display!");
2232 tile_height = 16;
2233 break;
2234 }
2235 break;
2236 default:
2237 MISSING_CASE(fb_format_modifier);
2238 tile_height = 1;
2239 break;
2240 }
Daniel Vetter091df6c2015-02-10 17:16:10 +00002241
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002242 return ALIGN(height, tile_height);
2243}
2244
Chris Wilson127bd2a2010-07-23 23:32:05 +01002245int
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002246intel_pin_and_fence_fb_obj(struct drm_plane *plane,
2247 struct drm_framebuffer *fb,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002248 struct intel_engine_cs *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002249{
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002250 struct drm_device *dev = fb->dev;
Chris Wilsonce453d82011-02-21 14:43:56 +00002251 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002252 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002253 u32 alignment;
2254 int ret;
2255
Matt Roperebcdd392014-07-09 16:22:11 -07002256 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
2257
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002258 switch (fb->modifier[0]) {
2259 case DRM_FORMAT_MOD_NONE:
Damien Lespiau1fada4c2013-07-03 21:06:02 +01002260 if (INTEL_INFO(dev)->gen >= 9)
2261 alignment = 256 * 1024;
2262 else if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
Chris Wilson534843d2010-07-05 18:01:46 +01002263 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002264 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01002265 alignment = 4 * 1024;
2266 else
2267 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002268 break;
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002269 case I915_FORMAT_MOD_X_TILED:
Damien Lespiau1fada4c2013-07-03 21:06:02 +01002270 if (INTEL_INFO(dev)->gen >= 9)
2271 alignment = 256 * 1024;
2272 else {
2273 /* pin() will align the object as required by fence */
2274 alignment = 0;
2275 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002276 break;
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002277 case I915_FORMAT_MOD_Y_TILED:
Damien Lespiau1327b9a2015-02-27 11:15:20 +00002278 case I915_FORMAT_MOD_Yf_TILED:
2279 if (WARN_ONCE(INTEL_INFO(dev)->gen < 9,
2280 "Y tiling bo slipped through, driver bug!\n"))
2281 return -EINVAL;
2282 alignment = 1 * 1024 * 1024;
2283 break;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002284 default:
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002285 MISSING_CASE(fb->modifier[0]);
2286 return -EINVAL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002287 }
2288
Chris Wilson693db182013-03-05 14:52:39 +00002289 /* Note that the w/a also requires 64 PTE of padding following the
2290 * bo. We currently fill all unused PTE with the shadow page and so
2291 * we should always have valid PTE following the scanout preventing
2292 * the VT-d warning.
2293 */
2294 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2295 alignment = 256 * 1024;
2296
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002297 /*
2298 * Global gtt pte registers are special registers which actually forward
2299 * writes to a chunk of system memory. Which means that there is no risk
2300 * that the register values disappear as soon as we call
2301 * intel_runtime_pm_put(), so it is correct to wrap only the
2302 * pin/unpin/fence and not more.
2303 */
2304 intel_runtime_pm_get(dev_priv);
2305
Chris Wilsonce453d82011-02-21 14:43:56 +00002306 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002307 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01002308 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00002309 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002310
2311 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2312 * fence, whereas 965+ only requires a fence if using
2313 * framebuffer compression. For simplicity, we always install
2314 * a fence as the cost is not that onerous.
2315 */
Chris Wilson06d98132012-04-17 15:31:24 +01002316 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002317 if (ret)
2318 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002319
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002320 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002321
Chris Wilsonce453d82011-02-21 14:43:56 +00002322 dev_priv->mm.interruptible = true;
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002323 intel_runtime_pm_put(dev_priv);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002324 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01002325
2326err_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01002327 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00002328err_interruptible:
2329 dev_priv->mm.interruptible = true;
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002330 intel_runtime_pm_put(dev_priv);
Chris Wilson48b956c2010-09-14 12:50:34 +01002331 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002332}
2333
Damien Lespiauf63bdb52015-02-10 19:32:24 +00002334static void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
Chris Wilson1690e1e2011-12-14 13:57:08 +01002335{
Matt Roperebcdd392014-07-09 16:22:11 -07002336 WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex));
2337
Chris Wilson1690e1e2011-12-14 13:57:08 +01002338 i915_gem_object_unpin_fence(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01002339 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002340}
2341
Daniel Vetterc2c75132012-07-05 12:17:30 +02002342/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2343 * is assumed to be a power-of-two. */
Chris Wilsonbc752862013-02-21 20:04:31 +00002344unsigned long intel_gen4_compute_page_offset(int *x, int *y,
2345 unsigned int tiling_mode,
2346 unsigned int cpp,
2347 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02002348{
Chris Wilsonbc752862013-02-21 20:04:31 +00002349 if (tiling_mode != I915_TILING_NONE) {
2350 unsigned int tile_rows, tiles;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002351
Chris Wilsonbc752862013-02-21 20:04:31 +00002352 tile_rows = *y / 8;
2353 *y %= 8;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002354
Chris Wilsonbc752862013-02-21 20:04:31 +00002355 tiles = *x / (512/cpp);
2356 *x %= 512/cpp;
2357
2358 return tile_rows * pitch * 8 + tiles * 4096;
2359 } else {
2360 unsigned int offset;
2361
2362 offset = *y * pitch + *x * cpp;
2363 *y = 0;
2364 *x = (offset & 4095) / cpp;
2365 return offset & -4096;
2366 }
Daniel Vetterc2c75132012-07-05 12:17:30 +02002367}
2368
Damien Lespiaub35d63f2015-01-20 12:51:50 +00002369static int i9xx_format_to_fourcc(int format)
Jesse Barnes46f297f2014-03-07 08:57:48 -08002370{
2371 switch (format) {
2372 case DISPPLANE_8BPP:
2373 return DRM_FORMAT_C8;
2374 case DISPPLANE_BGRX555:
2375 return DRM_FORMAT_XRGB1555;
2376 case DISPPLANE_BGRX565:
2377 return DRM_FORMAT_RGB565;
2378 default:
2379 case DISPPLANE_BGRX888:
2380 return DRM_FORMAT_XRGB8888;
2381 case DISPPLANE_RGBX888:
2382 return DRM_FORMAT_XBGR8888;
2383 case DISPPLANE_BGRX101010:
2384 return DRM_FORMAT_XRGB2101010;
2385 case DISPPLANE_RGBX101010:
2386 return DRM_FORMAT_XBGR2101010;
2387 }
2388}
2389
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00002390static int skl_format_to_fourcc(int format, bool rgb_order, bool alpha)
2391{
2392 switch (format) {
2393 case PLANE_CTL_FORMAT_RGB_565:
2394 return DRM_FORMAT_RGB565;
2395 default:
2396 case PLANE_CTL_FORMAT_XRGB_8888:
2397 if (rgb_order) {
2398 if (alpha)
2399 return DRM_FORMAT_ABGR8888;
2400 else
2401 return DRM_FORMAT_XBGR8888;
2402 } else {
2403 if (alpha)
2404 return DRM_FORMAT_ARGB8888;
2405 else
2406 return DRM_FORMAT_XRGB8888;
2407 }
2408 case PLANE_CTL_FORMAT_XRGB_2101010:
2409 if (rgb_order)
2410 return DRM_FORMAT_XBGR2101010;
2411 else
2412 return DRM_FORMAT_XRGB2101010;
2413 }
2414}
2415
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002416static bool
2417intel_alloc_plane_obj(struct intel_crtc *crtc,
2418 struct intel_initial_plane_config *plane_config)
Jesse Barnes46f297f2014-03-07 08:57:48 -08002419{
2420 struct drm_device *dev = crtc->base.dev;
2421 struct drm_i915_gem_object *obj = NULL;
2422 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Damien Lespiau2d140302015-02-05 17:22:18 +00002423 struct drm_framebuffer *fb = &plane_config->fb->base;
Daniel Vetterf37b5c22015-02-10 23:12:27 +01002424 u32 base_aligned = round_down(plane_config->base, PAGE_SIZE);
2425 u32 size_aligned = round_up(plane_config->base + plane_config->size,
2426 PAGE_SIZE);
2427
2428 size_aligned -= base_aligned;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002429
Chris Wilsonff2652e2014-03-10 08:07:02 +00002430 if (plane_config->size == 0)
2431 return false;
2432
Daniel Vetterf37b5c22015-02-10 23:12:27 +01002433 obj = i915_gem_object_create_stolen_for_preallocated(dev,
2434 base_aligned,
2435 base_aligned,
2436 size_aligned);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002437 if (!obj)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002438 return false;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002439
Damien Lespiau49af4492015-01-20 12:51:44 +00002440 obj->tiling_mode = plane_config->tiling;
2441 if (obj->tiling_mode == I915_TILING_X)
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002442 obj->stride = fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002443
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002444 mode_cmd.pixel_format = fb->pixel_format;
2445 mode_cmd.width = fb->width;
2446 mode_cmd.height = fb->height;
2447 mode_cmd.pitches[0] = fb->pitches[0];
Daniel Vetter18c52472015-02-10 17:16:09 +00002448 mode_cmd.modifier[0] = fb->modifier[0];
2449 mode_cmd.flags = DRM_MODE_FB_MODIFIERS;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002450
2451 mutex_lock(&dev->struct_mutex);
2452
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002453 if (intel_framebuffer_init(dev, to_intel_framebuffer(fb),
Jesse Barnes484b41d2014-03-07 08:57:55 -08002454 &mode_cmd, obj)) {
Jesse Barnes46f297f2014-03-07 08:57:48 -08002455 DRM_DEBUG_KMS("intel fb init failed\n");
2456 goto out_unref_obj;
2457 }
2458
Daniel Vettera071fa02014-06-18 23:28:09 +02002459 obj->frontbuffer_bits = INTEL_FRONTBUFFER_PRIMARY(crtc->pipe);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002460 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002461
2462 DRM_DEBUG_KMS("plane fb obj %p\n", obj);
2463 return true;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002464
2465out_unref_obj:
2466 drm_gem_object_unreference(&obj->base);
2467 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002468 return false;
2469}
2470
Matt Roperafd65eb2015-02-03 13:10:04 -08002471/* Update plane->state->fb to match plane->fb after driver-internal updates */
2472static void
2473update_state_fb(struct drm_plane *plane)
2474{
2475 if (plane->fb == plane->state->fb)
2476 return;
2477
2478 if (plane->state->fb)
2479 drm_framebuffer_unreference(plane->state->fb);
2480 plane->state->fb = plane->fb;
2481 if (plane->state->fb)
2482 drm_framebuffer_reference(plane->state->fb);
2483}
2484
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002485static void
2486intel_find_plane_obj(struct intel_crtc *intel_crtc,
2487 struct intel_initial_plane_config *plane_config)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002488{
2489 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnesd9ceb812014-10-09 12:57:43 -07002490 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002491 struct drm_crtc *c;
2492 struct intel_crtc *i;
Matt Roper2ff8fde2014-07-08 07:50:07 -07002493 struct drm_i915_gem_object *obj;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002494
Damien Lespiau2d140302015-02-05 17:22:18 +00002495 if (!plane_config->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002496 return;
2497
Damien Lespiauf55548b2015-02-05 18:30:20 +00002498 if (intel_alloc_plane_obj(intel_crtc, plane_config)) {
Damien Lespiaufb9981a2015-02-05 19:24:25 +00002499 struct drm_plane *primary = intel_crtc->base.primary;
2500
2501 primary->fb = &plane_config->fb->base;
2502 primary->state->crtc = &intel_crtc->base;
2503 update_state_fb(primary);
2504
Jesse Barnes484b41d2014-03-07 08:57:55 -08002505 return;
Damien Lespiauf55548b2015-02-05 18:30:20 +00002506 }
Jesse Barnes484b41d2014-03-07 08:57:55 -08002507
Damien Lespiau2d140302015-02-05 17:22:18 +00002508 kfree(plane_config->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002509
2510 /*
2511 * Failed to alloc the obj, check to see if we should share
2512 * an fb with another CRTC instead
2513 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002514 for_each_crtc(dev, c) {
Jesse Barnes484b41d2014-03-07 08:57:55 -08002515 i = to_intel_crtc(c);
2516
2517 if (c == &intel_crtc->base)
2518 continue;
2519
Matt Roper2ff8fde2014-07-08 07:50:07 -07002520 if (!i->active)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002521 continue;
2522
Matt Roper2ff8fde2014-07-08 07:50:07 -07002523 obj = intel_fb_obj(c->primary->fb);
2524 if (obj == NULL)
2525 continue;
2526
2527 if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) {
Damien Lespiaufb9981a2015-02-05 19:24:25 +00002528 struct drm_plane *primary = intel_crtc->base.primary;
2529
Jesse Barnesd9ceb812014-10-09 12:57:43 -07002530 if (obj->tiling_mode != I915_TILING_NONE)
2531 dev_priv->preserve_bios_swizzle = true;
2532
Dave Airlie66e514c2014-04-03 07:51:54 +10002533 drm_framebuffer_reference(c->primary->fb);
Damien Lespiaufb9981a2015-02-05 19:24:25 +00002534 primary->fb = c->primary->fb;
2535 primary->state->crtc = &intel_crtc->base;
Damien Lespiau5ba76c42015-02-05 17:22:15 +00002536 update_state_fb(intel_crtc->base.primary);
Matt Roper2ff8fde2014-07-08 07:50:07 -07002537 obj->frontbuffer_bits |= INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002538 break;
2539 }
2540 }
Jesse Barnes46f297f2014-03-07 08:57:48 -08002541}
2542
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002543static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2544 struct drm_framebuffer *fb,
2545 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07002546{
2547 struct drm_device *dev = crtc->dev;
2548 struct drm_i915_private *dev_priv = dev->dev_private;
2549 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002550 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002551 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002552 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002553 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002554 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302555 int pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002556
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002557 if (!intel_crtc->primary_enabled) {
2558 I915_WRITE(reg, 0);
2559 if (INTEL_INFO(dev)->gen >= 4)
2560 I915_WRITE(DSPSURF(plane), 0);
2561 else
2562 I915_WRITE(DSPADDR(plane), 0);
2563 POSTING_READ(reg);
2564 return;
2565 }
2566
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002567 obj = intel_fb_obj(fb);
2568 if (WARN_ON(obj == NULL))
2569 return;
2570
2571 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2572
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002573 dspcntr = DISPPLANE_GAMMA_ENABLE;
2574
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002575 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002576
2577 if (INTEL_INFO(dev)->gen < 4) {
2578 if (intel_crtc->pipe == PIPE_B)
2579 dspcntr |= DISPPLANE_SEL_PIPE_B;
2580
2581 /* pipesrc and dspsize control the size that is scaled from,
2582 * which should always be the user's requested size.
2583 */
2584 I915_WRITE(DSPSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002585 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2586 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002587 I915_WRITE(DSPPOS(plane), 0);
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002588 } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) {
2589 I915_WRITE(PRIMSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002590 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2591 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002592 I915_WRITE(PRIMPOS(plane), 0);
2593 I915_WRITE(PRIMCNSTALPHA(plane), 0);
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002594 }
2595
Ville Syrjälä57779d02012-10-31 17:50:14 +02002596 switch (fb->pixel_format) {
2597 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002598 dspcntr |= DISPPLANE_8BPP;
2599 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002600 case DRM_FORMAT_XRGB1555:
2601 case DRM_FORMAT_ARGB1555:
2602 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002603 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002604 case DRM_FORMAT_RGB565:
2605 dspcntr |= DISPPLANE_BGRX565;
2606 break;
2607 case DRM_FORMAT_XRGB8888:
2608 case DRM_FORMAT_ARGB8888:
2609 dspcntr |= DISPPLANE_BGRX888;
2610 break;
2611 case DRM_FORMAT_XBGR8888:
2612 case DRM_FORMAT_ABGR8888:
2613 dspcntr |= DISPPLANE_RGBX888;
2614 break;
2615 case DRM_FORMAT_XRGB2101010:
2616 case DRM_FORMAT_ARGB2101010:
2617 dspcntr |= DISPPLANE_BGRX101010;
2618 break;
2619 case DRM_FORMAT_XBGR2101010:
2620 case DRM_FORMAT_ABGR2101010:
2621 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002622 break;
2623 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002624 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07002625 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002626
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002627 if (INTEL_INFO(dev)->gen >= 4 &&
2628 obj->tiling_mode != I915_TILING_NONE)
2629 dspcntr |= DISPPLANE_TILED;
Jesse Barnes81255562010-08-02 12:07:50 -07002630
Ville Syrjäläde1aa622013-06-07 10:47:01 +03002631 if (IS_G4X(dev))
2632 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2633
Ville Syrjäläb98971272014-08-27 16:51:22 +03002634 linear_offset = y * fb->pitches[0] + x * pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002635
Daniel Vetterc2c75132012-07-05 12:17:30 +02002636 if (INTEL_INFO(dev)->gen >= 4) {
2637 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002638 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002639 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002640 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002641 linear_offset -= intel_crtc->dspaddr_offset;
2642 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002643 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002644 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002645
Matt Roper8e7d6882015-01-21 16:35:41 -08002646 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302647 dspcntr |= DISPPLANE_ROTATE_180;
2648
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002649 x += (intel_crtc->config->pipe_src_w - 1);
2650 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302651
2652 /* Finding the last pixel of the last line of the display
2653 data and adding to linear_offset*/
2654 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002655 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2656 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302657 }
2658
2659 I915_WRITE(reg, dspcntr);
2660
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002661 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002662 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002663 I915_WRITE(DSPSURF(plane),
2664 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002665 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002666 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002667 } else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002668 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002669 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002670}
2671
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002672static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2673 struct drm_framebuffer *fb,
2674 int x, int y)
Jesse Barnes17638cd2011-06-24 12:19:23 -07002675{
2676 struct drm_device *dev = crtc->dev;
2677 struct drm_i915_private *dev_priv = dev->dev_private;
2678 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002679 struct drm_i915_gem_object *obj;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002680 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002681 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002682 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002683 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302684 int pixel_size;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002685
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002686 if (!intel_crtc->primary_enabled) {
2687 I915_WRITE(reg, 0);
2688 I915_WRITE(DSPSURF(plane), 0);
2689 POSTING_READ(reg);
2690 return;
2691 }
2692
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002693 obj = intel_fb_obj(fb);
2694 if (WARN_ON(obj == NULL))
2695 return;
2696
2697 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2698
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002699 dspcntr = DISPPLANE_GAMMA_ENABLE;
2700
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002701 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002702
2703 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
2704 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
2705
Ville Syrjälä57779d02012-10-31 17:50:14 +02002706 switch (fb->pixel_format) {
2707 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002708 dspcntr |= DISPPLANE_8BPP;
2709 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002710 case DRM_FORMAT_RGB565:
2711 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002712 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002713 case DRM_FORMAT_XRGB8888:
2714 case DRM_FORMAT_ARGB8888:
2715 dspcntr |= DISPPLANE_BGRX888;
2716 break;
2717 case DRM_FORMAT_XBGR8888:
2718 case DRM_FORMAT_ABGR8888:
2719 dspcntr |= DISPPLANE_RGBX888;
2720 break;
2721 case DRM_FORMAT_XRGB2101010:
2722 case DRM_FORMAT_ARGB2101010:
2723 dspcntr |= DISPPLANE_BGRX101010;
2724 break;
2725 case DRM_FORMAT_XBGR2101010:
2726 case DRM_FORMAT_ABGR2101010:
2727 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002728 break;
2729 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002730 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002731 }
2732
2733 if (obj->tiling_mode != I915_TILING_NONE)
2734 dspcntr |= DISPPLANE_TILED;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002735
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002736 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03002737 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002738
Ville Syrjäläb98971272014-08-27 16:51:22 +03002739 linear_offset = y * fb->pitches[0] + x * pixel_size;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002740 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002741 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002742 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002743 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002744 linear_offset -= intel_crtc->dspaddr_offset;
Matt Roper8e7d6882015-01-21 16:35:41 -08002745 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302746 dspcntr |= DISPPLANE_ROTATE_180;
2747
2748 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002749 x += (intel_crtc->config->pipe_src_w - 1);
2750 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302751
2752 /* Finding the last pixel of the last line of the display
2753 data and adding to linear_offset*/
2754 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002755 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2756 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302757 }
2758 }
2759
2760 I915_WRITE(reg, dspcntr);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002761
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002762 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002763 I915_WRITE(DSPSURF(plane),
2764 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Paulo Zanonib3dc6852013-11-02 21:07:33 -07002765 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002766 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2767 } else {
2768 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2769 I915_WRITE(DSPLINOFF(plane), linear_offset);
2770 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002771 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002772}
2773
Damien Lespiaub3218032015-02-27 11:15:18 +00002774u32 intel_fb_stride_alignment(struct drm_device *dev, uint64_t fb_modifier,
2775 uint32_t pixel_format)
2776{
2777 u32 bits_per_pixel = drm_format_plane_cpp(pixel_format, 0) * 8;
2778
2779 /*
2780 * The stride is either expressed as a multiple of 64 bytes
2781 * chunks for linear buffers or in number of tiles for tiled
2782 * buffers.
2783 */
2784 switch (fb_modifier) {
2785 case DRM_FORMAT_MOD_NONE:
2786 return 64;
2787 case I915_FORMAT_MOD_X_TILED:
2788 if (INTEL_INFO(dev)->gen == 2)
2789 return 128;
2790 return 512;
2791 case I915_FORMAT_MOD_Y_TILED:
2792 /* No need to check for old gens and Y tiling since this is
2793 * about the display engine and those will be blocked before
2794 * we get here.
2795 */
2796 return 128;
2797 case I915_FORMAT_MOD_Yf_TILED:
2798 if (bits_per_pixel == 8)
2799 return 64;
2800 else
2801 return 128;
2802 default:
2803 MISSING_CASE(fb_modifier);
2804 return 64;
2805 }
2806}
2807
Damien Lespiau70d21f02013-07-03 21:06:04 +01002808static void skylake_update_primary_plane(struct drm_crtc *crtc,
2809 struct drm_framebuffer *fb,
2810 int x, int y)
2811{
2812 struct drm_device *dev = crtc->dev;
2813 struct drm_i915_private *dev_priv = dev->dev_private;
2814 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Damien Lespiau70d21f02013-07-03 21:06:04 +01002815 struct drm_i915_gem_object *obj;
2816 int pipe = intel_crtc->pipe;
Damien Lespiaub3218032015-02-27 11:15:18 +00002817 u32 plane_ctl, stride_div;
Damien Lespiau70d21f02013-07-03 21:06:04 +01002818
2819 if (!intel_crtc->primary_enabled) {
2820 I915_WRITE(PLANE_CTL(pipe, 0), 0);
2821 I915_WRITE(PLANE_SURF(pipe, 0), 0);
2822 POSTING_READ(PLANE_CTL(pipe, 0));
2823 return;
2824 }
2825
2826 plane_ctl = PLANE_CTL_ENABLE |
2827 PLANE_CTL_PIPE_GAMMA_ENABLE |
2828 PLANE_CTL_PIPE_CSC_ENABLE;
2829
2830 switch (fb->pixel_format) {
2831 case DRM_FORMAT_RGB565:
2832 plane_ctl |= PLANE_CTL_FORMAT_RGB_565;
2833 break;
2834 case DRM_FORMAT_XRGB8888:
2835 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2836 break;
Jani Nikulaf75fb422015-02-10 13:15:49 +02002837 case DRM_FORMAT_ARGB8888:
2838 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2839 plane_ctl |= PLANE_CTL_ALPHA_SW_PREMULTIPLY;
2840 break;
Damien Lespiau70d21f02013-07-03 21:06:04 +01002841 case DRM_FORMAT_XBGR8888:
2842 plane_ctl |= PLANE_CTL_ORDER_RGBX;
2843 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2844 break;
Jani Nikulaf75fb422015-02-10 13:15:49 +02002845 case DRM_FORMAT_ABGR8888:
2846 plane_ctl |= PLANE_CTL_ORDER_RGBX;
2847 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2848 plane_ctl |= PLANE_CTL_ALPHA_SW_PREMULTIPLY;
2849 break;
Damien Lespiau70d21f02013-07-03 21:06:04 +01002850 case DRM_FORMAT_XRGB2101010:
2851 plane_ctl |= PLANE_CTL_FORMAT_XRGB_2101010;
2852 break;
2853 case DRM_FORMAT_XBGR2101010:
2854 plane_ctl |= PLANE_CTL_ORDER_RGBX;
2855 plane_ctl |= PLANE_CTL_FORMAT_XRGB_2101010;
2856 break;
2857 default:
2858 BUG();
2859 }
2860
Daniel Vetter30af77c2015-02-10 17:16:11 +00002861 switch (fb->modifier[0]) {
2862 case DRM_FORMAT_MOD_NONE:
Damien Lespiau70d21f02013-07-03 21:06:04 +01002863 break;
Daniel Vetter30af77c2015-02-10 17:16:11 +00002864 case I915_FORMAT_MOD_X_TILED:
Damien Lespiau70d21f02013-07-03 21:06:04 +01002865 plane_ctl |= PLANE_CTL_TILED_X;
Damien Lespiaub3218032015-02-27 11:15:18 +00002866 break;
2867 case I915_FORMAT_MOD_Y_TILED:
2868 plane_ctl |= PLANE_CTL_TILED_Y;
2869 break;
2870 case I915_FORMAT_MOD_Yf_TILED:
2871 plane_ctl |= PLANE_CTL_TILED_YF;
Damien Lespiau70d21f02013-07-03 21:06:04 +01002872 break;
2873 default:
Damien Lespiaub3218032015-02-27 11:15:18 +00002874 MISSING_CASE(fb->modifier[0]);
Damien Lespiau70d21f02013-07-03 21:06:04 +01002875 }
2876
2877 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
Matt Roper8e7d6882015-01-21 16:35:41 -08002878 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180))
Sonika Jindal1447dde2014-10-04 10:53:31 +01002879 plane_ctl |= PLANE_CTL_ROTATE_180;
Damien Lespiau70d21f02013-07-03 21:06:04 +01002880
Damien Lespiaub3218032015-02-27 11:15:18 +00002881 obj = intel_fb_obj(fb);
2882 stride_div = intel_fb_stride_alignment(dev, fb->modifier[0],
2883 fb->pixel_format);
2884
Damien Lespiau70d21f02013-07-03 21:06:04 +01002885 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
2886
Damien Lespiau70d21f02013-07-03 21:06:04 +01002887 I915_WRITE(PLANE_POS(pipe, 0), 0);
2888 I915_WRITE(PLANE_OFFSET(pipe, 0), (y << 16) | x);
2889 I915_WRITE(PLANE_SIZE(pipe, 0),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002890 (intel_crtc->config->pipe_src_h - 1) << 16 |
2891 (intel_crtc->config->pipe_src_w - 1));
Damien Lespiaub3218032015-02-27 11:15:18 +00002892 I915_WRITE(PLANE_STRIDE(pipe, 0), fb->pitches[0] / stride_div);
Damien Lespiau70d21f02013-07-03 21:06:04 +01002893 I915_WRITE(PLANE_SURF(pipe, 0), i915_gem_obj_ggtt_offset(obj));
2894
2895 POSTING_READ(PLANE_SURF(pipe, 0));
2896}
2897
Jesse Barnes17638cd2011-06-24 12:19:23 -07002898/* Assume fb object is pinned & idle & fenced and just update base pointers */
2899static int
2900intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2901 int x, int y, enum mode_set_atomic state)
2902{
2903 struct drm_device *dev = crtc->dev;
2904 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002905
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002906 if (dev_priv->display.disable_fbc)
2907 dev_priv->display.disable_fbc(dev);
Jesse Barnes81255562010-08-02 12:07:50 -07002908
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002909 dev_priv->display.update_primary_plane(crtc, fb, x, y);
2910
2911 return 0;
Jesse Barnes81255562010-08-02 12:07:50 -07002912}
2913
Ville Syrjälä75147472014-11-24 18:28:11 +02002914static void intel_complete_page_flips(struct drm_device *dev)
Ville Syrjälä96a02912013-02-18 19:08:49 +02002915{
Ville Syrjälä96a02912013-02-18 19:08:49 +02002916 struct drm_crtc *crtc;
2917
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002918 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002919 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2920 enum plane plane = intel_crtc->plane;
2921
2922 intel_prepare_page_flip(dev, plane);
2923 intel_finish_page_flip_plane(dev, plane);
2924 }
Ville Syrjälä75147472014-11-24 18:28:11 +02002925}
2926
2927static void intel_update_primary_planes(struct drm_device *dev)
2928{
2929 struct drm_i915_private *dev_priv = dev->dev_private;
2930 struct drm_crtc *crtc;
Ville Syrjälä96a02912013-02-18 19:08:49 +02002931
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002932 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002933 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2934
Rob Clark51fd3712013-11-19 12:10:12 -05002935 drm_modeset_lock(&crtc->mutex, NULL);
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002936 /*
2937 * FIXME: Once we have proper support for primary planes (and
2938 * disabling them without disabling the entire crtc) allow again
Dave Airlie66e514c2014-04-03 07:51:54 +10002939 * a NULL crtc->primary->fb.
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002940 */
Matt Roperf4510a22014-04-01 15:22:40 -07002941 if (intel_crtc->active && crtc->primary->fb)
Matt Roper262ca2b2014-03-18 17:22:55 -07002942 dev_priv->display.update_primary_plane(crtc,
Dave Airlie66e514c2014-04-03 07:51:54 +10002943 crtc->primary->fb,
Matt Roper262ca2b2014-03-18 17:22:55 -07002944 crtc->x,
2945 crtc->y);
Rob Clark51fd3712013-11-19 12:10:12 -05002946 drm_modeset_unlock(&crtc->mutex);
Ville Syrjälä96a02912013-02-18 19:08:49 +02002947 }
2948}
2949
Ville Syrjälä75147472014-11-24 18:28:11 +02002950void intel_prepare_reset(struct drm_device *dev)
2951{
Ville Syrjäläf98ce922014-11-21 21:54:30 +02002952 struct drm_i915_private *dev_priv = to_i915(dev);
2953 struct intel_crtc *crtc;
2954
Ville Syrjälä75147472014-11-24 18:28:11 +02002955 /* no reset support for gen2 */
2956 if (IS_GEN2(dev))
2957 return;
2958
2959 /* reset doesn't touch the display */
2960 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
2961 return;
2962
2963 drm_modeset_lock_all(dev);
Ville Syrjäläf98ce922014-11-21 21:54:30 +02002964
2965 /*
2966 * Disabling the crtcs gracefully seems nicer. Also the
2967 * g33 docs say we should at least disable all the planes.
2968 */
2969 for_each_intel_crtc(dev, crtc) {
2970 if (crtc->active)
2971 dev_priv->display.crtc_disable(&crtc->base);
2972 }
Ville Syrjälä75147472014-11-24 18:28:11 +02002973}
2974
2975void intel_finish_reset(struct drm_device *dev)
2976{
2977 struct drm_i915_private *dev_priv = to_i915(dev);
2978
2979 /*
2980 * Flips in the rings will be nuked by the reset,
2981 * so complete all pending flips so that user space
2982 * will get its events and not get stuck.
2983 */
2984 intel_complete_page_flips(dev);
2985
2986 /* no reset support for gen2 */
2987 if (IS_GEN2(dev))
2988 return;
2989
2990 /* reset doesn't touch the display */
2991 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) {
2992 /*
2993 * Flips in the rings have been nuked by the reset,
2994 * so update the base address of all primary
2995 * planes to the the last fb to make sure we're
2996 * showing the correct fb after a reset.
2997 */
2998 intel_update_primary_planes(dev);
2999 return;
3000 }
3001
3002 /*
3003 * The display has been reset as well,
3004 * so need a full re-initialization.
3005 */
3006 intel_runtime_pm_disable_interrupts(dev_priv);
3007 intel_runtime_pm_enable_interrupts(dev_priv);
3008
3009 intel_modeset_init_hw(dev);
3010
3011 spin_lock_irq(&dev_priv->irq_lock);
3012 if (dev_priv->display.hpd_irq_setup)
3013 dev_priv->display.hpd_irq_setup(dev);
3014 spin_unlock_irq(&dev_priv->irq_lock);
3015
3016 intel_modeset_setup_hw_state(dev, true);
3017
3018 intel_hpd_init(dev_priv);
3019
3020 drm_modeset_unlock_all(dev);
3021}
3022
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003023static int
Chris Wilson14667a42012-04-03 17:58:35 +01003024intel_finish_fb(struct drm_framebuffer *old_fb)
3025{
Matt Roper2ff8fde2014-07-08 07:50:07 -07003026 struct drm_i915_gem_object *obj = intel_fb_obj(old_fb);
Chris Wilson14667a42012-04-03 17:58:35 +01003027 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
3028 bool was_interruptible = dev_priv->mm.interruptible;
3029 int ret;
3030
Chris Wilson14667a42012-04-03 17:58:35 +01003031 /* Big Hammer, we also need to ensure that any pending
3032 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
3033 * current scanout is retired before unpinning the old
3034 * framebuffer.
3035 *
3036 * This should only fail upon a hung GPU, in which case we
3037 * can safely continue.
3038 */
3039 dev_priv->mm.interruptible = false;
3040 ret = i915_gem_object_finish_gpu(obj);
3041 dev_priv->mm.interruptible = was_interruptible;
3042
3043 return ret;
3044}
3045
Chris Wilson7d5e3792014-03-04 13:15:08 +00003046static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
3047{
3048 struct drm_device *dev = crtc->dev;
3049 struct drm_i915_private *dev_priv = dev->dev_private;
3050 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003051 bool pending;
3052
3053 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
3054 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
3055 return false;
3056
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003057 spin_lock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003058 pending = to_intel_crtc(crtc)->unpin_work != NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003059 spin_unlock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003060
3061 return pending;
3062}
3063
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003064static void intel_update_pipe_size(struct intel_crtc *crtc)
3065{
3066 struct drm_device *dev = crtc->base.dev;
3067 struct drm_i915_private *dev_priv = dev->dev_private;
3068 const struct drm_display_mode *adjusted_mode;
3069
3070 if (!i915.fastboot)
3071 return;
3072
3073 /*
3074 * Update pipe size and adjust fitter if needed: the reason for this is
3075 * that in compute_mode_changes we check the native mode (not the pfit
3076 * mode) to see if we can flip rather than do a full mode set. In the
3077 * fastboot case, we'll flip, but if we don't update the pipesrc and
3078 * pfit state, we'll end up with a big fb scanned out into the wrong
3079 * sized surface.
3080 *
3081 * To fix this properly, we need to hoist the checks up into
3082 * compute_mode_changes (or above), check the actual pfit state and
3083 * whether the platform allows pfit disable with pipe active, and only
3084 * then update the pipesrc and pfit state, even on the flip path.
3085 */
3086
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003087 adjusted_mode = &crtc->config->base.adjusted_mode;
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003088
3089 I915_WRITE(PIPESRC(crtc->pipe),
3090 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
3091 (adjusted_mode->crtc_vdisplay - 1));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003092 if (!crtc->config->pch_pfit.enabled &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03003093 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
3094 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003095 I915_WRITE(PF_CTL(crtc->pipe), 0);
3096 I915_WRITE(PF_WIN_POS(crtc->pipe), 0);
3097 I915_WRITE(PF_WIN_SZ(crtc->pipe), 0);
3098 }
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003099 crtc->config->pipe_src_w = adjusted_mode->crtc_hdisplay;
3100 crtc->config->pipe_src_h = adjusted_mode->crtc_vdisplay;
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003101}
3102
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003103static void intel_fdi_normal_train(struct drm_crtc *crtc)
3104{
3105 struct drm_device *dev = crtc->dev;
3106 struct drm_i915_private *dev_priv = dev->dev_private;
3107 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3108 int pipe = intel_crtc->pipe;
3109 u32 reg, temp;
3110
3111 /* enable normal train */
3112 reg = FDI_TX_CTL(pipe);
3113 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07003114 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07003115 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3116 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07003117 } else {
3118 temp &= ~FDI_LINK_TRAIN_NONE;
3119 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07003120 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003121 I915_WRITE(reg, temp);
3122
3123 reg = FDI_RX_CTL(pipe);
3124 temp = I915_READ(reg);
3125 if (HAS_PCH_CPT(dev)) {
3126 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3127 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3128 } else {
3129 temp &= ~FDI_LINK_TRAIN_NONE;
3130 temp |= FDI_LINK_TRAIN_NONE;
3131 }
3132 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3133
3134 /* wait one idle pattern time */
3135 POSTING_READ(reg);
3136 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07003137
3138 /* IVB wants error correction enabled */
3139 if (IS_IVYBRIDGE(dev))
3140 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3141 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003142}
3143
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003144/* The FDI link training functions for ILK/Ibexpeak. */
3145static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3146{
3147 struct drm_device *dev = crtc->dev;
3148 struct drm_i915_private *dev_priv = dev->dev_private;
3149 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3150 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003151 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003152
Ville Syrjälä1c8562f2014-04-25 22:12:07 +03003153 /* FDI needs bits from pipe first */
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003154 assert_pipe_enabled(dev_priv, pipe);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003155
Adam Jacksone1a44742010-06-25 15:32:14 -04003156 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3157 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003158 reg = FDI_RX_IMR(pipe);
3159 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003160 temp &= ~FDI_RX_SYMBOL_LOCK;
3161 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003162 I915_WRITE(reg, temp);
3163 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003164 udelay(150);
3165
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003166 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003167 reg = FDI_TX_CTL(pipe);
3168 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003169 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003170 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003171 temp &= ~FDI_LINK_TRAIN_NONE;
3172 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003173 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003174
Chris Wilson5eddb702010-09-11 13:48:45 +01003175 reg = FDI_RX_CTL(pipe);
3176 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003177 temp &= ~FDI_LINK_TRAIN_NONE;
3178 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003179 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3180
3181 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003182 udelay(150);
3183
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003184 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01003185 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3186 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3187 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003188
Chris Wilson5eddb702010-09-11 13:48:45 +01003189 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003190 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003191 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003192 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3193
3194 if ((temp & FDI_RX_BIT_LOCK)) {
3195 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01003196 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003197 break;
3198 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003199 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003200 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003201 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003202
3203 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003204 reg = FDI_TX_CTL(pipe);
3205 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003206 temp &= ~FDI_LINK_TRAIN_NONE;
3207 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003208 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003209
Chris Wilson5eddb702010-09-11 13:48:45 +01003210 reg = FDI_RX_CTL(pipe);
3211 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003212 temp &= ~FDI_LINK_TRAIN_NONE;
3213 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003214 I915_WRITE(reg, temp);
3215
3216 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003217 udelay(150);
3218
Chris Wilson5eddb702010-09-11 13:48:45 +01003219 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003220 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003221 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003222 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3223
3224 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003225 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003226 DRM_DEBUG_KMS("FDI train 2 done.\n");
3227 break;
3228 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003229 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003230 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003231 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003232
3233 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07003234
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003235}
3236
Akshay Joshi0206e352011-08-16 15:34:10 -04003237static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003238 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3239 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3240 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3241 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3242};
3243
3244/* The FDI link training functions for SNB/Cougarpoint. */
3245static void gen6_fdi_link_train(struct drm_crtc *crtc)
3246{
3247 struct drm_device *dev = crtc->dev;
3248 struct drm_i915_private *dev_priv = dev->dev_private;
3249 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3250 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05003251 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003252
Adam Jacksone1a44742010-06-25 15:32:14 -04003253 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3254 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003255 reg = FDI_RX_IMR(pipe);
3256 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003257 temp &= ~FDI_RX_SYMBOL_LOCK;
3258 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003259 I915_WRITE(reg, temp);
3260
3261 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003262 udelay(150);
3263
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003264 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003265 reg = FDI_TX_CTL(pipe);
3266 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003267 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003268 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003269 temp &= ~FDI_LINK_TRAIN_NONE;
3270 temp |= FDI_LINK_TRAIN_PATTERN_1;
3271 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3272 /* SNB-B */
3273 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01003274 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003275
Daniel Vetterd74cf322012-10-26 10:58:13 +02003276 I915_WRITE(FDI_RX_MISC(pipe),
3277 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3278
Chris Wilson5eddb702010-09-11 13:48:45 +01003279 reg = FDI_RX_CTL(pipe);
3280 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003281 if (HAS_PCH_CPT(dev)) {
3282 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3283 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3284 } else {
3285 temp &= ~FDI_LINK_TRAIN_NONE;
3286 temp |= FDI_LINK_TRAIN_PATTERN_1;
3287 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003288 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3289
3290 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003291 udelay(150);
3292
Akshay Joshi0206e352011-08-16 15:34:10 -04003293 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003294 reg = FDI_TX_CTL(pipe);
3295 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003296 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3297 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003298 I915_WRITE(reg, temp);
3299
3300 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003301 udelay(500);
3302
Sean Paulfa37d392012-03-02 12:53:39 -05003303 for (retry = 0; retry < 5; retry++) {
3304 reg = FDI_RX_IIR(pipe);
3305 temp = I915_READ(reg);
3306 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3307 if (temp & FDI_RX_BIT_LOCK) {
3308 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3309 DRM_DEBUG_KMS("FDI train 1 done.\n");
3310 break;
3311 }
3312 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003313 }
Sean Paulfa37d392012-03-02 12:53:39 -05003314 if (retry < 5)
3315 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003316 }
3317 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003318 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003319
3320 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003321 reg = FDI_TX_CTL(pipe);
3322 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003323 temp &= ~FDI_LINK_TRAIN_NONE;
3324 temp |= FDI_LINK_TRAIN_PATTERN_2;
3325 if (IS_GEN6(dev)) {
3326 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3327 /* SNB-B */
3328 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3329 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003330 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003331
Chris Wilson5eddb702010-09-11 13:48:45 +01003332 reg = FDI_RX_CTL(pipe);
3333 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003334 if (HAS_PCH_CPT(dev)) {
3335 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3336 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3337 } else {
3338 temp &= ~FDI_LINK_TRAIN_NONE;
3339 temp |= FDI_LINK_TRAIN_PATTERN_2;
3340 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003341 I915_WRITE(reg, temp);
3342
3343 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003344 udelay(150);
3345
Akshay Joshi0206e352011-08-16 15:34:10 -04003346 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003347 reg = FDI_TX_CTL(pipe);
3348 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003349 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3350 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003351 I915_WRITE(reg, temp);
3352
3353 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003354 udelay(500);
3355
Sean Paulfa37d392012-03-02 12:53:39 -05003356 for (retry = 0; retry < 5; retry++) {
3357 reg = FDI_RX_IIR(pipe);
3358 temp = I915_READ(reg);
3359 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3360 if (temp & FDI_RX_SYMBOL_LOCK) {
3361 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3362 DRM_DEBUG_KMS("FDI train 2 done.\n");
3363 break;
3364 }
3365 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003366 }
Sean Paulfa37d392012-03-02 12:53:39 -05003367 if (retry < 5)
3368 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003369 }
3370 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003371 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003372
3373 DRM_DEBUG_KMS("FDI train done.\n");
3374}
3375
Jesse Barnes357555c2011-04-28 15:09:55 -07003376/* Manual link training for Ivy Bridge A0 parts */
3377static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3378{
3379 struct drm_device *dev = crtc->dev;
3380 struct drm_i915_private *dev_priv = dev->dev_private;
3381 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3382 int pipe = intel_crtc->pipe;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003383 u32 reg, temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07003384
3385 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3386 for train result */
3387 reg = FDI_RX_IMR(pipe);
3388 temp = I915_READ(reg);
3389 temp &= ~FDI_RX_SYMBOL_LOCK;
3390 temp &= ~FDI_RX_BIT_LOCK;
3391 I915_WRITE(reg, temp);
3392
3393 POSTING_READ(reg);
3394 udelay(150);
3395
Daniel Vetter01a415f2012-10-27 15:58:40 +02003396 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3397 I915_READ(FDI_RX_IIR(pipe)));
3398
Jesse Barnes139ccd32013-08-19 11:04:55 -07003399 /* Try each vswing and preemphasis setting twice before moving on */
3400 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3401 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07003402 reg = FDI_TX_CTL(pipe);
3403 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003404 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3405 temp &= ~FDI_TX_ENABLE;
3406 I915_WRITE(reg, temp);
3407
3408 reg = FDI_RX_CTL(pipe);
3409 temp = I915_READ(reg);
3410 temp &= ~FDI_LINK_TRAIN_AUTO;
3411 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3412 temp &= ~FDI_RX_ENABLE;
3413 I915_WRITE(reg, temp);
3414
3415 /* enable CPU FDI TX and PCH FDI RX */
3416 reg = FDI_TX_CTL(pipe);
3417 temp = I915_READ(reg);
3418 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003419 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003420 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07003421 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003422 temp |= snb_b_fdi_train_param[j/2];
3423 temp |= FDI_COMPOSITE_SYNC;
3424 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3425
3426 I915_WRITE(FDI_RX_MISC(pipe),
3427 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3428
3429 reg = FDI_RX_CTL(pipe);
3430 temp = I915_READ(reg);
3431 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3432 temp |= FDI_COMPOSITE_SYNC;
3433 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3434
3435 POSTING_READ(reg);
3436 udelay(1); /* should be 0.5us */
3437
3438 for (i = 0; i < 4; i++) {
3439 reg = FDI_RX_IIR(pipe);
3440 temp = I915_READ(reg);
3441 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3442
3443 if (temp & FDI_RX_BIT_LOCK ||
3444 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3445 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3446 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3447 i);
3448 break;
3449 }
3450 udelay(1); /* should be 0.5us */
3451 }
3452 if (i == 4) {
3453 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3454 continue;
3455 }
3456
3457 /* Train 2 */
3458 reg = FDI_TX_CTL(pipe);
3459 temp = I915_READ(reg);
3460 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3461 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3462 I915_WRITE(reg, temp);
3463
3464 reg = FDI_RX_CTL(pipe);
3465 temp = I915_READ(reg);
3466 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3467 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07003468 I915_WRITE(reg, temp);
3469
3470 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003471 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003472
Jesse Barnes139ccd32013-08-19 11:04:55 -07003473 for (i = 0; i < 4; i++) {
3474 reg = FDI_RX_IIR(pipe);
3475 temp = I915_READ(reg);
3476 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07003477
Jesse Barnes139ccd32013-08-19 11:04:55 -07003478 if (temp & FDI_RX_SYMBOL_LOCK ||
3479 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3480 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3481 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3482 i);
3483 goto train_done;
3484 }
3485 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003486 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07003487 if (i == 4)
3488 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07003489 }
Jesse Barnes357555c2011-04-28 15:09:55 -07003490
Jesse Barnes139ccd32013-08-19 11:04:55 -07003491train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07003492 DRM_DEBUG_KMS("FDI train done.\n");
3493}
3494
Daniel Vetter88cefb62012-08-12 19:27:14 +02003495static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07003496{
Daniel Vetter88cefb62012-08-12 19:27:14 +02003497 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003498 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003499 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003500 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003501
Jesse Barnesc64e3112010-09-10 11:27:03 -07003502
Jesse Barnes0e23b992010-09-10 11:10:00 -07003503 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01003504 reg = FDI_RX_CTL(pipe);
3505 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003506 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003507 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003508 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01003509 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3510
3511 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003512 udelay(200);
3513
3514 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003515 temp = I915_READ(reg);
3516 I915_WRITE(reg, temp | FDI_PCDCLK);
3517
3518 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003519 udelay(200);
3520
Paulo Zanoni20749732012-11-23 15:30:38 -02003521 /* Enable CPU FDI TX PLL, always on for Ironlake */
3522 reg = FDI_TX_CTL(pipe);
3523 temp = I915_READ(reg);
3524 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3525 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01003526
Paulo Zanoni20749732012-11-23 15:30:38 -02003527 POSTING_READ(reg);
3528 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003529 }
3530}
3531
Daniel Vetter88cefb62012-08-12 19:27:14 +02003532static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3533{
3534 struct drm_device *dev = intel_crtc->base.dev;
3535 struct drm_i915_private *dev_priv = dev->dev_private;
3536 int pipe = intel_crtc->pipe;
3537 u32 reg, temp;
3538
3539 /* Switch from PCDclk to Rawclk */
3540 reg = FDI_RX_CTL(pipe);
3541 temp = I915_READ(reg);
3542 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3543
3544 /* Disable CPU FDI TX PLL */
3545 reg = FDI_TX_CTL(pipe);
3546 temp = I915_READ(reg);
3547 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3548
3549 POSTING_READ(reg);
3550 udelay(100);
3551
3552 reg = FDI_RX_CTL(pipe);
3553 temp = I915_READ(reg);
3554 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3555
3556 /* Wait for the clocks to turn off. */
3557 POSTING_READ(reg);
3558 udelay(100);
3559}
3560
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003561static void ironlake_fdi_disable(struct drm_crtc *crtc)
3562{
3563 struct drm_device *dev = crtc->dev;
3564 struct drm_i915_private *dev_priv = dev->dev_private;
3565 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3566 int pipe = intel_crtc->pipe;
3567 u32 reg, temp;
3568
3569 /* disable CPU FDI tx and PCH FDI rx */
3570 reg = FDI_TX_CTL(pipe);
3571 temp = I915_READ(reg);
3572 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3573 POSTING_READ(reg);
3574
3575 reg = FDI_RX_CTL(pipe);
3576 temp = I915_READ(reg);
3577 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003578 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003579 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3580
3581 POSTING_READ(reg);
3582 udelay(100);
3583
3584 /* Ironlake workaround, disable clock pointer after downing FDI */
Robin Schroereba905b2014-05-18 02:24:50 +02003585 if (HAS_PCH_IBX(dev))
Jesse Barnes6f06ce12011-01-04 15:09:38 -08003586 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003587
3588 /* still set train pattern 1 */
3589 reg = FDI_TX_CTL(pipe);
3590 temp = I915_READ(reg);
3591 temp &= ~FDI_LINK_TRAIN_NONE;
3592 temp |= FDI_LINK_TRAIN_PATTERN_1;
3593 I915_WRITE(reg, temp);
3594
3595 reg = FDI_RX_CTL(pipe);
3596 temp = I915_READ(reg);
3597 if (HAS_PCH_CPT(dev)) {
3598 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3599 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3600 } else {
3601 temp &= ~FDI_LINK_TRAIN_NONE;
3602 temp |= FDI_LINK_TRAIN_PATTERN_1;
3603 }
3604 /* BPC in FDI rx is consistent with that in PIPECONF */
3605 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003606 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003607 I915_WRITE(reg, temp);
3608
3609 POSTING_READ(reg);
3610 udelay(100);
3611}
3612
Chris Wilson5dce5b932014-01-20 10:17:36 +00003613bool intel_has_pending_fb_unpin(struct drm_device *dev)
3614{
3615 struct intel_crtc *crtc;
3616
3617 /* Note that we don't need to be called with mode_config.lock here
3618 * as our list of CRTC objects is static for the lifetime of the
3619 * device and so cannot disappear as we iterate. Similarly, we can
3620 * happily treat the predicates as racy, atomic checks as userspace
3621 * cannot claim and pin a new fb without at least acquring the
3622 * struct_mutex and so serialising with us.
3623 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003624 for_each_intel_crtc(dev, crtc) {
Chris Wilson5dce5b932014-01-20 10:17:36 +00003625 if (atomic_read(&crtc->unpin_work_count) == 0)
3626 continue;
3627
3628 if (crtc->unpin_work)
3629 intel_wait_for_vblank(dev, crtc->pipe);
3630
3631 return true;
3632 }
3633
3634 return false;
3635}
3636
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003637static void page_flip_completed(struct intel_crtc *intel_crtc)
3638{
3639 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
3640 struct intel_unpin_work *work = intel_crtc->unpin_work;
3641
3642 /* ensure that the unpin work is consistent wrt ->pending. */
3643 smp_rmb();
3644 intel_crtc->unpin_work = NULL;
3645
3646 if (work->event)
3647 drm_send_vblank_event(intel_crtc->base.dev,
3648 intel_crtc->pipe,
3649 work->event);
3650
3651 drm_crtc_vblank_put(&intel_crtc->base);
3652
3653 wake_up_all(&dev_priv->pending_flip_queue);
3654 queue_work(dev_priv->wq, &work->work);
3655
3656 trace_i915_flip_complete(intel_crtc->plane,
3657 work->pending_flip_obj);
3658}
3659
Ville Syrjälä46a55d32014-05-21 14:04:46 +03003660void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003661{
Chris Wilson0f911282012-04-17 10:05:38 +01003662 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01003663 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003664
Daniel Vetter2c10d572012-12-20 21:24:07 +01003665 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
Chris Wilson9c787942014-09-05 07:13:25 +01003666 if (WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3667 !intel_crtc_has_pending_flip(crtc),
3668 60*HZ) == 0)) {
3669 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter2c10d572012-12-20 21:24:07 +01003670
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003671 spin_lock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003672 if (intel_crtc->unpin_work) {
3673 WARN_ONCE(1, "Removing stuck page flip\n");
3674 page_flip_completed(intel_crtc);
3675 }
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003676 spin_unlock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003677 }
Chris Wilson5bb61642012-09-27 21:25:58 +01003678
Chris Wilson975d5682014-08-20 13:13:34 +01003679 if (crtc->primary->fb) {
3680 mutex_lock(&dev->struct_mutex);
3681 intel_finish_fb(crtc->primary->fb);
3682 mutex_unlock(&dev->struct_mutex);
3683 }
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003684}
3685
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003686/* Program iCLKIP clock to the desired frequency */
3687static void lpt_program_iclkip(struct drm_crtc *crtc)
3688{
3689 struct drm_device *dev = crtc->dev;
3690 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003691 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003692 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3693 u32 temp;
3694
Daniel Vetter09153002012-12-12 14:06:44 +01003695 mutex_lock(&dev_priv->dpio_lock);
3696
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003697 /* It is necessary to ungate the pixclk gate prior to programming
3698 * the divisors, and gate it back when it is done.
3699 */
3700 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3701
3702 /* Disable SSCCTL */
3703 intel_sbi_write(dev_priv, SBI_SSCCTL6,
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003704 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
3705 SBI_SSCCTL_DISABLE,
3706 SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003707
3708 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003709 if (clock == 20000) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003710 auxdiv = 1;
3711 divsel = 0x41;
3712 phaseinc = 0x20;
3713 } else {
3714 /* The iCLK virtual clock root frequency is in MHz,
Damien Lespiau241bfc32013-09-25 16:45:37 +01003715 * but the adjusted_mode->crtc_clock in in KHz. To get the
3716 * divisors, it is necessary to divide one by another, so we
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003717 * convert the virtual clock precision to KHz here for higher
3718 * precision.
3719 */
3720 u32 iclk_virtual_root_freq = 172800 * 1000;
3721 u32 iclk_pi_range = 64;
3722 u32 desired_divisor, msb_divisor_value, pi_value;
3723
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003724 desired_divisor = (iclk_virtual_root_freq / clock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003725 msb_divisor_value = desired_divisor / iclk_pi_range;
3726 pi_value = desired_divisor % iclk_pi_range;
3727
3728 auxdiv = 0;
3729 divsel = msb_divisor_value - 2;
3730 phaseinc = pi_value;
3731 }
3732
3733 /* This should not happen with any sane values */
3734 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3735 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3736 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3737 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3738
3739 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 +03003740 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003741 auxdiv,
3742 divsel,
3743 phasedir,
3744 phaseinc);
3745
3746 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003747 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003748 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3749 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3750 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3751 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3752 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3753 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003754 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003755
3756 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003757 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003758 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3759 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003760 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003761
3762 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003763 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003764 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003765 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003766
3767 /* Wait for initialization time */
3768 udelay(24);
3769
3770 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
Daniel Vetter09153002012-12-12 14:06:44 +01003771
3772 mutex_unlock(&dev_priv->dpio_lock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003773}
3774
Daniel Vetter275f01b22013-05-03 11:49:47 +02003775static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3776 enum pipe pch_transcoder)
3777{
3778 struct drm_device *dev = crtc->base.dev;
3779 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003780 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Daniel Vetter275f01b22013-05-03 11:49:47 +02003781
3782 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
3783 I915_READ(HTOTAL(cpu_transcoder)));
3784 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
3785 I915_READ(HBLANK(cpu_transcoder)));
3786 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
3787 I915_READ(HSYNC(cpu_transcoder)));
3788
3789 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
3790 I915_READ(VTOTAL(cpu_transcoder)));
3791 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
3792 I915_READ(VBLANK(cpu_transcoder)));
3793 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
3794 I915_READ(VSYNC(cpu_transcoder)));
3795 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
3796 I915_READ(VSYNCSHIFT(cpu_transcoder)));
3797}
3798
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02003799static void cpt_set_fdi_bc_bifurcation(struct drm_device *dev, bool enable)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003800{
3801 struct drm_i915_private *dev_priv = dev->dev_private;
3802 uint32_t temp;
3803
3804 temp = I915_READ(SOUTH_CHICKEN1);
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02003805 if (!!(temp & FDI_BC_BIFURCATION_SELECT) == enable)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003806 return;
3807
3808 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3809 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3810
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02003811 temp &= ~FDI_BC_BIFURCATION_SELECT;
3812 if (enable)
3813 temp |= FDI_BC_BIFURCATION_SELECT;
3814
3815 DRM_DEBUG_KMS("%sabling fdi C rx\n", enable ? "en" : "dis");
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003816 I915_WRITE(SOUTH_CHICKEN1, temp);
3817 POSTING_READ(SOUTH_CHICKEN1);
3818}
3819
3820static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
3821{
3822 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003823
3824 switch (intel_crtc->pipe) {
3825 case PIPE_A:
3826 break;
3827 case PIPE_B:
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003828 if (intel_crtc->config->fdi_lanes > 2)
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02003829 cpt_set_fdi_bc_bifurcation(dev, false);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003830 else
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02003831 cpt_set_fdi_bc_bifurcation(dev, true);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003832
3833 break;
3834 case PIPE_C:
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02003835 cpt_set_fdi_bc_bifurcation(dev, true);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003836
3837 break;
3838 default:
3839 BUG();
3840 }
3841}
3842
Jesse Barnesf67a5592011-01-05 10:31:48 -08003843/*
3844 * Enable PCH resources required for PCH ports:
3845 * - PCH PLLs
3846 * - FDI training & RX/TX
3847 * - update transcoder timings
3848 * - DP transcoding bits
3849 * - transcoder
3850 */
3851static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003852{
3853 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003854 struct drm_i915_private *dev_priv = dev->dev_private;
3855 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3856 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003857 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003858
Daniel Vetterab9412b2013-05-03 11:49:46 +02003859 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01003860
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003861 if (IS_IVYBRIDGE(dev))
3862 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
3863
Daniel Vettercd986ab2012-10-26 10:58:12 +02003864 /* Write the TU size bits before fdi link training, so that error
3865 * detection works. */
3866 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3867 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3868
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003869 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07003870 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003871
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003872 /* We need to program the right clock selection before writing the pixel
3873 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003874 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003875 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07003876
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003877 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02003878 temp |= TRANS_DPLL_ENABLE(pipe);
3879 sel = TRANS_DPLLB_SEL(pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003880 if (intel_crtc->config->shared_dpll == DPLL_ID_PCH_PLL_B)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003881 temp |= sel;
3882 else
3883 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003884 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003885 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003886
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003887 /* XXX: pch pll's can be enabled any time before we enable the PCH
3888 * transcoder, and we actually should do this to not upset any PCH
3889 * transcoder that already use the clock when we share it.
3890 *
3891 * Note that enable_shared_dpll tries to do the right thing, but
3892 * get_shared_dpll unconditionally resets the pll - we need that to have
3893 * the right LVDS enable sequence. */
Daniel Vetter85b38942014-04-24 23:55:14 +02003894 intel_enable_shared_dpll(intel_crtc);
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003895
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08003896 /* set transcoder timing, panel must allow it */
3897 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02003898 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003899
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003900 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003901
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003902 /* For PCH DP, enable TRANS_DP_CTL */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003903 if (HAS_PCH_CPT(dev) && intel_crtc->config->has_dp_encoder) {
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003904 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01003905 reg = TRANS_DP_CTL(pipe);
3906 temp = I915_READ(reg);
3907 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08003908 TRANS_DP_SYNC_MASK |
3909 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01003910 temp |= (TRANS_DP_OUTPUT_ENABLE |
3911 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003912 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003913
3914 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003915 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003916 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003917 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003918
3919 switch (intel_trans_dp_port_sel(crtc)) {
3920 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01003921 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003922 break;
3923 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01003924 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003925 break;
3926 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01003927 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003928 break;
3929 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02003930 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003931 }
3932
Chris Wilson5eddb702010-09-11 13:48:45 +01003933 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003934 }
3935
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003936 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003937}
3938
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003939static void lpt_pch_enable(struct drm_crtc *crtc)
3940{
3941 struct drm_device *dev = crtc->dev;
3942 struct drm_i915_private *dev_priv = dev->dev_private;
3943 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003944 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003945
Daniel Vetterab9412b2013-05-03 11:49:46 +02003946 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003947
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02003948 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003949
Paulo Zanoni0540e482012-10-31 18:12:40 -02003950 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02003951 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003952
Paulo Zanoni937bb612012-10-31 18:12:47 -02003953 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003954}
3955
Daniel Vetter716c2e52014-06-25 22:02:02 +03003956void intel_put_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003957{
Daniel Vettere2b78262013-06-07 23:10:03 +02003958 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003959
3960 if (pll == NULL)
3961 return;
3962
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02003963 if (!(pll->config.crtc_mask & (1 << crtc->pipe))) {
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +02003964 WARN(1, "bad %s crtc mask\n", pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003965 return;
3966 }
3967
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02003968 pll->config.crtc_mask &= ~(1 << crtc->pipe);
3969 if (pll->config.crtc_mask == 0) {
Daniel Vetterf4a091c2013-06-10 17:28:22 +02003970 WARN_ON(pll->on);
3971 WARN_ON(pll->active);
3972 }
3973
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003974 crtc->config->shared_dpll = DPLL_ID_PRIVATE;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003975}
3976
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02003977struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc,
3978 struct intel_crtc_state *crtc_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003979{
Daniel Vettere2b78262013-06-07 23:10:03 +02003980 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003981 struct intel_shared_dpll *pll;
Daniel Vettere2b78262013-06-07 23:10:03 +02003982 enum intel_dpll_id i;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003983
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003984 if (HAS_PCH_IBX(dev_priv->dev)) {
3985 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
Daniel Vetterd94ab062013-07-04 12:01:16 +02003986 i = (enum intel_dpll_id) crtc->pipe;
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003987 pll = &dev_priv->shared_dplls[i];
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003988
Daniel Vetter46edb022013-06-05 13:34:12 +02003989 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
3990 crtc->base.base.id, pll->name);
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003991
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02003992 WARN_ON(pll->new_config->crtc_mask);
Daniel Vetterf2a69f42014-05-20 15:19:19 +02003993
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003994 goto found;
3995 }
3996
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003997 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3998 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003999
4000 /* Only want to check enabled timings first */
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004001 if (pll->new_config->crtc_mask == 0)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004002 continue;
4003
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004004 if (memcmp(&crtc_state->dpll_hw_state,
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004005 &pll->new_config->hw_state,
4006 sizeof(pll->new_config->hw_state)) == 0) {
4007 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (crtc mask 0x%08x, ative %d)\n",
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +02004008 crtc->base.base.id, pll->name,
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004009 pll->new_config->crtc_mask,
4010 pll->active);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004011 goto found;
4012 }
4013 }
4014
4015 /* Ok no matching timings, maybe there's a free one? */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004016 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4017 pll = &dev_priv->shared_dplls[i];
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004018 if (pll->new_config->crtc_mask == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02004019 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
4020 crtc->base.base.id, pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004021 goto found;
4022 }
4023 }
4024
4025 return NULL;
4026
4027found:
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004028 if (pll->new_config->crtc_mask == 0)
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004029 pll->new_config->hw_state = crtc_state->dpll_hw_state;
Daniel Vetterf2a69f42014-05-20 15:19:19 +02004030
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004031 crtc_state->shared_dpll = i;
Daniel Vetter46edb022013-06-05 13:34:12 +02004032 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
4033 pipe_name(crtc->pipe));
Daniel Vetter66e985c2013-06-05 13:34:20 +02004034
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004035 pll->new_config->crtc_mask |= 1 << crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004036
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004037 return pll;
4038}
4039
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004040/**
4041 * intel_shared_dpll_start_config - start a new PLL staged config
4042 * @dev_priv: DRM device
4043 * @clear_pipes: mask of pipes that will have their PLLs freed
4044 *
4045 * Starts a new PLL staged config, copying the current config but
4046 * releasing the references of pipes specified in clear_pipes.
4047 */
4048static int intel_shared_dpll_start_config(struct drm_i915_private *dev_priv,
4049 unsigned clear_pipes)
4050{
4051 struct intel_shared_dpll *pll;
4052 enum intel_dpll_id i;
4053
4054 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4055 pll = &dev_priv->shared_dplls[i];
4056
4057 pll->new_config = kmemdup(&pll->config, sizeof pll->config,
4058 GFP_KERNEL);
4059 if (!pll->new_config)
4060 goto cleanup;
4061
4062 pll->new_config->crtc_mask &= ~clear_pipes;
4063 }
4064
4065 return 0;
4066
4067cleanup:
4068 while (--i >= 0) {
4069 pll = &dev_priv->shared_dplls[i];
Ander Conselvan de Oliveiraf354d732014-11-07 14:07:41 +02004070 kfree(pll->new_config);
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004071 pll->new_config = NULL;
4072 }
4073
4074 return -ENOMEM;
4075}
4076
4077static void intel_shared_dpll_commit(struct drm_i915_private *dev_priv)
4078{
4079 struct intel_shared_dpll *pll;
4080 enum intel_dpll_id i;
4081
4082 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4083 pll = &dev_priv->shared_dplls[i];
4084
4085 WARN_ON(pll->new_config == &pll->config);
4086
4087 pll->config = *pll->new_config;
4088 kfree(pll->new_config);
4089 pll->new_config = NULL;
4090 }
4091}
4092
4093static void intel_shared_dpll_abort_config(struct drm_i915_private *dev_priv)
4094{
4095 struct intel_shared_dpll *pll;
4096 enum intel_dpll_id i;
4097
4098 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4099 pll = &dev_priv->shared_dplls[i];
4100
4101 WARN_ON(pll->new_config == &pll->config);
4102
4103 kfree(pll->new_config);
4104 pll->new_config = NULL;
4105 }
4106}
4107
Daniel Vettera1520312013-05-03 11:49:50 +02004108static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07004109{
4110 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01004111 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07004112 u32 temp;
4113
4114 temp = I915_READ(dslreg);
4115 udelay(500);
4116 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07004117 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03004118 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07004119 }
4120}
4121
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004122static void skylake_pfit_enable(struct intel_crtc *crtc)
4123{
4124 struct drm_device *dev = crtc->base.dev;
4125 struct drm_i915_private *dev_priv = dev->dev_private;
4126 int pipe = crtc->pipe;
4127
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004128 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004129 I915_WRITE(PS_CTL(pipe), PS_ENABLE);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004130 I915_WRITE(PS_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4131 I915_WRITE(PS_WIN_SZ(pipe), crtc->config->pch_pfit.size);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004132 }
4133}
4134
Jesse Barnesb074cec2013-04-25 12:55:02 -07004135static void ironlake_pfit_enable(struct intel_crtc *crtc)
4136{
4137 struct drm_device *dev = crtc->base.dev;
4138 struct drm_i915_private *dev_priv = dev->dev_private;
4139 int pipe = crtc->pipe;
4140
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004141 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07004142 /* Force use of hard-coded filter coefficients
4143 * as some pre-programmed values are broken,
4144 * e.g. x201.
4145 */
4146 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
4147 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4148 PF_PIPE_SEL_IVB(pipe));
4149 else
4150 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004151 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4152 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08004153 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004154}
4155
Matt Roper4a3b8762014-12-23 10:41:51 -08004156static void intel_enable_sprite_planes(struct drm_crtc *crtc)
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004157{
4158 struct drm_device *dev = crtc->dev;
4159 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07004160 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004161 struct intel_plane *intel_plane;
4162
Matt Roperaf2b6532014-04-01 15:22:32 -07004163 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
4164 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004165 if (intel_plane->pipe == pipe)
4166 intel_plane_restore(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07004167 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004168}
4169
Matt Roper0d703d42015-03-04 10:49:04 -08004170/*
4171 * Disable a plane internally without actually modifying the plane's state.
4172 * This will allow us to easily restore the plane later by just reprogramming
4173 * its state.
4174 */
4175static void disable_plane_internal(struct drm_plane *plane)
4176{
4177 struct intel_plane *intel_plane = to_intel_plane(plane);
4178 struct drm_plane_state *state =
4179 plane->funcs->atomic_duplicate_state(plane);
4180 struct intel_plane_state *intel_state = to_intel_plane_state(state);
4181
4182 intel_state->visible = false;
4183 intel_plane->commit_plane(plane, intel_state);
4184
4185 intel_plane_destroy_state(plane, state);
4186}
4187
Matt Roper4a3b8762014-12-23 10:41:51 -08004188static void intel_disable_sprite_planes(struct drm_crtc *crtc)
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004189{
4190 struct drm_device *dev = crtc->dev;
4191 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07004192 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004193 struct intel_plane *intel_plane;
4194
Matt Roperaf2b6532014-04-01 15:22:32 -07004195 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
4196 intel_plane = to_intel_plane(plane);
Matt Roper0d703d42015-03-04 10:49:04 -08004197 if (plane->fb && intel_plane->pipe == pipe)
4198 disable_plane_internal(plane);
Matt Roperaf2b6532014-04-01 15:22:32 -07004199 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004200}
4201
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004202void hsw_enable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004203{
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004204 struct drm_device *dev = crtc->base.dev;
4205 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid77e4532013-09-24 13:52:55 -03004206
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004207 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004208 return;
4209
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004210 /* We can only enable IPS after we enable a plane and wait for a vblank */
4211 intel_wait_for_vblank(dev, crtc->pipe);
4212
Paulo Zanonid77e4532013-09-24 13:52:55 -03004213 assert_plane_enabled(dev_priv, crtc->plane);
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004214 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004215 mutex_lock(&dev_priv->rps.hw_lock);
4216 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4217 mutex_unlock(&dev_priv->rps.hw_lock);
4218 /* Quoting Art Runyan: "its not safe to expect any particular
4219 * value in IPS_CTL bit 31 after enabling IPS through the
Jesse Barnese59150d2014-01-07 13:30:45 -08004220 * mailbox." Moreover, the mailbox may return a bogus state,
4221 * so we need to just enable it and continue on.
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004222 */
4223 } else {
4224 I915_WRITE(IPS_CTL, IPS_ENABLE);
4225 /* The bit only becomes 1 in the next vblank, so this wait here
4226 * is essentially intel_wait_for_vblank. If we don't have this
4227 * and don't wait for vblanks until the end of crtc_enable, then
4228 * the HW state readout code will complain that the expected
4229 * IPS_CTL value is not the one we read. */
4230 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
4231 DRM_ERROR("Timed out waiting for IPS enable\n");
4232 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004233}
4234
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004235void hsw_disable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004236{
4237 struct drm_device *dev = crtc->base.dev;
4238 struct drm_i915_private *dev_priv = dev->dev_private;
4239
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004240 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004241 return;
4242
4243 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004244 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004245 mutex_lock(&dev_priv->rps.hw_lock);
4246 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4247 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004248 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
4249 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
4250 DRM_ERROR("Timed out waiting for IPS disable\n");
Jesse Barnese59150d2014-01-07 13:30:45 -08004251 } else {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004252 I915_WRITE(IPS_CTL, 0);
Jesse Barnese59150d2014-01-07 13:30:45 -08004253 POSTING_READ(IPS_CTL);
4254 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004255
4256 /* We need to wait for a vblank before we can disable the plane. */
4257 intel_wait_for_vblank(dev, crtc->pipe);
4258}
4259
4260/** Loads the palette/gamma unit for the CRTC with the prepared values */
4261static void intel_crtc_load_lut(struct drm_crtc *crtc)
4262{
4263 struct drm_device *dev = crtc->dev;
4264 struct drm_i915_private *dev_priv = dev->dev_private;
4265 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4266 enum pipe pipe = intel_crtc->pipe;
4267 int palreg = PALETTE(pipe);
4268 int i;
4269 bool reenable_ips = false;
4270
4271 /* The clocks have to be on to load the palette. */
Matt Roper83d65732015-02-25 13:12:16 -08004272 if (!crtc->state->enable || !intel_crtc->active)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004273 return;
4274
4275 if (!HAS_PCH_SPLIT(dev_priv->dev)) {
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03004276 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI))
Paulo Zanonid77e4532013-09-24 13:52:55 -03004277 assert_dsi_pll_enabled(dev_priv);
4278 else
4279 assert_pll_enabled(dev_priv, pipe);
4280 }
4281
4282 /* use legacy palette for Ironlake */
Sonika Jindal7a1db492014-07-22 11:18:27 +05304283 if (!HAS_GMCH_DISPLAY(dev))
Paulo Zanonid77e4532013-09-24 13:52:55 -03004284 palreg = LGC_PALETTE(pipe);
4285
4286 /* Workaround : Do not read or write the pipe palette/gamma data while
4287 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
4288 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004289 if (IS_HASWELL(dev) && intel_crtc->config->ips_enabled &&
Paulo Zanonid77e4532013-09-24 13:52:55 -03004290 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
4291 GAMMA_MODE_MODE_SPLIT)) {
4292 hsw_disable_ips(intel_crtc);
4293 reenable_ips = true;
4294 }
4295
4296 for (i = 0; i < 256; i++) {
4297 I915_WRITE(palreg + 4 * i,
4298 (intel_crtc->lut_r[i] << 16) |
4299 (intel_crtc->lut_g[i] << 8) |
4300 intel_crtc->lut_b[i]);
4301 }
4302
4303 if (reenable_ips)
4304 hsw_enable_ips(intel_crtc);
4305}
4306
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004307static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
4308{
4309 if (!enable && intel_crtc->overlay) {
4310 struct drm_device *dev = intel_crtc->base.dev;
4311 struct drm_i915_private *dev_priv = dev->dev_private;
4312
4313 mutex_lock(&dev->struct_mutex);
4314 dev_priv->mm.interruptible = false;
4315 (void) intel_overlay_switch_off(intel_crtc->overlay);
4316 dev_priv->mm.interruptible = true;
4317 mutex_unlock(&dev->struct_mutex);
4318 }
4319
4320 /* Let userspace switch the overlay on again. In most cases userspace
4321 * has to recompute where to put it anyway.
4322 */
4323}
4324
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004325static void intel_crtc_enable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004326{
4327 struct drm_device *dev = crtc->dev;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004328 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4329 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004330
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03004331 intel_enable_primary_hw_plane(crtc->primary, crtc);
Matt Roper4a3b8762014-12-23 10:41:51 -08004332 intel_enable_sprite_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004333 intel_crtc_update_cursor(crtc, true);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004334 intel_crtc_dpms_overlay(intel_crtc, true);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004335
4336 hsw_enable_ips(intel_crtc);
4337
4338 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004339 intel_fbc_update(dev);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004340 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf99d7062014-06-19 16:01:59 +02004341
4342 /*
4343 * FIXME: Once we grow proper nuclear flip support out of this we need
4344 * to compute the mask of flip planes precisely. For the time being
4345 * consider this a flip from a NULL plane.
4346 */
4347 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004348}
4349
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004350static void intel_crtc_disable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004351{
4352 struct drm_device *dev = crtc->dev;
4353 struct drm_i915_private *dev_priv = dev->dev_private;
4354 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4355 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004356
4357 intel_crtc_wait_for_pending_flips(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004358
Paulo Zanonie35fef22015-02-09 14:46:29 -02004359 if (dev_priv->fbc.crtc == intel_crtc)
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004360 intel_fbc_disable(dev);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004361
4362 hsw_disable_ips(intel_crtc);
4363
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004364 intel_crtc_dpms_overlay(intel_crtc, false);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004365 intel_crtc_update_cursor(crtc, false);
Matt Roper4a3b8762014-12-23 10:41:51 -08004366 intel_disable_sprite_planes(crtc);
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03004367 intel_disable_primary_hw_plane(crtc->primary, crtc);
Ville Syrjäläf98551a2014-05-22 17:48:06 +03004368
Daniel Vetterf99d7062014-06-19 16:01:59 +02004369 /*
4370 * FIXME: Once we grow proper nuclear flip support out of this we need
4371 * to compute the mask of flip planes precisely. For the time being
4372 * consider this a flip to a NULL plane.
4373 */
4374 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004375}
4376
Jesse Barnesf67a5592011-01-05 10:31:48 -08004377static void ironlake_crtc_enable(struct drm_crtc *crtc)
4378{
4379 struct drm_device *dev = crtc->dev;
4380 struct drm_i915_private *dev_priv = dev->dev_private;
4381 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004382 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004383 int pipe = intel_crtc->pipe;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004384
Matt Roper83d65732015-02-25 13:12:16 -08004385 WARN_ON(!crtc->state->enable);
Daniel Vetter08a48462012-07-02 11:43:47 +02004386
Jesse Barnesf67a5592011-01-05 10:31:48 -08004387 if (intel_crtc->active)
4388 return;
4389
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004390 if (intel_crtc->config->has_pch_encoder)
Daniel Vetterb14b1052014-04-24 23:55:13 +02004391 intel_prepare_shared_dpll(intel_crtc);
4392
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004393 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd482015-02-13 15:32:59 +05304394 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004395
4396 intel_set_pipe_timings(intel_crtc);
4397
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004398 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter29407aa2014-04-24 23:55:08 +02004399 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004400 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004401 }
4402
4403 ironlake_set_pipeconf(crtc);
4404
Jesse Barnesf67a5592011-01-05 10:31:48 -08004405 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004406
Daniel Vettera72e4c92014-09-30 10:56:47 +02004407 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4408 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni86642812013-04-12 17:57:57 -03004409
Daniel Vetterf6736a12013-06-05 13:34:30 +02004410 for_each_encoder_on_crtc(dev, crtc, encoder)
Daniel Vetter952735e2013-06-05 13:34:27 +02004411 if (encoder->pre_enable)
4412 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004413
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004414 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02004415 /* Note: FDI PLL enabling _must_ be done before we enable the
4416 * cpu pipes, hence this is separate from all the other fdi/pch
4417 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02004418 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02004419 } else {
4420 assert_fdi_tx_disabled(dev_priv, pipe);
4421 assert_fdi_rx_disabled(dev_priv, pipe);
4422 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004423
Jesse Barnesb074cec2013-04-25 12:55:02 -07004424 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004425
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02004426 /*
4427 * On ILK+ LUT must be loaded before the pipe is running but with
4428 * clocks enabled
4429 */
4430 intel_crtc_load_lut(crtc);
4431
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004432 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004433 intel_enable_pipe(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004434
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004435 if (intel_crtc->config->has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08004436 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004437
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004438 assert_vblank_disabled(crtc);
4439 drm_crtc_vblank_on(crtc);
4440
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004441 for_each_encoder_on_crtc(dev, crtc, encoder)
4442 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02004443
4444 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02004445 cpt_verify_modeset(dev, intel_crtc->pipe);
Daniel Vetter6ce94102012-10-04 19:20:03 +02004446
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004447 intel_crtc_enable_planes(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004448}
4449
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004450/* IPS only exists on ULT machines and is tied to pipe A. */
4451static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4452{
Damien Lespiauf5adf942013-06-24 18:29:34 +01004453 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004454}
4455
Paulo Zanonie4916942013-09-20 16:21:19 -03004456/*
4457 * This implements the workaround described in the "notes" section of the mode
4458 * set sequence documentation. When going from no pipes or single pipe to
4459 * multiple pipes, and planes are enabled after the pipe, we need to wait at
4460 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
4461 */
4462static void haswell_mode_set_planes_workaround(struct intel_crtc *crtc)
4463{
4464 struct drm_device *dev = crtc->base.dev;
4465 struct intel_crtc *crtc_it, *other_active_crtc = NULL;
4466
4467 /* We want to get the other_active_crtc only if there's only 1 other
4468 * active crtc. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004469 for_each_intel_crtc(dev, crtc_it) {
Paulo Zanonie4916942013-09-20 16:21:19 -03004470 if (!crtc_it->active || crtc_it == crtc)
4471 continue;
4472
4473 if (other_active_crtc)
4474 return;
4475
4476 other_active_crtc = crtc_it;
4477 }
4478 if (!other_active_crtc)
4479 return;
4480
4481 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4482 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4483}
4484
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004485static void haswell_crtc_enable(struct drm_crtc *crtc)
4486{
4487 struct drm_device *dev = crtc->dev;
4488 struct drm_i915_private *dev_priv = dev->dev_private;
4489 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4490 struct intel_encoder *encoder;
4491 int pipe = intel_crtc->pipe;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004492
Matt Roper83d65732015-02-25 13:12:16 -08004493 WARN_ON(!crtc->state->enable);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004494
4495 if (intel_crtc->active)
4496 return;
4497
Daniel Vetterdf8ad702014-06-25 22:02:03 +03004498 if (intel_crtc_to_shared_dpll(intel_crtc))
4499 intel_enable_shared_dpll(intel_crtc);
4500
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004501 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd482015-02-13 15:32:59 +05304502 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter229fca92014-04-24 23:55:09 +02004503
4504 intel_set_pipe_timings(intel_crtc);
4505
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004506 if (intel_crtc->config->cpu_transcoder != TRANSCODER_EDP) {
4507 I915_WRITE(PIPE_MULT(intel_crtc->config->cpu_transcoder),
4508 intel_crtc->config->pixel_multiplier - 1);
Clint Taylorebb69c92014-09-30 10:30:22 -07004509 }
4510
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004511 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter229fca92014-04-24 23:55:09 +02004512 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004513 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter229fca92014-04-24 23:55:09 +02004514 }
4515
4516 haswell_set_pipeconf(crtc);
4517
4518 intel_set_pipe_csc(crtc);
4519
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004520 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004521
Daniel Vettera72e4c92014-09-30 10:56:47 +02004522 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004523 for_each_encoder_on_crtc(dev, crtc, encoder)
4524 if (encoder->pre_enable)
4525 encoder->pre_enable(encoder);
4526
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004527 if (intel_crtc->config->has_pch_encoder) {
Daniel Vettera72e4c92014-09-30 10:56:47 +02004528 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4529 true);
Imre Deak4fe94672014-06-25 22:01:49 +03004530 dev_priv->display.fdi_link_train(crtc);
4531 }
4532
Paulo Zanoni1f544382012-10-24 11:32:00 -02004533 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004534
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004535 if (IS_SKYLAKE(dev))
4536 skylake_pfit_enable(intel_crtc);
4537 else
4538 ironlake_pfit_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004539
4540 /*
4541 * On ILK+ LUT must be loaded before the pipe is running but with
4542 * clocks enabled
4543 */
4544 intel_crtc_load_lut(crtc);
4545
Paulo Zanoni1f544382012-10-24 11:32:00 -02004546 intel_ddi_set_pipe_settings(crtc);
Damien Lespiau8228c252013-03-07 15:30:27 +00004547 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004548
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004549 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004550 intel_enable_pipe(intel_crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004551
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004552 if (intel_crtc->config->has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004553 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004554
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004555 if (intel_crtc->config->dp_encoder_is_mst)
Dave Airlie0e32b392014-05-02 14:02:48 +10004556 intel_ddi_set_vc_payload_alloc(crtc, true);
4557
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004558 assert_vblank_disabled(crtc);
4559 drm_crtc_vblank_on(crtc);
4560
Jani Nikula8807e552013-08-30 19:40:32 +03004561 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004562 encoder->enable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004563 intel_opregion_notify_encoder(encoder, true);
4564 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004565
Paulo Zanonie4916942013-09-20 16:21:19 -03004566 /* If we change the relative order between pipe/planes enabling, we need
4567 * to change the workaround. */
4568 haswell_mode_set_planes_workaround(intel_crtc);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004569 intel_crtc_enable_planes(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004570}
4571
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004572static void skylake_pfit_disable(struct intel_crtc *crtc)
4573{
4574 struct drm_device *dev = crtc->base.dev;
4575 struct drm_i915_private *dev_priv = dev->dev_private;
4576 int pipe = crtc->pipe;
4577
4578 /* To avoid upsetting the power well on haswell only disable the pfit if
4579 * it's in use. The hw state code will make sure we get this right. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004580 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004581 I915_WRITE(PS_CTL(pipe), 0);
4582 I915_WRITE(PS_WIN_POS(pipe), 0);
4583 I915_WRITE(PS_WIN_SZ(pipe), 0);
4584 }
4585}
4586
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004587static void ironlake_pfit_disable(struct intel_crtc *crtc)
4588{
4589 struct drm_device *dev = crtc->base.dev;
4590 struct drm_i915_private *dev_priv = dev->dev_private;
4591 int pipe = crtc->pipe;
4592
4593 /* To avoid upsetting the power well on haswell only disable the pfit if
4594 * it's in use. The hw state code will make sure we get this right. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004595 if (crtc->config->pch_pfit.enabled) {
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004596 I915_WRITE(PF_CTL(pipe), 0);
4597 I915_WRITE(PF_WIN_POS(pipe), 0);
4598 I915_WRITE(PF_WIN_SZ(pipe), 0);
4599 }
4600}
4601
Jesse Barnes6be4a602010-09-10 10:26:01 -07004602static void ironlake_crtc_disable(struct drm_crtc *crtc)
4603{
4604 struct drm_device *dev = crtc->dev;
4605 struct drm_i915_private *dev_priv = dev->dev_private;
4606 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004607 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004608 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01004609 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004610
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004611 if (!intel_crtc->active)
4612 return;
4613
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004614 intel_crtc_disable_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004615
Daniel Vetterea9d7582012-07-10 10:42:52 +02004616 for_each_encoder_on_crtc(dev, crtc, encoder)
4617 encoder->disable(encoder);
4618
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004619 drm_crtc_vblank_off(crtc);
4620 assert_vblank_disabled(crtc);
4621
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004622 if (intel_crtc->config->has_pch_encoder)
Daniel Vettera72e4c92014-09-30 10:56:47 +02004623 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
Daniel Vetterd925c592013-06-05 13:34:04 +02004624
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03004625 intel_disable_pipe(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004626
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004627 ironlake_pfit_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004628
Daniel Vetterbf49ec82012-09-06 22:15:40 +02004629 for_each_encoder_on_crtc(dev, crtc, encoder)
4630 if (encoder->post_disable)
4631 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004632
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004633 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterd925c592013-06-05 13:34:04 +02004634 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004635
Daniel Vetterd925c592013-06-05 13:34:04 +02004636 ironlake_disable_pch_transcoder(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004637
Daniel Vetterd925c592013-06-05 13:34:04 +02004638 if (HAS_PCH_CPT(dev)) {
4639 /* disable TRANS_DP_CTL */
4640 reg = TRANS_DP_CTL(pipe);
4641 temp = I915_READ(reg);
4642 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
4643 TRANS_DP_PORT_SEL_MASK);
4644 temp |= TRANS_DP_PORT_SEL_NONE;
4645 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004646
Daniel Vetterd925c592013-06-05 13:34:04 +02004647 /* disable DPLL_SEL */
4648 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02004649 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
Daniel Vetterd925c592013-06-05 13:34:04 +02004650 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004651 }
Daniel Vetterd925c592013-06-05 13:34:04 +02004652
4653 /* disable PCH DPLL */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004654 intel_disable_shared_dpll(intel_crtc);
Daniel Vetterd925c592013-06-05 13:34:04 +02004655
4656 ironlake_fdi_pll_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004657 }
4658
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004659 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004660 intel_update_watermarks(crtc);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004661
4662 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004663 intel_fbc_update(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004664 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004665}
4666
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004667static void haswell_crtc_disable(struct drm_crtc *crtc)
4668{
4669 struct drm_device *dev = crtc->dev;
4670 struct drm_i915_private *dev_priv = dev->dev_private;
4671 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4672 struct intel_encoder *encoder;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004673 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004674
4675 if (!intel_crtc->active)
4676 return;
4677
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004678 intel_crtc_disable_planes(crtc);
Ville Syrjälädda9a662013-09-19 17:00:37 -03004679
Jani Nikula8807e552013-08-30 19:40:32 +03004680 for_each_encoder_on_crtc(dev, crtc, encoder) {
4681 intel_opregion_notify_encoder(encoder, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004682 encoder->disable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004683 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004684
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004685 drm_crtc_vblank_off(crtc);
4686 assert_vblank_disabled(crtc);
4687
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004688 if (intel_crtc->config->has_pch_encoder)
Daniel Vettera72e4c92014-09-30 10:56:47 +02004689 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4690 false);
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03004691 intel_disable_pipe(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004692
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004693 if (intel_crtc->config->dp_encoder_is_mst)
Ville Syrjäläa4bf2142014-08-18 21:27:34 +03004694 intel_ddi_set_vc_payload_alloc(crtc, false);
4695
Paulo Zanoniad80a812012-10-24 16:06:19 -02004696 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004697
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004698 if (IS_SKYLAKE(dev))
4699 skylake_pfit_disable(intel_crtc);
4700 else
4701 ironlake_pfit_disable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004702
Paulo Zanoni1f544382012-10-24 11:32:00 -02004703 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004704
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004705 if (intel_crtc->config->has_pch_encoder) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02004706 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02004707 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02004708 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004709
Imre Deak97b040a2014-06-25 22:01:50 +03004710 for_each_encoder_on_crtc(dev, crtc, encoder)
4711 if (encoder->post_disable)
4712 encoder->post_disable(encoder);
4713
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004714 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004715 intel_update_watermarks(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004716
4717 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004718 intel_fbc_update(dev);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004719 mutex_unlock(&dev->struct_mutex);
Daniel Vetterdf8ad702014-06-25 22:02:03 +03004720
4721 if (intel_crtc_to_shared_dpll(intel_crtc))
4722 intel_disable_shared_dpll(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004723}
4724
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004725static void ironlake_crtc_off(struct drm_crtc *crtc)
4726{
4727 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004728 intel_put_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004729}
4730
Paulo Zanoni6441ab52012-10-05 12:05:58 -03004731
Jesse Barnes2dd24552013-04-25 12:55:01 -07004732static void i9xx_pfit_enable(struct intel_crtc *crtc)
4733{
4734 struct drm_device *dev = crtc->base.dev;
4735 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004736 struct intel_crtc_state *pipe_config = crtc->config;
Jesse Barnes2dd24552013-04-25 12:55:01 -07004737
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02004738 if (!pipe_config->gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07004739 return;
4740
Daniel Vetterc0b03412013-05-28 12:05:54 +02004741 /*
4742 * The panel fitter should only be adjusted whilst the pipe is disabled,
4743 * according to register description and PRM.
4744 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07004745 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
4746 assert_pipe_disabled(dev_priv, crtc->pipe);
4747
Jesse Barnesb074cec2013-04-25 12:55:02 -07004748 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
4749 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02004750
4751 /* Border color in case we don't scale up to the full screen. Black by
4752 * default, change to something else for debugging. */
4753 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07004754}
4755
Dave Airlied05410f2014-06-05 13:22:59 +10004756static enum intel_display_power_domain port_to_power_domain(enum port port)
4757{
4758 switch (port) {
4759 case PORT_A:
4760 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
4761 case PORT_B:
4762 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
4763 case PORT_C:
4764 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
4765 case PORT_D:
4766 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
4767 default:
4768 WARN_ON_ONCE(1);
4769 return POWER_DOMAIN_PORT_OTHER;
4770 }
4771}
4772
Imre Deak77d22dc2014-03-05 16:20:52 +02004773#define for_each_power_domain(domain, mask) \
4774 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
4775 if ((1 << (domain)) & (mask))
4776
Imre Deak319be8a2014-03-04 19:22:57 +02004777enum intel_display_power_domain
4778intel_display_port_power_domain(struct intel_encoder *intel_encoder)
Imre Deak77d22dc2014-03-05 16:20:52 +02004779{
Imre Deak319be8a2014-03-04 19:22:57 +02004780 struct drm_device *dev = intel_encoder->base.dev;
4781 struct intel_digital_port *intel_dig_port;
4782
4783 switch (intel_encoder->type) {
4784 case INTEL_OUTPUT_UNKNOWN:
4785 /* Only DDI platforms should ever use this output type */
4786 WARN_ON_ONCE(!HAS_DDI(dev));
4787 case INTEL_OUTPUT_DISPLAYPORT:
4788 case INTEL_OUTPUT_HDMI:
4789 case INTEL_OUTPUT_EDP:
4790 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
Dave Airlied05410f2014-06-05 13:22:59 +10004791 return port_to_power_domain(intel_dig_port->port);
Dave Airlie0e32b392014-05-02 14:02:48 +10004792 case INTEL_OUTPUT_DP_MST:
4793 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
4794 return port_to_power_domain(intel_dig_port->port);
Imre Deak319be8a2014-03-04 19:22:57 +02004795 case INTEL_OUTPUT_ANALOG:
4796 return POWER_DOMAIN_PORT_CRT;
4797 case INTEL_OUTPUT_DSI:
4798 return POWER_DOMAIN_PORT_DSI;
4799 default:
4800 return POWER_DOMAIN_PORT_OTHER;
4801 }
4802}
4803
4804static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
4805{
4806 struct drm_device *dev = crtc->dev;
4807 struct intel_encoder *intel_encoder;
4808 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4809 enum pipe pipe = intel_crtc->pipe;
Imre Deak77d22dc2014-03-05 16:20:52 +02004810 unsigned long mask;
4811 enum transcoder transcoder;
4812
4813 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
4814
4815 mask = BIT(POWER_DOMAIN_PIPE(pipe));
4816 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004817 if (intel_crtc->config->pch_pfit.enabled ||
4818 intel_crtc->config->pch_pfit.force_thru)
Imre Deak77d22dc2014-03-05 16:20:52 +02004819 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
4820
Imre Deak319be8a2014-03-04 19:22:57 +02004821 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4822 mask |= BIT(intel_display_port_power_domain(intel_encoder));
4823
Imre Deak77d22dc2014-03-05 16:20:52 +02004824 return mask;
4825}
4826
Imre Deak77d22dc2014-03-05 16:20:52 +02004827static void modeset_update_crtc_power_domains(struct drm_device *dev)
4828{
4829 struct drm_i915_private *dev_priv = dev->dev_private;
4830 unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
4831 struct intel_crtc *crtc;
4832
4833 /*
4834 * First get all needed power domains, then put all unneeded, to avoid
4835 * any unnecessary toggling of the power wells.
4836 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004837 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004838 enum intel_display_power_domain domain;
4839
Matt Roper83d65732015-02-25 13:12:16 -08004840 if (!crtc->base.state->enable)
Imre Deak77d22dc2014-03-05 16:20:52 +02004841 continue;
4842
Imre Deak319be8a2014-03-04 19:22:57 +02004843 pipe_domains[crtc->pipe] = get_crtc_power_domains(&crtc->base);
Imre Deak77d22dc2014-03-05 16:20:52 +02004844
4845 for_each_power_domain(domain, pipe_domains[crtc->pipe])
4846 intel_display_power_get(dev_priv, domain);
4847 }
4848
Ville Syrjälä50f6e502014-11-06 14:49:12 +02004849 if (dev_priv->display.modeset_global_resources)
4850 dev_priv->display.modeset_global_resources(dev);
4851
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004852 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004853 enum intel_display_power_domain domain;
4854
4855 for_each_power_domain(domain, crtc->enabled_power_domains)
4856 intel_display_power_put(dev_priv, domain);
4857
4858 crtc->enabled_power_domains = pipe_domains[crtc->pipe];
4859 }
4860
4861 intel_display_set_init_power(dev_priv, false);
4862}
4863
Ville Syrjälädfcab172014-06-13 13:37:47 +03004864/* returns HPLL frequency in kHz */
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004865static int valleyview_get_vco(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004866{
Jesse Barnes586f49d2013-11-04 16:06:59 -08004867 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
Jesse Barnes30a970c2013-11-04 13:48:12 -08004868
Jesse Barnes586f49d2013-11-04 16:06:59 -08004869 /* Obtain SKU information */
4870 mutex_lock(&dev_priv->dpio_lock);
4871 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
4872 CCK_FUSE_HPLL_FREQ_MASK;
4873 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004874
Ville Syrjälädfcab172014-06-13 13:37:47 +03004875 return vco_freq[hpll_freq] * 1000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004876}
4877
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004878static void vlv_update_cdclk(struct drm_device *dev)
4879{
4880 struct drm_i915_private *dev_priv = dev->dev_private;
4881
4882 dev_priv->vlv_cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
Ville Syrjälä43dc52c2014-10-07 17:41:20 +03004883 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004884 dev_priv->vlv_cdclk_freq);
4885
4886 /*
4887 * Program the gmbus_freq based on the cdclk frequency.
4888 * BSpec erroneously claims we should aim for 4MHz, but
4889 * in fact 1MHz is the correct frequency.
4890 */
Ville Syrjälä6be1e3d2014-10-16 20:52:31 +03004891 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->vlv_cdclk_freq, 1000));
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004892}
4893
Jesse Barnes30a970c2013-11-04 13:48:12 -08004894/* Adjust CDclk dividers to allow high res or save power if possible */
4895static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
4896{
4897 struct drm_i915_private *dev_priv = dev->dev_private;
4898 u32 val, cmd;
4899
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03004900 WARN_ON(dev_priv->display.get_display_clock_speed(dev) != dev_priv->vlv_cdclk_freq);
Imre Deakd60c4472014-03-27 17:45:10 +02004901
Ville Syrjälädfcab172014-06-13 13:37:47 +03004902 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
Jesse Barnes30a970c2013-11-04 13:48:12 -08004903 cmd = 2;
Ville Syrjälädfcab172014-06-13 13:37:47 +03004904 else if (cdclk == 266667)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004905 cmd = 1;
4906 else
4907 cmd = 0;
4908
4909 mutex_lock(&dev_priv->rps.hw_lock);
4910 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4911 val &= ~DSPFREQGUAR_MASK;
4912 val |= (cmd << DSPFREQGUAR_SHIFT);
4913 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4914 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4915 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
4916 50)) {
4917 DRM_ERROR("timed out waiting for CDclk change\n");
4918 }
4919 mutex_unlock(&dev_priv->rps.hw_lock);
4920
Ville Syrjälädfcab172014-06-13 13:37:47 +03004921 if (cdclk == 400000) {
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03004922 u32 divider;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004923
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03004924 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004925
4926 mutex_lock(&dev_priv->dpio_lock);
4927 /* adjust cdclk divider */
4928 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
Ville Syrjälä9cf33db2014-06-13 13:37:48 +03004929 val &= ~DISPLAY_FREQUENCY_VALUES;
Jesse Barnes30a970c2013-11-04 13:48:12 -08004930 val |= divider;
4931 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
Ville Syrjäläa877e802014-06-13 13:37:52 +03004932
4933 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
4934 DISPLAY_FREQUENCY_STATUS) == (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
4935 50))
4936 DRM_ERROR("timed out waiting for CDclk change\n");
Jesse Barnes30a970c2013-11-04 13:48:12 -08004937 mutex_unlock(&dev_priv->dpio_lock);
4938 }
4939
4940 mutex_lock(&dev_priv->dpio_lock);
4941 /* adjust self-refresh exit latency value */
4942 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
4943 val &= ~0x7f;
4944
4945 /*
4946 * For high bandwidth configs, we set a higher latency in the bunit
4947 * so that the core display fetch happens in time to avoid underruns.
4948 */
Ville Syrjälädfcab172014-06-13 13:37:47 +03004949 if (cdclk == 400000)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004950 val |= 4500 / 250; /* 4.5 usec */
4951 else
4952 val |= 3000 / 250; /* 3.0 usec */
4953 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
4954 mutex_unlock(&dev_priv->dpio_lock);
4955
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03004956 vlv_update_cdclk(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004957}
4958
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004959static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
4960{
4961 struct drm_i915_private *dev_priv = dev->dev_private;
4962 u32 val, cmd;
4963
4964 WARN_ON(dev_priv->display.get_display_clock_speed(dev) != dev_priv->vlv_cdclk_freq);
4965
4966 switch (cdclk) {
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004967 case 333333:
4968 case 320000:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004969 case 266667:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004970 case 200000:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004971 break;
4972 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01004973 MISSING_CASE(cdclk);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004974 return;
4975 }
4976
Ville Syrjälä9d0d3fd2015-03-02 20:07:17 +02004977 /*
4978 * Specs are full of misinformation, but testing on actual
4979 * hardware has shown that we just need to write the desired
4980 * CCK divider into the Punit register.
4981 */
4982 cmd = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
4983
Ville Syrjälä383c5a62014-06-28 02:03:57 +03004984 mutex_lock(&dev_priv->rps.hw_lock);
4985 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4986 val &= ~DSPFREQGUAR_MASK_CHV;
4987 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
4988 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4989 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4990 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
4991 50)) {
4992 DRM_ERROR("timed out waiting for CDclk change\n");
4993 }
4994 mutex_unlock(&dev_priv->rps.hw_lock);
4995
4996 vlv_update_cdclk(dev);
4997}
4998
Jesse Barnes30a970c2013-11-04 13:48:12 -08004999static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
5000 int max_pixclk)
5001{
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005002 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005003 int limit = IS_CHERRYVIEW(dev_priv) ? 95 : 90;
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005004
Jesse Barnes30a970c2013-11-04 13:48:12 -08005005 /*
5006 * Really only a few cases to deal with, as only 4 CDclks are supported:
5007 * 200MHz
5008 * 267MHz
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005009 * 320/333MHz (depends on HPLL freq)
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005010 * 400MHz (VLV only)
5011 * So we check to see whether we're above 90% (VLV) or 95% (CHV)
5012 * of the lower bin and adjust if needed.
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005013 *
5014 * We seem to get an unstable or solid color picture at 200MHz.
5015 * Not sure what's wrong. For now use 200MHz only when all pipes
5016 * are off.
Jesse Barnes30a970c2013-11-04 13:48:12 -08005017 */
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005018 if (!IS_CHERRYVIEW(dev_priv) &&
5019 max_pixclk > freq_320*limit/100)
Ville Syrjälädfcab172014-06-13 13:37:47 +03005020 return 400000;
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005021 else if (max_pixclk > 266667*limit/100)
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005022 return freq_320;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005023 else if (max_pixclk > 0)
Ville Syrjälädfcab172014-06-13 13:37:47 +03005024 return 266667;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005025 else
5026 return 200000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005027}
5028
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02005029/* compute the max pixel clock for new configuration */
5030static int intel_mode_max_pixclk(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005031{
5032 struct drm_device *dev = dev_priv->dev;
5033 struct intel_crtc *intel_crtc;
5034 int max_pixclk = 0;
5035
Damien Lespiaud3fcc802014-05-13 23:32:22 +01005036 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02005037 if (intel_crtc->new_enabled)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005038 max_pixclk = max(max_pixclk,
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02005039 intel_crtc->new_config->base.adjusted_mode.crtc_clock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005040 }
5041
5042 return max_pixclk;
5043}
5044
5045static void valleyview_modeset_global_pipes(struct drm_device *dev,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02005046 unsigned *prepare_pipes)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005047{
5048 struct drm_i915_private *dev_priv = dev->dev_private;
5049 struct intel_crtc *intel_crtc;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02005050 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005051
Imre Deakd60c4472014-03-27 17:45:10 +02005052 if (valleyview_calc_cdclk(dev_priv, max_pixclk) ==
5053 dev_priv->vlv_cdclk_freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005054 return;
5055
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02005056 /* disable/enable all currently active pipes while we change cdclk */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01005057 for_each_intel_crtc(dev, intel_crtc)
Matt Roper83d65732015-02-25 13:12:16 -08005058 if (intel_crtc->base.state->enable)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005059 *prepare_pipes |= (1 << intel_crtc->pipe);
5060}
5061
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02005062static void vlv_program_pfi_credits(struct drm_i915_private *dev_priv)
5063{
5064 unsigned int credits, default_credits;
5065
5066 if (IS_CHERRYVIEW(dev_priv))
5067 default_credits = PFI_CREDIT(12);
5068 else
5069 default_credits = PFI_CREDIT(8);
5070
5071 if (DIV_ROUND_CLOSEST(dev_priv->vlv_cdclk_freq, 1000) >= dev_priv->rps.cz_freq) {
5072 /* CHV suggested value is 31 or 63 */
5073 if (IS_CHERRYVIEW(dev_priv))
5074 credits = PFI_CREDIT_31;
5075 else
5076 credits = PFI_CREDIT(15);
5077 } else {
5078 credits = default_credits;
5079 }
5080
5081 /*
5082 * WA - write default credits before re-programming
5083 * FIXME: should we also set the resend bit here?
5084 */
5085 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
5086 default_credits);
5087
5088 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
5089 credits | PFI_CREDIT_RESEND);
5090
5091 /*
5092 * FIXME is this guaranteed to clear
5093 * immediately or should we poll for it?
5094 */
5095 WARN_ON(I915_READ(GCI_CONTROL) & PFI_CREDIT_RESEND);
5096}
5097
Jesse Barnes30a970c2013-11-04 13:48:12 -08005098static void valleyview_modeset_global_resources(struct drm_device *dev)
5099{
5100 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02005101 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005102 int req_cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
5103
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005104 if (req_cdclk != dev_priv->vlv_cdclk_freq) {
Imre Deak738c05c2014-11-19 16:25:37 +02005105 /*
5106 * FIXME: We can end up here with all power domains off, yet
5107 * with a CDCLK frequency other than the minimum. To account
5108 * for this take the PIPE-A power domain, which covers the HW
5109 * blocks needed for the following programming. This can be
5110 * removed once it's guaranteed that we get here either with
5111 * the minimum CDCLK set, or the required power domains
5112 * enabled.
5113 */
5114 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
5115
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005116 if (IS_CHERRYVIEW(dev))
5117 cherryview_set_cdclk(dev, req_cdclk);
5118 else
5119 valleyview_set_cdclk(dev, req_cdclk);
Imre Deak738c05c2014-11-19 16:25:37 +02005120
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02005121 vlv_program_pfi_credits(dev_priv);
5122
Imre Deak738c05c2014-11-19 16:25:37 +02005123 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005124 }
Jesse Barnes30a970c2013-11-04 13:48:12 -08005125}
5126
Jesse Barnes89b667f2013-04-18 14:51:36 -07005127static void valleyview_crtc_enable(struct drm_crtc *crtc)
5128{
5129 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02005130 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005131 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5132 struct intel_encoder *encoder;
5133 int pipe = intel_crtc->pipe;
Jani Nikula23538ef2013-08-27 15:12:22 +03005134 bool is_dsi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07005135
Matt Roper83d65732015-02-25 13:12:16 -08005136 WARN_ON(!crtc->state->enable);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005137
5138 if (intel_crtc->active)
5139 return;
5140
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005141 is_dsi = intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI);
Shobhit Kumar8525a232014-06-25 12:20:39 +05305142
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005143 if (!is_dsi) {
5144 if (IS_CHERRYVIEW(dev))
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005145 chv_prepare_pll(intel_crtc, intel_crtc->config);
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005146 else
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005147 vlv_prepare_pll(intel_crtc, intel_crtc->config);
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005148 }
Daniel Vetter5b18e572014-04-24 23:55:06 +02005149
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005150 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd482015-02-13 15:32:59 +05305151 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter5b18e572014-04-24 23:55:06 +02005152
5153 intel_set_pipe_timings(intel_crtc);
5154
Ville Syrjäläc14b0482014-10-16 20:52:34 +03005155 if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) {
5156 struct drm_i915_private *dev_priv = dev->dev_private;
5157
5158 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
5159 I915_WRITE(CHV_CANVAS(pipe), 0);
5160 }
5161
Daniel Vetter5b18e572014-04-24 23:55:06 +02005162 i9xx_set_pipeconf(intel_crtc);
5163
Jesse Barnes89b667f2013-04-18 14:51:36 -07005164 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07005165
Daniel Vettera72e4c92014-09-30 10:56:47 +02005166 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005167
Jesse Barnes89b667f2013-04-18 14:51:36 -07005168 for_each_encoder_on_crtc(dev, crtc, encoder)
5169 if (encoder->pre_pll_enable)
5170 encoder->pre_pll_enable(encoder);
5171
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005172 if (!is_dsi) {
5173 if (IS_CHERRYVIEW(dev))
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005174 chv_enable_pll(intel_crtc, intel_crtc->config);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005175 else
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005176 vlv_enable_pll(intel_crtc, intel_crtc->config);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005177 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07005178
5179 for_each_encoder_on_crtc(dev, crtc, encoder)
5180 if (encoder->pre_enable)
5181 encoder->pre_enable(encoder);
5182
Jesse Barnes2dd24552013-04-25 12:55:01 -07005183 i9xx_pfit_enable(intel_crtc);
5184
Ville Syrjälä63cbb072013-06-04 13:48:59 +03005185 intel_crtc_load_lut(crtc);
5186
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005187 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02005188 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02005189
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03005190 assert_vblank_disabled(crtc);
5191 drm_crtc_vblank_on(crtc);
5192
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005193 for_each_encoder_on_crtc(dev, crtc, encoder)
5194 encoder->enable(encoder);
5195
Ville Syrjälä9ab04602014-05-08 19:23:14 +03005196 intel_crtc_enable_planes(crtc);
Daniel Vetterd40d9182014-05-21 11:45:40 +02005197
Ville Syrjälä56b80e12014-05-16 19:40:22 +03005198 /* Underruns don't raise interrupts, so check manually. */
Daniel Vettera72e4c92014-09-30 10:56:47 +02005199 i9xx_check_fifo_underruns(dev_priv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005200}
5201
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005202static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
5203{
5204 struct drm_device *dev = crtc->base.dev;
5205 struct drm_i915_private *dev_priv = dev->dev_private;
5206
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005207 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
5208 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005209}
5210
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005211static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005212{
5213 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02005214 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08005215 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005216 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08005217 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08005218
Matt Roper83d65732015-02-25 13:12:16 -08005219 WARN_ON(!crtc->state->enable);
Daniel Vetter08a48462012-07-02 11:43:47 +02005220
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005221 if (intel_crtc->active)
5222 return;
5223
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005224 i9xx_set_pll_dividers(intel_crtc);
5225
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005226 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd482015-02-13 15:32:59 +05305227 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter5b18e572014-04-24 23:55:06 +02005228
5229 intel_set_pipe_timings(intel_crtc);
5230
Daniel Vetter5b18e572014-04-24 23:55:06 +02005231 i9xx_set_pipeconf(intel_crtc);
5232
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005233 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01005234
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005235 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005236 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005237
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02005238 for_each_encoder_on_crtc(dev, crtc, encoder)
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02005239 if (encoder->pre_enable)
5240 encoder->pre_enable(encoder);
5241
Daniel Vetterf6736a12013-06-05 13:34:30 +02005242 i9xx_enable_pll(intel_crtc);
5243
Jesse Barnes2dd24552013-04-25 12:55:01 -07005244 i9xx_pfit_enable(intel_crtc);
5245
Ville Syrjälä63cbb072013-06-04 13:48:59 +03005246 intel_crtc_load_lut(crtc);
5247
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005248 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02005249 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02005250
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03005251 assert_vblank_disabled(crtc);
5252 drm_crtc_vblank_on(crtc);
5253
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005254 for_each_encoder_on_crtc(dev, crtc, encoder)
5255 encoder->enable(encoder);
5256
Ville Syrjälä9ab04602014-05-08 19:23:14 +03005257 intel_crtc_enable_planes(crtc);
Daniel Vetterd40d9182014-05-21 11:45:40 +02005258
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005259 /*
5260 * Gen2 reports pipe underruns whenever all planes are disabled.
5261 * So don't enable underrun reporting before at least some planes
5262 * are enabled.
5263 * FIXME: Need to fix the logic to work when we turn off all planes
5264 * but leave the pipe running.
5265 */
5266 if (IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005267 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005268
Ville Syrjälä56b80e12014-05-16 19:40:22 +03005269 /* Underruns don't raise interrupts, so check manually. */
Daniel Vettera72e4c92014-09-30 10:56:47 +02005270 i9xx_check_fifo_underruns(dev_priv);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005271}
5272
Daniel Vetter87476d62013-04-11 16:29:06 +02005273static void i9xx_pfit_disable(struct intel_crtc *crtc)
5274{
5275 struct drm_device *dev = crtc->base.dev;
5276 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02005277
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005278 if (!crtc->config->gmch_pfit.control)
Daniel Vetter328d8e82013-05-08 10:36:31 +02005279 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02005280
5281 assert_pipe_disabled(dev_priv, crtc->pipe);
5282
Daniel Vetter328d8e82013-05-08 10:36:31 +02005283 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
5284 I915_READ(PFIT_CONTROL));
5285 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02005286}
5287
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005288static void i9xx_crtc_disable(struct drm_crtc *crtc)
5289{
5290 struct drm_device *dev = crtc->dev;
5291 struct drm_i915_private *dev_priv = dev->dev_private;
5292 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005293 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005294 int pipe = intel_crtc->pipe;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005295
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005296 if (!intel_crtc->active)
5297 return;
5298
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005299 /*
5300 * Gen2 reports pipe underruns whenever all planes are disabled.
5301 * So diasble underrun reporting before all the planes get disabled.
5302 * FIXME: Need to fix the logic to work when we turn off all planes
5303 * but leave the pipe running.
5304 */
5305 if (IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005306 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005307
Imre Deak564ed192014-06-13 14:54:21 +03005308 /*
5309 * Vblank time updates from the shadow to live plane control register
5310 * are blocked if the memory self-refresh mode is active at that
5311 * moment. So to make sure the plane gets truly disabled, disable
5312 * first the self-refresh mode. The self-refresh enable bit in turn
5313 * will be checked/applied by the HW only at the next frame start
5314 * event which is after the vblank start event, so we need to have a
5315 * wait-for-vblank between disabling the plane and the pipe.
5316 */
5317 intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03005318 intel_crtc_disable_planes(crtc);
5319
Ville Syrjälä6304cd92014-04-25 13:30:12 +03005320 /*
5321 * On gen2 planes are double buffered but the pipe isn't, so we must
5322 * wait for planes to fully turn off before disabling the pipe.
Imre Deak564ed192014-06-13 14:54:21 +03005323 * We also need to wait on all gmch platforms because of the
5324 * self-refresh mode constraint explained above.
Ville Syrjälä6304cd92014-04-25 13:30:12 +03005325 */
Imre Deak564ed192014-06-13 14:54:21 +03005326 intel_wait_for_vblank(dev, pipe);
Ville Syrjälä6304cd92014-04-25 13:30:12 +03005327
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03005328 for_each_encoder_on_crtc(dev, crtc, encoder)
5329 encoder->disable(encoder);
5330
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005331 drm_crtc_vblank_off(crtc);
5332 assert_vblank_disabled(crtc);
5333
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03005334 intel_disable_pipe(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02005335
Daniel Vetter87476d62013-04-11 16:29:06 +02005336 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02005337
Jesse Barnes89b667f2013-04-18 14:51:36 -07005338 for_each_encoder_on_crtc(dev, crtc, encoder)
5339 if (encoder->post_disable)
5340 encoder->post_disable(encoder);
5341
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005342 if (!intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI)) {
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03005343 if (IS_CHERRYVIEW(dev))
5344 chv_disable_pll(dev_priv, pipe);
5345 else if (IS_VALLEYVIEW(dev))
5346 vlv_disable_pll(dev_priv, pipe);
5347 else
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03005348 i9xx_disable_pll(intel_crtc);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03005349 }
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005350
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005351 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005352 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005353
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005354 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03005355 intel_update_watermarks(crtc);
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005356
Daniel Vetterefa96242014-04-24 23:55:02 +02005357 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02005358 intel_fbc_update(dev);
Daniel Vetterefa96242014-04-24 23:55:02 +02005359 mutex_unlock(&dev->struct_mutex);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005360}
5361
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005362static void i9xx_crtc_off(struct drm_crtc *crtc)
5363{
5364}
5365
Borun Fub04c5bd2014-07-12 10:02:27 +05305366/* Master function to enable/disable CRTC and corresponding power wells */
5367void intel_crtc_control(struct drm_crtc *crtc, bool enable)
Chris Wilsoncdd59982010-09-08 16:30:16 +01005368{
Chris Wilsoncdd59982010-09-08 16:30:16 +01005369 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005370 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005371 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005372 enum intel_display_power_domain domain;
5373 unsigned long domains;
Daniel Vetter976f8a22012-07-08 22:34:21 +02005374
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005375 if (enable) {
5376 if (!intel_crtc->active) {
Daniel Vettere1e9fb82014-06-25 22:02:04 +03005377 domains = get_crtc_power_domains(crtc);
5378 for_each_power_domain(domain, domains)
5379 intel_display_power_get(dev_priv, domain);
5380 intel_crtc->enabled_power_domains = domains;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005381
5382 dev_priv->display.crtc_enable(crtc);
5383 }
5384 } else {
5385 if (intel_crtc->active) {
5386 dev_priv->display.crtc_disable(crtc);
5387
Daniel Vettere1e9fb82014-06-25 22:02:04 +03005388 domains = intel_crtc->enabled_power_domains;
5389 for_each_power_domain(domain, domains)
5390 intel_display_power_put(dev_priv, domain);
5391 intel_crtc->enabled_power_domains = 0;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02005392 }
5393 }
Borun Fub04c5bd2014-07-12 10:02:27 +05305394}
5395
5396/**
5397 * Sets the power management mode of the pipe and plane.
5398 */
5399void intel_crtc_update_dpms(struct drm_crtc *crtc)
5400{
5401 struct drm_device *dev = crtc->dev;
5402 struct intel_encoder *intel_encoder;
5403 bool enable = false;
5404
5405 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
5406 enable |= intel_encoder->connectors_active;
5407
5408 intel_crtc_control(crtc, enable);
Daniel Vetter976f8a22012-07-08 22:34:21 +02005409}
5410
Daniel Vetter976f8a22012-07-08 22:34:21 +02005411static void intel_crtc_disable(struct drm_crtc *crtc)
5412{
5413 struct drm_device *dev = crtc->dev;
5414 struct drm_connector *connector;
5415 struct drm_i915_private *dev_priv = dev->dev_private;
5416
5417 /* crtc should still be enabled when we disable it. */
Matt Roper83d65732015-02-25 13:12:16 -08005418 WARN_ON(!crtc->state->enable);
Daniel Vetter976f8a22012-07-08 22:34:21 +02005419
5420 dev_priv->display.crtc_disable(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005421 dev_priv->display.off(crtc);
5422
Gustavo Padovan455a6802014-12-01 15:40:11 -08005423 crtc->primary->funcs->disable_plane(crtc->primary);
Daniel Vetter976f8a22012-07-08 22:34:21 +02005424
5425 /* Update computed state. */
5426 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
5427 if (!connector->encoder || !connector->encoder->crtc)
5428 continue;
5429
5430 if (connector->encoder->crtc != crtc)
5431 continue;
5432
5433 connector->dpms = DRM_MODE_DPMS_OFF;
5434 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01005435 }
5436}
5437
Chris Wilsonea5b2132010-08-04 13:50:23 +01005438void intel_encoder_destroy(struct drm_encoder *encoder)
5439{
Chris Wilson4ef69c72010-09-09 15:14:28 +01005440 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01005441
Chris Wilsonea5b2132010-08-04 13:50:23 +01005442 drm_encoder_cleanup(encoder);
5443 kfree(intel_encoder);
5444}
5445
Damien Lespiau92373292013-08-08 22:28:57 +01005446/* Simple dpms helper for encoders with just one connector, no cloning and only
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005447 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
5448 * state of the entire output pipe. */
Damien Lespiau92373292013-08-08 22:28:57 +01005449static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005450{
5451 if (mode == DRM_MODE_DPMS_ON) {
5452 encoder->connectors_active = true;
5453
Daniel Vetterb2cabb02012-07-01 22:42:24 +02005454 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005455 } else {
5456 encoder->connectors_active = false;
5457
Daniel Vetterb2cabb02012-07-01 22:42:24 +02005458 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005459 }
5460}
5461
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005462/* Cross check the actual hw state with our own modeset state tracking (and it's
5463 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02005464static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005465{
5466 if (connector->get_hw_state(connector)) {
5467 struct intel_encoder *encoder = connector->encoder;
5468 struct drm_crtc *crtc;
5469 bool encoder_enabled;
5470 enum pipe pipe;
5471
5472 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
5473 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03005474 connector->base.name);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005475
Dave Airlie0e32b392014-05-02 14:02:48 +10005476 /* there is no real hw state for MST connectors */
5477 if (connector->mst_port)
5478 return;
5479
Rob Clarke2c719b2014-12-15 13:56:32 -05005480 I915_STATE_WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005481 "wrong connector dpms state\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05005482 I915_STATE_WARN(connector->base.encoder != &encoder->base,
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005483 "active connector not linked to encoder\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005484
Dave Airlie36cd7442014-05-02 13:44:18 +10005485 if (encoder) {
Rob Clarke2c719b2014-12-15 13:56:32 -05005486 I915_STATE_WARN(!encoder->connectors_active,
Dave Airlie36cd7442014-05-02 13:44:18 +10005487 "encoder->connectors_active not set\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005488
Dave Airlie36cd7442014-05-02 13:44:18 +10005489 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
Rob Clarke2c719b2014-12-15 13:56:32 -05005490 I915_STATE_WARN(!encoder_enabled, "encoder not enabled\n");
5491 if (I915_STATE_WARN_ON(!encoder->base.crtc))
Dave Airlie36cd7442014-05-02 13:44:18 +10005492 return;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005493
Dave Airlie36cd7442014-05-02 13:44:18 +10005494 crtc = encoder->base.crtc;
5495
Matt Roper83d65732015-02-25 13:12:16 -08005496 I915_STATE_WARN(!crtc->state->enable,
5497 "crtc not enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05005498 I915_STATE_WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
5499 I915_STATE_WARN(pipe != to_intel_crtc(crtc)->pipe,
Dave Airlie36cd7442014-05-02 13:44:18 +10005500 "encoder active on the wrong pipe\n");
5501 }
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005502 }
5503}
5504
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005505/* Even simpler default implementation, if there's really no special case to
5506 * consider. */
5507void intel_connector_dpms(struct drm_connector *connector, int mode)
5508{
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005509 /* All the simple cases only support two dpms states. */
5510 if (mode != DRM_MODE_DPMS_ON)
5511 mode = DRM_MODE_DPMS_OFF;
5512
5513 if (mode == connector->dpms)
5514 return;
5515
5516 connector->dpms = mode;
5517
5518 /* Only need to change hw state when actually enabled */
Chris Wilsonc9976dc2013-09-29 19:15:07 +01005519 if (connector->encoder)
5520 intel_encoder_dpms(to_intel_encoder(connector->encoder), mode);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02005521
Daniel Vetterb9805142012-08-31 17:37:33 +02005522 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02005523}
5524
Daniel Vetterf0947c32012-07-02 13:10:34 +02005525/* Simple connector->get_hw_state implementation for encoders that support only
5526 * one connector and no cloning and hence the encoder state determines the state
5527 * of the connector. */
5528bool intel_connector_get_hw_state(struct intel_connector *connector)
5529{
Daniel Vetter24929352012-07-02 20:28:59 +02005530 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02005531 struct intel_encoder *encoder = connector->encoder;
5532
5533 return encoder->get_hw_state(encoder, &pipe);
5534}
5535
Ville Syrjäläd272ddf2015-03-11 18:52:31 +02005536static int pipe_required_fdi_lanes(struct drm_device *dev, enum pipe pipe)
5537{
5538 struct intel_crtc *crtc =
5539 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
5540
5541 if (crtc->base.state->enable &&
5542 crtc->config->has_pch_encoder)
5543 return crtc->config->fdi_lanes;
5544
5545 return 0;
5546}
5547
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005548static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005549 struct intel_crtc_state *pipe_config)
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005550{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005551 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
5552 pipe_name(pipe), pipe_config->fdi_lanes);
5553 if (pipe_config->fdi_lanes > 4) {
5554 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
5555 pipe_name(pipe), pipe_config->fdi_lanes);
5556 return false;
5557 }
5558
Paulo Zanonibafb6552013-11-02 21:07:44 -07005559 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005560 if (pipe_config->fdi_lanes > 2) {
5561 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
5562 pipe_config->fdi_lanes);
5563 return false;
5564 } else {
5565 return true;
5566 }
5567 }
5568
5569 if (INTEL_INFO(dev)->num_pipes == 2)
5570 return true;
5571
5572 /* Ivybridge 3 pipe is really complicated */
5573 switch (pipe) {
5574 case PIPE_A:
5575 return true;
5576 case PIPE_B:
Ville Syrjäläd272ddf2015-03-11 18:52:31 +02005577 if (pipe_config->fdi_lanes > 2 &&
5578 pipe_required_fdi_lanes(dev, PIPE_C) > 0) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005579 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5580 pipe_name(pipe), pipe_config->fdi_lanes);
5581 return false;
5582 }
5583 return true;
5584 case PIPE_C:
Ville Syrjälä251cc672015-03-11 18:52:30 +02005585 if (pipe_config->fdi_lanes > 2) {
5586 DRM_DEBUG_KMS("only 2 lanes on pipe %c: required %i lanes\n",
5587 pipe_name(pipe), pipe_config->fdi_lanes);
5588 return false;
5589 }
Ville Syrjäläd272ddf2015-03-11 18:52:31 +02005590 if (pipe_required_fdi_lanes(dev, PIPE_B) > 2) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005591 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
5592 return false;
5593 }
5594 return true;
5595 default:
5596 BUG();
5597 }
5598}
5599
Daniel Vettere29c22c2013-02-21 00:00:16 +01005600#define RETRY 1
5601static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005602 struct intel_crtc_state *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02005603{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005604 struct drm_device *dev = intel_crtc->base.dev;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02005605 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Daniel Vetterff9a6752013-06-01 17:16:21 +02005606 int lane, link_bw, fdi_dotclock;
Daniel Vettere29c22c2013-02-21 00:00:16 +01005607 bool setup_ok, needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005608
Daniel Vettere29c22c2013-02-21 00:00:16 +01005609retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02005610 /* FDI is a binary signal running at ~2.7GHz, encoding
5611 * each output octet as 10 bits. The actual frequency
5612 * is stored as a divider into a 100MHz clock, and the
5613 * mode pixel clock is stored in units of 1KHz.
5614 * Hence the bw of each lane in terms of the mode signal
5615 * is:
5616 */
5617 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
5618
Damien Lespiau241bfc32013-09-25 16:45:37 +01005619 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005620
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005621 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005622 pipe_config->pipe_bpp);
5623
5624 pipe_config->fdi_lanes = lane;
5625
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005626 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005627 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005628
Daniel Vettere29c22c2013-02-21 00:00:16 +01005629 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
5630 intel_crtc->pipe, pipe_config);
5631 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
5632 pipe_config->pipe_bpp -= 2*3;
5633 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
5634 pipe_config->pipe_bpp);
5635 needs_recompute = true;
5636 pipe_config->bw_constrained = true;
5637
5638 goto retry;
5639 }
5640
5641 if (needs_recompute)
5642 return RETRY;
5643
5644 return setup_ok ? 0 : -EINVAL;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005645}
5646
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005647static void hsw_compute_ips_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005648 struct intel_crtc_state *pipe_config)
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005649{
Jani Nikulad330a952014-01-21 11:24:25 +02005650 pipe_config->ips_enabled = i915.enable_ips &&
Paulo Zanoni3c4ca582013-05-31 16:33:23 -03005651 hsw_crtc_supports_ips(crtc) &&
Jesse Barnesb6dfdc92013-07-25 10:06:50 -07005652 pipe_config->pipe_bpp <= 24;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005653}
5654
Daniel Vettera43f6e02013-06-07 23:10:32 +02005655static int intel_crtc_compute_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02005656 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08005657{
Daniel Vettera43f6e02013-06-07 23:10:32 +02005658 struct drm_device *dev = crtc->base.dev;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02005659 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02005660 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Chris Wilson89749352010-09-12 18:25:19 +01005661
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005662 /* FIXME should check pixel clock limits on all platforms */
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005663 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005664 int clock_limit =
5665 dev_priv->display.get_display_clock_speed(dev);
5666
5667 /*
5668 * Enable pixel doubling when the dot clock
5669 * is > 90% of the (display) core speed.
5670 *
Ville Syrjäläb397c962013-09-04 18:30:06 +03005671 * GDG double wide on either pipe,
5672 * otherwise pipe A only.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005673 */
Ville Syrjäläb397c962013-09-04 18:30:06 +03005674 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
Damien Lespiau241bfc32013-09-25 16:45:37 +01005675 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005676 clock_limit *= 2;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005677 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005678 }
5679
Damien Lespiau241bfc32013-09-25 16:45:37 +01005680 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005681 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08005682 }
Chris Wilson89749352010-09-12 18:25:19 +01005683
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03005684 /*
5685 * Pipe horizontal size must be even in:
5686 * - DVO ganged mode
5687 * - LVDS dual channel mode
5688 * - Double wide pipe
5689 */
Ander Conselvan de Oliveirab4f2bf42015-02-26 09:44:45 +02005690 if ((intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03005691 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
5692 pipe_config->pipe_src_w &= ~1;
5693
Damien Lespiau8693a822013-05-03 18:48:11 +01005694 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
5695 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03005696 */
5697 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
5698 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005699 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03005700
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005701 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005702 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005703 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005704 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
5705 * for lvds. */
5706 pipe_config->pipe_bpp = 8*3;
5707 }
5708
Damien Lespiauf5adf942013-06-24 18:29:34 +01005709 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02005710 hsw_compute_ips_config(crtc, pipe_config);
5711
Daniel Vetter877d48d2013-04-19 11:24:43 +02005712 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02005713 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02005714
Daniel Vettere29c22c2013-02-21 00:00:16 +01005715 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005716}
5717
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07005718static int valleyview_get_display_clock_speed(struct drm_device *dev)
5719{
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005720 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005721 u32 val;
5722 int divider;
5723
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005724 if (dev_priv->hpll_freq == 0)
5725 dev_priv->hpll_freq = valleyview_get_vco(dev_priv);
5726
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03005727 mutex_lock(&dev_priv->dpio_lock);
5728 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
5729 mutex_unlock(&dev_priv->dpio_lock);
5730
5731 divider = val & DISPLAY_FREQUENCY_VALUES;
5732
Ville Syrjälä7d007f42014-06-13 13:37:53 +03005733 WARN((val & DISPLAY_FREQUENCY_STATUS) !=
5734 (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
5735 "cdclk change in progress\n");
5736
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005737 return DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, divider + 1);
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07005738}
5739
Jesse Barnese70236a2009-09-21 10:42:27 -07005740static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08005741{
Jesse Barnese70236a2009-09-21 10:42:27 -07005742 return 400000;
5743}
Jesse Barnes79e53942008-11-07 14:24:08 -08005744
Jesse Barnese70236a2009-09-21 10:42:27 -07005745static int i915_get_display_clock_speed(struct drm_device *dev)
5746{
5747 return 333000;
5748}
Jesse Barnes79e53942008-11-07 14:24:08 -08005749
Jesse Barnese70236a2009-09-21 10:42:27 -07005750static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
5751{
5752 return 200000;
5753}
Jesse Barnes79e53942008-11-07 14:24:08 -08005754
Daniel Vetter257a7ff2013-07-26 08:35:42 +02005755static int pnv_get_display_clock_speed(struct drm_device *dev)
5756{
5757 u16 gcfgc = 0;
5758
5759 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5760
5761 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5762 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
5763 return 267000;
5764 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
5765 return 333000;
5766 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
5767 return 444000;
5768 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
5769 return 200000;
5770 default:
5771 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
5772 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
5773 return 133000;
5774 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
5775 return 167000;
5776 }
5777}
5778
Jesse Barnese70236a2009-09-21 10:42:27 -07005779static int i915gm_get_display_clock_speed(struct drm_device *dev)
5780{
5781 u16 gcfgc = 0;
5782
5783 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5784
5785 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08005786 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07005787 else {
5788 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5789 case GC_DISPLAY_CLOCK_333_MHZ:
5790 return 333000;
5791 default:
5792 case GC_DISPLAY_CLOCK_190_200_MHZ:
5793 return 190000;
5794 }
5795 }
5796}
Jesse Barnes79e53942008-11-07 14:24:08 -08005797
Jesse Barnese70236a2009-09-21 10:42:27 -07005798static int i865_get_display_clock_speed(struct drm_device *dev)
5799{
5800 return 266000;
5801}
5802
5803static int i855_get_display_clock_speed(struct drm_device *dev)
5804{
5805 u16 hpllcc = 0;
5806 /* Assume that the hardware is in the high speed state. This
5807 * should be the default.
5808 */
5809 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
5810 case GC_CLOCK_133_200:
5811 case GC_CLOCK_100_200:
5812 return 200000;
5813 case GC_CLOCK_166_250:
5814 return 250000;
5815 case GC_CLOCK_100_133:
5816 return 133000;
5817 }
5818
5819 /* Shouldn't happen */
5820 return 0;
5821}
5822
5823static int i830_get_display_clock_speed(struct drm_device *dev)
5824{
5825 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08005826}
5827
Zhenyu Wang2c072452009-06-05 15:38:42 +08005828static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005829intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005830{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005831 while (*num > DATA_LINK_M_N_MASK ||
5832 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08005833 *num >>= 1;
5834 *den >>= 1;
5835 }
5836}
5837
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005838static void compute_m_n(unsigned int m, unsigned int n,
5839 uint32_t *ret_m, uint32_t *ret_n)
5840{
5841 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
5842 *ret_m = div_u64((uint64_t) m * *ret_n, n);
5843 intel_reduce_m_n_ratio(ret_m, ret_n);
5844}
5845
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005846void
5847intel_link_compute_m_n(int bits_per_pixel, int nlanes,
5848 int pixel_clock, int link_clock,
5849 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005850{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005851 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005852
5853 compute_m_n(bits_per_pixel * pixel_clock,
5854 link_clock * nlanes * 8,
5855 &m_n->gmch_m, &m_n->gmch_n);
5856
5857 compute_m_n(pixel_clock, link_clock,
5858 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005859}
5860
Chris Wilsona7615032011-01-12 17:04:08 +00005861static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
5862{
Jani Nikulad330a952014-01-21 11:24:25 +02005863 if (i915.panel_use_ssc >= 0)
5864 return i915.panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005865 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07005866 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00005867}
5868
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005869static int i9xx_get_refclk(struct intel_crtc *crtc, int num_connectors)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005870{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005871 struct drm_device *dev = crtc->base.dev;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005872 struct drm_i915_private *dev_priv = dev->dev_private;
5873 int refclk;
5874
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005875 if (IS_VALLEYVIEW(dev)) {
Daniel Vetter9a0ea492013-09-16 11:29:34 +02005876 refclk = 100000;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02005877 } else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005878 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02005879 refclk = dev_priv->vbt.lvds_ssc_freq;
5880 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005881 } else if (!IS_GEN2(dev)) {
5882 refclk = 96000;
5883 } else {
5884 refclk = 48000;
5885 }
5886
5887 return refclk;
5888}
5889
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005890static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005891{
Daniel Vetter7df00d72013-05-21 21:54:55 +02005892 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005893}
Daniel Vetterf47709a2013-03-28 10:42:02 +01005894
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005895static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
5896{
5897 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005898}
5899
Daniel Vetterf47709a2013-03-28 10:42:02 +01005900static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005901 struct intel_crtc_state *crtc_state,
Jesse Barnesa7516a02011-12-15 12:30:37 -08005902 intel_clock_t *reduced_clock)
5903{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005904 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005905 u32 fp, fp2 = 0;
5906
5907 if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005908 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005909 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005910 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005911 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005912 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005913 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005914 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005915 }
5916
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005917 crtc_state->dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005918
Daniel Vetterf47709a2013-03-28 10:42:02 +01005919 crtc->lowfreq_avail = false;
Bob Paauwee1f234b2014-11-11 09:29:18 -08005920 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Jani Nikulad330a952014-01-21 11:24:25 +02005921 reduced_clock && i915.powersave) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005922 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005923 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005924 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02005925 crtc_state->dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005926 }
5927}
5928
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005929static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
5930 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07005931{
5932 u32 reg_val;
5933
5934 /*
5935 * PLLB opamp always calibrates to max value of 0x3f, force enable it
5936 * and set it to a reasonable value instead.
5937 */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005938 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005939 reg_val &= 0xffffff00;
5940 reg_val |= 0x00000030;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005941 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005942
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005943 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005944 reg_val &= 0x8cffffff;
5945 reg_val = 0x8c000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005946 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005947
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005948 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005949 reg_val &= 0xffffff00;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005950 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005951
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005952 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005953 reg_val &= 0x00ffffff;
5954 reg_val |= 0xb0000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005955 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005956}
5957
Daniel Vetterb5518422013-05-03 11:49:48 +02005958static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
5959 struct intel_link_m_n *m_n)
5960{
5961 struct drm_device *dev = crtc->base.dev;
5962 struct drm_i915_private *dev_priv = dev->dev_private;
5963 int pipe = crtc->pipe;
5964
Daniel Vettere3b95f12013-05-03 11:49:49 +02005965 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5966 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
5967 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
5968 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005969}
5970
5971static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -07005972 struct intel_link_m_n *m_n,
5973 struct intel_link_m_n *m2_n2)
Daniel Vetterb5518422013-05-03 11:49:48 +02005974{
5975 struct drm_device *dev = crtc->base.dev;
5976 struct drm_i915_private *dev_priv = dev->dev_private;
5977 int pipe = crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005978 enum transcoder transcoder = crtc->config->cpu_transcoder;
Daniel Vetterb5518422013-05-03 11:49:48 +02005979
5980 if (INTEL_INFO(dev)->gen >= 5) {
5981 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
5982 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
5983 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
5984 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
Vandana Kannanf769cd22014-08-05 07:51:22 -07005985 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
5986 * for gen < 8) and if DRRS is supported (to make sure the
5987 * registers are not unnecessarily accessed).
5988 */
Durgadoss R44395bf2015-02-13 15:33:02 +05305989 if (m2_n2 && (IS_CHERRYVIEW(dev) || INTEL_INFO(dev)->gen < 8) &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005990 crtc->config->has_drrs) {
Vandana Kannanf769cd22014-08-05 07:51:22 -07005991 I915_WRITE(PIPE_DATA_M2(transcoder),
5992 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
5993 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
5994 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
5995 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
5996 }
Daniel Vetterb5518422013-05-03 11:49:48 +02005997 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02005998 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5999 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
6000 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
6001 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02006002 }
6003}
6004
Ramalingam Cfe3cd482015-02-13 15:32:59 +05306005void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n)
Daniel Vetter03afc4a2013-04-02 23:42:31 +02006006{
Ramalingam Cfe3cd482015-02-13 15:32:59 +05306007 struct intel_link_m_n *dp_m_n, *dp_m2_n2 = NULL;
6008
6009 if (m_n == M1_N1) {
6010 dp_m_n = &crtc->config->dp_m_n;
6011 dp_m2_n2 = &crtc->config->dp_m2_n2;
6012 } else if (m_n == M2_N2) {
6013
6014 /*
6015 * M2_N2 registers are not supported. Hence m2_n2 divider value
6016 * needs to be programmed into M1_N1.
6017 */
6018 dp_m_n = &crtc->config->dp_m2_n2;
6019 } else {
6020 DRM_ERROR("Unsupported divider value\n");
6021 return;
6022 }
6023
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006024 if (crtc->config->has_pch_encoder)
6025 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02006026 else
Ramalingam Cfe3cd482015-02-13 15:32:59 +05306027 intel_cpu_transcoder_set_m_n(crtc, dp_m_n, dp_m2_n2);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02006028}
6029
Ville Syrjäläd288f652014-10-28 13:20:22 +02006030static void vlv_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006031 struct intel_crtc_state *pipe_config)
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006032{
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006033 u32 dpll, dpll_md;
6034
6035 /*
6036 * Enable DPIO clock input. We should never disable the reference
6037 * clock for pipe B, since VGA hotplug / manual detection depends
6038 * on it.
6039 */
6040 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
6041 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
6042 /* We should never disable this, set it here for state tracking */
6043 if (crtc->pipe == PIPE_B)
6044 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
6045 dpll |= DPLL_VCO_ENABLE;
Ville Syrjäläd288f652014-10-28 13:20:22 +02006046 pipe_config->dpll_hw_state.dpll = dpll;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006047
Ville Syrjäläd288f652014-10-28 13:20:22 +02006048 dpll_md = (pipe_config->pixel_multiplier - 1)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006049 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjäläd288f652014-10-28 13:20:22 +02006050 pipe_config->dpll_hw_state.dpll_md = dpll_md;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006051}
6052
Ville Syrjäläd288f652014-10-28 13:20:22 +02006053static void vlv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006054 const struct intel_crtc_state *pipe_config)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006055{
Daniel Vetterf47709a2013-03-28 10:42:02 +01006056 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006057 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01006058 int pipe = crtc->pipe;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006059 u32 mdiv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006060 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006061 u32 coreclk, reg_val;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006062
Daniel Vetter09153002012-12-12 14:06:44 +01006063 mutex_lock(&dev_priv->dpio_lock);
6064
Ville Syrjäläd288f652014-10-28 13:20:22 +02006065 bestn = pipe_config->dpll.n;
6066 bestm1 = pipe_config->dpll.m1;
6067 bestm2 = pipe_config->dpll.m2;
6068 bestp1 = pipe_config->dpll.p1;
6069 bestp2 = pipe_config->dpll.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006070
Jesse Barnes89b667f2013-04-18 14:51:36 -07006071 /* See eDP HDMI DPIO driver vbios notes doc */
6072
6073 /* PLL B needs special handling */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006074 if (pipe == PIPE_B)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08006075 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006076
6077 /* Set up Tx target for periodic Rcomp update */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006078 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006079
6080 /* Disable target IRef on PLL */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006081 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07006082 reg_val &= 0x00ffffff;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006083 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006084
6085 /* Disable fast lock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006086 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006087
6088 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006089 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
6090 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
6091 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006092 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07006093
6094 /*
6095 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
6096 * but we don't support that).
6097 * Note: don't use the DAC post divider as it seems unstable.
6098 */
6099 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006100 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006101
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006102 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006103 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006104
Jesse Barnes89b667f2013-04-18 14:51:36 -07006105 /* Set HBR and RBR LPF coefficients */
Ville Syrjäläd288f652014-10-28 13:20:22 +02006106 if (pipe_config->port_clock == 162000 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006107 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG) ||
6108 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006109 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Ville Syrjälä885b01202013-07-05 19:21:38 +03006110 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006111 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006112 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006113 0x00d0000f);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006114
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02006115 if (pipe_config->has_dp_encoder) {
Jesse Barnes89b667f2013-04-18 14:51:36 -07006116 /* Use SSC source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006117 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006118 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006119 0x0df40000);
6120 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006121 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006122 0x0df70000);
6123 } else { /* HDMI or VGA */
6124 /* Use bend source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006125 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006126 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006127 0x0df70000);
6128 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006129 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006130 0x0df40000);
6131 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006132
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006133 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07006134 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006135 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
6136 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
Jesse Barnes89b667f2013-04-18 14:51:36 -07006137 coreclk |= 0x01000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006138 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006139
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006140 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
Daniel Vetter09153002012-12-12 14:06:44 +01006141 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006142}
6143
Ville Syrjäläd288f652014-10-28 13:20:22 +02006144static void chv_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006145 struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006146{
Ville Syrjäläd288f652014-10-28 13:20:22 +02006147 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLOCK_CHV |
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006148 DPLL_REFA_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
6149 DPLL_VCO_ENABLE;
6150 if (crtc->pipe != PIPE_A)
Ville Syrjäläd288f652014-10-28 13:20:22 +02006151 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006152
Ville Syrjäläd288f652014-10-28 13:20:22 +02006153 pipe_config->dpll_hw_state.dpll_md =
6154 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006155}
6156
Ville Syrjäläd288f652014-10-28 13:20:22 +02006157static void chv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006158 const struct intel_crtc_state *pipe_config)
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006159{
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006160 struct drm_device *dev = crtc->base.dev;
6161 struct drm_i915_private *dev_priv = dev->dev_private;
6162 int pipe = crtc->pipe;
6163 int dpll_reg = DPLL(crtc->pipe);
6164 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05306165 u32 loopfilter, tribuf_calcntr;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006166 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05306167 u32 dpio_val;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05306168 int vco;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006169
Ville Syrjäläd288f652014-10-28 13:20:22 +02006170 bestn = pipe_config->dpll.n;
6171 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
6172 bestm1 = pipe_config->dpll.m1;
6173 bestm2 = pipe_config->dpll.m2 >> 22;
6174 bestp1 = pipe_config->dpll.p1;
6175 bestp2 = pipe_config->dpll.p2;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05306176 vco = pipe_config->dpll.vco;
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05306177 dpio_val = 0;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05306178 loopfilter = 0;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006179
6180 /*
6181 * Enable Refclk and SSC
6182 */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03006183 I915_WRITE(dpll_reg,
Ville Syrjäläd288f652014-10-28 13:20:22 +02006184 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03006185
6186 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006187
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006188 /* p1 and p2 divider */
6189 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
6190 5 << DPIO_CHV_S1_DIV_SHIFT |
6191 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
6192 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
6193 1 << DPIO_CHV_K_DIV_SHIFT);
6194
6195 /* Feedback post-divider - m2 */
6196 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
6197
6198 /* Feedback refclk divider - n and m1 */
6199 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
6200 DPIO_CHV_M1_DIV_BY_2 |
6201 1 << DPIO_CHV_N_DIV_SHIFT);
6202
6203 /* M2 fraction division */
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05306204 if (bestm2_frac)
6205 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006206
6207 /* M2 fraction division enable */
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05306208 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
6209 dpio_val &= ~(DPIO_CHV_FEEDFWD_GAIN_MASK | DPIO_CHV_FRAC_DIV_EN);
6210 dpio_val |= (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT);
6211 if (bestm2_frac)
6212 dpio_val |= DPIO_CHV_FRAC_DIV_EN;
6213 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port), dpio_val);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006214
Vijay Purushothamande3a0fd2015-03-05 19:32:06 +05306215 /* Program digital lock detect threshold */
6216 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW9(port));
6217 dpio_val &= ~(DPIO_CHV_INT_LOCK_THRESHOLD_MASK |
6218 DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE);
6219 dpio_val |= (0x5 << DPIO_CHV_INT_LOCK_THRESHOLD_SHIFT);
6220 if (!bestm2_frac)
6221 dpio_val |= DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE;
6222 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW9(port), dpio_val);
6223
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006224 /* Loop filter */
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05306225 if (vco == 5400000) {
6226 loopfilter |= (0x3 << DPIO_CHV_PROP_COEFF_SHIFT);
6227 loopfilter |= (0x8 << DPIO_CHV_INT_COEFF_SHIFT);
6228 loopfilter |= (0x1 << DPIO_CHV_GAIN_CTRL_SHIFT);
6229 tribuf_calcntr = 0x9;
6230 } else if (vco <= 6200000) {
6231 loopfilter |= (0x5 << DPIO_CHV_PROP_COEFF_SHIFT);
6232 loopfilter |= (0xB << DPIO_CHV_INT_COEFF_SHIFT);
6233 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
6234 tribuf_calcntr = 0x9;
6235 } else if (vco <= 6480000) {
6236 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
6237 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
6238 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
6239 tribuf_calcntr = 0x8;
6240 } else {
6241 /* Not supported. Apply the same limits as in the max case */
6242 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
6243 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
6244 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
6245 tribuf_calcntr = 0;
6246 }
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006247 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
6248
Ville Syrjälä968040b2015-03-11 22:52:08 +02006249 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW8(port));
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05306250 dpio_val &= ~DPIO_CHV_TDC_TARGET_CNT_MASK;
6251 dpio_val |= (tribuf_calcntr << DPIO_CHV_TDC_TARGET_CNT_SHIFT);
6252 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW8(port), dpio_val);
6253
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006254 /* AFC Recal */
6255 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
6256 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
6257 DPIO_AFC_RECAL);
6258
6259 mutex_unlock(&dev_priv->dpio_lock);
6260}
6261
Ville Syrjäläd288f652014-10-28 13:20:22 +02006262/**
6263 * vlv_force_pll_on - forcibly enable just the PLL
6264 * @dev_priv: i915 private structure
6265 * @pipe: pipe PLL to enable
6266 * @dpll: PLL configuration
6267 *
6268 * Enable the PLL for @pipe using the supplied @dpll config. To be used
6269 * in cases where we need the PLL enabled even when @pipe is not going to
6270 * be enabled.
6271 */
6272void vlv_force_pll_on(struct drm_device *dev, enum pipe pipe,
6273 const struct dpll *dpll)
6274{
6275 struct intel_crtc *crtc =
6276 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006277 struct intel_crtc_state pipe_config = {
Ville Syrjäläd288f652014-10-28 13:20:22 +02006278 .pixel_multiplier = 1,
6279 .dpll = *dpll,
6280 };
6281
6282 if (IS_CHERRYVIEW(dev)) {
6283 chv_update_pll(crtc, &pipe_config);
6284 chv_prepare_pll(crtc, &pipe_config);
6285 chv_enable_pll(crtc, &pipe_config);
6286 } else {
6287 vlv_update_pll(crtc, &pipe_config);
6288 vlv_prepare_pll(crtc, &pipe_config);
6289 vlv_enable_pll(crtc, &pipe_config);
6290 }
6291}
6292
6293/**
6294 * vlv_force_pll_off - forcibly disable just the PLL
6295 * @dev_priv: i915 private structure
6296 * @pipe: pipe PLL to disable
6297 *
6298 * Disable the PLL for @pipe. To be used in cases where we need
6299 * the PLL enabled even when @pipe is not going to be enabled.
6300 */
6301void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe)
6302{
6303 if (IS_CHERRYVIEW(dev))
6304 chv_disable_pll(to_i915(dev), pipe);
6305 else
6306 vlv_disable_pll(to_i915(dev), pipe);
6307}
6308
Daniel Vetterf47709a2013-03-28 10:42:02 +01006309static void i9xx_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006310 struct intel_crtc_state *crtc_state,
Daniel Vetterf47709a2013-03-28 10:42:02 +01006311 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006312 int num_connectors)
6313{
Daniel Vetterf47709a2013-03-28 10:42:02 +01006314 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006315 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006316 u32 dpll;
6317 bool is_sdvo;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006318 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006319
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006320 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05306321
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006322 is_sdvo = intel_pipe_will_have_type(crtc, INTEL_OUTPUT_SDVO) ||
6323 intel_pipe_will_have_type(crtc, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006324
6325 dpll = DPLL_VGA_MODE_DIS;
6326
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006327 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006328 dpll |= DPLLB_MODE_LVDS;
6329 else
6330 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01006331
Daniel Vetteref1b4602013-06-01 17:17:04 +02006332 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006333 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetter198a037f2013-04-19 11:14:37 +02006334 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006335 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02006336
6337 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006338 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02006339
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006340 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006341 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006342
6343 /* compute bitmask from p1 value */
6344 if (IS_PINEVIEW(dev))
6345 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
6346 else {
6347 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6348 if (IS_G4X(dev) && reduced_clock)
6349 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
6350 }
6351 switch (clock->p2) {
6352 case 5:
6353 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
6354 break;
6355 case 7:
6356 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
6357 break;
6358 case 10:
6359 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
6360 break;
6361 case 14:
6362 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
6363 break;
6364 }
6365 if (INTEL_INFO(dev)->gen >= 4)
6366 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
6367
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006368 if (crtc_state->sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006369 dpll |= PLL_REF_INPUT_TVCLKINBC;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006370 else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006371 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
6372 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
6373 else
6374 dpll |= PLL_REF_INPUT_DREFCLK;
6375
6376 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006377 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006378
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006379 if (INTEL_INFO(dev)->gen >= 4) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006380 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02006381 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006382 crtc_state->dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006383 }
6384}
6385
Daniel Vetterf47709a2013-03-28 10:42:02 +01006386static void i8xx_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006387 struct intel_crtc_state *crtc_state,
Daniel Vetterf47709a2013-03-28 10:42:02 +01006388 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006389 int num_connectors)
6390{
Daniel Vetterf47709a2013-03-28 10:42:02 +01006391 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006392 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006393 u32 dpll;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006394 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006395
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006396 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05306397
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006398 dpll = DPLL_VGA_MODE_DIS;
6399
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006400 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006401 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6402 } else {
6403 if (clock->p1 == 2)
6404 dpll |= PLL_P1_DIVIDE_BY_TWO;
6405 else
6406 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6407 if (clock->p2 == 4)
6408 dpll |= PLL_P2_DIVIDE_BY_4;
6409 }
6410
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006411 if (!IS_I830(dev) && intel_pipe_will_have_type(crtc, INTEL_OUTPUT_DVO))
Daniel Vetter4a33e482013-07-06 12:52:05 +02006412 dpll |= DPLL_DVO_2X_MODE;
6413
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006414 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006415 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
6416 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
6417 else
6418 dpll |= PLL_REF_INPUT_DREFCLK;
6419
6420 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006421 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006422}
6423
Daniel Vetter8a654f32013-06-01 17:16:22 +02006424static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006425{
6426 struct drm_device *dev = intel_crtc->base.dev;
6427 struct drm_i915_private *dev_priv = dev->dev_private;
6428 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006429 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Daniel Vetter8a654f32013-06-01 17:16:22 +02006430 struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006431 &intel_crtc->config->base.adjusted_mode;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02006432 uint32_t crtc_vtotal, crtc_vblank_end;
6433 int vsyncshift = 0;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006434
6435 /* We need to be careful not to changed the adjusted mode, for otherwise
6436 * the hw state checker will get angry at the mismatch. */
6437 crtc_vtotal = adjusted_mode->crtc_vtotal;
6438 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006439
Ville Syrjälä609aeac2014-03-28 23:29:30 +02006440 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006441 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006442 crtc_vtotal -= 1;
6443 crtc_vblank_end -= 1;
Ville Syrjälä609aeac2014-03-28 23:29:30 +02006444
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006445 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjälä609aeac2014-03-28 23:29:30 +02006446 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
6447 else
6448 vsyncshift = adjusted_mode->crtc_hsync_start -
6449 adjusted_mode->crtc_htotal / 2;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02006450 if (vsyncshift < 0)
6451 vsyncshift += adjusted_mode->crtc_htotal;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006452 }
6453
6454 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006455 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006456
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006457 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006458 (adjusted_mode->crtc_hdisplay - 1) |
6459 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006460 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006461 (adjusted_mode->crtc_hblank_start - 1) |
6462 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006463 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006464 (adjusted_mode->crtc_hsync_start - 1) |
6465 ((adjusted_mode->crtc_hsync_end - 1) << 16));
6466
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006467 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006468 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006469 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006470 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006471 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02006472 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006473 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006474 (adjusted_mode->crtc_vsync_start - 1) |
6475 ((adjusted_mode->crtc_vsync_end - 1) << 16));
6476
Paulo Zanonib5e508d2012-10-24 11:34:43 -02006477 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
6478 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
6479 * documented on the DDI_FUNC_CTL register description, EDP Input Select
6480 * bits. */
6481 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
6482 (pipe == PIPE_B || pipe == PIPE_C))
6483 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
6484
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006485 /* pipesrc controls the size that is scaled from, which should
6486 * always be the user's requested size.
6487 */
6488 I915_WRITE(PIPESRC(pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006489 ((intel_crtc->config->pipe_src_w - 1) << 16) |
6490 (intel_crtc->config->pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03006491}
6492
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006493static void intel_get_pipe_timings(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006494 struct intel_crtc_state *pipe_config)
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006495{
6496 struct drm_device *dev = crtc->base.dev;
6497 struct drm_i915_private *dev_priv = dev->dev_private;
6498 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
6499 uint32_t tmp;
6500
6501 tmp = I915_READ(HTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006502 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
6503 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006504 tmp = I915_READ(HBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006505 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
6506 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006507 tmp = I915_READ(HSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006508 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
6509 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006510
6511 tmp = I915_READ(VTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006512 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
6513 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006514 tmp = I915_READ(VBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006515 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
6516 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006517 tmp = I915_READ(VSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006518 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
6519 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006520
6521 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006522 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
6523 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
6524 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006525 }
6526
6527 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03006528 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
6529 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
6530
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006531 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
6532 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006533}
6534
Daniel Vetterf6a83282014-02-11 15:28:57 -08006535void intel_mode_from_pipe_config(struct drm_display_mode *mode,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006536 struct intel_crtc_state *pipe_config)
Jesse Barnesbabea612013-06-26 18:57:38 +03006537{
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006538 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
6539 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
6540 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
6541 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03006542
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006543 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
6544 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
6545 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
6546 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03006547
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006548 mode->flags = pipe_config->base.adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03006549
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006550 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
6551 mode->flags |= pipe_config->base.adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03006552}
6553
Daniel Vetter84b046f2013-02-19 18:48:54 +01006554static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
6555{
6556 struct drm_device *dev = intel_crtc->base.dev;
6557 struct drm_i915_private *dev_priv = dev->dev_private;
6558 uint32_t pipeconf;
6559
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02006560 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01006561
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03006562 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
6563 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
6564 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
Daniel Vetter67c72a12013-09-24 11:46:14 +02006565
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006566 if (intel_crtc->config->double_wide)
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006567 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01006568
Daniel Vetterff9ce462013-04-24 14:57:17 +02006569 /* only g4x and later have fancy bpc/dither controls */
6570 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02006571 /* Bspec claims that we can't use dithering for 30bpp pipes. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006572 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
Daniel Vetterff9ce462013-04-24 14:57:17 +02006573 pipeconf |= PIPECONF_DITHER_EN |
6574 PIPECONF_DITHER_TYPE_SP;
6575
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006576 switch (intel_crtc->config->pipe_bpp) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02006577 case 18:
6578 pipeconf |= PIPECONF_6BPC;
6579 break;
6580 case 24:
6581 pipeconf |= PIPECONF_8BPC;
6582 break;
6583 case 30:
6584 pipeconf |= PIPECONF_10BPC;
6585 break;
6586 default:
6587 /* Case prevented by intel_choose_pipe_bpp_dither. */
6588 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01006589 }
6590 }
6591
6592 if (HAS_PIPE_CXSR(dev)) {
6593 if (intel_crtc->lowfreq_avail) {
6594 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
6595 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
6596 } else {
6597 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01006598 }
6599 }
6600
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006601 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02006602 if (INTEL_INFO(dev)->gen < 4 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006603 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02006604 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
6605 else
6606 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
6607 } else
Daniel Vetter84b046f2013-02-19 18:48:54 +01006608 pipeconf |= PIPECONF_PROGRESSIVE;
6609
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006610 if (IS_VALLEYVIEW(dev) && intel_crtc->config->limited_color_range)
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02006611 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03006612
Daniel Vetter84b046f2013-02-19 18:48:54 +01006613 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
6614 POSTING_READ(PIPECONF(intel_crtc->pipe));
6615}
6616
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006617static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
6618 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08006619{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03006620 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08006621 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholtc751ce42010-03-25 11:48:48 -07006622 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07006623 intel_clock_t clock, reduced_clock;
Daniel Vettera16af722013-04-30 14:01:44 +02006624 bool ok, has_reduced_clock = false;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006625 bool is_lvds = false, is_dsi = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01006626 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08006627 const intel_limit_t *limit;
Jesse Barnes79e53942008-11-07 14:24:08 -08006628
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02006629 for_each_intel_encoder(dev, encoder) {
6630 if (encoder->new_crtc != crtc)
6631 continue;
6632
Chris Wilson5eddb702010-09-11 13:48:45 +01006633 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006634 case INTEL_OUTPUT_LVDS:
6635 is_lvds = true;
6636 break;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006637 case INTEL_OUTPUT_DSI:
6638 is_dsi = true;
6639 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02006640 default:
6641 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08006642 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05006643
Eric Anholtc751ce42010-03-25 11:48:48 -07006644 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08006645 }
6646
Jani Nikulaf2335332013-09-13 11:03:09 +03006647 if (is_dsi)
Daniel Vetter5b18e572014-04-24 23:55:06 +02006648 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006649
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006650 if (!crtc_state->clock_set) {
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006651 refclk = i9xx_get_refclk(crtc, num_connectors);
Jani Nikulaf2335332013-09-13 11:03:09 +03006652
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006653 /*
6654 * Returns a set of divisors for the desired target clock with
6655 * the given refclk, or FALSE. The returned values represent
6656 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
6657 * 2) / p1 / p2.
6658 */
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006659 limit = intel_limit(crtc, refclk);
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03006660 ok = dev_priv->display.find_dpll(limit, crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006661 crtc_state->port_clock,
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006662 refclk, NULL, &clock);
Jani Nikulaf2335332013-09-13 11:03:09 +03006663 if (!ok) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006664 DRM_ERROR("Couldn't find PLL settings for mode!\n");
6665 return -EINVAL;
6666 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006667
Jani Nikulaf2335332013-09-13 11:03:09 +03006668 if (is_lvds && dev_priv->lvds_downclock_avail) {
6669 /*
6670 * Ensure we match the reduced clock's P to the target
6671 * clock. If the clocks don't match, we can't switch
6672 * the display clock by using the FP0/FP1. In such case
6673 * we will disable the LVDS downclock feature.
6674 */
6675 has_reduced_clock =
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03006676 dev_priv->display.find_dpll(limit, crtc,
Jani Nikulaf2335332013-09-13 11:03:09 +03006677 dev_priv->lvds_downclock,
6678 refclk, &clock,
6679 &reduced_clock);
6680 }
6681 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006682 crtc_state->dpll.n = clock.n;
6683 crtc_state->dpll.m1 = clock.m1;
6684 crtc_state->dpll.m2 = clock.m2;
6685 crtc_state->dpll.p1 = clock.p1;
6686 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01006687 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006688
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006689 if (IS_GEN2(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006690 i8xx_update_pll(crtc, crtc_state,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05306691 has_reduced_clock ? &reduced_clock : NULL,
6692 num_connectors);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006693 } else if (IS_CHERRYVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006694 chv_update_pll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006695 } else if (IS_VALLEYVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006696 vlv_update_pll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006697 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006698 i9xx_update_pll(crtc, crtc_state,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006699 has_reduced_clock ? &reduced_clock : NULL,
Robin Schroereba905b2014-05-18 02:24:50 +02006700 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006701 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006702
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02006703 return 0;
Eric Anholtf564048e2011-03-30 13:01:02 -07006704}
6705
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006706static void i9xx_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006707 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006708{
6709 struct drm_device *dev = crtc->base.dev;
6710 struct drm_i915_private *dev_priv = dev->dev_private;
6711 uint32_t tmp;
6712
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02006713 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
6714 return;
6715
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006716 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02006717 if (!(tmp & PFIT_ENABLE))
6718 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006719
Daniel Vetter06922822013-07-11 13:35:40 +02006720 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006721 if (INTEL_INFO(dev)->gen < 4) {
6722 if (crtc->pipe != PIPE_B)
6723 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006724 } else {
6725 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
6726 return;
6727 }
6728
Daniel Vetter06922822013-07-11 13:35:40 +02006729 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006730 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
6731 if (INTEL_INFO(dev)->gen < 5)
6732 pipe_config->gmch_pfit.lvds_border_bits =
6733 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
6734}
6735
Jesse Barnesacbec812013-09-20 11:29:32 -07006736static void vlv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006737 struct intel_crtc_state *pipe_config)
Jesse Barnesacbec812013-09-20 11:29:32 -07006738{
6739 struct drm_device *dev = crtc->base.dev;
6740 struct drm_i915_private *dev_priv = dev->dev_private;
6741 int pipe = pipe_config->cpu_transcoder;
6742 intel_clock_t clock;
6743 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07006744 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07006745
Shobhit Kumarf573de52014-07-30 20:32:37 +05306746 /* In case of MIPI DPLL will not even be used */
6747 if (!(pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE))
6748 return;
6749
Jesse Barnesacbec812013-09-20 11:29:32 -07006750 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006751 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
Jesse Barnesacbec812013-09-20 11:29:32 -07006752 mutex_unlock(&dev_priv->dpio_lock);
6753
6754 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
6755 clock.m2 = mdiv & DPIO_M2DIV_MASK;
6756 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
6757 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
6758 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
6759
Ville Syrjäläf6466282013-10-14 14:50:31 +03006760 vlv_clock(refclk, &clock);
Jesse Barnesacbec812013-09-20 11:29:32 -07006761
Ville Syrjäläf6466282013-10-14 14:50:31 +03006762 /* clock.dot is the fast clock */
6763 pipe_config->port_clock = clock.dot / 5;
Jesse Barnesacbec812013-09-20 11:29:32 -07006764}
6765
Damien Lespiau5724dbd2015-01-20 12:51:52 +00006766static void
6767i9xx_get_initial_plane_config(struct intel_crtc *crtc,
6768 struct intel_initial_plane_config *plane_config)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006769{
6770 struct drm_device *dev = crtc->base.dev;
6771 struct drm_i915_private *dev_priv = dev->dev_private;
6772 u32 val, base, offset;
6773 int pipe = crtc->pipe, plane = crtc->plane;
6774 int fourcc, pixel_format;
6775 int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006776 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00006777 struct intel_framebuffer *intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006778
Damien Lespiau42a7b082015-02-05 19:35:13 +00006779 val = I915_READ(DSPCNTR(plane));
6780 if (!(val & DISPLAY_PLANE_ENABLE))
6781 return;
6782
Damien Lespiaud9806c92015-01-21 14:07:19 +00006783 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00006784 if (!intel_fb) {
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006785 DRM_DEBUG_KMS("failed to alloc fb\n");
6786 return;
6787 }
6788
Damien Lespiau1b842c82015-01-21 13:50:54 +00006789 fb = &intel_fb->base;
6790
Daniel Vetter18c52472015-02-10 17:16:09 +00006791 if (INTEL_INFO(dev)->gen >= 4) {
6792 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00006793 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00006794 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
6795 }
6796 }
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006797
6798 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00006799 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006800 fb->pixel_format = fourcc;
6801 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006802
6803 if (INTEL_INFO(dev)->gen >= 4) {
Damien Lespiau49af4492015-01-20 12:51:44 +00006804 if (plane_config->tiling)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006805 offset = I915_READ(DSPTILEOFF(plane));
6806 else
6807 offset = I915_READ(DSPLINOFF(plane));
6808 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
6809 } else {
6810 base = I915_READ(DSPADDR(plane));
6811 }
6812 plane_config->base = base;
6813
6814 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006815 fb->width = ((val >> 16) & 0xfff) + 1;
6816 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006817
6818 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006819 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006820
Damien Lespiaub113d5e2015-01-20 12:51:46 +00006821 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00006822 fb->pixel_format,
6823 fb->modifier[0]);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006824
Daniel Vetterf37b5c22015-02-10 23:12:27 +01006825 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006826
Damien Lespiau2844a922015-01-20 12:51:48 +00006827 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
6828 pipe_name(pipe), plane, fb->width, fb->height,
6829 fb->bits_per_pixel, base, fb->pitches[0],
6830 plane_config->size);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006831
Damien Lespiau2d140302015-02-05 17:22:18 +00006832 plane_config->fb = intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006833}
6834
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006835static void chv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006836 struct intel_crtc_state *pipe_config)
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006837{
6838 struct drm_device *dev = crtc->base.dev;
6839 struct drm_i915_private *dev_priv = dev->dev_private;
6840 int pipe = pipe_config->cpu_transcoder;
6841 enum dpio_channel port = vlv_pipe_to_channel(pipe);
6842 intel_clock_t clock;
6843 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2;
6844 int refclk = 100000;
6845
6846 mutex_lock(&dev_priv->dpio_lock);
6847 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
6848 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
6849 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
6850 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
6851 mutex_unlock(&dev_priv->dpio_lock);
6852
6853 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
6854 clock.m2 = ((pll_dw0 & 0xff) << 22) | (pll_dw2 & 0x3fffff);
6855 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
6856 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
6857 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
6858
6859 chv_clock(refclk, &clock);
6860
6861 /* clock.dot is the fast clock */
6862 pipe_config->port_clock = clock.dot / 5;
6863}
6864
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006865static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006866 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006867{
6868 struct drm_device *dev = crtc->base.dev;
6869 struct drm_i915_private *dev_priv = dev->dev_private;
6870 uint32_t tmp;
6871
Daniel Vetterf458ebb2014-09-30 10:56:39 +02006872 if (!intel_display_power_is_enabled(dev_priv,
6873 POWER_DOMAIN_PIPE(crtc->pipe)))
Imre Deakb5482bd2014-03-05 16:20:55 +02006874 return false;
6875
Daniel Vettere143a212013-07-04 12:01:15 +02006876 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02006877 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02006878
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006879 tmp = I915_READ(PIPECONF(crtc->pipe));
6880 if (!(tmp & PIPECONF_ENABLE))
6881 return false;
6882
Ville Syrjälä42571ae2013-09-06 23:29:00 +03006883 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
6884 switch (tmp & PIPECONF_BPC_MASK) {
6885 case PIPECONF_6BPC:
6886 pipe_config->pipe_bpp = 18;
6887 break;
6888 case PIPECONF_8BPC:
6889 pipe_config->pipe_bpp = 24;
6890 break;
6891 case PIPECONF_10BPC:
6892 pipe_config->pipe_bpp = 30;
6893 break;
6894 default:
6895 break;
6896 }
6897 }
6898
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02006899 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
6900 pipe_config->limited_color_range = true;
6901
Ville Syrjälä282740f2013-09-04 18:30:03 +03006902 if (INTEL_INFO(dev)->gen < 4)
6903 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
6904
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006905 intel_get_pipe_timings(crtc, pipe_config);
6906
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006907 i9xx_get_pfit_config(crtc, pipe_config);
6908
Daniel Vetter6c49f242013-06-06 12:45:25 +02006909 if (INTEL_INFO(dev)->gen >= 4) {
6910 tmp = I915_READ(DPLL_MD(crtc->pipe));
6911 pipe_config->pixel_multiplier =
6912 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
6913 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006914 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02006915 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
6916 tmp = I915_READ(DPLL(crtc->pipe));
6917 pipe_config->pixel_multiplier =
6918 ((tmp & SDVO_MULTIPLIER_MASK)
6919 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
6920 } else {
6921 /* Note that on i915G/GM the pixel multiplier is in the sdvo
6922 * port and will be fixed up in the encoder->get_config
6923 * function. */
6924 pipe_config->pixel_multiplier = 1;
6925 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006926 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
6927 if (!IS_VALLEYVIEW(dev)) {
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03006928 /*
6929 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
6930 * on 830. Filter it out here so that we don't
6931 * report errors due to that.
6932 */
6933 if (IS_I830(dev))
6934 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
6935
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006936 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
6937 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03006938 } else {
6939 /* Mask out read-only status bits. */
6940 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
6941 DPLL_PORTC_READY_MASK |
6942 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006943 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02006944
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006945 if (IS_CHERRYVIEW(dev))
6946 chv_crtc_clock_get(crtc, pipe_config);
6947 else if (IS_VALLEYVIEW(dev))
Jesse Barnesacbec812013-09-20 11:29:32 -07006948 vlv_crtc_clock_get(crtc, pipe_config);
6949 else
6950 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03006951
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006952 return true;
6953}
6954
Paulo Zanonidde86e22012-12-01 12:04:25 -02006955static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07006956{
6957 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006958 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006959 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006960 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006961 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006962 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07006963 bool has_ck505 = false;
6964 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006965
6966 /* We need to take the global config into account */
Damien Lespiaub2784e12014-08-05 11:29:37 +01006967 for_each_intel_encoder(dev, encoder) {
Keith Packard199e5d72011-09-22 12:01:57 -07006968 switch (encoder->type) {
6969 case INTEL_OUTPUT_LVDS:
6970 has_panel = true;
6971 has_lvds = true;
6972 break;
6973 case INTEL_OUTPUT_EDP:
6974 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03006975 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07006976 has_cpu_edp = true;
6977 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02006978 default:
6979 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006980 }
6981 }
6982
Keith Packard99eb6a02011-09-26 14:29:12 -07006983 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006984 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07006985 can_ssc = has_ck505;
6986 } else {
6987 has_ck505 = false;
6988 can_ssc = true;
6989 }
6990
Imre Deak2de69052013-05-08 13:14:04 +03006991 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
6992 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006993
6994 /* Ironlake: try to setup display ref clock before DPLL
6995 * enabling. This is only under driver's control after
6996 * PCH B stepping, previous chipset stepping should be
6997 * ignoring this setting.
6998 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006999 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07007000
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007001 /* As we must carefully and slowly disable/enable each source in turn,
7002 * compute the final state we want first and check if we need to
7003 * make any changes at all.
7004 */
7005 final = val;
7006 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07007007 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007008 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07007009 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007010 final |= DREF_NONSPREAD_SOURCE_ENABLE;
7011
7012 final &= ~DREF_SSC_SOURCE_MASK;
7013 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
7014 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007015
Keith Packard199e5d72011-09-22 12:01:57 -07007016 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007017 final |= DREF_SSC_SOURCE_ENABLE;
7018
7019 if (intel_panel_use_ssc(dev_priv) && can_ssc)
7020 final |= DREF_SSC1_ENABLE;
7021
7022 if (has_cpu_edp) {
7023 if (intel_panel_use_ssc(dev_priv) && can_ssc)
7024 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
7025 else
7026 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
7027 } else
7028 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
7029 } else {
7030 final |= DREF_SSC_SOURCE_DISABLE;
7031 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
7032 }
7033
7034 if (final == val)
7035 return;
7036
7037 /* Always enable nonspread source */
7038 val &= ~DREF_NONSPREAD_SOURCE_MASK;
7039
7040 if (has_ck505)
7041 val |= DREF_NONSPREAD_CK505_ENABLE;
7042 else
7043 val |= DREF_NONSPREAD_SOURCE_ENABLE;
7044
7045 if (has_panel) {
7046 val &= ~DREF_SSC_SOURCE_MASK;
7047 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007048
Keith Packard199e5d72011-09-22 12:01:57 -07007049 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07007050 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07007051 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007052 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02007053 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007054 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007055
7056 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007057 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07007058 POSTING_READ(PCH_DREF_CONTROL);
7059 udelay(200);
7060
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007061 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007062
7063 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07007064 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07007065 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07007066 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007067 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Robin Schroereba905b2014-05-18 02:24:50 +02007068 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007069 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07007070 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007071 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007072
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007073 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07007074 POSTING_READ(PCH_DREF_CONTROL);
7075 udelay(200);
7076 } else {
7077 DRM_DEBUG_KMS("Disabling SSC entirely\n");
7078
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007079 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07007080
7081 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007082 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007083
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007084 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07007085 POSTING_READ(PCH_DREF_CONTROL);
7086 udelay(200);
7087
7088 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007089 val &= ~DREF_SSC_SOURCE_MASK;
7090 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007091
7092 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007093 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007094
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007095 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07007096 POSTING_READ(PCH_DREF_CONTROL);
7097 udelay(200);
7098 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007099
7100 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07007101}
7102
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007103static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02007104{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007105 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02007106
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007107 tmp = I915_READ(SOUTH_CHICKEN2);
7108 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
7109 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007110
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007111 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
7112 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
7113 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02007114
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007115 tmp = I915_READ(SOUTH_CHICKEN2);
7116 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
7117 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007118
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007119 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
7120 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
7121 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007122}
7123
7124/* WaMPhyProgramming:hsw */
7125static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
7126{
7127 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02007128
7129 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
7130 tmp &= ~(0xFF << 24);
7131 tmp |= (0x12 << 24);
7132 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
7133
Paulo Zanonidde86e22012-12-01 12:04:25 -02007134 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
7135 tmp |= (1 << 11);
7136 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
7137
7138 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
7139 tmp |= (1 << 11);
7140 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
7141
Paulo Zanonidde86e22012-12-01 12:04:25 -02007142 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
7143 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
7144 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
7145
7146 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
7147 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
7148 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
7149
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007150 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
7151 tmp &= ~(7 << 13);
7152 tmp |= (5 << 13);
7153 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007154
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007155 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
7156 tmp &= ~(7 << 13);
7157 tmp |= (5 << 13);
7158 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007159
7160 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
7161 tmp &= ~0xFF;
7162 tmp |= 0x1C;
7163 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
7164
7165 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
7166 tmp &= ~0xFF;
7167 tmp |= 0x1C;
7168 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
7169
7170 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
7171 tmp &= ~(0xFF << 16);
7172 tmp |= (0x1C << 16);
7173 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
7174
7175 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
7176 tmp &= ~(0xFF << 16);
7177 tmp |= (0x1C << 16);
7178 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
7179
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007180 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
7181 tmp |= (1 << 27);
7182 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007183
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007184 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
7185 tmp |= (1 << 27);
7186 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007187
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007188 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
7189 tmp &= ~(0xF << 28);
7190 tmp |= (4 << 28);
7191 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007192
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007193 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
7194 tmp &= ~(0xF << 28);
7195 tmp |= (4 << 28);
7196 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007197}
7198
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007199/* Implements 3 different sequences from BSpec chapter "Display iCLK
7200 * Programming" based on the parameters passed:
7201 * - Sequence to enable CLKOUT_DP
7202 * - Sequence to enable CLKOUT_DP without spread
7203 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
7204 */
7205static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
7206 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007207{
7208 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007209 uint32_t reg, tmp;
7210
7211 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
7212 with_spread = true;
7213 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
7214 with_fdi, "LP PCH doesn't have FDI\n"))
7215 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007216
7217 mutex_lock(&dev_priv->dpio_lock);
7218
7219 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7220 tmp &= ~SBI_SSCCTL_DISABLE;
7221 tmp |= SBI_SSCCTL_PATHALT;
7222 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7223
7224 udelay(24);
7225
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007226 if (with_spread) {
7227 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7228 tmp &= ~SBI_SSCCTL_PATHALT;
7229 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007230
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007231 if (with_fdi) {
7232 lpt_reset_fdi_mphy(dev_priv);
7233 lpt_program_fdi_mphy(dev_priv);
7234 }
7235 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02007236
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03007237 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
7238 SBI_GEN0 : SBI_DBUFF0;
7239 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
7240 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
7241 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01007242
7243 mutex_unlock(&dev_priv->dpio_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007244}
7245
Paulo Zanoni47701c32013-07-23 11:19:25 -03007246/* Sequence to disable CLKOUT_DP */
7247static void lpt_disable_clkout_dp(struct drm_device *dev)
7248{
7249 struct drm_i915_private *dev_priv = dev->dev_private;
7250 uint32_t reg, tmp;
7251
7252 mutex_lock(&dev_priv->dpio_lock);
7253
7254 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
7255 SBI_GEN0 : SBI_DBUFF0;
7256 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
7257 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
7258 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
7259
7260 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7261 if (!(tmp & SBI_SSCCTL_DISABLE)) {
7262 if (!(tmp & SBI_SSCCTL_PATHALT)) {
7263 tmp |= SBI_SSCCTL_PATHALT;
7264 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7265 udelay(32);
7266 }
7267 tmp |= SBI_SSCCTL_DISABLE;
7268 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7269 }
7270
7271 mutex_unlock(&dev_priv->dpio_lock);
7272}
7273
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007274static void lpt_init_pch_refclk(struct drm_device *dev)
7275{
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007276 struct intel_encoder *encoder;
7277 bool has_vga = false;
7278
Damien Lespiaub2784e12014-08-05 11:29:37 +01007279 for_each_intel_encoder(dev, encoder) {
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007280 switch (encoder->type) {
7281 case INTEL_OUTPUT_ANALOG:
7282 has_vga = true;
7283 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007284 default:
7285 break;
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007286 }
7287 }
7288
Paulo Zanoni47701c32013-07-23 11:19:25 -03007289 if (has_vga)
7290 lpt_enable_clkout_dp(dev, true, true);
7291 else
7292 lpt_disable_clkout_dp(dev);
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03007293}
7294
Paulo Zanonidde86e22012-12-01 12:04:25 -02007295/*
7296 * Initialize reference clocks when the driver loads
7297 */
7298void intel_init_pch_refclk(struct drm_device *dev)
7299{
7300 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
7301 ironlake_init_pch_refclk(dev);
7302 else if (HAS_PCH_LPT(dev))
7303 lpt_init_pch_refclk(dev);
7304}
7305
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007306static int ironlake_get_refclk(struct drm_crtc *crtc)
7307{
7308 struct drm_device *dev = crtc->dev;
7309 struct drm_i915_private *dev_priv = dev->dev_private;
7310 struct intel_encoder *encoder;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007311 int num_connectors = 0;
7312 bool is_lvds = false;
7313
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02007314 for_each_intel_encoder(dev, encoder) {
7315 if (encoder->new_crtc != to_intel_crtc(crtc))
7316 continue;
7317
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007318 switch (encoder->type) {
7319 case INTEL_OUTPUT_LVDS:
7320 is_lvds = true;
7321 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007322 default:
7323 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007324 }
7325 num_connectors++;
7326 }
7327
7328 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007329 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03007330 dev_priv->vbt.lvds_ssc_freq);
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007331 return dev_priv->vbt.lvds_ssc_freq;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07007332 }
7333
7334 return 120000;
7335}
7336
Daniel Vetter6ff93602013-04-19 11:24:36 +02007337static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03007338{
7339 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
7340 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7341 int pipe = intel_crtc->pipe;
7342 uint32_t val;
7343
Daniel Vetter78114072013-06-13 00:54:57 +02007344 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03007345
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007346 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03007347 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007348 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007349 break;
7350 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007351 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007352 break;
7353 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007354 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007355 break;
7356 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01007357 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03007358 break;
7359 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03007360 /* Case prevented by intel_choose_pipe_bpp_dither. */
7361 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03007362 }
7363
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007364 if (intel_crtc->config->dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03007365 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
7366
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007367 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03007368 val |= PIPECONF_INTERLACED_ILK;
7369 else
7370 val |= PIPECONF_PROGRESSIVE;
7371
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007372 if (intel_crtc->config->limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02007373 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02007374
Paulo Zanonic8203562012-09-12 10:06:29 -03007375 I915_WRITE(PIPECONF(pipe), val);
7376 POSTING_READ(PIPECONF(pipe));
7377}
7378
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007379/*
7380 * Set up the pipe CSC unit.
7381 *
7382 * Currently only full range RGB to limited range RGB conversion
7383 * is supported, but eventually this should handle various
7384 * RGB<->YCbCr scenarios as well.
7385 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01007386static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007387{
7388 struct drm_device *dev = crtc->dev;
7389 struct drm_i915_private *dev_priv = dev->dev_private;
7390 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7391 int pipe = intel_crtc->pipe;
7392 uint16_t coeff = 0x7800; /* 1.0 */
7393
7394 /*
7395 * TODO: Check what kind of values actually come out of the pipe
7396 * with these coeff/postoff values and adjust to get the best
7397 * accuracy. Perhaps we even need to take the bpc value into
7398 * consideration.
7399 */
7400
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007401 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007402 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
7403
7404 /*
7405 * GY/GU and RY/RU should be the other way around according
7406 * to BSpec, but reality doesn't agree. Just set them up in
7407 * a way that results in the correct picture.
7408 */
7409 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
7410 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
7411
7412 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
7413 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
7414
7415 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
7416 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
7417
7418 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
7419 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
7420 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
7421
7422 if (INTEL_INFO(dev)->gen > 6) {
7423 uint16_t postoff = 0;
7424
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007425 if (intel_crtc->config->limited_color_range)
Ville Syrjälä32cf0cb2013-11-28 22:10:38 +02007426 postoff = (16 * (1 << 12) / 255) & 0x1fff;
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007427
7428 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
7429 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
7430 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
7431
7432 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
7433 } else {
7434 uint32_t mode = CSC_MODE_YUV_TO_RGB;
7435
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007436 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007437 mode |= CSC_BLACK_SCREEN_OFFSET;
7438
7439 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
7440 }
7441}
7442
Daniel Vetter6ff93602013-04-19 11:24:36 +02007443static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007444{
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007445 struct drm_device *dev = crtc->dev;
7446 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007447 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007448 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007449 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007450 uint32_t val;
7451
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02007452 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007453
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007454 if (IS_HASWELL(dev) && intel_crtc->config->dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007455 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
7456
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007457 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007458 val |= PIPECONF_INTERLACED_ILK;
7459 else
7460 val |= PIPECONF_PROGRESSIVE;
7461
Paulo Zanoni702e7a52012-10-23 18:29:59 -02007462 I915_WRITE(PIPECONF(cpu_transcoder), val);
7463 POSTING_READ(PIPECONF(cpu_transcoder));
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02007464
7465 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
7466 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007467
Satheeshakrishna M3cdf122c2014-04-08 15:46:53 +05307468 if (IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007469 val = 0;
7470
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007471 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007472 case 18:
7473 val |= PIPEMISC_DITHER_6_BPC;
7474 break;
7475 case 24:
7476 val |= PIPEMISC_DITHER_8_BPC;
7477 break;
7478 case 30:
7479 val |= PIPEMISC_DITHER_10_BPC;
7480 break;
7481 case 36:
7482 val |= PIPEMISC_DITHER_12_BPC;
7483 break;
7484 default:
7485 /* Case prevented by pipe_config_set_bpp. */
7486 BUG();
7487 }
7488
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007489 if (intel_crtc->config->dither)
Paulo Zanoni756f85c2013-11-02 21:07:38 -07007490 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
7491
7492 I915_WRITE(PIPEMISC(pipe), val);
7493 }
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03007494}
7495
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007496static bool ironlake_compute_clocks(struct drm_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007497 struct intel_crtc_state *crtc_state,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007498 intel_clock_t *clock,
7499 bool *has_reduced_clock,
7500 intel_clock_t *reduced_clock)
7501{
7502 struct drm_device *dev = crtc->dev;
7503 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +03007504 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007505 int refclk;
7506 const intel_limit_t *limit;
Daniel Vettera16af722013-04-30 14:01:44 +02007507 bool ret, is_lvds = false;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007508
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02007509 is_lvds = intel_pipe_will_have_type(intel_crtc, INTEL_OUTPUT_LVDS);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007510
7511 refclk = ironlake_get_refclk(crtc);
7512
7513 /*
7514 * Returns a set of divisors for the desired target clock with the given
7515 * refclk, or FALSE. The returned values represent the clock equation:
7516 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
7517 */
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007518 limit = intel_limit(intel_crtc, refclk);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +03007519 ret = dev_priv->display.find_dpll(limit, intel_crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007520 crtc_state->port_clock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02007521 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007522 if (!ret)
7523 return false;
7524
7525 if (is_lvds && dev_priv->lvds_downclock_avail) {
7526 /*
7527 * Ensure we match the reduced clock's P to the target clock.
7528 * If the clocks don't match, we can't switch the display clock
7529 * by using the FP0/FP1. In such case we will disable the LVDS
7530 * downclock feature.
7531 */
Daniel Vetteree9300b2013-06-03 22:40:22 +02007532 *has_reduced_clock =
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +03007533 dev_priv->display.find_dpll(limit, intel_crtc,
Daniel Vetteree9300b2013-06-03 22:40:22 +02007534 dev_priv->lvds_downclock,
7535 refclk, clock,
7536 reduced_clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007537 }
7538
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007539 return true;
7540}
7541
Paulo Zanonid4b19312012-11-29 11:29:32 -02007542int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
7543{
7544 /*
7545 * Account for spread spectrum to avoid
7546 * oversubscribing the link. Max center spread
7547 * is 2.5%; use 5% for safety's sake.
7548 */
7549 u32 bps = target_clock * bpp * 21 / 20;
Ville Syrjälä619d4d02014-02-27 14:23:14 +02007550 return DIV_ROUND_UP(bps, link_bw * 8);
Paulo Zanonid4b19312012-11-29 11:29:32 -02007551}
7552
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007553static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02007554{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007555 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03007556}
7557
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007558static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007559 struct intel_crtc_state *crtc_state,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007560 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02007561 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007562{
7563 struct drm_crtc *crtc = &intel_crtc->base;
7564 struct drm_device *dev = crtc->dev;
7565 struct drm_i915_private *dev_priv = dev->dev_private;
7566 struct intel_encoder *intel_encoder;
7567 uint32_t dpll;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01007568 int factor, num_connectors = 0;
Daniel Vetter09ede542013-04-30 14:01:45 +02007569 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007570
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02007571 for_each_intel_encoder(dev, intel_encoder) {
7572 if (intel_encoder->new_crtc != to_intel_crtc(crtc))
7573 continue;
7574
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007575 switch (intel_encoder->type) {
7576 case INTEL_OUTPUT_LVDS:
7577 is_lvds = true;
7578 break;
7579 case INTEL_OUTPUT_SDVO:
7580 case INTEL_OUTPUT_HDMI:
7581 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007582 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007583 default:
7584 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007585 }
7586
7587 num_connectors++;
7588 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007589
Chris Wilsonc1858122010-12-03 21:35:48 +00007590 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07007591 factor = 21;
7592 if (is_lvds) {
7593 if ((intel_panel_use_ssc(dev_priv) &&
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007594 dev_priv->vbt.lvds_ssc_freq == 100000) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02007595 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07007596 factor = 25;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007597 } else if (crtc_state->sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07007598 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00007599
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007600 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02007601 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00007602
Daniel Vetter9a7c7892013-04-04 22:20:34 +02007603 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
7604 *fp2 |= FP_CB_TUNE;
7605
Chris Wilson5eddb702010-09-11 13:48:45 +01007606 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08007607
Eric Anholta07d6782011-03-30 13:01:08 -07007608 if (is_lvds)
7609 dpll |= DPLLB_MODE_LVDS;
7610 else
7611 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007612
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007613 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02007614 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007615
7616 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007617 dpll |= DPLL_SDVO_HIGH_SPEED;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007618 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007619 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08007620
Eric Anholta07d6782011-03-30 13:01:08 -07007621 /* compute bitmask from p1 value */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007622 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07007623 /* also FPA1 */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007624 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07007625
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007626 switch (crtc_state->dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07007627 case 5:
7628 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
7629 break;
7630 case 7:
7631 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
7632 break;
7633 case 10:
7634 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
7635 break;
7636 case 14:
7637 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
7638 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08007639 }
7640
Daniel Vetterb4c09f32013-04-30 14:01:42 +02007641 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05007642 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08007643 else
7644 dpll |= PLL_REF_INPUT_DREFCLK;
7645
Daniel Vetter959e16d2013-06-05 13:34:21 +02007646 return dpll | DPLL_VCO_ENABLE;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03007647}
7648
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007649static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
7650 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08007651{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007652 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08007653 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007654 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03007655 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01007656 bool is_lvds = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02007657 struct intel_shared_dpll *pll;
Jesse Barnes79e53942008-11-07 14:24:08 -08007658
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007659 is_lvds = intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS);
Jesse Barnes79e53942008-11-07 14:24:08 -08007660
Paulo Zanoni5dc52982012-10-05 12:05:56 -03007661 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
7662 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
7663
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007664 ok = ironlake_compute_clocks(&crtc->base, crtc_state, &clock,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03007665 &has_reduced_clock, &reduced_clock);
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007666 if (!ok && !crtc_state->clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08007667 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7668 return -EINVAL;
7669 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01007670 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007671 if (!crtc_state->clock_set) {
7672 crtc_state->dpll.n = clock.n;
7673 crtc_state->dpll.m1 = clock.m1;
7674 crtc_state->dpll.m2 = clock.m2;
7675 crtc_state->dpll.p1 = clock.p1;
7676 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01007677 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007678
Paulo Zanoni5dc52982012-10-05 12:05:56 -03007679 /* 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 +02007680 if (crtc_state->has_pch_encoder) {
7681 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007682 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007683 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007684
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007685 dpll = ironlake_compute_dpll(crtc, crtc_state,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02007686 &fp, &reduced_clock,
7687 has_reduced_clock ? &fp2 : NULL);
7688
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007689 crtc_state->dpll_hw_state.dpll = dpll;
7690 crtc_state->dpll_hw_state.fp0 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02007691 if (has_reduced_clock)
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007692 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetter66e985c2013-06-05 13:34:20 +02007693 else
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007694 crtc_state->dpll_hw_state.fp1 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02007695
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007696 pll = intel_get_shared_dpll(crtc, crtc_state);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01007697 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03007698 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007699 pipe_name(crtc->pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07007700 return -EINVAL;
7701 }
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +02007702 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007703
Jani Nikulad330a952014-01-21 11:24:25 +02007704 if (is_lvds && has_reduced_clock && i915.powersave)
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007705 crtc->lowfreq_avail = true;
Daniel Vetterbcd644e2013-06-05 13:34:22 +02007706 else
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007707 crtc->lowfreq_avail = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02007708
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007709 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007710}
7711
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007712static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
7713 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02007714{
7715 struct drm_device *dev = crtc->base.dev;
7716 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007717 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02007718
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007719 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
7720 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
7721 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
7722 & ~TU_SIZE_MASK;
7723 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
7724 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
7725 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7726}
7727
7728static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
7729 enum transcoder transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007730 struct intel_link_m_n *m_n,
7731 struct intel_link_m_n *m2_n2)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007732{
7733 struct drm_device *dev = crtc->base.dev;
7734 struct drm_i915_private *dev_priv = dev->dev_private;
7735 enum pipe pipe = crtc->pipe;
7736
7737 if (INTEL_INFO(dev)->gen >= 5) {
7738 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
7739 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
7740 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
7741 & ~TU_SIZE_MASK;
7742 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
7743 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
7744 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007745 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
7746 * gen < 8) and if DRRS is supported (to make sure the
7747 * registers are not unnecessarily read).
7748 */
7749 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007750 crtc->config->has_drrs) {
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007751 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
7752 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
7753 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
7754 & ~TU_SIZE_MASK;
7755 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
7756 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
7757 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7758 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007759 } else {
7760 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
7761 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
7762 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
7763 & ~TU_SIZE_MASK;
7764 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
7765 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
7766 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7767 }
7768}
7769
7770void intel_dp_get_m_n(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007771 struct intel_crtc_state *pipe_config)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007772{
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02007773 if (pipe_config->has_pch_encoder)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007774 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
7775 else
7776 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007777 &pipe_config->dp_m_n,
7778 &pipe_config->dp_m2_n2);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007779}
7780
Daniel Vetter72419202013-04-04 13:28:53 +02007781static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007782 struct intel_crtc_state *pipe_config)
Daniel Vetter72419202013-04-04 13:28:53 +02007783{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007784 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07007785 &pipe_config->fdi_m_n, NULL);
Daniel Vetter72419202013-04-04 13:28:53 +02007786}
7787
Jesse Barnesbd2e2442014-11-13 17:51:47 +00007788static void skylake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007789 struct intel_crtc_state *pipe_config)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00007790{
7791 struct drm_device *dev = crtc->base.dev;
7792 struct drm_i915_private *dev_priv = dev->dev_private;
7793 uint32_t tmp;
7794
7795 tmp = I915_READ(PS_CTL(crtc->pipe));
7796
7797 if (tmp & PS_ENABLE) {
7798 pipe_config->pch_pfit.enabled = true;
7799 pipe_config->pch_pfit.pos = I915_READ(PS_WIN_POS(crtc->pipe));
7800 pipe_config->pch_pfit.size = I915_READ(PS_WIN_SZ(crtc->pipe));
7801 }
7802}
7803
Damien Lespiau5724dbd2015-01-20 12:51:52 +00007804static void
7805skylake_get_initial_plane_config(struct intel_crtc *crtc,
7806 struct intel_initial_plane_config *plane_config)
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007807{
7808 struct drm_device *dev = crtc->base.dev;
7809 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau40f46282015-02-27 11:15:21 +00007810 u32 val, base, offset, stride_mult, tiling;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007811 int pipe = crtc->pipe;
7812 int fourcc, pixel_format;
7813 int aligned_height;
7814 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00007815 struct intel_framebuffer *intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007816
Damien Lespiaud9806c92015-01-21 14:07:19 +00007817 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00007818 if (!intel_fb) {
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007819 DRM_DEBUG_KMS("failed to alloc fb\n");
7820 return;
7821 }
7822
Damien Lespiau1b842c82015-01-21 13:50:54 +00007823 fb = &intel_fb->base;
7824
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007825 val = I915_READ(PLANE_CTL(pipe, 0));
Damien Lespiau42a7b082015-02-05 19:35:13 +00007826 if (!(val & PLANE_CTL_ENABLE))
7827 goto error;
7828
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007829 pixel_format = val & PLANE_CTL_FORMAT_MASK;
7830 fourcc = skl_format_to_fourcc(pixel_format,
7831 val & PLANE_CTL_ORDER_RGBX,
7832 val & PLANE_CTL_ALPHA_MASK);
7833 fb->pixel_format = fourcc;
7834 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
7835
Damien Lespiau40f46282015-02-27 11:15:21 +00007836 tiling = val & PLANE_CTL_TILED_MASK;
7837 switch (tiling) {
7838 case PLANE_CTL_TILED_LINEAR:
7839 fb->modifier[0] = DRM_FORMAT_MOD_NONE;
7840 break;
7841 case PLANE_CTL_TILED_X:
7842 plane_config->tiling = I915_TILING_X;
7843 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
7844 break;
7845 case PLANE_CTL_TILED_Y:
7846 fb->modifier[0] = I915_FORMAT_MOD_Y_TILED;
7847 break;
7848 case PLANE_CTL_TILED_YF:
7849 fb->modifier[0] = I915_FORMAT_MOD_Yf_TILED;
7850 break;
7851 default:
7852 MISSING_CASE(tiling);
7853 goto error;
7854 }
7855
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007856 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
7857 plane_config->base = base;
7858
7859 offset = I915_READ(PLANE_OFFSET(pipe, 0));
7860
7861 val = I915_READ(PLANE_SIZE(pipe, 0));
7862 fb->height = ((val >> 16) & 0xfff) + 1;
7863 fb->width = ((val >> 0) & 0x1fff) + 1;
7864
7865 val = I915_READ(PLANE_STRIDE(pipe, 0));
Damien Lespiau40f46282015-02-27 11:15:21 +00007866 stride_mult = intel_fb_stride_alignment(dev, fb->modifier[0],
7867 fb->pixel_format);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007868 fb->pitches[0] = (val & 0x3ff) * stride_mult;
7869
7870 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00007871 fb->pixel_format,
7872 fb->modifier[0]);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007873
Daniel Vetterf37b5c22015-02-10 23:12:27 +01007874 plane_config->size = fb->pitches[0] * aligned_height;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007875
7876 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
7877 pipe_name(pipe), fb->width, fb->height,
7878 fb->bits_per_pixel, base, fb->pitches[0],
7879 plane_config->size);
7880
Damien Lespiau2d140302015-02-05 17:22:18 +00007881 plane_config->fb = intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00007882 return;
7883
7884error:
7885 kfree(fb);
7886}
7887
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007888static void ironlake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007889 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007890{
7891 struct drm_device *dev = crtc->base.dev;
7892 struct drm_i915_private *dev_priv = dev->dev_private;
7893 uint32_t tmp;
7894
7895 tmp = I915_READ(PF_CTL(crtc->pipe));
7896
7897 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01007898 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007899 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
7900 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02007901
7902 /* We currently do not free assignements of panel fitters on
7903 * ivb/hsw (since we don't use the higher upscaling modes which
7904 * differentiates them) so just WARN about this case for now. */
7905 if (IS_GEN7(dev)) {
7906 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
7907 PF_PIPE_SEL_IVB(crtc->pipe));
7908 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007909 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007910}
7911
Damien Lespiau5724dbd2015-01-20 12:51:52 +00007912static void
7913ironlake_get_initial_plane_config(struct intel_crtc *crtc,
7914 struct intel_initial_plane_config *plane_config)
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007915{
7916 struct drm_device *dev = crtc->base.dev;
7917 struct drm_i915_private *dev_priv = dev->dev_private;
7918 u32 val, base, offset;
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007919 int pipe = crtc->pipe;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007920 int fourcc, pixel_format;
7921 int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007922 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00007923 struct intel_framebuffer *intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007924
Damien Lespiau42a7b082015-02-05 19:35:13 +00007925 val = I915_READ(DSPCNTR(pipe));
7926 if (!(val & DISPLAY_PLANE_ENABLE))
7927 return;
7928
Damien Lespiaud9806c92015-01-21 14:07:19 +00007929 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00007930 if (!intel_fb) {
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007931 DRM_DEBUG_KMS("failed to alloc fb\n");
7932 return;
7933 }
7934
Damien Lespiau1b842c82015-01-21 13:50:54 +00007935 fb = &intel_fb->base;
7936
Daniel Vetter18c52472015-02-10 17:16:09 +00007937 if (INTEL_INFO(dev)->gen >= 4) {
7938 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00007939 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00007940 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
7941 }
7942 }
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007943
7944 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00007945 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007946 fb->pixel_format = fourcc;
7947 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007948
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007949 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007950 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007951 offset = I915_READ(DSPOFFSET(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007952 } else {
Damien Lespiau49af4492015-01-20 12:51:44 +00007953 if (plane_config->tiling)
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007954 offset = I915_READ(DSPTILEOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007955 else
Damien Lespiauaeee5a42015-01-20 12:51:47 +00007956 offset = I915_READ(DSPLINOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007957 }
7958 plane_config->base = base;
7959
7960 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007961 fb->width = ((val >> 16) & 0xfff) + 1;
7962 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007963
7964 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007965 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007966
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007967 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00007968 fb->pixel_format,
7969 fb->modifier[0]);
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007970
Daniel Vetterf37b5c22015-02-10 23:12:27 +01007971 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007972
Damien Lespiau2844a922015-01-20 12:51:48 +00007973 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
7974 pipe_name(pipe), fb->width, fb->height,
7975 fb->bits_per_pixel, base, fb->pitches[0],
7976 plane_config->size);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007977
Damien Lespiau2d140302015-02-05 17:22:18 +00007978 plane_config->fb = intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007979}
7980
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007981static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007982 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007983{
7984 struct drm_device *dev = crtc->base.dev;
7985 struct drm_i915_private *dev_priv = dev->dev_private;
7986 uint32_t tmp;
7987
Daniel Vetterf458ebb2014-09-30 10:56:39 +02007988 if (!intel_display_power_is_enabled(dev_priv,
7989 POWER_DOMAIN_PIPE(crtc->pipe)))
Paulo Zanoni930e8c92014-07-04 13:38:34 -03007990 return false;
7991
Daniel Vettere143a212013-07-04 12:01:15 +02007992 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007993 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02007994
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007995 tmp = I915_READ(PIPECONF(crtc->pipe));
7996 if (!(tmp & PIPECONF_ENABLE))
7997 return false;
7998
Ville Syrjälä42571ae2013-09-06 23:29:00 +03007999 switch (tmp & PIPECONF_BPC_MASK) {
8000 case PIPECONF_6BPC:
8001 pipe_config->pipe_bpp = 18;
8002 break;
8003 case PIPECONF_8BPC:
8004 pipe_config->pipe_bpp = 24;
8005 break;
8006 case PIPECONF_10BPC:
8007 pipe_config->pipe_bpp = 30;
8008 break;
8009 case PIPECONF_12BPC:
8010 pipe_config->pipe_bpp = 36;
8011 break;
8012 default:
8013 break;
8014 }
8015
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02008016 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
8017 pipe_config->limited_color_range = true;
8018
Daniel Vetterab9412b2013-05-03 11:49:46 +02008019 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02008020 struct intel_shared_dpll *pll;
8021
Daniel Vetter88adfff2013-03-28 10:42:01 +01008022 pipe_config->has_pch_encoder = true;
8023
Daniel Vetter627eb5a2013-04-29 19:33:42 +02008024 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
8025 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
8026 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02008027
8028 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02008029
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008030 if (HAS_PCH_IBX(dev_priv->dev)) {
Daniel Vetterd94ab062013-07-04 12:01:16 +02008031 pipe_config->shared_dpll =
8032 (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008033 } else {
8034 tmp = I915_READ(PCH_DPLL_SEL);
8035 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
8036 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
8037 else
8038 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
8039 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02008040
8041 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
8042
8043 WARN_ON(!pll->get_hw_state(dev_priv, pll,
8044 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02008045
8046 tmp = pipe_config->dpll_hw_state.dpll;
8047 pipe_config->pixel_multiplier =
8048 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
8049 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03008050
8051 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02008052 } else {
8053 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02008054 }
8055
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008056 intel_get_pipe_timings(crtc, pipe_config);
8057
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008058 ironlake_get_pfit_config(crtc, pipe_config);
8059
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008060 return true;
8061}
8062
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008063static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
8064{
8065 struct drm_device *dev = dev_priv->dev;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008066 struct intel_crtc *crtc;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008067
Damien Lespiaud3fcc802014-05-13 23:32:22 +01008068 for_each_intel_crtc(dev, crtc)
Rob Clarke2c719b2014-12-15 13:56:32 -05008069 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008070 pipe_name(crtc->pipe));
8071
Rob Clarke2c719b2014-12-15 13:56:32 -05008072 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
8073 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
8074 I915_STATE_WARN(I915_READ(WRPLL_CTL1) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
8075 I915_STATE_WARN(I915_READ(WRPLL_CTL2) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
8076 I915_STATE_WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
8077 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008078 "CPU PWM1 enabled\n");
Paulo Zanonic5107b82014-07-04 11:50:30 -03008079 if (IS_HASWELL(dev))
Rob Clarke2c719b2014-12-15 13:56:32 -05008080 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
Paulo Zanonic5107b82014-07-04 11:50:30 -03008081 "CPU PWM2 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05008082 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008083 "PCH PWM1 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05008084 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008085 "Utility pin enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05008086 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008087
Paulo Zanoni9926ada2014-04-01 19:39:47 -03008088 /*
8089 * In theory we can still leave IRQs enabled, as long as only the HPD
8090 * interrupts remain enabled. We used to check for that, but since it's
8091 * gen-specific and since we only disable LCPLL after we fully disable
8092 * the interrupts, the check below should be enough.
8093 */
Rob Clarke2c719b2014-12-15 13:56:32 -05008094 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008095}
8096
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03008097static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
8098{
8099 struct drm_device *dev = dev_priv->dev;
8100
8101 if (IS_HASWELL(dev))
8102 return I915_READ(D_COMP_HSW);
8103 else
8104 return I915_READ(D_COMP_BDW);
8105}
8106
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03008107static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
8108{
8109 struct drm_device *dev = dev_priv->dev;
8110
8111 if (IS_HASWELL(dev)) {
8112 mutex_lock(&dev_priv->rps.hw_lock);
8113 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
8114 val))
Paulo Zanonif475dad2014-07-04 11:59:57 -03008115 DRM_ERROR("Failed to write to D_COMP\n");
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03008116 mutex_unlock(&dev_priv->rps.hw_lock);
8117 } else {
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03008118 I915_WRITE(D_COMP_BDW, val);
8119 POSTING_READ(D_COMP_BDW);
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03008120 }
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008121}
8122
8123/*
8124 * This function implements pieces of two sequences from BSpec:
8125 * - Sequence for display software to disable LCPLL
8126 * - Sequence for display software to allow package C8+
8127 * The steps implemented here are just the steps that actually touch the LCPLL
8128 * register. Callers should take care of disabling all the display engine
8129 * functions, doing the mode unset, fixing interrupts, etc.
8130 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03008131static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
8132 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008133{
8134 uint32_t val;
8135
8136 assert_can_disable_lcpll(dev_priv);
8137
8138 val = I915_READ(LCPLL_CTL);
8139
8140 if (switch_to_fclk) {
8141 val |= LCPLL_CD_SOURCE_FCLK;
8142 I915_WRITE(LCPLL_CTL, val);
8143
8144 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
8145 LCPLL_CD_SOURCE_FCLK_DONE, 1))
8146 DRM_ERROR("Switching to FCLK failed\n");
8147
8148 val = I915_READ(LCPLL_CTL);
8149 }
8150
8151 val |= LCPLL_PLL_DISABLE;
8152 I915_WRITE(LCPLL_CTL, val);
8153 POSTING_READ(LCPLL_CTL);
8154
8155 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
8156 DRM_ERROR("LCPLL still locked\n");
8157
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03008158 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008159 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03008160 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008161 ndelay(100);
8162
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03008163 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
8164 1))
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008165 DRM_ERROR("D_COMP RCOMP still in progress\n");
8166
8167 if (allow_power_down) {
8168 val = I915_READ(LCPLL_CTL);
8169 val |= LCPLL_POWER_DOWN_ALLOW;
8170 I915_WRITE(LCPLL_CTL, val);
8171 POSTING_READ(LCPLL_CTL);
8172 }
8173}
8174
8175/*
8176 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
8177 * source.
8178 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03008179static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008180{
8181 uint32_t val;
8182
8183 val = I915_READ(LCPLL_CTL);
8184
8185 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
8186 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
8187 return;
8188
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03008189 /*
8190 * Make sure we're not on PC8 state before disabling PC8, otherwise
8191 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03008192 */
Mika Kuoppala59bad942015-01-16 11:34:40 +02008193 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Paulo Zanoni215733f2013-08-19 13:18:07 -03008194
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008195 if (val & LCPLL_POWER_DOWN_ALLOW) {
8196 val &= ~LCPLL_POWER_DOWN_ALLOW;
8197 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02008198 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008199 }
8200
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03008201 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008202 val |= D_COMP_COMP_FORCE;
8203 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03008204 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008205
8206 val = I915_READ(LCPLL_CTL);
8207 val &= ~LCPLL_PLL_DISABLE;
8208 I915_WRITE(LCPLL_CTL, val);
8209
8210 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
8211 DRM_ERROR("LCPLL not locked yet\n");
8212
8213 if (val & LCPLL_CD_SOURCE_FCLK) {
8214 val = I915_READ(LCPLL_CTL);
8215 val &= ~LCPLL_CD_SOURCE_FCLK;
8216 I915_WRITE(LCPLL_CTL, val);
8217
8218 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
8219 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
8220 DRM_ERROR("Switching back to LCPLL failed\n");
8221 }
Paulo Zanoni215733f2013-08-19 13:18:07 -03008222
Mika Kuoppala59bad942015-01-16 11:34:40 +02008223 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008224}
8225
Paulo Zanoni765dab672014-03-07 20:08:18 -03008226/*
8227 * Package states C8 and deeper are really deep PC states that can only be
8228 * reached when all the devices on the system allow it, so even if the graphics
8229 * device allows PC8+, it doesn't mean the system will actually get to these
8230 * states. Our driver only allows PC8+ when going into runtime PM.
8231 *
8232 * The requirements for PC8+ are that all the outputs are disabled, the power
8233 * well is disabled and most interrupts are disabled, and these are also
8234 * requirements for runtime PM. When these conditions are met, we manually do
8235 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
8236 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
8237 * hang the machine.
8238 *
8239 * When we really reach PC8 or deeper states (not just when we allow it) we lose
8240 * the state of some registers, so when we come back from PC8+ we need to
8241 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
8242 * need to take care of the registers kept by RC6. Notice that this happens even
8243 * if we don't put the device in PCI D3 state (which is what currently happens
8244 * because of the runtime PM support).
8245 *
8246 * For more, read "Display Sequences for Package C8" on the hardware
8247 * documentation.
8248 */
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03008249void hsw_enable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03008250{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008251 struct drm_device *dev = dev_priv->dev;
8252 uint32_t val;
8253
Paulo Zanonic67a4702013-08-19 13:18:09 -03008254 DRM_DEBUG_KMS("Enabling package C8+\n");
8255
Paulo Zanonic67a4702013-08-19 13:18:09 -03008256 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
8257 val = I915_READ(SOUTH_DSPCLK_GATE_D);
8258 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
8259 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
8260 }
8261
8262 lpt_disable_clkout_dp(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008263 hsw_disable_lcpll(dev_priv, true, true);
8264}
8265
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03008266void hsw_disable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03008267{
8268 struct drm_device *dev = dev_priv->dev;
8269 uint32_t val;
8270
Paulo Zanonic67a4702013-08-19 13:18:09 -03008271 DRM_DEBUG_KMS("Disabling package C8+\n");
8272
8273 hsw_restore_lcpll(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008274 lpt_init_pch_refclk(dev);
8275
8276 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
8277 val = I915_READ(SOUTH_DSPCLK_GATE_D);
8278 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
8279 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
8280 }
8281
8282 intel_prepare_ddi(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008283}
8284
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008285static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
8286 struct intel_crtc_state *crtc_state)
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03008287{
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008288 if (!intel_ddi_pll_select(crtc, crtc_state))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03008289 return -EINVAL;
Daniel Vetter716c2e52014-06-25 22:02:02 +03008290
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008291 crtc->lowfreq_avail = false;
Daniel Vetter644cef32014-04-24 23:55:07 +02008292
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02008293 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008294}
8295
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008296static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
8297 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008298 struct intel_crtc_state *pipe_config)
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008299{
Damien Lespiau3148ade2014-11-21 16:14:56 +00008300 u32 temp, dpll_ctl1;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008301
8302 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
8303 pipe_config->ddi_pll_sel = temp >> (port * 3 + 1);
8304
8305 switch (pipe_config->ddi_pll_sel) {
Damien Lespiau3148ade2014-11-21 16:14:56 +00008306 case SKL_DPLL0:
8307 /*
8308 * On SKL the eDP DPLL (DPLL0 as we don't use SSC) is not part
8309 * of the shared DPLL framework and thus needs to be read out
8310 * separately
8311 */
8312 dpll_ctl1 = I915_READ(DPLL_CTRL1);
8313 pipe_config->dpll_hw_state.ctrl1 = dpll_ctl1 & 0x3f;
8314 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008315 case SKL_DPLL1:
8316 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
8317 break;
8318 case SKL_DPLL2:
8319 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
8320 break;
8321 case SKL_DPLL3:
8322 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
8323 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008324 }
8325}
8326
Damien Lespiau7d2c8172014-07-29 18:06:18 +01008327static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
8328 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008329 struct intel_crtc_state *pipe_config)
Damien Lespiau7d2c8172014-07-29 18:06:18 +01008330{
8331 pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
8332
8333 switch (pipe_config->ddi_pll_sel) {
8334 case PORT_CLK_SEL_WRPLL1:
8335 pipe_config->shared_dpll = DPLL_ID_WRPLL1;
8336 break;
8337 case PORT_CLK_SEL_WRPLL2:
8338 pipe_config->shared_dpll = DPLL_ID_WRPLL2;
8339 break;
8340 }
8341}
8342
Daniel Vetter26804af2014-06-25 22:01:55 +03008343static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008344 struct intel_crtc_state *pipe_config)
Daniel Vetter26804af2014-06-25 22:01:55 +03008345{
8346 struct drm_device *dev = crtc->base.dev;
8347 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterd452c5b2014-07-04 11:27:39 -03008348 struct intel_shared_dpll *pll;
Daniel Vetter26804af2014-06-25 22:01:55 +03008349 enum port port;
8350 uint32_t tmp;
8351
8352 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
8353
8354 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
8355
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00008356 if (IS_SKYLAKE(dev))
8357 skylake_get_ddi_pll(dev_priv, port, pipe_config);
8358 else
8359 haswell_get_ddi_pll(dev_priv, port, pipe_config);
Daniel Vetter9cd86932014-06-25 22:01:57 +03008360
Daniel Vetterd452c5b2014-07-04 11:27:39 -03008361 if (pipe_config->shared_dpll >= 0) {
8362 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
8363
8364 WARN_ON(!pll->get_hw_state(dev_priv, pll,
8365 &pipe_config->dpll_hw_state));
8366 }
8367
Daniel Vetter26804af2014-06-25 22:01:55 +03008368 /*
8369 * Haswell has only FDI/PCH transcoder A. It is which is connected to
8370 * DDI E. So just check whether this pipe is wired to DDI E and whether
8371 * the PCH transcoder is on.
8372 */
Damien Lespiauca370452013-12-03 13:56:24 +00008373 if (INTEL_INFO(dev)->gen < 9 &&
8374 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
Daniel Vetter26804af2014-06-25 22:01:55 +03008375 pipe_config->has_pch_encoder = true;
8376
8377 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
8378 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
8379 FDI_DP_PORT_WIDTH_SHIFT) + 1;
8380
8381 ironlake_get_fdi_m_n_config(crtc, pipe_config);
8382 }
8383}
8384
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008385static bool haswell_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008386 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008387{
8388 struct drm_device *dev = crtc->base.dev;
8389 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008390 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008391 uint32_t tmp;
8392
Daniel Vetterf458ebb2014-09-30 10:56:39 +02008393 if (!intel_display_power_is_enabled(dev_priv,
Imre Deakb5482bd2014-03-05 16:20:55 +02008394 POWER_DOMAIN_PIPE(crtc->pipe)))
8395 return false;
8396
Daniel Vettere143a212013-07-04 12:01:15 +02008397 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008398 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
8399
Daniel Vettereccb1402013-05-22 00:50:22 +02008400 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
8401 if (tmp & TRANS_DDI_FUNC_ENABLE) {
8402 enum pipe trans_edp_pipe;
8403 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
8404 default:
8405 WARN(1, "unknown pipe linked to edp transcoder\n");
8406 case TRANS_DDI_EDP_INPUT_A_ONOFF:
8407 case TRANS_DDI_EDP_INPUT_A_ON:
8408 trans_edp_pipe = PIPE_A;
8409 break;
8410 case TRANS_DDI_EDP_INPUT_B_ONOFF:
8411 trans_edp_pipe = PIPE_B;
8412 break;
8413 case TRANS_DDI_EDP_INPUT_C_ONOFF:
8414 trans_edp_pipe = PIPE_C;
8415 break;
8416 }
8417
8418 if (trans_edp_pipe == crtc->pipe)
8419 pipe_config->cpu_transcoder = TRANSCODER_EDP;
8420 }
8421
Daniel Vetterf458ebb2014-09-30 10:56:39 +02008422 if (!intel_display_power_is_enabled(dev_priv,
Daniel Vettereccb1402013-05-22 00:50:22 +02008423 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -03008424 return false;
8425
Daniel Vettereccb1402013-05-22 00:50:22 +02008426 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008427 if (!(tmp & PIPECONF_ENABLE))
8428 return false;
8429
Daniel Vetter26804af2014-06-25 22:01:55 +03008430 haswell_get_ddi_port_state(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02008431
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008432 intel_get_pipe_timings(crtc, pipe_config);
8433
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008434 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00008435 if (intel_display_power_is_enabled(dev_priv, pfit_domain)) {
8436 if (IS_SKYLAKE(dev))
8437 skylake_get_pfit_config(crtc, pipe_config);
8438 else
8439 ironlake_get_pfit_config(crtc, pipe_config);
8440 }
Daniel Vetter88adfff2013-03-28 10:42:01 +01008441
Jesse Barnese59150d2014-01-07 13:30:45 -08008442 if (IS_HASWELL(dev))
8443 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
8444 (I915_READ(IPS_CTL) & IPS_ENABLE);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03008445
Clint Taylorebb69c92014-09-30 10:30:22 -07008446 if (pipe_config->cpu_transcoder != TRANSCODER_EDP) {
8447 pipe_config->pixel_multiplier =
8448 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
8449 } else {
8450 pipe_config->pixel_multiplier = 1;
8451 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02008452
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008453 return true;
8454}
8455
Chris Wilson560b85b2010-08-07 11:01:38 +01008456static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
8457{
8458 struct drm_device *dev = crtc->dev;
8459 struct drm_i915_private *dev_priv = dev->dev_private;
8460 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälädc41c152014-08-13 11:57:05 +03008461 uint32_t cntl = 0, size = 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01008462
Ville Syrjälädc41c152014-08-13 11:57:05 +03008463 if (base) {
Matt Roper3dd512f2015-02-27 10:12:00 -08008464 unsigned int width = intel_crtc->base.cursor->state->crtc_w;
8465 unsigned int height = intel_crtc->base.cursor->state->crtc_h;
Ville Syrjälädc41c152014-08-13 11:57:05 +03008466 unsigned int stride = roundup_pow_of_two(width) * 4;
8467
8468 switch (stride) {
8469 default:
8470 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
8471 width, stride);
8472 stride = 256;
8473 /* fallthrough */
8474 case 256:
8475 case 512:
8476 case 1024:
8477 case 2048:
8478 break;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008479 }
8480
Ville Syrjälädc41c152014-08-13 11:57:05 +03008481 cntl |= CURSOR_ENABLE |
8482 CURSOR_GAMMA_ENABLE |
8483 CURSOR_FORMAT_ARGB |
8484 CURSOR_STRIDE(stride);
8485
8486 size = (height << 12) | width;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008487 }
Chris Wilson560b85b2010-08-07 11:01:38 +01008488
Ville Syrjälädc41c152014-08-13 11:57:05 +03008489 if (intel_crtc->cursor_cntl != 0 &&
8490 (intel_crtc->cursor_base != base ||
8491 intel_crtc->cursor_size != size ||
8492 intel_crtc->cursor_cntl != cntl)) {
8493 /* On these chipsets we can only modify the base/size/stride
8494 * whilst the cursor is disabled.
8495 */
8496 I915_WRITE(_CURACNTR, 0);
8497 POSTING_READ(_CURACNTR);
8498 intel_crtc->cursor_cntl = 0;
8499 }
8500
Ville Syrjälä99d1f382014-09-12 20:53:32 +03008501 if (intel_crtc->cursor_base != base) {
Ville Syrjälädc41c152014-08-13 11:57:05 +03008502 I915_WRITE(_CURABASE, base);
Ville Syrjälä99d1f382014-09-12 20:53:32 +03008503 intel_crtc->cursor_base = base;
8504 }
Ville Syrjälädc41c152014-08-13 11:57:05 +03008505
8506 if (intel_crtc->cursor_size != size) {
8507 I915_WRITE(CURSIZE, size);
8508 intel_crtc->cursor_size = size;
8509 }
8510
Chris Wilson4b0e3332014-05-30 16:35:26 +03008511 if (intel_crtc->cursor_cntl != cntl) {
8512 I915_WRITE(_CURACNTR, cntl);
8513 POSTING_READ(_CURACNTR);
8514 intel_crtc->cursor_cntl = cntl;
8515 }
Chris Wilson560b85b2010-08-07 11:01:38 +01008516}
8517
8518static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
8519{
8520 struct drm_device *dev = crtc->dev;
8521 struct drm_i915_private *dev_priv = dev->dev_private;
8522 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8523 int pipe = intel_crtc->pipe;
Chris Wilson4b0e3332014-05-30 16:35:26 +03008524 uint32_t cntl;
Chris Wilson560b85b2010-08-07 11:01:38 +01008525
Chris Wilson4b0e3332014-05-30 16:35:26 +03008526 cntl = 0;
8527 if (base) {
8528 cntl = MCURSOR_GAMMA_ENABLE;
Matt Roper3dd512f2015-02-27 10:12:00 -08008529 switch (intel_crtc->base.cursor->state->crtc_w) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308530 case 64:
8531 cntl |= CURSOR_MODE_64_ARGB_AX;
8532 break;
8533 case 128:
8534 cntl |= CURSOR_MODE_128_ARGB_AX;
8535 break;
8536 case 256:
8537 cntl |= CURSOR_MODE_256_ARGB_AX;
8538 break;
8539 default:
Matt Roper3dd512f2015-02-27 10:12:00 -08008540 MISSING_CASE(intel_crtc->base.cursor->state->crtc_w);
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308541 return;
Chris Wilson560b85b2010-08-07 11:01:38 +01008542 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03008543 cntl |= pipe << 28; /* Connect to correct pipe */
Ville Syrjälä47bf17a2014-09-12 20:53:33 +03008544
8545 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
8546 cntl |= CURSOR_PIPE_CSC_ENABLE;
Chris Wilson560b85b2010-08-07 11:01:38 +01008547 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03008548
Matt Roper8e7d6882015-01-21 16:35:41 -08008549 if (crtc->cursor->state->rotation == BIT(DRM_ROTATE_180))
Ville Syrjälä4398ad42014-10-23 07:41:34 -07008550 cntl |= CURSOR_ROTATE_180;
8551
Chris Wilson4b0e3332014-05-30 16:35:26 +03008552 if (intel_crtc->cursor_cntl != cntl) {
8553 I915_WRITE(CURCNTR(pipe), cntl);
8554 POSTING_READ(CURCNTR(pipe));
8555 intel_crtc->cursor_cntl = cntl;
8556 }
8557
Jesse Barnes65a21cd2011-10-12 11:10:21 -07008558 /* and commit changes on next vblank */
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008559 I915_WRITE(CURBASE(pipe), base);
8560 POSTING_READ(CURBASE(pipe));
Ville Syrjälä99d1f382014-09-12 20:53:32 +03008561
8562 intel_crtc->cursor_base = base;
Jesse Barnes65a21cd2011-10-12 11:10:21 -07008563}
8564
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008565/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01008566static void intel_crtc_update_cursor(struct drm_crtc *crtc,
8567 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008568{
8569 struct drm_device *dev = crtc->dev;
8570 struct drm_i915_private *dev_priv = dev->dev_private;
8571 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8572 int pipe = intel_crtc->pipe;
Matt Roper3d7d6512014-06-10 08:28:13 -07008573 int x = crtc->cursor_x;
8574 int y = crtc->cursor_y;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008575 u32 base = 0, pos = 0;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008576
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008577 if (on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008578 base = intel_crtc->cursor_addr;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008579
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008580 if (x >= intel_crtc->config->pipe_src_w)
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03008581 base = 0;
8582
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008583 if (y >= intel_crtc->config->pipe_src_h)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008584 base = 0;
8585
8586 if (x < 0) {
Matt Roper3dd512f2015-02-27 10:12:00 -08008587 if (x + intel_crtc->base.cursor->state->crtc_w <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008588 base = 0;
8589
8590 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
8591 x = -x;
8592 }
8593 pos |= x << CURSOR_X_SHIFT;
8594
8595 if (y < 0) {
Matt Roper3dd512f2015-02-27 10:12:00 -08008596 if (y + intel_crtc->base.cursor->state->crtc_h <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008597 base = 0;
8598
8599 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
8600 y = -y;
8601 }
8602 pos |= y << CURSOR_Y_SHIFT;
8603
Chris Wilson4b0e3332014-05-30 16:35:26 +03008604 if (base == 0 && intel_crtc->cursor_base == 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008605 return;
8606
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008607 I915_WRITE(CURPOS(pipe), pos);
8608
Ville Syrjälä4398ad42014-10-23 07:41:34 -07008609 /* ILK+ do this automagically */
8610 if (HAS_GMCH_DISPLAY(dev) &&
Matt Roper8e7d6882015-01-21 16:35:41 -08008611 crtc->cursor->state->rotation == BIT(DRM_ROTATE_180)) {
Matt Roper3dd512f2015-02-27 10:12:00 -08008612 base += (intel_crtc->base.cursor->state->crtc_h *
8613 intel_crtc->base.cursor->state->crtc_w - 1) * 4;
Ville Syrjälä4398ad42014-10-23 07:41:34 -07008614 }
8615
Ville Syrjälä8ac54662014-08-12 19:39:54 +03008616 if (IS_845G(dev) || IS_I865G(dev))
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008617 i845_update_cursor(crtc, base);
8618 else
8619 i9xx_update_cursor(crtc, base);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008620}
8621
Ville Syrjälädc41c152014-08-13 11:57:05 +03008622static bool cursor_size_ok(struct drm_device *dev,
8623 uint32_t width, uint32_t height)
8624{
8625 if (width == 0 || height == 0)
8626 return false;
8627
8628 /*
8629 * 845g/865g are special in that they are only limited by
8630 * the width of their cursors, the height is arbitrary up to
8631 * the precision of the register. Everything else requires
8632 * square cursors, limited to a few power-of-two sizes.
8633 */
8634 if (IS_845G(dev) || IS_I865G(dev)) {
8635 if ((width & 63) != 0)
8636 return false;
8637
8638 if (width > (IS_845G(dev) ? 64 : 512))
8639 return false;
8640
8641 if (height > 1023)
8642 return false;
8643 } else {
8644 switch (width | height) {
8645 case 256:
8646 case 128:
8647 if (IS_GEN2(dev))
8648 return false;
8649 case 64:
8650 break;
8651 default:
8652 return false;
8653 }
8654 }
8655
8656 return true;
8657}
8658
Jesse Barnes79e53942008-11-07 14:24:08 -08008659static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01008660 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08008661{
James Simmons72034252010-08-03 01:33:19 +01008662 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08008663 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008664
James Simmons72034252010-08-03 01:33:19 +01008665 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008666 intel_crtc->lut_r[i] = red[i] >> 8;
8667 intel_crtc->lut_g[i] = green[i] >> 8;
8668 intel_crtc->lut_b[i] = blue[i] >> 8;
8669 }
8670
8671 intel_crtc_load_lut(crtc);
8672}
8673
Jesse Barnes79e53942008-11-07 14:24:08 -08008674/* VESA 640x480x72Hz mode to set on the pipe */
8675static struct drm_display_mode load_detect_mode = {
8676 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
8677 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
8678};
8679
Daniel Vettera8bb6812014-02-10 18:00:39 +01008680struct drm_framebuffer *
8681__intel_framebuffer_create(struct drm_device *dev,
8682 struct drm_mode_fb_cmd2 *mode_cmd,
8683 struct drm_i915_gem_object *obj)
Chris Wilsond2dff872011-04-19 08:36:26 +01008684{
8685 struct intel_framebuffer *intel_fb;
8686 int ret;
8687
8688 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
8689 if (!intel_fb) {
Alexey Khoroshilov6ccb81f2014-11-08 01:41:23 +03008690 drm_gem_object_unreference(&obj->base);
Chris Wilsond2dff872011-04-19 08:36:26 +01008691 return ERR_PTR(-ENOMEM);
8692 }
8693
8694 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008695 if (ret)
8696 goto err;
Chris Wilsond2dff872011-04-19 08:36:26 +01008697
8698 return &intel_fb->base;
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008699err:
Alexey Khoroshilov6ccb81f2014-11-08 01:41:23 +03008700 drm_gem_object_unreference(&obj->base);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008701 kfree(intel_fb);
8702
8703 return ERR_PTR(ret);
Chris Wilsond2dff872011-04-19 08:36:26 +01008704}
8705
Daniel Vetterb5ea6422014-03-02 21:18:00 +01008706static struct drm_framebuffer *
Daniel Vettera8bb6812014-02-10 18:00:39 +01008707intel_framebuffer_create(struct drm_device *dev,
8708 struct drm_mode_fb_cmd2 *mode_cmd,
8709 struct drm_i915_gem_object *obj)
8710{
8711 struct drm_framebuffer *fb;
8712 int ret;
8713
8714 ret = i915_mutex_lock_interruptible(dev);
8715 if (ret)
8716 return ERR_PTR(ret);
8717 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
8718 mutex_unlock(&dev->struct_mutex);
8719
8720 return fb;
8721}
8722
Chris Wilsond2dff872011-04-19 08:36:26 +01008723static u32
8724intel_framebuffer_pitch_for_width(int width, int bpp)
8725{
8726 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
8727 return ALIGN(pitch, 64);
8728}
8729
8730static u32
8731intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
8732{
8733 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
Fabian Frederick1267a262014-07-01 20:39:41 +02008734 return PAGE_ALIGN(pitch * mode->vdisplay);
Chris Wilsond2dff872011-04-19 08:36:26 +01008735}
8736
8737static struct drm_framebuffer *
8738intel_framebuffer_create_for_mode(struct drm_device *dev,
8739 struct drm_display_mode *mode,
8740 int depth, int bpp)
8741{
8742 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +00008743 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +01008744
8745 obj = i915_gem_alloc_object(dev,
8746 intel_framebuffer_size_for_mode(mode, bpp));
8747 if (obj == NULL)
8748 return ERR_PTR(-ENOMEM);
8749
8750 mode_cmd.width = mode->hdisplay;
8751 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008752 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
8753 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00008754 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01008755
8756 return intel_framebuffer_create(dev, &mode_cmd, obj);
8757}
8758
8759static struct drm_framebuffer *
8760mode_fits_in_fbdev(struct drm_device *dev,
8761 struct drm_display_mode *mode)
8762{
Daniel Vetter4520f532013-10-09 09:18:51 +02008763#ifdef CONFIG_DRM_I915_FBDEV
Chris Wilsond2dff872011-04-19 08:36:26 +01008764 struct drm_i915_private *dev_priv = dev->dev_private;
8765 struct drm_i915_gem_object *obj;
8766 struct drm_framebuffer *fb;
8767
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008768 if (!dev_priv->fbdev)
8769 return NULL;
8770
8771 if (!dev_priv->fbdev->fb)
Chris Wilsond2dff872011-04-19 08:36:26 +01008772 return NULL;
8773
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008774 obj = dev_priv->fbdev->fb->obj;
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008775 BUG_ON(!obj);
Chris Wilsond2dff872011-04-19 08:36:26 +01008776
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008777 fb = &dev_priv->fbdev->fb->base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008778 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
8779 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01008780 return NULL;
8781
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008782 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01008783 return NULL;
8784
8785 return fb;
Daniel Vetter4520f532013-10-09 09:18:51 +02008786#else
8787 return NULL;
8788#endif
Chris Wilsond2dff872011-04-19 08:36:26 +01008789}
8790
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008791bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01008792 struct drm_display_mode *mode,
Rob Clark51fd3712013-11-19 12:10:12 -05008793 struct intel_load_detect_pipe *old,
8794 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -08008795{
8796 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008797 struct intel_encoder *intel_encoder =
8798 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08008799 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01008800 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08008801 struct drm_crtc *crtc = NULL;
8802 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02008803 struct drm_framebuffer *fb;
Rob Clark51fd3712013-11-19 12:10:12 -05008804 struct drm_mode_config *config = &dev->mode_config;
8805 int ret, i = -1;
Jesse Barnes79e53942008-11-07 14:24:08 -08008806
Chris Wilsond2dff872011-04-19 08:36:26 +01008807 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03008808 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +03008809 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +01008810
Rob Clark51fd3712013-11-19 12:10:12 -05008811retry:
8812 ret = drm_modeset_lock(&config->connection_mutex, ctx);
8813 if (ret)
8814 goto fail_unlock;
Daniel Vetter6e9f7982014-05-29 23:54:47 +02008815
Jesse Barnes79e53942008-11-07 14:24:08 -08008816 /*
8817 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01008818 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008819 * - if the connector already has an assigned crtc, use it (but make
8820 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01008821 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008822 * - try to find the first unused crtc that can drive this connector,
8823 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08008824 */
8825
8826 /* See if we already have a CRTC for this connector */
8827 if (encoder->crtc) {
8828 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01008829
Rob Clark51fd3712013-11-19 12:10:12 -05008830 ret = drm_modeset_lock(&crtc->mutex, ctx);
8831 if (ret)
8832 goto fail_unlock;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01008833 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
8834 if (ret)
8835 goto fail_unlock;
Daniel Vetter7b240562012-12-12 00:35:33 +01008836
Daniel Vetter24218aa2012-08-12 19:27:11 +02008837 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008838 old->load_detect_temp = false;
8839
8840 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008841 if (connector->dpms != DRM_MODE_DPMS_ON)
8842 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01008843
Chris Wilson71731882011-04-19 23:10:58 +01008844 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08008845 }
8846
8847 /* Find an unused one (if possible) */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008848 for_each_crtc(dev, possible_crtc) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008849 i++;
8850 if (!(encoder->possible_crtcs & (1 << i)))
8851 continue;
Matt Roper83d65732015-02-25 13:12:16 -08008852 if (possible_crtc->state->enable)
Ville Syrjäläa4592492014-08-11 13:15:36 +03008853 continue;
8854 /* This can occur when applying the pipe A quirk on resume. */
8855 if (to_intel_crtc(possible_crtc)->new_enabled)
8856 continue;
8857
8858 crtc = possible_crtc;
8859 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08008860 }
8861
8862 /*
8863 * If we didn't find an unused CRTC, don't use any.
8864 */
8865 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01008866 DRM_DEBUG_KMS("no pipe available for load-detect\n");
Rob Clark51fd3712013-11-19 12:10:12 -05008867 goto fail_unlock;
Jesse Barnes79e53942008-11-07 14:24:08 -08008868 }
8869
Rob Clark51fd3712013-11-19 12:10:12 -05008870 ret = drm_modeset_lock(&crtc->mutex, ctx);
8871 if (ret)
8872 goto fail_unlock;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01008873 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
8874 if (ret)
8875 goto fail_unlock;
Daniel Vetterfc303102012-07-09 10:40:58 +02008876 intel_encoder->new_crtc = to_intel_crtc(crtc);
8877 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008878
8879 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008880 intel_crtc->new_enabled = true;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008881 intel_crtc->new_config = intel_crtc->config;
Daniel Vetter24218aa2012-08-12 19:27:11 +02008882 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008883 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01008884 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08008885
Chris Wilson64927112011-04-20 07:25:26 +01008886 if (!mode)
8887 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08008888
Chris Wilsond2dff872011-04-19 08:36:26 +01008889 /* We need a framebuffer large enough to accommodate all accesses
8890 * that the plane may generate whilst we perform load detection.
8891 * We can not rely on the fbcon either being present (we get called
8892 * during its initialisation to detect all boot displays, or it may
8893 * not even exist) or that it is large enough to satisfy the
8894 * requested mode.
8895 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02008896 fb = mode_fits_in_fbdev(dev, mode);
8897 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008898 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008899 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
8900 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01008901 } else
8902 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008903 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008904 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008905 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008906 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008907
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008908 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01008909 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01008910 if (old->release_fb)
8911 old->release_fb->funcs->destroy(old->release_fb);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008912 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008913 }
Daniel Vetter9128b042015-03-03 17:31:21 +01008914 crtc->primary->crtc = crtc;
Chris Wilson71731882011-04-19 23:10:58 +01008915
Jesse Barnes79e53942008-11-07 14:24:08 -08008916 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008917 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +01008918 return true;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008919
8920 fail:
Matt Roper83d65732015-02-25 13:12:16 -08008921 intel_crtc->new_enabled = crtc->state->enable;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008922 if (intel_crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008923 intel_crtc->new_config = intel_crtc->config;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008924 else
8925 intel_crtc->new_config = NULL;
Rob Clark51fd3712013-11-19 12:10:12 -05008926fail_unlock:
8927 if (ret == -EDEADLK) {
8928 drm_modeset_backoff(ctx);
8929 goto retry;
8930 }
8931
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008932 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08008933}
8934
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008935void intel_release_load_detect_pipe(struct drm_connector *connector,
Ville Syrjälä208bf9f2014-08-11 13:15:35 +03008936 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08008937{
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008938 struct intel_encoder *intel_encoder =
8939 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01008940 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +01008941 struct drm_crtc *crtc = encoder->crtc;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008942 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008943
Chris Wilsond2dff872011-04-19 08:36:26 +01008944 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03008945 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +03008946 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +01008947
Chris Wilson8261b192011-04-19 23:18:09 +01008948 if (old->load_detect_temp) {
Daniel Vetterfc303102012-07-09 10:40:58 +02008949 to_intel_connector(connector)->new_encoder = NULL;
8950 intel_encoder->new_crtc = NULL;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008951 intel_crtc->new_enabled = false;
8952 intel_crtc->new_config = NULL;
Daniel Vetterfc303102012-07-09 10:40:58 +02008953 intel_set_mode(crtc, NULL, 0, 0, NULL);
Chris Wilsond2dff872011-04-19 08:36:26 +01008954
Daniel Vetter36206362012-12-10 20:42:17 +01008955 if (old->release_fb) {
8956 drm_framebuffer_unregister_private(old->release_fb);
8957 drm_framebuffer_unreference(old->release_fb);
8958 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008959
Chris Wilson0622a532011-04-21 09:32:11 +01008960 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008961 }
8962
Eric Anholtc751ce42010-03-25 11:48:48 -07008963 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008964 if (old->dpms_mode != DRM_MODE_DPMS_ON)
8965 connector->funcs->dpms(connector, old->dpms_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08008966}
8967
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008968static int i9xx_pll_refclk(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008969 const struct intel_crtc_state *pipe_config)
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008970{
8971 struct drm_i915_private *dev_priv = dev->dev_private;
8972 u32 dpll = pipe_config->dpll_hw_state.dpll;
8973
8974 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008975 return dev_priv->vbt.lvds_ssc_freq;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008976 else if (HAS_PCH_SPLIT(dev))
8977 return 120000;
8978 else if (!IS_GEN2(dev))
8979 return 96000;
8980 else
8981 return 48000;
8982}
8983
Jesse Barnes79e53942008-11-07 14:24:08 -08008984/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008985static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008986 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08008987{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008988 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08008989 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008990 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008991 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -08008992 u32 fp;
8993 intel_clock_t clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008994 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -08008995
8996 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +03008997 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008998 else
Ville Syrjälä293623f2013-09-13 16:18:46 +03008999 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -08009000
9001 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05009002 if (IS_PINEVIEW(dev)) {
9003 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
9004 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08009005 } else {
9006 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
9007 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
9008 }
9009
Chris Wilsona6c45cf2010-09-17 00:32:17 +01009010 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05009011 if (IS_PINEVIEW(dev))
9012 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
9013 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08009014 else
9015 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08009016 DPLL_FPA01_P1_POST_DIV_SHIFT);
9017
9018 switch (dpll & DPLL_MODE_MASK) {
9019 case DPLLB_MODE_DAC_SERIAL:
9020 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
9021 5 : 10;
9022 break;
9023 case DPLLB_MODE_LVDS:
9024 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
9025 7 : 14;
9026 break;
9027 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08009028 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08009029 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009030 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08009031 }
9032
Daniel Vetterac58c3f2013-06-01 17:16:17 +02009033 if (IS_PINEVIEW(dev))
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03009034 pineview_clock(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +02009035 else
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03009036 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08009037 } else {
Ville Syrjälä0fb58222014-01-10 14:06:46 +02009038 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02009039 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
Jesse Barnes79e53942008-11-07 14:24:08 -08009040
9041 if (is_lvds) {
9042 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
9043 DPLL_FPA01_P1_POST_DIV_SHIFT);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02009044
9045 if (lvds & LVDS_CLKB_POWER_UP)
9046 clock.p2 = 7;
9047 else
9048 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -08009049 } else {
9050 if (dpll & PLL_P1_DIVIDE_BY_TWO)
9051 clock.p1 = 2;
9052 else {
9053 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
9054 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
9055 }
9056 if (dpll & PLL_P2_DIVIDE_BY_4)
9057 clock.p2 = 4;
9058 else
9059 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -08009060 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03009061
9062 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08009063 }
9064
Ville Syrjälä18442d02013-09-13 16:00:08 +03009065 /*
9066 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +01009067 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +03009068 * encoder's get_config() function.
9069 */
9070 pipe_config->port_clock = clock.dot;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009071}
9072
Ville Syrjälä6878da02013-09-13 15:59:11 +03009073int intel_dotclock_calculate(int link_freq,
9074 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009075{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009076 /*
9077 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +03009078 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009079 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +03009080 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009081 *
9082 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +03009083 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -08009084 */
9085
Ville Syrjälä6878da02013-09-13 15:59:11 +03009086 if (!m_n->link_n)
9087 return 0;
9088
9089 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
9090}
9091
Ville Syrjälä18442d02013-09-13 16:00:08 +03009092static void ironlake_pch_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009093 struct intel_crtc_state *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +03009094{
9095 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä18442d02013-09-13 16:00:08 +03009096
9097 /* read out port_clock from the DPLL */
9098 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +03009099
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009100 /*
Ville Syrjälä18442d02013-09-13 16:00:08 +03009101 * This value does not include pixel_multiplier.
Damien Lespiau241bfc32013-09-25 16:45:37 +01009102 * We will check that port_clock and adjusted_mode.crtc_clock
Ville Syrjälä18442d02013-09-13 16:00:08 +03009103 * agree once we know their relationship in the encoder's
9104 * get_config() function.
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009105 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02009106 pipe_config->base.adjusted_mode.crtc_clock =
Ville Syrjälä18442d02013-09-13 16:00:08 +03009107 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
9108 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -08009109}
9110
9111/** Returns the currently programmed mode of the given pipe. */
9112struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
9113 struct drm_crtc *crtc)
9114{
Jesse Barnes548f2452011-02-17 10:40:53 -08009115 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08009116 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009117 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08009118 struct drm_display_mode *mode;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009119 struct intel_crtc_state pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -02009120 int htot = I915_READ(HTOTAL(cpu_transcoder));
9121 int hsync = I915_READ(HSYNC(cpu_transcoder));
9122 int vtot = I915_READ(VTOTAL(cpu_transcoder));
9123 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +03009124 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08009125
9126 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
9127 if (!mode)
9128 return NULL;
9129
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009130 /*
9131 * Construct a pipe_config sufficient for getting the clock info
9132 * back out of crtc_clock_get.
9133 *
9134 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
9135 * to use a real value here instead.
9136 */
Ville Syrjälä293623f2013-09-13 16:18:46 +03009137 pipe_config.cpu_transcoder = (enum transcoder) pipe;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009138 pipe_config.pixel_multiplier = 1;
Ville Syrjälä293623f2013-09-13 16:18:46 +03009139 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
9140 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
9141 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009142 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
9143
Ville Syrjälä773ae032013-09-23 17:48:20 +03009144 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -08009145 mode->hdisplay = (htot & 0xffff) + 1;
9146 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
9147 mode->hsync_start = (hsync & 0xffff) + 1;
9148 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
9149 mode->vdisplay = (vtot & 0xffff) + 1;
9150 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
9151 mode->vsync_start = (vsync & 0xffff) + 1;
9152 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
9153
9154 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08009155
9156 return mode;
9157}
9158
Jesse Barnes652c3932009-08-17 13:31:43 -07009159static void intel_decrease_pllclock(struct drm_crtc *crtc)
9160{
9161 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +03009162 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -07009163 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07009164
Sonika Jindalbaff2962014-07-22 11:16:35 +05309165 if (!HAS_GMCH_DISPLAY(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07009166 return;
9167
9168 if (!dev_priv->lvds_downclock_avail)
9169 return;
9170
9171 /*
9172 * Since this is called by a timer, we should never get here in
9173 * the manual case.
9174 */
9175 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01009176 int pipe = intel_crtc->pipe;
9177 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02009178 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01009179
Zhao Yakui44d98a62009-10-09 11:39:40 +08009180 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07009181
Sean Paul8ac5a6d2012-02-13 13:14:51 -05009182 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07009183
Chris Wilson074b5e12012-05-02 12:07:06 +01009184 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07009185 dpll |= DISPLAY_RATE_SELECT_FPA1;
9186 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07009187 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07009188 dpll = I915_READ(dpll_reg);
9189 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08009190 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07009191 }
9192
9193}
9194
Chris Wilsonf047e392012-07-21 12:31:41 +01009195void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07009196{
Paulo Zanonic67a4702013-08-19 13:18:09 -03009197 struct drm_i915_private *dev_priv = dev->dev_private;
9198
Chris Wilsonf62a0072014-02-21 17:55:39 +00009199 if (dev_priv->mm.busy)
9200 return;
9201
Paulo Zanoni43694d62014-03-07 20:08:08 -03009202 intel_runtime_pm_get(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009203 i915_update_gfx_val(dev_priv);
Chris Wilson43cf3bf2015-03-18 09:48:22 +00009204 if (INTEL_INFO(dev)->gen >= 6)
9205 gen6_rps_busy(dev_priv);
Chris Wilsonf62a0072014-02-21 17:55:39 +00009206 dev_priv->mm.busy = true;
Chris Wilsonf047e392012-07-21 12:31:41 +01009207}
9208
9209void intel_mark_idle(struct drm_device *dev)
9210{
Paulo Zanonic67a4702013-08-19 13:18:09 -03009211 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson725a5b52013-01-08 11:02:57 +00009212 struct drm_crtc *crtc;
9213
Chris Wilsonf62a0072014-02-21 17:55:39 +00009214 if (!dev_priv->mm.busy)
9215 return;
9216
9217 dev_priv->mm.busy = false;
9218
Jani Nikulad330a952014-01-21 11:24:25 +02009219 if (!i915.powersave)
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03009220 goto out;
Chris Wilson725a5b52013-01-08 11:02:57 +00009221
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01009222 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -07009223 if (!crtc->primary->fb)
Chris Wilson725a5b52013-01-08 11:02:57 +00009224 continue;
9225
9226 intel_decrease_pllclock(crtc);
9227 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01009228
Damien Lespiau3d13ef22014-02-07 19:12:47 +00009229 if (INTEL_INFO(dev)->gen >= 6)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01009230 gen6_rps_idle(dev->dev_private);
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03009231
9232out:
Paulo Zanoni43694d62014-03-07 20:08:08 -03009233 intel_runtime_pm_put(dev_priv);
Chris Wilsonf047e392012-07-21 12:31:41 +01009234}
9235
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +02009236static void intel_crtc_set_state(struct intel_crtc *crtc,
9237 struct intel_crtc_state *crtc_state)
9238{
9239 kfree(crtc->config);
9240 crtc->config = crtc_state;
Ander Conselvan de Oliveira16f3f652015-01-15 14:55:27 +02009241 crtc->base.state = &crtc_state->base;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +02009242}
9243
Jesse Barnes79e53942008-11-07 14:24:08 -08009244static void intel_crtc_destroy(struct drm_crtc *crtc)
9245{
9246 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009247 struct drm_device *dev = crtc->dev;
9248 struct intel_unpin_work *work;
Daniel Vetter67e77c52010-08-20 22:26:30 +02009249
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009250 spin_lock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009251 work = intel_crtc->unpin_work;
9252 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009253 spin_unlock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009254
9255 if (work) {
9256 cancel_work_sync(&work->work);
9257 kfree(work);
9258 }
Jesse Barnes79e53942008-11-07 14:24:08 -08009259
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +02009260 intel_crtc_set_state(intel_crtc, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08009261 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02009262
Jesse Barnes79e53942008-11-07 14:24:08 -08009263 kfree(intel_crtc);
9264}
9265
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009266static void intel_unpin_work_fn(struct work_struct *__work)
9267{
9268 struct intel_unpin_work *work =
9269 container_of(__work, struct intel_unpin_work, work);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009270 struct drm_device *dev = work->crtc->dev;
Daniel Vetterf99d7062014-06-19 16:01:59 +02009271 enum pipe pipe = to_intel_crtc(work->crtc)->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009272
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009273 mutex_lock(&dev->struct_mutex);
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +00009274 intel_unpin_fb_obj(intel_fb_obj(work->old_fb));
Chris Wilson05394f32010-11-08 19:18:58 +00009275 drm_gem_object_unreference(&work->pending_flip_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00009276
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02009277 intel_fbc_update(dev);
John Harrisonf06cc1b2014-11-24 18:49:37 +00009278
9279 if (work->flip_queued_req)
John Harrison146d84f2014-12-05 13:49:33 +00009280 i915_gem_request_assign(&work->flip_queued_req, NULL);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009281 mutex_unlock(&dev->struct_mutex);
9282
Daniel Vetterf99d7062014-06-19 16:01:59 +02009283 intel_frontbuffer_flip_complete(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
Chris Wilson89ed88b2015-02-16 14:31:49 +00009284 drm_framebuffer_unreference(work->old_fb);
Daniel Vetterf99d7062014-06-19 16:01:59 +02009285
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009286 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
9287 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
9288
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009289 kfree(work);
9290}
9291
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009292static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01009293 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009294{
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009295 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9296 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009297 unsigned long flags;
9298
9299 /* Ignore early vblank irqs */
9300 if (intel_crtc == NULL)
9301 return;
9302
Daniel Vetterf3260382014-09-15 14:55:23 +02009303 /*
9304 * This is called both by irq handlers and the reset code (to complete
9305 * lost pageflips) so needs the full irqsave spinlocks.
9306 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009307 spin_lock_irqsave(&dev->event_lock, flags);
9308 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +00009309
9310 /* Ensure we don't miss a work->pending update ... */
9311 smp_rmb();
9312
9313 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009314 spin_unlock_irqrestore(&dev->event_lock, flags);
9315 return;
9316 }
9317
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009318 page_flip_completed(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01009319
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009320 spin_unlock_irqrestore(&dev->event_lock, flags);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009321}
9322
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009323void intel_finish_page_flip(struct drm_device *dev, int pipe)
9324{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009325 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009326 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
9327
Mario Kleiner49b14a52010-12-09 07:00:07 +01009328 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009329}
9330
9331void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
9332{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009333 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009334 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
9335
Mario Kleiner49b14a52010-12-09 07:00:07 +01009336 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07009337}
9338
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009339/* Is 'a' after or equal to 'b'? */
9340static bool g4x_flip_count_after_eq(u32 a, u32 b)
9341{
9342 return !((a - b) & 0x80000000);
9343}
9344
9345static bool page_flip_finished(struct intel_crtc *crtc)
9346{
9347 struct drm_device *dev = crtc->base.dev;
9348 struct drm_i915_private *dev_priv = dev->dev_private;
9349
Ville Syrjäläbdfa7542014-05-27 21:33:09 +03009350 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
9351 crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
9352 return true;
9353
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009354 /*
9355 * The relevant registers doen't exist on pre-ctg.
9356 * As the flip done interrupt doesn't trigger for mmio
9357 * flips on gmch platforms, a flip count check isn't
9358 * really needed there. But since ctg has the registers,
9359 * include it in the check anyway.
9360 */
9361 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
9362 return true;
9363
9364 /*
9365 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
9366 * used the same base address. In that case the mmio flip might
9367 * have completed, but the CS hasn't even executed the flip yet.
9368 *
9369 * A flip count check isn't enough as the CS might have updated
9370 * the base address just after start of vblank, but before we
9371 * managed to process the interrupt. This means we'd complete the
9372 * CS flip too soon.
9373 *
9374 * Combining both checks should get us a good enough result. It may
9375 * still happen that the CS flip has been executed, but has not
9376 * yet actually completed. But in case the base address is the same
9377 * anyway, we don't really care.
9378 */
9379 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
9380 crtc->unpin_work->gtt_offset &&
9381 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_GM45(crtc->pipe)),
9382 crtc->unpin_work->flip_count);
9383}
9384
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009385void intel_prepare_page_flip(struct drm_device *dev, int plane)
9386{
Jani Nikulafbee40d2014-03-31 14:27:18 +03009387 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009388 struct intel_crtc *intel_crtc =
9389 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
9390 unsigned long flags;
9391
Daniel Vetterf3260382014-09-15 14:55:23 +02009392
9393 /*
9394 * This is called both by irq handlers and the reset code (to complete
9395 * lost pageflips) so needs the full irqsave spinlocks.
9396 *
9397 * NB: An MMIO update of the plane base pointer will also
Chris Wilsone7d841c2012-12-03 11:36:30 +00009398 * generate a page-flip completion irq, i.e. every modeset
9399 * is also accompanied by a spurious intel_prepare_page_flip().
9400 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009401 spin_lock_irqsave(&dev->event_lock, flags);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009402 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
Chris Wilsone7d841c2012-12-03 11:36:30 +00009403 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009404 spin_unlock_irqrestore(&dev->event_lock, flags);
9405}
9406
Robin Schroereba905b2014-05-18 02:24:50 +02009407static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
Chris Wilsone7d841c2012-12-03 11:36:30 +00009408{
9409 /* Ensure that the work item is consistent when activating it ... */
9410 smp_wmb();
9411 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
9412 /* and that it is marked active as soon as the irq could fire. */
9413 smp_wmb();
9414}
9415
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009416static int intel_gen2_queue_flip(struct drm_device *dev,
9417 struct drm_crtc *crtc,
9418 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009419 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009420 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009421 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009422{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009423 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009424 u32 flip_mask;
9425 int ret;
9426
Daniel Vetter6d90c952012-04-26 23:28:05 +02009427 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009428 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009429 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009430
9431 /* Can't queue multiple flips, so wait for the previous
9432 * one to finish before executing the next.
9433 */
9434 if (intel_crtc->plane)
9435 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
9436 else
9437 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009438 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
9439 intel_ring_emit(ring, MI_NOOP);
9440 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9441 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9442 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009443 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02009444 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +00009445
9446 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009447 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009448 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009449}
9450
9451static int intel_gen3_queue_flip(struct drm_device *dev,
9452 struct drm_crtc *crtc,
9453 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009454 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009455 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009456 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009457{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009458 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009459 u32 flip_mask;
9460 int ret;
9461
Daniel Vetter6d90c952012-04-26 23:28:05 +02009462 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009463 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009464 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009465
9466 if (intel_crtc->plane)
9467 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
9468 else
9469 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009470 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
9471 intel_ring_emit(ring, MI_NOOP);
9472 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
9473 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9474 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009475 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02009476 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009477
Chris Wilsone7d841c2012-12-03 11:36:30 +00009478 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009479 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009480 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009481}
9482
9483static int intel_gen4_queue_flip(struct drm_device *dev,
9484 struct drm_crtc *crtc,
9485 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009486 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009487 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009488 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009489{
9490 struct drm_i915_private *dev_priv = dev->dev_private;
9491 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9492 uint32_t pf, pipesrc;
9493 int ret;
9494
Daniel Vetter6d90c952012-04-26 23:28:05 +02009495 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009496 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009497 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009498
9499 /* i965+ uses the linear or tiled offsets from the
9500 * Display Registers (which do not change across a page-flip)
9501 * so we need only reprogram the base address.
9502 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02009503 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9504 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9505 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009506 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
Daniel Vetterc2c75132012-07-05 12:17:30 +02009507 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009508
9509 /* XXX Enabling the panel-fitter across page-flip is so far
9510 * untested on non-native modes, so ignore it for now.
9511 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
9512 */
9513 pf = 0;
9514 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009515 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009516
9517 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009518 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009519 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009520}
9521
9522static int intel_gen6_queue_flip(struct drm_device *dev,
9523 struct drm_crtc *crtc,
9524 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009525 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009526 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009527 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009528{
9529 struct drm_i915_private *dev_priv = dev->dev_private;
9530 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9531 uint32_t pf, pipesrc;
9532 int ret;
9533
Daniel Vetter6d90c952012-04-26 23:28:05 +02009534 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009535 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009536 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009537
Daniel Vetter6d90c952012-04-26 23:28:05 +02009538 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9539 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9540 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009541 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009542
Chris Wilson99d9acd2012-04-17 20:37:00 +01009543 /* Contrary to the suggestions in the documentation,
9544 * "Enable Panel Fitter" does not seem to be required when page
9545 * flipping with a non-native mode, and worse causes a normal
9546 * modeset to fail.
9547 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
9548 */
9549 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009550 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009551 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009552
9553 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009554 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009555 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009556}
9557
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009558static int intel_gen7_queue_flip(struct drm_device *dev,
9559 struct drm_crtc *crtc,
9560 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009561 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009562 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009563 uint32_t flags)
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009564{
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009565 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009566 uint32_t plane_bit = 0;
Chris Wilsonffe74d72013-08-26 20:58:12 +01009567 int len, ret;
9568
Robin Schroereba905b2014-05-18 02:24:50 +02009569 switch (intel_crtc->plane) {
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009570 case PLANE_A:
9571 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
9572 break;
9573 case PLANE_B:
9574 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
9575 break;
9576 case PLANE_C:
9577 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
9578 break;
9579 default:
9580 WARN_ONCE(1, "unknown plane in flip command\n");
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009581 return -ENODEV;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009582 }
9583
Chris Wilsonffe74d72013-08-26 20:58:12 +01009584 len = 4;
Damien Lespiauf4768282014-04-07 20:24:34 +01009585 if (ring->id == RCS) {
Chris Wilsonffe74d72013-08-26 20:58:12 +01009586 len += 6;
Damien Lespiauf4768282014-04-07 20:24:34 +01009587 /*
9588 * On Gen 8, SRM is now taking an extra dword to accommodate
9589 * 48bits addresses, and we need a NOOP for the batch size to
9590 * stay even.
9591 */
9592 if (IS_GEN8(dev))
9593 len += 2;
9594 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009595
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009596 /*
9597 * BSpec MI_DISPLAY_FLIP for IVB:
9598 * "The full packet must be contained within the same cache line."
9599 *
9600 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
9601 * cacheline, if we ever start emitting more commands before
9602 * the MI_DISPLAY_FLIP we may need to first emit everything else,
9603 * then do the cacheline alignment, and finally emit the
9604 * MI_DISPLAY_FLIP.
9605 */
9606 ret = intel_ring_cacheline_align(ring);
9607 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009608 return ret;
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009609
Chris Wilsonffe74d72013-08-26 20:58:12 +01009610 ret = intel_ring_begin(ring, len);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009611 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009612 return ret;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009613
Chris Wilsonffe74d72013-08-26 20:58:12 +01009614 /* Unmask the flip-done completion message. Note that the bspec says that
9615 * we should do this for both the BCS and RCS, and that we must not unmask
9616 * more than one flip event at any time (or ensure that one flip message
9617 * can be sent by waiting for flip-done prior to queueing new flips).
9618 * Experimentation says that BCS works despite DERRMR masking all
9619 * flip-done completion events and that unmasking all planes at once
9620 * for the RCS also doesn't appear to drop events. Setting the DERRMR
9621 * to zero does lead to lockups within MI_DISPLAY_FLIP.
9622 */
9623 if (ring->id == RCS) {
9624 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9625 intel_ring_emit(ring, DERRMR);
9626 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9627 DERRMR_PIPEB_PRI_FLIP_DONE |
9628 DERRMR_PIPEC_PRI_FLIP_DONE));
Damien Lespiauf4768282014-04-07 20:24:34 +01009629 if (IS_GEN8(dev))
9630 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9631 MI_SRM_LRM_GLOBAL_GTT);
9632 else
9633 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) |
9634 MI_SRM_LRM_GLOBAL_GTT);
Chris Wilsonffe74d72013-08-26 20:58:12 +01009635 intel_ring_emit(ring, DERRMR);
9636 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Damien Lespiauf4768282014-04-07 20:24:34 +01009637 if (IS_GEN8(dev)) {
9638 intel_ring_emit(ring, 0);
9639 intel_ring_emit(ring, MI_NOOP);
9640 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009641 }
9642
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009643 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02009644 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009645 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009646 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +00009647
9648 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009649 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009650 return 0;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009651}
9652
Sourab Gupta84c33a62014-06-02 16:47:17 +05309653static bool use_mmio_flip(struct intel_engine_cs *ring,
9654 struct drm_i915_gem_object *obj)
9655{
9656 /*
9657 * This is not being used for older platforms, because
9658 * non-availability of flip done interrupt forces us to use
9659 * CS flips. Older platforms derive flip done using some clever
9660 * tricks involving the flip_pending status bits and vblank irqs.
9661 * So using MMIO flips there would disrupt this mechanism.
9662 */
9663
Chris Wilson8e09bf82014-07-08 10:40:30 +01009664 if (ring == NULL)
9665 return true;
9666
Sourab Gupta84c33a62014-06-02 16:47:17 +05309667 if (INTEL_INFO(ring->dev)->gen < 5)
9668 return false;
9669
9670 if (i915.use_mmio_flip < 0)
9671 return false;
9672 else if (i915.use_mmio_flip > 0)
9673 return true;
Oscar Mateo14bf9932014-07-24 17:04:34 +01009674 else if (i915.enable_execlists)
9675 return true;
Sourab Gupta84c33a62014-06-02 16:47:17 +05309676 else
John Harrison41c52412014-11-24 18:49:43 +00009677 return ring != i915_gem_request_get_ring(obj->last_read_req);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309678}
9679
Damien Lespiauff944562014-11-20 14:58:16 +00009680static void skl_do_mmio_flip(struct intel_crtc *intel_crtc)
9681{
9682 struct drm_device *dev = intel_crtc->base.dev;
9683 struct drm_i915_private *dev_priv = dev->dev_private;
9684 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
9685 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
9686 struct drm_i915_gem_object *obj = intel_fb->obj;
9687 const enum pipe pipe = intel_crtc->pipe;
9688 u32 ctl, stride;
9689
9690 ctl = I915_READ(PLANE_CTL(pipe, 0));
9691 ctl &= ~PLANE_CTL_TILED_MASK;
9692 if (obj->tiling_mode == I915_TILING_X)
9693 ctl |= PLANE_CTL_TILED_X;
9694
9695 /*
9696 * The stride is either expressed as a multiple of 64 bytes chunks for
9697 * linear buffers or in number of tiles for tiled buffers.
9698 */
9699 stride = fb->pitches[0] >> 6;
9700 if (obj->tiling_mode == I915_TILING_X)
9701 stride = fb->pitches[0] >> 9; /* X tiles are 512 bytes wide */
9702
9703 /*
9704 * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on
9705 * PLANE_SURF updates, the update is then guaranteed to be atomic.
9706 */
9707 I915_WRITE(PLANE_CTL(pipe, 0), ctl);
9708 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
9709
9710 I915_WRITE(PLANE_SURF(pipe, 0), intel_crtc->unpin_work->gtt_offset);
9711 POSTING_READ(PLANE_SURF(pipe, 0));
9712}
9713
9714static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc)
Sourab Gupta84c33a62014-06-02 16:47:17 +05309715{
9716 struct drm_device *dev = intel_crtc->base.dev;
9717 struct drm_i915_private *dev_priv = dev->dev_private;
9718 struct intel_framebuffer *intel_fb =
9719 to_intel_framebuffer(intel_crtc->base.primary->fb);
9720 struct drm_i915_gem_object *obj = intel_fb->obj;
9721 u32 dspcntr;
9722 u32 reg;
9723
Sourab Gupta84c33a62014-06-02 16:47:17 +05309724 reg = DSPCNTR(intel_crtc->plane);
9725 dspcntr = I915_READ(reg);
9726
Damien Lespiauc5d97472014-10-25 00:11:11 +01009727 if (obj->tiling_mode != I915_TILING_NONE)
9728 dspcntr |= DISPPLANE_TILED;
9729 else
9730 dspcntr &= ~DISPPLANE_TILED;
9731
Sourab Gupta84c33a62014-06-02 16:47:17 +05309732 I915_WRITE(reg, dspcntr);
9733
9734 I915_WRITE(DSPSURF(intel_crtc->plane),
9735 intel_crtc->unpin_work->gtt_offset);
9736 POSTING_READ(DSPSURF(intel_crtc->plane));
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009737
Damien Lespiauff944562014-11-20 14:58:16 +00009738}
9739
9740/*
9741 * XXX: This is the temporary way to update the plane registers until we get
9742 * around to using the usual plane update functions for MMIO flips
9743 */
9744static void intel_do_mmio_flip(struct intel_crtc *intel_crtc)
9745{
9746 struct drm_device *dev = intel_crtc->base.dev;
9747 bool atomic_update;
9748 u32 start_vbl_count;
9749
9750 intel_mark_page_flip_active(intel_crtc);
9751
9752 atomic_update = intel_pipe_update_start(intel_crtc, &start_vbl_count);
9753
9754 if (INTEL_INFO(dev)->gen >= 9)
9755 skl_do_mmio_flip(intel_crtc);
9756 else
9757 /* use_mmio_flip() retricts MMIO flips to ilk+ */
9758 ilk_do_mmio_flip(intel_crtc);
9759
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009760 if (atomic_update)
9761 intel_pipe_update_end(intel_crtc, start_vbl_count);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309762}
9763
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009764static void intel_mmio_flip_work_func(struct work_struct *work)
Sourab Gupta84c33a62014-06-02 16:47:17 +05309765{
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009766 struct intel_crtc *crtc =
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +02009767 container_of(work, struct intel_crtc, mmio_flip.work);
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009768 struct intel_mmio_flip *mmio_flip;
Sourab Gupta84c33a62014-06-02 16:47:17 +05309769
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009770 mmio_flip = &crtc->mmio_flip;
9771 if (mmio_flip->req)
John Harrison9c654812014-11-24 18:49:35 +00009772 WARN_ON(__i915_wait_request(mmio_flip->req,
9773 crtc->reset_counter,
9774 false, NULL, NULL) != 0);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309775
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009776 intel_do_mmio_flip(crtc);
9777 if (mmio_flip->req) {
9778 mutex_lock(&crtc->base.dev->struct_mutex);
John Harrison146d84f2014-12-05 13:49:33 +00009779 i915_gem_request_assign(&mmio_flip->req, NULL);
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009780 mutex_unlock(&crtc->base.dev->struct_mutex);
9781 }
Sourab Gupta84c33a62014-06-02 16:47:17 +05309782}
9783
9784static int intel_queue_mmio_flip(struct drm_device *dev,
9785 struct drm_crtc *crtc,
9786 struct drm_framebuffer *fb,
9787 struct drm_i915_gem_object *obj,
9788 struct intel_engine_cs *ring,
9789 uint32_t flags)
9790{
Sourab Gupta84c33a62014-06-02 16:47:17 +05309791 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309792
John Harrisoncc8c4cc2014-11-24 18:49:34 +00009793 i915_gem_request_assign(&intel_crtc->mmio_flip.req,
9794 obj->last_write_req);
Sourab Gupta84c33a62014-06-02 16:47:17 +05309795
Ander Conselvan de Oliveira536f5b52014-11-06 11:03:40 +02009796 schedule_work(&intel_crtc->mmio_flip.work);
9797
Sourab Gupta84c33a62014-06-02 16:47:17 +05309798 return 0;
9799}
9800
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009801static int intel_default_queue_flip(struct drm_device *dev,
9802 struct drm_crtc *crtc,
9803 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009804 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009805 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009806 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009807{
9808 return -ENODEV;
9809}
9810
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009811static bool __intel_pageflip_stall_check(struct drm_device *dev,
9812 struct drm_crtc *crtc)
9813{
9814 struct drm_i915_private *dev_priv = dev->dev_private;
9815 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9816 struct intel_unpin_work *work = intel_crtc->unpin_work;
9817 u32 addr;
9818
9819 if (atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE)
9820 return true;
9821
9822 if (!work->enable_stall_check)
9823 return false;
9824
9825 if (work->flip_ready_vblank == 0) {
Daniel Vetter3a8a9462014-11-26 14:39:48 +01009826 if (work->flip_queued_req &&
9827 !i915_gem_request_completed(work->flip_queued_req, true))
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009828 return false;
9829
Daniel Vetter1e3feef2015-02-13 21:03:45 +01009830 work->flip_ready_vblank = drm_crtc_vblank_count(crtc);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009831 }
9832
Daniel Vetter1e3feef2015-02-13 21:03:45 +01009833 if (drm_crtc_vblank_count(crtc) - work->flip_ready_vblank < 3)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009834 return false;
9835
9836 /* Potential stall - if we see that the flip has happened,
9837 * assume a missed interrupt. */
9838 if (INTEL_INFO(dev)->gen >= 4)
9839 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane)));
9840 else
9841 addr = I915_READ(DSPADDR(intel_crtc->plane));
9842
9843 /* There is a potential issue here with a false positive after a flip
9844 * to the same address. We could address this by checking for a
9845 * non-incrementing frame counter.
9846 */
9847 return addr == work->gtt_offset;
9848}
9849
9850void intel_check_page_flip(struct drm_device *dev, int pipe)
9851{
9852 struct drm_i915_private *dev_priv = dev->dev_private;
9853 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
9854 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetterf3260382014-09-15 14:55:23 +02009855
Dave Gordon6c51d462015-03-06 15:34:26 +00009856 WARN_ON(!in_interrupt());
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009857
9858 if (crtc == NULL)
9859 return;
9860
Daniel Vetterf3260382014-09-15 14:55:23 +02009861 spin_lock(&dev->event_lock);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009862 if (intel_crtc->unpin_work && __intel_pageflip_stall_check(dev, crtc)) {
9863 WARN_ONCE(1, "Kicking stuck page flip: queued at %d, now %d\n",
Daniel Vetter1e3feef2015-02-13 21:03:45 +01009864 intel_crtc->unpin_work->flip_queued_vblank,
9865 drm_vblank_count(dev, pipe));
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009866 page_flip_completed(intel_crtc);
9867 }
Daniel Vetterf3260382014-09-15 14:55:23 +02009868 spin_unlock(&dev->event_lock);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009869}
9870
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009871static int intel_crtc_page_flip(struct drm_crtc *crtc,
9872 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009873 struct drm_pending_vblank_event *event,
9874 uint32_t page_flip_flags)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009875{
9876 struct drm_device *dev = crtc->dev;
9877 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperf4510a22014-04-01 15:22:40 -07009878 struct drm_framebuffer *old_fb = crtc->primary->fb;
Matt Roper2ff8fde2014-07-08 07:50:07 -07009879 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009880 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Gustavo Padovan455a6802014-12-01 15:40:11 -08009881 struct drm_plane *primary = crtc->primary;
Daniel Vettera071fa02014-06-18 23:28:09 +02009882 enum pipe pipe = intel_crtc->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009883 struct intel_unpin_work *work;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009884 struct intel_engine_cs *ring;
Chris Wilson52e68632010-08-08 10:15:59 +01009885 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009886
Matt Roper2ff8fde2014-07-08 07:50:07 -07009887 /*
9888 * drm_mode_page_flip_ioctl() should already catch this, but double
9889 * check to be safe. In the future we may enable pageflipping from
9890 * a disabled primary plane.
9891 */
9892 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
9893 return -EBUSY;
9894
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009895 /* Can't change pixel format via MI display flips. */
Matt Roperf4510a22014-04-01 15:22:40 -07009896 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009897 return -EINVAL;
9898
9899 /*
9900 * TILEOFF/LINOFF registers can't be changed via MI display flips.
9901 * Note that pitch changes could also affect these register.
9902 */
9903 if (INTEL_INFO(dev)->gen > 3 &&
Matt Roperf4510a22014-04-01 15:22:40 -07009904 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
9905 fb->pitches[0] != crtc->primary->fb->pitches[0]))
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009906 return -EINVAL;
9907
Chris Wilsonf900db42014-02-20 09:26:13 +00009908 if (i915_terminally_wedged(&dev_priv->gpu_error))
9909 goto out_hang;
9910
Daniel Vetterb14c5672013-09-19 12:18:32 +02009911 work = kzalloc(sizeof(*work), GFP_KERNEL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009912 if (work == NULL)
9913 return -ENOMEM;
9914
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009915 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009916 work->crtc = crtc;
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +00009917 work->old_fb = old_fb;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009918 INIT_WORK(&work->work, intel_unpin_work_fn);
9919
Daniel Vetter87b6b102014-05-15 15:33:46 +02009920 ret = drm_crtc_vblank_get(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009921 if (ret)
9922 goto free_work;
9923
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009924 /* We borrow the event spin lock for protecting unpin_work */
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009925 spin_lock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009926 if (intel_crtc->unpin_work) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009927 /* Before declaring the flip queue wedged, check if
9928 * the hardware completed the operation behind our backs.
9929 */
9930 if (__intel_pageflip_stall_check(dev, crtc)) {
9931 DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n");
9932 page_flip_completed(intel_crtc);
9933 } else {
9934 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009935 spin_unlock_irq(&dev->event_lock);
Chris Wilson468f0b42010-05-27 13:18:13 +01009936
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009937 drm_crtc_vblank_put(crtc);
9938 kfree(work);
9939 return -EBUSY;
9940 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009941 }
9942 intel_crtc->unpin_work = work;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02009943 spin_unlock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009944
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009945 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
9946 flush_workqueue(dev_priv->wq);
9947
Jesse Barnes75dfca82010-02-10 15:09:44 -08009948 /* Reference the objects for the scheduled work. */
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +00009949 drm_framebuffer_reference(work->old_fb);
Chris Wilson05394f32010-11-08 19:18:58 +00009950 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009951
Matt Roperf4510a22014-04-01 15:22:40 -07009952 crtc->primary->fb = fb;
Matt Roperafd65eb2015-02-03 13:10:04 -08009953 update_state_fb(crtc->primary);
Matt Roper1ed1f962015-01-30 16:22:36 -08009954
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009955 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009956
Chris Wilson89ed88b2015-02-16 14:31:49 +00009957 ret = i915_mutex_lock_interruptible(dev);
9958 if (ret)
9959 goto cleanup;
9960
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009961 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +02009962 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009963
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009964 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
Daniel Vettera071fa02014-06-18 23:28:09 +02009965 work->flip_count = I915_READ(PIPE_FLIPCOUNT_GM45(pipe)) + 1;
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009966
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009967 if (IS_VALLEYVIEW(dev)) {
9968 ring = &dev_priv->ring[BCS];
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +00009969 if (obj->tiling_mode != intel_fb_obj(work->old_fb)->tiling_mode)
Chris Wilson8e09bf82014-07-08 10:40:30 +01009970 /* vlv: DISPLAY_FLIP fails to change tiling */
9971 ring = NULL;
Chris Wilson48bf5b22014-12-27 09:48:28 +00009972 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Chris Wilson2a92d5b2014-07-08 10:40:29 +01009973 ring = &dev_priv->ring[BCS];
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009974 } else if (INTEL_INFO(dev)->gen >= 7) {
John Harrison41c52412014-11-24 18:49:43 +00009975 ring = i915_gem_request_get_ring(obj->last_read_req);
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009976 if (ring == NULL || ring->id != RCS)
9977 ring = &dev_priv->ring[BCS];
9978 } else {
9979 ring = &dev_priv->ring[RCS];
9980 }
9981
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00009982 ret = intel_pin_and_fence_fb_obj(crtc->primary, fb, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009983 if (ret)
9984 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009985
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009986 work->gtt_offset =
9987 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset;
9988
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009989 if (use_mmio_flip(ring, obj)) {
Sourab Gupta84c33a62014-06-02 16:47:17 +05309990 ret = intel_queue_mmio_flip(dev, crtc, fb, obj, ring,
9991 page_flip_flags);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009992 if (ret)
9993 goto cleanup_unpin;
9994
John Harrisonf06cc1b2014-11-24 18:49:37 +00009995 i915_gem_request_assign(&work->flip_queued_req,
9996 obj->last_write_req);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009997 } else {
Sourab Gupta84c33a62014-06-02 16:47:17 +05309998 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, ring,
Chris Wilsond6bbafa2014-09-05 07:13:24 +01009999 page_flip_flags);
10000 if (ret)
10001 goto cleanup_unpin;
10002
John Harrisonf06cc1b2014-11-24 18:49:37 +000010003 i915_gem_request_assign(&work->flip_queued_req,
10004 intel_ring_get_request(ring));
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010005 }
10006
Daniel Vetter1e3feef2015-02-13 21:03:45 +010010007 work->flip_queued_vblank = drm_crtc_vblank_count(crtc);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010008 work->enable_stall_check = true;
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010009
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000010010 i915_gem_track_fb(intel_fb_obj(work->old_fb), obj,
Daniel Vettera071fa02014-06-18 23:28:09 +020010011 INTEL_FRONTBUFFER_PRIMARY(pipe));
10012
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020010013 intel_fbc_disable(dev);
Daniel Vetterf99d7062014-06-19 16:01:59 +020010014 intel_frontbuffer_flip_prepare(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010015 mutex_unlock(&dev->struct_mutex);
10016
Jesse Barnese5510fa2010-07-01 16:48:37 -070010017 trace_i915_flip_request(intel_crtc->plane, obj);
10018
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010019 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +010010020
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010021cleanup_unpin:
10022 intel_unpin_fb_obj(obj);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010023cleanup_pending:
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010024 atomic_dec(&intel_crtc->unpin_work_count);
Chris Wilson89ed88b2015-02-16 14:31:49 +000010025 mutex_unlock(&dev->struct_mutex);
10026cleanup:
Matt Roperf4510a22014-04-01 15:22:40 -070010027 crtc->primary->fb = old_fb;
Matt Roperafd65eb2015-02-03 13:10:04 -080010028 update_state_fb(crtc->primary);
Chris Wilson96b099f2010-06-07 14:03:04 +010010029
Chris Wilson89ed88b2015-02-16 14:31:49 +000010030 drm_gem_object_unreference_unlocked(&obj->base);
10031 drm_framebuffer_unreference(work->old_fb);
10032
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010033 spin_lock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +010010034 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010035 spin_unlock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +010010036
Daniel Vetter87b6b102014-05-15 15:33:46 +020010037 drm_crtc_vblank_put(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -070010038free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +010010039 kfree(work);
10040
Chris Wilsonf900db42014-02-20 09:26:13 +000010041 if (ret == -EIO) {
10042out_hang:
Matt Roper53a366b2014-12-23 10:41:53 -080010043 ret = intel_plane_restore(primary);
Chris Wilsonf0d3dad2014-09-07 16:51:12 +010010044 if (ret == 0 && event) {
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010045 spin_lock_irq(&dev->event_lock);
Daniel Vettera071fa02014-06-18 23:28:09 +020010046 drm_send_vblank_event(dev, pipe, event);
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010047 spin_unlock_irq(&dev->event_lock);
Chris Wilsonf0d3dad2014-09-07 16:51:12 +010010048 }
Chris Wilsonf900db42014-02-20 09:26:13 +000010049 }
Chris Wilson96b099f2010-06-07 14:03:04 +010010050 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010051}
10052
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010053static struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010054 .mode_set_base_atomic = intel_pipe_set_base_atomic,
10055 .load_lut = intel_crtc_load_lut,
Matt Roperea2c67b2014-12-23 10:41:52 -080010056 .atomic_begin = intel_begin_crtc_commit,
10057 .atomic_flush = intel_finish_crtc_commit,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010058};
10059
Daniel Vetter9a935852012-07-05 22:34:27 +020010060/**
10061 * intel_modeset_update_staged_output_state
10062 *
10063 * Updates the staged output configuration state, e.g. after we've read out the
10064 * current hw state.
10065 */
10066static void intel_modeset_update_staged_output_state(struct drm_device *dev)
10067{
Ville Syrjälä76688512014-01-10 11:28:06 +020010068 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020010069 struct intel_encoder *encoder;
10070 struct intel_connector *connector;
10071
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020010072 for_each_intel_connector(dev, connector) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010073 connector->new_encoder =
10074 to_intel_encoder(connector->base.encoder);
10075 }
10076
Damien Lespiaub2784e12014-08-05 11:29:37 +010010077 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010078 encoder->new_crtc =
10079 to_intel_crtc(encoder->base.crtc);
10080 }
Ville Syrjälä76688512014-01-10 11:28:06 +020010081
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010082 for_each_intel_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080010083 crtc->new_enabled = crtc->base.state->enable;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010084
10085 if (crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010086 crtc->new_config = crtc->config;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010087 else
10088 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020010089 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010090}
10091
10092/**
10093 * intel_modeset_commit_output_state
10094 *
10095 * This function copies the stage display pipe configuration to the real one.
10096 */
10097static void intel_modeset_commit_output_state(struct drm_device *dev)
10098{
Ville Syrjälä76688512014-01-10 11:28:06 +020010099 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020010100 struct intel_encoder *encoder;
10101 struct intel_connector *connector;
10102
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020010103 for_each_intel_connector(dev, connector) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010104 connector->base.encoder = &connector->new_encoder->base;
10105 }
10106
Damien Lespiaub2784e12014-08-05 11:29:37 +010010107 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010108 encoder->base.crtc = &encoder->new_crtc->base;
10109 }
Ville Syrjälä76688512014-01-10 11:28:06 +020010110
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010111 for_each_intel_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080010112 crtc->base.state->enable = crtc->new_enabled;
Ville Syrjälä76688512014-01-10 11:28:06 +020010113 crtc->base.enabled = crtc->new_enabled;
10114 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010115}
10116
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010117static void
Robin Schroereba905b2014-05-18 02:24:50 +020010118connected_sink_compute_bpp(struct intel_connector *connector,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010119 struct intel_crtc_state *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010120{
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010121 int bpp = pipe_config->pipe_bpp;
10122
10123 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
10124 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030010125 connector->base.name);
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010126
10127 /* Don't use an invalid EDID bpc value */
10128 if (connector->base.display_info.bpc &&
10129 connector->base.display_info.bpc * 3 < bpp) {
10130 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
10131 bpp, connector->base.display_info.bpc*3);
10132 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
10133 }
10134
10135 /* Clamp bpp to 8 on screens without EDID 1.4 */
10136 if (connector->base.display_info.bpc == 0 && bpp > 24) {
10137 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
10138 bpp);
10139 pipe_config->pipe_bpp = 24;
10140 }
10141}
10142
10143static int
10144compute_baseline_pipe_bpp(struct intel_crtc *crtc,
10145 struct drm_framebuffer *fb,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010146 struct intel_crtc_state *pipe_config)
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010147{
10148 struct drm_device *dev = crtc->base.dev;
10149 struct intel_connector *connector;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010150 int bpp;
10151
Daniel Vetterd42264b2013-03-28 16:38:08 +010010152 switch (fb->pixel_format) {
10153 case DRM_FORMAT_C8:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010154 bpp = 8*3; /* since we go through a colormap */
10155 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +010010156 case DRM_FORMAT_XRGB1555:
10157 case DRM_FORMAT_ARGB1555:
10158 /* checked in intel_framebuffer_init already */
10159 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
10160 return -EINVAL;
10161 case DRM_FORMAT_RGB565:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010162 bpp = 6*3; /* min is 18bpp */
10163 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +010010164 case DRM_FORMAT_XBGR8888:
10165 case DRM_FORMAT_ABGR8888:
10166 /* checked in intel_framebuffer_init already */
10167 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
10168 return -EINVAL;
10169 case DRM_FORMAT_XRGB8888:
10170 case DRM_FORMAT_ARGB8888:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010171 bpp = 8*3;
10172 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +010010173 case DRM_FORMAT_XRGB2101010:
10174 case DRM_FORMAT_ARGB2101010:
10175 case DRM_FORMAT_XBGR2101010:
10176 case DRM_FORMAT_ABGR2101010:
10177 /* checked in intel_framebuffer_init already */
10178 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
Daniel Vetterbaba1332013-03-27 00:45:00 +010010179 return -EINVAL;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010180 bpp = 10*3;
10181 break;
Daniel Vetterbaba1332013-03-27 00:45:00 +010010182 /* TODO: gen4+ supports 16 bpc floating point, too. */
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010183 default:
10184 DRM_DEBUG_KMS("unsupported depth\n");
10185 return -EINVAL;
10186 }
10187
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010188 pipe_config->pipe_bpp = bpp;
10189
10190 /* Clamp display bpp to EDID value */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020010191 for_each_intel_connector(dev, connector) {
Daniel Vetter1b829e02013-06-02 13:26:24 +020010192 if (!connector->new_encoder ||
10193 connector->new_encoder->new_crtc != crtc)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010194 continue;
10195
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010196 connected_sink_compute_bpp(connector, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010197 }
10198
10199 return bpp;
10200}
10201
Daniel Vetter644db712013-09-19 14:53:58 +020010202static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
10203{
10204 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
10205 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +010010206 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +020010207 mode->crtc_hdisplay, mode->crtc_hsync_start,
10208 mode->crtc_hsync_end, mode->crtc_htotal,
10209 mode->crtc_vdisplay, mode->crtc_vsync_start,
10210 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
10211}
10212
Daniel Vetterc0b03412013-05-28 12:05:54 +020010213static void intel_dump_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010214 struct intel_crtc_state *pipe_config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020010215 const char *context)
10216{
10217 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
10218 context, pipe_name(crtc->pipe));
10219
10220 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
10221 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
10222 pipe_config->pipe_bpp, pipe_config->dither);
10223 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
10224 pipe_config->has_pch_encoder,
10225 pipe_config->fdi_lanes,
10226 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
10227 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
10228 pipe_config->fdi_m_n.tu);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010229 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
10230 pipe_config->has_dp_encoder,
10231 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
10232 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
10233 pipe_config->dp_m_n.tu);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010234
10235 DRM_DEBUG_KMS("dp: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n",
10236 pipe_config->has_dp_encoder,
10237 pipe_config->dp_m2_n2.gmch_m,
10238 pipe_config->dp_m2_n2.gmch_n,
10239 pipe_config->dp_m2_n2.link_m,
10240 pipe_config->dp_m2_n2.link_n,
10241 pipe_config->dp_m2_n2.tu);
10242
Daniel Vetter55072d12014-11-20 16:10:28 +010010243 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
10244 pipe_config->has_audio,
10245 pipe_config->has_infoframe);
10246
Daniel Vetterc0b03412013-05-28 12:05:54 +020010247 DRM_DEBUG_KMS("requested mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010248 drm_mode_debug_printmodeline(&pipe_config->base.mode);
Daniel Vetterc0b03412013-05-28 12:05:54 +020010249 DRM_DEBUG_KMS("adjusted mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010250 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
10251 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +030010252 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010253 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
10254 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Daniel Vetterc0b03412013-05-28 12:05:54 +020010255 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
10256 pipe_config->gmch_pfit.control,
10257 pipe_config->gmch_pfit.pgm_ratios,
10258 pipe_config->gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010259 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
Daniel Vetterc0b03412013-05-28 12:05:54 +020010260 pipe_config->pch_pfit.pos,
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010261 pipe_config->pch_pfit.size,
10262 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
Paulo Zanoni42db64e2013-05-31 16:33:22 -030010263 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Ville Syrjäläcf532bb2013-09-04 18:30:02 +030010264 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
Daniel Vetterc0b03412013-05-28 12:05:54 +020010265}
10266
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010267static bool encoders_cloneable(const struct intel_encoder *a,
10268 const struct intel_encoder *b)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010269{
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010270 /* masks could be asymmetric, so check both ways */
10271 return a == b || (a->cloneable & (1 << b->type) &&
10272 b->cloneable & (1 << a->type));
10273}
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010274
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010275static bool check_single_encoder_cloning(struct intel_crtc *crtc,
10276 struct intel_encoder *encoder)
10277{
10278 struct drm_device *dev = crtc->base.dev;
10279 struct intel_encoder *source_encoder;
10280
Damien Lespiaub2784e12014-08-05 11:29:37 +010010281 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010282 if (source_encoder->new_crtc != crtc)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010283 continue;
10284
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010285 if (!encoders_cloneable(encoder, source_encoder))
10286 return false;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010287 }
10288
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010289 return true;
10290}
10291
10292static bool check_encoder_cloning(struct intel_crtc *crtc)
10293{
10294 struct drm_device *dev = crtc->base.dev;
10295 struct intel_encoder *encoder;
10296
Damien Lespiaub2784e12014-08-05 11:29:37 +010010297 for_each_intel_encoder(dev, encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010298 if (encoder->new_crtc != crtc)
10299 continue;
10300
10301 if (!check_single_encoder_cloning(crtc, encoder))
10302 return false;
10303 }
10304
10305 return true;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010306}
10307
Ville Syrjälä00f0b372014-12-02 14:10:46 +020010308static bool check_digital_port_conflicts(struct drm_device *dev)
10309{
10310 struct intel_connector *connector;
10311 unsigned int used_ports = 0;
10312
10313 /*
10314 * Walk the connector list instead of the encoder
10315 * list to detect the problem on ddi platforms
10316 * where there's just one encoder per digital port.
10317 */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020010318 for_each_intel_connector(dev, connector) {
Ville Syrjälä00f0b372014-12-02 14:10:46 +020010319 struct intel_encoder *encoder = connector->new_encoder;
10320
10321 if (!encoder)
10322 continue;
10323
10324 WARN_ON(!encoder->new_crtc);
10325
10326 switch (encoder->type) {
10327 unsigned int port_mask;
10328 case INTEL_OUTPUT_UNKNOWN:
10329 if (WARN_ON(!HAS_DDI(dev)))
10330 break;
10331 case INTEL_OUTPUT_DISPLAYPORT:
10332 case INTEL_OUTPUT_HDMI:
10333 case INTEL_OUTPUT_EDP:
10334 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
10335
10336 /* the same port mustn't appear more than once */
10337 if (used_ports & port_mask)
10338 return false;
10339
10340 used_ports |= port_mask;
10341 default:
10342 break;
10343 }
10344 }
10345
10346 return true;
10347}
10348
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010349static struct intel_crtc_state *
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010350intel_modeset_pipe_config(struct drm_crtc *crtc,
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010351 struct drm_framebuffer *fb,
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010352 struct drm_display_mode *mode)
Daniel Vetter7758a112012-07-08 19:40:39 +020010353{
10354 struct drm_device *dev = crtc->dev;
Daniel Vetter7758a112012-07-08 19:40:39 +020010355 struct intel_encoder *encoder;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010356 struct intel_crtc_state *pipe_config;
Daniel Vettere29c22c2013-02-21 00:00:16 +010010357 int plane_bpp, ret = -EINVAL;
10358 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +020010359
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010360 if (!check_encoder_cloning(to_intel_crtc(crtc))) {
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020010361 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
10362 return ERR_PTR(-EINVAL);
10363 }
10364
Ville Syrjälä00f0b372014-12-02 14:10:46 +020010365 if (!check_digital_port_conflicts(dev)) {
10366 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
10367 return ERR_PTR(-EINVAL);
10368 }
10369
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010370 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
10371 if (!pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +020010372 return ERR_PTR(-ENOMEM);
10373
Matt Roper07878242015-02-25 11:43:26 -080010374 pipe_config->base.crtc = crtc;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010375 drm_mode_copy(&pipe_config->base.adjusted_mode, mode);
10376 drm_mode_copy(&pipe_config->base.mode, mode);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010377
Daniel Vettere143a212013-07-04 12:01:15 +020010378 pipe_config->cpu_transcoder =
10379 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010380 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010381
Imre Deak2960bc92013-07-30 13:36:32 +030010382 /*
10383 * Sanitize sync polarity flags based on requested ones. If neither
10384 * positive or negative polarity is requested, treat this as meaning
10385 * negative polarity.
10386 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010387 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030010388 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010389 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030010390
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010391 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030010392 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010393 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030010394
Daniel Vetter050f7ae2013-06-02 13:26:23 +020010395 /* Compute a starting value for pipe_config->pipe_bpp taking the source
10396 * plane pixel format and any sink constraints into account. Returns the
10397 * source plane bpp so that dithering can be selected on mismatches
10398 * after encoders and crtc also have had their say. */
10399 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
10400 fb, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010401 if (plane_bpp < 0)
10402 goto fail;
10403
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030010404 /*
10405 * Determine the real pipe dimensions. Note that stereo modes can
10406 * increase the actual pipe size due to the frame doubling and
10407 * insertion of additional space for blanks between the frame. This
10408 * is stored in the crtc timings. We use the requested mode to do this
10409 * computation to clearly distinguish it from the adjusted mode, which
10410 * can be changed by the connectors in the below retry loop.
10411 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010412 drm_crtc_get_hv_timing(&pipe_config->base.mode,
Gustavo Padovanecb7e162014-12-01 15:40:09 -080010413 &pipe_config->pipe_src_w,
10414 &pipe_config->pipe_src_h);
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030010415
Daniel Vettere29c22c2013-02-21 00:00:16 +010010416encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +020010417 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +020010418 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +020010419 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +020010420
Daniel Vetter135c81b2013-07-21 21:37:09 +020010421 /* Fill in default crtc timings, allow encoders to overwrite them. */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010422 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
10423 CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +020010424
Daniel Vetter7758a112012-07-08 19:40:39 +020010425 /* Pass our mode to the connectors and the CRTC to give them a chance to
10426 * adjust it according to limitations or connector properties, and also
10427 * a chance to reject the mode entirely.
10428 */
Damien Lespiaub2784e12014-08-05 11:29:37 +010010429 for_each_intel_encoder(dev, encoder) {
Daniel Vetter7758a112012-07-08 19:40:39 +020010430
10431 if (&encoder->new_crtc->base != crtc)
10432 continue;
Daniel Vetter7ae89232013-03-27 00:44:52 +010010433
Daniel Vetterefea6e82013-07-21 21:36:59 +020010434 if (!(encoder->compute_config(encoder, pipe_config))) {
10435 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +020010436 goto fail;
10437 }
10438 }
10439
Daniel Vetterff9a6752013-06-01 17:16:21 +020010440 /* Set default port clock if not overwritten by the encoder. Needs to be
10441 * done afterwards in case the encoder adjusts the mode. */
10442 if (!pipe_config->port_clock)
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010443 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
Damien Lespiau241bfc32013-09-25 16:45:37 +010010444 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +020010445
Daniel Vettera43f6e02013-06-07 23:10:32 +020010446 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010010447 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +020010448 DRM_DEBUG_KMS("CRTC fixup failed\n");
10449 goto fail;
10450 }
Daniel Vettere29c22c2013-02-21 00:00:16 +010010451
10452 if (ret == RETRY) {
10453 if (WARN(!retry, "loop in pipe configuration computation\n")) {
10454 ret = -EINVAL;
10455 goto fail;
10456 }
10457
10458 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
10459 retry = false;
10460 goto encoder_retry;
10461 }
10462
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010463 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
10464 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
10465 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
10466
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010467 return pipe_config;
Daniel Vetter7758a112012-07-08 19:40:39 +020010468fail:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010469 kfree(pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010010470 return ERR_PTR(ret);
Daniel Vetter7758a112012-07-08 19:40:39 +020010471}
10472
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010473/* Computes which crtcs are affected and sets the relevant bits in the mask. For
10474 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
10475static void
10476intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
10477 unsigned *prepare_pipes, unsigned *disable_pipes)
10478{
10479 struct intel_crtc *intel_crtc;
10480 struct drm_device *dev = crtc->dev;
10481 struct intel_encoder *encoder;
10482 struct intel_connector *connector;
10483 struct drm_crtc *tmp_crtc;
10484
10485 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
10486
10487 /* Check which crtcs have changed outputs connected to them, these need
10488 * to be part of the prepare_pipes mask. We don't (yet) support global
10489 * modeset across multiple crtcs, so modeset_pipes will only have one
10490 * bit set at most. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020010491 for_each_intel_connector(dev, connector) {
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010492 if (connector->base.encoder == &connector->new_encoder->base)
10493 continue;
10494
10495 if (connector->base.encoder) {
10496 tmp_crtc = connector->base.encoder->crtc;
10497
10498 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
10499 }
10500
10501 if (connector->new_encoder)
10502 *prepare_pipes |=
10503 1 << connector->new_encoder->new_crtc->pipe;
10504 }
10505
Damien Lespiaub2784e12014-08-05 11:29:37 +010010506 for_each_intel_encoder(dev, encoder) {
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010507 if (encoder->base.crtc == &encoder->new_crtc->base)
10508 continue;
10509
10510 if (encoder->base.crtc) {
10511 tmp_crtc = encoder->base.crtc;
10512
10513 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
10514 }
10515
10516 if (encoder->new_crtc)
10517 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
10518 }
10519
Ville Syrjälä76688512014-01-10 11:28:06 +020010520 /* Check for pipes that will be enabled/disabled ... */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010521 for_each_intel_crtc(dev, intel_crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080010522 if (intel_crtc->base.state->enable == intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010523 continue;
10524
Ville Syrjälä76688512014-01-10 11:28:06 +020010525 if (!intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010526 *disable_pipes |= 1 << intel_crtc->pipe;
Ville Syrjälä76688512014-01-10 11:28:06 +020010527 else
10528 *prepare_pipes |= 1 << intel_crtc->pipe;
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010529 }
10530
10531
10532 /* set_mode is also used to update properties on life display pipes. */
10533 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä76688512014-01-10 11:28:06 +020010534 if (intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010535 *prepare_pipes |= 1 << intel_crtc->pipe;
10536
Daniel Vetterb6c51642013-04-12 18:48:43 +020010537 /*
10538 * For simplicity do a full modeset on any pipe where the output routing
10539 * changed. We could be more clever, but that would require us to be
10540 * more careful with calling the relevant encoder->mode_set functions.
10541 */
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010542 if (*prepare_pipes)
10543 *modeset_pipes = *prepare_pipes;
10544
10545 /* ... and mask these out. */
10546 *modeset_pipes &= ~(*disable_pipes);
10547 *prepare_pipes &= ~(*disable_pipes);
Daniel Vetterb6c51642013-04-12 18:48:43 +020010548
10549 /*
10550 * HACK: We don't (yet) fully support global modesets. intel_set_config
10551 * obies this rule, but the modeset restore mode of
10552 * intel_modeset_setup_hw_state does not.
10553 */
10554 *modeset_pipes &= 1 << intel_crtc->pipe;
10555 *prepare_pipes &= 1 << intel_crtc->pipe;
Daniel Vettere3641d32013-04-11 19:49:07 +020010556
10557 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
10558 *modeset_pipes, *prepare_pipes, *disable_pipes);
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010559}
10560
Daniel Vetterea9d7582012-07-10 10:42:52 +020010561static bool intel_crtc_in_use(struct drm_crtc *crtc)
10562{
10563 struct drm_encoder *encoder;
10564 struct drm_device *dev = crtc->dev;
10565
10566 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
10567 if (encoder->crtc == crtc)
10568 return true;
10569
10570 return false;
10571}
10572
10573static void
10574intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
10575{
Daniel Vetterba41c0de2014-11-03 15:04:55 +010010576 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterea9d7582012-07-10 10:42:52 +020010577 struct intel_encoder *intel_encoder;
10578 struct intel_crtc *intel_crtc;
10579 struct drm_connector *connector;
10580
Daniel Vetterba41c0de2014-11-03 15:04:55 +010010581 intel_shared_dpll_commit(dev_priv);
10582
Damien Lespiaub2784e12014-08-05 11:29:37 +010010583 for_each_intel_encoder(dev, intel_encoder) {
Daniel Vetterea9d7582012-07-10 10:42:52 +020010584 if (!intel_encoder->base.crtc)
10585 continue;
10586
10587 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
10588
10589 if (prepare_pipes & (1 << intel_crtc->pipe))
10590 intel_encoder->connectors_active = false;
10591 }
10592
10593 intel_modeset_commit_output_state(dev);
10594
Ville Syrjälä76688512014-01-10 11:28:06 +020010595 /* Double check state. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010596 for_each_intel_crtc(dev, intel_crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080010597 WARN_ON(intel_crtc->base.state->enable != intel_crtc_in_use(&intel_crtc->base));
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010598 WARN_ON(intel_crtc->new_config &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010599 intel_crtc->new_config != intel_crtc->config);
Matt Roper83d65732015-02-25 13:12:16 -080010600 WARN_ON(intel_crtc->base.state->enable != !!intel_crtc->new_config);
Daniel Vetterea9d7582012-07-10 10:42:52 +020010601 }
10602
10603 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
10604 if (!connector->encoder || !connector->encoder->crtc)
10605 continue;
10606
10607 intel_crtc = to_intel_crtc(connector->encoder->crtc);
10608
10609 if (prepare_pipes & (1 << intel_crtc->pipe)) {
Daniel Vetter68d34722012-09-06 22:08:35 +020010610 struct drm_property *dpms_property =
10611 dev->mode_config.dpms_property;
10612
Daniel Vetterea9d7582012-07-10 10:42:52 +020010613 connector->dpms = DRM_MODE_DPMS_ON;
Rob Clark662595d2012-10-11 20:36:04 -050010614 drm_object_property_set_value(&connector->base,
Daniel Vetter68d34722012-09-06 22:08:35 +020010615 dpms_property,
10616 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +020010617
10618 intel_encoder = to_intel_encoder(connector->encoder);
10619 intel_encoder->connectors_active = true;
10620 }
10621 }
10622
10623}
10624
Ville Syrjälä3bd26262013-09-06 23:29:02 +030010625static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010626{
Ville Syrjälä3bd26262013-09-06 23:29:02 +030010627 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010628
10629 if (clock1 == clock2)
10630 return true;
10631
10632 if (!clock1 || !clock2)
10633 return false;
10634
10635 diff = abs(clock1 - clock2);
10636
10637 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
10638 return true;
10639
10640 return false;
10641}
10642
Daniel Vetter25c5b262012-07-08 22:08:04 +020010643#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
10644 list_for_each_entry((intel_crtc), \
10645 &(dev)->mode_config.crtc_list, \
10646 base.head) \
Daniel Vetter0973f182013-04-19 11:25:33 +020010647 if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +020010648
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010649static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020010650intel_pipe_config_compare(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010651 struct intel_crtc_state *current_config,
10652 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010653{
Daniel Vetter66e985c2013-06-05 13:34:20 +020010654#define PIPE_CONF_CHECK_X(name) \
10655 if (current_config->name != pipe_config->name) { \
10656 DRM_ERROR("mismatch in " #name " " \
10657 "(expected 0x%08x, found 0x%08x)\n", \
10658 current_config->name, \
10659 pipe_config->name); \
10660 return false; \
10661 }
10662
Daniel Vetter08a24032013-04-19 11:25:34 +020010663#define PIPE_CONF_CHECK_I(name) \
10664 if (current_config->name != pipe_config->name) { \
10665 DRM_ERROR("mismatch in " #name " " \
10666 "(expected %i, found %i)\n", \
10667 current_config->name, \
10668 pipe_config->name); \
10669 return false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +010010670 }
10671
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010672/* This is required for BDW+ where there is only one set of registers for
10673 * switching between high and low RR.
10674 * This macro can be used whenever a comparison has to be made between one
10675 * hw state and multiple sw state variables.
10676 */
10677#define PIPE_CONF_CHECK_I_ALT(name, alt_name) \
10678 if ((current_config->name != pipe_config->name) && \
10679 (current_config->alt_name != pipe_config->name)) { \
10680 DRM_ERROR("mismatch in " #name " " \
10681 "(expected %i or %i, found %i)\n", \
10682 current_config->name, \
10683 current_config->alt_name, \
10684 pipe_config->name); \
10685 return false; \
10686 }
10687
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010688#define PIPE_CONF_CHECK_FLAGS(name, mask) \
10689 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Jesse Barnes6f024882013-07-01 10:19:09 -070010690 DRM_ERROR("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010691 "(expected %i, found %i)\n", \
10692 current_config->name & (mask), \
10693 pipe_config->name & (mask)); \
10694 return false; \
10695 }
10696
Ville Syrjälä5e550652013-09-06 23:29:07 +030010697#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
10698 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
10699 DRM_ERROR("mismatch in " #name " " \
10700 "(expected %i, found %i)\n", \
10701 current_config->name, \
10702 pipe_config->name); \
10703 return false; \
10704 }
10705
Daniel Vetterbb760062013-06-06 14:55:52 +020010706#define PIPE_CONF_QUIRK(quirk) \
10707 ((current_config->quirks | pipe_config->quirks) & (quirk))
10708
Daniel Vettereccb1402013-05-22 00:50:22 +020010709 PIPE_CONF_CHECK_I(cpu_transcoder);
10710
Daniel Vetter08a24032013-04-19 11:25:34 +020010711 PIPE_CONF_CHECK_I(has_pch_encoder);
10712 PIPE_CONF_CHECK_I(fdi_lanes);
Daniel Vetter72419202013-04-04 13:28:53 +020010713 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
10714 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
10715 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
10716 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
10717 PIPE_CONF_CHECK_I(fdi_m_n.tu);
Daniel Vetter08a24032013-04-19 11:25:34 +020010718
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010719 PIPE_CONF_CHECK_I(has_dp_encoder);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010720
10721 if (INTEL_INFO(dev)->gen < 8) {
10722 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
10723 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
10724 PIPE_CONF_CHECK_I(dp_m_n.link_m);
10725 PIPE_CONF_CHECK_I(dp_m_n.link_n);
10726 PIPE_CONF_CHECK_I(dp_m_n.tu);
10727
10728 if (current_config->has_drrs) {
10729 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_m);
10730 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_n);
10731 PIPE_CONF_CHECK_I(dp_m2_n2.link_m);
10732 PIPE_CONF_CHECK_I(dp_m2_n2.link_n);
10733 PIPE_CONF_CHECK_I(dp_m2_n2.tu);
10734 }
10735 } else {
10736 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_m, dp_m2_n2.gmch_m);
10737 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_n, dp_m2_n2.gmch_n);
10738 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_m, dp_m2_n2.link_m);
10739 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_n, dp_m2_n2.link_n);
10740 PIPE_CONF_CHECK_I_ALT(dp_m_n.tu, dp_m2_n2.tu);
10741 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030010742
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010743 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
10744 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
10745 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
10746 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
10747 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
10748 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010749
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010750 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
10751 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
10752 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
10753 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
10754 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
10755 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010756
Daniel Vetterc93f54c2013-06-27 19:47:19 +020010757 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6897b4b52014-04-24 23:54:47 +020010758 PIPE_CONF_CHECK_I(has_hdmi_sink);
Daniel Vetterb5a9fa02014-04-24 23:54:49 +020010759 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
10760 IS_VALLEYVIEW(dev))
10761 PIPE_CONF_CHECK_I(limited_color_range);
Jesse Barnese43823e2014-11-05 14:26:08 -080010762 PIPE_CONF_CHECK_I(has_infoframe);
Daniel Vetter6c49f242013-06-06 12:45:25 +020010763
Daniel Vetter9ed109a2014-04-24 23:54:52 +020010764 PIPE_CONF_CHECK_I(has_audio);
10765
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010766 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010767 DRM_MODE_FLAG_INTERLACE);
10768
Daniel Vetterbb760062013-06-06 14:55:52 +020010769 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010770 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010771 DRM_MODE_FLAG_PHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010772 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010773 DRM_MODE_FLAG_NHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010774 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010775 DRM_MODE_FLAG_PVSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010776 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020010777 DRM_MODE_FLAG_NVSYNC);
10778 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010779
Ville Syrjälä37327ab2013-09-04 18:25:28 +030010780 PIPE_CONF_CHECK_I(pipe_src_w);
10781 PIPE_CONF_CHECK_I(pipe_src_h);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010782
Daniel Vetter99535992014-04-13 12:00:33 +020010783 /*
10784 * FIXME: BIOS likes to set up a cloned config with lvds+external
10785 * screen. Since we don't yet re-compute the pipe config when moving
10786 * just the lvds port away to another pipe the sw tracking won't match.
10787 *
10788 * Proper atomic modesets with recomputed global state will fix this.
10789 * Until then just don't check gmch state for inherited modes.
10790 */
10791 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE)) {
10792 PIPE_CONF_CHECK_I(gmch_pfit.control);
10793 /* pfit ratios are autocomputed by the hw on gen4+ */
10794 if (INTEL_INFO(dev)->gen < 4)
10795 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
10796 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
10797 }
10798
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010799 PIPE_CONF_CHECK_I(pch_pfit.enabled);
10800 if (current_config->pch_pfit.enabled) {
10801 PIPE_CONF_CHECK_I(pch_pfit.pos);
10802 PIPE_CONF_CHECK_I(pch_pfit.size);
10803 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020010804
Jesse Barnese59150d2014-01-07 13:30:45 -080010805 /* BDW+ don't expose a synchronous way to read the state */
10806 if (IS_HASWELL(dev))
10807 PIPE_CONF_CHECK_I(ips_enabled);
Paulo Zanoni42db64e2013-05-31 16:33:22 -030010808
Ville Syrjälä282740f2013-09-04 18:30:03 +030010809 PIPE_CONF_CHECK_I(double_wide);
10810
Daniel Vetter26804af2014-06-25 22:01:55 +030010811 PIPE_CONF_CHECK_X(ddi_pll_sel);
10812
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010813 PIPE_CONF_CHECK_I(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010814 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +020010815 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010816 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
10817 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterd452c5b2014-07-04 11:27:39 -030010818 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
Damien Lespiau3f4cd192014-11-13 14:55:21 +000010819 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
10820 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
10821 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010822
Ville Syrjälä42571ae2013-09-06 23:29:00 +030010823 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
10824 PIPE_CONF_CHECK_I(pipe_bpp);
10825
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010826 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
Jesse Barnesa9a7e982014-01-20 14:18:04 -080010827 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
Ville Syrjälä5e550652013-09-06 23:29:07 +030010828
Daniel Vetter66e985c2013-06-05 13:34:20 +020010829#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +020010830#undef PIPE_CONF_CHECK_I
Vandana Kannanb95af8b2014-08-05 07:51:23 -070010831#undef PIPE_CONF_CHECK_I_ALT
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010832#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +030010833#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +020010834#undef PIPE_CONF_QUIRK
Daniel Vetter627eb5a2013-04-29 19:33:42 +020010835
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010836 return true;
10837}
10838
Damien Lespiau08db6652014-11-04 17:06:52 +000010839static void check_wm_state(struct drm_device *dev)
10840{
10841 struct drm_i915_private *dev_priv = dev->dev_private;
10842 struct skl_ddb_allocation hw_ddb, *sw_ddb;
10843 struct intel_crtc *intel_crtc;
10844 int plane;
10845
10846 if (INTEL_INFO(dev)->gen < 9)
10847 return;
10848
10849 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
10850 sw_ddb = &dev_priv->wm.skl_hw.ddb;
10851
10852 for_each_intel_crtc(dev, intel_crtc) {
10853 struct skl_ddb_entry *hw_entry, *sw_entry;
10854 const enum pipe pipe = intel_crtc->pipe;
10855
10856 if (!intel_crtc->active)
10857 continue;
10858
10859 /* planes */
Damien Lespiaudd740782015-02-28 14:54:08 +000010860 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau08db6652014-11-04 17:06:52 +000010861 hw_entry = &hw_ddb.plane[pipe][plane];
10862 sw_entry = &sw_ddb->plane[pipe][plane];
10863
10864 if (skl_ddb_entry_equal(hw_entry, sw_entry))
10865 continue;
10866
10867 DRM_ERROR("mismatch in DDB state pipe %c plane %d "
10868 "(expected (%u,%u), found (%u,%u))\n",
10869 pipe_name(pipe), plane + 1,
10870 sw_entry->start, sw_entry->end,
10871 hw_entry->start, hw_entry->end);
10872 }
10873
10874 /* cursor */
10875 hw_entry = &hw_ddb.cursor[pipe];
10876 sw_entry = &sw_ddb->cursor[pipe];
10877
10878 if (skl_ddb_entry_equal(hw_entry, sw_entry))
10879 continue;
10880
10881 DRM_ERROR("mismatch in DDB state pipe %c cursor "
10882 "(expected (%u,%u), found (%u,%u))\n",
10883 pipe_name(pipe),
10884 sw_entry->start, sw_entry->end,
10885 hw_entry->start, hw_entry->end);
10886 }
10887}
10888
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010889static void
10890check_connector_state(struct drm_device *dev)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010891{
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010892 struct intel_connector *connector;
10893
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020010894 for_each_intel_connector(dev, connector) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010895 /* This also checks the encoder/connector hw state with the
10896 * ->get_hw_state callbacks. */
10897 intel_connector_check_state(connector);
10898
Rob Clarke2c719b2014-12-15 13:56:32 -050010899 I915_STATE_WARN(&connector->new_encoder->base != connector->base.encoder,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010900 "connector's staged encoder doesn't match current encoder\n");
10901 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010902}
10903
10904static void
10905check_encoder_state(struct drm_device *dev)
10906{
10907 struct intel_encoder *encoder;
10908 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010909
Damien Lespiaub2784e12014-08-05 11:29:37 +010010910 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010911 bool enabled = false;
10912 bool active = false;
10913 enum pipe pipe, tracked_pipe;
10914
10915 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
10916 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030010917 encoder->base.name);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010918
Rob Clarke2c719b2014-12-15 13:56:32 -050010919 I915_STATE_WARN(&encoder->new_crtc->base != encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010920 "encoder's stage crtc doesn't match current crtc\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050010921 I915_STATE_WARN(encoder->connectors_active && !encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010922 "encoder's active_connectors set, but no crtc\n");
10923
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020010924 for_each_intel_connector(dev, connector) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010925 if (connector->base.encoder != &encoder->base)
10926 continue;
10927 enabled = true;
10928 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
10929 active = true;
10930 }
Dave Airlie0e32b392014-05-02 14:02:48 +100010931 /*
10932 * for MST connectors if we unplug the connector is gone
10933 * away but the encoder is still connected to a crtc
10934 * until a modeset happens in response to the hotplug.
10935 */
10936 if (!enabled && encoder->base.encoder_type == DRM_MODE_ENCODER_DPMST)
10937 continue;
10938
Rob Clarke2c719b2014-12-15 13:56:32 -050010939 I915_STATE_WARN(!!encoder->base.crtc != enabled,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010940 "encoder's enabled state mismatch "
10941 "(expected %i, found %i)\n",
10942 !!encoder->base.crtc, enabled);
Rob Clarke2c719b2014-12-15 13:56:32 -050010943 I915_STATE_WARN(active && !encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010944 "active encoder with no crtc\n");
10945
Rob Clarke2c719b2014-12-15 13:56:32 -050010946 I915_STATE_WARN(encoder->connectors_active != active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010947 "encoder's computed active state doesn't match tracked active state "
10948 "(expected %i, found %i)\n", active, encoder->connectors_active);
10949
10950 active = encoder->get_hw_state(encoder, &pipe);
Rob Clarke2c719b2014-12-15 13:56:32 -050010951 I915_STATE_WARN(active != encoder->connectors_active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010952 "encoder's hw state doesn't match sw tracking "
10953 "(expected %i, found %i)\n",
10954 encoder->connectors_active, active);
10955
10956 if (!encoder->base.crtc)
10957 continue;
10958
10959 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
Rob Clarke2c719b2014-12-15 13:56:32 -050010960 I915_STATE_WARN(active && pipe != tracked_pipe,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010961 "active encoder's pipe doesn't match"
10962 "(expected %i, found %i)\n",
10963 tracked_pipe, pipe);
10964
10965 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010966}
10967
10968static void
10969check_crtc_state(struct drm_device *dev)
10970{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010971 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010972 struct intel_crtc *crtc;
10973 struct intel_encoder *encoder;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010974 struct intel_crtc_state pipe_config;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010975
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010976 for_each_intel_crtc(dev, crtc) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010977 bool enabled = false;
10978 bool active = false;
10979
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010980 memset(&pipe_config, 0, sizeof(pipe_config));
10981
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010982 DRM_DEBUG_KMS("[CRTC:%d]\n",
10983 crtc->base.base.id);
10984
Matt Roper83d65732015-02-25 13:12:16 -080010985 I915_STATE_WARN(crtc->active && !crtc->base.state->enable,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010986 "active crtc, but not enabled in sw tracking\n");
10987
Damien Lespiaub2784e12014-08-05 11:29:37 +010010988 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010989 if (encoder->base.crtc != &crtc->base)
10990 continue;
10991 enabled = true;
10992 if (encoder->connectors_active)
10993 active = true;
10994 }
Daniel Vetter6c49f242013-06-06 12:45:25 +020010995
Rob Clarke2c719b2014-12-15 13:56:32 -050010996 I915_STATE_WARN(active != crtc->active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010997 "crtc's computed active state doesn't match tracked active state "
10998 "(expected %i, found %i)\n", active, crtc->active);
Matt Roper83d65732015-02-25 13:12:16 -080010999 I915_STATE_WARN(enabled != crtc->base.state->enable,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011000 "crtc's computed enabled state doesn't match tracked enabled state "
Matt Roper83d65732015-02-25 13:12:16 -080011001 "(expected %i, found %i)\n", enabled,
11002 crtc->base.state->enable);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011003
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011004 active = dev_priv->display.get_pipe_config(crtc,
11005 &pipe_config);
Daniel Vetterd62cf622013-05-29 10:41:29 +020011006
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030011007 /* hw state is inconsistent with the pipe quirk */
11008 if ((crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
11009 (crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Daniel Vetterd62cf622013-05-29 10:41:29 +020011010 active = crtc->active;
11011
Damien Lespiaub2784e12014-08-05 11:29:37 +010011012 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä3eaba512013-08-05 17:57:48 +030011013 enum pipe pipe;
Daniel Vetter6c49f242013-06-06 12:45:25 +020011014 if (encoder->base.crtc != &crtc->base)
11015 continue;
Daniel Vetter1d37b682013-11-18 09:00:59 +010011016 if (encoder->get_hw_state(encoder, &pipe))
Daniel Vetter6c49f242013-06-06 12:45:25 +020011017 encoder->get_config(encoder, &pipe_config);
11018 }
11019
Rob Clarke2c719b2014-12-15 13:56:32 -050011020 I915_STATE_WARN(crtc->active != active,
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011021 "crtc active state doesn't match with hw state "
11022 "(expected %i, found %i)\n", crtc->active, active);
11023
Daniel Vetterc0b03412013-05-28 12:05:54 +020011024 if (active &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011025 !intel_pipe_config_compare(dev, crtc->config, &pipe_config)) {
Rob Clarke2c719b2014-12-15 13:56:32 -050011026 I915_STATE_WARN(1, "pipe state doesn't match!\n");
Daniel Vetterc0b03412013-05-28 12:05:54 +020011027 intel_dump_pipe_config(crtc, &pipe_config,
11028 "[hw state]");
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011029 intel_dump_pipe_config(crtc, crtc->config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020011030 "[sw state]");
11031 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011032 }
11033}
11034
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020011035static void
11036check_shared_dpll_state(struct drm_device *dev)
11037{
Jani Nikulafbee40d2014-03-31 14:27:18 +030011038 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020011039 struct intel_crtc *crtc;
11040 struct intel_dpll_hw_state dpll_hw_state;
11041 int i;
Daniel Vetter53589012013-06-05 13:34:16 +020011042
11043 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
11044 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
11045 int enabled_crtcs = 0, active_crtcs = 0;
11046 bool active;
11047
11048 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
11049
11050 DRM_DEBUG_KMS("%s\n", pll->name);
11051
11052 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
11053
Rob Clarke2c719b2014-12-15 13:56:32 -050011054 I915_STATE_WARN(pll->active > hweight32(pll->config.crtc_mask),
Daniel Vetter53589012013-06-05 13:34:16 +020011055 "more active pll users than references: %i vs %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011056 pll->active, hweight32(pll->config.crtc_mask));
Rob Clarke2c719b2014-12-15 13:56:32 -050011057 I915_STATE_WARN(pll->active && !pll->on,
Daniel Vetter53589012013-06-05 13:34:16 +020011058 "pll in active use but not on in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050011059 I915_STATE_WARN(pll->on && !pll->active,
Daniel Vetter35c95372013-07-17 06:55:04 +020011060 "pll in on but not on in use in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050011061 I915_STATE_WARN(pll->on != active,
Daniel Vetter53589012013-06-05 13:34:16 +020011062 "pll on state mismatch (expected %i, found %i)\n",
11063 pll->on, active);
11064
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011065 for_each_intel_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080011066 if (crtc->base.state->enable && intel_crtc_to_shared_dpll(crtc) == pll)
Daniel Vetter53589012013-06-05 13:34:16 +020011067 enabled_crtcs++;
11068 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
11069 active_crtcs++;
11070 }
Rob Clarke2c719b2014-12-15 13:56:32 -050011071 I915_STATE_WARN(pll->active != active_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020011072 "pll active crtcs mismatch (expected %i, found %i)\n",
11073 pll->active, active_crtcs);
Rob Clarke2c719b2014-12-15 13:56:32 -050011074 I915_STATE_WARN(hweight32(pll->config.crtc_mask) != enabled_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020011075 "pll enabled crtcs mismatch (expected %i, found %i)\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011076 hweight32(pll->config.crtc_mask), enabled_crtcs);
Daniel Vetter66e985c2013-06-05 13:34:20 +020011077
Rob Clarke2c719b2014-12-15 13:56:32 -050011078 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state, &dpll_hw_state,
Daniel Vetter66e985c2013-06-05 13:34:20 +020011079 sizeof(dpll_hw_state)),
11080 "pll hw state mismatch\n");
Daniel Vetter53589012013-06-05 13:34:16 +020011081 }
Daniel Vettera6778b32012-07-02 09:56:42 +020011082}
11083
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020011084void
11085intel_modeset_check_state(struct drm_device *dev)
11086{
Damien Lespiau08db6652014-11-04 17:06:52 +000011087 check_wm_state(dev);
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020011088 check_connector_state(dev);
11089 check_encoder_state(dev);
11090 check_crtc_state(dev);
11091 check_shared_dpll_state(dev);
11092}
11093
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011094void ironlake_check_encoder_dotclock(const struct intel_crtc_state *pipe_config,
Ville Syrjälä18442d02013-09-13 16:00:08 +030011095 int dotclock)
11096{
11097 /*
11098 * FDI already provided one idea for the dotclock.
11099 * Yell if the encoder disagrees.
11100 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011101 WARN(!intel_fuzzy_clock_check(pipe_config->base.adjusted_mode.crtc_clock, dotclock),
Ville Syrjälä18442d02013-09-13 16:00:08 +030011102 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011103 pipe_config->base.adjusted_mode.crtc_clock, dotclock);
Ville Syrjälä18442d02013-09-13 16:00:08 +030011104}
11105
Ville Syrjälä80715b22014-05-15 20:23:23 +030011106static void update_scanline_offset(struct intel_crtc *crtc)
11107{
11108 struct drm_device *dev = crtc->base.dev;
11109
11110 /*
11111 * The scanline counter increments at the leading edge of hsync.
11112 *
11113 * On most platforms it starts counting from vtotal-1 on the
11114 * first active line. That means the scanline counter value is
11115 * always one less than what we would expect. Ie. just after
11116 * start of vblank, which also occurs at start of hsync (on the
11117 * last active line), the scanline counter will read vblank_start-1.
11118 *
11119 * On gen2 the scanline counter starts counting from 1 instead
11120 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
11121 * to keep the value positive), instead of adding one.
11122 *
11123 * On HSW+ the behaviour of the scanline counter depends on the output
11124 * type. For DP ports it behaves like most other platforms, but on HDMI
11125 * there's an extra 1 line difference. So we need to add two instead of
11126 * one to the value.
11127 */
11128 if (IS_GEN2(dev)) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011129 const struct drm_display_mode *mode = &crtc->config->base.adjusted_mode;
Ville Syrjälä80715b22014-05-15 20:23:23 +030011130 int vtotal;
11131
11132 vtotal = mode->crtc_vtotal;
11133 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
11134 vtotal /= 2;
11135
11136 crtc->scanline_offset = vtotal - 1;
11137 } else if (HAS_DDI(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +030011138 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) {
Ville Syrjälä80715b22014-05-15 20:23:23 +030011139 crtc->scanline_offset = 2;
11140 } else
11141 crtc->scanline_offset = 1;
11142}
11143
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011144static struct intel_crtc_state *
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011145intel_modeset_compute_config(struct drm_crtc *crtc,
11146 struct drm_display_mode *mode,
11147 struct drm_framebuffer *fb,
11148 unsigned *modeset_pipes,
11149 unsigned *prepare_pipes,
11150 unsigned *disable_pipes)
11151{
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011152 struct intel_crtc_state *pipe_config = NULL;
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011153
11154 intel_modeset_affected_pipes(crtc, modeset_pipes,
11155 prepare_pipes, disable_pipes);
11156
11157 if ((*modeset_pipes) == 0)
11158 goto out;
11159
11160 /*
11161 * Note this needs changes when we start tracking multiple modes
11162 * and crtcs. At that point we'll need to compute the whole config
11163 * (i.e. one pipe_config for each crtc) rather than just the one
11164 * for this crtc.
11165 */
11166 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
11167 if (IS_ERR(pipe_config)) {
11168 goto out;
11169 }
11170 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
11171 "[modeset]");
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011172
11173out:
11174 return pipe_config;
11175}
11176
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020011177static int __intel_set_mode_setup_plls(struct drm_device *dev,
11178 unsigned modeset_pipes,
11179 unsigned disable_pipes)
11180{
11181 struct drm_i915_private *dev_priv = to_i915(dev);
11182 unsigned clear_pipes = modeset_pipes | disable_pipes;
11183 struct intel_crtc *intel_crtc;
11184 int ret = 0;
11185
11186 if (!dev_priv->display.crtc_compute_clock)
11187 return 0;
11188
11189 ret = intel_shared_dpll_start_config(dev_priv, clear_pipes);
11190 if (ret)
11191 goto done;
11192
11193 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
11194 struct intel_crtc_state *state = intel_crtc->new_config;
11195 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
11196 state);
11197 if (ret) {
11198 intel_shared_dpll_abort_config(dev_priv);
11199 goto done;
11200 }
11201 }
11202
11203done:
11204 return ret;
11205}
11206
Daniel Vetterf30da182013-04-11 20:22:50 +020011207static int __intel_set_mode(struct drm_crtc *crtc,
11208 struct drm_display_mode *mode,
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011209 int x, int y, struct drm_framebuffer *fb,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011210 struct intel_crtc_state *pipe_config,
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011211 unsigned modeset_pipes,
11212 unsigned prepare_pipes,
11213 unsigned disable_pipes)
Daniel Vettera6778b32012-07-02 09:56:42 +020011214{
11215 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +030011216 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030011217 struct drm_display_mode *saved_mode;
Daniel Vetter25c5b262012-07-08 22:08:04 +020011218 struct intel_crtc *intel_crtc;
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011219 int ret = 0;
Daniel Vettera6778b32012-07-02 09:56:42 +020011220
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030011221 saved_mode = kmalloc(sizeof(*saved_mode), GFP_KERNEL);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011222 if (!saved_mode)
11223 return -ENOMEM;
Daniel Vettera6778b32012-07-02 09:56:42 +020011224
Tim Gardner3ac18232012-12-07 07:54:26 -070011225 *saved_mode = crtc->mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020011226
Ville Syrjäläb9950a12014-11-21 21:00:36 +020011227 if (modeset_pipes)
11228 to_intel_crtc(crtc)->new_config = pipe_config;
11229
Jesse Barnes30a970c2013-11-04 13:48:12 -080011230 /*
11231 * See if the config requires any additional preparation, e.g.
11232 * to adjust global state with pipes off. We need to do this
11233 * here so we can get the modeset_pipe updated config for the new
11234 * mode set on this crtc. For other crtcs we need to use the
11235 * adjusted_mode bits in the crtc directly.
11236 */
Ville Syrjäläc164f832013-11-05 22:34:12 +020011237 if (IS_VALLEYVIEW(dev)) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +020011238 valleyview_modeset_global_pipes(dev, &prepare_pipes);
Jesse Barnes30a970c2013-11-04 13:48:12 -080011239
Ville Syrjäläc164f832013-11-05 22:34:12 +020011240 /* may have added more to prepare_pipes than we should */
11241 prepare_pipes &= ~disable_pipes;
11242 }
11243
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020011244 ret = __intel_set_mode_setup_plls(dev, modeset_pipes, disable_pipes);
11245 if (ret)
11246 goto done;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +020011247
Daniel Vetter460da9162013-03-27 00:44:51 +010011248 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
11249 intel_crtc_disable(&intel_crtc->base);
11250
Daniel Vetterea9d7582012-07-10 10:42:52 +020011251 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080011252 if (intel_crtc->base.state->enable)
Daniel Vetterea9d7582012-07-10 10:42:52 +020011253 dev_priv->display.crtc_disable(&intel_crtc->base);
11254 }
Daniel Vettera6778b32012-07-02 09:56:42 +020011255
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020011256 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
11257 * to set it here already despite that we pass it down the callchain.
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011258 *
11259 * Note we'll need to fix this up when we start tracking multiple
11260 * pipes; here we assume a single modeset_pipe and only track the
11261 * single crtc and mode.
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020011262 */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011263 if (modeset_pipes) {
Daniel Vetter25c5b262012-07-08 22:08:04 +020011264 crtc->mode = *mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011265 /* mode_set/enable/disable functions rely on a correct pipe
11266 * config. */
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020011267 intel_crtc_set_state(to_intel_crtc(crtc), pipe_config);
Ville Syrjäläc326c0a2013-10-28 12:53:41 +020011268
11269 /*
11270 * Calculate and store various constants which
11271 * are later needed by vblank and swap-completion
11272 * timestamping. They are derived from true hwmode.
11273 */
11274 drm_calc_timestamping_constants(crtc,
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011275 &pipe_config->base.adjusted_mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011276 }
Daniel Vetter7758a112012-07-08 19:40:39 +020011277
Daniel Vetterea9d7582012-07-10 10:42:52 +020011278 /* Only after disabling all output pipelines that will be changed can we
11279 * update the the output configuration. */
11280 intel_modeset_update_state(dev, prepare_pipes);
11281
Ville Syrjälä50f6e502014-11-06 14:49:12 +020011282 modeset_update_crtc_power_domains(dev);
Daniel Vetter47fab732012-10-26 10:58:18 +020011283
Daniel Vettera6778b32012-07-02 09:56:42 +020011284 /* Set up the DPLL and any encoders state that needs to adjust or depend
11285 * on the DPLL.
11286 */
Daniel Vetter25c5b262012-07-08 22:08:04 +020011287 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
Gustavo Padovan455a6802014-12-01 15:40:11 -080011288 struct drm_plane *primary = intel_crtc->base.primary;
11289 int vdisplay, hdisplay;
Daniel Vetter4c107942014-04-24 23:55:05 +020011290
Gustavo Padovan455a6802014-12-01 15:40:11 -080011291 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
11292 ret = primary->funcs->update_plane(primary, &intel_crtc->base,
11293 fb, 0, 0,
11294 hdisplay, vdisplay,
11295 x << 16, y << 16,
11296 hdisplay << 16, vdisplay << 16);
Daniel Vettera6778b32012-07-02 09:56:42 +020011297 }
11298
11299 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Ville Syrjälä80715b22014-05-15 20:23:23 +030011300 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
11301 update_scanline_offset(intel_crtc);
11302
Daniel Vetter25c5b262012-07-08 22:08:04 +020011303 dev_priv->display.crtc_enable(&intel_crtc->base);
Ville Syrjälä80715b22014-05-15 20:23:23 +030011304 }
Daniel Vettera6778b32012-07-02 09:56:42 +020011305
Daniel Vettera6778b32012-07-02 09:56:42 +020011306 /* FIXME: add subpixel order */
11307done:
Matt Roper83d65732015-02-25 13:12:16 -080011308 if (ret && crtc->state->enable)
Tim Gardner3ac18232012-12-07 07:54:26 -070011309 crtc->mode = *saved_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020011310
Tim Gardner3ac18232012-12-07 07:54:26 -070011311 kfree(saved_mode);
Daniel Vettera6778b32012-07-02 09:56:42 +020011312 return ret;
11313}
11314
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011315static int intel_set_mode_pipes(struct drm_crtc *crtc,
11316 struct drm_display_mode *mode,
11317 int x, int y, struct drm_framebuffer *fb,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011318 struct intel_crtc_state *pipe_config,
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011319 unsigned modeset_pipes,
11320 unsigned prepare_pipes,
11321 unsigned disable_pipes)
11322{
11323 int ret;
11324
11325 ret = __intel_set_mode(crtc, mode, x, y, fb, pipe_config, modeset_pipes,
11326 prepare_pipes, disable_pipes);
11327
11328 if (ret == 0)
11329 intel_modeset_check_state(crtc->dev);
11330
11331 return ret;
11332}
11333
Damien Lespiaue7457a92013-08-08 22:28:59 +010011334static int intel_set_mode(struct drm_crtc *crtc,
11335 struct drm_display_mode *mode,
11336 int x, int y, struct drm_framebuffer *fb)
Daniel Vetterf30da182013-04-11 20:22:50 +020011337{
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011338 struct intel_crtc_state *pipe_config;
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011339 unsigned modeset_pipes, prepare_pipes, disable_pipes;
Daniel Vetterf30da182013-04-11 20:22:50 +020011340
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011341 pipe_config = intel_modeset_compute_config(crtc, mode, fb,
11342 &modeset_pipes,
11343 &prepare_pipes,
11344 &disable_pipes);
Daniel Vetterf30da182013-04-11 20:22:50 +020011345
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011346 if (IS_ERR(pipe_config))
11347 return PTR_ERR(pipe_config);
Daniel Vetterf30da182013-04-11 20:22:50 +020011348
Jesse Barnes7f27126e2014-11-05 14:26:06 -080011349 return intel_set_mode_pipes(crtc, mode, x, y, fb, pipe_config,
11350 modeset_pipes, prepare_pipes,
11351 disable_pipes);
Daniel Vetterf30da182013-04-11 20:22:50 +020011352}
11353
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011354void intel_crtc_restore_mode(struct drm_crtc *crtc)
11355{
Matt Roperf4510a22014-04-01 15:22:40 -070011356 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->primary->fb);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000011357}
11358
Daniel Vetter25c5b262012-07-08 22:08:04 +020011359#undef for_each_intel_crtc_masked
11360
Daniel Vetterd9e55602012-07-04 22:16:09 +020011361static void intel_set_config_free(struct intel_set_config *config)
11362{
11363 if (!config)
11364 return;
11365
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011366 kfree(config->save_connector_encoders);
11367 kfree(config->save_encoder_crtcs);
Ville Syrjälä76688512014-01-10 11:28:06 +020011368 kfree(config->save_crtc_enabled);
Daniel Vetterd9e55602012-07-04 22:16:09 +020011369 kfree(config);
11370}
11371
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011372static int intel_set_config_save_state(struct drm_device *dev,
11373 struct intel_set_config *config)
11374{
Ville Syrjälä76688512014-01-10 11:28:06 +020011375 struct drm_crtc *crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011376 struct drm_encoder *encoder;
11377 struct drm_connector *connector;
11378 int count;
11379
Ville Syrjälä76688512014-01-10 11:28:06 +020011380 config->save_crtc_enabled =
11381 kcalloc(dev->mode_config.num_crtc,
11382 sizeof(bool), GFP_KERNEL);
11383 if (!config->save_crtc_enabled)
11384 return -ENOMEM;
11385
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011386 config->save_encoder_crtcs =
11387 kcalloc(dev->mode_config.num_encoder,
11388 sizeof(struct drm_crtc *), GFP_KERNEL);
11389 if (!config->save_encoder_crtcs)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011390 return -ENOMEM;
11391
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011392 config->save_connector_encoders =
11393 kcalloc(dev->mode_config.num_connector,
11394 sizeof(struct drm_encoder *), GFP_KERNEL);
11395 if (!config->save_connector_encoders)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011396 return -ENOMEM;
11397
11398 /* Copy data. Note that driver private data is not affected.
11399 * Should anything bad happen only the expected state is
11400 * restored, not the drivers personal bookkeeping.
11401 */
11402 count = 0;
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010011403 for_each_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080011404 config->save_crtc_enabled[count++] = crtc->state->enable;
Ville Syrjälä76688512014-01-10 11:28:06 +020011405 }
11406
11407 count = 0;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011408 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011409 config->save_encoder_crtcs[count++] = encoder->crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011410 }
11411
11412 count = 0;
11413 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020011414 config->save_connector_encoders[count++] = connector->encoder;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011415 }
11416
11417 return 0;
11418}
11419
11420static void intel_set_config_restore_state(struct drm_device *dev,
11421 struct intel_set_config *config)
11422{
Ville Syrjälä76688512014-01-10 11:28:06 +020011423 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020011424 struct intel_encoder *encoder;
11425 struct intel_connector *connector;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011426 int count;
11427
11428 count = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011429 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011430 crtc->new_enabled = config->save_crtc_enabled[count++];
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011431
11432 if (crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011433 crtc->new_config = crtc->config;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011434 else
11435 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020011436 }
11437
11438 count = 0;
Damien Lespiaub2784e12014-08-05 11:29:37 +010011439 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011440 encoder->new_crtc =
11441 to_intel_crtc(config->save_encoder_crtcs[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011442 }
11443
11444 count = 0;
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011445 for_each_intel_connector(dev, connector) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011446 connector->new_encoder =
11447 to_intel_encoder(config->save_connector_encoders[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020011448 }
11449}
11450
Imre Deake3de42b2013-05-03 19:44:07 +020011451static bool
Chris Wilson2e57f472013-07-17 12:14:40 +010011452is_crtc_connector_off(struct drm_mode_set *set)
Imre Deake3de42b2013-05-03 19:44:07 +020011453{
11454 int i;
11455
Chris Wilson2e57f472013-07-17 12:14:40 +010011456 if (set->num_connectors == 0)
11457 return false;
11458
11459 if (WARN_ON(set->connectors == NULL))
11460 return false;
11461
11462 for (i = 0; i < set->num_connectors; i++)
11463 if (set->connectors[i]->encoder &&
11464 set->connectors[i]->encoder->crtc == set->crtc &&
11465 set->connectors[i]->dpms != DRM_MODE_DPMS_ON)
Imre Deake3de42b2013-05-03 19:44:07 +020011466 return true;
11467
11468 return false;
11469}
11470
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011471static void
11472intel_set_config_compute_mode_changes(struct drm_mode_set *set,
11473 struct intel_set_config *config)
11474{
11475
11476 /* We should be able to check here if the fb has the same properties
11477 * and then just flip_or_move it */
Chris Wilson2e57f472013-07-17 12:14:40 +010011478 if (is_crtc_connector_off(set)) {
11479 config->mode_changed = true;
Matt Roperf4510a22014-04-01 15:22:40 -070011480 } else if (set->crtc->primary->fb != set->fb) {
Matt Roper3b150f02014-05-29 08:06:53 -070011481 /*
11482 * If we have no fb, we can only flip as long as the crtc is
11483 * active, otherwise we need a full mode set. The crtc may
11484 * be active if we've only disabled the primary plane, or
11485 * in fastboot situations.
11486 */
Matt Roperf4510a22014-04-01 15:22:40 -070011487 if (set->crtc->primary->fb == NULL) {
Jesse Barnes319d9822013-06-26 01:38:19 +030011488 struct intel_crtc *intel_crtc =
11489 to_intel_crtc(set->crtc);
11490
Matt Roper3b150f02014-05-29 08:06:53 -070011491 if (intel_crtc->active) {
Jesse Barnes319d9822013-06-26 01:38:19 +030011492 DRM_DEBUG_KMS("crtc has no fb, will flip\n");
11493 config->fb_changed = true;
11494 } else {
11495 DRM_DEBUG_KMS("inactive crtc, full mode set\n");
11496 config->mode_changed = true;
11497 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011498 } else if (set->fb == NULL) {
11499 config->mode_changed = true;
Daniel Vetter72f49012013-03-28 16:01:35 +010011500 } else if (set->fb->pixel_format !=
Matt Roperf4510a22014-04-01 15:22:40 -070011501 set->crtc->primary->fb->pixel_format) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011502 config->mode_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020011503 } else {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011504 config->fb_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020011505 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011506 }
11507
Daniel Vetter835c5872012-07-10 18:11:08 +020011508 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011509 config->fb_changed = true;
11510
11511 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
11512 DRM_DEBUG_KMS("modes are different, full mode set\n");
11513 drm_mode_debug_printmodeline(&set->crtc->mode);
11514 drm_mode_debug_printmodeline(set->mode);
11515 config->mode_changed = true;
11516 }
Chris Wilsona1d95702013-08-13 18:48:47 +010011517
11518 DRM_DEBUG_KMS("computed changes for [CRTC:%d], mode_changed=%d, fb_changed=%d\n",
11519 set->crtc->base.id, config->mode_changed, config->fb_changed);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011520}
11521
Daniel Vetter2e431052012-07-04 22:42:15 +020011522static int
Daniel Vetter9a935852012-07-05 22:34:27 +020011523intel_modeset_stage_output_state(struct drm_device *dev,
11524 struct drm_mode_set *set,
11525 struct intel_set_config *config)
Daniel Vetter50f56112012-07-02 09:35:43 +020011526{
Daniel Vetter9a935852012-07-05 22:34:27 +020011527 struct intel_connector *connector;
11528 struct intel_encoder *encoder;
Ville Syrjälä76688512014-01-10 11:28:06 +020011529 struct intel_crtc *crtc;
Paulo Zanonif3f08572013-08-12 14:56:53 -030011530 int ro;
Daniel Vetter50f56112012-07-02 09:35:43 +020011531
Damien Lespiau9abdda72013-02-13 13:29:23 +000011532 /* The upper layers ensure that we either disable a crtc or have a list
Daniel Vetter9a935852012-07-05 22:34:27 +020011533 * of connectors. For paranoia, double-check this. */
11534 WARN_ON(!set->fb && (set->num_connectors != 0));
11535 WARN_ON(set->fb && (set->num_connectors == 0));
11536
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011537 for_each_intel_connector(dev, connector) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011538 /* Otherwise traverse passed in connector list and get encoders
11539 * for them. */
Daniel Vetter50f56112012-07-02 09:35:43 +020011540 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011541 if (set->connectors[ro] == &connector->base) {
Dave Airlie0e32b392014-05-02 14:02:48 +100011542 connector->new_encoder = intel_find_encoder(connector, to_intel_crtc(set->crtc)->pipe);
Daniel Vetter50f56112012-07-02 09:35:43 +020011543 break;
11544 }
11545 }
11546
Daniel Vetter9a935852012-07-05 22:34:27 +020011547 /* If we disable the crtc, disable all its connectors. Also, if
11548 * the connector is on the changing crtc but not on the new
11549 * connector list, disable it. */
11550 if ((!set->fb || ro == set->num_connectors) &&
11551 connector->base.encoder &&
11552 connector->base.encoder->crtc == set->crtc) {
11553 connector->new_encoder = NULL;
11554
11555 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
11556 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030011557 connector->base.name);
Daniel Vetter9a935852012-07-05 22:34:27 +020011558 }
11559
11560
11561 if (&connector->new_encoder->base != connector->base.encoder) {
Ander Conselvan de Oliveira10634182015-03-03 15:21:57 +020011562 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] encoder changed, full mode switch\n",
11563 connector->base.base.id,
11564 connector->base.name);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011565 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020011566 }
Daniel Vetter9a935852012-07-05 22:34:27 +020011567 }
11568 /* connector->new_encoder is now updated for all connectors. */
11569
11570 /* Update crtc of enabled connectors. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011571 for_each_intel_connector(dev, connector) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011572 struct drm_crtc *new_crtc;
11573
Daniel Vetter9a935852012-07-05 22:34:27 +020011574 if (!connector->new_encoder)
Daniel Vetter50f56112012-07-02 09:35:43 +020011575 continue;
11576
Daniel Vetter9a935852012-07-05 22:34:27 +020011577 new_crtc = connector->new_encoder->base.crtc;
Daniel Vetter50f56112012-07-02 09:35:43 +020011578
11579 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011580 if (set->connectors[ro] == &connector->base)
Daniel Vetter50f56112012-07-02 09:35:43 +020011581 new_crtc = set->crtc;
11582 }
11583
11584 /* Make sure the new CRTC will work with the encoder */
Thierry Reding14509912014-01-13 12:00:22 +010011585 if (!drm_encoder_crtc_ok(&connector->new_encoder->base,
11586 new_crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011587 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +020011588 }
Dave Airlie0e32b392014-05-02 14:02:48 +100011589 connector->new_encoder->new_crtc = to_intel_crtc(new_crtc);
Daniel Vetter9a935852012-07-05 22:34:27 +020011590
11591 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
11592 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030011593 connector->base.name,
Daniel Vetter9a935852012-07-05 22:34:27 +020011594 new_crtc->base.id);
11595 }
11596
11597 /* Check for any encoders that needs to be disabled. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010011598 for_each_intel_encoder(dev, encoder) {
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011599 int num_connectors = 0;
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011600 for_each_intel_connector(dev, connector) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011601 if (connector->new_encoder == encoder) {
11602 WARN_ON(!connector->new_encoder->new_crtc);
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011603 num_connectors++;
Daniel Vetter9a935852012-07-05 22:34:27 +020011604 }
11605 }
Paulo Zanoni5a65f352014-01-07 14:55:53 -020011606
11607 if (num_connectors == 0)
11608 encoder->new_crtc = NULL;
11609 else if (num_connectors > 1)
11610 return -EINVAL;
11611
Daniel Vetter9a935852012-07-05 22:34:27 +020011612 /* Only now check for crtc changes so we don't miss encoders
11613 * that will be disabled. */
11614 if (&encoder->new_crtc->base != encoder->base.crtc) {
Ander Conselvan de Oliveira10634182015-03-03 15:21:57 +020011615 DRM_DEBUG_KMS("[ENCODER:%d:%s] crtc changed, full mode switch\n",
11616 encoder->base.base.id,
11617 encoder->base.name);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011618 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020011619 }
11620 }
Daniel Vetter9a935852012-07-05 22:34:27 +020011621 /* Now we've also updated encoder->new_crtc for all encoders. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011622 for_each_intel_connector(dev, connector) {
Dave Airlie0e32b392014-05-02 14:02:48 +100011623 if (connector->new_encoder)
11624 if (connector->new_encoder != connector->encoder)
11625 connector->encoder = connector->new_encoder;
11626 }
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011627 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011628 crtc->new_enabled = false;
11629
Damien Lespiaub2784e12014-08-05 11:29:37 +010011630 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä76688512014-01-10 11:28:06 +020011631 if (encoder->new_crtc == crtc) {
11632 crtc->new_enabled = true;
11633 break;
11634 }
11635 }
11636
Matt Roper83d65732015-02-25 13:12:16 -080011637 if (crtc->new_enabled != crtc->base.state->enable) {
Ander Conselvan de Oliveira10634182015-03-03 15:21:57 +020011638 DRM_DEBUG_KMS("[CRTC:%d] %sabled, full mode switch\n",
11639 crtc->base.base.id,
Ville Syrjälä76688512014-01-10 11:28:06 +020011640 crtc->new_enabled ? "en" : "dis");
11641 config->mode_changed = true;
11642 }
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011643
11644 if (crtc->new_enabled)
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011645 crtc->new_config = crtc->config;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011646 else
11647 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020011648 }
11649
Daniel Vetter2e431052012-07-04 22:42:15 +020011650 return 0;
11651}
11652
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011653static void disable_crtc_nofb(struct intel_crtc *crtc)
11654{
11655 struct drm_device *dev = crtc->base.dev;
11656 struct intel_encoder *encoder;
11657 struct intel_connector *connector;
11658
11659 DRM_DEBUG_KMS("Trying to restore without FB -> disabling pipe %c\n",
11660 pipe_name(crtc->pipe));
11661
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011662 for_each_intel_connector(dev, connector) {
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011663 if (connector->new_encoder &&
11664 connector->new_encoder->new_crtc == crtc)
11665 connector->new_encoder = NULL;
11666 }
11667
Damien Lespiaub2784e12014-08-05 11:29:37 +010011668 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011669 if (encoder->new_crtc == crtc)
11670 encoder->new_crtc = NULL;
11671 }
11672
11673 crtc->new_enabled = false;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020011674 crtc->new_config = NULL;
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011675}
11676
Daniel Vetter2e431052012-07-04 22:42:15 +020011677static int intel_crtc_set_config(struct drm_mode_set *set)
11678{
11679 struct drm_device *dev;
Daniel Vetter2e431052012-07-04 22:42:15 +020011680 struct drm_mode_set save_set;
11681 struct intel_set_config *config;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011682 struct intel_crtc_state *pipe_config;
Jesse Barnes50f52752014-11-07 13:11:00 -080011683 unsigned modeset_pipes, prepare_pipes, disable_pipes;
Daniel Vetter2e431052012-07-04 22:42:15 +020011684 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +020011685
Daniel Vetter8d3e3752012-07-05 16:09:09 +020011686 BUG_ON(!set);
11687 BUG_ON(!set->crtc);
11688 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +020011689
Daniel Vetter7e53f3a2013-01-21 10:52:17 +010011690 /* Enforce sane interface api - has been abused by the fb helper. */
11691 BUG_ON(!set->mode && set->fb);
11692 BUG_ON(set->fb && set->num_connectors == 0);
Daniel Vetter431e50f2012-07-10 17:53:42 +020011693
Daniel Vetter2e431052012-07-04 22:42:15 +020011694 if (set->fb) {
11695 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
11696 set->crtc->base.id, set->fb->base.id,
11697 (int)set->num_connectors, set->x, set->y);
11698 } else {
11699 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +020011700 }
11701
11702 dev = set->crtc->dev;
11703
11704 ret = -ENOMEM;
11705 config = kzalloc(sizeof(*config), GFP_KERNEL);
11706 if (!config)
11707 goto out_config;
11708
11709 ret = intel_set_config_save_state(dev, config);
11710 if (ret)
11711 goto out_config;
11712
11713 save_set.crtc = set->crtc;
11714 save_set.mode = &set->crtc->mode;
11715 save_set.x = set->crtc->x;
11716 save_set.y = set->crtc->y;
Matt Roperf4510a22014-04-01 15:22:40 -070011717 save_set.fb = set->crtc->primary->fb;
Daniel Vetter2e431052012-07-04 22:42:15 +020011718
11719 /* Compute whether we need a full modeset, only an fb base update or no
11720 * change at all. In the future we might also check whether only the
11721 * mode changed, e.g. for LVDS where we only change the panel fitter in
11722 * such cases. */
11723 intel_set_config_compute_mode_changes(set, config);
11724
Daniel Vetter9a935852012-07-05 22:34:27 +020011725 ret = intel_modeset_stage_output_state(dev, set, config);
Daniel Vetter2e431052012-07-04 22:42:15 +020011726 if (ret)
11727 goto fail;
11728
Jesse Barnes50f52752014-11-07 13:11:00 -080011729 pipe_config = intel_modeset_compute_config(set->crtc, set->mode,
11730 set->fb,
11731 &modeset_pipes,
11732 &prepare_pipes,
11733 &disable_pipes);
Jesse Barnes20664592014-11-05 14:26:09 -080011734 if (IS_ERR(pipe_config)) {
Matt Roper6ac04832014-11-17 09:59:28 -080011735 ret = PTR_ERR(pipe_config);
Jesse Barnes50f52752014-11-07 13:11:00 -080011736 goto fail;
Jesse Barnes20664592014-11-05 14:26:09 -080011737 } else if (pipe_config) {
Ville Syrjäläb9950a12014-11-21 21:00:36 +020011738 if (pipe_config->has_audio !=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020011739 to_intel_crtc(set->crtc)->config->has_audio)
Jesse Barnes20664592014-11-05 14:26:09 -080011740 config->mode_changed = true;
11741
Jesse Barnesaf15d2c2014-12-01 09:54:28 -080011742 /*
11743 * Note we have an issue here with infoframes: current code
11744 * only updates them on the full mode set path per hw
11745 * requirements. So here we should be checking for any
11746 * required changes and forcing a mode set.
11747 */
Jesse Barnes20664592014-11-05 14:26:09 -080011748 }
Jesse Barnes50f52752014-11-07 13:11:00 -080011749
11750 /* set_mode will free it in the mode_changed case */
11751 if (!config->mode_changed)
11752 kfree(pipe_config);
11753
Jesse Barnes1f9954d2014-11-05 14:26:10 -080011754 intel_update_pipe_size(to_intel_crtc(set->crtc));
11755
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011756 if (config->mode_changed) {
Jesse Barnes50f52752014-11-07 13:11:00 -080011757 ret = intel_set_mode_pipes(set->crtc, set->mode,
11758 set->x, set->y, set->fb, pipe_config,
11759 modeset_pipes, prepare_pipes,
11760 disable_pipes);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020011761 } else if (config->fb_changed) {
Matt Roper3b150f02014-05-29 08:06:53 -070011762 struct intel_crtc *intel_crtc = to_intel_crtc(set->crtc);
Gustavo Padovan455a6802014-12-01 15:40:11 -080011763 struct drm_plane *primary = set->crtc->primary;
11764 int vdisplay, hdisplay;
Matt Roper3b150f02014-05-29 08:06:53 -070011765
Gustavo Padovan455a6802014-12-01 15:40:11 -080011766 drm_crtc_get_hv_timing(set->mode, &hdisplay, &vdisplay);
11767 ret = primary->funcs->update_plane(primary, set->crtc, set->fb,
11768 0, 0, hdisplay, vdisplay,
11769 set->x << 16, set->y << 16,
11770 hdisplay << 16, vdisplay << 16);
Matt Roper3b150f02014-05-29 08:06:53 -070011771
11772 /*
11773 * We need to make sure the primary plane is re-enabled if it
11774 * has previously been turned off.
11775 */
11776 if (!intel_crtc->primary_enabled && ret == 0) {
11777 WARN_ON(!intel_crtc->active);
Ville Syrjäläfdd508a62014-08-08 21:51:11 +030011778 intel_enable_primary_hw_plane(set->crtc->primary, set->crtc);
Matt Roper3b150f02014-05-29 08:06:53 -070011779 }
11780
Jesse Barnes7ca51a32014-01-07 13:50:49 -080011781 /*
11782 * In the fastboot case this may be our only check of the
11783 * state after boot. It would be better to only do it on
11784 * the first update, but we don't have a nice way of doing that
11785 * (and really, set_config isn't used much for high freq page
11786 * flipping, so increasing its cost here shouldn't be a big
11787 * deal).
11788 */
Jani Nikulad330a952014-01-21 11:24:25 +020011789 if (i915.fastboot && ret == 0)
Jesse Barnes7ca51a32014-01-07 13:50:49 -080011790 intel_modeset_check_state(set->crtc->dev);
Daniel Vetter50f56112012-07-02 09:35:43 +020011791 }
11792
Chris Wilson2d05eae2013-05-03 17:36:25 +010011793 if (ret) {
Daniel Vetterbf67dfe2013-06-25 11:06:52 +020011794 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
11795 set->crtc->base.id, ret);
Daniel Vetter50f56112012-07-02 09:35:43 +020011796fail:
Chris Wilson2d05eae2013-05-03 17:36:25 +010011797 intel_set_config_restore_state(dev, config);
Daniel Vetter50f56112012-07-02 09:35:43 +020011798
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020011799 /*
11800 * HACK: if the pipe was on, but we didn't have a framebuffer,
11801 * force the pipe off to avoid oopsing in the modeset code
11802 * due to fb==NULL. This should only happen during boot since
11803 * we don't yet reconstruct the FB from the hardware state.
11804 */
11805 if (to_intel_crtc(save_set.crtc)->new_enabled && !save_set.fb)
11806 disable_crtc_nofb(to_intel_crtc(save_set.crtc));
11807
Chris Wilson2d05eae2013-05-03 17:36:25 +010011808 /* Try to restore the config */
11809 if (config->mode_changed &&
11810 intel_set_mode(save_set.crtc, save_set.mode,
11811 save_set.x, save_set.y, save_set.fb))
11812 DRM_ERROR("failed to restore config after modeset failure\n");
11813 }
Daniel Vetter50f56112012-07-02 09:35:43 +020011814
Daniel Vetterd9e55602012-07-04 22:16:09 +020011815out_config:
11816 intel_set_config_free(config);
Daniel Vetter50f56112012-07-02 09:35:43 +020011817 return ret;
11818}
11819
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011820static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011821 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +020011822 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011823 .destroy = intel_crtc_destroy,
11824 .page_flip = intel_crtc_page_flip,
Matt Roper13568372015-01-21 16:35:47 -080011825 .atomic_duplicate_state = intel_crtc_duplicate_state,
11826 .atomic_destroy_state = intel_crtc_destroy_state,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011827};
11828
Daniel Vetter53589012013-06-05 13:34:16 +020011829static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
11830 struct intel_shared_dpll *pll,
11831 struct intel_dpll_hw_state *hw_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011832{
Daniel Vetter53589012013-06-05 13:34:16 +020011833 uint32_t val;
11834
Daniel Vetterf458ebb2014-09-30 10:56:39 +020011835 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_PLLS))
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030011836 return false;
11837
Daniel Vetter53589012013-06-05 13:34:16 +020011838 val = I915_READ(PCH_DPLL(pll->id));
Daniel Vetter66e985c2013-06-05 13:34:20 +020011839 hw_state->dpll = val;
11840 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
11841 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
Daniel Vetter53589012013-06-05 13:34:16 +020011842
11843 return val & DPLL_VCO_ENABLE;
11844}
11845
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011846static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
11847 struct intel_shared_dpll *pll)
11848{
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011849 I915_WRITE(PCH_FP0(pll->id), pll->config.hw_state.fp0);
11850 I915_WRITE(PCH_FP1(pll->id), pll->config.hw_state.fp1);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011851}
11852
Daniel Vettere7b903d2013-06-05 13:34:14 +020011853static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
11854 struct intel_shared_dpll *pll)
11855{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011856 /* PCH refclock must be enabled first */
Paulo Zanoni89eff4b2014-01-08 11:12:28 -020011857 ibx_assert_pch_refclk_enabled(dev_priv);
Daniel Vettere7b903d2013-06-05 13:34:14 +020011858
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011859 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011860
11861 /* Wait for the clocks to stabilize. */
11862 POSTING_READ(PCH_DPLL(pll->id));
11863 udelay(150);
11864
11865 /* The pixel multiplier can only be updated once the
11866 * DPLL is enabled and the clocks are stable.
11867 *
11868 * So write it again.
11869 */
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020011870 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011871 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020011872 udelay(200);
11873}
11874
11875static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
11876 struct intel_shared_dpll *pll)
11877{
11878 struct drm_device *dev = dev_priv->dev;
11879 struct intel_crtc *crtc;
Daniel Vettere7b903d2013-06-05 13:34:14 +020011880
11881 /* Make sure no transcoder isn't still depending on us. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011882 for_each_intel_crtc(dev, crtc) {
Daniel Vettere7b903d2013-06-05 13:34:14 +020011883 if (intel_crtc_to_shared_dpll(crtc) == pll)
11884 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
11885 }
11886
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011887 I915_WRITE(PCH_DPLL(pll->id), 0);
11888 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020011889 udelay(200);
11890}
11891
Daniel Vetter46edb022013-06-05 13:34:12 +020011892static char *ibx_pch_dpll_names[] = {
11893 "PCH DPLL A",
11894 "PCH DPLL B",
11895};
11896
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011897static void ibx_pch_dpll_init(struct drm_device *dev)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011898{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011899 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011900 int i;
11901
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011902 dev_priv->num_shared_dpll = 2;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011903
Daniel Vettere72f9fb2013-06-05 13:34:06 +020011904 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
Daniel Vetter46edb022013-06-05 13:34:12 +020011905 dev_priv->shared_dplls[i].id = i;
11906 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020011907 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
Daniel Vettere7b903d2013-06-05 13:34:14 +020011908 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
11909 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
Daniel Vetter53589012013-06-05 13:34:16 +020011910 dev_priv->shared_dplls[i].get_hw_state =
11911 ibx_pch_dpll_get_hw_state;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011912 }
11913}
11914
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011915static void intel_shared_dpll_init(struct drm_device *dev)
11916{
Daniel Vettere7b903d2013-06-05 13:34:14 +020011917 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011918
Daniel Vetter9cd86932014-06-25 22:01:57 +030011919 if (HAS_DDI(dev))
11920 intel_ddi_pll_init(dev);
11921 else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011922 ibx_pch_dpll_init(dev);
11923 else
11924 dev_priv->num_shared_dpll = 0;
11925
11926 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
Daniel Vetter7c74ade2013-06-05 13:34:11 +020011927}
11928
Matt Roper6beb8c232014-12-01 15:40:14 -080011929/**
11930 * intel_prepare_plane_fb - Prepare fb for usage on plane
11931 * @plane: drm plane to prepare for
11932 * @fb: framebuffer to prepare for presentation
11933 *
11934 * Prepares a framebuffer for usage on a display plane. Generally this
11935 * involves pinning the underlying object and updating the frontbuffer tracking
11936 * bits. Some older platforms need special physical address handling for
11937 * cursor planes.
11938 *
11939 * Returns 0 on success, negative error code on failure.
11940 */
11941int
11942intel_prepare_plane_fb(struct drm_plane *plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +000011943 struct drm_framebuffer *fb,
11944 const struct drm_plane_state *new_state)
Matt Roper465c1202014-05-29 08:06:54 -070011945{
11946 struct drm_device *dev = plane->dev;
Matt Roper6beb8c232014-12-01 15:40:14 -080011947 struct intel_plane *intel_plane = to_intel_plane(plane);
11948 enum pipe pipe = intel_plane->pipe;
11949 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
11950 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->fb);
11951 unsigned frontbuffer_bits = 0;
11952 int ret = 0;
Matt Roper465c1202014-05-29 08:06:54 -070011953
Matt Roperea2c67b2014-12-23 10:41:52 -080011954 if (!obj)
Matt Roper465c1202014-05-29 08:06:54 -070011955 return 0;
11956
Matt Roper6beb8c232014-12-01 15:40:14 -080011957 switch (plane->type) {
11958 case DRM_PLANE_TYPE_PRIMARY:
11959 frontbuffer_bits = INTEL_FRONTBUFFER_PRIMARY(pipe);
11960 break;
11961 case DRM_PLANE_TYPE_CURSOR:
11962 frontbuffer_bits = INTEL_FRONTBUFFER_CURSOR(pipe);
11963 break;
11964 case DRM_PLANE_TYPE_OVERLAY:
11965 frontbuffer_bits = INTEL_FRONTBUFFER_SPRITE(pipe);
11966 break;
11967 }
Matt Roper465c1202014-05-29 08:06:54 -070011968
Matt Roper4c345742014-07-09 16:22:10 -070011969 mutex_lock(&dev->struct_mutex);
Matt Roper465c1202014-05-29 08:06:54 -070011970
Matt Roper6beb8c232014-12-01 15:40:14 -080011971 if (plane->type == DRM_PLANE_TYPE_CURSOR &&
11972 INTEL_INFO(dev)->cursor_needs_physical) {
11973 int align = IS_I830(dev) ? 16 * 1024 : 256;
11974 ret = i915_gem_object_attach_phys(obj, align);
11975 if (ret)
11976 DRM_DEBUG_KMS("failed to attach phys object\n");
11977 } else {
11978 ret = intel_pin_and_fence_fb_obj(plane, fb, NULL);
11979 }
11980
11981 if (ret == 0)
11982 i915_gem_track_fb(old_obj, obj, frontbuffer_bits);
11983
11984 mutex_unlock(&dev->struct_mutex);
11985
11986 return ret;
11987}
11988
Matt Roper38f3ce32014-12-02 07:45:25 -080011989/**
11990 * intel_cleanup_plane_fb - Cleans up an fb after plane use
11991 * @plane: drm plane to clean up for
11992 * @fb: old framebuffer that was on plane
11993 *
11994 * Cleans up a framebuffer that has just been removed from a plane.
11995 */
11996void
11997intel_cleanup_plane_fb(struct drm_plane *plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +000011998 struct drm_framebuffer *fb,
11999 const struct drm_plane_state *old_state)
Matt Roper38f3ce32014-12-02 07:45:25 -080012000{
12001 struct drm_device *dev = plane->dev;
12002 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
12003
12004 if (WARN_ON(!obj))
12005 return;
12006
12007 if (plane->type != DRM_PLANE_TYPE_CURSOR ||
12008 !INTEL_INFO(dev)->cursor_needs_physical) {
12009 mutex_lock(&dev->struct_mutex);
12010 intel_unpin_fb_obj(obj);
12011 mutex_unlock(&dev->struct_mutex);
12012 }
Matt Roper465c1202014-05-29 08:06:54 -070012013}
12014
12015static int
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012016intel_check_primary_plane(struct drm_plane *plane,
12017 struct intel_plane_state *state)
Matt Roper465c1202014-05-29 08:06:54 -070012018{
Matt Roper32b7eee2014-12-24 07:59:06 -080012019 struct drm_device *dev = plane->dev;
12020 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roper2b875c22014-12-01 15:40:13 -080012021 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080012022 struct intel_crtc *intel_crtc;
Matt Roper2b875c22014-12-01 15:40:13 -080012023 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012024 struct drm_rect *dest = &state->dst;
12025 struct drm_rect *src = &state->src;
12026 const struct drm_rect *clip = &state->clip;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012027 int ret;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012028
Matt Roperea2c67b2014-12-23 10:41:52 -080012029 crtc = crtc ? crtc : plane->crtc;
12030 intel_crtc = to_intel_crtc(crtc);
12031
Matt Roperc59cb172014-12-01 15:40:16 -080012032 ret = drm_plane_helper_check_update(plane, crtc, fb,
12033 src, dest, clip,
12034 DRM_PLANE_HELPER_NO_SCALING,
12035 DRM_PLANE_HELPER_NO_SCALING,
12036 false, true, &state->visible);
12037 if (ret)
12038 return ret;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012039
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012040 if (intel_crtc->active) {
Matt Roper32b7eee2014-12-24 07:59:06 -080012041 intel_crtc->atomic.wait_for_flips = true;
12042
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012043 /*
12044 * FBC does not work on some platforms for rotated
12045 * planes, so disable it when rotation is not 0 and
12046 * update it when rotation is set back to 0.
12047 *
12048 * FIXME: This is redundant with the fbc update done in
12049 * the primary plane enable function except that that
12050 * one is done too late. We eventually need to unify
12051 * this.
12052 */
12053 if (intel_crtc->primary_enabled &&
12054 INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev) &&
Paulo Zanonie35fef22015-02-09 14:46:29 -020012055 dev_priv->fbc.crtc == intel_crtc &&
Matt Roper8e7d6882015-01-21 16:35:41 -080012056 state->base.rotation != BIT(DRM_ROTATE_0)) {
Matt Roper32b7eee2014-12-24 07:59:06 -080012057 intel_crtc->atomic.disable_fbc = true;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012058 }
12059
12060 if (state->visible) {
Matt Roper32b7eee2014-12-24 07:59:06 -080012061 /*
12062 * BDW signals flip done immediately if the plane
12063 * is disabled, even if the plane enable is already
12064 * armed to occur at the next vblank :(
12065 */
12066 if (IS_BROADWELL(dev) && !intel_crtc->primary_enabled)
12067 intel_crtc->atomic.wait_vblank = true;
12068 }
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012069
Matt Roper32b7eee2014-12-24 07:59:06 -080012070 intel_crtc->atomic.fb_bits |=
12071 INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
12072
12073 intel_crtc->atomic.update_fbc = true;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +000012074
12075 /* Update watermarks on tiling changes. */
12076 if (!plane->state->fb || !state->base.fb ||
12077 plane->state->fb->modifier[0] !=
12078 state->base.fb->modifier[0])
12079 intel_crtc->atomic.update_wm = true;
Matt Roperc59cb172014-12-01 15:40:16 -080012080 }
12081
12082 return 0;
Matt Roper465c1202014-05-29 08:06:54 -070012083}
12084
Sonika Jindal48404c12014-08-22 14:06:04 +053012085static void
12086intel_commit_primary_plane(struct drm_plane *plane,
12087 struct intel_plane_state *state)
12088{
Matt Roper2b875c22014-12-01 15:40:13 -080012089 struct drm_crtc *crtc = state->base.crtc;
12090 struct drm_framebuffer *fb = state->base.fb;
12091 struct drm_device *dev = plane->dev;
Sonika Jindal48404c12014-08-22 14:06:04 +053012092 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperea2c67b2014-12-23 10:41:52 -080012093 struct intel_crtc *intel_crtc;
Sonika Jindal48404c12014-08-22 14:06:04 +053012094 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Sonika Jindalce54d852014-08-21 11:44:39 +053012095 struct intel_plane *intel_plane = to_intel_plane(plane);
12096 struct drm_rect *src = &state->src;
Matt Ropercf4c7c12014-12-04 10:27:42 -080012097
Matt Roperea2c67b2014-12-23 10:41:52 -080012098 crtc = crtc ? crtc : plane->crtc;
12099 intel_crtc = to_intel_crtc(crtc);
12100
Matt Ropercf4c7c12014-12-04 10:27:42 -080012101 plane->fb = fb;
Sonika Jindalce54d852014-08-21 11:44:39 +053012102 crtc->x = src->x1 >> 16;
Matt Roper465c1202014-05-29 08:06:54 -070012103 crtc->y = src->y1 >> 16;
12104
Sonika Jindalce54d852014-08-21 11:44:39 +053012105 intel_plane->obj = obj;
Matt Roper465c1202014-05-29 08:06:54 -070012106
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012107 if (intel_crtc->active) {
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012108 if (state->visible) {
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012109 /* FIXME: kill this fastboot hack */
12110 intel_update_pipe_size(intel_crtc);
12111
12112 intel_crtc->primary_enabled = true;
12113
12114 dev_priv->display.update_primary_plane(crtc, plane->fb,
12115 crtc->x, crtc->y);
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012116 } else {
12117 /*
12118 * If clipping results in a non-visible primary plane,
12119 * we'll disable the primary plane. Note that this is
12120 * a bit different than what happens if userspace
12121 * explicitly disables the plane by passing fb=0
12122 * because plane->fb still gets set and pinned.
12123 */
12124 intel_disable_primary_hw_plane(plane, crtc);
12125 }
Matt Roper32b7eee2014-12-24 07:59:06 -080012126 }
12127}
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012128
Matt Roper32b7eee2014-12-24 07:59:06 -080012129static void intel_begin_crtc_commit(struct drm_crtc *crtc)
12130{
12131 struct drm_device *dev = crtc->dev;
12132 struct drm_i915_private *dev_priv = dev->dev_private;
12133 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roperea2c67b2014-12-23 10:41:52 -080012134 struct intel_plane *intel_plane;
12135 struct drm_plane *p;
12136 unsigned fb_bits = 0;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012137
Matt Roperea2c67b2014-12-23 10:41:52 -080012138 /* Track fb's for any planes being disabled */
12139 list_for_each_entry(p, &dev->mode_config.plane_list, head) {
12140 intel_plane = to_intel_plane(p);
12141
12142 if (intel_crtc->atomic.disabled_planes &
12143 (1 << drm_plane_index(p))) {
12144 switch (p->type) {
12145 case DRM_PLANE_TYPE_PRIMARY:
12146 fb_bits = INTEL_FRONTBUFFER_PRIMARY(intel_plane->pipe);
12147 break;
12148 case DRM_PLANE_TYPE_CURSOR:
12149 fb_bits = INTEL_FRONTBUFFER_CURSOR(intel_plane->pipe);
12150 break;
12151 case DRM_PLANE_TYPE_OVERLAY:
12152 fb_bits = INTEL_FRONTBUFFER_SPRITE(intel_plane->pipe);
12153 break;
12154 }
12155
12156 mutex_lock(&dev->struct_mutex);
12157 i915_gem_track_fb(intel_fb_obj(p->fb), NULL, fb_bits);
12158 mutex_unlock(&dev->struct_mutex);
12159 }
12160 }
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012161
Matt Roper32b7eee2014-12-24 07:59:06 -080012162 if (intel_crtc->atomic.wait_for_flips)
12163 intel_crtc_wait_for_pending_flips(crtc);
12164
12165 if (intel_crtc->atomic.disable_fbc)
12166 intel_fbc_disable(dev);
12167
12168 if (intel_crtc->atomic.pre_disable_primary)
12169 intel_pre_disable_primary(crtc);
12170
12171 if (intel_crtc->atomic.update_wm)
12172 intel_update_watermarks(crtc);
12173
12174 intel_runtime_pm_get(dev_priv);
Matt Roperc34c9ee2014-12-23 10:41:50 -080012175
12176 /* Perform vblank evasion around commit operation */
12177 if (intel_crtc->active)
12178 intel_crtc->atomic.evade =
12179 intel_pipe_update_start(intel_crtc,
12180 &intel_crtc->atomic.start_vbl_count);
Matt Roper32b7eee2014-12-24 07:59:06 -080012181}
12182
12183static void intel_finish_crtc_commit(struct drm_crtc *crtc)
12184{
12185 struct drm_device *dev = crtc->dev;
12186 struct drm_i915_private *dev_priv = dev->dev_private;
12187 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12188 struct drm_plane *p;
12189
Matt Roperc34c9ee2014-12-23 10:41:50 -080012190 if (intel_crtc->atomic.evade)
12191 intel_pipe_update_end(intel_crtc,
12192 intel_crtc->atomic.start_vbl_count);
12193
Matt Roper32b7eee2014-12-24 07:59:06 -080012194 intel_runtime_pm_put(dev_priv);
12195
12196 if (intel_crtc->atomic.wait_vblank)
12197 intel_wait_for_vblank(dev, intel_crtc->pipe);
12198
12199 intel_frontbuffer_flip(dev, intel_crtc->atomic.fb_bits);
12200
12201 if (intel_crtc->atomic.update_fbc) {
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012202 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020012203 intel_fbc_update(dev);
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030012204 mutex_unlock(&dev->struct_mutex);
12205 }
Matt Roper465c1202014-05-29 08:06:54 -070012206
Matt Roper32b7eee2014-12-24 07:59:06 -080012207 if (intel_crtc->atomic.post_enable_primary)
12208 intel_post_enable_primary(crtc);
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012209
Matt Roper32b7eee2014-12-24 07:59:06 -080012210 drm_for_each_legacy_plane(p, &dev->mode_config.plane_list)
12211 if (intel_crtc->atomic.update_sprite_watermarks & drm_plane_index(p))
12212 intel_update_sprite_watermarks(p, crtc, 0, 0, 0,
12213 false, false);
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012214
Matt Roper32b7eee2014-12-24 07:59:06 -080012215 memset(&intel_crtc->atomic, 0, sizeof(intel_crtc->atomic));
Gustavo Padovan3c692a42014-09-05 17:04:49 -030012216}
12217
Matt Ropercf4c7c12014-12-04 10:27:42 -080012218/**
Matt Roper4a3b8762014-12-23 10:41:51 -080012219 * intel_plane_destroy - destroy a plane
12220 * @plane: plane to destroy
Matt Ropercf4c7c12014-12-04 10:27:42 -080012221 *
Matt Roper4a3b8762014-12-23 10:41:51 -080012222 * Common destruction function for all types of planes (primary, cursor,
12223 * sprite).
Matt Ropercf4c7c12014-12-04 10:27:42 -080012224 */
Matt Roper4a3b8762014-12-23 10:41:51 -080012225void intel_plane_destroy(struct drm_plane *plane)
Matt Roper465c1202014-05-29 08:06:54 -070012226{
12227 struct intel_plane *intel_plane = to_intel_plane(plane);
12228 drm_plane_cleanup(plane);
12229 kfree(intel_plane);
12230}
12231
Matt Roper65a3fea2015-01-21 16:35:42 -080012232const struct drm_plane_funcs intel_plane_funcs = {
Daniel Vetterff42e092015-03-02 16:35:20 +010012233 .update_plane = drm_plane_helper_update,
12234 .disable_plane = drm_plane_helper_disable,
Matt Roper3d7d6512014-06-10 08:28:13 -070012235 .destroy = intel_plane_destroy,
Matt Roperc196e1d2015-01-21 16:35:48 -080012236 .set_property = drm_atomic_helper_plane_set_property,
Matt Ropera98b3432015-01-21 16:35:43 -080012237 .atomic_get_property = intel_plane_atomic_get_property,
12238 .atomic_set_property = intel_plane_atomic_set_property,
Matt Roperea2c67b2014-12-23 10:41:52 -080012239 .atomic_duplicate_state = intel_plane_duplicate_state,
12240 .atomic_destroy_state = intel_plane_destroy_state,
12241
Matt Roper465c1202014-05-29 08:06:54 -070012242};
12243
12244static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
12245 int pipe)
12246{
12247 struct intel_plane *primary;
Matt Roper8e7d6882015-01-21 16:35:41 -080012248 struct intel_plane_state *state;
Matt Roper465c1202014-05-29 08:06:54 -070012249 const uint32_t *intel_primary_formats;
12250 int num_formats;
12251
12252 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
12253 if (primary == NULL)
12254 return NULL;
12255
Matt Roper8e7d6882015-01-21 16:35:41 -080012256 state = intel_create_plane_state(&primary->base);
12257 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080012258 kfree(primary);
12259 return NULL;
12260 }
Matt Roper8e7d6882015-01-21 16:35:41 -080012261 primary->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080012262
Matt Roper465c1202014-05-29 08:06:54 -070012263 primary->can_scale = false;
12264 primary->max_downscale = 1;
12265 primary->pipe = pipe;
12266 primary->plane = pipe;
Matt Roperc59cb172014-12-01 15:40:16 -080012267 primary->check_plane = intel_check_primary_plane;
12268 primary->commit_plane = intel_commit_primary_plane;
Matt Roper465c1202014-05-29 08:06:54 -070012269 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
12270 primary->plane = !pipe;
12271
12272 if (INTEL_INFO(dev)->gen <= 3) {
12273 intel_primary_formats = intel_primary_formats_gen2;
12274 num_formats = ARRAY_SIZE(intel_primary_formats_gen2);
12275 } else {
12276 intel_primary_formats = intel_primary_formats_gen4;
12277 num_formats = ARRAY_SIZE(intel_primary_formats_gen4);
12278 }
12279
12280 drm_universal_plane_init(dev, &primary->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080012281 &intel_plane_funcs,
Matt Roper465c1202014-05-29 08:06:54 -070012282 intel_primary_formats, num_formats,
12283 DRM_PLANE_TYPE_PRIMARY);
Sonika Jindal48404c12014-08-22 14:06:04 +053012284
12285 if (INTEL_INFO(dev)->gen >= 4) {
12286 if (!dev->mode_config.rotation_property)
12287 dev->mode_config.rotation_property =
12288 drm_mode_create_rotation_property(dev,
12289 BIT(DRM_ROTATE_0) |
12290 BIT(DRM_ROTATE_180));
12291 if (dev->mode_config.rotation_property)
12292 drm_object_attach_property(&primary->base.base,
12293 dev->mode_config.rotation_property,
Matt Roper8e7d6882015-01-21 16:35:41 -080012294 state->base.rotation);
Sonika Jindal48404c12014-08-22 14:06:04 +053012295 }
12296
Matt Roperea2c67b2014-12-23 10:41:52 -080012297 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
12298
Matt Roper465c1202014-05-29 08:06:54 -070012299 return &primary->base;
12300}
12301
Matt Roper3d7d6512014-06-10 08:28:13 -070012302static int
Gustavo Padovan852e7872014-09-05 17:22:31 -030012303intel_check_cursor_plane(struct drm_plane *plane,
12304 struct intel_plane_state *state)
Matt Roper3d7d6512014-06-10 08:28:13 -070012305{
Matt Roper2b875c22014-12-01 15:40:13 -080012306 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080012307 struct drm_device *dev = plane->dev;
Matt Roper2b875c22014-12-01 15:40:13 -080012308 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan852e7872014-09-05 17:22:31 -030012309 struct drm_rect *dest = &state->dst;
12310 struct drm_rect *src = &state->src;
12311 const struct drm_rect *clip = &state->clip;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012312 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Matt Roperea2c67b2014-12-23 10:41:52 -080012313 struct intel_crtc *intel_crtc;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012314 unsigned stride;
12315 int ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030012316
Matt Roperea2c67b2014-12-23 10:41:52 -080012317 crtc = crtc ? crtc : plane->crtc;
12318 intel_crtc = to_intel_crtc(crtc);
12319
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012320 ret = drm_plane_helper_check_update(plane, crtc, fb,
Gustavo Padovan852e7872014-09-05 17:22:31 -030012321 src, dest, clip,
12322 DRM_PLANE_HELPER_NO_SCALING,
12323 DRM_PLANE_HELPER_NO_SCALING,
12324 true, true, &state->visible);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012325 if (ret)
12326 return ret;
12327
12328
12329 /* if we want to turn off the cursor ignore width and height */
12330 if (!obj)
Matt Roper32b7eee2014-12-24 07:59:06 -080012331 goto finish;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012332
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012333 /* Check for which cursor types we support */
Matt Roperea2c67b2014-12-23 10:41:52 -080012334 if (!cursor_size_ok(dev, state->base.crtc_w, state->base.crtc_h)) {
12335 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
12336 state->base.crtc_w, state->base.crtc_h);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012337 return -EINVAL;
12338 }
12339
Matt Roperea2c67b2014-12-23 10:41:52 -080012340 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
12341 if (obj->base.size < stride * state->base.crtc_h) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012342 DRM_DEBUG_KMS("buffer is too small\n");
12343 return -ENOMEM;
12344 }
12345
Ville Syrjälä3a656b52015-03-09 21:08:37 +020012346 if (fb->modifier[0] != DRM_FORMAT_MOD_NONE) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012347 DRM_DEBUG_KMS("cursor cannot be tiled\n");
12348 ret = -EINVAL;
12349 }
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012350
Matt Roper32b7eee2014-12-24 07:59:06 -080012351finish:
12352 if (intel_crtc->active) {
Ville Syrjälä3749f462015-03-10 13:15:22 +020012353 if (plane->state->crtc_w != state->base.crtc_w)
Matt Roper32b7eee2014-12-24 07:59:06 -080012354 intel_crtc->atomic.update_wm = true;
12355
12356 intel_crtc->atomic.fb_bits |=
12357 INTEL_FRONTBUFFER_CURSOR(intel_crtc->pipe);
12358 }
12359
Gustavo Padovan757f9a32014-09-24 14:20:24 -030012360 return ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030012361}
12362
Matt Roperf4a2cf22014-12-01 15:40:12 -080012363static void
Gustavo Padovan852e7872014-09-05 17:22:31 -030012364intel_commit_cursor_plane(struct drm_plane *plane,
12365 struct intel_plane_state *state)
12366{
Matt Roper2b875c22014-12-01 15:40:13 -080012367 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080012368 struct drm_device *dev = plane->dev;
12369 struct intel_crtc *intel_crtc;
Sonika Jindala919db92014-10-23 07:41:33 -070012370 struct intel_plane *intel_plane = to_intel_plane(plane);
Matt Roper2b875c22014-12-01 15:40:13 -080012371 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
Gustavo Padovana912f122014-12-01 15:40:10 -080012372 uint32_t addr;
Matt Roper3d7d6512014-06-10 08:28:13 -070012373
Matt Roperea2c67b2014-12-23 10:41:52 -080012374 crtc = crtc ? crtc : plane->crtc;
12375 intel_crtc = to_intel_crtc(crtc);
Sonika Jindala919db92014-10-23 07:41:33 -070012376
Matt Roperea2c67b2014-12-23 10:41:52 -080012377 plane->fb = state->base.fb;
12378 crtc->cursor_x = state->base.crtc_x;
12379 crtc->cursor_y = state->base.crtc_y;
12380
Sonika Jindala919db92014-10-23 07:41:33 -070012381 intel_plane->obj = obj;
12382
Gustavo Padovana912f122014-12-01 15:40:10 -080012383 if (intel_crtc->cursor_bo == obj)
12384 goto update;
12385
Matt Roperf4a2cf22014-12-01 15:40:12 -080012386 if (!obj)
Gustavo Padovana912f122014-12-01 15:40:10 -080012387 addr = 0;
Matt Roperf4a2cf22014-12-01 15:40:12 -080012388 else if (!INTEL_INFO(dev)->cursor_needs_physical)
Gustavo Padovana912f122014-12-01 15:40:10 -080012389 addr = i915_gem_obj_ggtt_offset(obj);
Matt Roperf4a2cf22014-12-01 15:40:12 -080012390 else
Gustavo Padovana912f122014-12-01 15:40:10 -080012391 addr = obj->phys_handle->busaddr;
Gustavo Padovana912f122014-12-01 15:40:10 -080012392
Gustavo Padovana912f122014-12-01 15:40:10 -080012393 intel_crtc->cursor_addr = addr;
12394 intel_crtc->cursor_bo = obj;
12395update:
Gustavo Padovana912f122014-12-01 15:40:10 -080012396
Matt Roper32b7eee2014-12-24 07:59:06 -080012397 if (intel_crtc->active)
Gustavo Padovan852e7872014-09-05 17:22:31 -030012398 intel_crtc_update_cursor(crtc, state->visible);
Matt Roper3d7d6512014-06-10 08:28:13 -070012399}
Gustavo Padovan852e7872014-09-05 17:22:31 -030012400
Matt Roper3d7d6512014-06-10 08:28:13 -070012401static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
12402 int pipe)
12403{
12404 struct intel_plane *cursor;
Matt Roper8e7d6882015-01-21 16:35:41 -080012405 struct intel_plane_state *state;
Matt Roper3d7d6512014-06-10 08:28:13 -070012406
12407 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
12408 if (cursor == NULL)
12409 return NULL;
12410
Matt Roper8e7d6882015-01-21 16:35:41 -080012411 state = intel_create_plane_state(&cursor->base);
12412 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080012413 kfree(cursor);
12414 return NULL;
12415 }
Matt Roper8e7d6882015-01-21 16:35:41 -080012416 cursor->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080012417
Matt Roper3d7d6512014-06-10 08:28:13 -070012418 cursor->can_scale = false;
12419 cursor->max_downscale = 1;
12420 cursor->pipe = pipe;
12421 cursor->plane = pipe;
Matt Roperc59cb172014-12-01 15:40:16 -080012422 cursor->check_plane = intel_check_cursor_plane;
12423 cursor->commit_plane = intel_commit_cursor_plane;
Matt Roper3d7d6512014-06-10 08:28:13 -070012424
12425 drm_universal_plane_init(dev, &cursor->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080012426 &intel_plane_funcs,
Matt Roper3d7d6512014-06-10 08:28:13 -070012427 intel_cursor_formats,
12428 ARRAY_SIZE(intel_cursor_formats),
12429 DRM_PLANE_TYPE_CURSOR);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070012430
12431 if (INTEL_INFO(dev)->gen >= 4) {
12432 if (!dev->mode_config.rotation_property)
12433 dev->mode_config.rotation_property =
12434 drm_mode_create_rotation_property(dev,
12435 BIT(DRM_ROTATE_0) |
12436 BIT(DRM_ROTATE_180));
12437 if (dev->mode_config.rotation_property)
12438 drm_object_attach_property(&cursor->base.base,
12439 dev->mode_config.rotation_property,
Matt Roper8e7d6882015-01-21 16:35:41 -080012440 state->base.rotation);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070012441 }
12442
Matt Roperea2c67b2014-12-23 10:41:52 -080012443 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
12444
Matt Roper3d7d6512014-06-10 08:28:13 -070012445 return &cursor->base;
12446}
12447
Hannes Ederb358d0a2008-12-18 21:18:47 +010012448static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -080012449{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012450 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080012451 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020012452 struct intel_crtc_state *crtc_state = NULL;
Matt Roper3d7d6512014-06-10 08:28:13 -070012453 struct drm_plane *primary = NULL;
12454 struct drm_plane *cursor = NULL;
Matt Roper465c1202014-05-29 08:06:54 -070012455 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080012456
Daniel Vetter955382f2013-09-19 14:05:45 +020012457 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -080012458 if (intel_crtc == NULL)
12459 return;
12460
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020012461 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
12462 if (!crtc_state)
12463 goto fail;
12464 intel_crtc_set_state(intel_crtc, crtc_state);
Matt Roper07878242015-02-25 11:43:26 -080012465 crtc_state->base.crtc = &intel_crtc->base;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020012466
Matt Roper465c1202014-05-29 08:06:54 -070012467 primary = intel_primary_plane_create(dev, pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070012468 if (!primary)
12469 goto fail;
12470
12471 cursor = intel_cursor_plane_create(dev, pipe);
12472 if (!cursor)
12473 goto fail;
12474
Matt Roper465c1202014-05-29 08:06:54 -070012475 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
Matt Roper3d7d6512014-06-10 08:28:13 -070012476 cursor, &intel_crtc_funcs);
12477 if (ret)
12478 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080012479
12480 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -080012481 for (i = 0; i < 256; i++) {
12482 intel_crtc->lut_r[i] = i;
12483 intel_crtc->lut_g[i] = i;
12484 intel_crtc->lut_b[i] = i;
12485 }
12486
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020012487 /*
12488 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
Daniel Vetter8c0f92e2014-06-16 02:08:26 +020012489 * is hooked to pipe B. Hence we want plane A feeding pipe B.
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020012490 */
Jesse Barnes80824002009-09-10 15:28:06 -070012491 intel_crtc->pipe = pipe;
12492 intel_crtc->plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +010012493 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
Zhao Yakui28c97732009-10-09 11:39:41 +080012494 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +010012495 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -070012496 }
12497
Chris Wilson4b0e3332014-05-30 16:35:26 +030012498 intel_crtc->cursor_base = ~0;
12499 intel_crtc->cursor_cntl = ~0;
Ville Syrjälädc41c152014-08-13 11:57:05 +030012500 intel_crtc->cursor_size = ~0;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030012501
Jesse Barnes22fd0fa2009-12-02 13:42:53 -080012502 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
12503 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
12504 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
12505 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
12506
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020012507 INIT_WORK(&intel_crtc->mmio_flip.work, intel_mmio_flip_work_func);
12508
Jesse Barnes79e53942008-11-07 14:24:08 -080012509 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Daniel Vetter87b6b102014-05-15 15:33:46 +020012510
12511 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070012512 return;
12513
12514fail:
12515 if (primary)
12516 drm_plane_cleanup(primary);
12517 if (cursor)
12518 drm_plane_cleanup(cursor);
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020012519 kfree(crtc_state);
Matt Roper3d7d6512014-06-10 08:28:13 -070012520 kfree(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -080012521}
12522
Jesse Barnes752aa882013-10-31 18:55:49 +020012523enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
12524{
12525 struct drm_encoder *encoder = connector->base.encoder;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020012526 struct drm_device *dev = connector->base.dev;
Jesse Barnes752aa882013-10-31 18:55:49 +020012527
Rob Clark51fd3712013-11-19 12:10:12 -050012528 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Jesse Barnes752aa882013-10-31 18:55:49 +020012529
Ville Syrjäläd3babd32014-11-07 11:16:01 +020012530 if (!encoder || WARN_ON(!encoder->crtc))
Jesse Barnes752aa882013-10-31 18:55:49 +020012531 return INVALID_PIPE;
12532
12533 return to_intel_crtc(encoder->crtc)->pipe;
12534}
12535
Carl Worth08d7b3d2009-04-29 14:43:54 -070012536int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +000012537 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -070012538{
Carl Worth08d7b3d2009-04-29 14:43:54 -070012539 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Rob Clark7707e652014-07-17 23:30:04 -040012540 struct drm_crtc *drmmode_crtc;
Daniel Vetterc05422d2009-08-11 16:05:30 +020012541 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012542
Rob Clark7707e652014-07-17 23:30:04 -040012543 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
Carl Worth08d7b3d2009-04-29 14:43:54 -070012544
Rob Clark7707e652014-07-17 23:30:04 -040012545 if (!drmmode_crtc) {
Carl Worth08d7b3d2009-04-29 14:43:54 -070012546 DRM_ERROR("no such CRTC id\n");
Ville Syrjälä3f2c2052013-10-17 13:35:03 +030012547 return -ENOENT;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012548 }
12549
Rob Clark7707e652014-07-17 23:30:04 -040012550 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetterc05422d2009-08-11 16:05:30 +020012551 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012552
Daniel Vetterc05422d2009-08-11 16:05:30 +020012553 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -070012554}
12555
Daniel Vetter66a92782012-07-12 20:08:18 +020012556static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080012557{
Daniel Vetter66a92782012-07-12 20:08:18 +020012558 struct drm_device *dev = encoder->base.dev;
12559 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080012560 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080012561 int entry = 0;
12562
Damien Lespiaub2784e12014-08-05 11:29:37 +010012563 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020012564 if (encoders_cloneable(encoder, source_encoder))
Daniel Vetter66a92782012-07-12 20:08:18 +020012565 index_mask |= (1 << entry);
12566
Jesse Barnes79e53942008-11-07 14:24:08 -080012567 entry++;
12568 }
Chris Wilson4ef69c72010-09-09 15:14:28 +010012569
Jesse Barnes79e53942008-11-07 14:24:08 -080012570 return index_mask;
12571}
12572
Chris Wilson4d302442010-12-14 19:21:29 +000012573static bool has_edp_a(struct drm_device *dev)
12574{
12575 struct drm_i915_private *dev_priv = dev->dev_private;
12576
12577 if (!IS_MOBILE(dev))
12578 return false;
12579
12580 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
12581 return false;
12582
Damien Lespiaue3589902014-02-07 19:12:50 +000012583 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
Chris Wilson4d302442010-12-14 19:21:29 +000012584 return false;
12585
12586 return true;
12587}
12588
Jesse Barnes84b4e042014-06-25 08:24:29 -070012589static bool intel_crt_present(struct drm_device *dev)
12590{
12591 struct drm_i915_private *dev_priv = dev->dev_private;
12592
Damien Lespiau884497e2013-12-03 13:56:23 +000012593 if (INTEL_INFO(dev)->gen >= 9)
12594 return false;
12595
Damien Lespiaucf404ce2014-10-01 20:04:15 +010012596 if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
Jesse Barnes84b4e042014-06-25 08:24:29 -070012597 return false;
12598
12599 if (IS_CHERRYVIEW(dev))
12600 return false;
12601
12602 if (IS_VALLEYVIEW(dev) && !dev_priv->vbt.int_crt_support)
12603 return false;
12604
12605 return true;
12606}
12607
Jesse Barnes79e53942008-11-07 14:24:08 -080012608static void intel_setup_outputs(struct drm_device *dev)
12609{
Eric Anholt725e30a2009-01-22 13:01:02 -080012610 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +010012611 struct intel_encoder *encoder;
Matt Roperc6f95f22015-01-22 16:50:32 -080012612 struct drm_connector *connector;
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012613 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -080012614
Daniel Vetterc9093352013-06-06 22:22:47 +020012615 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080012616
Jesse Barnes84b4e042014-06-25 08:24:29 -070012617 if (intel_crt_present(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -020012618 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012619
Paulo Zanoniaffa9352012-11-23 15:30:39 -020012620 if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030012621 int found;
12622
Jesse Barnesde31fac2015-03-06 15:53:32 -080012623 /*
12624 * Haswell uses DDI functions to detect digital outputs.
12625 * On SKL pre-D0 the strap isn't connected, so we assume
12626 * it's there.
12627 */
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030012628 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
Jesse Barnesde31fac2015-03-06 15:53:32 -080012629 /* WaIgnoreDDIAStrap: skl */
12630 if (found ||
12631 (IS_SKYLAKE(dev) && INTEL_REVID(dev) < SKL_REVID_D0))
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030012632 intel_ddi_init(dev, PORT_A);
12633
12634 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
12635 * register */
12636 found = I915_READ(SFUSE_STRAP);
12637
12638 if (found & SFUSE_STRAP_DDIB_DETECTED)
12639 intel_ddi_init(dev, PORT_B);
12640 if (found & SFUSE_STRAP_DDIC_DETECTED)
12641 intel_ddi_init(dev, PORT_C);
12642 if (found & SFUSE_STRAP_DDID_DETECTED)
12643 intel_ddi_init(dev, PORT_D);
12644 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012645 int found;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020012646 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
Daniel Vetter270b3042012-10-27 15:52:05 +020012647
12648 if (has_edp_a(dev))
12649 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040012650
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012651 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +080012652 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +010012653 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012654 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012655 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012656 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012657 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012658 }
12659
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012660 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012661 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012662
Paulo Zanonidc0fa712013-02-19 16:21:46 -030012663 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030012664 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080012665
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012666 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012667 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080012668
Daniel Vetter270b3042012-10-27 15:52:05 +020012669 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012670 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -070012671 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012672 /*
12673 * The DP_DETECTED bit is the latched state of the DDC
12674 * SDA pin at boot. However since eDP doesn't require DDC
12675 * (no way to plug in a DP->HDMI dongle) the DDC pins for
12676 * eDP ports may have been muxed to an alternate function.
12677 * Thus we can't rely on the DP_DETECTED bit alone to detect
12678 * eDP ports. Consult the VBT as well as DP_DETECTED to
12679 * detect eDP ports.
12680 */
Ville Syrjäläd2182a62015-01-09 14:21:14 +020012681 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED &&
12682 !intel_dp_is_edp(dev, PORT_B))
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030012683 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
12684 PORT_B);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012685 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED ||
12686 intel_dp_is_edp(dev, PORT_B))
12687 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030012688
Ville Syrjäläd2182a62015-01-09 14:21:14 +020012689 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED &&
12690 !intel_dp_is_edp(dev, PORT_C))
Jesse Barnes6f6005a2013-08-09 09:34:35 -070012691 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
12692 PORT_C);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012693 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED ||
12694 intel_dp_is_edp(dev, PORT_C))
12695 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
Gajanan Bhat19c03922012-09-27 19:13:07 +053012696
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030012697 if (IS_CHERRYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012698 if (I915_READ(VLV_DISPLAY_BASE + CHV_HDMID) & SDVO_DETECTED)
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030012699 intel_hdmi_init(dev, VLV_DISPLAY_BASE + CHV_HDMID,
12700 PORT_D);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030012701 /* eDP not supported on port D, so don't check VBT */
12702 if (I915_READ(VLV_DISPLAY_BASE + DP_D) & DP_DETECTED)
12703 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_D, PORT_D);
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030012704 }
12705
Jani Nikula3cfca972013-08-27 15:12:26 +030012706 intel_dsi_init(dev);
Zhenyu Wang103a1962009-11-27 11:44:36 +080012707 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +080012708 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -080012709
Paulo Zanonie2debe92013-02-18 19:00:27 -030012710 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012711 DRM_DEBUG_KMS("probing SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012712 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012713 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
12714 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012715 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012716 }
Ma Ling27185ae2009-08-24 13:50:23 +080012717
Imre Deake7281ea2013-05-08 13:14:08 +030012718 if (!found && SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012719 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -080012720 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -040012721
12722 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -040012723
Paulo Zanonie2debe92013-02-18 19:00:27 -030012724 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012725 DRM_DEBUG_KMS("probing SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012726 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012727 }
Ma Ling27185ae2009-08-24 13:50:23 +080012728
Paulo Zanonie2debe92013-02-18 19:00:27 -030012729 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +080012730
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012731 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
12732 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030012733 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012734 }
Imre Deake7281ea2013-05-08 13:14:08 +030012735 if (SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012736 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -080012737 }
Ma Ling27185ae2009-08-24 13:50:23 +080012738
Jesse Barnesb01f2c32009-12-11 11:07:17 -080012739 if (SUPPORTS_INTEGRATED_DP(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +030012740 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030012741 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -070012742 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080012743 intel_dvo_init(dev);
12744
Zhenyu Wang103a1962009-11-27 11:44:36 +080012745 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080012746 intel_tv_init(dev);
12747
Matt Roperc6f95f22015-01-22 16:50:32 -080012748 /*
12749 * FIXME: We don't have full atomic support yet, but we want to be
12750 * able to enable/test plane updates via the atomic interface in the
12751 * meantime. However as soon as we flip DRIVER_ATOMIC on, the DRM core
12752 * will take some atomic codepaths to lookup properties during
12753 * drmModeGetConnector() that unconditionally dereference
12754 * connector->state.
12755 *
12756 * We create a dummy connector state here for each connector to ensure
12757 * the DRM core doesn't try to dereference a NULL connector->state.
12758 * The actual connector properties will never be updated or contain
12759 * useful information, but since we're doing this specifically for
12760 * testing/debug of the plane operations (and only when a specific
12761 * kernel module option is given), that shouldn't really matter.
12762 *
12763 * Once atomic support for crtc's + connectors lands, this loop should
12764 * be removed since we'll be setting up real connector state, which
12765 * will contain Intel-specific properties.
12766 */
12767 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
12768 list_for_each_entry(connector,
12769 &dev->mode_config.connector_list,
12770 head) {
12771 if (!WARN_ON(connector->state)) {
12772 connector->state =
12773 kzalloc(sizeof(*connector->state),
12774 GFP_KERNEL);
12775 }
12776 }
12777 }
12778
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -080012779 intel_psr_init(dev);
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -070012780
Damien Lespiaub2784e12014-08-05 11:29:37 +010012781 for_each_intel_encoder(dev, encoder) {
Chris Wilson4ef69c72010-09-09 15:14:28 +010012782 encoder->base.possible_crtcs = encoder->crtc_mask;
12783 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +020012784 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -080012785 }
Chris Wilson47356eb2011-01-11 17:06:04 +000012786
Paulo Zanonidde86e22012-12-01 12:04:25 -020012787 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +020012788
12789 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080012790}
12791
12792static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
12793{
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012794 struct drm_device *dev = fb->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -080012795 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -080012796
Daniel Vetteref2d6332014-02-10 18:00:38 +010012797 drm_framebuffer_cleanup(fb);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012798 mutex_lock(&dev->struct_mutex);
Daniel Vetteref2d6332014-02-10 18:00:38 +010012799 WARN_ON(!intel_fb->obj->framebuffer_references--);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030012800 drm_gem_object_unreference(&intel_fb->obj->base);
12801 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080012802 kfree(intel_fb);
12803}
12804
12805static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +000012806 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -080012807 unsigned int *handle)
12808{
12809 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +000012810 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080012811
Chris Wilson05394f32010-11-08 19:18:58 +000012812 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -080012813}
12814
12815static const struct drm_framebuffer_funcs intel_fb_funcs = {
12816 .destroy = intel_user_framebuffer_destroy,
12817 .create_handle = intel_user_framebuffer_create_handle,
12818};
12819
Damien Lespiaub3218032015-02-27 11:15:18 +000012820static
12821u32 intel_fb_pitch_limit(struct drm_device *dev, uint64_t fb_modifier,
12822 uint32_t pixel_format)
12823{
12824 u32 gen = INTEL_INFO(dev)->gen;
12825
12826 if (gen >= 9) {
12827 /* "The stride in bytes must not exceed the of the size of 8K
12828 * pixels and 32K bytes."
12829 */
12830 return min(8192*drm_format_plane_cpp(pixel_format, 0), 32768);
12831 } else if (gen >= 5 && !IS_VALLEYVIEW(dev)) {
12832 return 32*1024;
12833 } else if (gen >= 4) {
12834 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
12835 return 16*1024;
12836 else
12837 return 32*1024;
12838 } else if (gen >= 3) {
12839 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
12840 return 8*1024;
12841 else
12842 return 16*1024;
12843 } else {
12844 /* XXX DSPC is limited to 4k tiled */
12845 return 8*1024;
12846 }
12847}
12848
Daniel Vetterb5ea6422014-03-02 21:18:00 +010012849static int intel_framebuffer_init(struct drm_device *dev,
12850 struct intel_framebuffer *intel_fb,
12851 struct drm_mode_fb_cmd2 *mode_cmd,
12852 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -080012853{
Jesse Barnesa57ce0b2014-02-07 12:10:35 -080012854 int aligned_height;
Jesse Barnes79e53942008-11-07 14:24:08 -080012855 int ret;
Damien Lespiaub3218032015-02-27 11:15:18 +000012856 u32 pitch_limit, stride_alignment;
Jesse Barnes79e53942008-11-07 14:24:08 -080012857
Daniel Vetterdd4916c2013-10-09 21:23:51 +020012858 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
12859
Daniel Vetter2a80ead2015-02-10 17:16:06 +000012860 if (mode_cmd->flags & DRM_MODE_FB_MODIFIERS) {
12861 /* Enforce that fb modifier and tiling mode match, but only for
12862 * X-tiled. This is needed for FBC. */
12863 if (!!(obj->tiling_mode == I915_TILING_X) !=
12864 !!(mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED)) {
12865 DRM_DEBUG("tiling_mode doesn't match fb modifier\n");
12866 return -EINVAL;
12867 }
12868 } else {
12869 if (obj->tiling_mode == I915_TILING_X)
12870 mode_cmd->modifier[0] = I915_FORMAT_MOD_X_TILED;
12871 else if (obj->tiling_mode == I915_TILING_Y) {
12872 DRM_DEBUG("No Y tiling for legacy addfb\n");
12873 return -EINVAL;
12874 }
12875 }
12876
Tvrtko Ursulin9a8f0a12015-02-27 11:15:24 +000012877 /* Passed in modifier sanity checking. */
12878 switch (mode_cmd->modifier[0]) {
12879 case I915_FORMAT_MOD_Y_TILED:
12880 case I915_FORMAT_MOD_Yf_TILED:
12881 if (INTEL_INFO(dev)->gen < 9) {
12882 DRM_DEBUG("Unsupported tiling 0x%llx!\n",
12883 mode_cmd->modifier[0]);
12884 return -EINVAL;
12885 }
12886 case DRM_FORMAT_MOD_NONE:
12887 case I915_FORMAT_MOD_X_TILED:
12888 break;
12889 default:
12890 DRM_ERROR("Unsupported fb modifier 0x%llx!\n",
12891 mode_cmd->modifier[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +010012892 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012893 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012894
Damien Lespiaub3218032015-02-27 11:15:18 +000012895 stride_alignment = intel_fb_stride_alignment(dev, mode_cmd->modifier[0],
12896 mode_cmd->pixel_format);
12897 if (mode_cmd->pitches[0] & (stride_alignment - 1)) {
12898 DRM_DEBUG("pitch (%d) must be at least %u byte aligned\n",
12899 mode_cmd->pitches[0], stride_alignment);
Chris Wilson57cd6502010-08-08 12:34:44 +010012900 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012901 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012902
Damien Lespiaub3218032015-02-27 11:15:18 +000012903 pitch_limit = intel_fb_pitch_limit(dev, mode_cmd->modifier[0],
12904 mode_cmd->pixel_format);
Chris Wilsona35cdaa2013-06-25 17:26:45 +010012905 if (mode_cmd->pitches[0] > pitch_limit) {
Damien Lespiaub3218032015-02-27 11:15:18 +000012906 DRM_DEBUG("%s pitch (%u) must be at less than %d\n",
12907 mode_cmd->modifier[0] != DRM_FORMAT_MOD_NONE ?
Daniel Vetter2a80ead2015-02-10 17:16:06 +000012908 "tiled" : "linear",
Chris Wilsona35cdaa2013-06-25 17:26:45 +010012909 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012910 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012911 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012912
Daniel Vetter2a80ead2015-02-10 17:16:06 +000012913 if (mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012914 mode_cmd->pitches[0] != obj->stride) {
12915 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
12916 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012917 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012918 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020012919
Ville Syrjälä57779d02012-10-31 17:50:14 +020012920 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080012921 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020012922 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020012923 case DRM_FORMAT_RGB565:
12924 case DRM_FORMAT_XRGB8888:
12925 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020012926 break;
12927 case DRM_FORMAT_XRGB1555:
12928 case DRM_FORMAT_ARGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012929 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012930 DRM_DEBUG("unsupported pixel format: %s\n",
12931 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012932 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012933 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020012934 break;
12935 case DRM_FORMAT_XBGR8888:
12936 case DRM_FORMAT_ABGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020012937 case DRM_FORMAT_XRGB2101010:
12938 case DRM_FORMAT_ARGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020012939 case DRM_FORMAT_XBGR2101010:
12940 case DRM_FORMAT_ABGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012941 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012942 DRM_DEBUG("unsupported pixel format: %s\n",
12943 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012944 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012945 }
Jesse Barnesb5626742011-06-24 12:19:27 -070012946 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020012947 case DRM_FORMAT_YUYV:
12948 case DRM_FORMAT_UYVY:
12949 case DRM_FORMAT_YVYU:
12950 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012951 if (INTEL_INFO(dev)->gen < 5) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012952 DRM_DEBUG("unsupported pixel format: %s\n",
12953 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020012954 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000012955 }
Chris Wilson57cd6502010-08-08 12:34:44 +010012956 break;
12957 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000012958 DRM_DEBUG("unsupported pixel format: %s\n",
12959 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010012960 return -EINVAL;
12961 }
12962
Ville Syrjälä90f9a332012-10-31 17:50:19 +020012963 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
12964 if (mode_cmd->offsets[0] != 0)
12965 return -EINVAL;
12966
Damien Lespiauec2c9812015-01-20 12:51:45 +000012967 aligned_height = intel_fb_align_height(dev, mode_cmd->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +000012968 mode_cmd->pixel_format,
12969 mode_cmd->modifier[0]);
Daniel Vetter53155c02013-10-09 21:55:33 +020012970 /* FIXME drm helper for size checks (especially planar formats)? */
12971 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
12972 return -EINVAL;
12973
Daniel Vetterc7d73f62012-12-13 23:38:38 +010012974 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
12975 intel_fb->obj = obj;
Daniel Vetter80075d42013-10-09 21:23:52 +020012976 intel_fb->obj->framebuffer_references++;
Daniel Vetterc7d73f62012-12-13 23:38:38 +010012977
Jesse Barnes79e53942008-11-07 14:24:08 -080012978 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
12979 if (ret) {
12980 DRM_ERROR("framebuffer init failed %d\n", ret);
12981 return ret;
12982 }
12983
Jesse Barnes79e53942008-11-07 14:24:08 -080012984 return 0;
12985}
12986
Jesse Barnes79e53942008-11-07 14:24:08 -080012987static struct drm_framebuffer *
12988intel_user_framebuffer_create(struct drm_device *dev,
12989 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -080012990 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080012991{
Chris Wilson05394f32010-11-08 19:18:58 +000012992 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080012993
Jesse Barnes308e5bc2011-11-14 14:51:28 -080012994 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
12995 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +000012996 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010012997 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080012998
Chris Wilsond2dff872011-04-19 08:36:26 +010012999 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -080013000}
13001
Daniel Vetter4520f532013-10-09 09:18:51 +020013002#ifndef CONFIG_DRM_I915_FBDEV
Daniel Vetter0632fef2013-10-08 17:44:49 +020013003static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
Daniel Vetter4520f532013-10-09 09:18:51 +020013004{
13005}
13006#endif
13007
Jesse Barnes79e53942008-11-07 14:24:08 -080013008static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080013009 .fb_create = intel_user_framebuffer_create,
Daniel Vetter0632fef2013-10-08 17:44:49 +020013010 .output_poll_changed = intel_fbdev_output_poll_changed,
Matt Roper5ee67f12015-01-21 16:35:44 -080013011 .atomic_check = intel_atomic_check,
13012 .atomic_commit = intel_atomic_commit,
Jesse Barnes79e53942008-11-07 14:24:08 -080013013};
13014
Jesse Barnese70236a2009-09-21 10:42:27 -070013015/* Set up chip specific display functions */
13016static void intel_init_display(struct drm_device *dev)
13017{
13018 struct drm_i915_private *dev_priv = dev->dev_private;
13019
Daniel Vetteree9300b2013-06-03 22:40:22 +020013020 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
13021 dev_priv->display.find_dpll = g4x_find_best_dpll;
Chon Ming Leeef9348c2014-04-09 13:28:18 +030013022 else if (IS_CHERRYVIEW(dev))
13023 dev_priv->display.find_dpll = chv_find_best_dpll;
Daniel Vetteree9300b2013-06-03 22:40:22 +020013024 else if (IS_VALLEYVIEW(dev))
13025 dev_priv->display.find_dpll = vlv_find_best_dpll;
13026 else if (IS_PINEVIEW(dev))
13027 dev_priv->display.find_dpll = pnv_find_best_dpll;
13028 else
13029 dev_priv->display.find_dpll = i9xx_find_best_dpll;
13030
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000013031 if (INTEL_INFO(dev)->gen >= 9) {
13032 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000013033 dev_priv->display.get_initial_plane_config =
13034 skylake_get_initial_plane_config;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000013035 dev_priv->display.crtc_compute_clock =
13036 haswell_crtc_compute_clock;
13037 dev_priv->display.crtc_enable = haswell_crtc_enable;
13038 dev_priv->display.crtc_disable = haswell_crtc_disable;
13039 dev_priv->display.off = ironlake_crtc_off;
13040 dev_priv->display.update_primary_plane =
13041 skylake_update_primary_plane;
13042 } else if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010013043 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000013044 dev_priv->display.get_initial_plane_config =
13045 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira797d0252014-10-29 11:32:34 +020013046 dev_priv->display.crtc_compute_clock =
13047 haswell_crtc_compute_clock;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020013048 dev_priv->display.crtc_enable = haswell_crtc_enable;
13049 dev_priv->display.crtc_disable = haswell_crtc_disable;
Daniel Vetterdf8ad702014-06-25 22:02:03 +030013050 dev_priv->display.off = ironlake_crtc_off;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000013051 dev_priv->display.update_primary_plane =
13052 ironlake_update_primary_plane;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030013053 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010013054 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000013055 dev_priv->display.get_initial_plane_config =
13056 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +020013057 dev_priv->display.crtc_compute_clock =
13058 ironlake_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020013059 dev_priv->display.crtc_enable = ironlake_crtc_enable;
13060 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013061 dev_priv->display.off = ironlake_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070013062 dev_priv->display.update_primary_plane =
13063 ironlake_update_primary_plane;
Jesse Barnes89b667f2013-04-18 14:51:36 -070013064 } else if (IS_VALLEYVIEW(dev)) {
13065 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000013066 dev_priv->display.get_initial_plane_config =
13067 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020013068 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Jesse Barnes89b667f2013-04-18 14:51:36 -070013069 dev_priv->display.crtc_enable = valleyview_crtc_enable;
13070 dev_priv->display.crtc_disable = i9xx_crtc_disable;
13071 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070013072 dev_priv->display.update_primary_plane =
13073 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070013074 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010013075 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000013076 dev_priv->display.get_initial_plane_config =
13077 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020013078 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020013079 dev_priv->display.crtc_enable = i9xx_crtc_enable;
13080 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013081 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070013082 dev_priv->display.update_primary_plane =
13083 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070013084 }
Jesse Barnese70236a2009-09-21 10:42:27 -070013085
Jesse Barnese70236a2009-09-21 10:42:27 -070013086 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070013087 if (IS_VALLEYVIEW(dev))
13088 dev_priv->display.get_display_clock_speed =
13089 valleyview_get_display_clock_speed;
13090 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -070013091 dev_priv->display.get_display_clock_speed =
13092 i945_get_display_clock_speed;
13093 else if (IS_I915G(dev))
13094 dev_priv->display.get_display_clock_speed =
13095 i915_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020013096 else if (IS_I945GM(dev) || IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070013097 dev_priv->display.get_display_clock_speed =
13098 i9xx_misc_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020013099 else if (IS_PINEVIEW(dev))
13100 dev_priv->display.get_display_clock_speed =
13101 pnv_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070013102 else if (IS_I915GM(dev))
13103 dev_priv->display.get_display_clock_speed =
13104 i915gm_get_display_clock_speed;
13105 else if (IS_I865G(dev))
13106 dev_priv->display.get_display_clock_speed =
13107 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +020013108 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070013109 dev_priv->display.get_display_clock_speed =
13110 i855_get_display_clock_speed;
13111 else /* 852, 830 */
13112 dev_priv->display.get_display_clock_speed =
13113 i830_get_display_clock_speed;
13114
Jani Nikula7c10a2b2014-10-27 16:26:43 +020013115 if (IS_GEN5(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053013116 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053013117 } else if (IS_GEN6(dev)) {
13118 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053013119 } else if (IS_IVYBRIDGE(dev)) {
13120 /* FIXME: detect B0+ stepping and use auto training */
13121 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Paulo Zanoni059b2fe2014-09-02 16:53:57 -030013122 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053013123 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Jesse Barnes30a970c2013-11-04 13:48:12 -080013124 } else if (IS_VALLEYVIEW(dev)) {
13125 dev_priv->display.modeset_global_resources =
13126 valleyview_modeset_global_resources;
Jesse Barnese70236a2009-09-21 10:42:27 -070013127 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070013128
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070013129 switch (INTEL_INFO(dev)->gen) {
13130 case 2:
13131 dev_priv->display.queue_flip = intel_gen2_queue_flip;
13132 break;
13133
13134 case 3:
13135 dev_priv->display.queue_flip = intel_gen3_queue_flip;
13136 break;
13137
13138 case 4:
13139 case 5:
13140 dev_priv->display.queue_flip = intel_gen4_queue_flip;
13141 break;
13142
13143 case 6:
13144 dev_priv->display.queue_flip = intel_gen6_queue_flip;
13145 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070013146 case 7:
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070013147 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
Jesse Barnes7c9017e2011-06-16 12:18:54 -070013148 dev_priv->display.queue_flip = intel_gen7_queue_flip;
13149 break;
Damien Lespiau830c81d2014-11-13 17:51:46 +000013150 case 9:
Tvrtko Ursulinba343e02015-02-10 17:16:12 +000013151 /* Drop through - unsupported since execlist only. */
13152 default:
13153 /* Default just returns -ENODEV to indicate unsupported */
13154 dev_priv->display.queue_flip = intel_default_queue_flip;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070013155 }
Jani Nikula7bd688c2013-11-08 16:48:56 +020013156
13157 intel_panel_init_backlight_funcs(dev);
Ville Syrjäläe39b9992014-09-04 14:53:14 +030013158
13159 mutex_init(&dev_priv->pps_mutex);
Jesse Barnese70236a2009-09-21 10:42:27 -070013160}
13161
Jesse Barnesb690e962010-07-19 13:53:12 -070013162/*
13163 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
13164 * resume, or other times. This quirk makes sure that's the case for
13165 * affected systems.
13166 */
Akshay Joshi0206e352011-08-16 15:34:10 -040013167static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070013168{
13169 struct drm_i915_private *dev_priv = dev->dev_private;
13170
13171 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020013172 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070013173}
13174
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030013175static void quirk_pipeb_force(struct drm_device *dev)
13176{
13177 struct drm_i915_private *dev_priv = dev->dev_private;
13178
13179 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
13180 DRM_INFO("applying pipe b force quirk\n");
13181}
13182
Keith Packard435793d2011-07-12 14:56:22 -070013183/*
13184 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
13185 */
13186static void quirk_ssc_force_disable(struct drm_device *dev)
13187{
13188 struct drm_i915_private *dev_priv = dev->dev_private;
13189 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020013190 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070013191}
13192
Carsten Emde4dca20e2012-03-15 15:56:26 +010013193/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010013194 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
13195 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010013196 */
13197static void quirk_invert_brightness(struct drm_device *dev)
13198{
13199 struct drm_i915_private *dev_priv = dev->dev_private;
13200 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020013201 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070013202}
13203
Scot Doyle9c72cc62014-07-03 23:27:50 +000013204/* Some VBT's incorrectly indicate no backlight is present */
13205static void quirk_backlight_present(struct drm_device *dev)
13206{
13207 struct drm_i915_private *dev_priv = dev->dev_private;
13208 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
13209 DRM_INFO("applying backlight present quirk\n");
13210}
13211
Jesse Barnesb690e962010-07-19 13:53:12 -070013212struct intel_quirk {
13213 int device;
13214 int subsystem_vendor;
13215 int subsystem_device;
13216 void (*hook)(struct drm_device *dev);
13217};
13218
Egbert Eich5f85f172012-10-14 15:46:38 +020013219/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
13220struct intel_dmi_quirk {
13221 void (*hook)(struct drm_device *dev);
13222 const struct dmi_system_id (*dmi_id_list)[];
13223};
13224
13225static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
13226{
13227 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
13228 return 1;
13229}
13230
13231static const struct intel_dmi_quirk intel_dmi_quirks[] = {
13232 {
13233 .dmi_id_list = &(const struct dmi_system_id[]) {
13234 {
13235 .callback = intel_dmi_reverse_brightness,
13236 .ident = "NCR Corporation",
13237 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
13238 DMI_MATCH(DMI_PRODUCT_NAME, ""),
13239 },
13240 },
13241 { } /* terminating entry */
13242 },
13243 .hook = quirk_invert_brightness,
13244 },
13245};
13246
Ben Widawskyc43b5632012-04-16 14:07:40 -070013247static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070013248 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -040013249 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -070013250
Jesse Barnesb690e962010-07-19 13:53:12 -070013251 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
13252 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
13253
Jesse Barnesb690e962010-07-19 13:53:12 -070013254 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
13255 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
13256
Ville Syrjälä5f080c02014-08-15 01:22:06 +030013257 /* 830 needs to leave pipe A & dpll A up */
13258 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
13259
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030013260 /* 830 needs to leave pipe B & dpll B up */
13261 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
13262
Keith Packard435793d2011-07-12 14:56:22 -070013263 /* Lenovo U160 cannot use SSC on LVDS */
13264 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020013265
13266 /* Sony Vaio Y cannot use SSC on LVDS */
13267 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010013268
Alexander van Heukelumbe505f62013-12-28 21:00:39 +010013269 /* Acer Aspire 5734Z must invert backlight brightness */
13270 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
13271
13272 /* Acer/eMachines G725 */
13273 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
13274
13275 /* Acer/eMachines e725 */
13276 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
13277
13278 /* Acer/Packard Bell NCL20 */
13279 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
13280
13281 /* Acer Aspire 4736Z */
13282 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jani Nikula0f540c32014-01-13 17:30:34 +020013283
13284 /* Acer Aspire 5336 */
13285 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
Scot Doyle2e93a1a2014-07-03 23:27:51 +000013286
13287 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
13288 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
Scot Doyled4967d82014-07-03 23:27:52 +000013289
Scot Doyledfb3d47b2014-08-21 16:08:02 +000013290 /* Acer C720 Chromebook (Core i3 4005U) */
13291 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
13292
jens steinb2a96012014-10-28 20:25:53 +010013293 /* Apple Macbook 2,1 (Core 2 T7400) */
13294 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
13295
Scot Doyled4967d82014-07-03 23:27:52 +000013296 /* Toshiba CB35 Chromebook (Celeron 2955U) */
13297 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
Scot Doyle724cb062014-07-11 22:16:30 +000013298
13299 /* HP Chromebook 14 (Celeron 2955U) */
13300 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
Jani Nikulacf6f0af2015-02-19 10:53:39 +020013301
13302 /* Dell Chromebook 11 */
13303 { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present },
Jesse Barnesb690e962010-07-19 13:53:12 -070013304};
13305
13306static void intel_init_quirks(struct drm_device *dev)
13307{
13308 struct pci_dev *d = dev->pdev;
13309 int i;
13310
13311 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
13312 struct intel_quirk *q = &intel_quirks[i];
13313
13314 if (d->device == q->device &&
13315 (d->subsystem_vendor == q->subsystem_vendor ||
13316 q->subsystem_vendor == PCI_ANY_ID) &&
13317 (d->subsystem_device == q->subsystem_device ||
13318 q->subsystem_device == PCI_ANY_ID))
13319 q->hook(dev);
13320 }
Egbert Eich5f85f172012-10-14 15:46:38 +020013321 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
13322 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
13323 intel_dmi_quirks[i].hook(dev);
13324 }
Jesse Barnesb690e962010-07-19 13:53:12 -070013325}
13326
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013327/* Disable the VGA plane that we never use */
13328static void i915_disable_vga(struct drm_device *dev)
13329{
13330 struct drm_i915_private *dev_priv = dev->dev_private;
13331 u8 sr1;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020013332 u32 vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013333
Ville Syrjälä2b37c612014-01-22 21:32:38 +020013334 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013335 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070013336 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013337 sr1 = inb(VGA_SR_DATA);
13338 outb(sr1 | 1<<5, VGA_SR_DATA);
13339 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
13340 udelay(300);
13341
Ville Syrjälä01f5a622014-12-16 18:38:37 +020013342 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013343 POSTING_READ(vga_reg);
13344}
13345
Daniel Vetterf8175862012-04-10 15:50:11 +020013346void intel_modeset_init_hw(struct drm_device *dev)
13347{
Eugeni Dodonova8f78b52012-06-28 15:55:35 -030013348 intel_prepare_ddi(dev);
13349
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +030013350 if (IS_VALLEYVIEW(dev))
13351 vlv_update_cdclk(dev);
13352
Daniel Vetterf8175862012-04-10 15:50:11 +020013353 intel_init_clock_gating(dev);
13354
Daniel Vetter8090c6b2012-06-24 16:42:32 +020013355 intel_enable_gt_powersave(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020013356}
13357
Jesse Barnes79e53942008-11-07 14:24:08 -080013358void intel_modeset_init(struct drm_device *dev)
13359{
Jesse Barnes652c3932009-08-17 13:31:43 -070013360 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau1fe47782014-03-03 17:31:47 +000013361 int sprite, ret;
Damien Lespiau8cc87b72014-03-03 17:31:44 +000013362 enum pipe pipe;
Jesse Barnes46f297f2014-03-07 08:57:48 -080013363 struct intel_crtc *crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -080013364
13365 drm_mode_config_init(dev);
13366
13367 dev->mode_config.min_width = 0;
13368 dev->mode_config.min_height = 0;
13369
Dave Airlie019d96c2011-09-29 16:20:42 +010013370 dev->mode_config.preferred_depth = 24;
13371 dev->mode_config.prefer_shadow = 1;
13372
Tvrtko Ursulin25bab382015-02-10 17:16:16 +000013373 dev->mode_config.allow_fb_modifiers = true;
13374
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020013375 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080013376
Jesse Barnesb690e962010-07-19 13:53:12 -070013377 intel_init_quirks(dev);
13378
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030013379 intel_init_pm(dev);
13380
Ben Widawskye3c74752013-04-05 13:12:39 -070013381 if (INTEL_INFO(dev)->num_pipes == 0)
13382 return;
13383
Jesse Barnese70236a2009-09-21 10:42:27 -070013384 intel_init_display(dev);
Jani Nikula7c10a2b2014-10-27 16:26:43 +020013385 intel_init_audio(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070013386
Chris Wilsona6c45cf2010-09-17 00:32:17 +010013387 if (IS_GEN2(dev)) {
13388 dev->mode_config.max_width = 2048;
13389 dev->mode_config.max_height = 2048;
13390 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070013391 dev->mode_config.max_width = 4096;
13392 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080013393 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010013394 dev->mode_config.max_width = 8192;
13395 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080013396 }
Damien Lespiau068be562014-03-28 14:17:49 +000013397
Ville Syrjälädc41c152014-08-13 11:57:05 +030013398 if (IS_845G(dev) || IS_I865G(dev)) {
13399 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
13400 dev->mode_config.cursor_height = 1023;
13401 } else if (IS_GEN2(dev)) {
Damien Lespiau068be562014-03-28 14:17:49 +000013402 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
13403 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
13404 } else {
13405 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
13406 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
13407 }
13408
Ben Widawsky5d4545a2013-01-17 12:45:15 -080013409 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080013410
Zhao Yakui28c97732009-10-09 11:39:41 +080013411 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070013412 INTEL_INFO(dev)->num_pipes,
13413 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080013414
Damien Lespiau055e3932014-08-18 13:49:10 +010013415 for_each_pipe(dev_priv, pipe) {
Damien Lespiau8cc87b72014-03-03 17:31:44 +000013416 intel_crtc_init(dev, pipe);
Damien Lespiau3bdcfc02015-02-28 14:54:09 +000013417 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau1fe47782014-03-03 17:31:47 +000013418 ret = intel_plane_init(dev, pipe, sprite);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070013419 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030013420 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +000013421 pipe_name(pipe), sprite_name(pipe, sprite), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070013422 }
Jesse Barnes79e53942008-11-07 14:24:08 -080013423 }
13424
Jesse Barnesf42bb702013-12-16 16:34:23 -080013425 intel_init_dpio(dev);
13426
Daniel Vettere72f9fb2013-06-05 13:34:06 +020013427 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013428
Jesse Barnes9cce37f2010-08-13 15:11:26 -070013429 /* Just disable it once at startup */
13430 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080013431 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000013432
13433 /* Just in case the BIOS is doing something questionable. */
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020013434 intel_fbc_disable(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080013435
Daniel Vetter6e9f7982014-05-29 23:54:47 +020013436 drm_modeset_lock_all(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080013437 intel_modeset_setup_hw_state(dev, false);
Daniel Vetter6e9f7982014-05-29 23:54:47 +020013438 drm_modeset_unlock_all(dev);
Jesse Barnes46f297f2014-03-07 08:57:48 -080013439
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013440 for_each_intel_crtc(dev, crtc) {
Jesse Barnes46f297f2014-03-07 08:57:48 -080013441 if (!crtc->active)
13442 continue;
13443
Jesse Barnes46f297f2014-03-07 08:57:48 -080013444 /*
Jesse Barnes46f297f2014-03-07 08:57:48 -080013445 * Note that reserving the BIOS fb up front prevents us
13446 * from stuffing other stolen allocations like the ring
13447 * on top. This prevents some ugliness at boot time, and
13448 * can even allow for smooth boot transitions if the BIOS
13449 * fb is large enough for the active pipe configuration.
13450 */
Damien Lespiau5724dbd2015-01-20 12:51:52 +000013451 if (dev_priv->display.get_initial_plane_config) {
13452 dev_priv->display.get_initial_plane_config(crtc,
Jesse Barnes46f297f2014-03-07 08:57:48 -080013453 &crtc->plane_config);
13454 /*
13455 * If the fb is shared between multiple heads, we'll
13456 * just get the first one.
13457 */
Jesse Barnes484b41d2014-03-07 08:57:55 -080013458 intel_find_plane_obj(crtc, &crtc->plane_config);
Jesse Barnes46f297f2014-03-07 08:57:48 -080013459 }
Jesse Barnes46f297f2014-03-07 08:57:48 -080013460 }
Chris Wilson2c7111d2011-03-29 10:40:27 +010013461}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080013462
Daniel Vetter7fad7982012-07-04 17:51:47 +020013463static void intel_enable_pipe_a(struct drm_device *dev)
13464{
13465 struct intel_connector *connector;
13466 struct drm_connector *crt = NULL;
13467 struct intel_load_detect_pipe load_detect_temp;
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030013468 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
Daniel Vetter7fad7982012-07-04 17:51:47 +020013469
13470 /* We can't just switch on the pipe A, we need to set things up with a
13471 * proper mode and output configuration. As a gross hack, enable pipe A
13472 * by enabling the load detect pipe once. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020013473 for_each_intel_connector(dev, connector) {
Daniel Vetter7fad7982012-07-04 17:51:47 +020013474 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
13475 crt = &connector->base;
13476 break;
13477 }
13478 }
13479
13480 if (!crt)
13481 return;
13482
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030013483 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
13484 intel_release_load_detect_pipe(crt, &load_detect_temp);
Daniel Vetter7fad7982012-07-04 17:51:47 +020013485}
13486
Daniel Vetterfa555832012-10-10 23:14:00 +020013487static bool
13488intel_check_plane_mapping(struct intel_crtc *crtc)
13489{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070013490 struct drm_device *dev = crtc->base.dev;
13491 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020013492 u32 reg, val;
13493
Ben Widawsky7eb552a2013-03-13 14:05:41 -070013494 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020013495 return true;
13496
13497 reg = DSPCNTR(!crtc->plane);
13498 val = I915_READ(reg);
13499
13500 if ((val & DISPLAY_PLANE_ENABLE) &&
13501 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
13502 return false;
13503
13504 return true;
13505}
13506
Daniel Vetter24929352012-07-02 20:28:59 +020013507static void intel_sanitize_crtc(struct intel_crtc *crtc)
13508{
13509 struct drm_device *dev = crtc->base.dev;
13510 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020013511 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +020013512
Daniel Vetter24929352012-07-02 20:28:59 +020013513 /* Clear any frame start delays used for debugging left by the BIOS */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013514 reg = PIPECONF(crtc->config->cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +020013515 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
13516
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030013517 /* restore vblank interrupts to correct state */
Daniel Vetter96256042015-02-13 21:03:42 +010013518 drm_crtc_vblank_reset(&crtc->base);
Ville Syrjäläd297e102014-08-06 14:50:01 +030013519 if (crtc->active) {
13520 update_scanline_offset(crtc);
Daniel Vetter96256042015-02-13 21:03:42 +010013521 drm_crtc_vblank_on(&crtc->base);
13522 }
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030013523
Daniel Vetter24929352012-07-02 20:28:59 +020013524 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020013525 * disable the crtc (and hence change the state) if it is wrong. Note
13526 * that gen4+ has a fixed plane -> pipe mapping. */
13527 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020013528 struct intel_connector *connector;
13529 bool plane;
13530
Daniel Vetter24929352012-07-02 20:28:59 +020013531 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
13532 crtc->base.base.id);
13533
13534 /* Pipe has the wrong plane attached and the plane is active.
13535 * Temporarily change the plane mapping and disable everything
13536 * ... */
13537 plane = crtc->plane;
13538 crtc->plane = !plane;
Daniel Vetter9c8958b2014-07-14 19:35:31 +020013539 crtc->primary_enabled = true;
Daniel Vetter24929352012-07-02 20:28:59 +020013540 dev_priv->display.crtc_disable(&crtc->base);
13541 crtc->plane = plane;
13542
13543 /* ... and break all links. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020013544 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020013545 if (connector->encoder->base.crtc != &crtc->base)
13546 continue;
13547
Egbert Eich7f1950f2014-04-25 10:56:22 +020013548 connector->base.dpms = DRM_MODE_DPMS_OFF;
13549 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020013550 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020013551 /* multiple connectors may have the same encoder:
13552 * handle them and break crtc link separately */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020013553 for_each_intel_connector(dev, connector)
Egbert Eich7f1950f2014-04-25 10:56:22 +020013554 if (connector->encoder->base.crtc == &crtc->base) {
13555 connector->encoder->base.crtc = NULL;
13556 connector->encoder->connectors_active = false;
13557 }
Daniel Vetter24929352012-07-02 20:28:59 +020013558
13559 WARN_ON(crtc->active);
Matt Roper83d65732015-02-25 13:12:16 -080013560 crtc->base.state->enable = false;
Daniel Vetter24929352012-07-02 20:28:59 +020013561 crtc->base.enabled = false;
13562 }
Daniel Vetter24929352012-07-02 20:28:59 +020013563
Daniel Vetter7fad7982012-07-04 17:51:47 +020013564 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
13565 crtc->pipe == PIPE_A && !crtc->active) {
13566 /* BIOS forgot to enable pipe A, this mostly happens after
13567 * resume. Force-enable the pipe to fix this, the update_dpms
13568 * call below we restore the pipe to the right state, but leave
13569 * the required bits on. */
13570 intel_enable_pipe_a(dev);
13571 }
13572
Daniel Vetter24929352012-07-02 20:28:59 +020013573 /* Adjust the state of the output pipe according to whether we
13574 * have active connectors/encoders. */
13575 intel_crtc_update_dpms(&crtc->base);
13576
Matt Roper83d65732015-02-25 13:12:16 -080013577 if (crtc->active != crtc->base.state->enable) {
Daniel Vetter24929352012-07-02 20:28:59 +020013578 struct intel_encoder *encoder;
13579
13580 /* This can happen either due to bugs in the get_hw_state
13581 * functions or because the pipe is force-enabled due to the
13582 * pipe A quirk. */
13583 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
13584 crtc->base.base.id,
Matt Roper83d65732015-02-25 13:12:16 -080013585 crtc->base.state->enable ? "enabled" : "disabled",
Daniel Vetter24929352012-07-02 20:28:59 +020013586 crtc->active ? "enabled" : "disabled");
13587
Matt Roper83d65732015-02-25 13:12:16 -080013588 crtc->base.state->enable = crtc->active;
Daniel Vetter24929352012-07-02 20:28:59 +020013589 crtc->base.enabled = crtc->active;
13590
13591 /* Because we only establish the connector -> encoder ->
13592 * crtc links if something is active, this means the
13593 * crtc is now deactivated. Break the links. connector
13594 * -> encoder links are only establish when things are
13595 * actually up, hence no need to break them. */
13596 WARN_ON(crtc->active);
13597
13598 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
13599 WARN_ON(encoder->connectors_active);
13600 encoder->base.crtc = NULL;
13601 }
13602 }
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020013603
Ville Syrjäläa3ed6aa2014-09-03 14:09:52 +030013604 if (crtc->active || HAS_GMCH_DISPLAY(dev)) {
Daniel Vetter4cc31482014-03-24 00:01:41 +010013605 /*
13606 * We start out with underrun reporting disabled to avoid races.
13607 * For correct bookkeeping mark this on active crtcs.
13608 *
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020013609 * Also on gmch platforms we dont have any hardware bits to
13610 * disable the underrun reporting. Which means we need to start
13611 * out with underrun reporting disabled also on inactive pipes,
13612 * since otherwise we'll complain about the garbage we read when
13613 * e.g. coming up after runtime pm.
13614 *
Daniel Vetter4cc31482014-03-24 00:01:41 +010013615 * No protection against concurrent access is required - at
13616 * worst a fifo underrun happens which also sets this to false.
13617 */
13618 crtc->cpu_fifo_underrun_disabled = true;
13619 crtc->pch_fifo_underrun_disabled = true;
13620 }
Daniel Vetter24929352012-07-02 20:28:59 +020013621}
13622
13623static void intel_sanitize_encoder(struct intel_encoder *encoder)
13624{
13625 struct intel_connector *connector;
13626 struct drm_device *dev = encoder->base.dev;
13627
13628 /* We need to check both for a crtc link (meaning that the
13629 * encoder is active and trying to read from a pipe) and the
13630 * pipe itself being active. */
13631 bool has_active_crtc = encoder->base.crtc &&
13632 to_intel_crtc(encoder->base.crtc)->active;
13633
13634 if (encoder->connectors_active && !has_active_crtc) {
13635 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
13636 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030013637 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020013638
13639 /* Connector is active, but has no active pipe. This is
13640 * fallout from our resume register restoring. Disable
13641 * the encoder manually again. */
13642 if (encoder->base.crtc) {
13643 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
13644 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030013645 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020013646 encoder->disable(encoder);
Ville Syrjäläa62d1492014-06-28 02:04:01 +030013647 if (encoder->post_disable)
13648 encoder->post_disable(encoder);
Daniel Vetter24929352012-07-02 20:28:59 +020013649 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020013650 encoder->base.crtc = NULL;
13651 encoder->connectors_active = false;
Daniel Vetter24929352012-07-02 20:28:59 +020013652
13653 /* Inconsistent output/port/pipe state happens presumably due to
13654 * a bug in one of the get_hw_state functions. Or someplace else
13655 * in our code, like the register restore mess on resume. Clamp
13656 * things to off as a safer default. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020013657 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020013658 if (connector->encoder != encoder)
13659 continue;
Egbert Eich7f1950f2014-04-25 10:56:22 +020013660 connector->base.dpms = DRM_MODE_DPMS_OFF;
13661 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020013662 }
13663 }
13664 /* Enabled encoders without active connectors will be fixed in
13665 * the crtc fixup. */
13666}
13667
Imre Deak04098752014-02-18 00:02:16 +020013668void i915_redisable_vga_power_on(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013669{
13670 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020013671 u32 vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013672
Imre Deak04098752014-02-18 00:02:16 +020013673 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
13674 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
13675 i915_disable_vga(dev);
13676 }
13677}
13678
13679void i915_redisable_vga(struct drm_device *dev)
13680{
13681 struct drm_i915_private *dev_priv = dev->dev_private;
13682
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030013683 /* This function can be called both from intel_modeset_setup_hw_state or
13684 * at a very early point in our resume sequence, where the power well
13685 * structures are not yet restored. Since this function is at a very
13686 * paranoid "someone might have enabled VGA while we were not looking"
13687 * level, just check if the power well is enabled instead of trying to
13688 * follow the "don't touch the power well if we don't need it" policy
13689 * the rest of the driver uses. */
Daniel Vetterf458ebb2014-09-30 10:56:39 +020013690 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_VGA))
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030013691 return;
13692
Imre Deak04098752014-02-18 00:02:16 +020013693 i915_redisable_vga_power_on(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010013694}
13695
Ville Syrjälä98ec7732014-04-30 17:43:01 +030013696static bool primary_get_hw_state(struct intel_crtc *crtc)
13697{
13698 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
13699
13700 if (!crtc->active)
13701 return false;
13702
13703 return I915_READ(DSPCNTR(crtc->plane)) & DISPLAY_PLANE_ENABLE;
13704}
13705
Daniel Vetter30e984d2013-06-05 13:34:17 +020013706static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020013707{
13708 struct drm_i915_private *dev_priv = dev->dev_private;
13709 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020013710 struct intel_crtc *crtc;
13711 struct intel_encoder *encoder;
13712 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020013713 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020013714
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013715 for_each_intel_crtc(dev, crtc) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013716 memset(crtc->config, 0, sizeof(*crtc->config));
Daniel Vetter3b117c82013-04-17 20:15:07 +020013717
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013718 crtc->config->quirks |= PIPE_CONFIG_QUIRK_INHERITED_MODE;
Daniel Vetter99535992014-04-13 12:00:33 +020013719
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010013720 crtc->active = dev_priv->display.get_pipe_config(crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013721 crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020013722
Matt Roper83d65732015-02-25 13:12:16 -080013723 crtc->base.state->enable = crtc->active;
Daniel Vetter24929352012-07-02 20:28:59 +020013724 crtc->base.enabled = crtc->active;
Ville Syrjälä98ec7732014-04-30 17:43:01 +030013725 crtc->primary_enabled = primary_get_hw_state(crtc);
Daniel Vetter24929352012-07-02 20:28:59 +020013726
13727 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
13728 crtc->base.base.id,
13729 crtc->active ? "enabled" : "disabled");
13730 }
13731
Daniel Vetter53589012013-06-05 13:34:16 +020013732 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13733 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13734
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013735 pll->on = pll->get_hw_state(dev_priv, pll,
13736 &pll->config.hw_state);
Daniel Vetter53589012013-06-05 13:34:16 +020013737 pll->active = 0;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013738 pll->config.crtc_mask = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013739 for_each_intel_crtc(dev, crtc) {
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020013740 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll) {
Daniel Vetter53589012013-06-05 13:34:16 +020013741 pll->active++;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013742 pll->config.crtc_mask |= 1 << crtc->pipe;
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020013743 }
Daniel Vetter53589012013-06-05 13:34:16 +020013744 }
Daniel Vetter53589012013-06-05 13:34:16 +020013745
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020013746 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013747 pll->name, pll->config.crtc_mask, pll->on);
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030013748
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013749 if (pll->config.crtc_mask)
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030013750 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
Daniel Vetter53589012013-06-05 13:34:16 +020013751 }
13752
Damien Lespiaub2784e12014-08-05 11:29:37 +010013753 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020013754 pipe = 0;
13755
13756 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -070013757 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
13758 encoder->base.crtc = &crtc->base;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013759 encoder->get_config(encoder, crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020013760 } else {
13761 encoder->base.crtc = NULL;
13762 }
13763
13764 encoder->connectors_active = false;
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010013765 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
Daniel Vetter24929352012-07-02 20:28:59 +020013766 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030013767 encoder->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020013768 encoder->base.crtc ? "enabled" : "disabled",
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010013769 pipe_name(pipe));
Daniel Vetter24929352012-07-02 20:28:59 +020013770 }
13771
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020013772 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020013773 if (connector->get_hw_state(connector)) {
13774 connector->base.dpms = DRM_MODE_DPMS_ON;
13775 connector->encoder->connectors_active = true;
13776 connector->base.encoder = &connector->encoder->base;
13777 } else {
13778 connector->base.dpms = DRM_MODE_DPMS_OFF;
13779 connector->base.encoder = NULL;
13780 }
13781 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
13782 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030013783 connector->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020013784 connector->base.encoder ? "enabled" : "disabled");
13785 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020013786}
13787
13788/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
13789 * and i915 state tracking structures. */
13790void intel_modeset_setup_hw_state(struct drm_device *dev,
13791 bool force_restore)
13792{
13793 struct drm_i915_private *dev_priv = dev->dev_private;
13794 enum pipe pipe;
Daniel Vetter30e984d2013-06-05 13:34:17 +020013795 struct intel_crtc *crtc;
13796 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020013797 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020013798
13799 intel_modeset_readout_hw_state(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020013800
Jesse Barnesbabea612013-06-26 18:57:38 +030013801 /*
13802 * Now that we have the config, copy it to each CRTC struct
13803 * Note that this could go away if we move to using crtc_config
13804 * checking everywhere.
13805 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013806 for_each_intel_crtc(dev, crtc) {
Jani Nikulad330a952014-01-21 11:24:25 +020013807 if (crtc->active && i915.fastboot) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013808 intel_mode_from_pipe_config(&crtc->base.mode,
13809 crtc->config);
Jesse Barnesbabea612013-06-26 18:57:38 +030013810 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
13811 crtc->base.base.id);
13812 drm_mode_debug_printmodeline(&crtc->base.mode);
13813 }
13814 }
13815
Daniel Vetter24929352012-07-02 20:28:59 +020013816 /* HW state is read out, now we need to sanitize this mess. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010013817 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020013818 intel_sanitize_encoder(encoder);
13819 }
13820
Damien Lespiau055e3932014-08-18 13:49:10 +010013821 for_each_pipe(dev_priv, pipe) {
Daniel Vetter24929352012-07-02 20:28:59 +020013822 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
13823 intel_sanitize_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020013824 intel_dump_pipe_config(crtc, crtc->config,
13825 "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020013826 }
Daniel Vetter9a935852012-07-05 22:34:27 +020013827
Daniel Vetter35c95372013-07-17 06:55:04 +020013828 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13829 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13830
13831 if (!pll->on || pll->active)
13832 continue;
13833
13834 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
13835
13836 pll->disable(dev_priv, pll);
13837 pll->on = false;
13838 }
13839
Pradeep Bhat30789992014-11-04 17:06:45 +000013840 if (IS_GEN9(dev))
13841 skl_wm_get_hw_state(dev);
13842 else if (HAS_PCH_SPLIT(dev))
Ville Syrjälä243e6a42013-10-14 14:55:24 +030013843 ilk_wm_get_hw_state(dev);
13844
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010013845 if (force_restore) {
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030013846 i915_redisable_vga(dev);
13847
Daniel Vetterf30da182013-04-11 20:22:50 +020013848 /*
13849 * We need to use raw interfaces for restoring state to avoid
13850 * checking (bogus) intermediate states.
13851 */
Damien Lespiau055e3932014-08-18 13:49:10 +010013852 for_each_pipe(dev_priv, pipe) {
Jesse Barnesb5644d02013-03-26 13:25:27 -070013853 struct drm_crtc *crtc =
13854 dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vetterf30da182013-04-11 20:22:50 +020013855
Jesse Barnes7f27126e2014-11-05 14:26:06 -080013856 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
13857 crtc->primary->fb);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010013858 }
13859 } else {
13860 intel_modeset_update_staged_output_state(dev);
13861 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013862
13863 intel_modeset_check_state(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +010013864}
13865
13866void intel_modeset_gem_init(struct drm_device *dev)
13867{
Jesse Barnes92122782014-10-09 12:57:42 -070013868 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes484b41d2014-03-07 08:57:55 -080013869 struct drm_crtc *c;
Matt Roper2ff8fde2014-07-08 07:50:07 -070013870 struct drm_i915_gem_object *obj;
Jesse Barnes484b41d2014-03-07 08:57:55 -080013871
Imre Deakae484342014-03-31 15:10:44 +030013872 mutex_lock(&dev->struct_mutex);
13873 intel_init_gt_powersave(dev);
13874 mutex_unlock(&dev->struct_mutex);
13875
Jesse Barnes92122782014-10-09 12:57:42 -070013876 /*
13877 * There may be no VBT; and if the BIOS enabled SSC we can
13878 * just keep using it to avoid unnecessary flicker. Whereas if the
13879 * BIOS isn't using it, don't assume it will work even if the VBT
13880 * indicates as much.
13881 */
13882 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
13883 dev_priv->vbt.lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
13884 DREF_SSC1_ENABLE);
13885
Chris Wilson1833b132012-05-09 11:56:28 +010013886 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020013887
13888 intel_setup_overlay(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -080013889
13890 /*
13891 * Make sure any fbs we allocated at startup are properly
13892 * pinned & fenced. When we do the allocation it's too early
13893 * for this.
13894 */
13895 mutex_lock(&dev->struct_mutex);
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010013896 for_each_crtc(dev, c) {
Matt Roper2ff8fde2014-07-08 07:50:07 -070013897 obj = intel_fb_obj(c->primary->fb);
13898 if (obj == NULL)
Jesse Barnes484b41d2014-03-07 08:57:55 -080013899 continue;
13900
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +000013901 if (intel_pin_and_fence_fb_obj(c->primary,
13902 c->primary->fb,
13903 NULL)) {
Jesse Barnes484b41d2014-03-07 08:57:55 -080013904 DRM_ERROR("failed to pin boot fb on pipe %d\n",
13905 to_intel_crtc(c)->pipe);
Dave Airlie66e514c2014-04-03 07:51:54 +100013906 drm_framebuffer_unreference(c->primary->fb);
13907 c->primary->fb = NULL;
Matt Roperafd65eb2015-02-03 13:10:04 -080013908 update_state_fb(c->primary);
Jesse Barnes484b41d2014-03-07 08:57:55 -080013909 }
13910 }
13911 mutex_unlock(&dev->struct_mutex);
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020013912
13913 intel_backlight_register(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080013914}
13915
Imre Deak4932e2c2014-02-11 17:12:48 +020013916void intel_connector_unregister(struct intel_connector *intel_connector)
13917{
13918 struct drm_connector *connector = &intel_connector->base;
13919
13920 intel_panel_destroy_backlight(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +010013921 drm_connector_unregister(connector);
Imre Deak4932e2c2014-02-11 17:12:48 +020013922}
13923
Jesse Barnes79e53942008-11-07 14:24:08 -080013924void intel_modeset_cleanup(struct drm_device *dev)
13925{
Jesse Barnes652c3932009-08-17 13:31:43 -070013926 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid9255d52013-09-26 20:05:59 -030013927 struct drm_connector *connector;
Jesse Barnes652c3932009-08-17 13:31:43 -070013928
Imre Deak2eb52522014-11-19 15:30:05 +020013929 intel_disable_gt_powersave(dev);
13930
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020013931 intel_backlight_unregister(dev);
13932
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013933 /*
13934 * Interrupts and polling as the first thing to avoid creating havoc.
Imre Deak2eb52522014-11-19 15:30:05 +020013935 * Too much stuff here (turning of connectors, ...) would
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013936 * experience fancy races otherwise.
13937 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +020013938 intel_irq_uninstall(dev_priv);
Jesse Barneseb21b922014-06-20 11:57:33 -070013939
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013940 /*
13941 * Due to the hpd irq storm handling the hotplug work can re-arm the
13942 * poll handlers. Hence disable polling after hpd handling is shut down.
13943 */
Keith Packardf87ea762010-10-03 19:36:26 -070013944 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020013945
Jesse Barnes652c3932009-08-17 13:31:43 -070013946 mutex_lock(&dev->struct_mutex);
13947
Jesse Barnes723bfd72010-10-07 16:01:13 -070013948 intel_unregister_dsm_handler();
13949
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020013950 intel_fbc_disable(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070013951
Kristian Høgsberg69341a52009-11-11 12:19:17 -050013952 mutex_unlock(&dev->struct_mutex);
13953
Chris Wilson1630fe72011-07-08 12:22:42 +010013954 /* flush any delayed tasks or pending work */
13955 flush_scheduled_work();
13956
Jani Nikuladb31af1d2013-11-08 16:48:53 +020013957 /* destroy the backlight and sysfs files before encoders/connectors */
13958 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Imre Deak4932e2c2014-02-11 17:12:48 +020013959 struct intel_connector *intel_connector;
13960
13961 intel_connector = to_intel_connector(connector);
13962 intel_connector->unregister(intel_connector);
Jani Nikuladb31af1d2013-11-08 16:48:53 +020013963 }
Paulo Zanonid9255d52013-09-26 20:05:59 -030013964
Jesse Barnes79e53942008-11-07 14:24:08 -080013965 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010013966
13967 intel_cleanup_overlay(dev);
Imre Deakae484342014-03-31 15:10:44 +030013968
13969 mutex_lock(&dev->struct_mutex);
13970 intel_cleanup_gt_powersave(dev);
13971 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080013972}
13973
Dave Airlie28d52042009-09-21 14:33:58 +100013974/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +080013975 * Return which encoder is currently attached for connector.
13976 */
Chris Wilsondf0e9242010-09-09 16:20:55 +010013977struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -080013978{
Chris Wilsondf0e9242010-09-09 16:20:55 +010013979 return &intel_attached_encoder(connector)->base;
13980}
Jesse Barnes79e53942008-11-07 14:24:08 -080013981
Chris Wilsondf0e9242010-09-09 16:20:55 +010013982void intel_connector_attach_encoder(struct intel_connector *connector,
13983 struct intel_encoder *encoder)
13984{
13985 connector->encoder = encoder;
13986 drm_mode_connector_attach_encoder(&connector->base,
13987 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080013988}
Dave Airlie28d52042009-09-21 14:33:58 +100013989
13990/*
13991 * set vga decode state - true == enable VGA decode
13992 */
13993int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
13994{
13995 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona885b3c2013-12-17 14:34:50 +000013996 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
Dave Airlie28d52042009-09-21 14:33:58 +100013997 u16 gmch_ctrl;
13998
Chris Wilson75fa0412014-02-07 18:37:02 -020013999 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
14000 DRM_ERROR("failed to read control word\n");
14001 return -EIO;
14002 }
14003
Chris Wilsonc0cc8a52014-02-07 18:37:03 -020014004 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
14005 return 0;
14006
Dave Airlie28d52042009-09-21 14:33:58 +100014007 if (state)
14008 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
14009 else
14010 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
Chris Wilson75fa0412014-02-07 18:37:02 -020014011
14012 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
14013 DRM_ERROR("failed to write control word\n");
14014 return -EIO;
14015 }
14016
Dave Airlie28d52042009-09-21 14:33:58 +100014017 return 0;
14018}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014019
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014020struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030014021
14022 u32 power_well_driver;
14023
Chris Wilson63b66e52013-08-08 15:12:06 +020014024 int num_transcoders;
14025
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014026 struct intel_cursor_error_state {
14027 u32 control;
14028 u32 position;
14029 u32 base;
14030 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010014031 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014032
14033 struct intel_pipe_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020014034 bool power_domain_on;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014035 u32 source;
Imre Deakf301b1e12014-04-18 15:55:04 +030014036 u32 stat;
Damien Lespiau52331302012-08-15 19:23:25 +010014037 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014038
14039 struct intel_plane_error_state {
14040 u32 control;
14041 u32 stride;
14042 u32 size;
14043 u32 pos;
14044 u32 addr;
14045 u32 surface;
14046 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010014047 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020014048
14049 struct intel_transcoder_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020014050 bool power_domain_on;
Chris Wilson63b66e52013-08-08 15:12:06 +020014051 enum transcoder cpu_transcoder;
14052
14053 u32 conf;
14054
14055 u32 htotal;
14056 u32 hblank;
14057 u32 hsync;
14058 u32 vtotal;
14059 u32 vblank;
14060 u32 vsync;
14061 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014062};
14063
14064struct intel_display_error_state *
14065intel_display_capture_error_state(struct drm_device *dev)
14066{
Jani Nikulafbee40d2014-03-31 14:27:18 +030014067 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014068 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020014069 int transcoders[] = {
14070 TRANSCODER_A,
14071 TRANSCODER_B,
14072 TRANSCODER_C,
14073 TRANSCODER_EDP,
14074 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014075 int i;
14076
Chris Wilson63b66e52013-08-08 15:12:06 +020014077 if (INTEL_INFO(dev)->num_pipes == 0)
14078 return NULL;
14079
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020014080 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014081 if (error == NULL)
14082 return NULL;
14083
Imre Deak190be112013-11-25 17:15:31 +020014084 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030014085 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
14086
Damien Lespiau055e3932014-08-18 13:49:10 +010014087 for_each_pipe(dev_priv, i) {
Imre Deakddf9c532013-11-27 22:02:02 +020014088 error->pipe[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020014089 __intel_display_power_is_enabled(dev_priv,
14090 POWER_DOMAIN_PIPE(i));
Imre Deakddf9c532013-11-27 22:02:02 +020014091 if (!error->pipe[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020014092 continue;
14093
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030014094 error->cursor[i].control = I915_READ(CURCNTR(i));
14095 error->cursor[i].position = I915_READ(CURPOS(i));
14096 error->cursor[i].base = I915_READ(CURBASE(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014097
14098 error->plane[i].control = I915_READ(DSPCNTR(i));
14099 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030014100 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030014101 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030014102 error->plane[i].pos = I915_READ(DSPPOS(i));
14103 }
Paulo Zanonica291362013-03-06 20:03:14 -030014104 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
14105 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014106 if (INTEL_INFO(dev)->gen >= 4) {
14107 error->plane[i].surface = I915_READ(DSPSURF(i));
14108 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
14109 }
14110
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014111 error->pipe[i].source = I915_READ(PIPESRC(i));
Imre Deakf301b1e12014-04-18 15:55:04 +030014112
Sonika Jindal3abfce72014-07-21 15:23:43 +053014113 if (HAS_GMCH_DISPLAY(dev))
Imre Deakf301b1e12014-04-18 15:55:04 +030014114 error->pipe[i].stat = I915_READ(PIPESTAT(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020014115 }
14116
14117 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
14118 if (HAS_DDI(dev_priv->dev))
14119 error->num_transcoders++; /* Account for eDP. */
14120
14121 for (i = 0; i < error->num_transcoders; i++) {
14122 enum transcoder cpu_transcoder = transcoders[i];
14123
Imre Deakddf9c532013-11-27 22:02:02 +020014124 error->transcoder[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020014125 __intel_display_power_is_enabled(dev_priv,
Paulo Zanoni38cc1da2013-12-20 15:09:41 -020014126 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020014127 if (!error->transcoder[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020014128 continue;
14129
Chris Wilson63b66e52013-08-08 15:12:06 +020014130 error->transcoder[i].cpu_transcoder = cpu_transcoder;
14131
14132 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
14133 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
14134 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
14135 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
14136 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
14137 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
14138 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014139 }
14140
14141 return error;
14142}
14143
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014144#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
14145
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014146void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014147intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014148 struct drm_device *dev,
14149 struct intel_display_error_state *error)
14150{
Damien Lespiau055e3932014-08-18 13:49:10 +010014151 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014152 int i;
14153
Chris Wilson63b66e52013-08-08 15:12:06 +020014154 if (!error)
14155 return;
14156
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014157 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Imre Deak190be112013-11-25 17:15:31 +020014158 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014159 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030014160 error->power_well_driver);
Damien Lespiau055e3932014-08-18 13:49:10 +010014161 for_each_pipe(dev_priv, i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014162 err_printf(m, "Pipe [%d]:\n", i);
Imre Deakddf9c532013-11-27 22:02:02 +020014163 err_printf(m, " Power: %s\n",
14164 error->pipe[i].power_domain_on ? "on" : "off");
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014165 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Imre Deakf301b1e12014-04-18 15:55:04 +030014166 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014167
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014168 err_printf(m, "Plane [%d]:\n", i);
14169 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
14170 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030014171 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014172 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
14173 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030014174 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030014175 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014176 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014177 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014178 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
14179 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014180 }
14181
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030014182 err_printf(m, "Cursor [%d]:\n", i);
14183 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
14184 err_printf(m, " POS: %08x\n", error->cursor[i].position);
14185 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014186 }
Chris Wilson63b66e52013-08-08 15:12:06 +020014187
14188 for (i = 0; i < error->num_transcoders; i++) {
Chris Wilson1cf84bb2013-10-21 09:10:33 +010014189 err_printf(m, "CPU transcoder: %c\n",
Chris Wilson63b66e52013-08-08 15:12:06 +020014190 transcoder_name(error->transcoder[i].cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020014191 err_printf(m, " Power: %s\n",
14192 error->transcoder[i].power_domain_on ? "on" : "off");
Chris Wilson63b66e52013-08-08 15:12:06 +020014193 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
14194 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
14195 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
14196 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
14197 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
14198 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
14199 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
14200 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000014201}
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014202
14203void intel_modeset_preclose(struct drm_device *dev, struct drm_file *file)
14204{
14205 struct intel_crtc *crtc;
14206
14207 for_each_intel_crtc(dev, crtc) {
14208 struct intel_unpin_work *work;
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014209
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020014210 spin_lock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014211
14212 work = crtc->unpin_work;
14213
14214 if (work && work->event &&
14215 work->event->base.file_priv == file) {
14216 kfree(work->event);
14217 work->event = NULL;
14218 }
14219
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020014220 spin_unlock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030014221 }
14222}