blob: dadb52a4c26c3afc127ff15626799be605a028c9 [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
Ander Conselvan de Oliveira8c7b5cc2015-04-21 17:13:19 +030085static int intel_set_mode(struct drm_crtc *crtc,
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020086 struct drm_atomic_state *state);
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);
Chandra Konduru549e2bf2015-04-07 15:28:38 -0700105static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
106 struct intel_crtc_state *crtc_state);
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200107static int i9xx_get_refclk(const struct intel_crtc_state *crtc_state,
108 int num_connectors);
Maarten Lankhorstce22dba2015-04-21 17:12:56 +0300109static void intel_crtc_enable_planes(struct drm_crtc *crtc);
110static void intel_crtc_disable_planes(struct drm_crtc *crtc);
Damien Lespiaue7457a92013-08-08 22:28:59 +0100111
Dave Airlie0e32b392014-05-02 14:02:48 +1000112static struct intel_encoder *intel_find_encoder(struct intel_connector *connector, int pipe)
113{
114 if (!connector->mst_port)
115 return connector->encoder;
116 else
117 return &connector->mst_port->mst_encoders[pipe]->base;
118}
119
Jesse Barnes79e53942008-11-07 14:24:08 -0800120typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -0400121 int min, max;
Jesse Barnes79e53942008-11-07 14:24:08 -0800122} intel_range_t;
123
124typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -0400125 int dot_limit;
126 int p2_slow, p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -0800127} intel_p2_t;
128
Ma Lingd4906092009-03-18 20:13:27 +0800129typedef struct intel_limit intel_limit_t;
130struct intel_limit {
Akshay Joshi0206e352011-08-16 15:34:10 -0400131 intel_range_t dot, vco, n, m, m1, m2, p, p1;
132 intel_p2_t p2;
Ma Lingd4906092009-03-18 20:13:27 +0800133};
Jesse Barnes79e53942008-11-07 14:24:08 -0800134
Daniel Vetterd2acd212012-10-20 20:57:43 +0200135int
136intel_pch_rawclk(struct drm_device *dev)
137{
138 struct drm_i915_private *dev_priv = dev->dev_private;
139
140 WARN_ON(!HAS_PCH_SPLIT(dev));
141
142 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
143}
144
Chris Wilson021357a2010-09-07 20:54:59 +0100145static inline u32 /* units of 100MHz */
146intel_fdi_link_freq(struct drm_device *dev)
147{
Chris Wilson8b99e682010-10-13 09:59:17 +0100148 if (IS_GEN5(dev)) {
149 struct drm_i915_private *dev_priv = dev->dev_private;
150 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
151 } else
152 return 27;
Chris Wilson021357a2010-09-07 20:54:59 +0100153}
154
Daniel Vetter5d536e22013-07-06 12:52:06 +0200155static const intel_limit_t intel_limits_i8xx_dac = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400156 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200157 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200158 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400159 .m = { .min = 96, .max = 140 },
160 .m1 = { .min = 18, .max = 26 },
161 .m2 = { .min = 6, .max = 16 },
162 .p = { .min = 4, .max = 128 },
163 .p1 = { .min = 2, .max = 33 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700164 .p2 = { .dot_limit = 165000,
165 .p2_slow = 4, .p2_fast = 2 },
Keith Packarde4b36692009-06-05 19:22:17 -0700166};
167
Daniel Vetter5d536e22013-07-06 12:52:06 +0200168static const intel_limit_t intel_limits_i8xx_dvo = {
169 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200170 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200171 .n = { .min = 2, .max = 16 },
Daniel Vetter5d536e22013-07-06 12:52:06 +0200172 .m = { .min = 96, .max = 140 },
173 .m1 = { .min = 18, .max = 26 },
174 .m2 = { .min = 6, .max = 16 },
175 .p = { .min = 4, .max = 128 },
176 .p1 = { .min = 2, .max = 33 },
177 .p2 = { .dot_limit = 165000,
178 .p2_slow = 4, .p2_fast = 4 },
179};
180
Keith Packarde4b36692009-06-05 19:22:17 -0700181static const intel_limit_t intel_limits_i8xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400182 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200183 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200184 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400185 .m = { .min = 96, .max = 140 },
186 .m1 = { .min = 18, .max = 26 },
187 .m2 = { .min = 6, .max = 16 },
188 .p = { .min = 4, .max = 128 },
189 .p1 = { .min = 1, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700190 .p2 = { .dot_limit = 165000,
191 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700192};
Eric Anholt273e27c2011-03-30 13:01:10 -0700193
Keith Packarde4b36692009-06-05 19:22:17 -0700194static const intel_limit_t intel_limits_i9xx_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400195 .dot = { .min = 20000, .max = 400000 },
196 .vco = { .min = 1400000, .max = 2800000 },
197 .n = { .min = 1, .max = 6 },
198 .m = { .min = 70, .max = 120 },
Patrik Jakobsson4f7dfb62013-02-13 22:20:22 +0100199 .m1 = { .min = 8, .max = 18 },
200 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400201 .p = { .min = 5, .max = 80 },
202 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700203 .p2 = { .dot_limit = 200000,
204 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700205};
206
207static const intel_limit_t intel_limits_i9xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400208 .dot = { .min = 20000, .max = 400000 },
209 .vco = { .min = 1400000, .max = 2800000 },
210 .n = { .min = 1, .max = 6 },
211 .m = { .min = 70, .max = 120 },
Patrik Jakobsson53a7d2d2013-02-13 22:20:21 +0100212 .m1 = { .min = 8, .max = 18 },
213 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400214 .p = { .min = 7, .max = 98 },
215 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700216 .p2 = { .dot_limit = 112000,
217 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700218};
219
Eric Anholt273e27c2011-03-30 13:01:10 -0700220
Keith Packarde4b36692009-06-05 19:22:17 -0700221static const intel_limit_t intel_limits_g4x_sdvo = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700222 .dot = { .min = 25000, .max = 270000 },
223 .vco = { .min = 1750000, .max = 3500000},
224 .n = { .min = 1, .max = 4 },
225 .m = { .min = 104, .max = 138 },
226 .m1 = { .min = 17, .max = 23 },
227 .m2 = { .min = 5, .max = 11 },
228 .p = { .min = 10, .max = 30 },
229 .p1 = { .min = 1, .max = 3},
230 .p2 = { .dot_limit = 270000,
231 .p2_slow = 10,
232 .p2_fast = 10
Ma Ling044c7c42009-03-18 20:13:23 +0800233 },
Keith Packarde4b36692009-06-05 19:22:17 -0700234};
235
236static const intel_limit_t intel_limits_g4x_hdmi = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700237 .dot = { .min = 22000, .max = 400000 },
238 .vco = { .min = 1750000, .max = 3500000},
239 .n = { .min = 1, .max = 4 },
240 .m = { .min = 104, .max = 138 },
241 .m1 = { .min = 16, .max = 23 },
242 .m2 = { .min = 5, .max = 11 },
243 .p = { .min = 5, .max = 80 },
244 .p1 = { .min = 1, .max = 8},
245 .p2 = { .dot_limit = 165000,
246 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700247};
248
249static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700250 .dot = { .min = 20000, .max = 115000 },
251 .vco = { .min = 1750000, .max = 3500000 },
252 .n = { .min = 1, .max = 3 },
253 .m = { .min = 104, .max = 138 },
254 .m1 = { .min = 17, .max = 23 },
255 .m2 = { .min = 5, .max = 11 },
256 .p = { .min = 28, .max = 112 },
257 .p1 = { .min = 2, .max = 8 },
258 .p2 = { .dot_limit = 0,
259 .p2_slow = 14, .p2_fast = 14
Ma Ling044c7c42009-03-18 20:13:23 +0800260 },
Keith Packarde4b36692009-06-05 19:22:17 -0700261};
262
263static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700264 .dot = { .min = 80000, .max = 224000 },
265 .vco = { .min = 1750000, .max = 3500000 },
266 .n = { .min = 1, .max = 3 },
267 .m = { .min = 104, .max = 138 },
268 .m1 = { .min = 17, .max = 23 },
269 .m2 = { .min = 5, .max = 11 },
270 .p = { .min = 14, .max = 42 },
271 .p1 = { .min = 2, .max = 6 },
272 .p2 = { .dot_limit = 0,
273 .p2_slow = 7, .p2_fast = 7
Ma Ling044c7c42009-03-18 20:13:23 +0800274 },
Keith Packarde4b36692009-06-05 19:22:17 -0700275};
276
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500277static const intel_limit_t intel_limits_pineview_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400278 .dot = { .min = 20000, .max = 400000},
279 .vco = { .min = 1700000, .max = 3500000 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700280 /* Pineview's Ncounter is a ring counter */
Akshay Joshi0206e352011-08-16 15:34:10 -0400281 .n = { .min = 3, .max = 6 },
282 .m = { .min = 2, .max = 256 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700283 /* Pineview only has one combined m divider, which we treat as m2. */
Akshay Joshi0206e352011-08-16 15:34:10 -0400284 .m1 = { .min = 0, .max = 0 },
285 .m2 = { .min = 0, .max = 254 },
286 .p = { .min = 5, .max = 80 },
287 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700288 .p2 = { .dot_limit = 200000,
289 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700290};
291
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500292static const intel_limit_t intel_limits_pineview_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400293 .dot = { .min = 20000, .max = 400000 },
294 .vco = { .min = 1700000, .max = 3500000 },
295 .n = { .min = 3, .max = 6 },
296 .m = { .min = 2, .max = 256 },
297 .m1 = { .min = 0, .max = 0 },
298 .m2 = { .min = 0, .max = 254 },
299 .p = { .min = 7, .max = 112 },
300 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700301 .p2 = { .dot_limit = 112000,
302 .p2_slow = 14, .p2_fast = 14 },
Keith Packarde4b36692009-06-05 19:22:17 -0700303};
304
Eric Anholt273e27c2011-03-30 13:01:10 -0700305/* Ironlake / Sandybridge
306 *
307 * We calculate clock using (register_value + 2) for N/M1/M2, so here
308 * the range value for them is (actual_value - 2).
309 */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800310static const intel_limit_t intel_limits_ironlake_dac = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700311 .dot = { .min = 25000, .max = 350000 },
312 .vco = { .min = 1760000, .max = 3510000 },
313 .n = { .min = 1, .max = 5 },
314 .m = { .min = 79, .max = 127 },
315 .m1 = { .min = 12, .max = 22 },
316 .m2 = { .min = 5, .max = 9 },
317 .p = { .min = 5, .max = 80 },
318 .p1 = { .min = 1, .max = 8 },
319 .p2 = { .dot_limit = 225000,
320 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700321};
322
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800323static const intel_limit_t intel_limits_ironlake_single_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700324 .dot = { .min = 25000, .max = 350000 },
325 .vco = { .min = 1760000, .max = 3510000 },
326 .n = { .min = 1, .max = 3 },
327 .m = { .min = 79, .max = 118 },
328 .m1 = { .min = 12, .max = 22 },
329 .m2 = { .min = 5, .max = 9 },
330 .p = { .min = 28, .max = 112 },
331 .p1 = { .min = 2, .max = 8 },
332 .p2 = { .dot_limit = 225000,
333 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800334};
335
336static const intel_limit_t intel_limits_ironlake_dual_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700337 .dot = { .min = 25000, .max = 350000 },
338 .vco = { .min = 1760000, .max = 3510000 },
339 .n = { .min = 1, .max = 3 },
340 .m = { .min = 79, .max = 127 },
341 .m1 = { .min = 12, .max = 22 },
342 .m2 = { .min = 5, .max = 9 },
343 .p = { .min = 14, .max = 56 },
344 .p1 = { .min = 2, .max = 8 },
345 .p2 = { .dot_limit = 225000,
346 .p2_slow = 7, .p2_fast = 7 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800347};
348
Eric Anholt273e27c2011-03-30 13:01:10 -0700349/* LVDS 100mhz refclk limits. */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800350static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700351 .dot = { .min = 25000, .max = 350000 },
352 .vco = { .min = 1760000, .max = 3510000 },
353 .n = { .min = 1, .max = 2 },
354 .m = { .min = 79, .max = 126 },
355 .m1 = { .min = 12, .max = 22 },
356 .m2 = { .min = 5, .max = 9 },
357 .p = { .min = 28, .max = 112 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400358 .p1 = { .min = 2, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700359 .p2 = { .dot_limit = 225000,
360 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800361};
362
363static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700364 .dot = { .min = 25000, .max = 350000 },
365 .vco = { .min = 1760000, .max = 3510000 },
366 .n = { .min = 1, .max = 3 },
367 .m = { .min = 79, .max = 126 },
368 .m1 = { .min = 12, .max = 22 },
369 .m2 = { .min = 5, .max = 9 },
370 .p = { .min = 14, .max = 42 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400371 .p1 = { .min = 2, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700372 .p2 = { .dot_limit = 225000,
373 .p2_slow = 7, .p2_fast = 7 },
Zhao Yakui45476682009-12-31 16:06:04 +0800374};
375
Ville Syrjälädc730512013-09-24 21:26:30 +0300376static const intel_limit_t intel_limits_vlv = {
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300377 /*
378 * These are the data rate limits (measured in fast clocks)
379 * since those are the strictest limits we have. The fast
380 * clock and actual rate limits are more relaxed, so checking
381 * them would make no difference.
382 */
383 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
Daniel Vetter75e53982013-04-18 21:10:43 +0200384 .vco = { .min = 4000000, .max = 6000000 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700385 .n = { .min = 1, .max = 7 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700386 .m1 = { .min = 2, .max = 3 },
387 .m2 = { .min = 11, .max = 156 },
Ville Syrjäläb99ab662013-09-24 21:26:26 +0300388 .p1 = { .min = 2, .max = 3 },
Ville Syrjälä5fdc9c492013-09-24 21:26:29 +0300389 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700390};
391
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300392static const intel_limit_t intel_limits_chv = {
393 /*
394 * These are the data rate limits (measured in fast clocks)
395 * since those are the strictest limits we have. The fast
396 * clock and actual rate limits are more relaxed, so checking
397 * them would make no difference.
398 */
399 .dot = { .min = 25000 * 5, .max = 540000 * 5},
Ville Syrjälä17fe1022015-02-26 21:01:52 +0200400 .vco = { .min = 4800000, .max = 6480000 },
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300401 .n = { .min = 1, .max = 1 },
402 .m1 = { .min = 2, .max = 2 },
403 .m2 = { .min = 24 << 22, .max = 175 << 22 },
404 .p1 = { .min = 2, .max = 4 },
405 .p2 = { .p2_slow = 1, .p2_fast = 14 },
406};
407
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200408static const intel_limit_t intel_limits_bxt = {
409 /* FIXME: find real dot limits */
410 .dot = { .min = 0, .max = INT_MAX },
411 .vco = { .min = 4800000, .max = 6480000 },
412 .n = { .min = 1, .max = 1 },
413 .m1 = { .min = 2, .max = 2 },
414 /* FIXME: find real m2 limits */
415 .m2 = { .min = 2 << 22, .max = 255 << 22 },
416 .p1 = { .min = 2, .max = 4 },
417 .p2 = { .p2_slow = 1, .p2_fast = 20 },
418};
419
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300420static void vlv_clock(int refclk, intel_clock_t *clock)
421{
422 clock->m = clock->m1 * clock->m2;
423 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200424 if (WARN_ON(clock->n == 0 || clock->p == 0))
425 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300426 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
427 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300428}
429
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300430/**
431 * Returns whether any output on the specified pipe is of the specified type
432 */
Damien Lespiau40935612014-10-29 11:16:59 +0000433bool intel_pipe_has_type(struct intel_crtc *crtc, enum intel_output_type type)
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300434{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300435 struct drm_device *dev = crtc->base.dev;
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300436 struct intel_encoder *encoder;
437
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300438 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300439 if (encoder->type == type)
440 return true;
441
442 return false;
443}
444
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200445/**
446 * Returns whether any output on the specified pipe will have the specified
447 * type after a staged modeset is complete, i.e., the same as
448 * intel_pipe_has_type() but looking at encoder->new_crtc instead of
449 * encoder->crtc.
450 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200451static bool intel_pipe_will_have_type(const struct intel_crtc_state *crtc_state,
452 int type)
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200453{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200454 struct drm_atomic_state *state = crtc_state->base.state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +0300455 struct drm_connector *connector;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200456 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200457 struct intel_encoder *encoder;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200458 int i, num_connectors = 0;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200459
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +0300460 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200461 if (connector_state->crtc != crtc_state->base.crtc)
462 continue;
463
464 num_connectors++;
465
466 encoder = to_intel_encoder(connector_state->best_encoder);
467 if (encoder->type == type)
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200468 return true;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200469 }
470
471 WARN_ON(num_connectors == 0);
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200472
473 return false;
474}
475
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200476static const intel_limit_t *
477intel_ironlake_limit(struct intel_crtc_state *crtc_state, int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800478{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200479 struct drm_device *dev = crtc_state->base.crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800480 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800481
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200482 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100483 if (intel_is_dual_link_lvds(dev)) {
Chris Wilson1b894b52010-12-14 20:04:54 +0000484 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800485 limit = &intel_limits_ironlake_dual_lvds_100m;
486 else
487 limit = &intel_limits_ironlake_dual_lvds;
488 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000489 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800490 limit = &intel_limits_ironlake_single_lvds_100m;
491 else
492 limit = &intel_limits_ironlake_single_lvds;
493 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200494 } else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800495 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800496
497 return limit;
498}
499
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200500static const intel_limit_t *
501intel_g4x_limit(struct intel_crtc_state *crtc_state)
Ma Ling044c7c42009-03-18 20:13:23 +0800502{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200503 struct drm_device *dev = crtc_state->base.crtc->dev;
Ma Ling044c7c42009-03-18 20:13:23 +0800504 const intel_limit_t *limit;
505
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200506 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100507 if (intel_is_dual_link_lvds(dev))
Keith Packarde4b36692009-06-05 19:22:17 -0700508 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800509 else
Keith Packarde4b36692009-06-05 19:22:17 -0700510 limit = &intel_limits_g4x_single_channel_lvds;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200511 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI) ||
512 intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700513 limit = &intel_limits_g4x_hdmi;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200514 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700515 limit = &intel_limits_g4x_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800516 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700517 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800518
519 return limit;
520}
521
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200522static const intel_limit_t *
523intel_limit(struct intel_crtc_state *crtc_state, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800524{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200525 struct drm_device *dev = crtc_state->base.crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800526 const intel_limit_t *limit;
527
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200528 if (IS_BROXTON(dev))
529 limit = &intel_limits_bxt;
530 else if (HAS_PCH_SPLIT(dev))
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200531 limit = intel_ironlake_limit(crtc_state, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800532 else if (IS_G4X(dev)) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200533 limit = intel_g4x_limit(crtc_state);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500534 } else if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200535 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500536 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800537 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500538 limit = &intel_limits_pineview_sdvo;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300539 } else if (IS_CHERRYVIEW(dev)) {
540 limit = &intel_limits_chv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700541 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälädc730512013-09-24 21:26:30 +0300542 limit = &intel_limits_vlv;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100543 } else if (!IS_GEN2(dev)) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200544 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100545 limit = &intel_limits_i9xx_lvds;
546 else
547 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800548 } else {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200549 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700550 limit = &intel_limits_i8xx_lvds;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200551 else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO))
Keith Packarde4b36692009-06-05 19:22:17 -0700552 limit = &intel_limits_i8xx_dvo;
Daniel Vetter5d536e22013-07-06 12:52:06 +0200553 else
554 limit = &intel_limits_i8xx_dac;
Jesse Barnes79e53942008-11-07 14:24:08 -0800555 }
556 return limit;
557}
558
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500559/* m1 is reserved as 0 in Pineview, n is a ring counter */
560static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800561{
Shaohua Li21778322009-02-23 15:19:16 +0800562 clock->m = clock->m2 + 2;
563 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200564 if (WARN_ON(clock->n == 0 || clock->p == 0))
565 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300566 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
567 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Shaohua Li21778322009-02-23 15:19:16 +0800568}
569
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200570static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
571{
572 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
573}
574
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200575static void i9xx_clock(int refclk, intel_clock_t *clock)
Shaohua Li21778322009-02-23 15:19:16 +0800576{
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200577 clock->m = i9xx_dpll_compute_m(clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800578 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200579 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
580 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300581 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
582 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Jesse Barnes79e53942008-11-07 14:24:08 -0800583}
584
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300585static void chv_clock(int refclk, intel_clock_t *clock)
586{
587 clock->m = clock->m1 * clock->m2;
588 clock->p = clock->p1 * clock->p2;
589 if (WARN_ON(clock->n == 0 || clock->p == 0))
590 return;
591 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
592 clock->n << 22);
593 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
594}
595
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800596#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800597/**
598 * Returns whether the given set of divisors are valid for a given refclk with
599 * the given connectors.
600 */
601
Chris Wilson1b894b52010-12-14 20:04:54 +0000602static bool intel_PLL_is_valid(struct drm_device *dev,
603 const intel_limit_t *limit,
604 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800605{
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300606 if (clock->n < limit->n.min || limit->n.max < clock->n)
607 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800608 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400609 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800610 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400611 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800612 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400613 INTELPllInvalid("m1 out of range\n");
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300614
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200615 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev) && !IS_BROXTON(dev))
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300616 if (clock->m1 <= clock->m2)
617 INTELPllInvalid("m1 <= m2\n");
618
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200619 if (!IS_VALLEYVIEW(dev) && !IS_BROXTON(dev)) {
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300620 if (clock->p < limit->p.min || limit->p.max < clock->p)
621 INTELPllInvalid("p out of range\n");
622 if (clock->m < limit->m.min || limit->m.max < clock->m)
623 INTELPllInvalid("m out of range\n");
624 }
625
Jesse Barnes79e53942008-11-07 14:24:08 -0800626 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400627 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800628 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
629 * connector, etc., rather than just a single range.
630 */
631 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400632 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800633
634 return true;
635}
636
Ma Lingd4906092009-03-18 20:13:27 +0800637static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200638i9xx_find_best_dpll(const intel_limit_t *limit,
639 struct intel_crtc_state *crtc_state,
Sean Paulcec2f352012-01-10 15:09:36 -0800640 int target, int refclk, intel_clock_t *match_clock,
641 intel_clock_t *best_clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800642{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200643 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300644 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800645 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800646 int err = target;
647
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200648 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800649 /*
Daniel Vettera210b022012-11-26 17:22:08 +0100650 * For LVDS just rely on its current settings for dual-channel.
651 * We haven't figured out how to reliably set up different
652 * single/dual channel state, if we even can.
Jesse Barnes79e53942008-11-07 14:24:08 -0800653 */
Daniel Vetter1974cad2012-11-26 17:22:09 +0100654 if (intel_is_dual_link_lvds(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800655 clock.p2 = limit->p2.p2_fast;
656 else
657 clock.p2 = limit->p2.p2_slow;
658 } else {
659 if (target < limit->p2.dot_limit)
660 clock.p2 = limit->p2.p2_slow;
661 else
662 clock.p2 = limit->p2.p2_fast;
663 }
664
Akshay Joshi0206e352011-08-16 15:34:10 -0400665 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800666
Zhao Yakui42158662009-11-20 11:24:18 +0800667 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
668 clock.m1++) {
669 for (clock.m2 = limit->m2.min;
670 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterc0efc382013-06-03 20:56:24 +0200671 if (clock.m2 >= clock.m1)
Zhao Yakui42158662009-11-20 11:24:18 +0800672 break;
673 for (clock.n = limit->n.min;
674 clock.n <= limit->n.max; clock.n++) {
675 for (clock.p1 = limit->p1.min;
676 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800677 int this_err;
678
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200679 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000680 if (!intel_PLL_is_valid(dev, limit,
681 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800682 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800683 if (match_clock &&
684 clock.p != match_clock->p)
685 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800686
687 this_err = abs(clock.dot - target);
688 if (this_err < err) {
689 *best_clock = clock;
690 err = this_err;
691 }
692 }
693 }
694 }
695 }
696
697 return (err != target);
698}
699
Ma Lingd4906092009-03-18 20:13:27 +0800700static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200701pnv_find_best_dpll(const intel_limit_t *limit,
702 struct intel_crtc_state *crtc_state,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200703 int target, int refclk, intel_clock_t *match_clock,
704 intel_clock_t *best_clock)
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200705{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200706 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300707 struct drm_device *dev = crtc->base.dev;
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200708 intel_clock_t clock;
709 int err = target;
710
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200711 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200712 /*
713 * For LVDS just rely on its current settings for dual-channel.
714 * We haven't figured out how to reliably set up different
715 * single/dual channel state, if we even can.
716 */
717 if (intel_is_dual_link_lvds(dev))
718 clock.p2 = limit->p2.p2_fast;
719 else
720 clock.p2 = limit->p2.p2_slow;
721 } else {
722 if (target < limit->p2.dot_limit)
723 clock.p2 = limit->p2.p2_slow;
724 else
725 clock.p2 = limit->p2.p2_fast;
726 }
727
728 memset(best_clock, 0, sizeof(*best_clock));
729
730 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
731 clock.m1++) {
732 for (clock.m2 = limit->m2.min;
733 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200734 for (clock.n = limit->n.min;
735 clock.n <= limit->n.max; clock.n++) {
736 for (clock.p1 = limit->p1.min;
737 clock.p1 <= limit->p1.max; clock.p1++) {
738 int this_err;
739
740 pineview_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800741 if (!intel_PLL_is_valid(dev, limit,
742 &clock))
743 continue;
744 if (match_clock &&
745 clock.p != match_clock->p)
746 continue;
747
748 this_err = abs(clock.dot - target);
749 if (this_err < err) {
750 *best_clock = clock;
751 err = this_err;
752 }
753 }
754 }
755 }
756 }
757
758 return (err != target);
759}
760
Ma Lingd4906092009-03-18 20:13:27 +0800761static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200762g4x_find_best_dpll(const intel_limit_t *limit,
763 struct intel_crtc_state *crtc_state,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200764 int target, int refclk, intel_clock_t *match_clock,
765 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800766{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200767 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300768 struct drm_device *dev = crtc->base.dev;
Ma Lingd4906092009-03-18 20:13:27 +0800769 intel_clock_t clock;
770 int max_n;
771 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400772 /* approximately equals target * 0.00585 */
773 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800774 found = false;
775
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200776 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100777 if (intel_is_dual_link_lvds(dev))
Ma Lingd4906092009-03-18 20:13:27 +0800778 clock.p2 = limit->p2.p2_fast;
779 else
780 clock.p2 = limit->p2.p2_slow;
781 } else {
782 if (target < limit->p2.dot_limit)
783 clock.p2 = limit->p2.p2_slow;
784 else
785 clock.p2 = limit->p2.p2_fast;
786 }
787
788 memset(best_clock, 0, sizeof(*best_clock));
789 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200790 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800791 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200792 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800793 for (clock.m1 = limit->m1.max;
794 clock.m1 >= limit->m1.min; clock.m1--) {
795 for (clock.m2 = limit->m2.max;
796 clock.m2 >= limit->m2.min; clock.m2--) {
797 for (clock.p1 = limit->p1.max;
798 clock.p1 >= limit->p1.min; clock.p1--) {
799 int this_err;
800
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200801 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000802 if (!intel_PLL_is_valid(dev, limit,
803 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800804 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000805
806 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800807 if (this_err < err_most) {
808 *best_clock = clock;
809 err_most = this_err;
810 max_n = clock.n;
811 found = true;
812 }
813 }
814 }
815 }
816 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800817 return found;
818}
Ma Lingd4906092009-03-18 20:13:27 +0800819
Imre Deakd5dd62b2015-03-17 11:40:03 +0200820/*
821 * Check if the calculated PLL configuration is more optimal compared to the
822 * best configuration and error found so far. Return the calculated error.
823 */
824static bool vlv_PLL_is_optimal(struct drm_device *dev, int target_freq,
825 const intel_clock_t *calculated_clock,
826 const intel_clock_t *best_clock,
827 unsigned int best_error_ppm,
828 unsigned int *error_ppm)
829{
Imre Deak9ca3ba02015-03-17 11:40:05 +0200830 /*
831 * For CHV ignore the error and consider only the P value.
832 * Prefer a bigger P value based on HW requirements.
833 */
834 if (IS_CHERRYVIEW(dev)) {
835 *error_ppm = 0;
836
837 return calculated_clock->p > best_clock->p;
838 }
839
Imre Deak24be4e42015-03-17 11:40:04 +0200840 if (WARN_ON_ONCE(!target_freq))
841 return false;
842
Imre Deakd5dd62b2015-03-17 11:40:03 +0200843 *error_ppm = div_u64(1000000ULL *
844 abs(target_freq - calculated_clock->dot),
845 target_freq);
846 /*
847 * Prefer a better P value over a better (smaller) error if the error
848 * is small. Ensure this preference for future configurations too by
849 * setting the error to 0.
850 */
851 if (*error_ppm < 100 && calculated_clock->p > best_clock->p) {
852 *error_ppm = 0;
853
854 return true;
855 }
856
857 return *error_ppm + 10 < best_error_ppm;
858}
859
Zhenyu Wang2c072452009-06-05 15:38:42 +0800860static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200861vlv_find_best_dpll(const intel_limit_t *limit,
862 struct intel_crtc_state *crtc_state,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200863 int target, int refclk, intel_clock_t *match_clock,
864 intel_clock_t *best_clock)
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700865{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200866 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300867 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300868 intel_clock_t clock;
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300869 unsigned int bestppm = 1000000;
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300870 /* min update 19.2 MHz */
871 int max_n = min(limit->n.max, refclk / 19200);
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300872 bool found = false;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700873
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300874 target *= 5; /* fast clock */
875
876 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700877
878 /* based on hardware requirement, prefer smaller n to precision */
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300879 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Ville Syrjälä811bbf02013-09-24 21:26:25 +0300880 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
Ville Syrjälä889059d2013-09-24 21:26:27 +0300881 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
Ville Syrjäläc1a9ae42013-09-24 21:26:23 +0300882 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300883 clock.p = clock.p1 * clock.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700884 /* based on hardware requirement, prefer bigger m1,m2 values */
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300885 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
Imre Deakd5dd62b2015-03-17 11:40:03 +0200886 unsigned int ppm;
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300887
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300888 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
889 refclk * clock.m1);
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300890
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300891 vlv_clock(refclk, &clock);
892
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300893 if (!intel_PLL_is_valid(dev, limit,
894 &clock))
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300895 continue;
896
Imre Deakd5dd62b2015-03-17 11:40:03 +0200897 if (!vlv_PLL_is_optimal(dev, target,
898 &clock,
899 best_clock,
900 bestppm, &ppm))
901 continue;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300902
Imre Deakd5dd62b2015-03-17 11:40:03 +0200903 *best_clock = clock;
904 bestppm = ppm;
905 found = true;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700906 }
907 }
908 }
909 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700910
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300911 return found;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700912}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700913
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300914static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200915chv_find_best_dpll(const intel_limit_t *limit,
916 struct intel_crtc_state *crtc_state,
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300917 int target, int refclk, intel_clock_t *match_clock,
918 intel_clock_t *best_clock)
919{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200920 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300921 struct drm_device *dev = crtc->base.dev;
Imre Deak9ca3ba02015-03-17 11:40:05 +0200922 unsigned int best_error_ppm;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300923 intel_clock_t clock;
924 uint64_t m2;
925 int found = false;
926
927 memset(best_clock, 0, sizeof(*best_clock));
Imre Deak9ca3ba02015-03-17 11:40:05 +0200928 best_error_ppm = 1000000;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300929
930 /*
931 * Based on hardware doc, the n always set to 1, and m1 always
932 * set to 2. If requires to support 200Mhz refclk, we need to
933 * revisit this because n may not 1 anymore.
934 */
935 clock.n = 1, clock.m1 = 2;
936 target *= 5; /* fast clock */
937
938 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
939 for (clock.p2 = limit->p2.p2_fast;
940 clock.p2 >= limit->p2.p2_slow;
941 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
Imre Deak9ca3ba02015-03-17 11:40:05 +0200942 unsigned int error_ppm;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300943
944 clock.p = clock.p1 * clock.p2;
945
946 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
947 clock.n) << 22, refclk * clock.m1);
948
949 if (m2 > INT_MAX/clock.m1)
950 continue;
951
952 clock.m2 = m2;
953
954 chv_clock(refclk, &clock);
955
956 if (!intel_PLL_is_valid(dev, limit, &clock))
957 continue;
958
Imre Deak9ca3ba02015-03-17 11:40:05 +0200959 if (!vlv_PLL_is_optimal(dev, target, &clock, best_clock,
960 best_error_ppm, &error_ppm))
961 continue;
962
963 *best_clock = clock;
964 best_error_ppm = error_ppm;
965 found = true;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300966 }
967 }
968
969 return found;
970}
971
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200972bool bxt_find_best_dpll(struct intel_crtc_state *crtc_state, int target_clock,
973 intel_clock_t *best_clock)
974{
975 int refclk = i9xx_get_refclk(crtc_state, 0);
976
977 return chv_find_best_dpll(intel_limit(crtc_state, refclk), crtc_state,
978 target_clock, refclk, NULL, best_clock);
979}
980
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300981bool intel_crtc_active(struct drm_crtc *crtc)
982{
983 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
984
985 /* Be paranoid as we can arrive here with only partial
986 * state retrieved from the hardware during setup.
987 *
Damien Lespiau241bfc32013-09-25 16:45:37 +0100988 * We can ditch the adjusted_mode.crtc_clock check as soon
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300989 * as Haswell has gained clock readout/fastboot support.
990 *
Dave Airlie66e514c2014-04-03 07:51:54 +1000991 * We can ditch the crtc->primary->fb check as soon as we can
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300992 * properly reconstruct framebuffers.
Matt Roperc3d1f432015-03-09 10:19:23 -0700993 *
994 * FIXME: The intel_crtc->active here should be switched to
995 * crtc->state->active once we have proper CRTC states wired up
996 * for atomic.
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300997 */
Matt Roperc3d1f432015-03-09 10:19:23 -0700998 return intel_crtc->active && crtc->primary->state->fb &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200999 intel_crtc->config->base.adjusted_mode.crtc_clock;
Ville Syrjälä20ddf662013-09-04 18:25:25 +03001000}
1001
Paulo Zanonia5c961d2012-10-24 15:59:34 -02001002enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
1003 enum pipe pipe)
1004{
1005 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
1006 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1007
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001008 return intel_crtc->config->cpu_transcoder;
Paulo Zanonia5c961d2012-10-24 15:59:34 -02001009}
1010
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +03001011static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
1012{
1013 struct drm_i915_private *dev_priv = dev->dev_private;
1014 u32 reg = PIPEDSL(pipe);
1015 u32 line1, line2;
1016 u32 line_mask;
1017
1018 if (IS_GEN2(dev))
1019 line_mask = DSL_LINEMASK_GEN2;
1020 else
1021 line_mask = DSL_LINEMASK_GEN3;
1022
1023 line1 = I915_READ(reg) & line_mask;
1024 mdelay(5);
1025 line2 = I915_READ(reg) & line_mask;
1026
1027 return line1 == line2;
1028}
1029
Keith Packardab7ad7f2010-10-03 00:33:06 -07001030/*
1031 * intel_wait_for_pipe_off - wait for pipe to turn off
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001032 * @crtc: crtc whose pipe to wait for
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001033 *
1034 * After disabling a pipe, we can't wait for vblank in the usual way,
1035 * spinning on the vblank interrupt status bit, since we won't actually
1036 * see an interrupt when the pipe is disabled.
1037 *
Keith Packardab7ad7f2010-10-03 00:33:06 -07001038 * On Gen4 and above:
1039 * wait for the pipe register state bit to turn off
1040 *
1041 * Otherwise:
1042 * wait for the display line value to settle (it usually
1043 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +01001044 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001045 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001046static void intel_wait_for_pipe_off(struct intel_crtc *crtc)
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001047{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001048 struct drm_device *dev = crtc->base.dev;
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001049 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001050 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001051 enum pipe pipe = crtc->pipe;
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001052
Keith Packardab7ad7f2010-10-03 00:33:06 -07001053 if (INTEL_INFO(dev)->gen >= 4) {
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001054 int reg = PIPECONF(cpu_transcoder);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001055
Keith Packardab7ad7f2010-10-03 00:33:06 -07001056 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +01001057 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
1058 100))
Daniel Vetter284637d2012-07-09 09:51:57 +02001059 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -07001060 } else {
Keith Packardab7ad7f2010-10-03 00:33:06 -07001061 /* Wait for the display line to settle */
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +03001062 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
Daniel Vetter284637d2012-07-09 09:51:57 +02001063 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -07001064 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001065}
1066
Damien Lespiaub0ea7d32012-12-13 16:09:00 +00001067/*
1068 * ibx_digital_port_connected - is the specified port connected?
1069 * @dev_priv: i915 private structure
1070 * @port: the port to test
1071 *
1072 * Returns true if @port is connected, false otherwise.
1073 */
1074bool ibx_digital_port_connected(struct drm_i915_private *dev_priv,
1075 struct intel_digital_port *port)
1076{
1077 u32 bit;
1078
Damien Lespiauc36346e2012-12-13 16:09:03 +00001079 if (HAS_PCH_IBX(dev_priv->dev)) {
Robin Schroereba905b2014-05-18 02:24:50 +02001080 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +00001081 case PORT_B:
1082 bit = SDE_PORTB_HOTPLUG;
1083 break;
1084 case PORT_C:
1085 bit = SDE_PORTC_HOTPLUG;
1086 break;
1087 case PORT_D:
1088 bit = SDE_PORTD_HOTPLUG;
1089 break;
1090 default:
1091 return true;
1092 }
1093 } else {
Robin Schroereba905b2014-05-18 02:24:50 +02001094 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +00001095 case PORT_B:
1096 bit = SDE_PORTB_HOTPLUG_CPT;
1097 break;
1098 case PORT_C:
1099 bit = SDE_PORTC_HOTPLUG_CPT;
1100 break;
1101 case PORT_D:
1102 bit = SDE_PORTD_HOTPLUG_CPT;
1103 break;
1104 default:
1105 return true;
1106 }
Damien Lespiaub0ea7d32012-12-13 16:09:00 +00001107 }
1108
1109 return I915_READ(SDEISR) & bit;
1110}
1111
Jesse Barnesb24e7172011-01-04 15:09:30 -08001112static const char *state_string(bool enabled)
1113{
1114 return enabled ? "on" : "off";
1115}
1116
1117/* Only for pre-ILK configs */
Daniel Vetter55607e82013-06-16 21:42:39 +02001118void assert_pll(struct drm_i915_private *dev_priv,
1119 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001120{
1121 int reg;
1122 u32 val;
1123 bool cur_state;
1124
1125 reg = DPLL(pipe);
1126 val = I915_READ(reg);
1127 cur_state = !!(val & DPLL_VCO_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001128 I915_STATE_WARN(cur_state != state,
Jesse Barnesb24e7172011-01-04 15:09:30 -08001129 "PLL state assertion failure (expected %s, current %s)\n",
1130 state_string(state), state_string(cur_state));
1131}
Jesse Barnesb24e7172011-01-04 15:09:30 -08001132
Jani Nikula23538ef2013-08-27 15:12:22 +03001133/* XXX: the dsi pll is shared between MIPI DSI ports */
1134static void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
1135{
1136 u32 val;
1137 bool cur_state;
1138
1139 mutex_lock(&dev_priv->dpio_lock);
1140 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
1141 mutex_unlock(&dev_priv->dpio_lock);
1142
1143 cur_state = val & DSI_PLL_VCO_EN;
Rob Clarke2c719b2014-12-15 13:56:32 -05001144 I915_STATE_WARN(cur_state != state,
Jani Nikula23538ef2013-08-27 15:12:22 +03001145 "DSI PLL state assertion failure (expected %s, current %s)\n",
1146 state_string(state), state_string(cur_state));
1147}
1148#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1149#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1150
Daniel Vetter55607e82013-06-16 21:42:39 +02001151struct intel_shared_dpll *
Daniel Vettere2b78262013-06-07 23:10:03 +02001152intel_crtc_to_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes040484a2011-01-03 12:14:26 -08001153{
Daniel Vettere2b78262013-06-07 23:10:03 +02001154 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1155
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001156 if (crtc->config->shared_dpll < 0)
Daniel Vettere2b78262013-06-07 23:10:03 +02001157 return NULL;
1158
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001159 return &dev_priv->shared_dplls[crtc->config->shared_dpll];
Daniel Vettere2b78262013-06-07 23:10:03 +02001160}
1161
Jesse Barnesb24e7172011-01-04 15:09:30 -08001162/* For ILK+ */
Daniel Vetter55607e82013-06-16 21:42:39 +02001163void assert_shared_dpll(struct drm_i915_private *dev_priv,
1164 struct intel_shared_dpll *pll,
1165 bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001166{
Jesse Barnes040484a2011-01-03 12:14:26 -08001167 bool cur_state;
Daniel Vetter53589012013-06-05 13:34:16 +02001168 struct intel_dpll_hw_state hw_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001169
Chris Wilson92b27b02012-05-20 18:10:50 +01001170 if (WARN (!pll,
Daniel Vetter46edb022013-06-05 13:34:12 +02001171 "asserting DPLL %s with no DPLL\n", state_string(state)))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001172 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001173
Daniel Vetter53589012013-06-05 13:34:16 +02001174 cur_state = pll->get_hw_state(dev_priv, pll, &hw_state);
Rob Clarke2c719b2014-12-15 13:56:32 -05001175 I915_STATE_WARN(cur_state != state,
Daniel Vetter53589012013-06-05 13:34:16 +02001176 "%s assertion failure (expected %s, current %s)\n",
1177 pll->name, state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001178}
Jesse Barnes040484a2011-01-03 12:14:26 -08001179
1180static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1181 enum pipe pipe, bool state)
1182{
1183 int reg;
1184 u32 val;
1185 bool cur_state;
Paulo Zanoniad80a812012-10-24 16:06:19 -02001186 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1187 pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001188
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001189 if (HAS_DDI(dev_priv->dev)) {
1190 /* DDI does not have a specific FDI_TX register */
Paulo Zanoniad80a812012-10-24 16:06:19 -02001191 reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001192 val = I915_READ(reg);
Paulo Zanoniad80a812012-10-24 16:06:19 -02001193 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001194 } else {
1195 reg = FDI_TX_CTL(pipe);
1196 val = I915_READ(reg);
1197 cur_state = !!(val & FDI_TX_ENABLE);
1198 }
Rob Clarke2c719b2014-12-15 13:56:32 -05001199 I915_STATE_WARN(cur_state != state,
Jesse Barnes040484a2011-01-03 12:14:26 -08001200 "FDI TX state assertion failure (expected %s, current %s)\n",
1201 state_string(state), state_string(cur_state));
1202}
1203#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1204#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1205
1206static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1207 enum pipe pipe, bool state)
1208{
1209 int reg;
1210 u32 val;
1211 bool cur_state;
1212
Paulo Zanonid63fa0d2012-11-20 13:27:35 -02001213 reg = FDI_RX_CTL(pipe);
1214 val = I915_READ(reg);
1215 cur_state = !!(val & FDI_RX_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001216 I915_STATE_WARN(cur_state != state,
Jesse Barnes040484a2011-01-03 12:14:26 -08001217 "FDI RX state assertion failure (expected %s, current %s)\n",
1218 state_string(state), state_string(cur_state));
1219}
1220#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1221#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1222
1223static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1224 enum pipe pipe)
1225{
1226 int reg;
1227 u32 val;
1228
1229 /* ILK FDI PLL is always enabled */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001230 if (INTEL_INFO(dev_priv->dev)->gen == 5)
Jesse Barnes040484a2011-01-03 12:14:26 -08001231 return;
1232
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001233 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001234 if (HAS_DDI(dev_priv->dev))
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001235 return;
1236
Jesse Barnes040484a2011-01-03 12:14:26 -08001237 reg = FDI_TX_CTL(pipe);
1238 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001239 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 -08001240}
1241
Daniel Vetter55607e82013-06-16 21:42:39 +02001242void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1243 enum pipe pipe, bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001244{
1245 int reg;
1246 u32 val;
Daniel Vetter55607e82013-06-16 21:42:39 +02001247 bool cur_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001248
1249 reg = FDI_RX_CTL(pipe);
1250 val = I915_READ(reg);
Daniel Vetter55607e82013-06-16 21:42:39 +02001251 cur_state = !!(val & FDI_RX_PLL_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001252 I915_STATE_WARN(cur_state != state,
Daniel Vetter55607e82013-06-16 21:42:39 +02001253 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1254 state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001255}
1256
Daniel Vetterb680c372014-09-19 18:27:27 +02001257void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1258 enum pipe pipe)
Jesse Barnesea0760c2011-01-04 15:09:32 -08001259{
Jani Nikulabedd4db2014-08-22 15:04:13 +03001260 struct drm_device *dev = dev_priv->dev;
1261 int pp_reg;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001262 u32 val;
1263 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001264 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001265
Jani Nikulabedd4db2014-08-22 15:04:13 +03001266 if (WARN_ON(HAS_DDI(dev)))
1267 return;
1268
1269 if (HAS_PCH_SPLIT(dev)) {
1270 u32 port_sel;
1271
Jesse Barnesea0760c2011-01-04 15:09:32 -08001272 pp_reg = PCH_PP_CONTROL;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001273 port_sel = I915_READ(PCH_PP_ON_DELAYS) & PANEL_PORT_SELECT_MASK;
1274
1275 if (port_sel == PANEL_PORT_SELECT_LVDS &&
1276 I915_READ(PCH_LVDS) & LVDS_PIPEB_SELECT)
1277 panel_pipe = PIPE_B;
1278 /* XXX: else fix for eDP */
1279 } else if (IS_VALLEYVIEW(dev)) {
1280 /* presumably write lock depends on pipe, not port select */
1281 pp_reg = VLV_PIPE_PP_CONTROL(pipe);
1282 panel_pipe = pipe;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001283 } else {
1284 pp_reg = PP_CONTROL;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001285 if (I915_READ(LVDS) & LVDS_PIPEB_SELECT)
1286 panel_pipe = PIPE_B;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001287 }
1288
1289 val = I915_READ(pp_reg);
1290 if (!(val & PANEL_POWER_ON) ||
Jani Nikulaec49ba22014-08-21 15:06:25 +03001291 ((val & PANEL_UNLOCK_MASK) == PANEL_UNLOCK_REGS))
Jesse Barnesea0760c2011-01-04 15:09:32 -08001292 locked = false;
1293
Rob Clarke2c719b2014-12-15 13:56:32 -05001294 I915_STATE_WARN(panel_pipe == pipe && locked,
Jesse Barnesea0760c2011-01-04 15:09:32 -08001295 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001296 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001297}
1298
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001299static void assert_cursor(struct drm_i915_private *dev_priv,
1300 enum pipe pipe, bool state)
1301{
1302 struct drm_device *dev = dev_priv->dev;
1303 bool cur_state;
1304
Paulo Zanonid9d82082014-02-27 16:30:56 -03001305 if (IS_845G(dev) || IS_I865G(dev))
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001306 cur_state = I915_READ(_CURACNTR) & CURSOR_ENABLE;
Paulo Zanonid9d82082014-02-27 16:30:56 -03001307 else
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03001308 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001309
Rob Clarke2c719b2014-12-15 13:56:32 -05001310 I915_STATE_WARN(cur_state != state,
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001311 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
1312 pipe_name(pipe), state_string(state), state_string(cur_state));
1313}
1314#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1315#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1316
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001317void assert_pipe(struct drm_i915_private *dev_priv,
1318 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001319{
1320 int reg;
1321 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001322 bool cur_state;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001323 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1324 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001325
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001326 /* if we need the pipe quirk it must be always on */
1327 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1328 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Daniel Vetter8e636782012-01-22 01:36:48 +01001329 state = true;
1330
Daniel Vetterf458ebb2014-09-30 10:56:39 +02001331 if (!intel_display_power_is_enabled(dev_priv,
Paulo Zanonib97186f2013-05-03 12:15:36 -03001332 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
Paulo Zanoni69310162013-01-29 16:35:19 -02001333 cur_state = false;
1334 } else {
1335 reg = PIPECONF(cpu_transcoder);
1336 val = I915_READ(reg);
1337 cur_state = !!(val & PIPECONF_ENABLE);
1338 }
1339
Rob Clarke2c719b2014-12-15 13:56:32 -05001340 I915_STATE_WARN(cur_state != state,
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001341 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001342 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001343}
1344
Chris Wilson931872f2012-01-16 23:01:13 +00001345static void assert_plane(struct drm_i915_private *dev_priv,
1346 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001347{
1348 int reg;
1349 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001350 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001351
1352 reg = DSPCNTR(plane);
1353 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001354 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001355 I915_STATE_WARN(cur_state != state,
Chris Wilson931872f2012-01-16 23:01:13 +00001356 "plane %c assertion failure (expected %s, current %s)\n",
1357 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001358}
1359
Chris Wilson931872f2012-01-16 23:01:13 +00001360#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1361#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1362
Jesse Barnesb24e7172011-01-04 15:09:30 -08001363static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1364 enum pipe pipe)
1365{
Ville Syrjälä653e1022013-06-04 13:49:05 +03001366 struct drm_device *dev = dev_priv->dev;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001367 int reg, i;
1368 u32 val;
1369 int cur_pipe;
1370
Ville Syrjälä653e1022013-06-04 13:49:05 +03001371 /* Primary planes are fixed to pipes on gen4+ */
1372 if (INTEL_INFO(dev)->gen >= 4) {
Adam Jackson28c057942011-10-07 14:38:42 -04001373 reg = DSPCNTR(pipe);
1374 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001375 I915_STATE_WARN(val & DISPLAY_PLANE_ENABLE,
Adam Jackson28c057942011-10-07 14:38:42 -04001376 "plane %c assertion failure, should be disabled but not\n",
1377 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001378 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001379 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001380
Jesse Barnesb24e7172011-01-04 15:09:30 -08001381 /* Need to check both planes against the pipe */
Damien Lespiau055e3932014-08-18 13:49:10 +01001382 for_each_pipe(dev_priv, i) {
Jesse Barnesb24e7172011-01-04 15:09:30 -08001383 reg = DSPCNTR(i);
1384 val = I915_READ(reg);
1385 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1386 DISPPLANE_SEL_PIPE_SHIFT;
Rob Clarke2c719b2014-12-15 13:56:32 -05001387 I915_STATE_WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001388 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1389 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001390 }
1391}
1392
Jesse Barnes19332d72013-03-28 09:55:38 -07001393static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1394 enum pipe pipe)
1395{
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001396 struct drm_device *dev = dev_priv->dev;
Damien Lespiau1fe47782014-03-03 17:31:47 +00001397 int reg, sprite;
Jesse Barnes19332d72013-03-28 09:55:38 -07001398 u32 val;
1399
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001400 if (INTEL_INFO(dev)->gen >= 9) {
Damien Lespiau3bdcfc02015-02-28 14:54:09 +00001401 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001402 val = I915_READ(PLANE_CTL(pipe, sprite));
Rob Clarke2c719b2014-12-15 13:56:32 -05001403 I915_STATE_WARN(val & PLANE_CTL_ENABLE,
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001404 "plane %d assertion failure, should be off on pipe %c but is still active\n",
1405 sprite, pipe_name(pipe));
1406 }
1407 } else if (IS_VALLEYVIEW(dev)) {
Damien Lespiau3bdcfc02015-02-28 14:54:09 +00001408 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau1fe47782014-03-03 17:31:47 +00001409 reg = SPCNTR(pipe, sprite);
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001410 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001411 I915_STATE_WARN(val & SP_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001412 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +00001413 sprite_name(pipe, sprite), pipe_name(pipe));
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001414 }
1415 } else if (INTEL_INFO(dev)->gen >= 7) {
1416 reg = SPRCTL(pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07001417 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001418 I915_STATE_WARN(val & SPRITE_ENABLE,
Ville Syrjälä06da8da2013-04-17 17:48:51 +03001419 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001420 plane_name(pipe), pipe_name(pipe));
1421 } else if (INTEL_INFO(dev)->gen >= 5) {
1422 reg = DVSCNTR(pipe);
1423 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001424 I915_STATE_WARN(val & DVS_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001425 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1426 plane_name(pipe), pipe_name(pipe));
Jesse Barnes19332d72013-03-28 09:55:38 -07001427 }
1428}
1429
Ville Syrjälä08c71e52014-08-06 14:49:45 +03001430static void assert_vblank_disabled(struct drm_crtc *crtc)
1431{
Rob Clarke2c719b2014-12-15 13:56:32 -05001432 if (I915_STATE_WARN_ON(drm_crtc_vblank_get(crtc) == 0))
Ville Syrjälä08c71e52014-08-06 14:49:45 +03001433 drm_crtc_vblank_put(crtc);
1434}
1435
Paulo Zanoni89eff4b2014-01-08 11:12:28 -02001436static void ibx_assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
Jesse Barnes92f25842011-01-04 15:09:34 -08001437{
1438 u32 val;
1439 bool enabled;
1440
Rob Clarke2c719b2014-12-15 13:56:32 -05001441 I915_STATE_WARN_ON(!(HAS_PCH_IBX(dev_priv->dev) || HAS_PCH_CPT(dev_priv->dev)));
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001442
Jesse Barnes92f25842011-01-04 15:09:34 -08001443 val = I915_READ(PCH_DREF_CONTROL);
1444 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1445 DREF_SUPERSPREAD_SOURCE_MASK));
Rob Clarke2c719b2014-12-15 13:56:32 -05001446 I915_STATE_WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
Jesse Barnes92f25842011-01-04 15:09:34 -08001447}
1448
Daniel Vetterab9412b2013-05-03 11:49:46 +02001449static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1450 enum pipe pipe)
Jesse Barnes92f25842011-01-04 15:09:34 -08001451{
1452 int reg;
1453 u32 val;
1454 bool enabled;
1455
Daniel Vetterab9412b2013-05-03 11:49:46 +02001456 reg = PCH_TRANSCONF(pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001457 val = I915_READ(reg);
1458 enabled = !!(val & TRANS_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001459 I915_STATE_WARN(enabled,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001460 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1461 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001462}
1463
Keith Packard4e634382011-08-06 10:39:45 -07001464static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1465 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001466{
1467 if ((val & DP_PORT_EN) == 0)
1468 return false;
1469
1470 if (HAS_PCH_CPT(dev_priv->dev)) {
1471 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1472 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1473 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1474 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001475 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1476 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1477 return false;
Keith Packardf0575e92011-07-25 22:12:43 -07001478 } else {
1479 if ((val & DP_PIPE_MASK) != (pipe << 30))
1480 return false;
1481 }
1482 return true;
1483}
1484
Keith Packard1519b992011-08-06 10:35:34 -07001485static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1486 enum pipe pipe, u32 val)
1487{
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001488 if ((val & SDVO_ENABLE) == 0)
Keith Packard1519b992011-08-06 10:35:34 -07001489 return false;
1490
1491 if (HAS_PCH_CPT(dev_priv->dev)) {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001492 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001493 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001494 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1495 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1496 return false;
Keith Packard1519b992011-08-06 10:35:34 -07001497 } else {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001498 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001499 return false;
1500 }
1501 return true;
1502}
1503
1504static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1505 enum pipe pipe, u32 val)
1506{
1507 if ((val & LVDS_PORT_EN) == 0)
1508 return false;
1509
1510 if (HAS_PCH_CPT(dev_priv->dev)) {
1511 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1512 return false;
1513 } else {
1514 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1515 return false;
1516 }
1517 return true;
1518}
1519
1520static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1521 enum pipe pipe, u32 val)
1522{
1523 if ((val & ADPA_DAC_ENABLE) == 0)
1524 return false;
1525 if (HAS_PCH_CPT(dev_priv->dev)) {
1526 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1527 return false;
1528 } else {
1529 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1530 return false;
1531 }
1532 return true;
1533}
1534
Jesse Barnes291906f2011-02-02 12:28:03 -08001535static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001536 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001537{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001538 u32 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001539 I915_STATE_WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001540 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001541 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001542
Rob Clarke2c719b2014-12-15 13:56:32 -05001543 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001544 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001545 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001546}
1547
1548static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1549 enum pipe pipe, int reg)
1550{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001551 u32 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001552 I915_STATE_WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001553 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001554 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001555
Rob Clarke2c719b2014-12-15 13:56:32 -05001556 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001557 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001558 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001559}
1560
1561static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1562 enum pipe pipe)
1563{
1564 int reg;
1565 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001566
Keith Packardf0575e92011-07-25 22:12:43 -07001567 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1568 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1569 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001570
1571 reg = PCH_ADPA;
1572 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001573 I915_STATE_WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001574 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001575 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001576
1577 reg = PCH_LVDS;
1578 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001579 I915_STATE_WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001580 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001581 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001582
Paulo Zanonie2debe92013-02-18 19:00:27 -03001583 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1584 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1585 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
Jesse Barnes291906f2011-02-02 12:28:03 -08001586}
1587
Jesse Barnes40e9cf62013-10-03 11:35:46 -07001588static void intel_init_dpio(struct drm_device *dev)
1589{
1590 struct drm_i915_private *dev_priv = dev->dev_private;
1591
1592 if (!IS_VALLEYVIEW(dev))
1593 return;
1594
Chon Ming Leea09cadd2014-04-09 13:28:14 +03001595 /*
1596 * IOSF_PORT_DPIO is used for VLV x2 PHY (DP/HDMI B and C),
1597 * CHV x1 PHY (DP/HDMI D)
1598 * IOSF_PORT_DPIO_2 is used for CHV x2 PHY (DP/HDMI B and C)
1599 */
1600 if (IS_CHERRYVIEW(dev)) {
1601 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO_2;
1602 DPIO_PHY_IOSF_PORT(DPIO_PHY1) = IOSF_PORT_DPIO;
1603 } else {
1604 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO;
1605 }
Jesse Barnes5382f5f352013-12-16 16:34:24 -08001606}
1607
Ville Syrjäläd288f652014-10-28 13:20:22 +02001608static void vlv_enable_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001609 const struct intel_crtc_state *pipe_config)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001610{
Daniel Vetter426115c2013-07-11 22:13:42 +02001611 struct drm_device *dev = crtc->base.dev;
1612 struct drm_i915_private *dev_priv = dev->dev_private;
1613 int reg = DPLL(crtc->pipe);
Ville Syrjäläd288f652014-10-28 13:20:22 +02001614 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001615
Daniel Vetter426115c2013-07-11 22:13:42 +02001616 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001617
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001618 /* No really, not for ILK+ */
Daniel Vetter87442f72013-06-06 00:52:17 +02001619 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev));
1620
1621 /* PLL is protected by panel, make sure we can write it */
Jani Nikula6a9e7362014-08-22 15:06:35 +03001622 if (IS_MOBILE(dev_priv->dev))
Daniel Vetter426115c2013-07-11 22:13:42 +02001623 assert_panel_unlocked(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001624
Daniel Vetter426115c2013-07-11 22:13:42 +02001625 I915_WRITE(reg, dpll);
1626 POSTING_READ(reg);
1627 udelay(150);
1628
1629 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1630 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1631
Ville Syrjäläd288f652014-10-28 13:20:22 +02001632 I915_WRITE(DPLL_MD(crtc->pipe), pipe_config->dpll_hw_state.dpll_md);
Daniel Vetter426115c2013-07-11 22:13:42 +02001633 POSTING_READ(DPLL_MD(crtc->pipe));
Daniel Vetter87442f72013-06-06 00:52:17 +02001634
1635 /* We do this three times for luck */
Daniel Vetter426115c2013-07-11 22:13:42 +02001636 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001637 POSTING_READ(reg);
1638 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001639 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001640 POSTING_READ(reg);
1641 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001642 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001643 POSTING_READ(reg);
1644 udelay(150); /* wait for warmup */
1645}
1646
Ville Syrjäläd288f652014-10-28 13:20:22 +02001647static void chv_enable_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001648 const struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001649{
1650 struct drm_device *dev = crtc->base.dev;
1651 struct drm_i915_private *dev_priv = dev->dev_private;
1652 int pipe = crtc->pipe;
1653 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001654 u32 tmp;
1655
1656 assert_pipe_disabled(dev_priv, crtc->pipe);
1657
1658 BUG_ON(!IS_CHERRYVIEW(dev_priv->dev));
1659
1660 mutex_lock(&dev_priv->dpio_lock);
1661
1662 /* Enable back the 10bit clock to display controller */
1663 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1664 tmp |= DPIO_DCLKP_EN;
1665 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1666
1667 /*
1668 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1669 */
1670 udelay(1);
1671
1672 /* Enable PLL */
Ville Syrjäläd288f652014-10-28 13:20:22 +02001673 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001674
1675 /* Check PLL is locked */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001676 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001677 DRM_ERROR("PLL %d failed to lock\n", pipe);
1678
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001679 /* not sure when this should be written */
Ville Syrjäläd288f652014-10-28 13:20:22 +02001680 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001681 POSTING_READ(DPLL_MD(pipe));
1682
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001683 mutex_unlock(&dev_priv->dpio_lock);
1684}
1685
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001686static int intel_num_dvo_pipes(struct drm_device *dev)
1687{
1688 struct intel_crtc *crtc;
1689 int count = 0;
1690
1691 for_each_intel_crtc(dev, crtc)
1692 count += crtc->active &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001693 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO);
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001694
1695 return count;
1696}
1697
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001698static void i9xx_enable_pll(struct intel_crtc *crtc)
Daniel Vetter87442f72013-06-06 00:52:17 +02001699{
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001700 struct drm_device *dev = crtc->base.dev;
1701 struct drm_i915_private *dev_priv = dev->dev_private;
1702 int reg = DPLL(crtc->pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001703 u32 dpll = crtc->config->dpll_hw_state.dpll;
Daniel Vetter87442f72013-06-06 00:52:17 +02001704
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001705 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001706
1707 /* No really, not for ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001708 BUG_ON(INTEL_INFO(dev)->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001709
1710 /* PLL is protected by panel, make sure we can write it */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001711 if (IS_MOBILE(dev) && !IS_I830(dev))
1712 assert_panel_unlocked(dev_priv, crtc->pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001713
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001714 /* Enable DVO 2x clock on both PLLs if necessary */
1715 if (IS_I830(dev) && intel_num_dvo_pipes(dev) > 0) {
1716 /*
1717 * It appears to be important that we don't enable this
1718 * for the current pipe before otherwise configuring the
1719 * PLL. No idea how this should be handled if multiple
1720 * DVO outputs are enabled simultaneosly.
1721 */
1722 dpll |= DPLL_DVO_2X_MODE;
1723 I915_WRITE(DPLL(!crtc->pipe),
1724 I915_READ(DPLL(!crtc->pipe)) | DPLL_DVO_2X_MODE);
1725 }
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001726
1727 /* Wait for the clocks to stabilize. */
1728 POSTING_READ(reg);
1729 udelay(150);
1730
1731 if (INTEL_INFO(dev)->gen >= 4) {
1732 I915_WRITE(DPLL_MD(crtc->pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001733 crtc->config->dpll_hw_state.dpll_md);
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001734 } else {
1735 /* The pixel multiplier can only be updated once the
1736 * DPLL is enabled and the clocks are stable.
1737 *
1738 * So write it again.
1739 */
1740 I915_WRITE(reg, dpll);
1741 }
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001742
1743 /* We do this three times for luck */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001744 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001745 POSTING_READ(reg);
1746 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001747 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001748 POSTING_READ(reg);
1749 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001750 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001751 POSTING_READ(reg);
1752 udelay(150); /* wait for warmup */
1753}
1754
1755/**
Daniel Vetter50b44a42013-06-05 13:34:33 +02001756 * i9xx_disable_pll - disable a PLL
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001757 * @dev_priv: i915 private structure
1758 * @pipe: pipe PLL to disable
1759 *
1760 * Disable the PLL for @pipe, making sure the pipe is off first.
1761 *
1762 * Note! This is for pre-ILK only.
1763 */
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001764static void i9xx_disable_pll(struct intel_crtc *crtc)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001765{
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001766 struct drm_device *dev = crtc->base.dev;
1767 struct drm_i915_private *dev_priv = dev->dev_private;
1768 enum pipe pipe = crtc->pipe;
1769
1770 /* Disable DVO 2x clock on both PLLs if necessary */
1771 if (IS_I830(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001772 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO) &&
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001773 intel_num_dvo_pipes(dev) == 1) {
1774 I915_WRITE(DPLL(PIPE_B),
1775 I915_READ(DPLL(PIPE_B)) & ~DPLL_DVO_2X_MODE);
1776 I915_WRITE(DPLL(PIPE_A),
1777 I915_READ(DPLL(PIPE_A)) & ~DPLL_DVO_2X_MODE);
1778 }
1779
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001780 /* Don't disable pipe or pipe PLLs if needed */
1781 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1782 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001783 return;
1784
1785 /* Make sure the pipe isn't still relying on us */
1786 assert_pipe_disabled(dev_priv, pipe);
1787
Daniel Vetter50b44a42013-06-05 13:34:33 +02001788 I915_WRITE(DPLL(pipe), 0);
1789 POSTING_READ(DPLL(pipe));
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001790}
1791
Jesse Barnesf6071162013-10-01 10:41:38 -07001792static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1793{
1794 u32 val = 0;
1795
1796 /* Make sure the pipe isn't still relying on us */
1797 assert_pipe_disabled(dev_priv, pipe);
1798
Imre Deake5cbfbf2014-01-09 17:08:16 +02001799 /*
1800 * Leave integrated clock source and reference clock enabled for pipe B.
1801 * The latter is needed for VGA hotplug / manual detection.
1802 */
Jesse Barnesf6071162013-10-01 10:41:38 -07001803 if (pipe == PIPE_B)
Imre Deake5cbfbf2014-01-09 17:08:16 +02001804 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REFA_CLK_ENABLE_VLV;
Jesse Barnesf6071162013-10-01 10:41:38 -07001805 I915_WRITE(DPLL(pipe), val);
1806 POSTING_READ(DPLL(pipe));
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001807
1808}
1809
1810static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1811{
Ville Syrjäläd7520482014-04-09 13:28:59 +03001812 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001813 u32 val;
1814
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001815 /* Make sure the pipe isn't still relying on us */
1816 assert_pipe_disabled(dev_priv, pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001817
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001818 /* Set PLL en = 0 */
Ville Syrjäläd17ec4c2014-06-28 02:03:59 +03001819 val = DPLL_SSC_REF_CLOCK_CHV | DPLL_REFA_CLK_ENABLE_VLV;
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001820 if (pipe != PIPE_A)
1821 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1822 I915_WRITE(DPLL(pipe), val);
1823 POSTING_READ(DPLL(pipe));
Ville Syrjäläd7520482014-04-09 13:28:59 +03001824
1825 mutex_lock(&dev_priv->dpio_lock);
1826
1827 /* Disable 10bit clock to display controller */
1828 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1829 val &= ~DPIO_DCLKP_EN;
1830 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1831
Ville Syrjälä61407f62014-05-27 16:32:55 +03001832 /* disable left/right clock distribution */
1833 if (pipe != PIPE_B) {
1834 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1835 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1836 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1837 } else {
1838 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1839 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1840 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1841 }
1842
Ville Syrjäläd7520482014-04-09 13:28:59 +03001843 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesf6071162013-10-01 10:41:38 -07001844}
1845
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001846void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001847 struct intel_digital_port *dport,
1848 unsigned int expected_mask)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001849{
1850 u32 port_mask;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001851 int dpll_reg;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001852
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001853 switch (dport->port) {
1854 case PORT_B:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001855 port_mask = DPLL_PORTB_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001856 dpll_reg = DPLL(0);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001857 break;
1858 case PORT_C:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001859 port_mask = DPLL_PORTC_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001860 dpll_reg = DPLL(0);
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001861 expected_mask <<= 4;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001862 break;
1863 case PORT_D:
1864 port_mask = DPLL_PORTD_READY_MASK;
1865 dpll_reg = DPIO_PHY_STATUS;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001866 break;
1867 default:
1868 BUG();
1869 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07001870
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001871 if (wait_for((I915_READ(dpll_reg) & port_mask) == expected_mask, 1000))
1872 WARN(1, "timed out waiting for port %c ready: got 0x%x, expected 0x%x\n",
1873 port_name(dport->port), I915_READ(dpll_reg) & port_mask, expected_mask);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001874}
1875
Daniel Vetterb14b1052014-04-24 23:55:13 +02001876static void intel_prepare_shared_dpll(struct intel_crtc *crtc)
1877{
1878 struct drm_device *dev = crtc->base.dev;
1879 struct drm_i915_private *dev_priv = dev->dev_private;
1880 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
1881
Chris Wilsonbe19f0f2014-05-28 16:16:42 +01001882 if (WARN_ON(pll == NULL))
1883 return;
1884
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001885 WARN_ON(!pll->config.crtc_mask);
Daniel Vetterb14b1052014-04-24 23:55:13 +02001886 if (pll->active == 0) {
1887 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
1888 WARN_ON(pll->on);
1889 assert_shared_dpll_disabled(dev_priv, pll);
1890
1891 pll->mode_set(dev_priv, pll);
1892 }
1893}
1894
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001895/**
Daniel Vetter85b38942014-04-24 23:55:14 +02001896 * intel_enable_shared_dpll - enable PCH PLL
Jesse Barnes92f25842011-01-04 15:09:34 -08001897 * @dev_priv: i915 private structure
1898 * @pipe: pipe PLL to enable
1899 *
1900 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1901 * drives the transcoder clock.
1902 */
Daniel Vetter85b38942014-04-24 23:55:14 +02001903static void intel_enable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001904{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001905 struct drm_device *dev = crtc->base.dev;
1906 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001907 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes92f25842011-01-04 15:09:34 -08001908
Daniel Vetter87a875b2013-06-05 13:34:19 +02001909 if (WARN_ON(pll == NULL))
Chris Wilson48da64a2012-05-13 20:16:12 +01001910 return;
1911
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001912 if (WARN_ON(pll->config.crtc_mask == 0))
Chris Wilson48da64a2012-05-13 20:16:12 +01001913 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001914
Damien Lespiau74dd6922014-07-29 18:06:17 +01001915 DRM_DEBUG_KMS("enable %s (active %d, on? %d) for crtc %d\n",
Daniel Vetter46edb022013-06-05 13:34:12 +02001916 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001917 crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001918
Daniel Vettercdbd2312013-06-05 13:34:03 +02001919 if (pll->active++) {
1920 WARN_ON(!pll->on);
Daniel Vettere9d69442013-06-05 13:34:15 +02001921 assert_shared_dpll_enabled(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001922 return;
1923 }
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001924 WARN_ON(pll->on);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001925
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001926 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
1927
Daniel Vetter46edb022013-06-05 13:34:12 +02001928 DRM_DEBUG_KMS("enabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001929 pll->enable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001930 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001931}
1932
Damien Lespiauf6daaec2014-08-09 23:00:56 +01001933static void intel_disable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001934{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001935 struct drm_device *dev = crtc->base.dev;
1936 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001937 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001938
Jesse Barnes92f25842011-01-04 15:09:34 -08001939 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001940 BUG_ON(INTEL_INFO(dev)->gen < 5);
Daniel Vetter87a875b2013-06-05 13:34:19 +02001941 if (WARN_ON(pll == NULL))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001942 return;
1943
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001944 if (WARN_ON(pll->config.crtc_mask == 0))
Chris Wilson48da64a2012-05-13 20:16:12 +01001945 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001946
Daniel Vetter46edb022013-06-05 13:34:12 +02001947 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1948 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001949 crtc->base.base.id);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001950
Chris Wilson48da64a2012-05-13 20:16:12 +01001951 if (WARN_ON(pll->active == 0)) {
Daniel Vettere9d69442013-06-05 13:34:15 +02001952 assert_shared_dpll_disabled(dev_priv, pll);
Chris Wilson48da64a2012-05-13 20:16:12 +01001953 return;
1954 }
1955
Daniel Vettere9d69442013-06-05 13:34:15 +02001956 assert_shared_dpll_enabled(dev_priv, pll);
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001957 WARN_ON(!pll->on);
Daniel Vettercdbd2312013-06-05 13:34:03 +02001958 if (--pll->active)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001959 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001960
Daniel Vetter46edb022013-06-05 13:34:12 +02001961 DRM_DEBUG_KMS("disabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001962 pll->disable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001963 pll->on = false;
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001964
1965 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
Jesse Barnes92f25842011-01-04 15:09:34 -08001966}
1967
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001968static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1969 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001970{
Daniel Vetter23670b322012-11-01 09:15:30 +01001971 struct drm_device *dev = dev_priv->dev;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001972 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vettere2b78262013-06-07 23:10:03 +02001973 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter23670b322012-11-01 09:15:30 +01001974 uint32_t reg, val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001975
1976 /* PCH only available on ILK+ */
Ville Syrjälä55522f32014-09-03 14:09:53 +03001977 BUG_ON(!HAS_PCH_SPLIT(dev));
Jesse Barnes040484a2011-01-03 12:14:26 -08001978
1979 /* Make sure PCH DPLL is enabled */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02001980 assert_shared_dpll_enabled(dev_priv,
Daniel Vettere9d69442013-06-05 13:34:15 +02001981 intel_crtc_to_shared_dpll(intel_crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001982
1983 /* FDI must be feeding us bits for PCH ports */
1984 assert_fdi_tx_enabled(dev_priv, pipe);
1985 assert_fdi_rx_enabled(dev_priv, pipe);
1986
Daniel Vetter23670b322012-11-01 09:15:30 +01001987 if (HAS_PCH_CPT(dev)) {
1988 /* Workaround: Set the timing override bit before enabling the
1989 * pch transcoder. */
1990 reg = TRANS_CHICKEN2(pipe);
1991 val = I915_READ(reg);
1992 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1993 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001994 }
Daniel Vetter23670b322012-11-01 09:15:30 +01001995
Daniel Vetterab9412b2013-05-03 11:49:46 +02001996 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001997 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001998 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001999
2000 if (HAS_PCH_IBX(dev_priv->dev)) {
2001 /*
2002 * make the BPC in transcoder be consistent with
2003 * that in pipeconf reg.
2004 */
Daniel Vetterdfd07d72012-12-17 11:21:38 +01002005 val &= ~PIPECONF_BPC_MASK;
2006 val |= pipeconf_val & PIPECONF_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07002007 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02002008
2009 val &= ~TRANS_INTERLACE_MASK;
2010 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02002011 if (HAS_PCH_IBX(dev_priv->dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03002012 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02002013 val |= TRANS_LEGACY_INTERLACED_ILK;
2014 else
2015 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02002016 else
2017 val |= TRANS_PROGRESSIVE;
2018
Jesse Barnes040484a2011-01-03 12:14:26 -08002019 I915_WRITE(reg, val | TRANS_ENABLE);
2020 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03002021 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
Jesse Barnes040484a2011-01-03 12:14:26 -08002022}
2023
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002024static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02002025 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08002026{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002027 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002028
2029 /* PCH only available on ILK+ */
Ville Syrjälä55522f32014-09-03 14:09:53 +03002030 BUG_ON(!HAS_PCH_SPLIT(dev_priv->dev));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002031
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002032 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01002033 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02002034 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002035
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002036 /* Workaround: set timing override bit. */
2037 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01002038 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002039 I915_WRITE(_TRANSA_CHICKEN2, val);
2040
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02002041 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02002042 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002043
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02002044 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
2045 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02002046 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002047 else
2048 val |= TRANS_PROGRESSIVE;
2049
Daniel Vetterab9412b2013-05-03 11:49:46 +02002050 I915_WRITE(LPT_TRANSCONF, val);
2051 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
Paulo Zanoni937bb612012-10-31 18:12:47 -02002052 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002053}
2054
Paulo Zanonib8a4f402012-10-31 18:12:42 -02002055static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
2056 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08002057{
Daniel Vetter23670b322012-11-01 09:15:30 +01002058 struct drm_device *dev = dev_priv->dev;
2059 uint32_t reg, val;
Jesse Barnes040484a2011-01-03 12:14:26 -08002060
2061 /* FDI relies on the transcoder */
2062 assert_fdi_tx_disabled(dev_priv, pipe);
2063 assert_fdi_rx_disabled(dev_priv, pipe);
2064
Jesse Barnes291906f2011-02-02 12:28:03 -08002065 /* Ports must be off as well */
2066 assert_pch_ports_disabled(dev_priv, pipe);
2067
Daniel Vetterab9412b2013-05-03 11:49:46 +02002068 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002069 val = I915_READ(reg);
2070 val &= ~TRANS_ENABLE;
2071 I915_WRITE(reg, val);
2072 /* wait for PCH transcoder off, transcoder state */
2073 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03002074 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
Daniel Vetter23670b322012-11-01 09:15:30 +01002075
2076 if (!HAS_PCH_IBX(dev)) {
2077 /* Workaround: Clear the timing override chicken bit again. */
2078 reg = TRANS_CHICKEN2(pipe);
2079 val = I915_READ(reg);
2080 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
2081 I915_WRITE(reg, val);
2082 }
Jesse Barnes040484a2011-01-03 12:14:26 -08002083}
2084
Paulo Zanoniab4d9662012-10-31 18:12:55 -02002085static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002086{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002087 u32 val;
2088
Daniel Vetterab9412b2013-05-03 11:49:46 +02002089 val = I915_READ(LPT_TRANSCONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002090 val &= ~TRANS_ENABLE;
Daniel Vetterab9412b2013-05-03 11:49:46 +02002091 I915_WRITE(LPT_TRANSCONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002092 /* wait for PCH transcoder off, transcoder state */
Daniel Vetterab9412b2013-05-03 11:49:46 +02002093 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02002094 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002095
2096 /* Workaround: clear timing override bit. */
2097 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01002098 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002099 I915_WRITE(_TRANSA_CHICKEN2, val);
Jesse Barnes92f25842011-01-04 15:09:34 -08002100}
2101
2102/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002103 * intel_enable_pipe - enable a pipe, asserting requirements
Paulo Zanoni03722642014-01-17 13:51:09 -02002104 * @crtc: crtc responsible for the pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08002105 *
Paulo Zanoni03722642014-01-17 13:51:09 -02002106 * Enable @crtc's pipe, making sure that various hardware specific requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08002107 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002108 */
Paulo Zanonie1fdc472014-01-17 13:51:12 -02002109static void intel_enable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002110{
Paulo Zanoni03722642014-01-17 13:51:09 -02002111 struct drm_device *dev = crtc->base.dev;
2112 struct drm_i915_private *dev_priv = dev->dev_private;
2113 enum pipe pipe = crtc->pipe;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002114 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
2115 pipe);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002116 enum pipe pch_transcoder;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002117 int reg;
2118 u32 val;
2119
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002120 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002121 assert_cursor_disabled(dev_priv, pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002122 assert_sprites_disabled(dev_priv, pipe);
2123
Paulo Zanoni681e5812012-12-06 11:12:38 -02002124 if (HAS_PCH_LPT(dev_priv->dev))
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002125 pch_transcoder = TRANSCODER_A;
2126 else
2127 pch_transcoder = pipe;
2128
Jesse Barnesb24e7172011-01-04 15:09:30 -08002129 /*
2130 * A pipe without a PLL won't actually be able to drive bits from
2131 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
2132 * need the check.
2133 */
Imre Deak50360402015-01-16 00:55:16 -08002134 if (HAS_GMCH_DISPLAY(dev_priv->dev))
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03002135 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
Jani Nikula23538ef2013-08-27 15:12:22 +03002136 assert_dsi_pll_enabled(dev_priv);
2137 else
2138 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002139 else {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002140 if (crtc->config->has_pch_encoder) {
Jesse Barnes040484a2011-01-03 12:14:26 -08002141 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002142 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002143 assert_fdi_tx_pll_enabled(dev_priv,
2144 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08002145 }
2146 /* FIXME: assert CPU port conditions for SNB+ */
2147 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08002148
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002149 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002150 val = I915_READ(reg);
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002151 if (val & PIPECONF_ENABLE) {
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002152 WARN_ON(!((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
2153 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)));
Chris Wilson00d70b12011-03-17 07:18:29 +00002154 return;
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002155 }
Chris Wilson00d70b12011-03-17 07:18:29 +00002156
2157 I915_WRITE(reg, val | PIPECONF_ENABLE);
Paulo Zanoni851855d2013-12-19 19:12:29 -02002158 POSTING_READ(reg);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002159}
2160
2161/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002162 * intel_disable_pipe - disable a pipe, asserting requirements
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002163 * @crtc: crtc whose pipes is to be disabled
Jesse Barnesb24e7172011-01-04 15:09:30 -08002164 *
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002165 * Disable the pipe of @crtc, making sure that various hardware
2166 * specific requirements are met, if applicable, e.g. plane
2167 * disabled, panel fitter off, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002168 *
2169 * Will wait until the pipe has shut down before returning.
2170 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002171static void intel_disable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002172{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002173 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002174 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002175 enum pipe pipe = crtc->pipe;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002176 int reg;
2177 u32 val;
2178
2179 /*
2180 * Make sure planes won't keep trying to pump pixels to us,
2181 * or we might hang the display.
2182 */
2183 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002184 assert_cursor_disabled(dev_priv, pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07002185 assert_sprites_disabled(dev_priv, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002186
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002187 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002188 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00002189 if ((val & PIPECONF_ENABLE) == 0)
2190 return;
2191
Ville Syrjälä67adc642014-08-15 01:21:57 +03002192 /*
2193 * Double wide has implications for planes
2194 * so best keep it disabled when not needed.
2195 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002196 if (crtc->config->double_wide)
Ville Syrjälä67adc642014-08-15 01:21:57 +03002197 val &= ~PIPECONF_DOUBLE_WIDE;
2198
2199 /* Don't disable pipe or pipe PLLs if needed */
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002200 if (!(pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) &&
2201 !(pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Ville Syrjälä67adc642014-08-15 01:21:57 +03002202 val &= ~PIPECONF_ENABLE;
2203
2204 I915_WRITE(reg, val);
2205 if ((val & PIPECONF_ENABLE) == 0)
2206 intel_wait_for_pipe_off(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002207}
2208
Keith Packardd74362c2011-07-28 14:47:14 -07002209/*
2210 * Plane regs are double buffered, going from enabled->disabled needs a
2211 * trigger in order to latch. The display address reg provides this.
2212 */
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002213void intel_flush_primary_plane(struct drm_i915_private *dev_priv,
2214 enum plane plane)
Keith Packardd74362c2011-07-28 14:47:14 -07002215{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00002216 struct drm_device *dev = dev_priv->dev;
2217 u32 reg = INTEL_INFO(dev)->gen >= 4 ? DSPSURF(plane) : DSPADDR(plane);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002218
2219 I915_WRITE(reg, I915_READ(reg));
2220 POSTING_READ(reg);
Keith Packardd74362c2011-07-28 14:47:14 -07002221}
2222
Jesse Barnesb24e7172011-01-04 15:09:30 -08002223/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002224 * intel_enable_primary_hw_plane - enable the primary plane on a given pipe
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002225 * @plane: plane to be enabled
2226 * @crtc: crtc for the plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002227 *
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002228 * Enable @plane on @crtc, making sure that the pipe is running first.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002229 */
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002230static void intel_enable_primary_hw_plane(struct drm_plane *plane,
2231 struct drm_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002232{
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002233 struct drm_device *dev = plane->dev;
2234 struct drm_i915_private *dev_priv = dev->dev_private;
2235 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002236
2237 /* If the pipe isn't enabled, we can't pump pixels and may hang */
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002238 assert_pipe_enabled(dev_priv, intel_crtc->pipe);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002239 to_intel_plane_state(plane->state)->visible = true;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002240
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002241 dev_priv->display.update_primary_plane(crtc, plane->fb,
2242 crtc->x, crtc->y);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002243}
2244
Chris Wilson693db182013-03-05 14:52:39 +00002245static bool need_vtd_wa(struct drm_device *dev)
2246{
2247#ifdef CONFIG_INTEL_IOMMU
2248 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2249 return true;
2250#endif
2251 return false;
2252}
2253
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002254unsigned int
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002255intel_tile_height(struct drm_device *dev, uint32_t pixel_format,
2256 uint64_t fb_format_modifier)
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002257{
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002258 unsigned int tile_height;
2259 uint32_t pixel_bytes;
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002260
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002261 switch (fb_format_modifier) {
2262 case DRM_FORMAT_MOD_NONE:
2263 tile_height = 1;
2264 break;
2265 case I915_FORMAT_MOD_X_TILED:
2266 tile_height = IS_GEN2(dev) ? 16 : 8;
2267 break;
2268 case I915_FORMAT_MOD_Y_TILED:
2269 tile_height = 32;
2270 break;
2271 case I915_FORMAT_MOD_Yf_TILED:
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002272 pixel_bytes = drm_format_plane_cpp(pixel_format, 0);
2273 switch (pixel_bytes) {
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002274 default:
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002275 case 1:
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002276 tile_height = 64;
2277 break;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002278 case 2:
2279 case 4:
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002280 tile_height = 32;
2281 break;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002282 case 8:
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002283 tile_height = 16;
2284 break;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002285 case 16:
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002286 WARN_ONCE(1,
2287 "128-bit pixels are not supported for display!");
2288 tile_height = 16;
2289 break;
2290 }
2291 break;
2292 default:
2293 MISSING_CASE(fb_format_modifier);
2294 tile_height = 1;
2295 break;
2296 }
Daniel Vetter091df6c2015-02-10 17:16:10 +00002297
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002298 return tile_height;
2299}
2300
2301unsigned int
2302intel_fb_align_height(struct drm_device *dev, unsigned int height,
2303 uint32_t pixel_format, uint64_t fb_format_modifier)
2304{
2305 return ALIGN(height, intel_tile_height(dev, pixel_format,
2306 fb_format_modifier));
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002307}
2308
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002309static int
2310intel_fill_fb_ggtt_view(struct i915_ggtt_view *view, struct drm_framebuffer *fb,
2311 const struct drm_plane_state *plane_state)
2312{
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002313 struct intel_rotation_info *info = &view->rotation_info;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002314
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002315 *view = i915_ggtt_view_normal;
2316
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002317 if (!plane_state)
2318 return 0;
2319
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002320 if (!intel_rotation_90_or_270(plane_state->rotation))
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002321 return 0;
2322
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02002323 *view = i915_ggtt_view_rotated;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002324
2325 info->height = fb->height;
2326 info->pixel_format = fb->pixel_format;
2327 info->pitch = fb->pitches[0];
2328 info->fb_modifier = fb->modifier[0];
2329
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002330 return 0;
2331}
2332
Chris Wilson127bd2a2010-07-23 23:32:05 +01002333int
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002334intel_pin_and_fence_fb_obj(struct drm_plane *plane,
2335 struct drm_framebuffer *fb,
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +00002336 const struct drm_plane_state *plane_state,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002337 struct intel_engine_cs *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002338{
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002339 struct drm_device *dev = fb->dev;
Chris Wilsonce453d82011-02-21 14:43:56 +00002340 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002341 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002342 struct i915_ggtt_view view;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002343 u32 alignment;
2344 int ret;
2345
Matt Roperebcdd392014-07-09 16:22:11 -07002346 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
2347
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002348 switch (fb->modifier[0]) {
2349 case DRM_FORMAT_MOD_NONE:
Damien Lespiau1fada4c2013-07-03 21:06:02 +01002350 if (INTEL_INFO(dev)->gen >= 9)
2351 alignment = 256 * 1024;
2352 else if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
Chris Wilson534843d2010-07-05 18:01:46 +01002353 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002354 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01002355 alignment = 4 * 1024;
2356 else
2357 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002358 break;
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002359 case I915_FORMAT_MOD_X_TILED:
Damien Lespiau1fada4c2013-07-03 21:06:02 +01002360 if (INTEL_INFO(dev)->gen >= 9)
2361 alignment = 256 * 1024;
2362 else {
2363 /* pin() will align the object as required by fence */
2364 alignment = 0;
2365 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002366 break;
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002367 case I915_FORMAT_MOD_Y_TILED:
Damien Lespiau1327b9a2015-02-27 11:15:20 +00002368 case I915_FORMAT_MOD_Yf_TILED:
2369 if (WARN_ONCE(INTEL_INFO(dev)->gen < 9,
2370 "Y tiling bo slipped through, driver bug!\n"))
2371 return -EINVAL;
2372 alignment = 1 * 1024 * 1024;
2373 break;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002374 default:
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002375 MISSING_CASE(fb->modifier[0]);
2376 return -EINVAL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002377 }
2378
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002379 ret = intel_fill_fb_ggtt_view(&view, fb, plane_state);
2380 if (ret)
2381 return ret;
2382
Chris Wilson693db182013-03-05 14:52:39 +00002383 /* Note that the w/a also requires 64 PTE of padding following the
2384 * bo. We currently fill all unused PTE with the shadow page and so
2385 * we should always have valid PTE following the scanout preventing
2386 * the VT-d warning.
2387 */
2388 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2389 alignment = 256 * 1024;
2390
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002391 /*
2392 * Global gtt pte registers are special registers which actually forward
2393 * writes to a chunk of system memory. Which means that there is no risk
2394 * that the register values disappear as soon as we call
2395 * intel_runtime_pm_put(), so it is correct to wrap only the
2396 * pin/unpin/fence and not more.
2397 */
2398 intel_runtime_pm_get(dev_priv);
2399
Chris Wilsonce453d82011-02-21 14:43:56 +00002400 dev_priv->mm.interruptible = false;
Tvrtko Ursuline6617332015-03-23 11:10:33 +00002401 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined,
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002402 &view);
Chris Wilson48b956c2010-09-14 12:50:34 +01002403 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00002404 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002405
2406 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2407 * fence, whereas 965+ only requires a fence if using
2408 * framebuffer compression. For simplicity, we always install
2409 * a fence as the cost is not that onerous.
2410 */
Chris Wilson06d98132012-04-17 15:31:24 +01002411 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002412 if (ret)
2413 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002414
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002415 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002416
Chris Wilsonce453d82011-02-21 14:43:56 +00002417 dev_priv->mm.interruptible = true;
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002418 intel_runtime_pm_put(dev_priv);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002419 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01002420
2421err_unpin:
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002422 i915_gem_object_unpin_from_display_plane(obj, &view);
Chris Wilsonce453d82011-02-21 14:43:56 +00002423err_interruptible:
2424 dev_priv->mm.interruptible = true;
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002425 intel_runtime_pm_put(dev_priv);
Chris Wilson48b956c2010-09-14 12:50:34 +01002426 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002427}
2428
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +00002429static void intel_unpin_fb_obj(struct drm_framebuffer *fb,
2430 const struct drm_plane_state *plane_state)
Chris Wilson1690e1e2011-12-14 13:57:08 +01002431{
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +00002432 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002433 struct i915_ggtt_view view;
2434 int ret;
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +00002435
Matt Roperebcdd392014-07-09 16:22:11 -07002436 WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex));
2437
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002438 ret = intel_fill_fb_ggtt_view(&view, fb, plane_state);
2439 WARN_ONCE(ret, "Couldn't get view from plane state!");
2440
Chris Wilson1690e1e2011-12-14 13:57:08 +01002441 i915_gem_object_unpin_fence(obj);
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002442 i915_gem_object_unpin_from_display_plane(obj, &view);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002443}
2444
Daniel Vetterc2c75132012-07-05 12:17:30 +02002445/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2446 * is assumed to be a power-of-two. */
Chris Wilsonbc752862013-02-21 20:04:31 +00002447unsigned long intel_gen4_compute_page_offset(int *x, int *y,
2448 unsigned int tiling_mode,
2449 unsigned int cpp,
2450 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02002451{
Chris Wilsonbc752862013-02-21 20:04:31 +00002452 if (tiling_mode != I915_TILING_NONE) {
2453 unsigned int tile_rows, tiles;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002454
Chris Wilsonbc752862013-02-21 20:04:31 +00002455 tile_rows = *y / 8;
2456 *y %= 8;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002457
Chris Wilsonbc752862013-02-21 20:04:31 +00002458 tiles = *x / (512/cpp);
2459 *x %= 512/cpp;
2460
2461 return tile_rows * pitch * 8 + tiles * 4096;
2462 } else {
2463 unsigned int offset;
2464
2465 offset = *y * pitch + *x * cpp;
2466 *y = 0;
2467 *x = (offset & 4095) / cpp;
2468 return offset & -4096;
2469 }
Daniel Vetterc2c75132012-07-05 12:17:30 +02002470}
2471
Damien Lespiaub35d63f2015-01-20 12:51:50 +00002472static int i9xx_format_to_fourcc(int format)
Jesse Barnes46f297f2014-03-07 08:57:48 -08002473{
2474 switch (format) {
2475 case DISPPLANE_8BPP:
2476 return DRM_FORMAT_C8;
2477 case DISPPLANE_BGRX555:
2478 return DRM_FORMAT_XRGB1555;
2479 case DISPPLANE_BGRX565:
2480 return DRM_FORMAT_RGB565;
2481 default:
2482 case DISPPLANE_BGRX888:
2483 return DRM_FORMAT_XRGB8888;
2484 case DISPPLANE_RGBX888:
2485 return DRM_FORMAT_XBGR8888;
2486 case DISPPLANE_BGRX101010:
2487 return DRM_FORMAT_XRGB2101010;
2488 case DISPPLANE_RGBX101010:
2489 return DRM_FORMAT_XBGR2101010;
2490 }
2491}
2492
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00002493static int skl_format_to_fourcc(int format, bool rgb_order, bool alpha)
2494{
2495 switch (format) {
2496 case PLANE_CTL_FORMAT_RGB_565:
2497 return DRM_FORMAT_RGB565;
2498 default:
2499 case PLANE_CTL_FORMAT_XRGB_8888:
2500 if (rgb_order) {
2501 if (alpha)
2502 return DRM_FORMAT_ABGR8888;
2503 else
2504 return DRM_FORMAT_XBGR8888;
2505 } else {
2506 if (alpha)
2507 return DRM_FORMAT_ARGB8888;
2508 else
2509 return DRM_FORMAT_XRGB8888;
2510 }
2511 case PLANE_CTL_FORMAT_XRGB_2101010:
2512 if (rgb_order)
2513 return DRM_FORMAT_XBGR2101010;
2514 else
2515 return DRM_FORMAT_XRGB2101010;
2516 }
2517}
2518
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002519static bool
Daniel Vetterf6936e22015-03-26 12:17:05 +01002520intel_alloc_initial_plane_obj(struct intel_crtc *crtc,
2521 struct intel_initial_plane_config *plane_config)
Jesse Barnes46f297f2014-03-07 08:57:48 -08002522{
2523 struct drm_device *dev = crtc->base.dev;
2524 struct drm_i915_gem_object *obj = NULL;
2525 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Damien Lespiau2d140302015-02-05 17:22:18 +00002526 struct drm_framebuffer *fb = &plane_config->fb->base;
Daniel Vetterf37b5c22015-02-10 23:12:27 +01002527 u32 base_aligned = round_down(plane_config->base, PAGE_SIZE);
2528 u32 size_aligned = round_up(plane_config->base + plane_config->size,
2529 PAGE_SIZE);
2530
2531 size_aligned -= base_aligned;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002532
Chris Wilsonff2652e2014-03-10 08:07:02 +00002533 if (plane_config->size == 0)
2534 return false;
2535
Daniel Vetterf37b5c22015-02-10 23:12:27 +01002536 obj = i915_gem_object_create_stolen_for_preallocated(dev,
2537 base_aligned,
2538 base_aligned,
2539 size_aligned);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002540 if (!obj)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002541 return false;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002542
Damien Lespiau49af4492015-01-20 12:51:44 +00002543 obj->tiling_mode = plane_config->tiling;
2544 if (obj->tiling_mode == I915_TILING_X)
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002545 obj->stride = fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002546
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002547 mode_cmd.pixel_format = fb->pixel_format;
2548 mode_cmd.width = fb->width;
2549 mode_cmd.height = fb->height;
2550 mode_cmd.pitches[0] = fb->pitches[0];
Daniel Vetter18c52472015-02-10 17:16:09 +00002551 mode_cmd.modifier[0] = fb->modifier[0];
2552 mode_cmd.flags = DRM_MODE_FB_MODIFIERS;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002553
2554 mutex_lock(&dev->struct_mutex);
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002555 if (intel_framebuffer_init(dev, to_intel_framebuffer(fb),
Jesse Barnes484b41d2014-03-07 08:57:55 -08002556 &mode_cmd, obj)) {
Jesse Barnes46f297f2014-03-07 08:57:48 -08002557 DRM_DEBUG_KMS("intel fb init failed\n");
2558 goto out_unref_obj;
2559 }
Jesse Barnes46f297f2014-03-07 08:57:48 -08002560 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002561
Daniel Vetterf6936e22015-03-26 12:17:05 +01002562 DRM_DEBUG_KMS("initial plane fb obj %p\n", obj);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002563 return true;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002564
2565out_unref_obj:
2566 drm_gem_object_unreference(&obj->base);
2567 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002568 return false;
2569}
2570
Matt Roperafd65eb2015-02-03 13:10:04 -08002571/* Update plane->state->fb to match plane->fb after driver-internal updates */
2572static void
2573update_state_fb(struct drm_plane *plane)
2574{
2575 if (plane->fb == plane->state->fb)
2576 return;
2577
2578 if (plane->state->fb)
2579 drm_framebuffer_unreference(plane->state->fb);
2580 plane->state->fb = plane->fb;
2581 if (plane->state->fb)
2582 drm_framebuffer_reference(plane->state->fb);
2583}
2584
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002585static void
Daniel Vetterf6936e22015-03-26 12:17:05 +01002586intel_find_initial_plane_obj(struct intel_crtc *intel_crtc,
2587 struct intel_initial_plane_config *plane_config)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002588{
2589 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnesd9ceb812014-10-09 12:57:43 -07002590 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002591 struct drm_crtc *c;
2592 struct intel_crtc *i;
Matt Roper2ff8fde2014-07-08 07:50:07 -07002593 struct drm_i915_gem_object *obj;
Daniel Vetter88595ac2015-03-26 12:42:24 +01002594 struct drm_plane *primary = intel_crtc->base.primary;
2595 struct drm_framebuffer *fb;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002596
Damien Lespiau2d140302015-02-05 17:22:18 +00002597 if (!plane_config->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002598 return;
2599
Daniel Vetterf6936e22015-03-26 12:17:05 +01002600 if (intel_alloc_initial_plane_obj(intel_crtc, plane_config)) {
Daniel Vetter88595ac2015-03-26 12:42:24 +01002601 fb = &plane_config->fb->base;
2602 goto valid_fb;
Damien Lespiauf55548b2015-02-05 18:30:20 +00002603 }
Jesse Barnes484b41d2014-03-07 08:57:55 -08002604
Damien Lespiau2d140302015-02-05 17:22:18 +00002605 kfree(plane_config->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002606
2607 /*
2608 * Failed to alloc the obj, check to see if we should share
2609 * an fb with another CRTC instead
2610 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002611 for_each_crtc(dev, c) {
Jesse Barnes484b41d2014-03-07 08:57:55 -08002612 i = to_intel_crtc(c);
2613
2614 if (c == &intel_crtc->base)
2615 continue;
2616
Matt Roper2ff8fde2014-07-08 07:50:07 -07002617 if (!i->active)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002618 continue;
2619
Daniel Vetter88595ac2015-03-26 12:42:24 +01002620 fb = c->primary->fb;
2621 if (!fb)
Matt Roper2ff8fde2014-07-08 07:50:07 -07002622 continue;
2623
Daniel Vetter88595ac2015-03-26 12:42:24 +01002624 obj = intel_fb_obj(fb);
Matt Roper2ff8fde2014-07-08 07:50:07 -07002625 if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) {
Daniel Vetter88595ac2015-03-26 12:42:24 +01002626 drm_framebuffer_reference(fb);
2627 goto valid_fb;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002628 }
2629 }
Daniel Vetter88595ac2015-03-26 12:42:24 +01002630
2631 return;
2632
2633valid_fb:
2634 obj = intel_fb_obj(fb);
2635 if (obj->tiling_mode != I915_TILING_NONE)
2636 dev_priv->preserve_bios_swizzle = true;
2637
2638 primary->fb = fb;
2639 primary->state->crtc = &intel_crtc->base;
2640 primary->crtc = &intel_crtc->base;
2641 update_state_fb(primary);
2642 obj->frontbuffer_bits |= INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002643}
2644
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002645static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2646 struct drm_framebuffer *fb,
2647 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07002648{
2649 struct drm_device *dev = crtc->dev;
2650 struct drm_i915_private *dev_priv = dev->dev_private;
2651 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002652 struct drm_plane *primary = crtc->primary;
2653 bool visible = to_intel_plane_state(primary->state)->visible;
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002654 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002655 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002656 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002657 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002658 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302659 int pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002660
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002661 if (!visible || !fb) {
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002662 I915_WRITE(reg, 0);
2663 if (INTEL_INFO(dev)->gen >= 4)
2664 I915_WRITE(DSPSURF(plane), 0);
2665 else
2666 I915_WRITE(DSPADDR(plane), 0);
2667 POSTING_READ(reg);
2668 return;
2669 }
2670
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002671 obj = intel_fb_obj(fb);
2672 if (WARN_ON(obj == NULL))
2673 return;
2674
2675 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2676
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002677 dspcntr = DISPPLANE_GAMMA_ENABLE;
2678
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002679 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002680
2681 if (INTEL_INFO(dev)->gen < 4) {
2682 if (intel_crtc->pipe == PIPE_B)
2683 dspcntr |= DISPPLANE_SEL_PIPE_B;
2684
2685 /* pipesrc and dspsize control the size that is scaled from,
2686 * which should always be the user's requested size.
2687 */
2688 I915_WRITE(DSPSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002689 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2690 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002691 I915_WRITE(DSPPOS(plane), 0);
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002692 } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) {
2693 I915_WRITE(PRIMSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002694 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2695 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002696 I915_WRITE(PRIMPOS(plane), 0);
2697 I915_WRITE(PRIMCNSTALPHA(plane), 0);
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002698 }
2699
Ville Syrjälä57779d02012-10-31 17:50:14 +02002700 switch (fb->pixel_format) {
2701 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002702 dspcntr |= DISPPLANE_8BPP;
2703 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002704 case DRM_FORMAT_XRGB1555:
2705 case DRM_FORMAT_ARGB1555:
2706 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002707 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002708 case DRM_FORMAT_RGB565:
2709 dspcntr |= DISPPLANE_BGRX565;
2710 break;
2711 case DRM_FORMAT_XRGB8888:
2712 case DRM_FORMAT_ARGB8888:
2713 dspcntr |= DISPPLANE_BGRX888;
2714 break;
2715 case DRM_FORMAT_XBGR8888:
2716 case DRM_FORMAT_ABGR8888:
2717 dspcntr |= DISPPLANE_RGBX888;
2718 break;
2719 case DRM_FORMAT_XRGB2101010:
2720 case DRM_FORMAT_ARGB2101010:
2721 dspcntr |= DISPPLANE_BGRX101010;
2722 break;
2723 case DRM_FORMAT_XBGR2101010:
2724 case DRM_FORMAT_ABGR2101010:
2725 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002726 break;
2727 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002728 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07002729 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002730
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002731 if (INTEL_INFO(dev)->gen >= 4 &&
2732 obj->tiling_mode != I915_TILING_NONE)
2733 dspcntr |= DISPPLANE_TILED;
Jesse Barnes81255562010-08-02 12:07:50 -07002734
Ville Syrjäläde1aa622013-06-07 10:47:01 +03002735 if (IS_G4X(dev))
2736 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2737
Ville Syrjäläb98971272014-08-27 16:51:22 +03002738 linear_offset = y * fb->pitches[0] + x * pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002739
Daniel Vetterc2c75132012-07-05 12:17:30 +02002740 if (INTEL_INFO(dev)->gen >= 4) {
2741 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002742 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002743 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002744 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002745 linear_offset -= intel_crtc->dspaddr_offset;
2746 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002747 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002748 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002749
Matt Roper8e7d6882015-01-21 16:35:41 -08002750 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302751 dspcntr |= DISPPLANE_ROTATE_180;
2752
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002753 x += (intel_crtc->config->pipe_src_w - 1);
2754 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302755
2756 /* Finding the last pixel of the last line of the display
2757 data and adding to linear_offset*/
2758 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002759 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2760 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302761 }
2762
2763 I915_WRITE(reg, dspcntr);
2764
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002765 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002766 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002767 I915_WRITE(DSPSURF(plane),
2768 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002769 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002770 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002771 } else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002772 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002773 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002774}
2775
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002776static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2777 struct drm_framebuffer *fb,
2778 int x, int y)
Jesse Barnes17638cd2011-06-24 12:19:23 -07002779{
2780 struct drm_device *dev = crtc->dev;
2781 struct drm_i915_private *dev_priv = dev->dev_private;
2782 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002783 struct drm_plane *primary = crtc->primary;
2784 bool visible = to_intel_plane_state(primary->state)->visible;
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002785 struct drm_i915_gem_object *obj;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002786 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002787 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002788 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002789 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302790 int pixel_size;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002791
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002792 if (!visible || !fb) {
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002793 I915_WRITE(reg, 0);
2794 I915_WRITE(DSPSURF(plane), 0);
2795 POSTING_READ(reg);
2796 return;
2797 }
2798
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002799 obj = intel_fb_obj(fb);
2800 if (WARN_ON(obj == NULL))
2801 return;
2802
2803 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2804
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002805 dspcntr = DISPPLANE_GAMMA_ENABLE;
2806
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002807 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002808
2809 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
2810 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
2811
Ville Syrjälä57779d02012-10-31 17:50:14 +02002812 switch (fb->pixel_format) {
2813 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002814 dspcntr |= DISPPLANE_8BPP;
2815 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002816 case DRM_FORMAT_RGB565:
2817 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002818 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002819 case DRM_FORMAT_XRGB8888:
2820 case DRM_FORMAT_ARGB8888:
2821 dspcntr |= DISPPLANE_BGRX888;
2822 break;
2823 case DRM_FORMAT_XBGR8888:
2824 case DRM_FORMAT_ABGR8888:
2825 dspcntr |= DISPPLANE_RGBX888;
2826 break;
2827 case DRM_FORMAT_XRGB2101010:
2828 case DRM_FORMAT_ARGB2101010:
2829 dspcntr |= DISPPLANE_BGRX101010;
2830 break;
2831 case DRM_FORMAT_XBGR2101010:
2832 case DRM_FORMAT_ABGR2101010:
2833 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002834 break;
2835 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002836 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002837 }
2838
2839 if (obj->tiling_mode != I915_TILING_NONE)
2840 dspcntr |= DISPPLANE_TILED;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002841
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002842 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03002843 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002844
Ville Syrjäläb98971272014-08-27 16:51:22 +03002845 linear_offset = y * fb->pitches[0] + x * pixel_size;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002846 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002847 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002848 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002849 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002850 linear_offset -= intel_crtc->dspaddr_offset;
Matt Roper8e7d6882015-01-21 16:35:41 -08002851 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302852 dspcntr |= DISPPLANE_ROTATE_180;
2853
2854 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002855 x += (intel_crtc->config->pipe_src_w - 1);
2856 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302857
2858 /* Finding the last pixel of the last line of the display
2859 data and adding to linear_offset*/
2860 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002861 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2862 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302863 }
2864 }
2865
2866 I915_WRITE(reg, dspcntr);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002867
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002868 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002869 I915_WRITE(DSPSURF(plane),
2870 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Paulo Zanonib3dc6852013-11-02 21:07:33 -07002871 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002872 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2873 } else {
2874 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2875 I915_WRITE(DSPLINOFF(plane), linear_offset);
2876 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002877 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002878}
2879
Damien Lespiaub3218032015-02-27 11:15:18 +00002880u32 intel_fb_stride_alignment(struct drm_device *dev, uint64_t fb_modifier,
2881 uint32_t pixel_format)
2882{
2883 u32 bits_per_pixel = drm_format_plane_cpp(pixel_format, 0) * 8;
2884
2885 /*
2886 * The stride is either expressed as a multiple of 64 bytes
2887 * chunks for linear buffers or in number of tiles for tiled
2888 * buffers.
2889 */
2890 switch (fb_modifier) {
2891 case DRM_FORMAT_MOD_NONE:
2892 return 64;
2893 case I915_FORMAT_MOD_X_TILED:
2894 if (INTEL_INFO(dev)->gen == 2)
2895 return 128;
2896 return 512;
2897 case I915_FORMAT_MOD_Y_TILED:
2898 /* No need to check for old gens and Y tiling since this is
2899 * about the display engine and those will be blocked before
2900 * we get here.
2901 */
2902 return 128;
2903 case I915_FORMAT_MOD_Yf_TILED:
2904 if (bits_per_pixel == 8)
2905 return 64;
2906 else
2907 return 128;
2908 default:
2909 MISSING_CASE(fb_modifier);
2910 return 64;
2911 }
2912}
2913
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002914unsigned long intel_plane_obj_offset(struct intel_plane *intel_plane,
2915 struct drm_i915_gem_object *obj)
2916{
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02002917 const struct i915_ggtt_view *view = &i915_ggtt_view_normal;
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002918
2919 if (intel_rotation_90_or_270(intel_plane->base.state->rotation))
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02002920 view = &i915_ggtt_view_rotated;
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002921
2922 return i915_gem_obj_ggtt_offset_view(obj, view);
2923}
2924
Chandra Kondurua1b22782015-04-07 15:28:45 -07002925/*
2926 * This function detaches (aka. unbinds) unused scalers in hardware
2927 */
2928void skl_detach_scalers(struct intel_crtc *intel_crtc)
2929{
2930 struct drm_device *dev;
2931 struct drm_i915_private *dev_priv;
2932 struct intel_crtc_scaler_state *scaler_state;
2933 int i;
2934
2935 if (!intel_crtc || !intel_crtc->config)
2936 return;
2937
2938 dev = intel_crtc->base.dev;
2939 dev_priv = dev->dev_private;
2940 scaler_state = &intel_crtc->config->scaler_state;
2941
2942 /* loop through and disable scalers that aren't in use */
2943 for (i = 0; i < intel_crtc->num_scalers; i++) {
2944 if (!scaler_state->scalers[i].in_use) {
2945 I915_WRITE(SKL_PS_CTRL(intel_crtc->pipe, i), 0);
2946 I915_WRITE(SKL_PS_WIN_POS(intel_crtc->pipe, i), 0);
2947 I915_WRITE(SKL_PS_WIN_SZ(intel_crtc->pipe, i), 0);
2948 DRM_DEBUG_KMS("CRTC:%d Disabled scaler id %u.%u\n",
2949 intel_crtc->base.base.id, intel_crtc->pipe, i);
2950 }
2951 }
2952}
2953
Chandra Konduru6156a452015-04-27 13:48:39 -07002954u32 skl_plane_ctl_format(uint32_t pixel_format)
2955{
Damien Lespiau65438bc2015-05-12 16:13:15 +01002956 u32 format = 0;
Damien Lespiaub250a4c2015-05-12 16:13:13 +01002957
Chandra Konduru6156a452015-04-27 13:48:39 -07002958 switch (pixel_format) {
Damien Lespiaud161cf72015-05-12 16:13:17 +01002959 case DRM_FORMAT_C8:
2960 format = PLANE_CTL_FORMAT_INDEXED;
2961 break;
Chandra Konduru6156a452015-04-27 13:48:39 -07002962 case DRM_FORMAT_RGB565:
Damien Lespiau65438bc2015-05-12 16:13:15 +01002963 format = PLANE_CTL_FORMAT_RGB_565;
Chandra Konduru6156a452015-04-27 13:48:39 -07002964 break;
2965 case DRM_FORMAT_XBGR8888:
Damien Lespiau65438bc2015-05-12 16:13:15 +01002966 format = PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX;
Chandra Konduru6156a452015-04-27 13:48:39 -07002967 break;
2968 case DRM_FORMAT_XRGB8888:
Damien Lespiau65438bc2015-05-12 16:13:15 +01002969 format = PLANE_CTL_FORMAT_XRGB_8888;
Chandra Konduru6156a452015-04-27 13:48:39 -07002970 break;
2971 /*
2972 * XXX: For ARBG/ABGR formats we default to expecting scanout buffers
2973 * to be already pre-multiplied. We need to add a knob (or a different
2974 * DRM_FORMAT) for user-space to configure that.
2975 */
2976 case DRM_FORMAT_ABGR8888:
Damien Lespiau65438bc2015-05-12 16:13:15 +01002977 format = PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX |
Chandra Konduru6156a452015-04-27 13:48:39 -07002978 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
2979 break;
2980 case DRM_FORMAT_ARGB8888:
Damien Lespiau65438bc2015-05-12 16:13:15 +01002981 format = PLANE_CTL_FORMAT_XRGB_8888 |
Chandra Konduru6156a452015-04-27 13:48:39 -07002982 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
2983 break;
2984 case DRM_FORMAT_XRGB2101010:
Damien Lespiau65438bc2015-05-12 16:13:15 +01002985 format = PLANE_CTL_FORMAT_XRGB_2101010;
Chandra Konduru6156a452015-04-27 13:48:39 -07002986 break;
2987 case DRM_FORMAT_XBGR2101010:
Damien Lespiau65438bc2015-05-12 16:13:15 +01002988 format = PLANE_CTL_ORDER_RGBX | PLANE_CTL_FORMAT_XRGB_2101010;
Chandra Konduru6156a452015-04-27 13:48:39 -07002989 break;
2990 case DRM_FORMAT_YUYV:
Damien Lespiau65438bc2015-05-12 16:13:15 +01002991 format = PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YUYV;
Chandra Konduru6156a452015-04-27 13:48:39 -07002992 break;
2993 case DRM_FORMAT_YVYU:
Damien Lespiau65438bc2015-05-12 16:13:15 +01002994 format = PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YVYU;
Chandra Konduru6156a452015-04-27 13:48:39 -07002995 break;
2996 case DRM_FORMAT_UYVY:
Damien Lespiau65438bc2015-05-12 16:13:15 +01002997 format = PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_UYVY;
Chandra Konduru6156a452015-04-27 13:48:39 -07002998 break;
2999 case DRM_FORMAT_VYUY:
Damien Lespiau65438bc2015-05-12 16:13:15 +01003000 format = PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_VYUY;
Chandra Konduru6156a452015-04-27 13:48:39 -07003001 break;
3002 default:
Damien Lespiau4249eee2015-05-12 16:13:16 +01003003 MISSING_CASE(pixel_format);
Chandra Konduru6156a452015-04-27 13:48:39 -07003004 }
Damien Lespiau8cfcba42015-05-12 16:13:14 +01003005
Damien Lespiau65438bc2015-05-12 16:13:15 +01003006 return format;
Chandra Konduru6156a452015-04-27 13:48:39 -07003007}
3008
3009u32 skl_plane_ctl_tiling(uint64_t fb_modifier)
3010{
3011 u32 plane_ctl_tiling = 0;
Damien Lespiaub250a4c2015-05-12 16:13:13 +01003012
Chandra Konduru6156a452015-04-27 13:48:39 -07003013 switch (fb_modifier) {
3014 case DRM_FORMAT_MOD_NONE:
3015 break;
3016 case I915_FORMAT_MOD_X_TILED:
3017 plane_ctl_tiling = PLANE_CTL_TILED_X;
3018 break;
3019 case I915_FORMAT_MOD_Y_TILED:
3020 plane_ctl_tiling = PLANE_CTL_TILED_Y;
3021 break;
3022 case I915_FORMAT_MOD_Yf_TILED:
3023 plane_ctl_tiling = PLANE_CTL_TILED_YF;
3024 break;
3025 default:
3026 MISSING_CASE(fb_modifier);
3027 }
Damien Lespiau8cfcba42015-05-12 16:13:14 +01003028
Chandra Konduru6156a452015-04-27 13:48:39 -07003029 return plane_ctl_tiling;
3030}
3031
3032u32 skl_plane_ctl_rotation(unsigned int rotation)
3033{
3034 u32 plane_ctl_rotation = 0;
Damien Lespiaub250a4c2015-05-12 16:13:13 +01003035
Chandra Konduru6156a452015-04-27 13:48:39 -07003036 switch (rotation) {
3037 case BIT(DRM_ROTATE_0):
3038 break;
3039 case BIT(DRM_ROTATE_90):
3040 plane_ctl_rotation = PLANE_CTL_ROTATE_90;
3041 break;
3042 case BIT(DRM_ROTATE_180):
3043 plane_ctl_rotation = PLANE_CTL_ROTATE_180;
3044 break;
3045 case BIT(DRM_ROTATE_270):
3046 plane_ctl_rotation = PLANE_CTL_ROTATE_270;
3047 break;
3048 default:
3049 MISSING_CASE(rotation);
3050 }
3051
3052 return plane_ctl_rotation;
3053}
3054
Damien Lespiau70d21f02013-07-03 21:06:04 +01003055static void skylake_update_primary_plane(struct drm_crtc *crtc,
3056 struct drm_framebuffer *fb,
3057 int x, int y)
3058{
3059 struct drm_device *dev = crtc->dev;
3060 struct drm_i915_private *dev_priv = dev->dev_private;
3061 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03003062 struct drm_plane *plane = crtc->primary;
3063 bool visible = to_intel_plane_state(plane->state)->visible;
Damien Lespiau70d21f02013-07-03 21:06:04 +01003064 struct drm_i915_gem_object *obj;
3065 int pipe = intel_crtc->pipe;
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303066 u32 plane_ctl, stride_div, stride;
3067 u32 tile_height, plane_offset, plane_size;
3068 unsigned int rotation;
3069 int x_offset, y_offset;
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00003070 unsigned long surf_addr;
Chandra Konduru6156a452015-04-27 13:48:39 -07003071 struct intel_crtc_state *crtc_state = intel_crtc->config;
3072 struct intel_plane_state *plane_state;
3073 int src_x = 0, src_y = 0, src_w = 0, src_h = 0;
3074 int dst_x = 0, dst_y = 0, dst_w = 0, dst_h = 0;
3075 int scaler_id = -1;
3076
Chandra Konduru6156a452015-04-27 13:48:39 -07003077 plane_state = to_intel_plane_state(plane->state);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003078
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03003079 if (!visible || !fb) {
Damien Lespiau70d21f02013-07-03 21:06:04 +01003080 I915_WRITE(PLANE_CTL(pipe, 0), 0);
3081 I915_WRITE(PLANE_SURF(pipe, 0), 0);
3082 POSTING_READ(PLANE_CTL(pipe, 0));
3083 return;
3084 }
3085
3086 plane_ctl = PLANE_CTL_ENABLE |
3087 PLANE_CTL_PIPE_GAMMA_ENABLE |
3088 PLANE_CTL_PIPE_CSC_ENABLE;
3089
Chandra Konduru6156a452015-04-27 13:48:39 -07003090 plane_ctl |= skl_plane_ctl_format(fb->pixel_format);
3091 plane_ctl |= skl_plane_ctl_tiling(fb->modifier[0]);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003092 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303093
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303094 rotation = plane->state->rotation;
Chandra Konduru6156a452015-04-27 13:48:39 -07003095 plane_ctl |= skl_plane_ctl_rotation(rotation);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003096
Damien Lespiaub3218032015-02-27 11:15:18 +00003097 obj = intel_fb_obj(fb);
3098 stride_div = intel_fb_stride_alignment(dev, fb->modifier[0],
3099 fb->pixel_format);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303100 surf_addr = intel_plane_obj_offset(to_intel_plane(plane), obj);
3101
Chandra Konduru6156a452015-04-27 13:48:39 -07003102 /*
3103 * FIXME: intel_plane_state->src, dst aren't set when transitional
3104 * update_plane helpers are called from legacy paths.
3105 * Once full atomic crtc is available, below check can be avoided.
3106 */
3107 if (drm_rect_width(&plane_state->src)) {
3108 scaler_id = plane_state->scaler_id;
3109 src_x = plane_state->src.x1 >> 16;
3110 src_y = plane_state->src.y1 >> 16;
3111 src_w = drm_rect_width(&plane_state->src) >> 16;
3112 src_h = drm_rect_height(&plane_state->src) >> 16;
3113 dst_x = plane_state->dst.x1;
3114 dst_y = plane_state->dst.y1;
3115 dst_w = drm_rect_width(&plane_state->dst);
3116 dst_h = drm_rect_height(&plane_state->dst);
3117
3118 WARN_ON(x != src_x || y != src_y);
3119 } else {
3120 src_w = intel_crtc->config->pipe_src_w;
3121 src_h = intel_crtc->config->pipe_src_h;
3122 }
3123
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303124 if (intel_rotation_90_or_270(rotation)) {
3125 /* stride = Surface height in tiles */
Chandra Konduru2614f172015-05-08 20:22:46 -07003126 tile_height = intel_tile_height(dev, fb->pixel_format,
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303127 fb->modifier[0]);
3128 stride = DIV_ROUND_UP(fb->height, tile_height);
Chandra Konduru6156a452015-04-27 13:48:39 -07003129 x_offset = stride * tile_height - y - src_h;
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303130 y_offset = x;
Chandra Konduru6156a452015-04-27 13:48:39 -07003131 plane_size = (src_w - 1) << 16 | (src_h - 1);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303132 } else {
3133 stride = fb->pitches[0] / stride_div;
3134 x_offset = x;
3135 y_offset = y;
Chandra Konduru6156a452015-04-27 13:48:39 -07003136 plane_size = (src_h - 1) << 16 | (src_w - 1);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303137 }
3138 plane_offset = y_offset << 16 | x_offset;
Damien Lespiaub3218032015-02-27 11:15:18 +00003139
Damien Lespiau70d21f02013-07-03 21:06:04 +01003140 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303141 I915_WRITE(PLANE_OFFSET(pipe, 0), plane_offset);
3142 I915_WRITE(PLANE_SIZE(pipe, 0), plane_size);
3143 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
Chandra Konduru6156a452015-04-27 13:48:39 -07003144
3145 if (scaler_id >= 0) {
3146 uint32_t ps_ctrl = 0;
3147
3148 WARN_ON(!dst_w || !dst_h);
3149 ps_ctrl = PS_SCALER_EN | PS_PLANE_SEL(0) |
3150 crtc_state->scaler_state.scalers[scaler_id].mode;
3151 I915_WRITE(SKL_PS_CTRL(pipe, scaler_id), ps_ctrl);
3152 I915_WRITE(SKL_PS_PWR_GATE(pipe, scaler_id), 0);
3153 I915_WRITE(SKL_PS_WIN_POS(pipe, scaler_id), (dst_x << 16) | dst_y);
3154 I915_WRITE(SKL_PS_WIN_SZ(pipe, scaler_id), (dst_w << 16) | dst_h);
3155 I915_WRITE(PLANE_POS(pipe, 0), 0);
3156 } else {
3157 I915_WRITE(PLANE_POS(pipe, 0), (dst_y << 16) | dst_x);
3158 }
3159
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00003160 I915_WRITE(PLANE_SURF(pipe, 0), surf_addr);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003161
3162 POSTING_READ(PLANE_SURF(pipe, 0));
3163}
3164
Jesse Barnes17638cd2011-06-24 12:19:23 -07003165/* Assume fb object is pinned & idle & fenced and just update base pointers */
3166static int
3167intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
3168 int x, int y, enum mode_set_atomic state)
3169{
3170 struct drm_device *dev = crtc->dev;
3171 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07003172
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01003173 if (dev_priv->display.disable_fbc)
3174 dev_priv->display.disable_fbc(dev);
Jesse Barnes81255562010-08-02 12:07:50 -07003175
Daniel Vetter29b9bde2014-04-24 23:55:01 +02003176 dev_priv->display.update_primary_plane(crtc, fb, x, y);
3177
3178 return 0;
Jesse Barnes81255562010-08-02 12:07:50 -07003179}
3180
Ville Syrjälä75147472014-11-24 18:28:11 +02003181static void intel_complete_page_flips(struct drm_device *dev)
Ville Syrjälä96a02912013-02-18 19:08:49 +02003182{
Ville Syrjälä96a02912013-02-18 19:08:49 +02003183 struct drm_crtc *crtc;
3184
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01003185 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02003186 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3187 enum plane plane = intel_crtc->plane;
3188
3189 intel_prepare_page_flip(dev, plane);
3190 intel_finish_page_flip_plane(dev, plane);
3191 }
Ville Syrjälä75147472014-11-24 18:28:11 +02003192}
3193
3194static void intel_update_primary_planes(struct drm_device *dev)
3195{
3196 struct drm_i915_private *dev_priv = dev->dev_private;
3197 struct drm_crtc *crtc;
Ville Syrjälä96a02912013-02-18 19:08:49 +02003198
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01003199 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02003200 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3201
Rob Clark51fd3712013-11-19 12:10:12 -05003202 drm_modeset_lock(&crtc->mutex, NULL);
Chris Wilson947fdaadf2013-11-27 12:01:32 +00003203 /*
3204 * FIXME: Once we have proper support for primary planes (and
3205 * disabling them without disabling the entire crtc) allow again
Dave Airlie66e514c2014-04-03 07:51:54 +10003206 * a NULL crtc->primary->fb.
Chris Wilson947fdaadf2013-11-27 12:01:32 +00003207 */
Matt Roperf4510a22014-04-01 15:22:40 -07003208 if (intel_crtc->active && crtc->primary->fb)
Matt Roper262ca2b2014-03-18 17:22:55 -07003209 dev_priv->display.update_primary_plane(crtc,
Dave Airlie66e514c2014-04-03 07:51:54 +10003210 crtc->primary->fb,
Matt Roper262ca2b2014-03-18 17:22:55 -07003211 crtc->x,
3212 crtc->y);
Rob Clark51fd3712013-11-19 12:10:12 -05003213 drm_modeset_unlock(&crtc->mutex);
Ville Syrjälä96a02912013-02-18 19:08:49 +02003214 }
3215}
3216
Maarten Lankhorstce22dba2015-04-21 17:12:56 +03003217void intel_crtc_reset(struct intel_crtc *crtc)
3218{
3219 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
3220
3221 if (!crtc->active)
3222 return;
3223
3224 intel_crtc_disable_planes(&crtc->base);
3225 dev_priv->display.crtc_disable(&crtc->base);
3226 dev_priv->display.crtc_enable(&crtc->base);
3227 intel_crtc_enable_planes(&crtc->base);
3228}
3229
Ville Syrjälä75147472014-11-24 18:28:11 +02003230void intel_prepare_reset(struct drm_device *dev)
3231{
Ville Syrjäläf98ce922014-11-21 21:54:30 +02003232 struct drm_i915_private *dev_priv = to_i915(dev);
3233 struct intel_crtc *crtc;
3234
Ville Syrjälä75147472014-11-24 18:28:11 +02003235 /* no reset support for gen2 */
3236 if (IS_GEN2(dev))
3237 return;
3238
3239 /* reset doesn't touch the display */
3240 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
3241 return;
3242
3243 drm_modeset_lock_all(dev);
Ville Syrjäläf98ce922014-11-21 21:54:30 +02003244
3245 /*
3246 * Disabling the crtcs gracefully seems nicer. Also the
3247 * g33 docs say we should at least disable all the planes.
3248 */
3249 for_each_intel_crtc(dev, crtc) {
Maarten Lankhorstce22dba2015-04-21 17:12:56 +03003250 if (!crtc->active)
3251 continue;
3252
3253 intel_crtc_disable_planes(&crtc->base);
3254 dev_priv->display.crtc_disable(&crtc->base);
Ville Syrjäläf98ce922014-11-21 21:54:30 +02003255 }
Ville Syrjälä75147472014-11-24 18:28:11 +02003256}
3257
3258void intel_finish_reset(struct drm_device *dev)
3259{
3260 struct drm_i915_private *dev_priv = to_i915(dev);
3261
3262 /*
3263 * Flips in the rings will be nuked by the reset,
3264 * so complete all pending flips so that user space
3265 * will get its events and not get stuck.
3266 */
3267 intel_complete_page_flips(dev);
3268
3269 /* no reset support for gen2 */
3270 if (IS_GEN2(dev))
3271 return;
3272
3273 /* reset doesn't touch the display */
3274 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) {
3275 /*
3276 * Flips in the rings have been nuked by the reset,
3277 * so update the base address of all primary
3278 * planes to the the last fb to make sure we're
3279 * showing the correct fb after a reset.
3280 */
3281 intel_update_primary_planes(dev);
3282 return;
3283 }
3284
3285 /*
3286 * The display has been reset as well,
3287 * so need a full re-initialization.
3288 */
3289 intel_runtime_pm_disable_interrupts(dev_priv);
3290 intel_runtime_pm_enable_interrupts(dev_priv);
3291
3292 intel_modeset_init_hw(dev);
3293
3294 spin_lock_irq(&dev_priv->irq_lock);
3295 if (dev_priv->display.hpd_irq_setup)
3296 dev_priv->display.hpd_irq_setup(dev);
3297 spin_unlock_irq(&dev_priv->irq_lock);
3298
3299 intel_modeset_setup_hw_state(dev, true);
3300
3301 intel_hpd_init(dev_priv);
3302
3303 drm_modeset_unlock_all(dev);
3304}
3305
Chris Wilson2e2f3512015-04-27 13:41:14 +01003306static void
Chris Wilson14667a42012-04-03 17:58:35 +01003307intel_finish_fb(struct drm_framebuffer *old_fb)
3308{
Matt Roper2ff8fde2014-07-08 07:50:07 -07003309 struct drm_i915_gem_object *obj = intel_fb_obj(old_fb);
Chris Wilson2e2f3512015-04-27 13:41:14 +01003310 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilson14667a42012-04-03 17:58:35 +01003311 bool was_interruptible = dev_priv->mm.interruptible;
3312 int ret;
3313
Chris Wilson14667a42012-04-03 17:58:35 +01003314 /* Big Hammer, we also need to ensure that any pending
3315 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
3316 * current scanout is retired before unpinning the old
Chris Wilson2e2f3512015-04-27 13:41:14 +01003317 * framebuffer. Note that we rely on userspace rendering
3318 * into the buffer attached to the pipe they are waiting
3319 * on. If not, userspace generates a GPU hang with IPEHR
3320 * point to the MI_WAIT_FOR_EVENT.
Chris Wilson14667a42012-04-03 17:58:35 +01003321 *
3322 * This should only fail upon a hung GPU, in which case we
3323 * can safely continue.
3324 */
3325 dev_priv->mm.interruptible = false;
Chris Wilson2e2f3512015-04-27 13:41:14 +01003326 ret = i915_gem_object_wait_rendering(obj, true);
Chris Wilson14667a42012-04-03 17:58:35 +01003327 dev_priv->mm.interruptible = was_interruptible;
3328
Chris Wilson2e2f3512015-04-27 13:41:14 +01003329 WARN_ON(ret);
Chris Wilson14667a42012-04-03 17:58:35 +01003330}
3331
Chris Wilson7d5e3792014-03-04 13:15:08 +00003332static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
3333{
3334 struct drm_device *dev = crtc->dev;
3335 struct drm_i915_private *dev_priv = dev->dev_private;
3336 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003337 bool pending;
3338
3339 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
3340 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
3341 return false;
3342
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003343 spin_lock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003344 pending = to_intel_crtc(crtc)->unpin_work != NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003345 spin_unlock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003346
3347 return pending;
3348}
3349
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003350static void intel_update_pipe_size(struct intel_crtc *crtc)
3351{
3352 struct drm_device *dev = crtc->base.dev;
3353 struct drm_i915_private *dev_priv = dev->dev_private;
3354 const struct drm_display_mode *adjusted_mode;
3355
3356 if (!i915.fastboot)
3357 return;
3358
3359 /*
3360 * Update pipe size and adjust fitter if needed: the reason for this is
3361 * that in compute_mode_changes we check the native mode (not the pfit
3362 * mode) to see if we can flip rather than do a full mode set. In the
3363 * fastboot case, we'll flip, but if we don't update the pipesrc and
3364 * pfit state, we'll end up with a big fb scanned out into the wrong
3365 * sized surface.
3366 *
3367 * To fix this properly, we need to hoist the checks up into
3368 * compute_mode_changes (or above), check the actual pfit state and
3369 * whether the platform allows pfit disable with pipe active, and only
3370 * then update the pipesrc and pfit state, even on the flip path.
3371 */
3372
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003373 adjusted_mode = &crtc->config->base.adjusted_mode;
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003374
3375 I915_WRITE(PIPESRC(crtc->pipe),
3376 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
3377 (adjusted_mode->crtc_vdisplay - 1));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003378 if (!crtc->config->pch_pfit.enabled &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03003379 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
3380 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003381 I915_WRITE(PF_CTL(crtc->pipe), 0);
3382 I915_WRITE(PF_WIN_POS(crtc->pipe), 0);
3383 I915_WRITE(PF_WIN_SZ(crtc->pipe), 0);
3384 }
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003385 crtc->config->pipe_src_w = adjusted_mode->crtc_hdisplay;
3386 crtc->config->pipe_src_h = adjusted_mode->crtc_vdisplay;
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003387}
3388
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003389static void intel_fdi_normal_train(struct drm_crtc *crtc)
3390{
3391 struct drm_device *dev = crtc->dev;
3392 struct drm_i915_private *dev_priv = dev->dev_private;
3393 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3394 int pipe = intel_crtc->pipe;
3395 u32 reg, temp;
3396
3397 /* enable normal train */
3398 reg = FDI_TX_CTL(pipe);
3399 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07003400 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07003401 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3402 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07003403 } else {
3404 temp &= ~FDI_LINK_TRAIN_NONE;
3405 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07003406 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003407 I915_WRITE(reg, temp);
3408
3409 reg = FDI_RX_CTL(pipe);
3410 temp = I915_READ(reg);
3411 if (HAS_PCH_CPT(dev)) {
3412 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3413 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3414 } else {
3415 temp &= ~FDI_LINK_TRAIN_NONE;
3416 temp |= FDI_LINK_TRAIN_NONE;
3417 }
3418 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3419
3420 /* wait one idle pattern time */
3421 POSTING_READ(reg);
3422 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07003423
3424 /* IVB wants error correction enabled */
3425 if (IS_IVYBRIDGE(dev))
3426 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3427 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003428}
3429
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003430/* The FDI link training functions for ILK/Ibexpeak. */
3431static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3432{
3433 struct drm_device *dev = crtc->dev;
3434 struct drm_i915_private *dev_priv = dev->dev_private;
3435 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3436 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003437 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003438
Ville Syrjälä1c8562f2014-04-25 22:12:07 +03003439 /* FDI needs bits from pipe first */
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003440 assert_pipe_enabled(dev_priv, pipe);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003441
Adam Jacksone1a44742010-06-25 15:32:14 -04003442 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3443 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003444 reg = FDI_RX_IMR(pipe);
3445 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003446 temp &= ~FDI_RX_SYMBOL_LOCK;
3447 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003448 I915_WRITE(reg, temp);
3449 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003450 udelay(150);
3451
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003452 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003453 reg = FDI_TX_CTL(pipe);
3454 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003455 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003456 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003457 temp &= ~FDI_LINK_TRAIN_NONE;
3458 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003459 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003460
Chris Wilson5eddb702010-09-11 13:48:45 +01003461 reg = FDI_RX_CTL(pipe);
3462 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003463 temp &= ~FDI_LINK_TRAIN_NONE;
3464 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003465 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3466
3467 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003468 udelay(150);
3469
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003470 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01003471 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3472 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3473 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003474
Chris Wilson5eddb702010-09-11 13:48:45 +01003475 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003476 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003477 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003478 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3479
3480 if ((temp & FDI_RX_BIT_LOCK)) {
3481 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01003482 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003483 break;
3484 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003485 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003486 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003487 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003488
3489 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003490 reg = FDI_TX_CTL(pipe);
3491 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003492 temp &= ~FDI_LINK_TRAIN_NONE;
3493 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003494 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003495
Chris Wilson5eddb702010-09-11 13:48:45 +01003496 reg = FDI_RX_CTL(pipe);
3497 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003498 temp &= ~FDI_LINK_TRAIN_NONE;
3499 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003500 I915_WRITE(reg, temp);
3501
3502 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003503 udelay(150);
3504
Chris Wilson5eddb702010-09-11 13:48:45 +01003505 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003506 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003507 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003508 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3509
3510 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003511 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003512 DRM_DEBUG_KMS("FDI train 2 done.\n");
3513 break;
3514 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003515 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003516 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003517 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003518
3519 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07003520
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003521}
3522
Akshay Joshi0206e352011-08-16 15:34:10 -04003523static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003524 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3525 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3526 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3527 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3528};
3529
3530/* The FDI link training functions for SNB/Cougarpoint. */
3531static void gen6_fdi_link_train(struct drm_crtc *crtc)
3532{
3533 struct drm_device *dev = crtc->dev;
3534 struct drm_i915_private *dev_priv = dev->dev_private;
3535 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3536 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05003537 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003538
Adam Jacksone1a44742010-06-25 15:32:14 -04003539 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3540 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003541 reg = FDI_RX_IMR(pipe);
3542 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003543 temp &= ~FDI_RX_SYMBOL_LOCK;
3544 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003545 I915_WRITE(reg, temp);
3546
3547 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003548 udelay(150);
3549
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003550 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003551 reg = FDI_TX_CTL(pipe);
3552 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003553 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003554 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003555 temp &= ~FDI_LINK_TRAIN_NONE;
3556 temp |= FDI_LINK_TRAIN_PATTERN_1;
3557 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3558 /* SNB-B */
3559 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01003560 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003561
Daniel Vetterd74cf322012-10-26 10:58:13 +02003562 I915_WRITE(FDI_RX_MISC(pipe),
3563 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3564
Chris Wilson5eddb702010-09-11 13:48:45 +01003565 reg = FDI_RX_CTL(pipe);
3566 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003567 if (HAS_PCH_CPT(dev)) {
3568 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3569 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3570 } else {
3571 temp &= ~FDI_LINK_TRAIN_NONE;
3572 temp |= FDI_LINK_TRAIN_PATTERN_1;
3573 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003574 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3575
3576 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003577 udelay(150);
3578
Akshay Joshi0206e352011-08-16 15:34:10 -04003579 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003580 reg = FDI_TX_CTL(pipe);
3581 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003582 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3583 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003584 I915_WRITE(reg, temp);
3585
3586 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003587 udelay(500);
3588
Sean Paulfa37d392012-03-02 12:53:39 -05003589 for (retry = 0; retry < 5; retry++) {
3590 reg = FDI_RX_IIR(pipe);
3591 temp = I915_READ(reg);
3592 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3593 if (temp & FDI_RX_BIT_LOCK) {
3594 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3595 DRM_DEBUG_KMS("FDI train 1 done.\n");
3596 break;
3597 }
3598 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003599 }
Sean Paulfa37d392012-03-02 12:53:39 -05003600 if (retry < 5)
3601 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003602 }
3603 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003604 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003605
3606 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003607 reg = FDI_TX_CTL(pipe);
3608 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003609 temp &= ~FDI_LINK_TRAIN_NONE;
3610 temp |= FDI_LINK_TRAIN_PATTERN_2;
3611 if (IS_GEN6(dev)) {
3612 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3613 /* SNB-B */
3614 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3615 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003616 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003617
Chris Wilson5eddb702010-09-11 13:48:45 +01003618 reg = FDI_RX_CTL(pipe);
3619 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003620 if (HAS_PCH_CPT(dev)) {
3621 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3622 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3623 } else {
3624 temp &= ~FDI_LINK_TRAIN_NONE;
3625 temp |= FDI_LINK_TRAIN_PATTERN_2;
3626 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003627 I915_WRITE(reg, temp);
3628
3629 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003630 udelay(150);
3631
Akshay Joshi0206e352011-08-16 15:34:10 -04003632 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003633 reg = FDI_TX_CTL(pipe);
3634 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003635 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3636 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003637 I915_WRITE(reg, temp);
3638
3639 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003640 udelay(500);
3641
Sean Paulfa37d392012-03-02 12:53:39 -05003642 for (retry = 0; retry < 5; retry++) {
3643 reg = FDI_RX_IIR(pipe);
3644 temp = I915_READ(reg);
3645 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3646 if (temp & FDI_RX_SYMBOL_LOCK) {
3647 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3648 DRM_DEBUG_KMS("FDI train 2 done.\n");
3649 break;
3650 }
3651 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003652 }
Sean Paulfa37d392012-03-02 12:53:39 -05003653 if (retry < 5)
3654 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003655 }
3656 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003657 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003658
3659 DRM_DEBUG_KMS("FDI train done.\n");
3660}
3661
Jesse Barnes357555c2011-04-28 15:09:55 -07003662/* Manual link training for Ivy Bridge A0 parts */
3663static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3664{
3665 struct drm_device *dev = crtc->dev;
3666 struct drm_i915_private *dev_priv = dev->dev_private;
3667 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3668 int pipe = intel_crtc->pipe;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003669 u32 reg, temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07003670
3671 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3672 for train result */
3673 reg = FDI_RX_IMR(pipe);
3674 temp = I915_READ(reg);
3675 temp &= ~FDI_RX_SYMBOL_LOCK;
3676 temp &= ~FDI_RX_BIT_LOCK;
3677 I915_WRITE(reg, temp);
3678
3679 POSTING_READ(reg);
3680 udelay(150);
3681
Daniel Vetter01a415f2012-10-27 15:58:40 +02003682 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3683 I915_READ(FDI_RX_IIR(pipe)));
3684
Jesse Barnes139ccd32013-08-19 11:04:55 -07003685 /* Try each vswing and preemphasis setting twice before moving on */
3686 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3687 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07003688 reg = FDI_TX_CTL(pipe);
3689 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003690 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3691 temp &= ~FDI_TX_ENABLE;
3692 I915_WRITE(reg, temp);
3693
3694 reg = FDI_RX_CTL(pipe);
3695 temp = I915_READ(reg);
3696 temp &= ~FDI_LINK_TRAIN_AUTO;
3697 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3698 temp &= ~FDI_RX_ENABLE;
3699 I915_WRITE(reg, temp);
3700
3701 /* enable CPU FDI TX and PCH FDI RX */
3702 reg = FDI_TX_CTL(pipe);
3703 temp = I915_READ(reg);
3704 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003705 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003706 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07003707 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003708 temp |= snb_b_fdi_train_param[j/2];
3709 temp |= FDI_COMPOSITE_SYNC;
3710 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3711
3712 I915_WRITE(FDI_RX_MISC(pipe),
3713 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3714
3715 reg = FDI_RX_CTL(pipe);
3716 temp = I915_READ(reg);
3717 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3718 temp |= FDI_COMPOSITE_SYNC;
3719 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3720
3721 POSTING_READ(reg);
3722 udelay(1); /* should be 0.5us */
3723
3724 for (i = 0; i < 4; i++) {
3725 reg = FDI_RX_IIR(pipe);
3726 temp = I915_READ(reg);
3727 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3728
3729 if (temp & FDI_RX_BIT_LOCK ||
3730 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3731 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3732 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3733 i);
3734 break;
3735 }
3736 udelay(1); /* should be 0.5us */
3737 }
3738 if (i == 4) {
3739 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3740 continue;
3741 }
3742
3743 /* Train 2 */
3744 reg = FDI_TX_CTL(pipe);
3745 temp = I915_READ(reg);
3746 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3747 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3748 I915_WRITE(reg, temp);
3749
3750 reg = FDI_RX_CTL(pipe);
3751 temp = I915_READ(reg);
3752 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3753 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07003754 I915_WRITE(reg, temp);
3755
3756 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003757 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003758
Jesse Barnes139ccd32013-08-19 11:04:55 -07003759 for (i = 0; i < 4; i++) {
3760 reg = FDI_RX_IIR(pipe);
3761 temp = I915_READ(reg);
3762 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07003763
Jesse Barnes139ccd32013-08-19 11:04:55 -07003764 if (temp & FDI_RX_SYMBOL_LOCK ||
3765 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3766 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3767 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3768 i);
3769 goto train_done;
3770 }
3771 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003772 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07003773 if (i == 4)
3774 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07003775 }
Jesse Barnes357555c2011-04-28 15:09:55 -07003776
Jesse Barnes139ccd32013-08-19 11:04:55 -07003777train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07003778 DRM_DEBUG_KMS("FDI train done.\n");
3779}
3780
Daniel Vetter88cefb62012-08-12 19:27:14 +02003781static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07003782{
Daniel Vetter88cefb62012-08-12 19:27:14 +02003783 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003784 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003785 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003786 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003787
Jesse Barnesc64e3112010-09-10 11:27:03 -07003788
Jesse Barnes0e23b992010-09-10 11:10:00 -07003789 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01003790 reg = FDI_RX_CTL(pipe);
3791 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003792 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003793 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003794 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01003795 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3796
3797 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003798 udelay(200);
3799
3800 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003801 temp = I915_READ(reg);
3802 I915_WRITE(reg, temp | FDI_PCDCLK);
3803
3804 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003805 udelay(200);
3806
Paulo Zanoni20749732012-11-23 15:30:38 -02003807 /* Enable CPU FDI TX PLL, always on for Ironlake */
3808 reg = FDI_TX_CTL(pipe);
3809 temp = I915_READ(reg);
3810 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3811 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01003812
Paulo Zanoni20749732012-11-23 15:30:38 -02003813 POSTING_READ(reg);
3814 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003815 }
3816}
3817
Daniel Vetter88cefb62012-08-12 19:27:14 +02003818static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3819{
3820 struct drm_device *dev = intel_crtc->base.dev;
3821 struct drm_i915_private *dev_priv = dev->dev_private;
3822 int pipe = intel_crtc->pipe;
3823 u32 reg, temp;
3824
3825 /* Switch from PCDclk to Rawclk */
3826 reg = FDI_RX_CTL(pipe);
3827 temp = I915_READ(reg);
3828 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3829
3830 /* Disable CPU FDI TX PLL */
3831 reg = FDI_TX_CTL(pipe);
3832 temp = I915_READ(reg);
3833 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3834
3835 POSTING_READ(reg);
3836 udelay(100);
3837
3838 reg = FDI_RX_CTL(pipe);
3839 temp = I915_READ(reg);
3840 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3841
3842 /* Wait for the clocks to turn off. */
3843 POSTING_READ(reg);
3844 udelay(100);
3845}
3846
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003847static void ironlake_fdi_disable(struct drm_crtc *crtc)
3848{
3849 struct drm_device *dev = crtc->dev;
3850 struct drm_i915_private *dev_priv = dev->dev_private;
3851 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3852 int pipe = intel_crtc->pipe;
3853 u32 reg, temp;
3854
3855 /* disable CPU FDI tx and PCH FDI rx */
3856 reg = FDI_TX_CTL(pipe);
3857 temp = I915_READ(reg);
3858 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3859 POSTING_READ(reg);
3860
3861 reg = FDI_RX_CTL(pipe);
3862 temp = I915_READ(reg);
3863 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003864 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003865 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3866
3867 POSTING_READ(reg);
3868 udelay(100);
3869
3870 /* Ironlake workaround, disable clock pointer after downing FDI */
Robin Schroereba905b2014-05-18 02:24:50 +02003871 if (HAS_PCH_IBX(dev))
Jesse Barnes6f06ce12011-01-04 15:09:38 -08003872 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003873
3874 /* still set train pattern 1 */
3875 reg = FDI_TX_CTL(pipe);
3876 temp = I915_READ(reg);
3877 temp &= ~FDI_LINK_TRAIN_NONE;
3878 temp |= FDI_LINK_TRAIN_PATTERN_1;
3879 I915_WRITE(reg, temp);
3880
3881 reg = FDI_RX_CTL(pipe);
3882 temp = I915_READ(reg);
3883 if (HAS_PCH_CPT(dev)) {
3884 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3885 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3886 } else {
3887 temp &= ~FDI_LINK_TRAIN_NONE;
3888 temp |= FDI_LINK_TRAIN_PATTERN_1;
3889 }
3890 /* BPC in FDI rx is consistent with that in PIPECONF */
3891 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003892 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003893 I915_WRITE(reg, temp);
3894
3895 POSTING_READ(reg);
3896 udelay(100);
3897}
3898
Chris Wilson5dce5b932014-01-20 10:17:36 +00003899bool intel_has_pending_fb_unpin(struct drm_device *dev)
3900{
3901 struct intel_crtc *crtc;
3902
3903 /* Note that we don't need to be called with mode_config.lock here
3904 * as our list of CRTC objects is static for the lifetime of the
3905 * device and so cannot disappear as we iterate. Similarly, we can
3906 * happily treat the predicates as racy, atomic checks as userspace
3907 * cannot claim and pin a new fb without at least acquring the
3908 * struct_mutex and so serialising with us.
3909 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003910 for_each_intel_crtc(dev, crtc) {
Chris Wilson5dce5b932014-01-20 10:17:36 +00003911 if (atomic_read(&crtc->unpin_work_count) == 0)
3912 continue;
3913
3914 if (crtc->unpin_work)
3915 intel_wait_for_vblank(dev, crtc->pipe);
3916
3917 return true;
3918 }
3919
3920 return false;
3921}
3922
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003923static void page_flip_completed(struct intel_crtc *intel_crtc)
3924{
3925 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
3926 struct intel_unpin_work *work = intel_crtc->unpin_work;
3927
3928 /* ensure that the unpin work is consistent wrt ->pending. */
3929 smp_rmb();
3930 intel_crtc->unpin_work = NULL;
3931
3932 if (work->event)
3933 drm_send_vblank_event(intel_crtc->base.dev,
3934 intel_crtc->pipe,
3935 work->event);
3936
3937 drm_crtc_vblank_put(&intel_crtc->base);
3938
3939 wake_up_all(&dev_priv->pending_flip_queue);
3940 queue_work(dev_priv->wq, &work->work);
3941
3942 trace_i915_flip_complete(intel_crtc->plane,
3943 work->pending_flip_obj);
3944}
3945
Ville Syrjälä46a55d32014-05-21 14:04:46 +03003946void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003947{
Chris Wilson0f911282012-04-17 10:05:38 +01003948 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01003949 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003950
Daniel Vetter2c10d572012-12-20 21:24:07 +01003951 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
Chris Wilson9c787942014-09-05 07:13:25 +01003952 if (WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3953 !intel_crtc_has_pending_flip(crtc),
3954 60*HZ) == 0)) {
3955 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter2c10d572012-12-20 21:24:07 +01003956
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003957 spin_lock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003958 if (intel_crtc->unpin_work) {
3959 WARN_ONCE(1, "Removing stuck page flip\n");
3960 page_flip_completed(intel_crtc);
3961 }
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003962 spin_unlock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003963 }
Chris Wilson5bb61642012-09-27 21:25:58 +01003964
Chris Wilson975d5682014-08-20 13:13:34 +01003965 if (crtc->primary->fb) {
3966 mutex_lock(&dev->struct_mutex);
3967 intel_finish_fb(crtc->primary->fb);
3968 mutex_unlock(&dev->struct_mutex);
3969 }
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003970}
3971
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003972/* Program iCLKIP clock to the desired frequency */
3973static void lpt_program_iclkip(struct drm_crtc *crtc)
3974{
3975 struct drm_device *dev = crtc->dev;
3976 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003977 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003978 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3979 u32 temp;
3980
Daniel Vetter09153002012-12-12 14:06:44 +01003981 mutex_lock(&dev_priv->dpio_lock);
3982
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003983 /* It is necessary to ungate the pixclk gate prior to programming
3984 * the divisors, and gate it back when it is done.
3985 */
3986 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3987
3988 /* Disable SSCCTL */
3989 intel_sbi_write(dev_priv, SBI_SSCCTL6,
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003990 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
3991 SBI_SSCCTL_DISABLE,
3992 SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003993
3994 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003995 if (clock == 20000) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003996 auxdiv = 1;
3997 divsel = 0x41;
3998 phaseinc = 0x20;
3999 } else {
4000 /* The iCLK virtual clock root frequency is in MHz,
Damien Lespiau241bfc32013-09-25 16:45:37 +01004001 * but the adjusted_mode->crtc_clock in in KHz. To get the
4002 * divisors, it is necessary to divide one by another, so we
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004003 * convert the virtual clock precision to KHz here for higher
4004 * precision.
4005 */
4006 u32 iclk_virtual_root_freq = 172800 * 1000;
4007 u32 iclk_pi_range = 64;
4008 u32 desired_divisor, msb_divisor_value, pi_value;
4009
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03004010 desired_divisor = (iclk_virtual_root_freq / clock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004011 msb_divisor_value = desired_divisor / iclk_pi_range;
4012 pi_value = desired_divisor % iclk_pi_range;
4013
4014 auxdiv = 0;
4015 divsel = msb_divisor_value - 2;
4016 phaseinc = pi_value;
4017 }
4018
4019 /* This should not happen with any sane values */
4020 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
4021 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
4022 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
4023 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
4024
4025 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 +03004026 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004027 auxdiv,
4028 divsel,
4029 phasedir,
4030 phaseinc);
4031
4032 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004033 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004034 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
4035 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
4036 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
4037 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
4038 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
4039 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004040 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004041
4042 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004043 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004044 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
4045 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004046 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004047
4048 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004049 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004050 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004051 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004052
4053 /* Wait for initialization time */
4054 udelay(24);
4055
4056 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
Daniel Vetter09153002012-12-12 14:06:44 +01004057
4058 mutex_unlock(&dev_priv->dpio_lock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004059}
4060
Daniel Vetter275f01b22013-05-03 11:49:47 +02004061static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
4062 enum pipe pch_transcoder)
4063{
4064 struct drm_device *dev = crtc->base.dev;
4065 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004066 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Daniel Vetter275f01b22013-05-03 11:49:47 +02004067
4068 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
4069 I915_READ(HTOTAL(cpu_transcoder)));
4070 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
4071 I915_READ(HBLANK(cpu_transcoder)));
4072 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
4073 I915_READ(HSYNC(cpu_transcoder)));
4074
4075 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
4076 I915_READ(VTOTAL(cpu_transcoder)));
4077 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
4078 I915_READ(VBLANK(cpu_transcoder)));
4079 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
4080 I915_READ(VSYNC(cpu_transcoder)));
4081 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
4082 I915_READ(VSYNCSHIFT(cpu_transcoder)));
4083}
4084
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004085static void cpt_set_fdi_bc_bifurcation(struct drm_device *dev, bool enable)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004086{
4087 struct drm_i915_private *dev_priv = dev->dev_private;
4088 uint32_t temp;
4089
4090 temp = I915_READ(SOUTH_CHICKEN1);
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004091 if (!!(temp & FDI_BC_BIFURCATION_SELECT) == enable)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004092 return;
4093
4094 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
4095 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
4096
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004097 temp &= ~FDI_BC_BIFURCATION_SELECT;
4098 if (enable)
4099 temp |= FDI_BC_BIFURCATION_SELECT;
4100
4101 DRM_DEBUG_KMS("%sabling fdi C rx\n", enable ? "en" : "dis");
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004102 I915_WRITE(SOUTH_CHICKEN1, temp);
4103 POSTING_READ(SOUTH_CHICKEN1);
4104}
4105
4106static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
4107{
4108 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004109
4110 switch (intel_crtc->pipe) {
4111 case PIPE_A:
4112 break;
4113 case PIPE_B:
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004114 if (intel_crtc->config->fdi_lanes > 2)
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004115 cpt_set_fdi_bc_bifurcation(dev, false);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004116 else
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004117 cpt_set_fdi_bc_bifurcation(dev, true);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004118
4119 break;
4120 case PIPE_C:
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004121 cpt_set_fdi_bc_bifurcation(dev, true);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004122
4123 break;
4124 default:
4125 BUG();
4126 }
4127}
4128
Jesse Barnesf67a5592011-01-05 10:31:48 -08004129/*
4130 * Enable PCH resources required for PCH ports:
4131 * - PCH PLLs
4132 * - FDI training & RX/TX
4133 * - update transcoder timings
4134 * - DP transcoding bits
4135 * - transcoder
4136 */
4137static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08004138{
4139 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004140 struct drm_i915_private *dev_priv = dev->dev_private;
4141 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4142 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004143 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004144
Daniel Vetterab9412b2013-05-03 11:49:46 +02004145 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01004146
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004147 if (IS_IVYBRIDGE(dev))
4148 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
4149
Daniel Vettercd986ab2012-10-26 10:58:12 +02004150 /* Write the TU size bits before fdi link training, so that error
4151 * detection works. */
4152 I915_WRITE(FDI_RX_TUSIZE1(pipe),
4153 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
4154
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004155 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07004156 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004157
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004158 /* We need to program the right clock selection before writing the pixel
4159 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02004160 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004161 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07004162
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004163 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02004164 temp |= TRANS_DPLL_ENABLE(pipe);
4165 sel = TRANS_DPLLB_SEL(pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004166 if (intel_crtc->config->shared_dpll == DPLL_ID_PCH_PLL_B)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004167 temp |= sel;
4168 else
4169 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004170 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004171 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004172
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004173 /* XXX: pch pll's can be enabled any time before we enable the PCH
4174 * transcoder, and we actually should do this to not upset any PCH
4175 * transcoder that already use the clock when we share it.
4176 *
4177 * Note that enable_shared_dpll tries to do the right thing, but
4178 * get_shared_dpll unconditionally resets the pll - we need that to have
4179 * the right LVDS enable sequence. */
Daniel Vetter85b38942014-04-24 23:55:14 +02004180 intel_enable_shared_dpll(intel_crtc);
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004181
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08004182 /* set transcoder timing, panel must allow it */
4183 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02004184 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004185
Paulo Zanoni303b81e2012-10-31 18:12:23 -02004186 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08004187
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004188 /* For PCH DP, enable TRANS_DP_CTL */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004189 if (HAS_PCH_CPT(dev) && intel_crtc->config->has_dp_encoder) {
Daniel Vetterdfd07d72012-12-17 11:21:38 +01004190 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01004191 reg = TRANS_DP_CTL(pipe);
4192 temp = I915_READ(reg);
4193 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08004194 TRANS_DP_SYNC_MASK |
4195 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01004196 temp |= (TRANS_DP_OUTPUT_ENABLE |
4197 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07004198 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004199
4200 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01004201 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004202 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01004203 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004204
4205 switch (intel_trans_dp_port_sel(crtc)) {
4206 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01004207 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004208 break;
4209 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01004210 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004211 break;
4212 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01004213 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004214 break;
4215 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02004216 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004217 }
4218
Chris Wilson5eddb702010-09-11 13:48:45 +01004219 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004220 }
4221
Paulo Zanonib8a4f402012-10-31 18:12:42 -02004222 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004223}
4224
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004225static void lpt_pch_enable(struct drm_crtc *crtc)
4226{
4227 struct drm_device *dev = crtc->dev;
4228 struct drm_i915_private *dev_priv = dev->dev_private;
4229 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004230 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004231
Daniel Vetterab9412b2013-05-03 11:49:46 +02004232 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004233
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02004234 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004235
Paulo Zanoni0540e482012-10-31 18:12:40 -02004236 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02004237 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004238
Paulo Zanoni937bb612012-10-31 18:12:47 -02004239 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004240}
4241
Daniel Vetter716c2e52014-06-25 22:02:02 +03004242void intel_put_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004243{
Daniel Vettere2b78262013-06-07 23:10:03 +02004244 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004245
4246 if (pll == NULL)
4247 return;
4248
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02004249 if (!(pll->config.crtc_mask & (1 << crtc->pipe))) {
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +02004250 WARN(1, "bad %s crtc mask\n", pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004251 return;
4252 }
4253
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02004254 pll->config.crtc_mask &= ~(1 << crtc->pipe);
4255 if (pll->config.crtc_mask == 0) {
Daniel Vetterf4a091c2013-06-10 17:28:22 +02004256 WARN_ON(pll->on);
4257 WARN_ON(pll->active);
4258 }
4259
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004260 crtc->config->shared_dpll = DPLL_ID_PRIVATE;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004261}
4262
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004263struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc,
4264 struct intel_crtc_state *crtc_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004265{
Daniel Vettere2b78262013-06-07 23:10:03 +02004266 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004267 struct intel_shared_dpll *pll;
Daniel Vettere2b78262013-06-07 23:10:03 +02004268 enum intel_dpll_id i;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004269
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004270 if (HAS_PCH_IBX(dev_priv->dev)) {
4271 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
Daniel Vetterd94ab062013-07-04 12:01:16 +02004272 i = (enum intel_dpll_id) crtc->pipe;
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004273 pll = &dev_priv->shared_dplls[i];
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004274
Daniel Vetter46edb022013-06-05 13:34:12 +02004275 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
4276 crtc->base.base.id, pll->name);
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004277
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004278 WARN_ON(pll->new_config->crtc_mask);
Daniel Vetterf2a69f42014-05-20 15:19:19 +02004279
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004280 goto found;
4281 }
4282
Satheeshakrishna Mbcddf612014-08-22 09:49:10 +05304283 if (IS_BROXTON(dev_priv->dev)) {
4284 /* PLL is attached to port in bxt */
4285 struct intel_encoder *encoder;
4286 struct intel_digital_port *intel_dig_port;
4287
4288 encoder = intel_ddi_get_crtc_new_encoder(crtc_state);
4289 if (WARN_ON(!encoder))
4290 return NULL;
4291
4292 intel_dig_port = enc_to_dig_port(&encoder->base);
4293 /* 1:1 mapping between ports and PLLs */
4294 i = (enum intel_dpll_id)intel_dig_port->port;
4295 pll = &dev_priv->shared_dplls[i];
4296 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
4297 crtc->base.base.id, pll->name);
4298 WARN_ON(pll->new_config->crtc_mask);
4299
4300 goto found;
4301 }
4302
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004303 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4304 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004305
4306 /* Only want to check enabled timings first */
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004307 if (pll->new_config->crtc_mask == 0)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004308 continue;
4309
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004310 if (memcmp(&crtc_state->dpll_hw_state,
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004311 &pll->new_config->hw_state,
4312 sizeof(pll->new_config->hw_state)) == 0) {
4313 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (crtc mask 0x%08x, ative %d)\n",
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +02004314 crtc->base.base.id, pll->name,
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004315 pll->new_config->crtc_mask,
4316 pll->active);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004317 goto found;
4318 }
4319 }
4320
4321 /* Ok no matching timings, maybe there's a free one? */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004322 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4323 pll = &dev_priv->shared_dplls[i];
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004324 if (pll->new_config->crtc_mask == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02004325 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
4326 crtc->base.base.id, pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004327 goto found;
4328 }
4329 }
4330
4331 return NULL;
4332
4333found:
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004334 if (pll->new_config->crtc_mask == 0)
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004335 pll->new_config->hw_state = crtc_state->dpll_hw_state;
Daniel Vetterf2a69f42014-05-20 15:19:19 +02004336
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004337 crtc_state->shared_dpll = i;
Daniel Vetter46edb022013-06-05 13:34:12 +02004338 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
4339 pipe_name(crtc->pipe));
Daniel Vetter66e985c2013-06-05 13:34:20 +02004340
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004341 pll->new_config->crtc_mask |= 1 << crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004342
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004343 return pll;
4344}
4345
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004346/**
4347 * intel_shared_dpll_start_config - start a new PLL staged config
4348 * @dev_priv: DRM device
4349 * @clear_pipes: mask of pipes that will have their PLLs freed
4350 *
4351 * Starts a new PLL staged config, copying the current config but
4352 * releasing the references of pipes specified in clear_pipes.
4353 */
4354static int intel_shared_dpll_start_config(struct drm_i915_private *dev_priv,
4355 unsigned clear_pipes)
4356{
4357 struct intel_shared_dpll *pll;
4358 enum intel_dpll_id i;
4359
4360 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4361 pll = &dev_priv->shared_dplls[i];
4362
4363 pll->new_config = kmemdup(&pll->config, sizeof pll->config,
4364 GFP_KERNEL);
4365 if (!pll->new_config)
4366 goto cleanup;
4367
4368 pll->new_config->crtc_mask &= ~clear_pipes;
4369 }
4370
4371 return 0;
4372
4373cleanup:
4374 while (--i >= 0) {
4375 pll = &dev_priv->shared_dplls[i];
Ander Conselvan de Oliveiraf354d732014-11-07 14:07:41 +02004376 kfree(pll->new_config);
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004377 pll->new_config = NULL;
4378 }
4379
4380 return -ENOMEM;
4381}
4382
4383static void intel_shared_dpll_commit(struct drm_i915_private *dev_priv)
4384{
4385 struct intel_shared_dpll *pll;
4386 enum intel_dpll_id i;
4387
4388 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4389 pll = &dev_priv->shared_dplls[i];
4390
4391 WARN_ON(pll->new_config == &pll->config);
4392
4393 pll->config = *pll->new_config;
4394 kfree(pll->new_config);
4395 pll->new_config = NULL;
4396 }
4397}
4398
4399static void intel_shared_dpll_abort_config(struct drm_i915_private *dev_priv)
4400{
4401 struct intel_shared_dpll *pll;
4402 enum intel_dpll_id i;
4403
4404 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4405 pll = &dev_priv->shared_dplls[i];
4406
4407 WARN_ON(pll->new_config == &pll->config);
4408
4409 kfree(pll->new_config);
4410 pll->new_config = NULL;
4411 }
4412}
4413
Daniel Vettera1520312013-05-03 11:49:50 +02004414static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07004415{
4416 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01004417 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07004418 u32 temp;
4419
4420 temp = I915_READ(dslreg);
4421 udelay(500);
4422 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07004423 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03004424 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07004425 }
4426}
4427
Chandra Kondurua1b22782015-04-07 15:28:45 -07004428/**
4429 * skl_update_scaler_users - Stages update to crtc's scaler state
4430 * @intel_crtc: crtc
4431 * @crtc_state: crtc_state
4432 * @plane: plane (NULL indicates crtc is requesting update)
4433 * @plane_state: plane's state
4434 * @force_detach: request unconditional detachment of scaler
4435 *
4436 * This function updates scaler state for requested plane or crtc.
4437 * To request scaler usage update for a plane, caller shall pass plane pointer.
4438 * To request scaler usage update for crtc, caller shall pass plane pointer
4439 * as NULL.
4440 *
4441 * Return
4442 * 0 - scaler_usage updated successfully
4443 * error - requested scaling cannot be supported or other error condition
4444 */
4445int
4446skl_update_scaler_users(
4447 struct intel_crtc *intel_crtc, struct intel_crtc_state *crtc_state,
4448 struct intel_plane *intel_plane, struct intel_plane_state *plane_state,
4449 int force_detach)
4450{
4451 int need_scaling;
4452 int idx;
4453 int src_w, src_h, dst_w, dst_h;
4454 int *scaler_id;
4455 struct drm_framebuffer *fb;
4456 struct intel_crtc_scaler_state *scaler_state;
Chandra Konduru6156a452015-04-27 13:48:39 -07004457 unsigned int rotation;
Chandra Kondurua1b22782015-04-07 15:28:45 -07004458
4459 if (!intel_crtc || !crtc_state)
4460 return 0;
4461
4462 scaler_state = &crtc_state->scaler_state;
4463
4464 idx = intel_plane ? drm_plane_index(&intel_plane->base) : SKL_CRTC_INDEX;
4465 fb = intel_plane ? plane_state->base.fb : NULL;
4466
4467 if (intel_plane) {
4468 src_w = drm_rect_width(&plane_state->src) >> 16;
4469 src_h = drm_rect_height(&plane_state->src) >> 16;
4470 dst_w = drm_rect_width(&plane_state->dst);
4471 dst_h = drm_rect_height(&plane_state->dst);
4472 scaler_id = &plane_state->scaler_id;
Chandra Konduru6156a452015-04-27 13:48:39 -07004473 rotation = plane_state->base.rotation;
Chandra Kondurua1b22782015-04-07 15:28:45 -07004474 } else {
4475 struct drm_display_mode *adjusted_mode =
4476 &crtc_state->base.adjusted_mode;
4477 src_w = crtc_state->pipe_src_w;
4478 src_h = crtc_state->pipe_src_h;
4479 dst_w = adjusted_mode->hdisplay;
4480 dst_h = adjusted_mode->vdisplay;
4481 scaler_id = &scaler_state->scaler_id;
Chandra Konduru6156a452015-04-27 13:48:39 -07004482 rotation = DRM_ROTATE_0;
Chandra Kondurua1b22782015-04-07 15:28:45 -07004483 }
Chandra Konduru6156a452015-04-27 13:48:39 -07004484
4485 need_scaling = intel_rotation_90_or_270(rotation) ?
4486 (src_h != dst_w || src_w != dst_h):
4487 (src_w != dst_w || src_h != dst_h);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004488
4489 /*
4490 * if plane is being disabled or scaler is no more required or force detach
4491 * - free scaler binded to this plane/crtc
4492 * - in order to do this, update crtc->scaler_usage
4493 *
4494 * Here scaler state in crtc_state is set free so that
4495 * scaler can be assigned to other user. Actual register
4496 * update to free the scaler is done in plane/panel-fit programming.
4497 * For this purpose crtc/plane_state->scaler_id isn't reset here.
4498 */
4499 if (force_detach || !need_scaling || (intel_plane &&
4500 (!fb || !plane_state->visible))) {
4501 if (*scaler_id >= 0) {
4502 scaler_state->scaler_users &= ~(1 << idx);
4503 scaler_state->scalers[*scaler_id].in_use = 0;
4504
4505 DRM_DEBUG_KMS("Staged freeing scaler id %d.%d from %s:%d "
4506 "crtc_state = %p scaler_users = 0x%x\n",
4507 intel_crtc->pipe, *scaler_id, intel_plane ? "PLANE" : "CRTC",
4508 intel_plane ? intel_plane->base.base.id :
4509 intel_crtc->base.base.id, crtc_state,
4510 scaler_state->scaler_users);
4511 *scaler_id = -1;
4512 }
4513 return 0;
4514 }
4515
4516 /* range checks */
4517 if (src_w < SKL_MIN_SRC_W || src_h < SKL_MIN_SRC_H ||
4518 dst_w < SKL_MIN_DST_W || dst_h < SKL_MIN_DST_H ||
4519
4520 src_w > SKL_MAX_SRC_W || src_h > SKL_MAX_SRC_H ||
4521 dst_w > SKL_MAX_DST_W || dst_h > SKL_MAX_DST_H) {
4522 DRM_DEBUG_KMS("%s:%d scaler_user index %u.%u: src %ux%u dst %ux%u "
4523 "size is out of scaler range\n",
4524 intel_plane ? "PLANE" : "CRTC",
4525 intel_plane ? intel_plane->base.base.id : intel_crtc->base.base.id,
4526 intel_crtc->pipe, idx, src_w, src_h, dst_w, dst_h);
4527 return -EINVAL;
4528 }
4529
4530 /* check colorkey */
4531 if (intel_plane && intel_plane->ckey.flags != I915_SET_COLORKEY_NONE) {
4532 DRM_DEBUG_KMS("PLANE:%d scaling with color key not allowed",
4533 intel_plane->base.base.id);
4534 return -EINVAL;
4535 }
4536
4537 /* Check src format */
4538 if (intel_plane) {
4539 switch (fb->pixel_format) {
4540 case DRM_FORMAT_RGB565:
4541 case DRM_FORMAT_XBGR8888:
4542 case DRM_FORMAT_XRGB8888:
4543 case DRM_FORMAT_ABGR8888:
4544 case DRM_FORMAT_ARGB8888:
4545 case DRM_FORMAT_XRGB2101010:
4546 case DRM_FORMAT_ARGB2101010:
4547 case DRM_FORMAT_XBGR2101010:
4548 case DRM_FORMAT_ABGR2101010:
4549 case DRM_FORMAT_YUYV:
4550 case DRM_FORMAT_YVYU:
4551 case DRM_FORMAT_UYVY:
4552 case DRM_FORMAT_VYUY:
4553 break;
4554 default:
4555 DRM_DEBUG_KMS("PLANE:%d FB:%d unsupported scaling format 0x%x\n",
4556 intel_plane->base.base.id, fb->base.id, fb->pixel_format);
4557 return -EINVAL;
4558 }
4559 }
4560
4561 /* mark this plane as a scaler user in crtc_state */
4562 scaler_state->scaler_users |= (1 << idx);
4563 DRM_DEBUG_KMS("%s:%d staged scaling request for %ux%u->%ux%u "
4564 "crtc_state = %p scaler_users = 0x%x\n",
4565 intel_plane ? "PLANE" : "CRTC",
4566 intel_plane ? intel_plane->base.base.id : intel_crtc->base.base.id,
4567 src_w, src_h, dst_w, dst_h, crtc_state, scaler_state->scaler_users);
4568 return 0;
4569}
4570
4571static void skylake_pfit_update(struct intel_crtc *crtc, int enable)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004572{
4573 struct drm_device *dev = crtc->base.dev;
4574 struct drm_i915_private *dev_priv = dev->dev_private;
4575 int pipe = crtc->pipe;
Chandra Kondurua1b22782015-04-07 15:28:45 -07004576 struct intel_crtc_scaler_state *scaler_state =
4577 &crtc->config->scaler_state;
4578
4579 DRM_DEBUG_KMS("for crtc_state = %p\n", crtc->config);
4580
4581 /* To update pfit, first update scaler state */
4582 skl_update_scaler_users(crtc, crtc->config, NULL, NULL, !enable);
4583 intel_atomic_setup_scalers(crtc->base.dev, crtc, crtc->config);
4584 skl_detach_scalers(crtc);
4585 if (!enable)
4586 return;
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004587
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004588 if (crtc->config->pch_pfit.enabled) {
Chandra Kondurua1b22782015-04-07 15:28:45 -07004589 int id;
4590
4591 if (WARN_ON(crtc->config->scaler_state.scaler_id < 0)) {
4592 DRM_ERROR("Requesting pfit without getting a scaler first\n");
4593 return;
4594 }
4595
4596 id = scaler_state->scaler_id;
4597 I915_WRITE(SKL_PS_CTRL(pipe, id), PS_SCALER_EN |
4598 PS_FILTER_MEDIUM | scaler_state->scalers[id].mode);
4599 I915_WRITE(SKL_PS_WIN_POS(pipe, id), crtc->config->pch_pfit.pos);
4600 I915_WRITE(SKL_PS_WIN_SZ(pipe, id), crtc->config->pch_pfit.size);
4601
4602 DRM_DEBUG_KMS("for crtc_state = %p scaler_id = %d\n", crtc->config, id);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004603 }
4604}
4605
Jesse Barnesb074cec2013-04-25 12:55:02 -07004606static void ironlake_pfit_enable(struct intel_crtc *crtc)
4607{
4608 struct drm_device *dev = crtc->base.dev;
4609 struct drm_i915_private *dev_priv = dev->dev_private;
4610 int pipe = crtc->pipe;
4611
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004612 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07004613 /* Force use of hard-coded filter coefficients
4614 * as some pre-programmed values are broken,
4615 * e.g. x201.
4616 */
4617 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
4618 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4619 PF_PIPE_SEL_IVB(pipe));
4620 else
4621 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004622 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4623 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08004624 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004625}
4626
Matt Roper4a3b8762014-12-23 10:41:51 -08004627static void intel_enable_sprite_planes(struct drm_crtc *crtc)
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004628{
4629 struct drm_device *dev = crtc->dev;
4630 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07004631 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004632 struct intel_plane *intel_plane;
4633
Matt Roperaf2b6532014-04-01 15:22:32 -07004634 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
4635 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004636 if (intel_plane->pipe == pipe)
4637 intel_plane_restore(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07004638 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004639}
4640
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004641void hsw_enable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004642{
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004643 struct drm_device *dev = crtc->base.dev;
4644 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid77e4532013-09-24 13:52:55 -03004645
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004646 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004647 return;
4648
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004649 /* We can only enable IPS after we enable a plane and wait for a vblank */
4650 intel_wait_for_vblank(dev, crtc->pipe);
4651
Paulo Zanonid77e4532013-09-24 13:52:55 -03004652 assert_plane_enabled(dev_priv, crtc->plane);
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004653 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004654 mutex_lock(&dev_priv->rps.hw_lock);
4655 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4656 mutex_unlock(&dev_priv->rps.hw_lock);
4657 /* Quoting Art Runyan: "its not safe to expect any particular
4658 * value in IPS_CTL bit 31 after enabling IPS through the
Jesse Barnese59150d2014-01-07 13:30:45 -08004659 * mailbox." Moreover, the mailbox may return a bogus state,
4660 * so we need to just enable it and continue on.
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004661 */
4662 } else {
4663 I915_WRITE(IPS_CTL, IPS_ENABLE);
4664 /* The bit only becomes 1 in the next vblank, so this wait here
4665 * is essentially intel_wait_for_vblank. If we don't have this
4666 * and don't wait for vblanks until the end of crtc_enable, then
4667 * the HW state readout code will complain that the expected
4668 * IPS_CTL value is not the one we read. */
4669 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
4670 DRM_ERROR("Timed out waiting for IPS enable\n");
4671 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004672}
4673
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004674void hsw_disable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004675{
4676 struct drm_device *dev = crtc->base.dev;
4677 struct drm_i915_private *dev_priv = dev->dev_private;
4678
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004679 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004680 return;
4681
4682 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004683 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004684 mutex_lock(&dev_priv->rps.hw_lock);
4685 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4686 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004687 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
4688 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
4689 DRM_ERROR("Timed out waiting for IPS disable\n");
Jesse Barnese59150d2014-01-07 13:30:45 -08004690 } else {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004691 I915_WRITE(IPS_CTL, 0);
Jesse Barnese59150d2014-01-07 13:30:45 -08004692 POSTING_READ(IPS_CTL);
4693 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004694
4695 /* We need to wait for a vblank before we can disable the plane. */
4696 intel_wait_for_vblank(dev, crtc->pipe);
4697}
4698
4699/** Loads the palette/gamma unit for the CRTC with the prepared values */
4700static void intel_crtc_load_lut(struct drm_crtc *crtc)
4701{
4702 struct drm_device *dev = crtc->dev;
4703 struct drm_i915_private *dev_priv = dev->dev_private;
4704 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4705 enum pipe pipe = intel_crtc->pipe;
4706 int palreg = PALETTE(pipe);
4707 int i;
4708 bool reenable_ips = false;
4709
4710 /* The clocks have to be on to load the palette. */
Matt Roper83d65732015-02-25 13:12:16 -08004711 if (!crtc->state->enable || !intel_crtc->active)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004712 return;
4713
Imre Deak50360402015-01-16 00:55:16 -08004714 if (HAS_GMCH_DISPLAY(dev_priv->dev)) {
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03004715 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI))
Paulo Zanonid77e4532013-09-24 13:52:55 -03004716 assert_dsi_pll_enabled(dev_priv);
4717 else
4718 assert_pll_enabled(dev_priv, pipe);
4719 }
4720
4721 /* use legacy palette for Ironlake */
Sonika Jindal7a1db492014-07-22 11:18:27 +05304722 if (!HAS_GMCH_DISPLAY(dev))
Paulo Zanonid77e4532013-09-24 13:52:55 -03004723 palreg = LGC_PALETTE(pipe);
4724
4725 /* Workaround : Do not read or write the pipe palette/gamma data while
4726 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
4727 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004728 if (IS_HASWELL(dev) && intel_crtc->config->ips_enabled &&
Paulo Zanonid77e4532013-09-24 13:52:55 -03004729 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
4730 GAMMA_MODE_MODE_SPLIT)) {
4731 hsw_disable_ips(intel_crtc);
4732 reenable_ips = true;
4733 }
4734
4735 for (i = 0; i < 256; i++) {
4736 I915_WRITE(palreg + 4 * i,
4737 (intel_crtc->lut_r[i] << 16) |
4738 (intel_crtc->lut_g[i] << 8) |
4739 intel_crtc->lut_b[i]);
4740 }
4741
4742 if (reenable_ips)
4743 hsw_enable_ips(intel_crtc);
4744}
4745
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004746static void intel_crtc_dpms_overlay_disable(struct intel_crtc *intel_crtc)
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004747{
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004748 if (intel_crtc->overlay) {
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004749 struct drm_device *dev = intel_crtc->base.dev;
4750 struct drm_i915_private *dev_priv = dev->dev_private;
4751
4752 mutex_lock(&dev->struct_mutex);
4753 dev_priv->mm.interruptible = false;
4754 (void) intel_overlay_switch_off(intel_crtc->overlay);
4755 dev_priv->mm.interruptible = true;
4756 mutex_unlock(&dev->struct_mutex);
4757 }
4758
4759 /* Let userspace switch the overlay on again. In most cases userspace
4760 * has to recompute where to put it anyway.
4761 */
4762}
4763
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004764/**
4765 * intel_post_enable_primary - Perform operations after enabling primary plane
4766 * @crtc: the CRTC whose primary plane was just enabled
4767 *
4768 * Performs potentially sleeping operations that must be done after the primary
4769 * plane is enabled, such as updating FBC and IPS. Note that this may be
4770 * called due to an explicit primary plane update, or due to an implicit
4771 * re-enable that is caused when a sprite plane is updated to no longer
4772 * completely hide the primary plane.
4773 */
4774static void
4775intel_post_enable_primary(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004776{
4777 struct drm_device *dev = crtc->dev;
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004778 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004779 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4780 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004781
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004782 /*
4783 * BDW signals flip done immediately if the plane
4784 * is disabled, even if the plane enable is already
4785 * armed to occur at the next vblank :(
4786 */
4787 if (IS_BROADWELL(dev))
4788 intel_wait_for_vblank(dev, pipe);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004789
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004790 /*
4791 * FIXME IPS should be fine as long as one plane is
4792 * enabled, but in practice it seems to have problems
4793 * when going from primary only to sprite only and vice
4794 * versa.
4795 */
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004796 hsw_enable_ips(intel_crtc);
4797
4798 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004799 intel_fbc_update(dev);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004800 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf99d7062014-06-19 16:01:59 +02004801
4802 /*
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004803 * Gen2 reports pipe underruns whenever all planes are disabled.
4804 * So don't enable underrun reporting before at least some planes
4805 * are enabled.
4806 * FIXME: Need to fix the logic to work when we turn off all planes
4807 * but leave the pipe running.
Daniel Vetterf99d7062014-06-19 16:01:59 +02004808 */
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004809 if (IS_GEN2(dev))
4810 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4811
4812 /* Underruns don't raise interrupts, so check manually. */
4813 if (HAS_GMCH_DISPLAY(dev))
4814 i9xx_check_fifo_underruns(dev_priv);
4815}
4816
4817/**
4818 * intel_pre_disable_primary - Perform operations before disabling primary plane
4819 * @crtc: the CRTC whose primary plane is to be disabled
4820 *
4821 * Performs potentially sleeping operations that must be done before the
4822 * primary plane is disabled, such as updating FBC and IPS. Note that this may
4823 * be called due to an explicit primary plane update, or due to an implicit
4824 * disable that is caused when a sprite plane completely hides the primary
4825 * plane.
4826 */
4827static void
4828intel_pre_disable_primary(struct drm_crtc *crtc)
4829{
4830 struct drm_device *dev = crtc->dev;
4831 struct drm_i915_private *dev_priv = dev->dev_private;
4832 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4833 int pipe = intel_crtc->pipe;
4834
4835 /*
4836 * Gen2 reports pipe underruns whenever all planes are disabled.
4837 * So diasble underrun reporting before all the planes get disabled.
4838 * FIXME: Need to fix the logic to work when we turn off all planes
4839 * but leave the pipe running.
4840 */
4841 if (IS_GEN2(dev))
4842 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
4843
4844 /*
4845 * Vblank time updates from the shadow to live plane control register
4846 * are blocked if the memory self-refresh mode is active at that
4847 * moment. So to make sure the plane gets truly disabled, disable
4848 * first the self-refresh mode. The self-refresh enable bit in turn
4849 * will be checked/applied by the HW only at the next frame start
4850 * event which is after the vblank start event, so we need to have a
4851 * wait-for-vblank between disabling the plane and the pipe.
4852 */
4853 if (HAS_GMCH_DISPLAY(dev))
4854 intel_set_memory_cxsr(dev_priv, false);
4855
4856 mutex_lock(&dev->struct_mutex);
4857 if (dev_priv->fbc.crtc == intel_crtc)
4858 intel_fbc_disable(dev);
4859 mutex_unlock(&dev->struct_mutex);
4860
4861 /*
4862 * FIXME IPS should be fine as long as one plane is
4863 * enabled, but in practice it seems to have problems
4864 * when going from primary only to sprite only and vice
4865 * versa.
4866 */
4867 hsw_disable_ips(intel_crtc);
4868}
4869
4870static void intel_crtc_enable_planes(struct drm_crtc *crtc)
4871{
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004872 intel_enable_primary_hw_plane(crtc->primary, crtc);
4873 intel_enable_sprite_planes(crtc);
4874 intel_crtc_update_cursor(crtc, true);
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004875
4876 intel_post_enable_primary(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004877}
4878
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004879static void intel_crtc_disable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004880{
4881 struct drm_device *dev = crtc->dev;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004882 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorst27321ae2015-04-21 17:12:52 +03004883 struct intel_plane *intel_plane;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004884 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004885
4886 intel_crtc_wait_for_pending_flips(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004887
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004888 intel_pre_disable_primary(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004889
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004890 intel_crtc_dpms_overlay_disable(intel_crtc);
Maarten Lankhorst27321ae2015-04-21 17:12:52 +03004891 for_each_intel_plane(dev, intel_plane) {
4892 if (intel_plane->pipe == pipe) {
4893 struct drm_crtc *from = intel_plane->base.crtc;
4894
4895 intel_plane->disable_plane(&intel_plane->base,
4896 from ?: crtc, true);
4897 }
4898 }
Ville Syrjäläf98551a2014-05-22 17:48:06 +03004899
Daniel Vetterf99d7062014-06-19 16:01:59 +02004900 /*
4901 * FIXME: Once we grow proper nuclear flip support out of this we need
4902 * to compute the mask of flip planes precisely. For the time being
4903 * consider this a flip to a NULL plane.
4904 */
4905 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004906}
4907
Jesse Barnesf67a5592011-01-05 10:31:48 -08004908static void ironlake_crtc_enable(struct drm_crtc *crtc)
4909{
4910 struct drm_device *dev = crtc->dev;
4911 struct drm_i915_private *dev_priv = dev->dev_private;
4912 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004913 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004914 int pipe = intel_crtc->pipe;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004915
Matt Roper83d65732015-02-25 13:12:16 -08004916 WARN_ON(!crtc->state->enable);
Daniel Vetter08a48462012-07-02 11:43:47 +02004917
Jesse Barnesf67a5592011-01-05 10:31:48 -08004918 if (intel_crtc->active)
4919 return;
4920
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004921 if (intel_crtc->config->has_pch_encoder)
Daniel Vetterb14b1052014-04-24 23:55:13 +02004922 intel_prepare_shared_dpll(intel_crtc);
4923
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004924 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05304925 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004926
4927 intel_set_pipe_timings(intel_crtc);
4928
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004929 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter29407aa2014-04-24 23:55:08 +02004930 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004931 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004932 }
4933
4934 ironlake_set_pipeconf(crtc);
4935
Jesse Barnesf67a5592011-01-05 10:31:48 -08004936 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004937
Daniel Vettera72e4c92014-09-30 10:56:47 +02004938 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4939 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni86642812013-04-12 17:57:57 -03004940
Daniel Vetterf6736a12013-06-05 13:34:30 +02004941 for_each_encoder_on_crtc(dev, crtc, encoder)
Daniel Vetter952735e2013-06-05 13:34:27 +02004942 if (encoder->pre_enable)
4943 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004944
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004945 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02004946 /* Note: FDI PLL enabling _must_ be done before we enable the
4947 * cpu pipes, hence this is separate from all the other fdi/pch
4948 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02004949 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02004950 } else {
4951 assert_fdi_tx_disabled(dev_priv, pipe);
4952 assert_fdi_rx_disabled(dev_priv, pipe);
4953 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004954
Jesse Barnesb074cec2013-04-25 12:55:02 -07004955 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004956
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02004957 /*
4958 * On ILK+ LUT must be loaded before the pipe is running but with
4959 * clocks enabled
4960 */
4961 intel_crtc_load_lut(crtc);
4962
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004963 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004964 intel_enable_pipe(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004965
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004966 if (intel_crtc->config->has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08004967 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004968
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004969 assert_vblank_disabled(crtc);
4970 drm_crtc_vblank_on(crtc);
4971
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004972 for_each_encoder_on_crtc(dev, crtc, encoder)
4973 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02004974
4975 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02004976 cpt_verify_modeset(dev, intel_crtc->pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004977}
4978
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004979/* IPS only exists on ULT machines and is tied to pipe A. */
4980static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4981{
Damien Lespiauf5adf942013-06-24 18:29:34 +01004982 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004983}
4984
Paulo Zanonie4916942013-09-20 16:21:19 -03004985/*
4986 * This implements the workaround described in the "notes" section of the mode
4987 * set sequence documentation. When going from no pipes or single pipe to
4988 * multiple pipes, and planes are enabled after the pipe, we need to wait at
4989 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
4990 */
4991static void haswell_mode_set_planes_workaround(struct intel_crtc *crtc)
4992{
4993 struct drm_device *dev = crtc->base.dev;
4994 struct intel_crtc *crtc_it, *other_active_crtc = NULL;
4995
4996 /* We want to get the other_active_crtc only if there's only 1 other
4997 * active crtc. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004998 for_each_intel_crtc(dev, crtc_it) {
Paulo Zanonie4916942013-09-20 16:21:19 -03004999 if (!crtc_it->active || crtc_it == crtc)
5000 continue;
5001
5002 if (other_active_crtc)
5003 return;
5004
5005 other_active_crtc = crtc_it;
5006 }
5007 if (!other_active_crtc)
5008 return;
5009
5010 intel_wait_for_vblank(dev, other_active_crtc->pipe);
5011 intel_wait_for_vblank(dev, other_active_crtc->pipe);
5012}
5013
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005014static void haswell_crtc_enable(struct drm_crtc *crtc)
5015{
5016 struct drm_device *dev = crtc->dev;
5017 struct drm_i915_private *dev_priv = dev->dev_private;
5018 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5019 struct intel_encoder *encoder;
5020 int pipe = intel_crtc->pipe;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005021
Matt Roper83d65732015-02-25 13:12:16 -08005022 WARN_ON(!crtc->state->enable);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005023
5024 if (intel_crtc->active)
5025 return;
5026
Daniel Vetterdf8ad702014-06-25 22:02:03 +03005027 if (intel_crtc_to_shared_dpll(intel_crtc))
5028 intel_enable_shared_dpll(intel_crtc);
5029
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005030 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05305031 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter229fca92014-04-24 23:55:09 +02005032
5033 intel_set_pipe_timings(intel_crtc);
5034
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005035 if (intel_crtc->config->cpu_transcoder != TRANSCODER_EDP) {
5036 I915_WRITE(PIPE_MULT(intel_crtc->config->cpu_transcoder),
5037 intel_crtc->config->pixel_multiplier - 1);
Clint Taylorebb69c92014-09-30 10:30:22 -07005038 }
5039
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005040 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter229fca92014-04-24 23:55:09 +02005041 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005042 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter229fca92014-04-24 23:55:09 +02005043 }
5044
5045 haswell_set_pipeconf(crtc);
5046
5047 intel_set_pipe_csc(crtc);
5048
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005049 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03005050
Daniel Vettera72e4c92014-09-30 10:56:47 +02005051 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005052 for_each_encoder_on_crtc(dev, crtc, encoder)
5053 if (encoder->pre_enable)
5054 encoder->pre_enable(encoder);
5055
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005056 if (intel_crtc->config->has_pch_encoder) {
Daniel Vettera72e4c92014-09-30 10:56:47 +02005057 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5058 true);
Imre Deak4fe94672014-06-25 22:01:49 +03005059 dev_priv->display.fdi_link_train(crtc);
5060 }
5061
Paulo Zanoni1f544382012-10-24 11:32:00 -02005062 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005063
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005064 if (INTEL_INFO(dev)->gen == 9)
Chandra Kondurua1b22782015-04-07 15:28:45 -07005065 skylake_pfit_update(intel_crtc, 1);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005066 else if (INTEL_INFO(dev)->gen < 9)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00005067 ironlake_pfit_enable(intel_crtc);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005068 else
5069 MISSING_CASE(INTEL_INFO(dev)->gen);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005070
5071 /*
5072 * On ILK+ LUT must be loaded before the pipe is running but with
5073 * clocks enabled
5074 */
5075 intel_crtc_load_lut(crtc);
5076
Paulo Zanoni1f544382012-10-24 11:32:00 -02005077 intel_ddi_set_pipe_settings(crtc);
Damien Lespiau8228c252013-03-07 15:30:27 +00005078 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005079
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005080 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02005081 intel_enable_pipe(intel_crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005082
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005083 if (intel_crtc->config->has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02005084 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005085
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005086 if (intel_crtc->config->dp_encoder_is_mst)
Dave Airlie0e32b392014-05-02 14:02:48 +10005087 intel_ddi_set_vc_payload_alloc(crtc, true);
5088
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005089 assert_vblank_disabled(crtc);
5090 drm_crtc_vblank_on(crtc);
5091
Jani Nikula8807e552013-08-30 19:40:32 +03005092 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005093 encoder->enable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03005094 intel_opregion_notify_encoder(encoder, true);
5095 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005096
Paulo Zanonie4916942013-09-20 16:21:19 -03005097 /* If we change the relative order between pipe/planes enabling, we need
5098 * to change the workaround. */
5099 haswell_mode_set_planes_workaround(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005100}
5101
Daniel Vetter3f8dce32013-05-08 10:36:30 +02005102static void ironlake_pfit_disable(struct intel_crtc *crtc)
5103{
5104 struct drm_device *dev = crtc->base.dev;
5105 struct drm_i915_private *dev_priv = dev->dev_private;
5106 int pipe = crtc->pipe;
5107
5108 /* To avoid upsetting the power well on haswell only disable the pfit if
5109 * it's in use. The hw state code will make sure we get this right. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005110 if (crtc->config->pch_pfit.enabled) {
Daniel Vetter3f8dce32013-05-08 10:36:30 +02005111 I915_WRITE(PF_CTL(pipe), 0);
5112 I915_WRITE(PF_WIN_POS(pipe), 0);
5113 I915_WRITE(PF_WIN_SZ(pipe), 0);
5114 }
5115}
5116
Jesse Barnes6be4a602010-09-10 10:26:01 -07005117static void ironlake_crtc_disable(struct drm_crtc *crtc)
5118{
5119 struct drm_device *dev = crtc->dev;
5120 struct drm_i915_private *dev_priv = dev->dev_private;
5121 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005122 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07005123 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01005124 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07005125
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005126 if (!intel_crtc->active)
5127 return;
5128
Daniel Vetterea9d7582012-07-10 10:42:52 +02005129 for_each_encoder_on_crtc(dev, crtc, encoder)
5130 encoder->disable(encoder);
5131
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005132 drm_crtc_vblank_off(crtc);
5133 assert_vblank_disabled(crtc);
5134
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005135 if (intel_crtc->config->has_pch_encoder)
Daniel Vettera72e4c92014-09-30 10:56:47 +02005136 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
Daniel Vetterd925c592013-06-05 13:34:04 +02005137
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03005138 intel_disable_pipe(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005139
Daniel Vetter3f8dce32013-05-08 10:36:30 +02005140 ironlake_pfit_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005141
Daniel Vetterbf49ec82012-09-06 22:15:40 +02005142 for_each_encoder_on_crtc(dev, crtc, encoder)
5143 if (encoder->post_disable)
5144 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005145
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005146 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterd925c592013-06-05 13:34:04 +02005147 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005148
Daniel Vetterd925c592013-06-05 13:34:04 +02005149 ironlake_disable_pch_transcoder(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005150
Daniel Vetterd925c592013-06-05 13:34:04 +02005151 if (HAS_PCH_CPT(dev)) {
5152 /* disable TRANS_DP_CTL */
5153 reg = TRANS_DP_CTL(pipe);
5154 temp = I915_READ(reg);
5155 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
5156 TRANS_DP_PORT_SEL_MASK);
5157 temp |= TRANS_DP_PORT_SEL_NONE;
5158 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005159
Daniel Vetterd925c592013-06-05 13:34:04 +02005160 /* disable DPLL_SEL */
5161 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02005162 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
Daniel Vetterd925c592013-06-05 13:34:04 +02005163 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005164 }
Daniel Vetterd925c592013-06-05 13:34:04 +02005165
5166 /* disable PCH DPLL */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02005167 intel_disable_shared_dpll(intel_crtc);
Daniel Vetterd925c592013-06-05 13:34:04 +02005168
5169 ironlake_fdi_pll_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005170 }
5171
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005172 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03005173 intel_update_watermarks(crtc);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01005174
5175 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02005176 intel_fbc_update(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01005177 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005178}
5179
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005180static void haswell_crtc_disable(struct drm_crtc *crtc)
5181{
5182 struct drm_device *dev = crtc->dev;
5183 struct drm_i915_private *dev_priv = dev->dev_private;
5184 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5185 struct intel_encoder *encoder;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005186 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005187
5188 if (!intel_crtc->active)
5189 return;
5190
Jani Nikula8807e552013-08-30 19:40:32 +03005191 for_each_encoder_on_crtc(dev, crtc, encoder) {
5192 intel_opregion_notify_encoder(encoder, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005193 encoder->disable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03005194 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005195
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005196 drm_crtc_vblank_off(crtc);
5197 assert_vblank_disabled(crtc);
5198
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005199 if (intel_crtc->config->has_pch_encoder)
Daniel Vettera72e4c92014-09-30 10:56:47 +02005200 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5201 false);
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03005202 intel_disable_pipe(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005203
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005204 if (intel_crtc->config->dp_encoder_is_mst)
Ville Syrjäläa4bf2142014-08-18 21:27:34 +03005205 intel_ddi_set_vc_payload_alloc(crtc, false);
5206
Paulo Zanoniad80a812012-10-24 16:06:19 -02005207 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005208
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005209 if (INTEL_INFO(dev)->gen == 9)
Chandra Kondurua1b22782015-04-07 15:28:45 -07005210 skylake_pfit_update(intel_crtc, 0);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005211 else if (INTEL_INFO(dev)->gen < 9)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00005212 ironlake_pfit_disable(intel_crtc);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005213 else
5214 MISSING_CASE(INTEL_INFO(dev)->gen);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005215
Paulo Zanoni1f544382012-10-24 11:32:00 -02005216 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005217
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005218 if (intel_crtc->config->has_pch_encoder) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02005219 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02005220 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02005221 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005222
Imre Deak97b040a2014-06-25 22:01:50 +03005223 for_each_encoder_on_crtc(dev, crtc, encoder)
5224 if (encoder->post_disable)
5225 encoder->post_disable(encoder);
5226
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005227 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03005228 intel_update_watermarks(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005229
5230 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02005231 intel_fbc_update(dev);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005232 mutex_unlock(&dev->struct_mutex);
Daniel Vetterdf8ad702014-06-25 22:02:03 +03005233
5234 if (intel_crtc_to_shared_dpll(intel_crtc))
5235 intel_disable_shared_dpll(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005236}
5237
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005238static void ironlake_crtc_off(struct drm_crtc *crtc)
5239{
5240 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettere72f9fb2013-06-05 13:34:06 +02005241 intel_put_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005242}
5243
Paulo Zanoni6441ab52012-10-05 12:05:58 -03005244
Jesse Barnes2dd24552013-04-25 12:55:01 -07005245static void i9xx_pfit_enable(struct intel_crtc *crtc)
5246{
5247 struct drm_device *dev = crtc->base.dev;
5248 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005249 struct intel_crtc_state *pipe_config = crtc->config;
Jesse Barnes2dd24552013-04-25 12:55:01 -07005250
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02005251 if (!pipe_config->gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07005252 return;
5253
Daniel Vetterc0b03412013-05-28 12:05:54 +02005254 /*
5255 * The panel fitter should only be adjusted whilst the pipe is disabled,
5256 * according to register description and PRM.
5257 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07005258 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
5259 assert_pipe_disabled(dev_priv, crtc->pipe);
5260
Jesse Barnesb074cec2013-04-25 12:55:02 -07005261 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
5262 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02005263
5264 /* Border color in case we don't scale up to the full screen. Black by
5265 * default, change to something else for debugging. */
5266 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07005267}
5268
Dave Airlied05410f2014-06-05 13:22:59 +10005269static enum intel_display_power_domain port_to_power_domain(enum port port)
5270{
5271 switch (port) {
5272 case PORT_A:
5273 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
5274 case PORT_B:
5275 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
5276 case PORT_C:
5277 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
5278 case PORT_D:
5279 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
5280 default:
5281 WARN_ON_ONCE(1);
5282 return POWER_DOMAIN_PORT_OTHER;
5283 }
5284}
5285
Imre Deak77d22dc2014-03-05 16:20:52 +02005286#define for_each_power_domain(domain, mask) \
5287 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
5288 if ((1 << (domain)) & (mask))
5289
Imre Deak319be8a2014-03-04 19:22:57 +02005290enum intel_display_power_domain
5291intel_display_port_power_domain(struct intel_encoder *intel_encoder)
Imre Deak77d22dc2014-03-05 16:20:52 +02005292{
Imre Deak319be8a2014-03-04 19:22:57 +02005293 struct drm_device *dev = intel_encoder->base.dev;
5294 struct intel_digital_port *intel_dig_port;
5295
5296 switch (intel_encoder->type) {
5297 case INTEL_OUTPUT_UNKNOWN:
5298 /* Only DDI platforms should ever use this output type */
5299 WARN_ON_ONCE(!HAS_DDI(dev));
5300 case INTEL_OUTPUT_DISPLAYPORT:
5301 case INTEL_OUTPUT_HDMI:
5302 case INTEL_OUTPUT_EDP:
5303 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
Dave Airlied05410f2014-06-05 13:22:59 +10005304 return port_to_power_domain(intel_dig_port->port);
Dave Airlie0e32b392014-05-02 14:02:48 +10005305 case INTEL_OUTPUT_DP_MST:
5306 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5307 return port_to_power_domain(intel_dig_port->port);
Imre Deak319be8a2014-03-04 19:22:57 +02005308 case INTEL_OUTPUT_ANALOG:
5309 return POWER_DOMAIN_PORT_CRT;
5310 case INTEL_OUTPUT_DSI:
5311 return POWER_DOMAIN_PORT_DSI;
5312 default:
5313 return POWER_DOMAIN_PORT_OTHER;
5314 }
5315}
5316
5317static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
5318{
5319 struct drm_device *dev = crtc->dev;
5320 struct intel_encoder *intel_encoder;
5321 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5322 enum pipe pipe = intel_crtc->pipe;
Imre Deak77d22dc2014-03-05 16:20:52 +02005323 unsigned long mask;
5324 enum transcoder transcoder;
5325
5326 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
5327
5328 mask = BIT(POWER_DOMAIN_PIPE(pipe));
5329 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005330 if (intel_crtc->config->pch_pfit.enabled ||
5331 intel_crtc->config->pch_pfit.force_thru)
Imre Deak77d22dc2014-03-05 16:20:52 +02005332 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
5333
Imre Deak319be8a2014-03-04 19:22:57 +02005334 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
5335 mask |= BIT(intel_display_port_power_domain(intel_encoder));
5336
Imre Deak77d22dc2014-03-05 16:20:52 +02005337 return mask;
5338}
5339
Ander Conselvan de Oliveira679dacd2015-03-20 16:18:15 +02005340static void modeset_update_crtc_power_domains(struct drm_atomic_state *state)
Imre Deak77d22dc2014-03-05 16:20:52 +02005341{
Ander Conselvan de Oliveira679dacd2015-03-20 16:18:15 +02005342 struct drm_device *dev = state->dev;
Imre Deak77d22dc2014-03-05 16:20:52 +02005343 struct drm_i915_private *dev_priv = dev->dev_private;
5344 unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
5345 struct intel_crtc *crtc;
5346
5347 /*
5348 * First get all needed power domains, then put all unneeded, to avoid
5349 * any unnecessary toggling of the power wells.
5350 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01005351 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02005352 enum intel_display_power_domain domain;
5353
Matt Roper83d65732015-02-25 13:12:16 -08005354 if (!crtc->base.state->enable)
Imre Deak77d22dc2014-03-05 16:20:52 +02005355 continue;
5356
Imre Deak319be8a2014-03-04 19:22:57 +02005357 pipe_domains[crtc->pipe] = get_crtc_power_domains(&crtc->base);
Imre Deak77d22dc2014-03-05 16:20:52 +02005358
5359 for_each_power_domain(domain, pipe_domains[crtc->pipe])
5360 intel_display_power_get(dev_priv, domain);
5361 }
5362
Ville Syrjälä50f6e502014-11-06 14:49:12 +02005363 if (dev_priv->display.modeset_global_resources)
Ander Conselvan de Oliveira679dacd2015-03-20 16:18:15 +02005364 dev_priv->display.modeset_global_resources(state);
Ville Syrjälä50f6e502014-11-06 14:49:12 +02005365
Damien Lespiaud3fcc802014-05-13 23:32:22 +01005366 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02005367 enum intel_display_power_domain domain;
5368
5369 for_each_power_domain(domain, crtc->enabled_power_domains)
5370 intel_display_power_put(dev_priv, domain);
5371
5372 crtc->enabled_power_domains = pipe_domains[crtc->pipe];
5373 }
5374
5375 intel_display_set_init_power(dev_priv, false);
5376}
5377
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305378void broxton_set_cdclk(struct drm_device *dev, int frequency)
5379{
5380 struct drm_i915_private *dev_priv = dev->dev_private;
5381 uint32_t divider;
5382 uint32_t ratio;
5383 uint32_t current_freq;
5384 int ret;
5385
5386 /* frequency = 19.2MHz * ratio / 2 / div{1,1.5,2,4} */
5387 switch (frequency) {
5388 case 144000:
5389 divider = BXT_CDCLK_CD2X_DIV_SEL_4;
5390 ratio = BXT_DE_PLL_RATIO(60);
5391 break;
5392 case 288000:
5393 divider = BXT_CDCLK_CD2X_DIV_SEL_2;
5394 ratio = BXT_DE_PLL_RATIO(60);
5395 break;
5396 case 384000:
5397 divider = BXT_CDCLK_CD2X_DIV_SEL_1_5;
5398 ratio = BXT_DE_PLL_RATIO(60);
5399 break;
5400 case 576000:
5401 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5402 ratio = BXT_DE_PLL_RATIO(60);
5403 break;
5404 case 624000:
5405 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5406 ratio = BXT_DE_PLL_RATIO(65);
5407 break;
5408 case 19200:
5409 /*
5410 * Bypass frequency with DE PLL disabled. Init ratio, divider
5411 * to suppress GCC warning.
5412 */
5413 ratio = 0;
5414 divider = 0;
5415 break;
5416 default:
5417 DRM_ERROR("unsupported CDCLK freq %d", frequency);
5418
5419 return;
5420 }
5421
5422 mutex_lock(&dev_priv->rps.hw_lock);
5423 /* Inform power controller of upcoming frequency change */
5424 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
5425 0x80000000);
5426 mutex_unlock(&dev_priv->rps.hw_lock);
5427
5428 if (ret) {
5429 DRM_ERROR("PCode CDCLK freq change notify failed (err %d, freq %d)\n",
5430 ret, frequency);
5431 return;
5432 }
5433
5434 current_freq = I915_READ(CDCLK_CTL) & CDCLK_FREQ_DECIMAL_MASK;
5435 /* convert from .1 fixpoint MHz with -1MHz offset to kHz */
5436 current_freq = current_freq * 500 + 1000;
5437
5438 /*
5439 * DE PLL has to be disabled when
5440 * - setting to 19.2MHz (bypass, PLL isn't used)
5441 * - before setting to 624MHz (PLL needs toggling)
5442 * - before setting to any frequency from 624MHz (PLL needs toggling)
5443 */
5444 if (frequency == 19200 || frequency == 624000 ||
5445 current_freq == 624000) {
5446 I915_WRITE(BXT_DE_PLL_ENABLE, ~BXT_DE_PLL_PLL_ENABLE);
5447 /* Timeout 200us */
5448 if (wait_for(!(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK),
5449 1))
5450 DRM_ERROR("timout waiting for DE PLL unlock\n");
5451 }
5452
5453 if (frequency != 19200) {
5454 uint32_t val;
5455
5456 val = I915_READ(BXT_DE_PLL_CTL);
5457 val &= ~BXT_DE_PLL_RATIO_MASK;
5458 val |= ratio;
5459 I915_WRITE(BXT_DE_PLL_CTL, val);
5460
5461 I915_WRITE(BXT_DE_PLL_ENABLE, BXT_DE_PLL_PLL_ENABLE);
5462 /* Timeout 200us */
5463 if (wait_for(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK, 1))
5464 DRM_ERROR("timeout waiting for DE PLL lock\n");
5465
5466 val = I915_READ(CDCLK_CTL);
5467 val &= ~BXT_CDCLK_CD2X_DIV_SEL_MASK;
5468 val |= divider;
5469 /*
5470 * Disable SSA Precharge when CD clock frequency < 500 MHz,
5471 * enable otherwise.
5472 */
5473 val &= ~BXT_CDCLK_SSA_PRECHARGE_ENABLE;
5474 if (frequency >= 500000)
5475 val |= BXT_CDCLK_SSA_PRECHARGE_ENABLE;
5476
5477 val &= ~CDCLK_FREQ_DECIMAL_MASK;
5478 /* convert from kHz to .1 fixpoint MHz with -1MHz offset */
5479 val |= (frequency - 1000) / 500;
5480 I915_WRITE(CDCLK_CTL, val);
5481 }
5482
5483 mutex_lock(&dev_priv->rps.hw_lock);
5484 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
5485 DIV_ROUND_UP(frequency, 25000));
5486 mutex_unlock(&dev_priv->rps.hw_lock);
5487
5488 if (ret) {
5489 DRM_ERROR("PCode CDCLK freq set failed, (err %d, freq %d)\n",
5490 ret, frequency);
5491 return;
5492 }
5493
5494 dev_priv->cdclk_freq = frequency;
5495}
5496
5497void broxton_init_cdclk(struct drm_device *dev)
5498{
5499 struct drm_i915_private *dev_priv = dev->dev_private;
5500 uint32_t val;
5501
5502 /*
5503 * NDE_RSTWRN_OPT RST PCH Handshake En must always be 0b on BXT
5504 * or else the reset will hang because there is no PCH to respond.
5505 * Move the handshake programming to initialization sequence.
5506 * Previously was left up to BIOS.
5507 */
5508 val = I915_READ(HSW_NDE_RSTWRN_OPT);
5509 val &= ~RESET_PCH_HANDSHAKE_ENABLE;
5510 I915_WRITE(HSW_NDE_RSTWRN_OPT, val);
5511
5512 /* Enable PG1 for cdclk */
5513 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
5514
5515 /* check if cd clock is enabled */
5516 if (I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_PLL_ENABLE) {
5517 DRM_DEBUG_KMS("Display already initialized\n");
5518 return;
5519 }
5520
5521 /*
5522 * FIXME:
5523 * - The initial CDCLK needs to be read from VBT.
5524 * Need to make this change after VBT has changes for BXT.
5525 * - check if setting the max (or any) cdclk freq is really necessary
5526 * here, it belongs to modeset time
5527 */
5528 broxton_set_cdclk(dev, 624000);
5529
5530 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) | DBUF_POWER_REQUEST);
Ville Syrjälä22e02c02015-05-06 14:28:57 +03005531 POSTING_READ(DBUF_CTL);
5532
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305533 udelay(10);
5534
5535 if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE))
5536 DRM_ERROR("DBuf power enable timeout!\n");
5537}
5538
5539void broxton_uninit_cdclk(struct drm_device *dev)
5540{
5541 struct drm_i915_private *dev_priv = dev->dev_private;
5542
5543 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) & ~DBUF_POWER_REQUEST);
Ville Syrjälä22e02c02015-05-06 14:28:57 +03005544 POSTING_READ(DBUF_CTL);
5545
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305546 udelay(10);
5547
5548 if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE)
5549 DRM_ERROR("DBuf power disable timeout!\n");
5550
5551 /* Set minimum (bypass) frequency, in effect turning off the DE PLL */
5552 broxton_set_cdclk(dev, 19200);
5553
5554 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
5555}
5556
Ville Syrjälädfcab172014-06-13 13:37:47 +03005557/* returns HPLL frequency in kHz */
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03005558static int valleyview_get_vco(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005559{
Jesse Barnes586f49d2013-11-04 16:06:59 -08005560 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
Jesse Barnes30a970c2013-11-04 13:48:12 -08005561
Jesse Barnes586f49d2013-11-04 16:06:59 -08005562 /* Obtain SKU information */
5563 mutex_lock(&dev_priv->dpio_lock);
5564 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
5565 CCK_FUSE_HPLL_FREQ_MASK;
5566 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005567
Ville Syrjälädfcab172014-06-13 13:37:47 +03005568 return vco_freq[hpll_freq] * 1000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005569}
5570
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03005571static void vlv_update_cdclk(struct drm_device *dev)
5572{
5573 struct drm_i915_private *dev_priv = dev->dev_private;
5574
Vandana Kannan164dfd22014-11-24 13:37:41 +05305575 dev_priv->cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
Ville Syrjälä43dc52c2014-10-07 17:41:20 +03005576 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
Vandana Kannan164dfd22014-11-24 13:37:41 +05305577 dev_priv->cdclk_freq);
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03005578
5579 /*
5580 * Program the gmbus_freq based on the cdclk frequency.
5581 * BSpec erroneously claims we should aim for 4MHz, but
5582 * in fact 1MHz is the correct frequency.
5583 */
Vandana Kannan164dfd22014-11-24 13:37:41 +05305584 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->cdclk_freq, 1000));
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03005585}
5586
Jesse Barnes30a970c2013-11-04 13:48:12 -08005587/* Adjust CDclk dividers to allow high res or save power if possible */
5588static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
5589{
5590 struct drm_i915_private *dev_priv = dev->dev_private;
5591 u32 val, cmd;
5592
Vandana Kannan164dfd22014-11-24 13:37:41 +05305593 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5594 != dev_priv->cdclk_freq);
Imre Deakd60c4472014-03-27 17:45:10 +02005595
Ville Syrjälädfcab172014-06-13 13:37:47 +03005596 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
Jesse Barnes30a970c2013-11-04 13:48:12 -08005597 cmd = 2;
Ville Syrjälädfcab172014-06-13 13:37:47 +03005598 else if (cdclk == 266667)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005599 cmd = 1;
5600 else
5601 cmd = 0;
5602
5603 mutex_lock(&dev_priv->rps.hw_lock);
5604 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5605 val &= ~DSPFREQGUAR_MASK;
5606 val |= (cmd << DSPFREQGUAR_SHIFT);
5607 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5608 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5609 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
5610 50)) {
5611 DRM_ERROR("timed out waiting for CDclk change\n");
5612 }
5613 mutex_unlock(&dev_priv->rps.hw_lock);
5614
Ville Syrjälädfcab172014-06-13 13:37:47 +03005615 if (cdclk == 400000) {
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005616 u32 divider;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005617
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005618 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005619
5620 mutex_lock(&dev_priv->dpio_lock);
5621 /* adjust cdclk divider */
5622 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
Ville Syrjälä9cf33db2014-06-13 13:37:48 +03005623 val &= ~DISPLAY_FREQUENCY_VALUES;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005624 val |= divider;
5625 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
Ville Syrjäläa877e802014-06-13 13:37:52 +03005626
5627 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
5628 DISPLAY_FREQUENCY_STATUS) == (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
5629 50))
5630 DRM_ERROR("timed out waiting for CDclk change\n");
Jesse Barnes30a970c2013-11-04 13:48:12 -08005631 mutex_unlock(&dev_priv->dpio_lock);
5632 }
5633
5634 mutex_lock(&dev_priv->dpio_lock);
5635 /* adjust self-refresh exit latency value */
5636 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
5637 val &= ~0x7f;
5638
5639 /*
5640 * For high bandwidth configs, we set a higher latency in the bunit
5641 * so that the core display fetch happens in time to avoid underruns.
5642 */
Ville Syrjälädfcab172014-06-13 13:37:47 +03005643 if (cdclk == 400000)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005644 val |= 4500 / 250; /* 4.5 usec */
5645 else
5646 val |= 3000 / 250; /* 3.0 usec */
5647 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
5648 mutex_unlock(&dev_priv->dpio_lock);
5649
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03005650 vlv_update_cdclk(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005651}
5652
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005653static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
5654{
5655 struct drm_i915_private *dev_priv = dev->dev_private;
5656 u32 val, cmd;
5657
Vandana Kannan164dfd22014-11-24 13:37:41 +05305658 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5659 != dev_priv->cdclk_freq);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005660
5661 switch (cdclk) {
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005662 case 333333:
5663 case 320000:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005664 case 266667:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005665 case 200000:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005666 break;
5667 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01005668 MISSING_CASE(cdclk);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005669 return;
5670 }
5671
Ville Syrjälä9d0d3fd2015-03-02 20:07:17 +02005672 /*
5673 * Specs are full of misinformation, but testing on actual
5674 * hardware has shown that we just need to write the desired
5675 * CCK divider into the Punit register.
5676 */
5677 cmd = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
5678
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005679 mutex_lock(&dev_priv->rps.hw_lock);
5680 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5681 val &= ~DSPFREQGUAR_MASK_CHV;
5682 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
5683 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5684 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5685 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
5686 50)) {
5687 DRM_ERROR("timed out waiting for CDclk change\n");
5688 }
5689 mutex_unlock(&dev_priv->rps.hw_lock);
5690
5691 vlv_update_cdclk(dev);
5692}
5693
Jesse Barnes30a970c2013-11-04 13:48:12 -08005694static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
5695 int max_pixclk)
5696{
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005697 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005698 int limit = IS_CHERRYVIEW(dev_priv) ? 95 : 90;
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005699
Jesse Barnes30a970c2013-11-04 13:48:12 -08005700 /*
5701 * Really only a few cases to deal with, as only 4 CDclks are supported:
5702 * 200MHz
5703 * 267MHz
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005704 * 320/333MHz (depends on HPLL freq)
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005705 * 400MHz (VLV only)
5706 * So we check to see whether we're above 90% (VLV) or 95% (CHV)
5707 * of the lower bin and adjust if needed.
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005708 *
5709 * We seem to get an unstable or solid color picture at 200MHz.
5710 * Not sure what's wrong. For now use 200MHz only when all pipes
5711 * are off.
Jesse Barnes30a970c2013-11-04 13:48:12 -08005712 */
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005713 if (!IS_CHERRYVIEW(dev_priv) &&
5714 max_pixclk > freq_320*limit/100)
Ville Syrjälädfcab172014-06-13 13:37:47 +03005715 return 400000;
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005716 else if (max_pixclk > 266667*limit/100)
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005717 return freq_320;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005718 else if (max_pixclk > 0)
Ville Syrjälädfcab172014-06-13 13:37:47 +03005719 return 266667;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005720 else
5721 return 200000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005722}
5723
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305724static int broxton_calc_cdclk(struct drm_i915_private *dev_priv,
5725 int max_pixclk)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005726{
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305727 /*
5728 * FIXME:
5729 * - remove the guardband, it's not needed on BXT
5730 * - set 19.2MHz bypass frequency if there are no active pipes
5731 */
5732 if (max_pixclk > 576000*9/10)
5733 return 624000;
5734 else if (max_pixclk > 384000*9/10)
5735 return 576000;
5736 else if (max_pixclk > 288000*9/10)
5737 return 384000;
5738 else if (max_pixclk > 144000*9/10)
5739 return 288000;
5740 else
5741 return 144000;
5742}
5743
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03005744/* Compute the max pixel clock for new configuration. Uses atomic state if
5745 * that's non-NULL, look at current state otherwise. */
5746static int intel_mode_max_pixclk(struct drm_device *dev,
5747 struct drm_atomic_state *state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005748{
Jesse Barnes30a970c2013-11-04 13:48:12 -08005749 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005750 struct intel_crtc_state *crtc_state;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005751 int max_pixclk = 0;
5752
Damien Lespiaud3fcc802014-05-13 23:32:22 +01005753 for_each_intel_crtc(dev, intel_crtc) {
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03005754 if (state)
5755 crtc_state =
5756 intel_atomic_get_crtc_state(state, intel_crtc);
5757 else
5758 crtc_state = intel_crtc->config;
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005759 if (IS_ERR(crtc_state))
5760 return PTR_ERR(crtc_state);
5761
5762 if (!crtc_state->base.enable)
5763 continue;
5764
5765 max_pixclk = max(max_pixclk,
5766 crtc_state->base.adjusted_mode.crtc_clock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005767 }
5768
5769 return max_pixclk;
5770}
5771
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +03005772static int valleyview_modeset_global_pipes(struct drm_atomic_state *state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005773{
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005774 struct drm_i915_private *dev_priv = to_i915(state->dev);
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +03005775 struct drm_crtc *crtc;
5776 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03005777 int max_pixclk = intel_mode_max_pixclk(state->dev, state);
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +03005778 int cdclk, i;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005779
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005780 if (max_pixclk < 0)
5781 return max_pixclk;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005782
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305783 if (IS_VALLEYVIEW(dev_priv))
5784 cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
5785 else
5786 cdclk = broxton_calc_cdclk(dev_priv, max_pixclk);
5787
5788 if (cdclk == dev_priv->cdclk_freq)
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005789 return 0;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005790
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +03005791 /* add all active pipes to the state */
5792 for_each_crtc(state->dev, crtc) {
5793 if (!crtc->state->enable)
5794 continue;
5795
5796 crtc_state = drm_atomic_get_crtc_state(state, crtc);
5797 if (IS_ERR(crtc_state))
5798 return PTR_ERR(crtc_state);
5799 }
5800
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02005801 /* disable/enable all currently active pipes while we change cdclk */
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +03005802 for_each_crtc_in_state(state, crtc, crtc_state, i)
5803 if (crtc_state->enable)
5804 crtc_state->mode_changed = true;
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005805
5806 return 0;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005807}
5808
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02005809static void vlv_program_pfi_credits(struct drm_i915_private *dev_priv)
5810{
5811 unsigned int credits, default_credits;
5812
5813 if (IS_CHERRYVIEW(dev_priv))
5814 default_credits = PFI_CREDIT(12);
5815 else
5816 default_credits = PFI_CREDIT(8);
5817
Vandana Kannan164dfd22014-11-24 13:37:41 +05305818 if (DIV_ROUND_CLOSEST(dev_priv->cdclk_freq, 1000) >= dev_priv->rps.cz_freq) {
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02005819 /* CHV suggested value is 31 or 63 */
5820 if (IS_CHERRYVIEW(dev_priv))
5821 credits = PFI_CREDIT_31;
5822 else
5823 credits = PFI_CREDIT(15);
5824 } else {
5825 credits = default_credits;
5826 }
5827
5828 /*
5829 * WA - write default credits before re-programming
5830 * FIXME: should we also set the resend bit here?
5831 */
5832 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
5833 default_credits);
5834
5835 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
5836 credits | PFI_CREDIT_RESEND);
5837
5838 /*
5839 * FIXME is this guaranteed to clear
5840 * immediately or should we poll for it?
5841 */
5842 WARN_ON(I915_READ(GCI_CONTROL) & PFI_CREDIT_RESEND);
5843}
5844
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03005845static void valleyview_modeset_global_resources(struct drm_atomic_state *old_state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005846{
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03005847 struct drm_device *dev = old_state->dev;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005848 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03005849 int max_pixclk = intel_mode_max_pixclk(dev, NULL);
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005850 int req_cdclk;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005851
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03005852 /* The path in intel_mode_max_pixclk() with a NULL atomic state should
5853 * never fail. */
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005854 if (WARN_ON(max_pixclk < 0))
5855 return;
5856
5857 req_cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005858
Vandana Kannan164dfd22014-11-24 13:37:41 +05305859 if (req_cdclk != dev_priv->cdclk_freq) {
Imre Deak738c05c2014-11-19 16:25:37 +02005860 /*
5861 * FIXME: We can end up here with all power domains off, yet
5862 * with a CDCLK frequency other than the minimum. To account
5863 * for this take the PIPE-A power domain, which covers the HW
5864 * blocks needed for the following programming. This can be
5865 * removed once it's guaranteed that we get here either with
5866 * the minimum CDCLK set, or the required power domains
5867 * enabled.
5868 */
5869 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
5870
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005871 if (IS_CHERRYVIEW(dev))
5872 cherryview_set_cdclk(dev, req_cdclk);
5873 else
5874 valleyview_set_cdclk(dev, req_cdclk);
Imre Deak738c05c2014-11-19 16:25:37 +02005875
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02005876 vlv_program_pfi_credits(dev_priv);
5877
Imre Deak738c05c2014-11-19 16:25:37 +02005878 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005879 }
Jesse Barnes30a970c2013-11-04 13:48:12 -08005880}
5881
Jesse Barnes89b667f2013-04-18 14:51:36 -07005882static void valleyview_crtc_enable(struct drm_crtc *crtc)
5883{
5884 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02005885 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005886 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5887 struct intel_encoder *encoder;
5888 int pipe = intel_crtc->pipe;
Jani Nikula23538ef2013-08-27 15:12:22 +03005889 bool is_dsi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07005890
Matt Roper83d65732015-02-25 13:12:16 -08005891 WARN_ON(!crtc->state->enable);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005892
5893 if (intel_crtc->active)
5894 return;
5895
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005896 is_dsi = intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI);
Shobhit Kumar8525a232014-06-25 12:20:39 +05305897
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005898 if (!is_dsi) {
5899 if (IS_CHERRYVIEW(dev))
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005900 chv_prepare_pll(intel_crtc, intel_crtc->config);
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005901 else
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005902 vlv_prepare_pll(intel_crtc, intel_crtc->config);
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005903 }
Daniel Vetter5b18e572014-04-24 23:55:06 +02005904
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005905 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05305906 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter5b18e572014-04-24 23:55:06 +02005907
5908 intel_set_pipe_timings(intel_crtc);
5909
Ville Syrjäläc14b0482014-10-16 20:52:34 +03005910 if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) {
5911 struct drm_i915_private *dev_priv = dev->dev_private;
5912
5913 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
5914 I915_WRITE(CHV_CANVAS(pipe), 0);
5915 }
5916
Daniel Vetter5b18e572014-04-24 23:55:06 +02005917 i9xx_set_pipeconf(intel_crtc);
5918
Jesse Barnes89b667f2013-04-18 14:51:36 -07005919 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07005920
Daniel Vettera72e4c92014-09-30 10:56:47 +02005921 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005922
Jesse Barnes89b667f2013-04-18 14:51:36 -07005923 for_each_encoder_on_crtc(dev, crtc, encoder)
5924 if (encoder->pre_pll_enable)
5925 encoder->pre_pll_enable(encoder);
5926
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005927 if (!is_dsi) {
5928 if (IS_CHERRYVIEW(dev))
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005929 chv_enable_pll(intel_crtc, intel_crtc->config);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005930 else
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005931 vlv_enable_pll(intel_crtc, intel_crtc->config);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005932 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07005933
5934 for_each_encoder_on_crtc(dev, crtc, encoder)
5935 if (encoder->pre_enable)
5936 encoder->pre_enable(encoder);
5937
Jesse Barnes2dd24552013-04-25 12:55:01 -07005938 i9xx_pfit_enable(intel_crtc);
5939
Ville Syrjälä63cbb072013-06-04 13:48:59 +03005940 intel_crtc_load_lut(crtc);
5941
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005942 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02005943 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02005944
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03005945 assert_vblank_disabled(crtc);
5946 drm_crtc_vblank_on(crtc);
5947
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005948 for_each_encoder_on_crtc(dev, crtc, encoder)
5949 encoder->enable(encoder);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005950}
5951
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005952static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
5953{
5954 struct drm_device *dev = crtc->base.dev;
5955 struct drm_i915_private *dev_priv = dev->dev_private;
5956
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005957 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
5958 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005959}
5960
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005961static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005962{
5963 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02005964 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08005965 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005966 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08005967 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08005968
Matt Roper83d65732015-02-25 13:12:16 -08005969 WARN_ON(!crtc->state->enable);
Daniel Vetter08a48462012-07-02 11:43:47 +02005970
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005971 if (intel_crtc->active)
5972 return;
5973
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005974 i9xx_set_pll_dividers(intel_crtc);
5975
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005976 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05305977 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter5b18e572014-04-24 23:55:06 +02005978
5979 intel_set_pipe_timings(intel_crtc);
5980
Daniel Vetter5b18e572014-04-24 23:55:06 +02005981 i9xx_set_pipeconf(intel_crtc);
5982
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005983 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01005984
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005985 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005986 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005987
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02005988 for_each_encoder_on_crtc(dev, crtc, encoder)
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02005989 if (encoder->pre_enable)
5990 encoder->pre_enable(encoder);
5991
Daniel Vetterf6736a12013-06-05 13:34:30 +02005992 i9xx_enable_pll(intel_crtc);
5993
Jesse Barnes2dd24552013-04-25 12:55:01 -07005994 i9xx_pfit_enable(intel_crtc);
5995
Ville Syrjälä63cbb072013-06-04 13:48:59 +03005996 intel_crtc_load_lut(crtc);
5997
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005998 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02005999 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02006000
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03006001 assert_vblank_disabled(crtc);
6002 drm_crtc_vblank_on(crtc);
6003
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01006004 for_each_encoder_on_crtc(dev, crtc, encoder)
6005 encoder->enable(encoder);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006006}
6007
Daniel Vetter87476d62013-04-11 16:29:06 +02006008static void i9xx_pfit_disable(struct intel_crtc *crtc)
6009{
6010 struct drm_device *dev = crtc->base.dev;
6011 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02006012
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006013 if (!crtc->config->gmch_pfit.control)
Daniel Vetter328d8e82013-05-08 10:36:31 +02006014 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02006015
6016 assert_pipe_disabled(dev_priv, crtc->pipe);
6017
Daniel Vetter328d8e82013-05-08 10:36:31 +02006018 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
6019 I915_READ(PFIT_CONTROL));
6020 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02006021}
6022
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006023static void i9xx_crtc_disable(struct drm_crtc *crtc)
6024{
6025 struct drm_device *dev = crtc->dev;
6026 struct drm_i915_private *dev_priv = dev->dev_private;
6027 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02006028 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006029 int pipe = intel_crtc->pipe;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02006030
Chris Wilsonf7abfe82010-09-13 14:19:16 +01006031 if (!intel_crtc->active)
6032 return;
6033
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006034 /*
6035 * On gen2 planes are double buffered but the pipe isn't, so we must
6036 * wait for planes to fully turn off before disabling the pipe.
Imre Deak564ed192014-06-13 14:54:21 +03006037 * We also need to wait on all gmch platforms because of the
6038 * self-refresh mode constraint explained above.
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006039 */
Imre Deak564ed192014-06-13 14:54:21 +03006040 intel_wait_for_vblank(dev, pipe);
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006041
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03006042 for_each_encoder_on_crtc(dev, crtc, encoder)
6043 encoder->disable(encoder);
6044
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01006045 drm_crtc_vblank_off(crtc);
6046 assert_vblank_disabled(crtc);
6047
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03006048 intel_disable_pipe(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02006049
Daniel Vetter87476d62013-04-11 16:29:06 +02006050 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02006051
Jesse Barnes89b667f2013-04-18 14:51:36 -07006052 for_each_encoder_on_crtc(dev, crtc, encoder)
6053 if (encoder->post_disable)
6054 encoder->post_disable(encoder);
6055
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006056 if (!intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI)) {
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03006057 if (IS_CHERRYVIEW(dev))
6058 chv_disable_pll(dev_priv, pipe);
6059 else if (IS_VALLEYVIEW(dev))
6060 vlv_disable_pll(dev_priv, pipe);
6061 else
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03006062 i9xx_disable_pll(intel_crtc);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03006063 }
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006064
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006065 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02006066 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006067
Chris Wilsonf7abfe82010-09-13 14:19:16 +01006068 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03006069 intel_update_watermarks(crtc);
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03006070
Daniel Vetterefa96242014-04-24 23:55:02 +02006071 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02006072 intel_fbc_update(dev);
Daniel Vetterefa96242014-04-24 23:55:02 +02006073 mutex_unlock(&dev->struct_mutex);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006074}
6075
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006076static void i9xx_crtc_off(struct drm_crtc *crtc)
6077{
6078}
6079
Borun Fub04c5bd2014-07-12 10:02:27 +05306080/* Master function to enable/disable CRTC and corresponding power wells */
6081void intel_crtc_control(struct drm_crtc *crtc, bool enable)
Chris Wilsoncdd59982010-09-08 16:30:16 +01006082{
Chris Wilsoncdd59982010-09-08 16:30:16 +01006083 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006084 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006085 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006086 enum intel_display_power_domain domain;
6087 unsigned long domains;
Daniel Vetter976f8a22012-07-08 22:34:21 +02006088
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006089 if (enable) {
6090 if (!intel_crtc->active) {
Daniel Vettere1e9fb82014-06-25 22:02:04 +03006091 domains = get_crtc_power_domains(crtc);
6092 for_each_power_domain(domain, domains)
6093 intel_display_power_get(dev_priv, domain);
6094 intel_crtc->enabled_power_domains = domains;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006095
6096 dev_priv->display.crtc_enable(crtc);
Maarten Lankhorstce22dba2015-04-21 17:12:56 +03006097 intel_crtc_enable_planes(crtc);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006098 }
6099 } else {
6100 if (intel_crtc->active) {
Maarten Lankhorstce22dba2015-04-21 17:12:56 +03006101 intel_crtc_disable_planes(crtc);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006102 dev_priv->display.crtc_disable(crtc);
6103
Daniel Vettere1e9fb82014-06-25 22:02:04 +03006104 domains = intel_crtc->enabled_power_domains;
6105 for_each_power_domain(domain, domains)
6106 intel_display_power_put(dev_priv, domain);
6107 intel_crtc->enabled_power_domains = 0;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006108 }
6109 }
Borun Fub04c5bd2014-07-12 10:02:27 +05306110}
6111
6112/**
6113 * Sets the power management mode of the pipe and plane.
6114 */
6115void intel_crtc_update_dpms(struct drm_crtc *crtc)
6116{
6117 struct drm_device *dev = crtc->dev;
6118 struct intel_encoder *intel_encoder;
6119 bool enable = false;
6120
6121 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
6122 enable |= intel_encoder->connectors_active;
6123
6124 intel_crtc_control(crtc, enable);
Ander Conselvan de Oliveira0f63cca2015-04-21 17:13:17 +03006125
6126 crtc->state->active = enable;
Daniel Vetter976f8a22012-07-08 22:34:21 +02006127}
6128
Daniel Vetter976f8a22012-07-08 22:34:21 +02006129static void intel_crtc_disable(struct drm_crtc *crtc)
6130{
6131 struct drm_device *dev = crtc->dev;
6132 struct drm_connector *connector;
6133 struct drm_i915_private *dev_priv = dev->dev_private;
6134
6135 /* crtc should still be enabled when we disable it. */
Matt Roper83d65732015-02-25 13:12:16 -08006136 WARN_ON(!crtc->state->enable);
Daniel Vetter976f8a22012-07-08 22:34:21 +02006137
Maarten Lankhorstce22dba2015-04-21 17:12:56 +03006138 intel_crtc_disable_planes(crtc);
Daniel Vetter976f8a22012-07-08 22:34:21 +02006139 dev_priv->display.crtc_disable(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006140 dev_priv->display.off(crtc);
6141
Matt Roper70a101f2015-04-08 18:56:53 -07006142 drm_plane_helper_disable(crtc->primary);
Daniel Vetter976f8a22012-07-08 22:34:21 +02006143
6144 /* Update computed state. */
6145 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
6146 if (!connector->encoder || !connector->encoder->crtc)
6147 continue;
6148
6149 if (connector->encoder->crtc != crtc)
6150 continue;
6151
6152 connector->dpms = DRM_MODE_DPMS_OFF;
6153 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01006154 }
6155}
6156
Chris Wilsonea5b2132010-08-04 13:50:23 +01006157void intel_encoder_destroy(struct drm_encoder *encoder)
6158{
Chris Wilson4ef69c72010-09-09 15:14:28 +01006159 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01006160
Chris Wilsonea5b2132010-08-04 13:50:23 +01006161 drm_encoder_cleanup(encoder);
6162 kfree(intel_encoder);
6163}
6164
Damien Lespiau92373292013-08-08 22:28:57 +01006165/* Simple dpms helper for encoders with just one connector, no cloning and only
Daniel Vetter5ab432e2012-06-30 08:59:56 +02006166 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
6167 * state of the entire output pipe. */
Damien Lespiau92373292013-08-08 22:28:57 +01006168static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
Daniel Vetter5ab432e2012-06-30 08:59:56 +02006169{
6170 if (mode == DRM_MODE_DPMS_ON) {
6171 encoder->connectors_active = true;
6172
Daniel Vetterb2cabb02012-07-01 22:42:24 +02006173 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02006174 } else {
6175 encoder->connectors_active = false;
6176
Daniel Vetterb2cabb02012-07-01 22:42:24 +02006177 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02006178 }
6179}
6180
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006181/* Cross check the actual hw state with our own modeset state tracking (and it's
6182 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02006183static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006184{
6185 if (connector->get_hw_state(connector)) {
6186 struct intel_encoder *encoder = connector->encoder;
6187 struct drm_crtc *crtc;
6188 bool encoder_enabled;
6189 enum pipe pipe;
6190
6191 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
6192 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03006193 connector->base.name);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006194
Dave Airlie0e32b392014-05-02 14:02:48 +10006195 /* there is no real hw state for MST connectors */
6196 if (connector->mst_port)
6197 return;
6198
Rob Clarke2c719b2014-12-15 13:56:32 -05006199 I915_STATE_WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006200 "wrong connector dpms state\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05006201 I915_STATE_WARN(connector->base.encoder != &encoder->base,
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006202 "active connector not linked to encoder\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006203
Dave Airlie36cd7442014-05-02 13:44:18 +10006204 if (encoder) {
Rob Clarke2c719b2014-12-15 13:56:32 -05006205 I915_STATE_WARN(!encoder->connectors_active,
Dave Airlie36cd7442014-05-02 13:44:18 +10006206 "encoder->connectors_active not set\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006207
Dave Airlie36cd7442014-05-02 13:44:18 +10006208 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
Rob Clarke2c719b2014-12-15 13:56:32 -05006209 I915_STATE_WARN(!encoder_enabled, "encoder not enabled\n");
6210 if (I915_STATE_WARN_ON(!encoder->base.crtc))
Dave Airlie36cd7442014-05-02 13:44:18 +10006211 return;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006212
Dave Airlie36cd7442014-05-02 13:44:18 +10006213 crtc = encoder->base.crtc;
6214
Matt Roper83d65732015-02-25 13:12:16 -08006215 I915_STATE_WARN(!crtc->state->enable,
6216 "crtc not enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05006217 I915_STATE_WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
6218 I915_STATE_WARN(pipe != to_intel_crtc(crtc)->pipe,
Dave Airlie36cd7442014-05-02 13:44:18 +10006219 "encoder active on the wrong pipe\n");
6220 }
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006221 }
6222}
6223
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03006224int intel_connector_init(struct intel_connector *connector)
6225{
6226 struct drm_connector_state *connector_state;
6227
6228 connector_state = kzalloc(sizeof *connector_state, GFP_KERNEL);
6229 if (!connector_state)
6230 return -ENOMEM;
6231
6232 connector->base.state = connector_state;
6233 return 0;
6234}
6235
6236struct intel_connector *intel_connector_alloc(void)
6237{
6238 struct intel_connector *connector;
6239
6240 connector = kzalloc(sizeof *connector, GFP_KERNEL);
6241 if (!connector)
6242 return NULL;
6243
6244 if (intel_connector_init(connector) < 0) {
6245 kfree(connector);
6246 return NULL;
6247 }
6248
6249 return connector;
6250}
6251
Daniel Vetter5ab432e2012-06-30 08:59:56 +02006252/* Even simpler default implementation, if there's really no special case to
6253 * consider. */
6254void intel_connector_dpms(struct drm_connector *connector, int mode)
6255{
Daniel Vetter5ab432e2012-06-30 08:59:56 +02006256 /* All the simple cases only support two dpms states. */
6257 if (mode != DRM_MODE_DPMS_ON)
6258 mode = DRM_MODE_DPMS_OFF;
6259
6260 if (mode == connector->dpms)
6261 return;
6262
6263 connector->dpms = mode;
6264
6265 /* Only need to change hw state when actually enabled */
Chris Wilsonc9976dcf2013-09-29 19:15:07 +01006266 if (connector->encoder)
6267 intel_encoder_dpms(to_intel_encoder(connector->encoder), mode);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006268
Daniel Vetterb9805142012-08-31 17:37:33 +02006269 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02006270}
6271
Daniel Vetterf0947c32012-07-02 13:10:34 +02006272/* Simple connector->get_hw_state implementation for encoders that support only
6273 * one connector and no cloning and hence the encoder state determines the state
6274 * of the connector. */
6275bool intel_connector_get_hw_state(struct intel_connector *connector)
6276{
Daniel Vetter24929352012-07-02 20:28:59 +02006277 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02006278 struct intel_encoder *encoder = connector->encoder;
6279
6280 return encoder->get_hw_state(encoder, &pipe);
6281}
6282
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006283static int pipe_required_fdi_lanes(struct intel_crtc_state *crtc_state)
Ville Syrjäläd272ddf2015-03-11 18:52:31 +02006284{
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006285 if (crtc_state->base.enable && crtc_state->has_pch_encoder)
6286 return crtc_state->fdi_lanes;
Ville Syrjäläd272ddf2015-03-11 18:52:31 +02006287
6288 return 0;
6289}
6290
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006291static int ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006292 struct intel_crtc_state *pipe_config)
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006293{
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006294 struct drm_atomic_state *state = pipe_config->base.state;
6295 struct intel_crtc *other_crtc;
6296 struct intel_crtc_state *other_crtc_state;
6297
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006298 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
6299 pipe_name(pipe), pipe_config->fdi_lanes);
6300 if (pipe_config->fdi_lanes > 4) {
6301 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
6302 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006303 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006304 }
6305
Paulo Zanonibafb6552013-11-02 21:07:44 -07006306 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006307 if (pipe_config->fdi_lanes > 2) {
6308 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
6309 pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006310 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006311 } else {
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006312 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006313 }
6314 }
6315
6316 if (INTEL_INFO(dev)->num_pipes == 2)
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006317 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006318
6319 /* Ivybridge 3 pipe is really complicated */
6320 switch (pipe) {
6321 case PIPE_A:
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006322 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006323 case PIPE_B:
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006324 if (pipe_config->fdi_lanes <= 2)
6325 return 0;
6326
6327 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_C));
6328 other_crtc_state =
6329 intel_atomic_get_crtc_state(state, other_crtc);
6330 if (IS_ERR(other_crtc_state))
6331 return PTR_ERR(other_crtc_state);
6332
6333 if (pipe_required_fdi_lanes(other_crtc_state) > 0) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006334 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
6335 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006336 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006337 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006338 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006339 case PIPE_C:
Ville Syrjälä251cc672015-03-11 18:52:30 +02006340 if (pipe_config->fdi_lanes > 2) {
6341 DRM_DEBUG_KMS("only 2 lanes on pipe %c: required %i lanes\n",
6342 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006343 return -EINVAL;
Ville Syrjälä251cc672015-03-11 18:52:30 +02006344 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006345
6346 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_B));
6347 other_crtc_state =
6348 intel_atomic_get_crtc_state(state, other_crtc);
6349 if (IS_ERR(other_crtc_state))
6350 return PTR_ERR(other_crtc_state);
6351
6352 if (pipe_required_fdi_lanes(other_crtc_state) > 2) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006353 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006354 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006355 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006356 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006357 default:
6358 BUG();
6359 }
6360}
6361
Daniel Vettere29c22c2013-02-21 00:00:16 +01006362#define RETRY 1
6363static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006364 struct intel_crtc_state *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02006365{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006366 struct drm_device *dev = intel_crtc->base.dev;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006367 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006368 int lane, link_bw, fdi_dotclock, ret;
6369 bool needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02006370
Daniel Vettere29c22c2013-02-21 00:00:16 +01006371retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02006372 /* FDI is a binary signal running at ~2.7GHz, encoding
6373 * each output octet as 10 bits. The actual frequency
6374 * is stored as a divider into a 100MHz clock, and the
6375 * mode pixel clock is stored in units of 1KHz.
6376 * Hence the bw of each lane in terms of the mode signal
6377 * is:
6378 */
6379 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
6380
Damien Lespiau241bfc32013-09-25 16:45:37 +01006381 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02006382
Daniel Vetter2bd89a02013-06-01 17:16:19 +02006383 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02006384 pipe_config->pipe_bpp);
6385
6386 pipe_config->fdi_lanes = lane;
6387
Daniel Vetter2bd89a02013-06-01 17:16:19 +02006388 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02006389 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006390
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006391 ret = ironlake_check_fdi_lanes(intel_crtc->base.dev,
6392 intel_crtc->pipe, pipe_config);
6393 if (ret == -EINVAL && pipe_config->pipe_bpp > 6*3) {
Daniel Vettere29c22c2013-02-21 00:00:16 +01006394 pipe_config->pipe_bpp -= 2*3;
6395 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
6396 pipe_config->pipe_bpp);
6397 needs_recompute = true;
6398 pipe_config->bw_constrained = true;
6399
6400 goto retry;
6401 }
6402
6403 if (needs_recompute)
6404 return RETRY;
6405
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006406 return ret;
Daniel Vetter877d48d2013-04-19 11:24:43 +02006407}
6408
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006409static void hsw_compute_ips_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006410 struct intel_crtc_state *pipe_config)
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006411{
Jani Nikulad330a952014-01-21 11:24:25 +02006412 pipe_config->ips_enabled = i915.enable_ips &&
Paulo Zanoni3c4ca582013-05-31 16:33:23 -03006413 hsw_crtc_supports_ips(crtc) &&
Jesse Barnesb6dfdc92013-07-25 10:06:50 -07006414 pipe_config->pipe_bpp <= 24;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006415}
6416
Daniel Vettera43f6e02013-06-07 23:10:32 +02006417static int intel_crtc_compute_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006418 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08006419{
Daniel Vettera43f6e02013-06-07 23:10:32 +02006420 struct drm_device *dev = crtc->base.dev;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02006421 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006422 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Chandra Kondurud03c93d2015-04-09 16:42:46 -07006423 int ret;
Chris Wilson89749352010-09-12 18:25:19 +01006424
Ville Syrjäläad3a4472013-09-04 18:30:04 +03006425 /* FIXME should check pixel clock limits on all platforms */
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006426 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006427 int clock_limit =
6428 dev_priv->display.get_display_clock_speed(dev);
6429
6430 /*
6431 * Enable pixel doubling when the dot clock
6432 * is > 90% of the (display) core speed.
6433 *
Ville Syrjäläb397c962013-09-04 18:30:06 +03006434 * GDG double wide on either pipe,
6435 * otherwise pipe A only.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006436 */
Ville Syrjäläb397c962013-09-04 18:30:06 +03006437 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
Damien Lespiau241bfc32013-09-25 16:45:37 +01006438 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
Ville Syrjäläad3a4472013-09-04 18:30:04 +03006439 clock_limit *= 2;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006440 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03006441 }
6442
Damien Lespiau241bfc32013-09-25 16:45:37 +01006443 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
Daniel Vettere29c22c2013-02-21 00:00:16 +01006444 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08006445 }
Chris Wilson89749352010-09-12 18:25:19 +01006446
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03006447 /*
6448 * Pipe horizontal size must be even in:
6449 * - DVO ganged mode
6450 * - LVDS dual channel mode
6451 * - Double wide pipe
6452 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02006453 if ((intel_pipe_will_have_type(pipe_config, INTEL_OUTPUT_LVDS) &&
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03006454 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
6455 pipe_config->pipe_src_w &= ~1;
6456
Damien Lespiau8693a822013-05-03 18:48:11 +01006457 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
6458 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03006459 */
6460 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
6461 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01006462 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03006463
Damien Lespiauf5adf942013-06-24 18:29:34 +01006464 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02006465 hsw_compute_ips_config(crtc, pipe_config);
6466
Daniel Vetter877d48d2013-04-19 11:24:43 +02006467 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02006468 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02006469
Chandra Kondurud03c93d2015-04-09 16:42:46 -07006470 /* FIXME: remove below call once atomic mode set is place and all crtc
6471 * related checks called from atomic_crtc_check function */
6472 ret = 0;
6473 DRM_DEBUG_KMS("intel_crtc = %p drm_state (pipe_config->base.state) = %p\n",
6474 crtc, pipe_config->base.state);
6475 ret = intel_atomic_setup_scalers(dev, crtc, pipe_config);
6476
6477 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08006478}
6479
Ville Syrjälä1652d192015-03-31 14:12:01 +03006480static int skylake_get_display_clock_speed(struct drm_device *dev)
6481{
6482 struct drm_i915_private *dev_priv = to_i915(dev);
6483 uint32_t lcpll1 = I915_READ(LCPLL1_CTL);
6484 uint32_t cdctl = I915_READ(CDCLK_CTL);
6485 uint32_t linkrate;
6486
6487 if (!(lcpll1 & LCPLL_PLL_ENABLE)) {
6488 WARN(1, "LCPLL1 not enabled\n");
6489 return 24000; /* 24MHz is the cd freq with NSSC ref */
6490 }
6491
6492 if ((cdctl & CDCLK_FREQ_SEL_MASK) == CDCLK_FREQ_540)
6493 return 540000;
6494
6495 linkrate = (I915_READ(DPLL_CTRL1) &
Damien Lespiau71cd8422015-04-30 16:39:17 +01006496 DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0)) >> 1;
Ville Syrjälä1652d192015-03-31 14:12:01 +03006497
Damien Lespiau71cd8422015-04-30 16:39:17 +01006498 if (linkrate == DPLL_CTRL1_LINK_RATE_2160 ||
6499 linkrate == DPLL_CTRL1_LINK_RATE_1080) {
Ville Syrjälä1652d192015-03-31 14:12:01 +03006500 /* vco 8640 */
6501 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6502 case CDCLK_FREQ_450_432:
6503 return 432000;
6504 case CDCLK_FREQ_337_308:
6505 return 308570;
6506 case CDCLK_FREQ_675_617:
6507 return 617140;
6508 default:
6509 WARN(1, "Unknown cd freq selection\n");
6510 }
6511 } else {
6512 /* vco 8100 */
6513 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6514 case CDCLK_FREQ_450_432:
6515 return 450000;
6516 case CDCLK_FREQ_337_308:
6517 return 337500;
6518 case CDCLK_FREQ_675_617:
6519 return 675000;
6520 default:
6521 WARN(1, "Unknown cd freq selection\n");
6522 }
6523 }
6524
6525 /* error case, do as if DPLL0 isn't enabled */
6526 return 24000;
6527}
6528
6529static int broadwell_get_display_clock_speed(struct drm_device *dev)
6530{
6531 struct drm_i915_private *dev_priv = dev->dev_private;
6532 uint32_t lcpll = I915_READ(LCPLL_CTL);
6533 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6534
6535 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6536 return 800000;
6537 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6538 return 450000;
6539 else if (freq == LCPLL_CLK_FREQ_450)
6540 return 450000;
6541 else if (freq == LCPLL_CLK_FREQ_54O_BDW)
6542 return 540000;
6543 else if (freq == LCPLL_CLK_FREQ_337_5_BDW)
6544 return 337500;
6545 else
6546 return 675000;
6547}
6548
6549static int haswell_get_display_clock_speed(struct drm_device *dev)
6550{
6551 struct drm_i915_private *dev_priv = dev->dev_private;
6552 uint32_t lcpll = I915_READ(LCPLL_CTL);
6553 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6554
6555 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6556 return 800000;
6557 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6558 return 450000;
6559 else if (freq == LCPLL_CLK_FREQ_450)
6560 return 450000;
6561 else if (IS_HSW_ULT(dev))
6562 return 337500;
6563 else
6564 return 540000;
Jesse Barnes79e53942008-11-07 14:24:08 -08006565}
6566
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07006567static int valleyview_get_display_clock_speed(struct drm_device *dev)
6568{
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03006569 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03006570 u32 val;
6571 int divider;
6572
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03006573 if (dev_priv->hpll_freq == 0)
6574 dev_priv->hpll_freq = valleyview_get_vco(dev_priv);
6575
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03006576 mutex_lock(&dev_priv->dpio_lock);
6577 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
6578 mutex_unlock(&dev_priv->dpio_lock);
6579
6580 divider = val & DISPLAY_FREQUENCY_VALUES;
6581
Ville Syrjälä7d007f42014-06-13 13:37:53 +03006582 WARN((val & DISPLAY_FREQUENCY_STATUS) !=
6583 (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
6584 "cdclk change in progress\n");
6585
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03006586 return DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, divider + 1);
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07006587}
6588
Ville Syrjäläb37a6432015-03-31 14:11:54 +03006589static int ilk_get_display_clock_speed(struct drm_device *dev)
6590{
6591 return 450000;
6592}
6593
Jesse Barnese70236a2009-09-21 10:42:27 -07006594static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08006595{
Jesse Barnese70236a2009-09-21 10:42:27 -07006596 return 400000;
6597}
Jesse Barnes79e53942008-11-07 14:24:08 -08006598
Jesse Barnese70236a2009-09-21 10:42:27 -07006599static int i915_get_display_clock_speed(struct drm_device *dev)
6600{
Ville Syrjäläe907f172015-03-31 14:09:47 +03006601 return 333333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006602}
Jesse Barnes79e53942008-11-07 14:24:08 -08006603
Jesse Barnese70236a2009-09-21 10:42:27 -07006604static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
6605{
6606 return 200000;
6607}
Jesse Barnes79e53942008-11-07 14:24:08 -08006608
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006609static int pnv_get_display_clock_speed(struct drm_device *dev)
6610{
6611 u16 gcfgc = 0;
6612
6613 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6614
6615 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6616 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006617 return 266667;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006618 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006619 return 333333;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006620 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006621 return 444444;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006622 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
6623 return 200000;
6624 default:
6625 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
6626 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006627 return 133333;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006628 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006629 return 166667;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006630 }
6631}
6632
Jesse Barnese70236a2009-09-21 10:42:27 -07006633static int i915gm_get_display_clock_speed(struct drm_device *dev)
6634{
6635 u16 gcfgc = 0;
6636
6637 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6638
6639 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Ville Syrjäläe907f172015-03-31 14:09:47 +03006640 return 133333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006641 else {
6642 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6643 case GC_DISPLAY_CLOCK_333_MHZ:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006644 return 333333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006645 default:
6646 case GC_DISPLAY_CLOCK_190_200_MHZ:
6647 return 190000;
6648 }
6649 }
6650}
Jesse Barnes79e53942008-11-07 14:24:08 -08006651
Jesse Barnese70236a2009-09-21 10:42:27 -07006652static int i865_get_display_clock_speed(struct drm_device *dev)
6653{
Ville Syrjäläe907f172015-03-31 14:09:47 +03006654 return 266667;
Jesse Barnese70236a2009-09-21 10:42:27 -07006655}
6656
6657static int i855_get_display_clock_speed(struct drm_device *dev)
6658{
6659 u16 hpllcc = 0;
6660 /* Assume that the hardware is in the high speed state. This
6661 * should be the default.
6662 */
6663 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
6664 case GC_CLOCK_133_200:
6665 case GC_CLOCK_100_200:
6666 return 200000;
6667 case GC_CLOCK_166_250:
6668 return 250000;
6669 case GC_CLOCK_100_133:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006670 return 133333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006671 }
6672
6673 /* Shouldn't happen */
6674 return 0;
6675}
6676
6677static int i830_get_display_clock_speed(struct drm_device *dev)
6678{
Ville Syrjäläe907f172015-03-31 14:09:47 +03006679 return 133333;
Jesse Barnes79e53942008-11-07 14:24:08 -08006680}
6681
Zhenyu Wang2c072452009-06-05 15:38:42 +08006682static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03006683intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08006684{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03006685 while (*num > DATA_LINK_M_N_MASK ||
6686 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08006687 *num >>= 1;
6688 *den >>= 1;
6689 }
6690}
6691
Ville Syrjäläa65851a2013-04-23 15:03:34 +03006692static void compute_m_n(unsigned int m, unsigned int n,
6693 uint32_t *ret_m, uint32_t *ret_n)
6694{
6695 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
6696 *ret_m = div_u64((uint64_t) m * *ret_n, n);
6697 intel_reduce_m_n_ratio(ret_m, ret_n);
6698}
6699
Daniel Vettere69d0bc2012-11-29 15:59:36 +01006700void
6701intel_link_compute_m_n(int bits_per_pixel, int nlanes,
6702 int pixel_clock, int link_clock,
6703 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08006704{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01006705 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03006706
6707 compute_m_n(bits_per_pixel * pixel_clock,
6708 link_clock * nlanes * 8,
6709 &m_n->gmch_m, &m_n->gmch_n);
6710
6711 compute_m_n(pixel_clock, link_clock,
6712 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08006713}
6714
Chris Wilsona7615032011-01-12 17:04:08 +00006715static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
6716{
Jani Nikulad330a952014-01-21 11:24:25 +02006717 if (i915.panel_use_ssc >= 0)
6718 return i915.panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006719 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07006720 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00006721}
6722
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02006723static int i9xx_get_refclk(const struct intel_crtc_state *crtc_state,
6724 int num_connectors)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08006725{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02006726 struct drm_device *dev = crtc_state->base.crtc->dev;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08006727 struct drm_i915_private *dev_priv = dev->dev_private;
6728 int refclk;
6729
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02006730 WARN_ON(!crtc_state->base.state);
6731
Imre Deak5ab7b0b2015-03-06 03:29:25 +02006732 if (IS_VALLEYVIEW(dev) || IS_BROXTON(dev)) {
Daniel Vetter9a0ea492013-09-16 11:29:34 +02006733 refclk = 100000;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02006734 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08006735 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006736 refclk = dev_priv->vbt.lvds_ssc_freq;
6737 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
Jesse Barnesc65d77d2011-12-15 12:30:36 -08006738 } else if (!IS_GEN2(dev)) {
6739 refclk = 96000;
6740 } else {
6741 refclk = 48000;
6742 }
6743
6744 return refclk;
6745}
6746
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006747static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08006748{
Daniel Vetter7df00d72013-05-21 21:54:55 +02006749 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006750}
Daniel Vetterf47709a2013-03-28 10:42:02 +01006751
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006752static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
6753{
6754 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08006755}
6756
Daniel Vetterf47709a2013-03-28 10:42:02 +01006757static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006758 struct intel_crtc_state *crtc_state,
Jesse Barnesa7516a02011-12-15 12:30:37 -08006759 intel_clock_t *reduced_clock)
6760{
Daniel Vetterf47709a2013-03-28 10:42:02 +01006761 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08006762 u32 fp, fp2 = 0;
6763
6764 if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006765 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08006766 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006767 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08006768 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006769 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08006770 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006771 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08006772 }
6773
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006774 crtc_state->dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08006775
Daniel Vetterf47709a2013-03-28 10:42:02 +01006776 crtc->lowfreq_avail = false;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02006777 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Rodrigo Viviab585de2015-03-24 12:40:09 -07006778 reduced_clock) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006779 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01006780 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08006781 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006782 crtc_state->dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08006783 }
6784}
6785
Chon Ming Lee5e69f972013-09-05 20:41:49 +08006786static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
6787 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07006788{
6789 u32 reg_val;
6790
6791 /*
6792 * PLLB opamp always calibrates to max value of 0x3f, force enable it
6793 * and set it to a reasonable value instead.
6794 */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006795 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07006796 reg_val &= 0xffffff00;
6797 reg_val |= 0x00000030;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006798 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006799
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006800 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006801 reg_val &= 0x8cffffff;
6802 reg_val = 0x8c000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006803 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006804
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006805 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07006806 reg_val &= 0xffffff00;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006807 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006808
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006809 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006810 reg_val &= 0x00ffffff;
6811 reg_val |= 0xb0000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006812 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006813}
6814
Daniel Vetterb5518422013-05-03 11:49:48 +02006815static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
6816 struct intel_link_m_n *m_n)
6817{
6818 struct drm_device *dev = crtc->base.dev;
6819 struct drm_i915_private *dev_priv = dev->dev_private;
6820 int pipe = crtc->pipe;
6821
Daniel Vettere3b95f12013-05-03 11:49:49 +02006822 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
6823 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
6824 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
6825 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02006826}
6827
6828static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -07006829 struct intel_link_m_n *m_n,
6830 struct intel_link_m_n *m2_n2)
Daniel Vetterb5518422013-05-03 11:49:48 +02006831{
6832 struct drm_device *dev = crtc->base.dev;
6833 struct drm_i915_private *dev_priv = dev->dev_private;
6834 int pipe = crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006835 enum transcoder transcoder = crtc->config->cpu_transcoder;
Daniel Vetterb5518422013-05-03 11:49:48 +02006836
6837 if (INTEL_INFO(dev)->gen >= 5) {
6838 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
6839 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
6840 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
6841 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
Vandana Kannanf769cd22014-08-05 07:51:22 -07006842 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
6843 * for gen < 8) and if DRRS is supported (to make sure the
6844 * registers are not unnecessarily accessed).
6845 */
Durgadoss R44395bf2015-02-13 15:33:02 +05306846 if (m2_n2 && (IS_CHERRYVIEW(dev) || INTEL_INFO(dev)->gen < 8) &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006847 crtc->config->has_drrs) {
Vandana Kannanf769cd22014-08-05 07:51:22 -07006848 I915_WRITE(PIPE_DATA_M2(transcoder),
6849 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
6850 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
6851 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
6852 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
6853 }
Daniel Vetterb5518422013-05-03 11:49:48 +02006854 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02006855 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
6856 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
6857 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
6858 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02006859 }
6860}
6861
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05306862void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n)
Daniel Vetter03afc4a2013-04-02 23:42:31 +02006863{
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05306864 struct intel_link_m_n *dp_m_n, *dp_m2_n2 = NULL;
6865
6866 if (m_n == M1_N1) {
6867 dp_m_n = &crtc->config->dp_m_n;
6868 dp_m2_n2 = &crtc->config->dp_m2_n2;
6869 } else if (m_n == M2_N2) {
6870
6871 /*
6872 * M2_N2 registers are not supported. Hence m2_n2 divider value
6873 * needs to be programmed into M1_N1.
6874 */
6875 dp_m_n = &crtc->config->dp_m2_n2;
6876 } else {
6877 DRM_ERROR("Unsupported divider value\n");
6878 return;
6879 }
6880
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006881 if (crtc->config->has_pch_encoder)
6882 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02006883 else
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05306884 intel_cpu_transcoder_set_m_n(crtc, dp_m_n, dp_m2_n2);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02006885}
6886
Ville Syrjäläd288f652014-10-28 13:20:22 +02006887static void vlv_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006888 struct intel_crtc_state *pipe_config)
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006889{
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006890 u32 dpll, dpll_md;
6891
6892 /*
6893 * Enable DPIO clock input. We should never disable the reference
6894 * clock for pipe B, since VGA hotplug / manual detection depends
6895 * on it.
6896 */
6897 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
6898 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
6899 /* We should never disable this, set it here for state tracking */
6900 if (crtc->pipe == PIPE_B)
6901 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
6902 dpll |= DPLL_VCO_ENABLE;
Ville Syrjäläd288f652014-10-28 13:20:22 +02006903 pipe_config->dpll_hw_state.dpll = dpll;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006904
Ville Syrjäläd288f652014-10-28 13:20:22 +02006905 dpll_md = (pipe_config->pixel_multiplier - 1)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006906 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjäläd288f652014-10-28 13:20:22 +02006907 pipe_config->dpll_hw_state.dpll_md = dpll_md;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006908}
6909
Ville Syrjäläd288f652014-10-28 13:20:22 +02006910static void vlv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006911 const struct intel_crtc_state *pipe_config)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006912{
Daniel Vetterf47709a2013-03-28 10:42:02 +01006913 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006914 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01006915 int pipe = crtc->pipe;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006916 u32 mdiv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006917 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006918 u32 coreclk, reg_val;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006919
Daniel Vetter09153002012-12-12 14:06:44 +01006920 mutex_lock(&dev_priv->dpio_lock);
6921
Ville Syrjäläd288f652014-10-28 13:20:22 +02006922 bestn = pipe_config->dpll.n;
6923 bestm1 = pipe_config->dpll.m1;
6924 bestm2 = pipe_config->dpll.m2;
6925 bestp1 = pipe_config->dpll.p1;
6926 bestp2 = pipe_config->dpll.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006927
Jesse Barnes89b667f2013-04-18 14:51:36 -07006928 /* See eDP HDMI DPIO driver vbios notes doc */
6929
6930 /* PLL B needs special handling */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006931 if (pipe == PIPE_B)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08006932 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006933
6934 /* Set up Tx target for periodic Rcomp update */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006935 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006936
6937 /* Disable target IRef on PLL */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006938 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07006939 reg_val &= 0x00ffffff;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006940 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006941
6942 /* Disable fast lock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006943 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006944
6945 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006946 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
6947 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
6948 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006949 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07006950
6951 /*
6952 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
6953 * but we don't support that).
6954 * Note: don't use the DAC post divider as it seems unstable.
6955 */
6956 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006957 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006958
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006959 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006960 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006961
Jesse Barnes89b667f2013-04-18 14:51:36 -07006962 /* Set HBR and RBR LPF coefficients */
Ville Syrjäläd288f652014-10-28 13:20:22 +02006963 if (pipe_config->port_clock == 162000 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006964 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG) ||
6965 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006966 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Ville Syrjälä885b0122013-07-05 19:21:38 +03006967 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006968 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006969 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006970 0x00d0000f);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006971
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02006972 if (pipe_config->has_dp_encoder) {
Jesse Barnes89b667f2013-04-18 14:51:36 -07006973 /* Use SSC source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006974 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006975 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006976 0x0df40000);
6977 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006978 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006979 0x0df70000);
6980 } else { /* HDMI or VGA */
6981 /* Use bend source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006982 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006983 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006984 0x0df70000);
6985 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006986 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006987 0x0df40000);
6988 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006989
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006990 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07006991 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006992 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
6993 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
Jesse Barnes89b667f2013-04-18 14:51:36 -07006994 coreclk |= 0x01000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006995 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006996
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006997 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
Daniel Vetter09153002012-12-12 14:06:44 +01006998 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006999}
7000
Ville Syrjäläd288f652014-10-28 13:20:22 +02007001static void chv_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007002 struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007003{
Ville Syrjäläd288f652014-10-28 13:20:22 +02007004 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLOCK_CHV |
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007005 DPLL_REFA_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
7006 DPLL_VCO_ENABLE;
7007 if (crtc->pipe != PIPE_A)
Ville Syrjäläd288f652014-10-28 13:20:22 +02007008 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007009
Ville Syrjäläd288f652014-10-28 13:20:22 +02007010 pipe_config->dpll_hw_state.dpll_md =
7011 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007012}
7013
Ville Syrjäläd288f652014-10-28 13:20:22 +02007014static void chv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007015 const struct intel_crtc_state *pipe_config)
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007016{
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007017 struct drm_device *dev = crtc->base.dev;
7018 struct drm_i915_private *dev_priv = dev->dev_private;
7019 int pipe = crtc->pipe;
7020 int dpll_reg = DPLL(crtc->pipe);
7021 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307022 u32 loopfilter, tribuf_calcntr;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007023 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307024 u32 dpio_val;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307025 int vco;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007026
Ville Syrjäläd288f652014-10-28 13:20:22 +02007027 bestn = pipe_config->dpll.n;
7028 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
7029 bestm1 = pipe_config->dpll.m1;
7030 bestm2 = pipe_config->dpll.m2 >> 22;
7031 bestp1 = pipe_config->dpll.p1;
7032 bestp2 = pipe_config->dpll.p2;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307033 vco = pipe_config->dpll.vco;
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307034 dpio_val = 0;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307035 loopfilter = 0;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007036
7037 /*
7038 * Enable Refclk and SSC
7039 */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03007040 I915_WRITE(dpll_reg,
Ville Syrjäläd288f652014-10-28 13:20:22 +02007041 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03007042
7043 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007044
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007045 /* p1 and p2 divider */
7046 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
7047 5 << DPIO_CHV_S1_DIV_SHIFT |
7048 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
7049 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
7050 1 << DPIO_CHV_K_DIV_SHIFT);
7051
7052 /* Feedback post-divider - m2 */
7053 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
7054
7055 /* Feedback refclk divider - n and m1 */
7056 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
7057 DPIO_CHV_M1_DIV_BY_2 |
7058 1 << DPIO_CHV_N_DIV_SHIFT);
7059
7060 /* M2 fraction division */
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307061 if (bestm2_frac)
7062 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007063
7064 /* M2 fraction division enable */
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307065 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
7066 dpio_val &= ~(DPIO_CHV_FEEDFWD_GAIN_MASK | DPIO_CHV_FRAC_DIV_EN);
7067 dpio_val |= (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT);
7068 if (bestm2_frac)
7069 dpio_val |= DPIO_CHV_FRAC_DIV_EN;
7070 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port), dpio_val);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007071
Vijay Purushothamande3a0fd2015-03-05 19:32:06 +05307072 /* Program digital lock detect threshold */
7073 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW9(port));
7074 dpio_val &= ~(DPIO_CHV_INT_LOCK_THRESHOLD_MASK |
7075 DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE);
7076 dpio_val |= (0x5 << DPIO_CHV_INT_LOCK_THRESHOLD_SHIFT);
7077 if (!bestm2_frac)
7078 dpio_val |= DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE;
7079 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW9(port), dpio_val);
7080
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007081 /* Loop filter */
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307082 if (vco == 5400000) {
7083 loopfilter |= (0x3 << DPIO_CHV_PROP_COEFF_SHIFT);
7084 loopfilter |= (0x8 << DPIO_CHV_INT_COEFF_SHIFT);
7085 loopfilter |= (0x1 << DPIO_CHV_GAIN_CTRL_SHIFT);
7086 tribuf_calcntr = 0x9;
7087 } else if (vco <= 6200000) {
7088 loopfilter |= (0x5 << DPIO_CHV_PROP_COEFF_SHIFT);
7089 loopfilter |= (0xB << DPIO_CHV_INT_COEFF_SHIFT);
7090 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7091 tribuf_calcntr = 0x9;
7092 } else if (vco <= 6480000) {
7093 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7094 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7095 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7096 tribuf_calcntr = 0x8;
7097 } else {
7098 /* Not supported. Apply the same limits as in the max case */
7099 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7100 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7101 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7102 tribuf_calcntr = 0;
7103 }
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007104 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
7105
Ville Syrjälä968040b2015-03-11 22:52:08 +02007106 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW8(port));
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307107 dpio_val &= ~DPIO_CHV_TDC_TARGET_CNT_MASK;
7108 dpio_val |= (tribuf_calcntr << DPIO_CHV_TDC_TARGET_CNT_SHIFT);
7109 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW8(port), dpio_val);
7110
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007111 /* AFC Recal */
7112 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
7113 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
7114 DPIO_AFC_RECAL);
7115
7116 mutex_unlock(&dev_priv->dpio_lock);
7117}
7118
Ville Syrjäläd288f652014-10-28 13:20:22 +02007119/**
7120 * vlv_force_pll_on - forcibly enable just the PLL
7121 * @dev_priv: i915 private structure
7122 * @pipe: pipe PLL to enable
7123 * @dpll: PLL configuration
7124 *
7125 * Enable the PLL for @pipe using the supplied @dpll config. To be used
7126 * in cases where we need the PLL enabled even when @pipe is not going to
7127 * be enabled.
7128 */
7129void vlv_force_pll_on(struct drm_device *dev, enum pipe pipe,
7130 const struct dpll *dpll)
7131{
7132 struct intel_crtc *crtc =
7133 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007134 struct intel_crtc_state pipe_config = {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007135 .base.crtc = &crtc->base,
Ville Syrjäläd288f652014-10-28 13:20:22 +02007136 .pixel_multiplier = 1,
7137 .dpll = *dpll,
7138 };
7139
7140 if (IS_CHERRYVIEW(dev)) {
7141 chv_update_pll(crtc, &pipe_config);
7142 chv_prepare_pll(crtc, &pipe_config);
7143 chv_enable_pll(crtc, &pipe_config);
7144 } else {
7145 vlv_update_pll(crtc, &pipe_config);
7146 vlv_prepare_pll(crtc, &pipe_config);
7147 vlv_enable_pll(crtc, &pipe_config);
7148 }
7149}
7150
7151/**
7152 * vlv_force_pll_off - forcibly disable just the PLL
7153 * @dev_priv: i915 private structure
7154 * @pipe: pipe PLL to disable
7155 *
7156 * Disable the PLL for @pipe. To be used in cases where we need
7157 * the PLL enabled even when @pipe is not going to be enabled.
7158 */
7159void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe)
7160{
7161 if (IS_CHERRYVIEW(dev))
7162 chv_disable_pll(to_i915(dev), pipe);
7163 else
7164 vlv_disable_pll(to_i915(dev), pipe);
7165}
7166
Daniel Vetterf47709a2013-03-28 10:42:02 +01007167static void i9xx_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007168 struct intel_crtc_state *crtc_state,
Daniel Vetterf47709a2013-03-28 10:42:02 +01007169 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007170 int num_connectors)
7171{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007172 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007173 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007174 u32 dpll;
7175 bool is_sdvo;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007176 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007177
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007178 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05307179
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007180 is_sdvo = intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO) ||
7181 intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007182
7183 dpll = DPLL_VGA_MODE_DIS;
7184
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007185 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007186 dpll |= DPLLB_MODE_LVDS;
7187 else
7188 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01007189
Daniel Vetteref1b4602013-06-01 17:17:04 +02007190 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007191 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetter198a037f2013-04-19 11:14:37 +02007192 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007193 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02007194
7195 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007196 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007197
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007198 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007199 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007200
7201 /* compute bitmask from p1 value */
7202 if (IS_PINEVIEW(dev))
7203 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
7204 else {
7205 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7206 if (IS_G4X(dev) && reduced_clock)
7207 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
7208 }
7209 switch (clock->p2) {
7210 case 5:
7211 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
7212 break;
7213 case 7:
7214 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
7215 break;
7216 case 10:
7217 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
7218 break;
7219 case 14:
7220 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
7221 break;
7222 }
7223 if (INTEL_INFO(dev)->gen >= 4)
7224 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
7225
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007226 if (crtc_state->sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007227 dpll |= PLL_REF_INPUT_TVCLKINBC;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007228 else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007229 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
7230 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7231 else
7232 dpll |= PLL_REF_INPUT_DREFCLK;
7233
7234 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007235 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02007236
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007237 if (INTEL_INFO(dev)->gen >= 4) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007238 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02007239 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007240 crtc_state->dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007241 }
7242}
7243
Daniel Vetterf47709a2013-03-28 10:42:02 +01007244static void i8xx_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007245 struct intel_crtc_state *crtc_state,
Daniel Vetterf47709a2013-03-28 10:42:02 +01007246 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007247 int num_connectors)
7248{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007249 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007250 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007251 u32 dpll;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007252 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007253
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007254 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05307255
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007256 dpll = DPLL_VGA_MODE_DIS;
7257
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007258 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007259 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7260 } else {
7261 if (clock->p1 == 2)
7262 dpll |= PLL_P1_DIVIDE_BY_TWO;
7263 else
7264 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7265 if (clock->p2 == 4)
7266 dpll |= PLL_P2_DIVIDE_BY_4;
7267 }
7268
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007269 if (!IS_I830(dev) && intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO))
Daniel Vetter4a33e482013-07-06 12:52:05 +02007270 dpll |= DPLL_DVO_2X_MODE;
7271
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007272 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007273 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
7274 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7275 else
7276 dpll |= PLL_REF_INPUT_DREFCLK;
7277
7278 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007279 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007280}
7281
Daniel Vetter8a654f32013-06-01 17:16:22 +02007282static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007283{
7284 struct drm_device *dev = intel_crtc->base.dev;
7285 struct drm_i915_private *dev_priv = dev->dev_private;
7286 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007287 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Daniel Vetter8a654f32013-06-01 17:16:22 +02007288 struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007289 &intel_crtc->config->base.adjusted_mode;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02007290 uint32_t crtc_vtotal, crtc_vblank_end;
7291 int vsyncshift = 0;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007292
7293 /* We need to be careful not to changed the adjusted mode, for otherwise
7294 * the hw state checker will get angry at the mismatch. */
7295 crtc_vtotal = adjusted_mode->crtc_vtotal;
7296 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007297
Ville Syrjälä609aeac2014-03-28 23:29:30 +02007298 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007299 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007300 crtc_vtotal -= 1;
7301 crtc_vblank_end -= 1;
Ville Syrjälä609aeac2014-03-28 23:29:30 +02007302
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007303 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjälä609aeac2014-03-28 23:29:30 +02007304 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
7305 else
7306 vsyncshift = adjusted_mode->crtc_hsync_start -
7307 adjusted_mode->crtc_htotal / 2;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02007308 if (vsyncshift < 0)
7309 vsyncshift += adjusted_mode->crtc_htotal;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007310 }
7311
7312 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007313 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007314
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007315 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007316 (adjusted_mode->crtc_hdisplay - 1) |
7317 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007318 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007319 (adjusted_mode->crtc_hblank_start - 1) |
7320 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007321 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007322 (adjusted_mode->crtc_hsync_start - 1) |
7323 ((adjusted_mode->crtc_hsync_end - 1) << 16));
7324
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007325 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007326 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007327 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007328 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007329 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007330 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007331 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007332 (adjusted_mode->crtc_vsync_start - 1) |
7333 ((adjusted_mode->crtc_vsync_end - 1) << 16));
7334
Paulo Zanonib5e508d2012-10-24 11:34:43 -02007335 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
7336 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
7337 * documented on the DDI_FUNC_CTL register description, EDP Input Select
7338 * bits. */
7339 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
7340 (pipe == PIPE_B || pipe == PIPE_C))
7341 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
7342
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007343 /* pipesrc controls the size that is scaled from, which should
7344 * always be the user's requested size.
7345 */
7346 I915_WRITE(PIPESRC(pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007347 ((intel_crtc->config->pipe_src_w - 1) << 16) |
7348 (intel_crtc->config->pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007349}
7350
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007351static void intel_get_pipe_timings(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007352 struct intel_crtc_state *pipe_config)
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007353{
7354 struct drm_device *dev = crtc->base.dev;
7355 struct drm_i915_private *dev_priv = dev->dev_private;
7356 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
7357 uint32_t tmp;
7358
7359 tmp = I915_READ(HTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007360 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
7361 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007362 tmp = I915_READ(HBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007363 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
7364 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007365 tmp = I915_READ(HSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007366 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
7367 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007368
7369 tmp = I915_READ(VTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007370 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
7371 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007372 tmp = I915_READ(VBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007373 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
7374 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007375 tmp = I915_READ(VSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007376 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
7377 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007378
7379 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007380 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
7381 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
7382 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007383 }
7384
7385 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03007386 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
7387 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
7388
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007389 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
7390 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007391}
7392
Daniel Vetterf6a83282014-02-11 15:28:57 -08007393void intel_mode_from_pipe_config(struct drm_display_mode *mode,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007394 struct intel_crtc_state *pipe_config)
Jesse Barnesbabea612013-06-26 18:57:38 +03007395{
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007396 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
7397 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
7398 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
7399 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03007400
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007401 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
7402 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
7403 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
7404 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03007405
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007406 mode->flags = pipe_config->base.adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03007407
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007408 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
7409 mode->flags |= pipe_config->base.adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03007410}
7411
Daniel Vetter84b046f2013-02-19 18:48:54 +01007412static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
7413{
7414 struct drm_device *dev = intel_crtc->base.dev;
7415 struct drm_i915_private *dev_priv = dev->dev_private;
7416 uint32_t pipeconf;
7417
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02007418 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01007419
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03007420 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
7421 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
7422 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
Daniel Vetter67c72a12013-09-24 11:46:14 +02007423
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007424 if (intel_crtc->config->double_wide)
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03007425 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01007426
Daniel Vetterff9ce462013-04-24 14:57:17 +02007427 /* only g4x and later have fancy bpc/dither controls */
7428 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02007429 /* Bspec claims that we can't use dithering for 30bpp pipes. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007430 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
Daniel Vetterff9ce462013-04-24 14:57:17 +02007431 pipeconf |= PIPECONF_DITHER_EN |
7432 PIPECONF_DITHER_TYPE_SP;
7433
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007434 switch (intel_crtc->config->pipe_bpp) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02007435 case 18:
7436 pipeconf |= PIPECONF_6BPC;
7437 break;
7438 case 24:
7439 pipeconf |= PIPECONF_8BPC;
7440 break;
7441 case 30:
7442 pipeconf |= PIPECONF_10BPC;
7443 break;
7444 default:
7445 /* Case prevented by intel_choose_pipe_bpp_dither. */
7446 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01007447 }
7448 }
7449
7450 if (HAS_PIPE_CXSR(dev)) {
7451 if (intel_crtc->lowfreq_avail) {
7452 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
7453 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
7454 } else {
7455 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01007456 }
7457 }
7458
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007459 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02007460 if (INTEL_INFO(dev)->gen < 4 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007461 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02007462 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
7463 else
7464 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
7465 } else
Daniel Vetter84b046f2013-02-19 18:48:54 +01007466 pipeconf |= PIPECONF_PROGRESSIVE;
7467
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007468 if (IS_VALLEYVIEW(dev) && intel_crtc->config->limited_color_range)
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02007469 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03007470
Daniel Vetter84b046f2013-02-19 18:48:54 +01007471 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
7472 POSTING_READ(PIPECONF(intel_crtc->pipe));
7473}
7474
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007475static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
7476 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08007477{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007478 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08007479 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholtc751ce42010-03-25 11:48:48 -07007480 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07007481 intel_clock_t clock, reduced_clock;
Daniel Vettera16af722013-04-30 14:01:44 +02007482 bool ok, has_reduced_clock = false;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007483 bool is_lvds = false, is_dsi = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01007484 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08007485 const intel_limit_t *limit;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02007486 struct drm_atomic_state *state = crtc_state->base.state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03007487 struct drm_connector *connector;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02007488 struct drm_connector_state *connector_state;
7489 int i;
Jesse Barnes79e53942008-11-07 14:24:08 -08007490
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03007491 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02007492 if (connector_state->crtc != &crtc->base)
7493 continue;
7494
7495 encoder = to_intel_encoder(connector_state->best_encoder);
7496
Chris Wilson5eddb702010-09-11 13:48:45 +01007497 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08007498 case INTEL_OUTPUT_LVDS:
7499 is_lvds = true;
7500 break;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007501 case INTEL_OUTPUT_DSI:
7502 is_dsi = true;
7503 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007504 default:
7505 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08007506 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05007507
Eric Anholtc751ce42010-03-25 11:48:48 -07007508 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08007509 }
7510
Jani Nikulaf2335332013-09-13 11:03:09 +03007511 if (is_dsi)
Daniel Vetter5b18e572014-04-24 23:55:06 +02007512 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007513
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007514 if (!crtc_state->clock_set) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007515 refclk = i9xx_get_refclk(crtc_state, num_connectors);
Jani Nikulaf2335332013-09-13 11:03:09 +03007516
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007517 /*
7518 * Returns a set of divisors for the desired target clock with
7519 * the given refclk, or FALSE. The returned values represent
7520 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
7521 * 2) / p1 / p2.
7522 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007523 limit = intel_limit(crtc_state, refclk);
7524 ok = dev_priv->display.find_dpll(limit, crtc_state,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007525 crtc_state->port_clock,
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007526 refclk, NULL, &clock);
Jani Nikulaf2335332013-09-13 11:03:09 +03007527 if (!ok) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007528 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7529 return -EINVAL;
7530 }
Eric Anholtf564048e2011-03-30 13:01:02 -07007531
Jani Nikulaf2335332013-09-13 11:03:09 +03007532 if (is_lvds && dev_priv->lvds_downclock_avail) {
7533 /*
7534 * Ensure we match the reduced clock's P to the target
7535 * clock. If the clocks don't match, we can't switch
7536 * the display clock by using the FP0/FP1. In such case
7537 * we will disable the LVDS downclock feature.
7538 */
7539 has_reduced_clock =
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007540 dev_priv->display.find_dpll(limit, crtc_state,
Jani Nikulaf2335332013-09-13 11:03:09 +03007541 dev_priv->lvds_downclock,
7542 refclk, &clock,
7543 &reduced_clock);
7544 }
7545 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007546 crtc_state->dpll.n = clock.n;
7547 crtc_state->dpll.m1 = clock.m1;
7548 crtc_state->dpll.m2 = clock.m2;
7549 crtc_state->dpll.p1 = clock.p1;
7550 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01007551 }
Eric Anholtf564048e2011-03-30 13:01:02 -07007552
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007553 if (IS_GEN2(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007554 i8xx_update_pll(crtc, crtc_state,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05307555 has_reduced_clock ? &reduced_clock : NULL,
7556 num_connectors);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007557 } else if (IS_CHERRYVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007558 chv_update_pll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007559 } else if (IS_VALLEYVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007560 vlv_update_pll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007561 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007562 i9xx_update_pll(crtc, crtc_state,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007563 has_reduced_clock ? &reduced_clock : NULL,
Robin Schroereba905b2014-05-18 02:24:50 +02007564 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007565 }
Eric Anholtf564048e2011-03-30 13:01:02 -07007566
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007567 return 0;
Eric Anholtf564048e2011-03-30 13:01:02 -07007568}
7569
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007570static void i9xx_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007571 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007572{
7573 struct drm_device *dev = crtc->base.dev;
7574 struct drm_i915_private *dev_priv = dev->dev_private;
7575 uint32_t tmp;
7576
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02007577 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
7578 return;
7579
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007580 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02007581 if (!(tmp & PFIT_ENABLE))
7582 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007583
Daniel Vetter06922822013-07-11 13:35:40 +02007584 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007585 if (INTEL_INFO(dev)->gen < 4) {
7586 if (crtc->pipe != PIPE_B)
7587 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007588 } else {
7589 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
7590 return;
7591 }
7592
Daniel Vetter06922822013-07-11 13:35:40 +02007593 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007594 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
7595 if (INTEL_INFO(dev)->gen < 5)
7596 pipe_config->gmch_pfit.lvds_border_bits =
7597 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
7598}
7599
Jesse Barnesacbec812013-09-20 11:29:32 -07007600static void vlv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007601 struct intel_crtc_state *pipe_config)
Jesse Barnesacbec812013-09-20 11:29:32 -07007602{
7603 struct drm_device *dev = crtc->base.dev;
7604 struct drm_i915_private *dev_priv = dev->dev_private;
7605 int pipe = pipe_config->cpu_transcoder;
7606 intel_clock_t clock;
7607 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07007608 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07007609
Shobhit Kumarf573de52014-07-30 20:32:37 +05307610 /* In case of MIPI DPLL will not even be used */
7611 if (!(pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE))
7612 return;
7613
Jesse Barnesacbec812013-09-20 11:29:32 -07007614 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007615 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
Jesse Barnesacbec812013-09-20 11:29:32 -07007616 mutex_unlock(&dev_priv->dpio_lock);
7617
7618 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
7619 clock.m2 = mdiv & DPIO_M2DIV_MASK;
7620 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
7621 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
7622 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
7623
Ville Syrjäläf6466282013-10-14 14:50:31 +03007624 vlv_clock(refclk, &clock);
Jesse Barnesacbec812013-09-20 11:29:32 -07007625
Ville Syrjäläf6466282013-10-14 14:50:31 +03007626 /* clock.dot is the fast clock */
7627 pipe_config->port_clock = clock.dot / 5;
Jesse Barnesacbec812013-09-20 11:29:32 -07007628}
7629
Damien Lespiau5724dbd2015-01-20 12:51:52 +00007630static void
7631i9xx_get_initial_plane_config(struct intel_crtc *crtc,
7632 struct intel_initial_plane_config *plane_config)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007633{
7634 struct drm_device *dev = crtc->base.dev;
7635 struct drm_i915_private *dev_priv = dev->dev_private;
7636 u32 val, base, offset;
7637 int pipe = crtc->pipe, plane = crtc->plane;
7638 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00007639 unsigned int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007640 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00007641 struct intel_framebuffer *intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007642
Damien Lespiau42a7b082015-02-05 19:35:13 +00007643 val = I915_READ(DSPCNTR(plane));
7644 if (!(val & DISPLAY_PLANE_ENABLE))
7645 return;
7646
Damien Lespiaud9806c92015-01-21 14:07:19 +00007647 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00007648 if (!intel_fb) {
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007649 DRM_DEBUG_KMS("failed to alloc fb\n");
7650 return;
7651 }
7652
Damien Lespiau1b842c82015-01-21 13:50:54 +00007653 fb = &intel_fb->base;
7654
Daniel Vetter18c52472015-02-10 17:16:09 +00007655 if (INTEL_INFO(dev)->gen >= 4) {
7656 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00007657 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00007658 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
7659 }
7660 }
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007661
7662 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00007663 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007664 fb->pixel_format = fourcc;
7665 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007666
7667 if (INTEL_INFO(dev)->gen >= 4) {
Damien Lespiau49af4492015-01-20 12:51:44 +00007668 if (plane_config->tiling)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007669 offset = I915_READ(DSPTILEOFF(plane));
7670 else
7671 offset = I915_READ(DSPLINOFF(plane));
7672 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
7673 } else {
7674 base = I915_READ(DSPADDR(plane));
7675 }
7676 plane_config->base = base;
7677
7678 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007679 fb->width = ((val >> 16) & 0xfff) + 1;
7680 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007681
7682 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007683 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007684
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007685 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00007686 fb->pixel_format,
7687 fb->modifier[0]);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007688
Daniel Vetterf37b5c22015-02-10 23:12:27 +01007689 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007690
Damien Lespiau2844a922015-01-20 12:51:48 +00007691 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
7692 pipe_name(pipe), plane, fb->width, fb->height,
7693 fb->bits_per_pixel, base, fb->pitches[0],
7694 plane_config->size);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007695
Damien Lespiau2d140302015-02-05 17:22:18 +00007696 plane_config->fb = intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007697}
7698
Ville Syrjälä70b23a92014-04-09 13:28:22 +03007699static void chv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007700 struct intel_crtc_state *pipe_config)
Ville Syrjälä70b23a92014-04-09 13:28:22 +03007701{
7702 struct drm_device *dev = crtc->base.dev;
7703 struct drm_i915_private *dev_priv = dev->dev_private;
7704 int pipe = pipe_config->cpu_transcoder;
7705 enum dpio_channel port = vlv_pipe_to_channel(pipe);
7706 intel_clock_t clock;
7707 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2;
7708 int refclk = 100000;
7709
7710 mutex_lock(&dev_priv->dpio_lock);
7711 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
7712 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
7713 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
7714 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
7715 mutex_unlock(&dev_priv->dpio_lock);
7716
7717 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
7718 clock.m2 = ((pll_dw0 & 0xff) << 22) | (pll_dw2 & 0x3fffff);
7719 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
7720 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
7721 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
7722
7723 chv_clock(refclk, &clock);
7724
7725 /* clock.dot is the fast clock */
7726 pipe_config->port_clock = clock.dot / 5;
7727}
7728
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007729static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007730 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007731{
7732 struct drm_device *dev = crtc->base.dev;
7733 struct drm_i915_private *dev_priv = dev->dev_private;
7734 uint32_t tmp;
7735
Daniel Vetterf458ebb2014-09-30 10:56:39 +02007736 if (!intel_display_power_is_enabled(dev_priv,
7737 POWER_DOMAIN_PIPE(crtc->pipe)))
Imre Deakb5482bd2014-03-05 16:20:55 +02007738 return false;
7739
Daniel Vettere143a212013-07-04 12:01:15 +02007740 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007741 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02007742
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007743 tmp = I915_READ(PIPECONF(crtc->pipe));
7744 if (!(tmp & PIPECONF_ENABLE))
7745 return false;
7746
Ville Syrjälä42571ae2013-09-06 23:29:00 +03007747 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
7748 switch (tmp & PIPECONF_BPC_MASK) {
7749 case PIPECONF_6BPC:
7750 pipe_config->pipe_bpp = 18;
7751 break;
7752 case PIPECONF_8BPC:
7753 pipe_config->pipe_bpp = 24;
7754 break;
7755 case PIPECONF_10BPC:
7756 pipe_config->pipe_bpp = 30;
7757 break;
7758 default:
7759 break;
7760 }
7761 }
7762
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02007763 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
7764 pipe_config->limited_color_range = true;
7765
Ville Syrjälä282740f2013-09-04 18:30:03 +03007766 if (INTEL_INFO(dev)->gen < 4)
7767 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
7768
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007769 intel_get_pipe_timings(crtc, pipe_config);
7770
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007771 i9xx_get_pfit_config(crtc, pipe_config);
7772
Daniel Vetter6c49f242013-06-06 12:45:25 +02007773 if (INTEL_INFO(dev)->gen >= 4) {
7774 tmp = I915_READ(DPLL_MD(crtc->pipe));
7775 pipe_config->pixel_multiplier =
7776 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
7777 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02007778 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02007779 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
7780 tmp = I915_READ(DPLL(crtc->pipe));
7781 pipe_config->pixel_multiplier =
7782 ((tmp & SDVO_MULTIPLIER_MASK)
7783 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
7784 } else {
7785 /* Note that on i915G/GM the pixel multiplier is in the sdvo
7786 * port and will be fixed up in the encoder->get_config
7787 * function. */
7788 pipe_config->pixel_multiplier = 1;
7789 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02007790 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
7791 if (!IS_VALLEYVIEW(dev)) {
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03007792 /*
7793 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
7794 * on 830. Filter it out here so that we don't
7795 * report errors due to that.
7796 */
7797 if (IS_I830(dev))
7798 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
7799
Daniel Vetter8bcc2792013-06-05 13:34:28 +02007800 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
7801 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03007802 } else {
7803 /* Mask out read-only status bits. */
7804 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
7805 DPLL_PORTC_READY_MASK |
7806 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02007807 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02007808
Ville Syrjälä70b23a92014-04-09 13:28:22 +03007809 if (IS_CHERRYVIEW(dev))
7810 chv_crtc_clock_get(crtc, pipe_config);
7811 else if (IS_VALLEYVIEW(dev))
Jesse Barnesacbec812013-09-20 11:29:32 -07007812 vlv_crtc_clock_get(crtc, pipe_config);
7813 else
7814 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03007815
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007816 return true;
7817}
7818
Paulo Zanonidde86e22012-12-01 12:04:25 -02007819static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07007820{
7821 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007822 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007823 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007824 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07007825 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07007826 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07007827 bool has_ck505 = false;
7828 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007829
7830 /* We need to take the global config into account */
Damien Lespiaub2784e12014-08-05 11:29:37 +01007831 for_each_intel_encoder(dev, encoder) {
Keith Packard199e5d72011-09-22 12:01:57 -07007832 switch (encoder->type) {
7833 case INTEL_OUTPUT_LVDS:
7834 has_panel = true;
7835 has_lvds = true;
7836 break;
7837 case INTEL_OUTPUT_EDP:
7838 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03007839 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07007840 has_cpu_edp = true;
7841 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007842 default:
7843 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007844 }
7845 }
7846
Keith Packard99eb6a02011-09-26 14:29:12 -07007847 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03007848 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07007849 can_ssc = has_ck505;
7850 } else {
7851 has_ck505 = false;
7852 can_ssc = true;
7853 }
7854
Imre Deak2de69052013-05-08 13:14:04 +03007855 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
7856 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07007857
7858 /* Ironlake: try to setup display ref clock before DPLL
7859 * enabling. This is only under driver's control after
7860 * PCH B stepping, previous chipset stepping should be
7861 * ignoring this setting.
7862 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007863 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07007864
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007865 /* As we must carefully and slowly disable/enable each source in turn,
7866 * compute the final state we want first and check if we need to
7867 * make any changes at all.
7868 */
7869 final = val;
7870 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07007871 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007872 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07007873 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007874 final |= DREF_NONSPREAD_SOURCE_ENABLE;
7875
7876 final &= ~DREF_SSC_SOURCE_MASK;
7877 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
7878 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007879
Keith Packard199e5d72011-09-22 12:01:57 -07007880 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007881 final |= DREF_SSC_SOURCE_ENABLE;
7882
7883 if (intel_panel_use_ssc(dev_priv) && can_ssc)
7884 final |= DREF_SSC1_ENABLE;
7885
7886 if (has_cpu_edp) {
7887 if (intel_panel_use_ssc(dev_priv) && can_ssc)
7888 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
7889 else
7890 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
7891 } else
7892 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
7893 } else {
7894 final |= DREF_SSC_SOURCE_DISABLE;
7895 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
7896 }
7897
7898 if (final == val)
7899 return;
7900
7901 /* Always enable nonspread source */
7902 val &= ~DREF_NONSPREAD_SOURCE_MASK;
7903
7904 if (has_ck505)
7905 val |= DREF_NONSPREAD_CK505_ENABLE;
7906 else
7907 val |= DREF_NONSPREAD_SOURCE_ENABLE;
7908
7909 if (has_panel) {
7910 val &= ~DREF_SSC_SOURCE_MASK;
7911 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007912
Keith Packard199e5d72011-09-22 12:01:57 -07007913 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07007914 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07007915 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007916 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02007917 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007918 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007919
7920 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007921 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07007922 POSTING_READ(PCH_DREF_CONTROL);
7923 udelay(200);
7924
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007925 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007926
7927 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07007928 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07007929 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07007930 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007931 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Robin Schroereba905b2014-05-18 02:24:50 +02007932 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007933 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07007934 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007935 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007936
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007937 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07007938 POSTING_READ(PCH_DREF_CONTROL);
7939 udelay(200);
7940 } else {
7941 DRM_DEBUG_KMS("Disabling SSC entirely\n");
7942
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007943 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07007944
7945 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007946 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007947
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007948 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07007949 POSTING_READ(PCH_DREF_CONTROL);
7950 udelay(200);
7951
7952 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007953 val &= ~DREF_SSC_SOURCE_MASK;
7954 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007955
7956 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007957 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007958
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007959 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07007960 POSTING_READ(PCH_DREF_CONTROL);
7961 udelay(200);
7962 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007963
7964 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07007965}
7966
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007967static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02007968{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007969 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02007970
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007971 tmp = I915_READ(SOUTH_CHICKEN2);
7972 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
7973 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007974
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007975 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
7976 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
7977 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02007978
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007979 tmp = I915_READ(SOUTH_CHICKEN2);
7980 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
7981 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007982
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007983 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
7984 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
7985 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007986}
7987
7988/* WaMPhyProgramming:hsw */
7989static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
7990{
7991 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02007992
7993 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
7994 tmp &= ~(0xFF << 24);
7995 tmp |= (0x12 << 24);
7996 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
7997
Paulo Zanonidde86e22012-12-01 12:04:25 -02007998 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
7999 tmp |= (1 << 11);
8000 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
8001
8002 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
8003 tmp |= (1 << 11);
8004 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
8005
Paulo Zanonidde86e22012-12-01 12:04:25 -02008006 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
8007 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
8008 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
8009
8010 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
8011 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
8012 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
8013
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008014 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
8015 tmp &= ~(7 << 13);
8016 tmp |= (5 << 13);
8017 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008018
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008019 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
8020 tmp &= ~(7 << 13);
8021 tmp |= (5 << 13);
8022 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008023
8024 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
8025 tmp &= ~0xFF;
8026 tmp |= 0x1C;
8027 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
8028
8029 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
8030 tmp &= ~0xFF;
8031 tmp |= 0x1C;
8032 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
8033
8034 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
8035 tmp &= ~(0xFF << 16);
8036 tmp |= (0x1C << 16);
8037 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
8038
8039 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
8040 tmp &= ~(0xFF << 16);
8041 tmp |= (0x1C << 16);
8042 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
8043
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008044 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
8045 tmp |= (1 << 27);
8046 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008047
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008048 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
8049 tmp |= (1 << 27);
8050 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008051
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008052 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
8053 tmp &= ~(0xF << 28);
8054 tmp |= (4 << 28);
8055 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008056
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008057 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
8058 tmp &= ~(0xF << 28);
8059 tmp |= (4 << 28);
8060 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008061}
8062
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008063/* Implements 3 different sequences from BSpec chapter "Display iCLK
8064 * Programming" based on the parameters passed:
8065 * - Sequence to enable CLKOUT_DP
8066 * - Sequence to enable CLKOUT_DP without spread
8067 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
8068 */
8069static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
8070 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008071{
8072 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008073 uint32_t reg, tmp;
8074
8075 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
8076 with_spread = true;
8077 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
8078 with_fdi, "LP PCH doesn't have FDI\n"))
8079 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008080
8081 mutex_lock(&dev_priv->dpio_lock);
8082
8083 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8084 tmp &= ~SBI_SSCCTL_DISABLE;
8085 tmp |= SBI_SSCCTL_PATHALT;
8086 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8087
8088 udelay(24);
8089
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008090 if (with_spread) {
8091 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8092 tmp &= ~SBI_SSCCTL_PATHALT;
8093 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008094
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008095 if (with_fdi) {
8096 lpt_reset_fdi_mphy(dev_priv);
8097 lpt_program_fdi_mphy(dev_priv);
8098 }
8099 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02008100
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008101 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
8102 SBI_GEN0 : SBI_DBUFF0;
8103 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8104 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8105 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01008106
8107 mutex_unlock(&dev_priv->dpio_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008108}
8109
Paulo Zanoni47701c32013-07-23 11:19:25 -03008110/* Sequence to disable CLKOUT_DP */
8111static void lpt_disable_clkout_dp(struct drm_device *dev)
8112{
8113 struct drm_i915_private *dev_priv = dev->dev_private;
8114 uint32_t reg, tmp;
8115
8116 mutex_lock(&dev_priv->dpio_lock);
8117
8118 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
8119 SBI_GEN0 : SBI_DBUFF0;
8120 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8121 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8122 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
8123
8124 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8125 if (!(tmp & SBI_SSCCTL_DISABLE)) {
8126 if (!(tmp & SBI_SSCCTL_PATHALT)) {
8127 tmp |= SBI_SSCCTL_PATHALT;
8128 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8129 udelay(32);
8130 }
8131 tmp |= SBI_SSCCTL_DISABLE;
8132 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8133 }
8134
8135 mutex_unlock(&dev_priv->dpio_lock);
8136}
8137
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008138static void lpt_init_pch_refclk(struct drm_device *dev)
8139{
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008140 struct intel_encoder *encoder;
8141 bool has_vga = false;
8142
Damien Lespiaub2784e12014-08-05 11:29:37 +01008143 for_each_intel_encoder(dev, encoder) {
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008144 switch (encoder->type) {
8145 case INTEL_OUTPUT_ANALOG:
8146 has_vga = true;
8147 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008148 default:
8149 break;
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008150 }
8151 }
8152
Paulo Zanoni47701c32013-07-23 11:19:25 -03008153 if (has_vga)
8154 lpt_enable_clkout_dp(dev, true, true);
8155 else
8156 lpt_disable_clkout_dp(dev);
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008157}
8158
Paulo Zanonidde86e22012-12-01 12:04:25 -02008159/*
8160 * Initialize reference clocks when the driver loads
8161 */
8162void intel_init_pch_refclk(struct drm_device *dev)
8163{
8164 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
8165 ironlake_init_pch_refclk(dev);
8166 else if (HAS_PCH_LPT(dev))
8167 lpt_init_pch_refclk(dev);
8168}
8169
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008170static int ironlake_get_refclk(struct intel_crtc_state *crtc_state)
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008171{
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008172 struct drm_device *dev = crtc_state->base.crtc->dev;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008173 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008174 struct drm_atomic_state *state = crtc_state->base.state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008175 struct drm_connector *connector;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008176 struct drm_connector_state *connector_state;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008177 struct intel_encoder *encoder;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008178 int num_connectors = 0, i;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008179 bool is_lvds = false;
8180
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008181 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008182 if (connector_state->crtc != crtc_state->base.crtc)
8183 continue;
8184
8185 encoder = to_intel_encoder(connector_state->best_encoder);
8186
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008187 switch (encoder->type) {
8188 case INTEL_OUTPUT_LVDS:
8189 is_lvds = true;
8190 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008191 default:
8192 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008193 }
8194 num_connectors++;
8195 }
8196
8197 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008198 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03008199 dev_priv->vbt.lvds_ssc_freq);
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008200 return dev_priv->vbt.lvds_ssc_freq;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008201 }
8202
8203 return 120000;
8204}
8205
Daniel Vetter6ff93602013-04-19 11:24:36 +02008206static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03008207{
8208 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
8209 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8210 int pipe = intel_crtc->pipe;
8211 uint32_t val;
8212
Daniel Vetter78114072013-06-13 00:54:57 +02008213 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03008214
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008215 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03008216 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008217 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008218 break;
8219 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008220 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008221 break;
8222 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008223 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008224 break;
8225 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008226 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008227 break;
8228 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03008229 /* Case prevented by intel_choose_pipe_bpp_dither. */
8230 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03008231 }
8232
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008233 if (intel_crtc->config->dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03008234 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8235
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008236 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03008237 val |= PIPECONF_INTERLACED_ILK;
8238 else
8239 val |= PIPECONF_PROGRESSIVE;
8240
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008241 if (intel_crtc->config->limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02008242 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02008243
Paulo Zanonic8203562012-09-12 10:06:29 -03008244 I915_WRITE(PIPECONF(pipe), val);
8245 POSTING_READ(PIPECONF(pipe));
8246}
8247
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008248/*
8249 * Set up the pipe CSC unit.
8250 *
8251 * Currently only full range RGB to limited range RGB conversion
8252 * is supported, but eventually this should handle various
8253 * RGB<->YCbCr scenarios as well.
8254 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01008255static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008256{
8257 struct drm_device *dev = crtc->dev;
8258 struct drm_i915_private *dev_priv = dev->dev_private;
8259 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8260 int pipe = intel_crtc->pipe;
8261 uint16_t coeff = 0x7800; /* 1.0 */
8262
8263 /*
8264 * TODO: Check what kind of values actually come out of the pipe
8265 * with these coeff/postoff values and adjust to get the best
8266 * accuracy. Perhaps we even need to take the bpc value into
8267 * consideration.
8268 */
8269
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008270 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008271 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
8272
8273 /*
8274 * GY/GU and RY/RU should be the other way around according
8275 * to BSpec, but reality doesn't agree. Just set them up in
8276 * a way that results in the correct picture.
8277 */
8278 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
8279 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
8280
8281 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
8282 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
8283
8284 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
8285 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
8286
8287 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
8288 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
8289 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
8290
8291 if (INTEL_INFO(dev)->gen > 6) {
8292 uint16_t postoff = 0;
8293
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008294 if (intel_crtc->config->limited_color_range)
Ville Syrjälä32cf0cb2013-11-28 22:10:38 +02008295 postoff = (16 * (1 << 12) / 255) & 0x1fff;
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008296
8297 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
8298 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
8299 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
8300
8301 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
8302 } else {
8303 uint32_t mode = CSC_MODE_YUV_TO_RGB;
8304
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008305 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008306 mode |= CSC_BLACK_SCREEN_OFFSET;
8307
8308 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
8309 }
8310}
8311
Daniel Vetter6ff93602013-04-19 11:24:36 +02008312static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008313{
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008314 struct drm_device *dev = crtc->dev;
8315 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008316 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008317 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008318 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008319 uint32_t val;
8320
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02008321 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008322
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008323 if (IS_HASWELL(dev) && intel_crtc->config->dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008324 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8325
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008326 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008327 val |= PIPECONF_INTERLACED_ILK;
8328 else
8329 val |= PIPECONF_PROGRESSIVE;
8330
Paulo Zanoni702e7a52012-10-23 18:29:59 -02008331 I915_WRITE(PIPECONF(cpu_transcoder), val);
8332 POSTING_READ(PIPECONF(cpu_transcoder));
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02008333
8334 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
8335 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008336
Satheeshakrishna M3cdf1222014-04-08 15:46:53 +05308337 if (IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008338 val = 0;
8339
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008340 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008341 case 18:
8342 val |= PIPEMISC_DITHER_6_BPC;
8343 break;
8344 case 24:
8345 val |= PIPEMISC_DITHER_8_BPC;
8346 break;
8347 case 30:
8348 val |= PIPEMISC_DITHER_10_BPC;
8349 break;
8350 case 36:
8351 val |= PIPEMISC_DITHER_12_BPC;
8352 break;
8353 default:
8354 /* Case prevented by pipe_config_set_bpp. */
8355 BUG();
8356 }
8357
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008358 if (intel_crtc->config->dither)
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008359 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
8360
8361 I915_WRITE(PIPEMISC(pipe), val);
8362 }
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008363}
8364
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008365static bool ironlake_compute_clocks(struct drm_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008366 struct intel_crtc_state *crtc_state,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008367 intel_clock_t *clock,
8368 bool *has_reduced_clock,
8369 intel_clock_t *reduced_clock)
8370{
8371 struct drm_device *dev = crtc->dev;
8372 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008373 int refclk;
8374 const intel_limit_t *limit;
Daniel Vettera16af722013-04-30 14:01:44 +02008375 bool ret, is_lvds = false;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008376
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02008377 is_lvds = intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008378
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008379 refclk = ironlake_get_refclk(crtc_state);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008380
8381 /*
8382 * Returns a set of divisors for the desired target clock with the given
8383 * refclk, or FALSE. The returned values represent the clock equation:
8384 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
8385 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02008386 limit = intel_limit(crtc_state, refclk);
8387 ret = dev_priv->display.find_dpll(limit, crtc_state,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008388 crtc_state->port_clock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02008389 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008390 if (!ret)
8391 return false;
8392
8393 if (is_lvds && dev_priv->lvds_downclock_avail) {
8394 /*
8395 * Ensure we match the reduced clock's P to the target clock.
8396 * If the clocks don't match, we can't switch the display clock
8397 * by using the FP0/FP1. In such case we will disable the LVDS
8398 * downclock feature.
8399 */
Daniel Vetteree9300b2013-06-03 22:40:22 +02008400 *has_reduced_clock =
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02008401 dev_priv->display.find_dpll(limit, crtc_state,
Daniel Vetteree9300b2013-06-03 22:40:22 +02008402 dev_priv->lvds_downclock,
8403 refclk, clock,
8404 reduced_clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008405 }
8406
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008407 return true;
8408}
8409
Paulo Zanonid4b19312012-11-29 11:29:32 -02008410int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
8411{
8412 /*
8413 * Account for spread spectrum to avoid
8414 * oversubscribing the link. Max center spread
8415 * is 2.5%; use 5% for safety's sake.
8416 */
8417 u32 bps = target_clock * bpp * 21 / 20;
Ville Syrjälä619d4d02014-02-27 14:23:14 +02008418 return DIV_ROUND_UP(bps, link_bw * 8);
Paulo Zanonid4b19312012-11-29 11:29:32 -02008419}
8420
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008421static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02008422{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008423 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03008424}
8425
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008426static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008427 struct intel_crtc_state *crtc_state,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008428 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02008429 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008430{
8431 struct drm_crtc *crtc = &intel_crtc->base;
8432 struct drm_device *dev = crtc->dev;
8433 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008434 struct drm_atomic_state *state = crtc_state->base.state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008435 struct drm_connector *connector;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008436 struct drm_connector_state *connector_state;
8437 struct intel_encoder *encoder;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008438 uint32_t dpll;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008439 int factor, num_connectors = 0, i;
Daniel Vetter09ede542013-04-30 14:01:45 +02008440 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008441
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008442 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008443 if (connector_state->crtc != crtc_state->base.crtc)
8444 continue;
8445
8446 encoder = to_intel_encoder(connector_state->best_encoder);
8447
8448 switch (encoder->type) {
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008449 case INTEL_OUTPUT_LVDS:
8450 is_lvds = true;
8451 break;
8452 case INTEL_OUTPUT_SDVO:
8453 case INTEL_OUTPUT_HDMI:
8454 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008455 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008456 default:
8457 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008458 }
8459
8460 num_connectors++;
8461 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008462
Chris Wilsonc1858122010-12-03 21:35:48 +00008463 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07008464 factor = 21;
8465 if (is_lvds) {
8466 if ((intel_panel_use_ssc(dev_priv) &&
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008467 dev_priv->vbt.lvds_ssc_freq == 100000) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02008468 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07008469 factor = 25;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008470 } else if (crtc_state->sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07008471 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00008472
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008473 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02008474 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00008475
Daniel Vetter9a7c7892013-04-04 22:20:34 +02008476 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
8477 *fp2 |= FP_CB_TUNE;
8478
Chris Wilson5eddb702010-09-11 13:48:45 +01008479 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08008480
Eric Anholta07d6782011-03-30 13:01:08 -07008481 if (is_lvds)
8482 dpll |= DPLLB_MODE_LVDS;
8483 else
8484 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02008485
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008486 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02008487 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02008488
8489 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02008490 dpll |= DPLL_SDVO_HIGH_SPEED;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008491 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02008492 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08008493
Eric Anholta07d6782011-03-30 13:01:08 -07008494 /* compute bitmask from p1 value */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008495 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07008496 /* also FPA1 */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008497 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07008498
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008499 switch (crtc_state->dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07008500 case 5:
8501 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
8502 break;
8503 case 7:
8504 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
8505 break;
8506 case 10:
8507 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
8508 break;
8509 case 14:
8510 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
8511 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08008512 }
8513
Daniel Vetterb4c09f32013-04-30 14:01:42 +02008514 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05008515 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08008516 else
8517 dpll |= PLL_REF_INPUT_DREFCLK;
8518
Daniel Vetter959e16d2013-06-05 13:34:21 +02008519 return dpll | DPLL_VCO_ENABLE;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008520}
8521
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008522static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
8523 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08008524{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008525 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08008526 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02008527 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03008528 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01008529 bool is_lvds = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02008530 struct intel_shared_dpll *pll;
Jesse Barnes79e53942008-11-07 14:24:08 -08008531
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03008532 is_lvds = intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS);
Jesse Barnes79e53942008-11-07 14:24:08 -08008533
Paulo Zanoni5dc52982012-10-05 12:05:56 -03008534 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
8535 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
8536
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008537 ok = ironlake_compute_clocks(&crtc->base, crtc_state, &clock,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008538 &has_reduced_clock, &reduced_clock);
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008539 if (!ok && !crtc_state->clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008540 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8541 return -EINVAL;
8542 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01008543 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008544 if (!crtc_state->clock_set) {
8545 crtc_state->dpll.n = clock.n;
8546 crtc_state->dpll.m1 = clock.m1;
8547 crtc_state->dpll.m2 = clock.m2;
8548 crtc_state->dpll.p1 = clock.p1;
8549 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01008550 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008551
Paulo Zanoni5dc52982012-10-05 12:05:56 -03008552 /* 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 +02008553 if (crtc_state->has_pch_encoder) {
8554 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02008555 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008556 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02008557
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008558 dpll = ironlake_compute_dpll(crtc, crtc_state,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02008559 &fp, &reduced_clock,
8560 has_reduced_clock ? &fp2 : NULL);
8561
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008562 crtc_state->dpll_hw_state.dpll = dpll;
8563 crtc_state->dpll_hw_state.fp0 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02008564 if (has_reduced_clock)
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008565 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetter66e985c2013-06-05 13:34:20 +02008566 else
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008567 crtc_state->dpll_hw_state.fp1 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02008568
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008569 pll = intel_get_shared_dpll(crtc, crtc_state);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01008570 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03008571 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008572 pipe_name(crtc->pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07008573 return -EINVAL;
8574 }
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +02008575 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008576
Rodrigo Viviab585de2015-03-24 12:40:09 -07008577 if (is_lvds && has_reduced_clock)
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008578 crtc->lowfreq_avail = true;
Daniel Vetterbcd644e2013-06-05 13:34:22 +02008579 else
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008580 crtc->lowfreq_avail = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02008581
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02008582 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008583}
8584
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008585static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
8586 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02008587{
8588 struct drm_device *dev = crtc->base.dev;
8589 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008590 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02008591
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008592 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
8593 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
8594 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
8595 & ~TU_SIZE_MASK;
8596 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
8597 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
8598 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
8599}
8600
8601static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
8602 enum transcoder transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008603 struct intel_link_m_n *m_n,
8604 struct intel_link_m_n *m2_n2)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008605{
8606 struct drm_device *dev = crtc->base.dev;
8607 struct drm_i915_private *dev_priv = dev->dev_private;
8608 enum pipe pipe = crtc->pipe;
8609
8610 if (INTEL_INFO(dev)->gen >= 5) {
8611 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
8612 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
8613 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
8614 & ~TU_SIZE_MASK;
8615 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
8616 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
8617 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008618 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
8619 * gen < 8) and if DRRS is supported (to make sure the
8620 * registers are not unnecessarily read).
8621 */
8622 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008623 crtc->config->has_drrs) {
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008624 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
8625 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
8626 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
8627 & ~TU_SIZE_MASK;
8628 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
8629 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
8630 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
8631 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008632 } else {
8633 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
8634 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
8635 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
8636 & ~TU_SIZE_MASK;
8637 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
8638 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
8639 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
8640 }
8641}
8642
8643void intel_dp_get_m_n(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008644 struct intel_crtc_state *pipe_config)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008645{
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02008646 if (pipe_config->has_pch_encoder)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008647 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
8648 else
8649 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008650 &pipe_config->dp_m_n,
8651 &pipe_config->dp_m2_n2);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008652}
8653
Daniel Vetter72419202013-04-04 13:28:53 +02008654static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008655 struct intel_crtc_state *pipe_config)
Daniel Vetter72419202013-04-04 13:28:53 +02008656{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008657 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008658 &pipe_config->fdi_m_n, NULL);
Daniel Vetter72419202013-04-04 13:28:53 +02008659}
8660
Jesse Barnesbd2e2442014-11-13 17:51:47 +00008661static void skylake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008662 struct intel_crtc_state *pipe_config)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00008663{
8664 struct drm_device *dev = crtc->base.dev;
8665 struct drm_i915_private *dev_priv = dev->dev_private;
Chandra Kondurua1b22782015-04-07 15:28:45 -07008666 struct intel_crtc_scaler_state *scaler_state = &pipe_config->scaler_state;
8667 uint32_t ps_ctrl = 0;
8668 int id = -1;
8669 int i;
Jesse Barnesbd2e2442014-11-13 17:51:47 +00008670
Chandra Kondurua1b22782015-04-07 15:28:45 -07008671 /* find scaler attached to this pipe */
8672 for (i = 0; i < crtc->num_scalers; i++) {
8673 ps_ctrl = I915_READ(SKL_PS_CTRL(crtc->pipe, i));
8674 if (ps_ctrl & PS_SCALER_EN && !(ps_ctrl & PS_PLANE_SEL_MASK)) {
8675 id = i;
8676 pipe_config->pch_pfit.enabled = true;
8677 pipe_config->pch_pfit.pos = I915_READ(SKL_PS_WIN_POS(crtc->pipe, i));
8678 pipe_config->pch_pfit.size = I915_READ(SKL_PS_WIN_SZ(crtc->pipe, i));
8679 break;
8680 }
8681 }
Jesse Barnesbd2e2442014-11-13 17:51:47 +00008682
Chandra Kondurua1b22782015-04-07 15:28:45 -07008683 scaler_state->scaler_id = id;
8684 if (id >= 0) {
8685 scaler_state->scaler_users |= (1 << SKL_CRTC_INDEX);
8686 } else {
8687 scaler_state->scaler_users &= ~(1 << SKL_CRTC_INDEX);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00008688 }
8689}
8690
Damien Lespiau5724dbd2015-01-20 12:51:52 +00008691static void
8692skylake_get_initial_plane_config(struct intel_crtc *crtc,
8693 struct intel_initial_plane_config *plane_config)
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008694{
8695 struct drm_device *dev = crtc->base.dev;
8696 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau40f46282015-02-27 11:15:21 +00008697 u32 val, base, offset, stride_mult, tiling;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008698 int pipe = crtc->pipe;
8699 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00008700 unsigned int aligned_height;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008701 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00008702 struct intel_framebuffer *intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008703
Damien Lespiaud9806c92015-01-21 14:07:19 +00008704 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00008705 if (!intel_fb) {
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008706 DRM_DEBUG_KMS("failed to alloc fb\n");
8707 return;
8708 }
8709
Damien Lespiau1b842c82015-01-21 13:50:54 +00008710 fb = &intel_fb->base;
8711
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008712 val = I915_READ(PLANE_CTL(pipe, 0));
Damien Lespiau42a7b082015-02-05 19:35:13 +00008713 if (!(val & PLANE_CTL_ENABLE))
8714 goto error;
8715
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008716 pixel_format = val & PLANE_CTL_FORMAT_MASK;
8717 fourcc = skl_format_to_fourcc(pixel_format,
8718 val & PLANE_CTL_ORDER_RGBX,
8719 val & PLANE_CTL_ALPHA_MASK);
8720 fb->pixel_format = fourcc;
8721 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
8722
Damien Lespiau40f46282015-02-27 11:15:21 +00008723 tiling = val & PLANE_CTL_TILED_MASK;
8724 switch (tiling) {
8725 case PLANE_CTL_TILED_LINEAR:
8726 fb->modifier[0] = DRM_FORMAT_MOD_NONE;
8727 break;
8728 case PLANE_CTL_TILED_X:
8729 plane_config->tiling = I915_TILING_X;
8730 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
8731 break;
8732 case PLANE_CTL_TILED_Y:
8733 fb->modifier[0] = I915_FORMAT_MOD_Y_TILED;
8734 break;
8735 case PLANE_CTL_TILED_YF:
8736 fb->modifier[0] = I915_FORMAT_MOD_Yf_TILED;
8737 break;
8738 default:
8739 MISSING_CASE(tiling);
8740 goto error;
8741 }
8742
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008743 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
8744 plane_config->base = base;
8745
8746 offset = I915_READ(PLANE_OFFSET(pipe, 0));
8747
8748 val = I915_READ(PLANE_SIZE(pipe, 0));
8749 fb->height = ((val >> 16) & 0xfff) + 1;
8750 fb->width = ((val >> 0) & 0x1fff) + 1;
8751
8752 val = I915_READ(PLANE_STRIDE(pipe, 0));
Damien Lespiau40f46282015-02-27 11:15:21 +00008753 stride_mult = intel_fb_stride_alignment(dev, fb->modifier[0],
8754 fb->pixel_format);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008755 fb->pitches[0] = (val & 0x3ff) * stride_mult;
8756
8757 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00008758 fb->pixel_format,
8759 fb->modifier[0]);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008760
Daniel Vetterf37b5c22015-02-10 23:12:27 +01008761 plane_config->size = fb->pitches[0] * aligned_height;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008762
8763 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
8764 pipe_name(pipe), fb->width, fb->height,
8765 fb->bits_per_pixel, base, fb->pitches[0],
8766 plane_config->size);
8767
Damien Lespiau2d140302015-02-05 17:22:18 +00008768 plane_config->fb = intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008769 return;
8770
8771error:
8772 kfree(fb);
8773}
8774
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008775static void ironlake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008776 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008777{
8778 struct drm_device *dev = crtc->base.dev;
8779 struct drm_i915_private *dev_priv = dev->dev_private;
8780 uint32_t tmp;
8781
8782 tmp = I915_READ(PF_CTL(crtc->pipe));
8783
8784 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01008785 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008786 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
8787 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02008788
8789 /* We currently do not free assignements of panel fitters on
8790 * ivb/hsw (since we don't use the higher upscaling modes which
8791 * differentiates them) so just WARN about this case for now. */
8792 if (IS_GEN7(dev)) {
8793 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
8794 PF_PIPE_SEL_IVB(crtc->pipe));
8795 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008796 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008797}
8798
Damien Lespiau5724dbd2015-01-20 12:51:52 +00008799static void
8800ironlake_get_initial_plane_config(struct intel_crtc *crtc,
8801 struct intel_initial_plane_config *plane_config)
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008802{
8803 struct drm_device *dev = crtc->base.dev;
8804 struct drm_i915_private *dev_priv = dev->dev_private;
8805 u32 val, base, offset;
Damien Lespiauaeee5a42015-01-20 12:51:47 +00008806 int pipe = crtc->pipe;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008807 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00008808 unsigned int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008809 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00008810 struct intel_framebuffer *intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008811
Damien Lespiau42a7b082015-02-05 19:35:13 +00008812 val = I915_READ(DSPCNTR(pipe));
8813 if (!(val & DISPLAY_PLANE_ENABLE))
8814 return;
8815
Damien Lespiaud9806c92015-01-21 14:07:19 +00008816 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00008817 if (!intel_fb) {
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008818 DRM_DEBUG_KMS("failed to alloc fb\n");
8819 return;
8820 }
8821
Damien Lespiau1b842c82015-01-21 13:50:54 +00008822 fb = &intel_fb->base;
8823
Daniel Vetter18c52472015-02-10 17:16:09 +00008824 if (INTEL_INFO(dev)->gen >= 4) {
8825 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00008826 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00008827 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
8828 }
8829 }
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008830
8831 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00008832 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008833 fb->pixel_format = fourcc;
8834 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008835
Damien Lespiauaeee5a42015-01-20 12:51:47 +00008836 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008837 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiauaeee5a42015-01-20 12:51:47 +00008838 offset = I915_READ(DSPOFFSET(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008839 } else {
Damien Lespiau49af4492015-01-20 12:51:44 +00008840 if (plane_config->tiling)
Damien Lespiauaeee5a42015-01-20 12:51:47 +00008841 offset = I915_READ(DSPTILEOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008842 else
Damien Lespiauaeee5a42015-01-20 12:51:47 +00008843 offset = I915_READ(DSPLINOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008844 }
8845 plane_config->base = base;
8846
8847 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008848 fb->width = ((val >> 16) & 0xfff) + 1;
8849 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008850
8851 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008852 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008853
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008854 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00008855 fb->pixel_format,
8856 fb->modifier[0]);
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008857
Daniel Vetterf37b5c22015-02-10 23:12:27 +01008858 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008859
Damien Lespiau2844a922015-01-20 12:51:48 +00008860 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
8861 pipe_name(pipe), fb->width, fb->height,
8862 fb->bits_per_pixel, base, fb->pitches[0],
8863 plane_config->size);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008864
Damien Lespiau2d140302015-02-05 17:22:18 +00008865 plane_config->fb = intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008866}
8867
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008868static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008869 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008870{
8871 struct drm_device *dev = crtc->base.dev;
8872 struct drm_i915_private *dev_priv = dev->dev_private;
8873 uint32_t tmp;
8874
Daniel Vetterf458ebb2014-09-30 10:56:39 +02008875 if (!intel_display_power_is_enabled(dev_priv,
8876 POWER_DOMAIN_PIPE(crtc->pipe)))
Paulo Zanoni930e8c92014-07-04 13:38:34 -03008877 return false;
8878
Daniel Vettere143a212013-07-04 12:01:15 +02008879 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008880 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02008881
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008882 tmp = I915_READ(PIPECONF(crtc->pipe));
8883 if (!(tmp & PIPECONF_ENABLE))
8884 return false;
8885
Ville Syrjälä42571ae2013-09-06 23:29:00 +03008886 switch (tmp & PIPECONF_BPC_MASK) {
8887 case PIPECONF_6BPC:
8888 pipe_config->pipe_bpp = 18;
8889 break;
8890 case PIPECONF_8BPC:
8891 pipe_config->pipe_bpp = 24;
8892 break;
8893 case PIPECONF_10BPC:
8894 pipe_config->pipe_bpp = 30;
8895 break;
8896 case PIPECONF_12BPC:
8897 pipe_config->pipe_bpp = 36;
8898 break;
8899 default:
8900 break;
8901 }
8902
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02008903 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
8904 pipe_config->limited_color_range = true;
8905
Daniel Vetterab9412b2013-05-03 11:49:46 +02008906 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02008907 struct intel_shared_dpll *pll;
8908
Daniel Vetter88adfff2013-03-28 10:42:01 +01008909 pipe_config->has_pch_encoder = true;
8910
Daniel Vetter627eb5a2013-04-29 19:33:42 +02008911 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
8912 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
8913 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02008914
8915 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02008916
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008917 if (HAS_PCH_IBX(dev_priv->dev)) {
Daniel Vetterd94ab062013-07-04 12:01:16 +02008918 pipe_config->shared_dpll =
8919 (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008920 } else {
8921 tmp = I915_READ(PCH_DPLL_SEL);
8922 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
8923 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
8924 else
8925 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
8926 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02008927
8928 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
8929
8930 WARN_ON(!pll->get_hw_state(dev_priv, pll,
8931 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02008932
8933 tmp = pipe_config->dpll_hw_state.dpll;
8934 pipe_config->pixel_multiplier =
8935 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
8936 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03008937
8938 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02008939 } else {
8940 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02008941 }
8942
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008943 intel_get_pipe_timings(crtc, pipe_config);
8944
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008945 ironlake_get_pfit_config(crtc, pipe_config);
8946
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008947 return true;
8948}
8949
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008950static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
8951{
8952 struct drm_device *dev = dev_priv->dev;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008953 struct intel_crtc *crtc;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008954
Damien Lespiaud3fcc802014-05-13 23:32:22 +01008955 for_each_intel_crtc(dev, crtc)
Rob Clarke2c719b2014-12-15 13:56:32 -05008956 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008957 pipe_name(crtc->pipe));
8958
Rob Clarke2c719b2014-12-15 13:56:32 -05008959 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
8960 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
8961 I915_STATE_WARN(I915_READ(WRPLL_CTL1) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
8962 I915_STATE_WARN(I915_READ(WRPLL_CTL2) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
8963 I915_STATE_WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
8964 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008965 "CPU PWM1 enabled\n");
Paulo Zanonic5107b82014-07-04 11:50:30 -03008966 if (IS_HASWELL(dev))
Rob Clarke2c719b2014-12-15 13:56:32 -05008967 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
Paulo Zanonic5107b82014-07-04 11:50:30 -03008968 "CPU PWM2 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05008969 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008970 "PCH PWM1 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05008971 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008972 "Utility pin enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05008973 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008974
Paulo Zanoni9926ada2014-04-01 19:39:47 -03008975 /*
8976 * In theory we can still leave IRQs enabled, as long as only the HPD
8977 * interrupts remain enabled. We used to check for that, but since it's
8978 * gen-specific and since we only disable LCPLL after we fully disable
8979 * the interrupts, the check below should be enough.
8980 */
Rob Clarke2c719b2014-12-15 13:56:32 -05008981 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008982}
8983
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03008984static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
8985{
8986 struct drm_device *dev = dev_priv->dev;
8987
8988 if (IS_HASWELL(dev))
8989 return I915_READ(D_COMP_HSW);
8990 else
8991 return I915_READ(D_COMP_BDW);
8992}
8993
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03008994static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
8995{
8996 struct drm_device *dev = dev_priv->dev;
8997
8998 if (IS_HASWELL(dev)) {
8999 mutex_lock(&dev_priv->rps.hw_lock);
9000 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
9001 val))
Paulo Zanonif475dad2014-07-04 11:59:57 -03009002 DRM_ERROR("Failed to write to D_COMP\n");
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009003 mutex_unlock(&dev_priv->rps.hw_lock);
9004 } else {
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009005 I915_WRITE(D_COMP_BDW, val);
9006 POSTING_READ(D_COMP_BDW);
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009007 }
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009008}
9009
9010/*
9011 * This function implements pieces of two sequences from BSpec:
9012 * - Sequence for display software to disable LCPLL
9013 * - Sequence for display software to allow package C8+
9014 * The steps implemented here are just the steps that actually touch the LCPLL
9015 * register. Callers should take care of disabling all the display engine
9016 * functions, doing the mode unset, fixing interrupts, etc.
9017 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03009018static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
9019 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009020{
9021 uint32_t val;
9022
9023 assert_can_disable_lcpll(dev_priv);
9024
9025 val = I915_READ(LCPLL_CTL);
9026
9027 if (switch_to_fclk) {
9028 val |= LCPLL_CD_SOURCE_FCLK;
9029 I915_WRITE(LCPLL_CTL, val);
9030
9031 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
9032 LCPLL_CD_SOURCE_FCLK_DONE, 1))
9033 DRM_ERROR("Switching to FCLK failed\n");
9034
9035 val = I915_READ(LCPLL_CTL);
9036 }
9037
9038 val |= LCPLL_PLL_DISABLE;
9039 I915_WRITE(LCPLL_CTL, val);
9040 POSTING_READ(LCPLL_CTL);
9041
9042 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
9043 DRM_ERROR("LCPLL still locked\n");
9044
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009045 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009046 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009047 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009048 ndelay(100);
9049
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009050 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
9051 1))
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009052 DRM_ERROR("D_COMP RCOMP still in progress\n");
9053
9054 if (allow_power_down) {
9055 val = I915_READ(LCPLL_CTL);
9056 val |= LCPLL_POWER_DOWN_ALLOW;
9057 I915_WRITE(LCPLL_CTL, val);
9058 POSTING_READ(LCPLL_CTL);
9059 }
9060}
9061
9062/*
9063 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
9064 * source.
9065 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03009066static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009067{
9068 uint32_t val;
9069
9070 val = I915_READ(LCPLL_CTL);
9071
9072 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
9073 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
9074 return;
9075
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03009076 /*
9077 * Make sure we're not on PC8 state before disabling PC8, otherwise
9078 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03009079 */
Mika Kuoppala59bad942015-01-16 11:34:40 +02009080 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Paulo Zanoni215733f2013-08-19 13:18:07 -03009081
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009082 if (val & LCPLL_POWER_DOWN_ALLOW) {
9083 val &= ~LCPLL_POWER_DOWN_ALLOW;
9084 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02009085 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009086 }
9087
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009088 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009089 val |= D_COMP_COMP_FORCE;
9090 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009091 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009092
9093 val = I915_READ(LCPLL_CTL);
9094 val &= ~LCPLL_PLL_DISABLE;
9095 I915_WRITE(LCPLL_CTL, val);
9096
9097 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
9098 DRM_ERROR("LCPLL not locked yet\n");
9099
9100 if (val & LCPLL_CD_SOURCE_FCLK) {
9101 val = I915_READ(LCPLL_CTL);
9102 val &= ~LCPLL_CD_SOURCE_FCLK;
9103 I915_WRITE(LCPLL_CTL, val);
9104
9105 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
9106 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
9107 DRM_ERROR("Switching back to LCPLL failed\n");
9108 }
Paulo Zanoni215733f2013-08-19 13:18:07 -03009109
Mika Kuoppala59bad942015-01-16 11:34:40 +02009110 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009111}
9112
Paulo Zanoni765dab672014-03-07 20:08:18 -03009113/*
9114 * Package states C8 and deeper are really deep PC states that can only be
9115 * reached when all the devices on the system allow it, so even if the graphics
9116 * device allows PC8+, it doesn't mean the system will actually get to these
9117 * states. Our driver only allows PC8+ when going into runtime PM.
9118 *
9119 * The requirements for PC8+ are that all the outputs are disabled, the power
9120 * well is disabled and most interrupts are disabled, and these are also
9121 * requirements for runtime PM. When these conditions are met, we manually do
9122 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
9123 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
9124 * hang the machine.
9125 *
9126 * When we really reach PC8 or deeper states (not just when we allow it) we lose
9127 * the state of some registers, so when we come back from PC8+ we need to
9128 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
9129 * need to take care of the registers kept by RC6. Notice that this happens even
9130 * if we don't put the device in PCI D3 state (which is what currently happens
9131 * because of the runtime PM support).
9132 *
9133 * For more, read "Display Sequences for Package C8" on the hardware
9134 * documentation.
9135 */
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03009136void hsw_enable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03009137{
Paulo Zanonic67a4702013-08-19 13:18:09 -03009138 struct drm_device *dev = dev_priv->dev;
9139 uint32_t val;
9140
Paulo Zanonic67a4702013-08-19 13:18:09 -03009141 DRM_DEBUG_KMS("Enabling package C8+\n");
9142
Paulo Zanonic67a4702013-08-19 13:18:09 -03009143 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
9144 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9145 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
9146 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9147 }
9148
9149 lpt_disable_clkout_dp(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009150 hsw_disable_lcpll(dev_priv, true, true);
9151}
9152
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03009153void hsw_disable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03009154{
9155 struct drm_device *dev = dev_priv->dev;
9156 uint32_t val;
9157
Paulo Zanonic67a4702013-08-19 13:18:09 -03009158 DRM_DEBUG_KMS("Disabling package C8+\n");
9159
9160 hsw_restore_lcpll(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009161 lpt_init_pch_refclk(dev);
9162
9163 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
9164 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9165 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
9166 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9167 }
9168
9169 intel_prepare_ddi(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009170}
9171
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03009172static void broxton_modeset_global_resources(struct drm_atomic_state *old_state)
Vandana Kannanf8437dd12014-11-24 13:37:39 +05309173{
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03009174 struct drm_device *dev = old_state->dev;
Vandana Kannanf8437dd12014-11-24 13:37:39 +05309175 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03009176 int max_pixclk = intel_mode_max_pixclk(dev, NULL);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05309177 int req_cdclk;
9178
9179 /* see the comment in valleyview_modeset_global_resources */
9180 if (WARN_ON(max_pixclk < 0))
9181 return;
9182
9183 req_cdclk = broxton_calc_cdclk(dev_priv, max_pixclk);
9184
9185 if (req_cdclk != dev_priv->cdclk_freq)
9186 broxton_set_cdclk(dev, req_cdclk);
9187}
9188
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009189static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
9190 struct intel_crtc_state *crtc_state)
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03009191{
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009192 if (!intel_ddi_pll_select(crtc, crtc_state))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03009193 return -EINVAL;
Daniel Vetter716c2e52014-06-25 22:02:02 +03009194
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03009195 crtc->lowfreq_avail = false;
Daniel Vetter644cef32014-04-24 23:55:07 +02009196
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02009197 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08009198}
9199
Satheeshakrishna M3760b592014-08-22 09:49:11 +05309200static void bxt_get_ddi_pll(struct drm_i915_private *dev_priv,
9201 enum port port,
9202 struct intel_crtc_state *pipe_config)
9203{
9204 switch (port) {
9205 case PORT_A:
9206 pipe_config->ddi_pll_sel = SKL_DPLL0;
9207 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
9208 break;
9209 case PORT_B:
9210 pipe_config->ddi_pll_sel = SKL_DPLL1;
9211 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
9212 break;
9213 case PORT_C:
9214 pipe_config->ddi_pll_sel = SKL_DPLL2;
9215 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
9216 break;
9217 default:
9218 DRM_ERROR("Incorrect port type\n");
9219 }
9220}
9221
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009222static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
9223 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009224 struct intel_crtc_state *pipe_config)
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009225{
Damien Lespiau3148ade2014-11-21 16:14:56 +00009226 u32 temp, dpll_ctl1;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009227
9228 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
9229 pipe_config->ddi_pll_sel = temp >> (port * 3 + 1);
9230
9231 switch (pipe_config->ddi_pll_sel) {
Damien Lespiau3148ade2014-11-21 16:14:56 +00009232 case SKL_DPLL0:
9233 /*
9234 * On SKL the eDP DPLL (DPLL0 as we don't use SSC) is not part
9235 * of the shared DPLL framework and thus needs to be read out
9236 * separately
9237 */
9238 dpll_ctl1 = I915_READ(DPLL_CTRL1);
9239 pipe_config->dpll_hw_state.ctrl1 = dpll_ctl1 & 0x3f;
9240 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009241 case SKL_DPLL1:
9242 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
9243 break;
9244 case SKL_DPLL2:
9245 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
9246 break;
9247 case SKL_DPLL3:
9248 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
9249 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009250 }
9251}
9252
Damien Lespiau7d2c8172014-07-29 18:06:18 +01009253static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
9254 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009255 struct intel_crtc_state *pipe_config)
Damien Lespiau7d2c8172014-07-29 18:06:18 +01009256{
9257 pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
9258
9259 switch (pipe_config->ddi_pll_sel) {
9260 case PORT_CLK_SEL_WRPLL1:
9261 pipe_config->shared_dpll = DPLL_ID_WRPLL1;
9262 break;
9263 case PORT_CLK_SEL_WRPLL2:
9264 pipe_config->shared_dpll = DPLL_ID_WRPLL2;
9265 break;
9266 }
9267}
9268
Daniel Vetter26804af2014-06-25 22:01:55 +03009269static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009270 struct intel_crtc_state *pipe_config)
Daniel Vetter26804af2014-06-25 22:01:55 +03009271{
9272 struct drm_device *dev = crtc->base.dev;
9273 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterd452c5b2014-07-04 11:27:39 -03009274 struct intel_shared_dpll *pll;
Daniel Vetter26804af2014-06-25 22:01:55 +03009275 enum port port;
9276 uint32_t tmp;
9277
9278 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
9279
9280 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
9281
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009282 if (IS_SKYLAKE(dev))
9283 skylake_get_ddi_pll(dev_priv, port, pipe_config);
Satheeshakrishna M3760b592014-08-22 09:49:11 +05309284 else if (IS_BROXTON(dev))
9285 bxt_get_ddi_pll(dev_priv, port, pipe_config);
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009286 else
9287 haswell_get_ddi_pll(dev_priv, port, pipe_config);
Daniel Vetter9cd86932014-06-25 22:01:57 +03009288
Daniel Vetterd452c5b2014-07-04 11:27:39 -03009289 if (pipe_config->shared_dpll >= 0) {
9290 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
9291
9292 WARN_ON(!pll->get_hw_state(dev_priv, pll,
9293 &pipe_config->dpll_hw_state));
9294 }
9295
Daniel Vetter26804af2014-06-25 22:01:55 +03009296 /*
9297 * Haswell has only FDI/PCH transcoder A. It is which is connected to
9298 * DDI E. So just check whether this pipe is wired to DDI E and whether
9299 * the PCH transcoder is on.
9300 */
Damien Lespiauca370452013-12-03 13:56:24 +00009301 if (INTEL_INFO(dev)->gen < 9 &&
9302 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
Daniel Vetter26804af2014-06-25 22:01:55 +03009303 pipe_config->has_pch_encoder = true;
9304
9305 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
9306 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
9307 FDI_DP_PORT_WIDTH_SHIFT) + 1;
9308
9309 ironlake_get_fdi_m_n_config(crtc, pipe_config);
9310 }
9311}
9312
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009313static bool haswell_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009314 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009315{
9316 struct drm_device *dev = crtc->base.dev;
9317 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009318 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009319 uint32_t tmp;
9320
Daniel Vetterf458ebb2014-09-30 10:56:39 +02009321 if (!intel_display_power_is_enabled(dev_priv,
Imre Deakb5482bd2014-03-05 16:20:55 +02009322 POWER_DOMAIN_PIPE(crtc->pipe)))
9323 return false;
9324
Daniel Vettere143a212013-07-04 12:01:15 +02009325 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009326 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
9327
Daniel Vettereccb1402013-05-22 00:50:22 +02009328 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
9329 if (tmp & TRANS_DDI_FUNC_ENABLE) {
9330 enum pipe trans_edp_pipe;
9331 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
9332 default:
9333 WARN(1, "unknown pipe linked to edp transcoder\n");
9334 case TRANS_DDI_EDP_INPUT_A_ONOFF:
9335 case TRANS_DDI_EDP_INPUT_A_ON:
9336 trans_edp_pipe = PIPE_A;
9337 break;
9338 case TRANS_DDI_EDP_INPUT_B_ONOFF:
9339 trans_edp_pipe = PIPE_B;
9340 break;
9341 case TRANS_DDI_EDP_INPUT_C_ONOFF:
9342 trans_edp_pipe = PIPE_C;
9343 break;
9344 }
9345
9346 if (trans_edp_pipe == crtc->pipe)
9347 pipe_config->cpu_transcoder = TRANSCODER_EDP;
9348 }
9349
Daniel Vetterf458ebb2014-09-30 10:56:39 +02009350 if (!intel_display_power_is_enabled(dev_priv,
Daniel Vettereccb1402013-05-22 00:50:22 +02009351 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -03009352 return false;
9353
Daniel Vettereccb1402013-05-22 00:50:22 +02009354 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009355 if (!(tmp & PIPECONF_ENABLE))
9356 return false;
9357
Daniel Vetter26804af2014-06-25 22:01:55 +03009358 haswell_get_ddi_port_state(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02009359
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009360 intel_get_pipe_timings(crtc, pipe_config);
9361
Chandra Kondurua1b22782015-04-07 15:28:45 -07009362 if (INTEL_INFO(dev)->gen >= 9) {
9363 skl_init_scalers(dev, crtc, pipe_config);
9364 }
9365
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009366 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
Chandra Konduruaf99ced2015-05-11 14:35:47 -07009367
9368 if (INTEL_INFO(dev)->gen >= 9) {
9369 pipe_config->scaler_state.scaler_id = -1;
9370 pipe_config->scaler_state.scaler_users &= ~(1 << SKL_CRTC_INDEX);
9371 }
9372
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009373 if (intel_display_power_is_enabled(dev_priv, pfit_domain)) {
Jesse Barnesff6d9f52015-01-21 17:19:54 -08009374 if (INTEL_INFO(dev)->gen == 9)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009375 skylake_get_pfit_config(crtc, pipe_config);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08009376 else if (INTEL_INFO(dev)->gen < 9)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009377 ironlake_get_pfit_config(crtc, pipe_config);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08009378 else
9379 MISSING_CASE(INTEL_INFO(dev)->gen);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009380 }
Daniel Vetter88adfff2013-03-28 10:42:01 +01009381
Jesse Barnese59150d2014-01-07 13:30:45 -08009382 if (IS_HASWELL(dev))
9383 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
9384 (I915_READ(IPS_CTL) & IPS_ENABLE);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03009385
Clint Taylorebb69c92014-09-30 10:30:22 -07009386 if (pipe_config->cpu_transcoder != TRANSCODER_EDP) {
9387 pipe_config->pixel_multiplier =
9388 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
9389 } else {
9390 pipe_config->pixel_multiplier = 1;
9391 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02009392
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009393 return true;
9394}
9395
Chris Wilson560b85b2010-08-07 11:01:38 +01009396static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
9397{
9398 struct drm_device *dev = crtc->dev;
9399 struct drm_i915_private *dev_priv = dev->dev_private;
9400 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälädc41c152014-08-13 11:57:05 +03009401 uint32_t cntl = 0, size = 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01009402
Ville Syrjälädc41c152014-08-13 11:57:05 +03009403 if (base) {
Matt Roper3dd512f2015-02-27 10:12:00 -08009404 unsigned int width = intel_crtc->base.cursor->state->crtc_w;
9405 unsigned int height = intel_crtc->base.cursor->state->crtc_h;
Ville Syrjälädc41c152014-08-13 11:57:05 +03009406 unsigned int stride = roundup_pow_of_two(width) * 4;
9407
9408 switch (stride) {
9409 default:
9410 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
9411 width, stride);
9412 stride = 256;
9413 /* fallthrough */
9414 case 256:
9415 case 512:
9416 case 1024:
9417 case 2048:
9418 break;
Chris Wilson4b0e3332014-05-30 16:35:26 +03009419 }
9420
Ville Syrjälädc41c152014-08-13 11:57:05 +03009421 cntl |= CURSOR_ENABLE |
9422 CURSOR_GAMMA_ENABLE |
9423 CURSOR_FORMAT_ARGB |
9424 CURSOR_STRIDE(stride);
9425
9426 size = (height << 12) | width;
Chris Wilson4b0e3332014-05-30 16:35:26 +03009427 }
Chris Wilson560b85b2010-08-07 11:01:38 +01009428
Ville Syrjälädc41c152014-08-13 11:57:05 +03009429 if (intel_crtc->cursor_cntl != 0 &&
9430 (intel_crtc->cursor_base != base ||
9431 intel_crtc->cursor_size != size ||
9432 intel_crtc->cursor_cntl != cntl)) {
9433 /* On these chipsets we can only modify the base/size/stride
9434 * whilst the cursor is disabled.
9435 */
9436 I915_WRITE(_CURACNTR, 0);
9437 POSTING_READ(_CURACNTR);
9438 intel_crtc->cursor_cntl = 0;
9439 }
9440
Ville Syrjälä99d1f382014-09-12 20:53:32 +03009441 if (intel_crtc->cursor_base != base) {
Ville Syrjälädc41c152014-08-13 11:57:05 +03009442 I915_WRITE(_CURABASE, base);
Ville Syrjälä99d1f382014-09-12 20:53:32 +03009443 intel_crtc->cursor_base = base;
9444 }
Ville Syrjälädc41c152014-08-13 11:57:05 +03009445
9446 if (intel_crtc->cursor_size != size) {
9447 I915_WRITE(CURSIZE, size);
9448 intel_crtc->cursor_size = size;
9449 }
9450
Chris Wilson4b0e3332014-05-30 16:35:26 +03009451 if (intel_crtc->cursor_cntl != cntl) {
9452 I915_WRITE(_CURACNTR, cntl);
9453 POSTING_READ(_CURACNTR);
9454 intel_crtc->cursor_cntl = cntl;
9455 }
Chris Wilson560b85b2010-08-07 11:01:38 +01009456}
9457
9458static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
9459{
9460 struct drm_device *dev = crtc->dev;
9461 struct drm_i915_private *dev_priv = dev->dev_private;
9462 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9463 int pipe = intel_crtc->pipe;
Chris Wilson4b0e3332014-05-30 16:35:26 +03009464 uint32_t cntl;
Chris Wilson560b85b2010-08-07 11:01:38 +01009465
Chris Wilson4b0e3332014-05-30 16:35:26 +03009466 cntl = 0;
9467 if (base) {
9468 cntl = MCURSOR_GAMMA_ENABLE;
Matt Roper3dd512f2015-02-27 10:12:00 -08009469 switch (intel_crtc->base.cursor->state->crtc_w) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05309470 case 64:
9471 cntl |= CURSOR_MODE_64_ARGB_AX;
9472 break;
9473 case 128:
9474 cntl |= CURSOR_MODE_128_ARGB_AX;
9475 break;
9476 case 256:
9477 cntl |= CURSOR_MODE_256_ARGB_AX;
9478 break;
9479 default:
Matt Roper3dd512f2015-02-27 10:12:00 -08009480 MISSING_CASE(intel_crtc->base.cursor->state->crtc_w);
Sagar Kamble4726e0b2014-03-10 17:06:23 +05309481 return;
Chris Wilson560b85b2010-08-07 11:01:38 +01009482 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03009483 cntl |= pipe << 28; /* Connect to correct pipe */
Ville Syrjälä47bf17a2014-09-12 20:53:33 +03009484
9485 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
9486 cntl |= CURSOR_PIPE_CSC_ENABLE;
Chris Wilson560b85b2010-08-07 11:01:38 +01009487 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03009488
Matt Roper8e7d6882015-01-21 16:35:41 -08009489 if (crtc->cursor->state->rotation == BIT(DRM_ROTATE_180))
Ville Syrjälä4398ad42014-10-23 07:41:34 -07009490 cntl |= CURSOR_ROTATE_180;
9491
Chris Wilson4b0e3332014-05-30 16:35:26 +03009492 if (intel_crtc->cursor_cntl != cntl) {
9493 I915_WRITE(CURCNTR(pipe), cntl);
9494 POSTING_READ(CURCNTR(pipe));
9495 intel_crtc->cursor_cntl = cntl;
9496 }
9497
Jesse Barnes65a21cd2011-10-12 11:10:21 -07009498 /* and commit changes on next vblank */
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03009499 I915_WRITE(CURBASE(pipe), base);
9500 POSTING_READ(CURBASE(pipe));
Ville Syrjälä99d1f382014-09-12 20:53:32 +03009501
9502 intel_crtc->cursor_base = base;
Jesse Barnes65a21cd2011-10-12 11:10:21 -07009503}
9504
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009505/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01009506static void intel_crtc_update_cursor(struct drm_crtc *crtc,
9507 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009508{
9509 struct drm_device *dev = crtc->dev;
9510 struct drm_i915_private *dev_priv = dev->dev_private;
9511 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9512 int pipe = intel_crtc->pipe;
Matt Roper3d7d6512014-06-10 08:28:13 -07009513 int x = crtc->cursor_x;
9514 int y = crtc->cursor_y;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03009515 u32 base = 0, pos = 0;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009516
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03009517 if (on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009518 base = intel_crtc->cursor_addr;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009519
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009520 if (x >= intel_crtc->config->pipe_src_w)
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03009521 base = 0;
9522
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009523 if (y >= intel_crtc->config->pipe_src_h)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009524 base = 0;
9525
9526 if (x < 0) {
Matt Roper3dd512f2015-02-27 10:12:00 -08009527 if (x + intel_crtc->base.cursor->state->crtc_w <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009528 base = 0;
9529
9530 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
9531 x = -x;
9532 }
9533 pos |= x << CURSOR_X_SHIFT;
9534
9535 if (y < 0) {
Matt Roper3dd512f2015-02-27 10:12:00 -08009536 if (y + intel_crtc->base.cursor->state->crtc_h <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009537 base = 0;
9538
9539 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
9540 y = -y;
9541 }
9542 pos |= y << CURSOR_Y_SHIFT;
9543
Chris Wilson4b0e3332014-05-30 16:35:26 +03009544 if (base == 0 && intel_crtc->cursor_base == 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009545 return;
9546
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03009547 I915_WRITE(CURPOS(pipe), pos);
9548
Ville Syrjälä4398ad42014-10-23 07:41:34 -07009549 /* ILK+ do this automagically */
9550 if (HAS_GMCH_DISPLAY(dev) &&
Matt Roper8e7d6882015-01-21 16:35:41 -08009551 crtc->cursor->state->rotation == BIT(DRM_ROTATE_180)) {
Matt Roper3dd512f2015-02-27 10:12:00 -08009552 base += (intel_crtc->base.cursor->state->crtc_h *
9553 intel_crtc->base.cursor->state->crtc_w - 1) * 4;
Ville Syrjälä4398ad42014-10-23 07:41:34 -07009554 }
9555
Ville Syrjälä8ac54662014-08-12 19:39:54 +03009556 if (IS_845G(dev) || IS_I865G(dev))
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03009557 i845_update_cursor(crtc, base);
9558 else
9559 i9xx_update_cursor(crtc, base);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009560}
9561
Ville Syrjälädc41c152014-08-13 11:57:05 +03009562static bool cursor_size_ok(struct drm_device *dev,
9563 uint32_t width, uint32_t height)
9564{
9565 if (width == 0 || height == 0)
9566 return false;
9567
9568 /*
9569 * 845g/865g are special in that they are only limited by
9570 * the width of their cursors, the height is arbitrary up to
9571 * the precision of the register. Everything else requires
9572 * square cursors, limited to a few power-of-two sizes.
9573 */
9574 if (IS_845G(dev) || IS_I865G(dev)) {
9575 if ((width & 63) != 0)
9576 return false;
9577
9578 if (width > (IS_845G(dev) ? 64 : 512))
9579 return false;
9580
9581 if (height > 1023)
9582 return false;
9583 } else {
9584 switch (width | height) {
9585 case 256:
9586 case 128:
9587 if (IS_GEN2(dev))
9588 return false;
9589 case 64:
9590 break;
9591 default:
9592 return false;
9593 }
9594 }
9595
9596 return true;
9597}
9598
Jesse Barnes79e53942008-11-07 14:24:08 -08009599static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01009600 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08009601{
James Simmons72034252010-08-03 01:33:19 +01009602 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08009603 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08009604
James Simmons72034252010-08-03 01:33:19 +01009605 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08009606 intel_crtc->lut_r[i] = red[i] >> 8;
9607 intel_crtc->lut_g[i] = green[i] >> 8;
9608 intel_crtc->lut_b[i] = blue[i] >> 8;
9609 }
9610
9611 intel_crtc_load_lut(crtc);
9612}
9613
Jesse Barnes79e53942008-11-07 14:24:08 -08009614/* VESA 640x480x72Hz mode to set on the pipe */
9615static struct drm_display_mode load_detect_mode = {
9616 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
9617 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
9618};
9619
Daniel Vettera8bb6812014-02-10 18:00:39 +01009620struct drm_framebuffer *
9621__intel_framebuffer_create(struct drm_device *dev,
9622 struct drm_mode_fb_cmd2 *mode_cmd,
9623 struct drm_i915_gem_object *obj)
Chris Wilsond2dff872011-04-19 08:36:26 +01009624{
9625 struct intel_framebuffer *intel_fb;
9626 int ret;
9627
9628 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
9629 if (!intel_fb) {
Alexey Khoroshilov6ccb81f2014-11-08 01:41:23 +03009630 drm_gem_object_unreference(&obj->base);
Chris Wilsond2dff872011-04-19 08:36:26 +01009631 return ERR_PTR(-ENOMEM);
9632 }
9633
9634 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02009635 if (ret)
9636 goto err;
Chris Wilsond2dff872011-04-19 08:36:26 +01009637
9638 return &intel_fb->base;
Daniel Vetterdd4916c2013-10-09 21:23:51 +02009639err:
Alexey Khoroshilov6ccb81f2014-11-08 01:41:23 +03009640 drm_gem_object_unreference(&obj->base);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02009641 kfree(intel_fb);
9642
9643 return ERR_PTR(ret);
Chris Wilsond2dff872011-04-19 08:36:26 +01009644}
9645
Daniel Vetterb5ea6422014-03-02 21:18:00 +01009646static struct drm_framebuffer *
Daniel Vettera8bb6812014-02-10 18:00:39 +01009647intel_framebuffer_create(struct drm_device *dev,
9648 struct drm_mode_fb_cmd2 *mode_cmd,
9649 struct drm_i915_gem_object *obj)
9650{
9651 struct drm_framebuffer *fb;
9652 int ret;
9653
9654 ret = i915_mutex_lock_interruptible(dev);
9655 if (ret)
9656 return ERR_PTR(ret);
9657 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
9658 mutex_unlock(&dev->struct_mutex);
9659
9660 return fb;
9661}
9662
Chris Wilsond2dff872011-04-19 08:36:26 +01009663static u32
9664intel_framebuffer_pitch_for_width(int width, int bpp)
9665{
9666 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
9667 return ALIGN(pitch, 64);
9668}
9669
9670static u32
9671intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
9672{
9673 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
Fabian Frederick1267a262014-07-01 20:39:41 +02009674 return PAGE_ALIGN(pitch * mode->vdisplay);
Chris Wilsond2dff872011-04-19 08:36:26 +01009675}
9676
9677static struct drm_framebuffer *
9678intel_framebuffer_create_for_mode(struct drm_device *dev,
9679 struct drm_display_mode *mode,
9680 int depth, int bpp)
9681{
9682 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +00009683 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +01009684
9685 obj = i915_gem_alloc_object(dev,
9686 intel_framebuffer_size_for_mode(mode, bpp));
9687 if (obj == NULL)
9688 return ERR_PTR(-ENOMEM);
9689
9690 mode_cmd.width = mode->hdisplay;
9691 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08009692 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
9693 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00009694 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01009695
9696 return intel_framebuffer_create(dev, &mode_cmd, obj);
9697}
9698
9699static struct drm_framebuffer *
9700mode_fits_in_fbdev(struct drm_device *dev,
9701 struct drm_display_mode *mode)
9702{
Daniel Vetter4520f532013-10-09 09:18:51 +02009703#ifdef CONFIG_DRM_I915_FBDEV
Chris Wilsond2dff872011-04-19 08:36:26 +01009704 struct drm_i915_private *dev_priv = dev->dev_private;
9705 struct drm_i915_gem_object *obj;
9706 struct drm_framebuffer *fb;
9707
Daniel Vetter4c0e5522014-02-14 16:35:54 +01009708 if (!dev_priv->fbdev)
9709 return NULL;
9710
9711 if (!dev_priv->fbdev->fb)
Chris Wilsond2dff872011-04-19 08:36:26 +01009712 return NULL;
9713
Jesse Barnes8bcd4552014-02-07 12:10:38 -08009714 obj = dev_priv->fbdev->fb->obj;
Daniel Vetter4c0e5522014-02-14 16:35:54 +01009715 BUG_ON(!obj);
Chris Wilsond2dff872011-04-19 08:36:26 +01009716
Jesse Barnes8bcd4552014-02-07 12:10:38 -08009717 fb = &dev_priv->fbdev->fb->base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02009718 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
9719 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01009720 return NULL;
9721
Ville Syrjälä01f2c772011-12-20 00:06:49 +02009722 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01009723 return NULL;
9724
9725 return fb;
Daniel Vetter4520f532013-10-09 09:18:51 +02009726#else
9727 return NULL;
9728#endif
Chris Wilsond2dff872011-04-19 08:36:26 +01009729}
9730
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +03009731static int intel_modeset_setup_plane_state(struct drm_atomic_state *state,
9732 struct drm_crtc *crtc,
9733 struct drm_display_mode *mode,
9734 struct drm_framebuffer *fb,
9735 int x, int y)
9736{
9737 struct drm_plane_state *plane_state;
9738 int hdisplay, vdisplay;
9739 int ret;
9740
9741 plane_state = drm_atomic_get_plane_state(state, crtc->primary);
9742 if (IS_ERR(plane_state))
9743 return PTR_ERR(plane_state);
9744
9745 if (mode)
9746 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
9747 else
9748 hdisplay = vdisplay = 0;
9749
9750 ret = drm_atomic_set_crtc_for_plane(plane_state, fb ? crtc : NULL);
9751 if (ret)
9752 return ret;
9753 drm_atomic_set_fb_for_plane(plane_state, fb);
9754 plane_state->crtc_x = 0;
9755 plane_state->crtc_y = 0;
9756 plane_state->crtc_w = hdisplay;
9757 plane_state->crtc_h = vdisplay;
9758 plane_state->src_x = x << 16;
9759 plane_state->src_y = y << 16;
9760 plane_state->src_w = hdisplay << 16;
9761 plane_state->src_h = vdisplay << 16;
9762
9763 return 0;
9764}
9765
Daniel Vetterd2434ab2012-08-12 21:20:10 +02009766bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01009767 struct drm_display_mode *mode,
Rob Clark51fd3712013-11-19 12:10:12 -05009768 struct intel_load_detect_pipe *old,
9769 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -08009770{
9771 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02009772 struct intel_encoder *intel_encoder =
9773 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08009774 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01009775 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08009776 struct drm_crtc *crtc = NULL;
9777 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02009778 struct drm_framebuffer *fb;
Rob Clark51fd3712013-11-19 12:10:12 -05009779 struct drm_mode_config *config = &dev->mode_config;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +02009780 struct drm_atomic_state *state = NULL;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +02009781 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +03009782 struct intel_crtc_state *crtc_state;
Rob Clark51fd3712013-11-19 12:10:12 -05009783 int ret, i = -1;
Jesse Barnes79e53942008-11-07 14:24:08 -08009784
Chris Wilsond2dff872011-04-19 08:36:26 +01009785 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03009786 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +03009787 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +01009788
Rob Clark51fd3712013-11-19 12:10:12 -05009789retry:
9790 ret = drm_modeset_lock(&config->connection_mutex, ctx);
9791 if (ret)
9792 goto fail_unlock;
Daniel Vetter6e9f7982014-05-29 23:54:47 +02009793
Jesse Barnes79e53942008-11-07 14:24:08 -08009794 /*
9795 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01009796 *
Jesse Barnes79e53942008-11-07 14:24:08 -08009797 * - if the connector already has an assigned crtc, use it (but make
9798 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01009799 *
Jesse Barnes79e53942008-11-07 14:24:08 -08009800 * - try to find the first unused crtc that can drive this connector,
9801 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08009802 */
9803
9804 /* See if we already have a CRTC for this connector */
9805 if (encoder->crtc) {
9806 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01009807
Rob Clark51fd3712013-11-19 12:10:12 -05009808 ret = drm_modeset_lock(&crtc->mutex, ctx);
9809 if (ret)
9810 goto fail_unlock;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01009811 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
9812 if (ret)
9813 goto fail_unlock;
Daniel Vetter7b240562012-12-12 00:35:33 +01009814
Daniel Vetter24218aa2012-08-12 19:27:11 +02009815 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01009816 old->load_detect_temp = false;
9817
9818 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02009819 if (connector->dpms != DRM_MODE_DPMS_ON)
9820 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01009821
Chris Wilson71731882011-04-19 23:10:58 +01009822 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08009823 }
9824
9825 /* Find an unused one (if possible) */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01009826 for_each_crtc(dev, possible_crtc) {
Jesse Barnes79e53942008-11-07 14:24:08 -08009827 i++;
9828 if (!(encoder->possible_crtcs & (1 << i)))
9829 continue;
Matt Roper83d65732015-02-25 13:12:16 -08009830 if (possible_crtc->state->enable)
Ville Syrjäläa4592492014-08-11 13:15:36 +03009831 continue;
9832 /* This can occur when applying the pipe A quirk on resume. */
9833 if (to_intel_crtc(possible_crtc)->new_enabled)
9834 continue;
9835
9836 crtc = possible_crtc;
9837 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08009838 }
9839
9840 /*
9841 * If we didn't find an unused CRTC, don't use any.
9842 */
9843 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01009844 DRM_DEBUG_KMS("no pipe available for load-detect\n");
Rob Clark51fd3712013-11-19 12:10:12 -05009845 goto fail_unlock;
Jesse Barnes79e53942008-11-07 14:24:08 -08009846 }
9847
Rob Clark51fd3712013-11-19 12:10:12 -05009848 ret = drm_modeset_lock(&crtc->mutex, ctx);
9849 if (ret)
9850 goto fail_unlock;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01009851 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
9852 if (ret)
9853 goto fail_unlock;
Daniel Vetterfc303102012-07-09 10:40:58 +02009854 intel_encoder->new_crtc = to_intel_crtc(crtc);
9855 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08009856
9857 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02009858 intel_crtc->new_enabled = true;
Daniel Vetter24218aa2012-08-12 19:27:11 +02009859 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01009860 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01009861 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08009862
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +02009863 state = drm_atomic_state_alloc(dev);
9864 if (!state)
9865 return false;
9866
9867 state->acquire_ctx = ctx;
9868
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +02009869 connector_state = drm_atomic_get_connector_state(state, connector);
9870 if (IS_ERR(connector_state)) {
9871 ret = PTR_ERR(connector_state);
9872 goto fail;
9873 }
9874
9875 connector_state->crtc = crtc;
9876 connector_state->best_encoder = &intel_encoder->base;
9877
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +03009878 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
9879 if (IS_ERR(crtc_state)) {
9880 ret = PTR_ERR(crtc_state);
9881 goto fail;
9882 }
9883
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +02009884 crtc_state->base.active = crtc_state->base.enable = true;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +03009885
Chris Wilson64927112011-04-20 07:25:26 +01009886 if (!mode)
9887 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08009888
Chris Wilsond2dff872011-04-19 08:36:26 +01009889 /* We need a framebuffer large enough to accommodate all accesses
9890 * that the plane may generate whilst we perform load detection.
9891 * We can not rely on the fbcon either being present (we get called
9892 * during its initialisation to detect all boot displays, or it may
9893 * not even exist) or that it is large enough to satisfy the
9894 * requested mode.
9895 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02009896 fb = mode_fits_in_fbdev(dev, mode);
9897 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01009898 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02009899 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
9900 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01009901 } else
9902 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02009903 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01009904 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +02009905 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08009906 }
Chris Wilsond2dff872011-04-19 08:36:26 +01009907
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +03009908 ret = intel_modeset_setup_plane_state(state, crtc, mode, fb, 0, 0);
9909 if (ret)
9910 goto fail;
9911
Ander Conselvan de Oliveira8c7b5cc2015-04-21 17:13:19 +03009912 drm_mode_copy(&crtc_state->base.mode, mode);
9913
9914 if (intel_set_mode(crtc, state)) {
Chris Wilson64927112011-04-20 07:25:26 +01009915 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01009916 if (old->release_fb)
9917 old->release_fb->funcs->destroy(old->release_fb);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02009918 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08009919 }
Daniel Vetter9128b042015-03-03 17:31:21 +01009920 crtc->primary->crtc = crtc;
Chris Wilson71731882011-04-19 23:10:58 +01009921
Jesse Barnes79e53942008-11-07 14:24:08 -08009922 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07009923 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +01009924 return true;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02009925
9926 fail:
Matt Roper83d65732015-02-25 13:12:16 -08009927 intel_crtc->new_enabled = crtc->state->enable;
Rob Clark51fd3712013-11-19 12:10:12 -05009928fail_unlock:
Ander Conselvan de Oliveirae5d958e2015-04-21 17:12:57 +03009929 drm_atomic_state_free(state);
9930 state = NULL;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +02009931
Rob Clark51fd3712013-11-19 12:10:12 -05009932 if (ret == -EDEADLK) {
9933 drm_modeset_backoff(ctx);
9934 goto retry;
9935 }
9936
Ville Syrjälä412b61d2014-01-17 15:59:39 +02009937 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08009938}
9939
Daniel Vetterd2434ab2012-08-12 21:20:10 +02009940void intel_release_load_detect_pipe(struct drm_connector *connector,
Ander Conselvan de Oliveira49172fe2015-03-20 16:18:02 +02009941 struct intel_load_detect_pipe *old,
9942 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -08009943{
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +02009944 struct drm_device *dev = connector->dev;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02009945 struct intel_encoder *intel_encoder =
9946 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01009947 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +01009948 struct drm_crtc *crtc = encoder->crtc;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02009949 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +02009950 struct drm_atomic_state *state;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +02009951 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +03009952 struct intel_crtc_state *crtc_state;
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +03009953 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08009954
Chris Wilsond2dff872011-04-19 08:36:26 +01009955 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03009956 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +03009957 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +01009958
Chris Wilson8261b192011-04-19 23:18:09 +01009959 if (old->load_detect_temp) {
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +02009960 state = drm_atomic_state_alloc(dev);
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +02009961 if (!state)
9962 goto fail;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +02009963
9964 state->acquire_ctx = ctx;
9965
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +02009966 connector_state = drm_atomic_get_connector_state(state, connector);
9967 if (IS_ERR(connector_state))
9968 goto fail;
9969
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +03009970 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
9971 if (IS_ERR(crtc_state))
9972 goto fail;
9973
Daniel Vetterfc303102012-07-09 10:40:58 +02009974 to_intel_connector(connector)->new_encoder = NULL;
9975 intel_encoder->new_crtc = NULL;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02009976 intel_crtc->new_enabled = false;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +02009977
9978 connector_state->best_encoder = NULL;
9979 connector_state->crtc = NULL;
9980
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +02009981 crtc_state->base.enable = crtc_state->base.active = false;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +03009982
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +03009983 ret = intel_modeset_setup_plane_state(state, crtc, NULL, NULL,
9984 0, 0);
9985 if (ret)
9986 goto fail;
9987
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +03009988 ret = intel_set_mode(crtc, state);
9989 if (ret)
9990 goto fail;
Chris Wilsond2dff872011-04-19 08:36:26 +01009991
Daniel Vetter36206362012-12-10 20:42:17 +01009992 if (old->release_fb) {
9993 drm_framebuffer_unregister_private(old->release_fb);
9994 drm_framebuffer_unreference(old->release_fb);
9995 }
Chris Wilsond2dff872011-04-19 08:36:26 +01009996
Chris Wilson0622a532011-04-21 09:32:11 +01009997 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08009998 }
9999
Eric Anholtc751ce42010-03-25 11:48:48 -070010000 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +020010001 if (old->dpms_mode != DRM_MODE_DPMS_ON)
10002 connector->funcs->dpms(connector, old->dpms_mode);
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010003
10004 return;
10005fail:
10006 DRM_DEBUG_KMS("Couldn't release load detect pipe.\n");
10007 drm_atomic_state_free(state);
Jesse Barnes79e53942008-11-07 14:24:08 -080010008}
10009
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010010static int i9xx_pll_refclk(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010011 const struct intel_crtc_state *pipe_config)
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010012{
10013 struct drm_i915_private *dev_priv = dev->dev_private;
10014 u32 dpll = pipe_config->dpll_hw_state.dpll;
10015
10016 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
Ville Syrjäläe91e9412013-12-09 18:54:16 +020010017 return dev_priv->vbt.lvds_ssc_freq;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010018 else if (HAS_PCH_SPLIT(dev))
10019 return 120000;
10020 else if (!IS_GEN2(dev))
10021 return 96000;
10022 else
10023 return 48000;
10024}
10025
Jesse Barnes79e53942008-11-07 14:24:08 -080010026/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010027static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010028 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -080010029{
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010030 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -080010031 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010032 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +030010033 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -080010034 u32 fp;
10035 intel_clock_t clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010036 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -080010037
10038 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +030010039 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -080010040 else
Ville Syrjälä293623f2013-09-13 16:18:46 +030010041 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -080010042
10043 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -050010044 if (IS_PINEVIEW(dev)) {
10045 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
10046 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +080010047 } else {
10048 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
10049 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
10050 }
10051
Chris Wilsona6c45cf2010-09-17 00:32:17 +010010052 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -050010053 if (IS_PINEVIEW(dev))
10054 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
10055 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +080010056 else
10057 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -080010058 DPLL_FPA01_P1_POST_DIV_SHIFT);
10059
10060 switch (dpll & DPLL_MODE_MASK) {
10061 case DPLLB_MODE_DAC_SERIAL:
10062 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
10063 5 : 10;
10064 break;
10065 case DPLLB_MODE_LVDS:
10066 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
10067 7 : 14;
10068 break;
10069 default:
Zhao Yakui28c97732009-10-09 11:39:41 +080010070 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -080010071 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010072 return;
Jesse Barnes79e53942008-11-07 14:24:08 -080010073 }
10074
Daniel Vetterac58c3f2013-06-01 17:16:17 +020010075 if (IS_PINEVIEW(dev))
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010076 pineview_clock(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +020010077 else
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010078 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -080010079 } else {
Ville Syrjälä0fb58222014-01-10 14:06:46 +020010080 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +020010081 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
Jesse Barnes79e53942008-11-07 14:24:08 -080010082
10083 if (is_lvds) {
10084 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
10085 DPLL_FPA01_P1_POST_DIV_SHIFT);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +020010086
10087 if (lvds & LVDS_CLKB_POWER_UP)
10088 clock.p2 = 7;
10089 else
10090 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -080010091 } else {
10092 if (dpll & PLL_P1_DIVIDE_BY_TWO)
10093 clock.p1 = 2;
10094 else {
10095 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
10096 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
10097 }
10098 if (dpll & PLL_P2_DIVIDE_BY_4)
10099 clock.p2 = 4;
10100 else
10101 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -080010102 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010103
10104 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -080010105 }
10106
Ville Syrjälä18442d02013-09-13 16:00:08 +030010107 /*
10108 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +010010109 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +030010110 * encoder's get_config() function.
10111 */
10112 pipe_config->port_clock = clock.dot;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010113}
10114
Ville Syrjälä6878da02013-09-13 15:59:11 +030010115int intel_dotclock_calculate(int link_freq,
10116 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010117{
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010118 /*
10119 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +030010120 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010121 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +030010122 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010123 *
10124 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +030010125 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -080010126 */
10127
Ville Syrjälä6878da02013-09-13 15:59:11 +030010128 if (!m_n->link_n)
10129 return 0;
10130
10131 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
10132}
10133
Ville Syrjälä18442d02013-09-13 16:00:08 +030010134static void ironlake_pch_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010135 struct intel_crtc_state *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +030010136{
10137 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä18442d02013-09-13 16:00:08 +030010138
10139 /* read out port_clock from the DPLL */
10140 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +030010141
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010142 /*
Ville Syrjälä18442d02013-09-13 16:00:08 +030010143 * This value does not include pixel_multiplier.
Damien Lespiau241bfc32013-09-25 16:45:37 +010010144 * We will check that port_clock and adjusted_mode.crtc_clock
Ville Syrjälä18442d02013-09-13 16:00:08 +030010145 * agree once we know their relationship in the encoder's
10146 * get_config() function.
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010147 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010148 pipe_config->base.adjusted_mode.crtc_clock =
Ville Syrjälä18442d02013-09-13 16:00:08 +030010149 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
10150 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -080010151}
10152
10153/** Returns the currently programmed mode of the given pipe. */
10154struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
10155 struct drm_crtc *crtc)
10156{
Jesse Barnes548f2452011-02-17 10:40:53 -080010157 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080010158 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010159 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080010160 struct drm_display_mode *mode;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010161 struct intel_crtc_state pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -020010162 int htot = I915_READ(HTOTAL(cpu_transcoder));
10163 int hsync = I915_READ(HSYNC(cpu_transcoder));
10164 int vtot = I915_READ(VTOTAL(cpu_transcoder));
10165 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +030010166 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -080010167
10168 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
10169 if (!mode)
10170 return NULL;
10171
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010172 /*
10173 * Construct a pipe_config sufficient for getting the clock info
10174 * back out of crtc_clock_get.
10175 *
10176 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
10177 * to use a real value here instead.
10178 */
Ville Syrjälä293623f2013-09-13 16:18:46 +030010179 pipe_config.cpu_transcoder = (enum transcoder) pipe;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010180 pipe_config.pixel_multiplier = 1;
Ville Syrjälä293623f2013-09-13 16:18:46 +030010181 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
10182 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
10183 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010184 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
10185
Ville Syrjälä773ae032013-09-23 17:48:20 +030010186 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -080010187 mode->hdisplay = (htot & 0xffff) + 1;
10188 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
10189 mode->hsync_start = (hsync & 0xffff) + 1;
10190 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
10191 mode->vdisplay = (vtot & 0xffff) + 1;
10192 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
10193 mode->vsync_start = (vsync & 0xffff) + 1;
10194 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
10195
10196 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -080010197
10198 return mode;
10199}
10200
Jesse Barnes652c3932009-08-17 13:31:43 -070010201static void intel_decrease_pllclock(struct drm_crtc *crtc)
10202{
10203 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +030010204 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -070010205 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -070010206
Sonika Jindalbaff2962014-07-22 11:16:35 +053010207 if (!HAS_GMCH_DISPLAY(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -070010208 return;
10209
10210 if (!dev_priv->lvds_downclock_avail)
10211 return;
10212
10213 /*
10214 * Since this is called by a timer, we should never get here in
10215 * the manual case.
10216 */
10217 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +010010218 int pipe = intel_crtc->pipe;
10219 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +020010220 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +010010221
Zhao Yakui44d98a62009-10-09 11:39:40 +080010222 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -070010223
Sean Paul8ac5a6d2012-02-13 13:14:51 -050010224 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -070010225
Chris Wilson074b5e12012-05-02 12:07:06 +010010226 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -070010227 dpll |= DISPLAY_RATE_SELECT_FPA1;
10228 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -070010229 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -070010230 dpll = I915_READ(dpll_reg);
10231 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +080010232 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -070010233 }
10234
10235}
10236
Chris Wilsonf047e392012-07-21 12:31:41 +010010237void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -070010238{
Paulo Zanonic67a4702013-08-19 13:18:09 -030010239 struct drm_i915_private *dev_priv = dev->dev_private;
10240
Chris Wilsonf62a0072014-02-21 17:55:39 +000010241 if (dev_priv->mm.busy)
10242 return;
10243
Paulo Zanoni43694d62014-03-07 20:08:08 -030010244 intel_runtime_pm_get(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -030010245 i915_update_gfx_val(dev_priv);
Chris Wilson43cf3bf2015-03-18 09:48:22 +000010246 if (INTEL_INFO(dev)->gen >= 6)
10247 gen6_rps_busy(dev_priv);
Chris Wilsonf62a0072014-02-21 17:55:39 +000010248 dev_priv->mm.busy = true;
Chris Wilsonf047e392012-07-21 12:31:41 +010010249}
10250
10251void intel_mark_idle(struct drm_device *dev)
10252{
Paulo Zanonic67a4702013-08-19 13:18:09 -030010253 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson725a5b52013-01-08 11:02:57 +000010254 struct drm_crtc *crtc;
10255
Chris Wilsonf62a0072014-02-21 17:55:39 +000010256 if (!dev_priv->mm.busy)
10257 return;
10258
10259 dev_priv->mm.busy = false;
10260
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010010261 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -070010262 if (!crtc->primary->fb)
Chris Wilson725a5b52013-01-08 11:02:57 +000010263 continue;
10264
10265 intel_decrease_pllclock(crtc);
10266 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +010010267
Damien Lespiau3d13ef22014-02-07 19:12:47 +000010268 if (INTEL_INFO(dev)->gen >= 6)
Chris Wilsonb29c19b2013-09-25 17:34:56 +010010269 gen6_rps_idle(dev->dev_private);
Paulo Zanonibb4cdd52014-02-21 13:52:19 -030010270
Paulo Zanoni43694d62014-03-07 20:08:08 -030010271 intel_runtime_pm_put(dev_priv);
Chris Wilsonf047e392012-07-21 12:31:41 +010010272}
10273
Jesse Barnes79e53942008-11-07 14:24:08 -080010274static void intel_crtc_destroy(struct drm_crtc *crtc)
10275{
10276 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010277 struct drm_device *dev = crtc->dev;
10278 struct intel_unpin_work *work;
Daniel Vetter67e77c52010-08-20 22:26:30 +020010279
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010280 spin_lock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010281 work = intel_crtc->unpin_work;
10282 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010283 spin_unlock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010284
10285 if (work) {
10286 cancel_work_sync(&work->work);
10287 kfree(work);
10288 }
Jesse Barnes79e53942008-11-07 14:24:08 -080010289
10290 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010291
Jesse Barnes79e53942008-11-07 14:24:08 -080010292 kfree(intel_crtc);
10293}
10294
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010295static void intel_unpin_work_fn(struct work_struct *__work)
10296{
10297 struct intel_unpin_work *work =
10298 container_of(__work, struct intel_unpin_work, work);
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010299 struct drm_device *dev = work->crtc->dev;
Daniel Vetterf99d7062014-06-19 16:01:59 +020010300 enum pipe pipe = to_intel_crtc(work->crtc)->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010301
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010302 mutex_lock(&dev->struct_mutex);
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000010303 intel_unpin_fb_obj(work->old_fb, work->crtc->primary->state);
Chris Wilson05394f32010-11-08 19:18:58 +000010304 drm_gem_object_unreference(&work->pending_flip_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +000010305
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020010306 intel_fbc_update(dev);
John Harrisonf06cc1b2014-11-24 18:49:37 +000010307
10308 if (work->flip_queued_req)
John Harrison146d84f2014-12-05 13:49:33 +000010309 i915_gem_request_assign(&work->flip_queued_req, NULL);
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010310 mutex_unlock(&dev->struct_mutex);
10311
Daniel Vetterf99d7062014-06-19 16:01:59 +020010312 intel_frontbuffer_flip_complete(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
Chris Wilson89ed88b2015-02-16 14:31:49 +000010313 drm_framebuffer_unreference(work->old_fb);
Daniel Vetterf99d7062014-06-19 16:01:59 +020010314
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010315 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
10316 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
10317
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010318 kfree(work);
10319}
10320
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010321static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +010010322 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010323{
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010324 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10325 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010326 unsigned long flags;
10327
10328 /* Ignore early vblank irqs */
10329 if (intel_crtc == NULL)
10330 return;
10331
Daniel Vetterf3260382014-09-15 14:55:23 +020010332 /*
10333 * This is called both by irq handlers and the reset code (to complete
10334 * lost pageflips) so needs the full irqsave spinlocks.
10335 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010336 spin_lock_irqsave(&dev->event_lock, flags);
10337 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +000010338
10339 /* Ensure we don't miss a work->pending update ... */
10340 smp_rmb();
10341
10342 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010343 spin_unlock_irqrestore(&dev->event_lock, flags);
10344 return;
10345 }
10346
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010347 page_flip_completed(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +010010348
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010349 spin_unlock_irqrestore(&dev->event_lock, flags);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010350}
10351
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010352void intel_finish_page_flip(struct drm_device *dev, int pipe)
10353{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010354 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010355 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
10356
Mario Kleiner49b14a52010-12-09 07:00:07 +010010357 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010358}
10359
10360void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
10361{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010362 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010363 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
10364
Mario Kleiner49b14a52010-12-09 07:00:07 +010010365 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010366}
10367
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010368/* Is 'a' after or equal to 'b'? */
10369static bool g4x_flip_count_after_eq(u32 a, u32 b)
10370{
10371 return !((a - b) & 0x80000000);
10372}
10373
10374static bool page_flip_finished(struct intel_crtc *crtc)
10375{
10376 struct drm_device *dev = crtc->base.dev;
10377 struct drm_i915_private *dev_priv = dev->dev_private;
10378
Ville Syrjäläbdfa7542014-05-27 21:33:09 +030010379 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
10380 crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
10381 return true;
10382
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010383 /*
10384 * The relevant registers doen't exist on pre-ctg.
10385 * As the flip done interrupt doesn't trigger for mmio
10386 * flips on gmch platforms, a flip count check isn't
10387 * really needed there. But since ctg has the registers,
10388 * include it in the check anyway.
10389 */
10390 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
10391 return true;
10392
10393 /*
10394 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
10395 * used the same base address. In that case the mmio flip might
10396 * have completed, but the CS hasn't even executed the flip yet.
10397 *
10398 * A flip count check isn't enough as the CS might have updated
10399 * the base address just after start of vblank, but before we
10400 * managed to process the interrupt. This means we'd complete the
10401 * CS flip too soon.
10402 *
10403 * Combining both checks should get us a good enough result. It may
10404 * still happen that the CS flip has been executed, but has not
10405 * yet actually completed. But in case the base address is the same
10406 * anyway, we don't really care.
10407 */
10408 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
10409 crtc->unpin_work->gtt_offset &&
10410 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_GM45(crtc->pipe)),
10411 crtc->unpin_work->flip_count);
10412}
10413
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010414void intel_prepare_page_flip(struct drm_device *dev, int plane)
10415{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010416 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010417 struct intel_crtc *intel_crtc =
10418 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
10419 unsigned long flags;
10420
Daniel Vetterf3260382014-09-15 14:55:23 +020010421
10422 /*
10423 * This is called both by irq handlers and the reset code (to complete
10424 * lost pageflips) so needs the full irqsave spinlocks.
10425 *
10426 * NB: An MMIO update of the plane base pointer will also
Chris Wilsone7d841c2012-12-03 11:36:30 +000010427 * generate a page-flip completion irq, i.e. every modeset
10428 * is also accompanied by a spurious intel_prepare_page_flip().
10429 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010430 spin_lock_irqsave(&dev->event_lock, flags);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010431 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
Chris Wilsone7d841c2012-12-03 11:36:30 +000010432 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010433 spin_unlock_irqrestore(&dev->event_lock, flags);
10434}
10435
Robin Schroereba905b2014-05-18 02:24:50 +020010436static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
Chris Wilsone7d841c2012-12-03 11:36:30 +000010437{
10438 /* Ensure that the work item is consistent when activating it ... */
10439 smp_wmb();
10440 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
10441 /* and that it is marked active as soon as the irq could fire. */
10442 smp_wmb();
10443}
10444
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010445static int intel_gen2_queue_flip(struct drm_device *dev,
10446 struct drm_crtc *crtc,
10447 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010448 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +010010449 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -070010450 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010451{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010452 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010453 u32 flip_mask;
10454 int ret;
10455
Daniel Vetter6d90c952012-04-26 23:28:05 +020010456 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010457 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010458 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010459
10460 /* Can't queue multiple flips, so wait for the previous
10461 * one to finish before executing the next.
10462 */
10463 if (intel_crtc->plane)
10464 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
10465 else
10466 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +020010467 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
10468 intel_ring_emit(ring, MI_NOOP);
10469 intel_ring_emit(ring, MI_DISPLAY_FLIP |
10470 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
10471 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010472 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +020010473 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +000010474
10475 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +010010476 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +010010477 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010478}
10479
10480static int intel_gen3_queue_flip(struct drm_device *dev,
10481 struct drm_crtc *crtc,
10482 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010483 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +010010484 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -070010485 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010486{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010487 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010488 u32 flip_mask;
10489 int ret;
10490
Daniel Vetter6d90c952012-04-26 23:28:05 +020010491 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010492 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010493 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010494
10495 if (intel_crtc->plane)
10496 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
10497 else
10498 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +020010499 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
10500 intel_ring_emit(ring, MI_NOOP);
10501 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
10502 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
10503 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010504 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +020010505 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010506
Chris Wilsone7d841c2012-12-03 11:36:30 +000010507 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +010010508 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +010010509 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010510}
10511
10512static int intel_gen4_queue_flip(struct drm_device *dev,
10513 struct drm_crtc *crtc,
10514 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010515 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +010010516 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -070010517 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010518{
10519 struct drm_i915_private *dev_priv = dev->dev_private;
10520 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10521 uint32_t pf, pipesrc;
10522 int ret;
10523
Daniel Vetter6d90c952012-04-26 23:28:05 +020010524 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010525 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010526 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010527
10528 /* i965+ uses the linear or tiled offsets from the
10529 * Display Registers (which do not change across a page-flip)
10530 * so we need only reprogram the base address.
10531 */
Daniel Vetter6d90c952012-04-26 23:28:05 +020010532 intel_ring_emit(ring, MI_DISPLAY_FLIP |
10533 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
10534 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010535 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
Daniel Vetterc2c75132012-07-05 12:17:30 +020010536 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010537
10538 /* XXX Enabling the panel-fitter across page-flip is so far
10539 * untested on non-native modes, so ignore it for now.
10540 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
10541 */
10542 pf = 0;
10543 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +020010544 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +000010545
10546 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +010010547 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +010010548 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010549}
10550
10551static int intel_gen6_queue_flip(struct drm_device *dev,
10552 struct drm_crtc *crtc,
10553 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010554 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +010010555 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -070010556 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010557{
10558 struct drm_i915_private *dev_priv = dev->dev_private;
10559 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10560 uint32_t pf, pipesrc;
10561 int ret;
10562
Daniel Vetter6d90c952012-04-26 23:28:05 +020010563 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010564 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010565 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010566
Daniel Vetter6d90c952012-04-26 23:28:05 +020010567 intel_ring_emit(ring, MI_DISPLAY_FLIP |
10568 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
10569 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010570 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010571
Chris Wilson99d9acd2012-04-17 20:37:00 +010010572 /* Contrary to the suggestions in the documentation,
10573 * "Enable Panel Fitter" does not seem to be required when page
10574 * flipping with a non-native mode, and worse causes a normal
10575 * modeset to fail.
10576 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
10577 */
10578 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010579 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +020010580 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +000010581
10582 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +010010583 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +010010584 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010585}
10586
Jesse Barnes7c9017e2011-06-16 12:18:54 -070010587static int intel_gen7_queue_flip(struct drm_device *dev,
10588 struct drm_crtc *crtc,
10589 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010590 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +010010591 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -070010592 uint32_t flags)
Jesse Barnes7c9017e2011-06-16 12:18:54 -070010593{
Jesse Barnes7c9017e2011-06-16 12:18:54 -070010594 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettercb05d8d2012-05-23 14:02:00 +020010595 uint32_t plane_bit = 0;
Chris Wilsonffe74d72013-08-26 20:58:12 +010010596 int len, ret;
10597
Robin Schroereba905b2014-05-18 02:24:50 +020010598 switch (intel_crtc->plane) {
Daniel Vettercb05d8d2012-05-23 14:02:00 +020010599 case PLANE_A:
10600 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
10601 break;
10602 case PLANE_B:
10603 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
10604 break;
10605 case PLANE_C:
10606 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
10607 break;
10608 default:
10609 WARN_ONCE(1, "unknown plane in flip command\n");
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010610 return -ENODEV;
Daniel Vettercb05d8d2012-05-23 14:02:00 +020010611 }
10612
Chris Wilsonffe74d72013-08-26 20:58:12 +010010613 len = 4;
Damien Lespiauf4768282014-04-07 20:24:34 +010010614 if (ring->id == RCS) {
Chris Wilsonffe74d72013-08-26 20:58:12 +010010615 len += 6;
Damien Lespiauf4768282014-04-07 20:24:34 +010010616 /*
10617 * On Gen 8, SRM is now taking an extra dword to accommodate
10618 * 48bits addresses, and we need a NOOP for the batch size to
10619 * stay even.
10620 */
10621 if (IS_GEN8(dev))
10622 len += 2;
10623 }
Chris Wilsonffe74d72013-08-26 20:58:12 +010010624
Ville Syrjäläf66fab82014-02-11 19:52:06 +020010625 /*
10626 * BSpec MI_DISPLAY_FLIP for IVB:
10627 * "The full packet must be contained within the same cache line."
10628 *
10629 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
10630 * cacheline, if we ever start emitting more commands before
10631 * the MI_DISPLAY_FLIP we may need to first emit everything else,
10632 * then do the cacheline alignment, and finally emit the
10633 * MI_DISPLAY_FLIP.
10634 */
10635 ret = intel_ring_cacheline_align(ring);
10636 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010637 return ret;
Ville Syrjäläf66fab82014-02-11 19:52:06 +020010638
Chris Wilsonffe74d72013-08-26 20:58:12 +010010639 ret = intel_ring_begin(ring, len);
Jesse Barnes7c9017e2011-06-16 12:18:54 -070010640 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010641 return ret;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070010642
Chris Wilsonffe74d72013-08-26 20:58:12 +010010643 /* Unmask the flip-done completion message. Note that the bspec says that
10644 * we should do this for both the BCS and RCS, and that we must not unmask
10645 * more than one flip event at any time (or ensure that one flip message
10646 * can be sent by waiting for flip-done prior to queueing new flips).
10647 * Experimentation says that BCS works despite DERRMR masking all
10648 * flip-done completion events and that unmasking all planes at once
10649 * for the RCS also doesn't appear to drop events. Setting the DERRMR
10650 * to zero does lead to lockups within MI_DISPLAY_FLIP.
10651 */
10652 if (ring->id == RCS) {
10653 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
10654 intel_ring_emit(ring, DERRMR);
10655 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
10656 DERRMR_PIPEB_PRI_FLIP_DONE |
10657 DERRMR_PIPEC_PRI_FLIP_DONE));
Damien Lespiauf4768282014-04-07 20:24:34 +010010658 if (IS_GEN8(dev))
10659 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
10660 MI_SRM_LRM_GLOBAL_GTT);
10661 else
10662 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) |
10663 MI_SRM_LRM_GLOBAL_GTT);
Chris Wilsonffe74d72013-08-26 20:58:12 +010010664 intel_ring_emit(ring, DERRMR);
10665 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Damien Lespiauf4768282014-04-07 20:24:34 +010010666 if (IS_GEN8(dev)) {
10667 intel_ring_emit(ring, 0);
10668 intel_ring_emit(ring, MI_NOOP);
10669 }
Chris Wilsonffe74d72013-08-26 20:58:12 +010010670 }
10671
Daniel Vettercb05d8d2012-05-23 14:02:00 +020010672 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +020010673 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010674 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -070010675 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +000010676
10677 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +010010678 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +010010679 return 0;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070010680}
10681
Sourab Gupta84c33a62014-06-02 16:47:17 +053010682static bool use_mmio_flip(struct intel_engine_cs *ring,
10683 struct drm_i915_gem_object *obj)
10684{
10685 /*
10686 * This is not being used for older platforms, because
10687 * non-availability of flip done interrupt forces us to use
10688 * CS flips. Older platforms derive flip done using some clever
10689 * tricks involving the flip_pending status bits and vblank irqs.
10690 * So using MMIO flips there would disrupt this mechanism.
10691 */
10692
Chris Wilson8e09bf82014-07-08 10:40:30 +010010693 if (ring == NULL)
10694 return true;
10695
Sourab Gupta84c33a62014-06-02 16:47:17 +053010696 if (INTEL_INFO(ring->dev)->gen < 5)
10697 return false;
10698
10699 if (i915.use_mmio_flip < 0)
10700 return false;
10701 else if (i915.use_mmio_flip > 0)
10702 return true;
Oscar Mateo14bf9932014-07-24 17:04:34 +010010703 else if (i915.enable_execlists)
10704 return true;
Sourab Gupta84c33a62014-06-02 16:47:17 +053010705 else
John Harrison41c52412014-11-24 18:49:43 +000010706 return ring != i915_gem_request_get_ring(obj->last_read_req);
Sourab Gupta84c33a62014-06-02 16:47:17 +053010707}
10708
Damien Lespiauff944562014-11-20 14:58:16 +000010709static void skl_do_mmio_flip(struct intel_crtc *intel_crtc)
10710{
10711 struct drm_device *dev = intel_crtc->base.dev;
10712 struct drm_i915_private *dev_priv = dev->dev_private;
10713 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
Damien Lespiauff944562014-11-20 14:58:16 +000010714 const enum pipe pipe = intel_crtc->pipe;
10715 u32 ctl, stride;
10716
10717 ctl = I915_READ(PLANE_CTL(pipe, 0));
10718 ctl &= ~PLANE_CTL_TILED_MASK;
Tvrtko Ursulin2ebef632015-04-20 16:22:48 +010010719 switch (fb->modifier[0]) {
10720 case DRM_FORMAT_MOD_NONE:
10721 break;
10722 case I915_FORMAT_MOD_X_TILED:
Damien Lespiauff944562014-11-20 14:58:16 +000010723 ctl |= PLANE_CTL_TILED_X;
Tvrtko Ursulin2ebef632015-04-20 16:22:48 +010010724 break;
10725 case I915_FORMAT_MOD_Y_TILED:
10726 ctl |= PLANE_CTL_TILED_Y;
10727 break;
10728 case I915_FORMAT_MOD_Yf_TILED:
10729 ctl |= PLANE_CTL_TILED_YF;
10730 break;
10731 default:
10732 MISSING_CASE(fb->modifier[0]);
10733 }
Damien Lespiauff944562014-11-20 14:58:16 +000010734
10735 /*
10736 * The stride is either expressed as a multiple of 64 bytes chunks for
10737 * linear buffers or in number of tiles for tiled buffers.
10738 */
Tvrtko Ursulin2ebef632015-04-20 16:22:48 +010010739 stride = fb->pitches[0] /
10740 intel_fb_stride_alignment(dev, fb->modifier[0],
10741 fb->pixel_format);
Damien Lespiauff944562014-11-20 14:58:16 +000010742
10743 /*
10744 * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on
10745 * PLANE_SURF updates, the update is then guaranteed to be atomic.
10746 */
10747 I915_WRITE(PLANE_CTL(pipe, 0), ctl);
10748 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
10749
10750 I915_WRITE(PLANE_SURF(pipe, 0), intel_crtc->unpin_work->gtt_offset);
10751 POSTING_READ(PLANE_SURF(pipe, 0));
10752}
10753
10754static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc)
Sourab Gupta84c33a62014-06-02 16:47:17 +053010755{
10756 struct drm_device *dev = intel_crtc->base.dev;
10757 struct drm_i915_private *dev_priv = dev->dev_private;
10758 struct intel_framebuffer *intel_fb =
10759 to_intel_framebuffer(intel_crtc->base.primary->fb);
10760 struct drm_i915_gem_object *obj = intel_fb->obj;
10761 u32 dspcntr;
10762 u32 reg;
10763
Sourab Gupta84c33a62014-06-02 16:47:17 +053010764 reg = DSPCNTR(intel_crtc->plane);
10765 dspcntr = I915_READ(reg);
10766
Damien Lespiauc5d97472014-10-25 00:11:11 +010010767 if (obj->tiling_mode != I915_TILING_NONE)
10768 dspcntr |= DISPPLANE_TILED;
10769 else
10770 dspcntr &= ~DISPPLANE_TILED;
10771
Sourab Gupta84c33a62014-06-02 16:47:17 +053010772 I915_WRITE(reg, dspcntr);
10773
10774 I915_WRITE(DSPSURF(intel_crtc->plane),
10775 intel_crtc->unpin_work->gtt_offset);
10776 POSTING_READ(DSPSURF(intel_crtc->plane));
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020010777
Damien Lespiauff944562014-11-20 14:58:16 +000010778}
10779
10780/*
10781 * XXX: This is the temporary way to update the plane registers until we get
10782 * around to using the usual plane update functions for MMIO flips
10783 */
10784static void intel_do_mmio_flip(struct intel_crtc *intel_crtc)
10785{
10786 struct drm_device *dev = intel_crtc->base.dev;
10787 bool atomic_update;
10788 u32 start_vbl_count;
10789
10790 intel_mark_page_flip_active(intel_crtc);
10791
10792 atomic_update = intel_pipe_update_start(intel_crtc, &start_vbl_count);
10793
10794 if (INTEL_INFO(dev)->gen >= 9)
10795 skl_do_mmio_flip(intel_crtc);
10796 else
10797 /* use_mmio_flip() retricts MMIO flips to ilk+ */
10798 ilk_do_mmio_flip(intel_crtc);
10799
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020010800 if (atomic_update)
10801 intel_pipe_update_end(intel_crtc, start_vbl_count);
Sourab Gupta84c33a62014-06-02 16:47:17 +053010802}
10803
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020010804static void intel_mmio_flip_work_func(struct work_struct *work)
Sourab Gupta84c33a62014-06-02 16:47:17 +053010805{
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010010806 struct intel_mmio_flip *mmio_flip =
10807 container_of(work, struct intel_mmio_flip, work);
Sourab Gupta84c33a62014-06-02 16:47:17 +053010808
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010010809 if (mmio_flip->rq)
10810 WARN_ON(__i915_wait_request(mmio_flip->rq,
10811 mmio_flip->crtc->reset_counter,
10812 false, NULL, NULL));
Sourab Gupta84c33a62014-06-02 16:47:17 +053010813
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010010814 intel_do_mmio_flip(mmio_flip->crtc);
10815
10816 i915_gem_request_unreference__unlocked(mmio_flip->rq);
10817 kfree(mmio_flip);
Sourab Gupta84c33a62014-06-02 16:47:17 +053010818}
10819
10820static int intel_queue_mmio_flip(struct drm_device *dev,
10821 struct drm_crtc *crtc,
10822 struct drm_framebuffer *fb,
10823 struct drm_i915_gem_object *obj,
10824 struct intel_engine_cs *ring,
10825 uint32_t flags)
10826{
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010010827 struct intel_mmio_flip *mmio_flip;
Sourab Gupta84c33a62014-06-02 16:47:17 +053010828
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010010829 mmio_flip = kmalloc(sizeof(*mmio_flip), GFP_KERNEL);
10830 if (mmio_flip == NULL)
10831 return -ENOMEM;
Sourab Gupta84c33a62014-06-02 16:47:17 +053010832
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010010833 mmio_flip->rq = i915_gem_request_reference(obj->last_write_req);
10834 mmio_flip->crtc = to_intel_crtc(crtc);
10835
10836 INIT_WORK(&mmio_flip->work, intel_mmio_flip_work_func);
10837 schedule_work(&mmio_flip->work);
Ander Conselvan de Oliveira536f5b52014-11-06 11:03:40 +020010838
Sourab Gupta84c33a62014-06-02 16:47:17 +053010839 return 0;
10840}
10841
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010842static int intel_default_queue_flip(struct drm_device *dev,
10843 struct drm_crtc *crtc,
10844 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010845 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +010010846 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -070010847 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010848{
10849 return -ENODEV;
10850}
10851
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010852static bool __intel_pageflip_stall_check(struct drm_device *dev,
10853 struct drm_crtc *crtc)
10854{
10855 struct drm_i915_private *dev_priv = dev->dev_private;
10856 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10857 struct intel_unpin_work *work = intel_crtc->unpin_work;
10858 u32 addr;
10859
10860 if (atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE)
10861 return true;
10862
10863 if (!work->enable_stall_check)
10864 return false;
10865
10866 if (work->flip_ready_vblank == 0) {
Daniel Vetter3a8a9462014-11-26 14:39:48 +010010867 if (work->flip_queued_req &&
10868 !i915_gem_request_completed(work->flip_queued_req, true))
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010869 return false;
10870
Daniel Vetter1e3feef2015-02-13 21:03:45 +010010871 work->flip_ready_vblank = drm_crtc_vblank_count(crtc);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010872 }
10873
Daniel Vetter1e3feef2015-02-13 21:03:45 +010010874 if (drm_crtc_vblank_count(crtc) - work->flip_ready_vblank < 3)
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010875 return false;
10876
10877 /* Potential stall - if we see that the flip has happened,
10878 * assume a missed interrupt. */
10879 if (INTEL_INFO(dev)->gen >= 4)
10880 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane)));
10881 else
10882 addr = I915_READ(DSPADDR(intel_crtc->plane));
10883
10884 /* There is a potential issue here with a false positive after a flip
10885 * to the same address. We could address this by checking for a
10886 * non-incrementing frame counter.
10887 */
10888 return addr == work->gtt_offset;
10889}
10890
10891void intel_check_page_flip(struct drm_device *dev, int pipe)
10892{
10893 struct drm_i915_private *dev_priv = dev->dev_private;
10894 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
10895 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson6ad790c2015-04-07 16:20:31 +010010896 struct intel_unpin_work *work;
Daniel Vetterf3260382014-09-15 14:55:23 +020010897
Dave Gordon6c51d462015-03-06 15:34:26 +000010898 WARN_ON(!in_interrupt());
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010899
10900 if (crtc == NULL)
10901 return;
10902
Daniel Vetterf3260382014-09-15 14:55:23 +020010903 spin_lock(&dev->event_lock);
Chris Wilson6ad790c2015-04-07 16:20:31 +010010904 work = intel_crtc->unpin_work;
10905 if (work != NULL && __intel_pageflip_stall_check(dev, crtc)) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010906 WARN_ONCE(1, "Kicking stuck page flip: queued at %d, now %d\n",
Chris Wilson6ad790c2015-04-07 16:20:31 +010010907 work->flip_queued_vblank, drm_vblank_count(dev, pipe));
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010908 page_flip_completed(intel_crtc);
Chris Wilson6ad790c2015-04-07 16:20:31 +010010909 work = NULL;
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010910 }
Chris Wilson6ad790c2015-04-07 16:20:31 +010010911 if (work != NULL &&
10912 drm_vblank_count(dev, pipe) - work->flip_queued_vblank > 1)
10913 intel_queue_rps_boost_for_request(dev, work->flip_queued_req);
Daniel Vetterf3260382014-09-15 14:55:23 +020010914 spin_unlock(&dev->event_lock);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010915}
10916
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010917static int intel_crtc_page_flip(struct drm_crtc *crtc,
10918 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010919 struct drm_pending_vblank_event *event,
10920 uint32_t page_flip_flags)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010921{
10922 struct drm_device *dev = crtc->dev;
10923 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperf4510a22014-04-01 15:22:40 -070010924 struct drm_framebuffer *old_fb = crtc->primary->fb;
Matt Roper2ff8fde2014-07-08 07:50:07 -070010925 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010926 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Gustavo Padovan455a6802014-12-01 15:40:11 -080010927 struct drm_plane *primary = crtc->primary;
Daniel Vettera071fa02014-06-18 23:28:09 +020010928 enum pipe pipe = intel_crtc->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010929 struct intel_unpin_work *work;
Oscar Mateoa4872ba2014-05-22 14:13:33 +010010930 struct intel_engine_cs *ring;
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010010931 bool mmio_flip;
Chris Wilson52e68632010-08-08 10:15:59 +010010932 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010933
Matt Roper2ff8fde2014-07-08 07:50:07 -070010934 /*
10935 * drm_mode_page_flip_ioctl() should already catch this, but double
10936 * check to be safe. In the future we may enable pageflipping from
10937 * a disabled primary plane.
10938 */
10939 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
10940 return -EBUSY;
10941
Ville Syrjäläe6a595d2012-05-24 21:08:59 +030010942 /* Can't change pixel format via MI display flips. */
Matt Roperf4510a22014-04-01 15:22:40 -070010943 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Ville Syrjäläe6a595d2012-05-24 21:08:59 +030010944 return -EINVAL;
10945
10946 /*
10947 * TILEOFF/LINOFF registers can't be changed via MI display flips.
10948 * Note that pitch changes could also affect these register.
10949 */
10950 if (INTEL_INFO(dev)->gen > 3 &&
Matt Roperf4510a22014-04-01 15:22:40 -070010951 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
10952 fb->pitches[0] != crtc->primary->fb->pitches[0]))
Ville Syrjäläe6a595d2012-05-24 21:08:59 +030010953 return -EINVAL;
10954
Chris Wilsonf900db42014-02-20 09:26:13 +000010955 if (i915_terminally_wedged(&dev_priv->gpu_error))
10956 goto out_hang;
10957
Daniel Vetterb14c5672013-09-19 12:18:32 +020010958 work = kzalloc(sizeof(*work), GFP_KERNEL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010959 if (work == NULL)
10960 return -ENOMEM;
10961
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010962 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010963 work->crtc = crtc;
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000010964 work->old_fb = old_fb;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010965 INIT_WORK(&work->work, intel_unpin_work_fn);
10966
Daniel Vetter87b6b102014-05-15 15:33:46 +020010967 ret = drm_crtc_vblank_get(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -070010968 if (ret)
10969 goto free_work;
10970
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010971 /* We borrow the event spin lock for protecting unpin_work */
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010972 spin_lock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010973 if (intel_crtc->unpin_work) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010974 /* Before declaring the flip queue wedged, check if
10975 * the hardware completed the operation behind our backs.
10976 */
10977 if (__intel_pageflip_stall_check(dev, crtc)) {
10978 DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n");
10979 page_flip_completed(intel_crtc);
10980 } else {
10981 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010982 spin_unlock_irq(&dev->event_lock);
Chris Wilson468f0b42010-05-27 13:18:13 +010010983
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010984 drm_crtc_vblank_put(crtc);
10985 kfree(work);
10986 return -EBUSY;
10987 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010988 }
10989 intel_crtc->unpin_work = work;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010990 spin_unlock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010991
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010992 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
10993 flush_workqueue(dev_priv->wq);
10994
Jesse Barnes75dfca82010-02-10 15:09:44 -080010995 /* Reference the objects for the scheduled work. */
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000010996 drm_framebuffer_reference(work->old_fb);
Chris Wilson05394f32010-11-08 19:18:58 +000010997 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010998
Matt Roperf4510a22014-04-01 15:22:40 -070010999 crtc->primary->fb = fb;
Matt Roperafd65eb2015-02-03 13:10:04 -080011000 update_state_fb(crtc->primary);
Matt Roper1ed1f962015-01-30 16:22:36 -080011001
Chris Wilsone1f99ce2010-10-27 12:45:26 +010011002 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +010011003
Chris Wilson89ed88b2015-02-16 14:31:49 +000011004 ret = i915_mutex_lock_interruptible(dev);
11005 if (ret)
11006 goto cleanup;
11007
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011008 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +020011009 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +010011010
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011011 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
Daniel Vettera071fa02014-06-18 23:28:09 +020011012 work->flip_count = I915_READ(PIPE_FLIPCOUNT_GM45(pipe)) + 1;
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011013
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011014 if (IS_VALLEYVIEW(dev)) {
11015 ring = &dev_priv->ring[BCS];
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000011016 if (obj->tiling_mode != intel_fb_obj(work->old_fb)->tiling_mode)
Chris Wilson8e09bf82014-07-08 10:40:30 +010011017 /* vlv: DISPLAY_FLIP fails to change tiling */
11018 ring = NULL;
Chris Wilson48bf5b22014-12-27 09:48:28 +000011019 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Chris Wilson2a92d5b2014-07-08 10:40:29 +010011020 ring = &dev_priv->ring[BCS];
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011021 } else if (INTEL_INFO(dev)->gen >= 7) {
John Harrison41c52412014-11-24 18:49:43 +000011022 ring = i915_gem_request_get_ring(obj->last_read_req);
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011023 if (ring == NULL || ring->id != RCS)
11024 ring = &dev_priv->ring[BCS];
11025 } else {
11026 ring = &dev_priv->ring[RCS];
11027 }
11028
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010011029 mmio_flip = use_mmio_flip(ring, obj);
11030
11031 /* When using CS flips, we want to emit semaphores between rings.
11032 * However, when using mmio flips we will create a task to do the
11033 * synchronisation, so all we want here is to pin the framebuffer
11034 * into the display plane and skip any waits.
11035 */
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000011036 ret = intel_pin_and_fence_fb_obj(crtc->primary, fb,
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010011037 crtc->primary->state,
11038 mmio_flip ? i915_gem_request_get_ring(obj->last_read_req) : ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011039 if (ret)
11040 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011041
Tvrtko Ursulin121920f2015-03-23 11:10:37 +000011042 work->gtt_offset = intel_plane_obj_offset(to_intel_plane(primary), obj)
11043 + intel_crtc->dspaddr_offset;
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011044
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010011045 if (mmio_flip) {
Sourab Gupta84c33a62014-06-02 16:47:17 +053011046 ret = intel_queue_mmio_flip(dev, crtc, fb, obj, ring,
11047 page_flip_flags);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011048 if (ret)
11049 goto cleanup_unpin;
11050
John Harrisonf06cc1b2014-11-24 18:49:37 +000011051 i915_gem_request_assign(&work->flip_queued_req,
11052 obj->last_write_req);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011053 } else {
Chris Wilsond94b5032015-04-27 13:41:15 +010011054 if (obj->last_write_req) {
11055 ret = i915_gem_check_olr(obj->last_write_req);
11056 if (ret)
11057 goto cleanup_unpin;
11058 }
11059
Sourab Gupta84c33a62014-06-02 16:47:17 +053011060 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, ring,
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011061 page_flip_flags);
11062 if (ret)
11063 goto cleanup_unpin;
11064
John Harrisonf06cc1b2014-11-24 18:49:37 +000011065 i915_gem_request_assign(&work->flip_queued_req,
11066 intel_ring_get_request(ring));
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011067 }
11068
Daniel Vetter1e3feef2015-02-13 21:03:45 +010011069 work->flip_queued_vblank = drm_crtc_vblank_count(crtc);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011070 work->enable_stall_check = true;
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011071
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000011072 i915_gem_track_fb(intel_fb_obj(work->old_fb), obj,
Daniel Vettera071fa02014-06-18 23:28:09 +020011073 INTEL_FRONTBUFFER_PRIMARY(pipe));
11074
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020011075 intel_fbc_disable(dev);
Daniel Vetterf99d7062014-06-19 16:01:59 +020011076 intel_frontbuffer_flip_prepare(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011077 mutex_unlock(&dev->struct_mutex);
11078
Jesse Barnese5510fa2010-07-01 16:48:37 -070011079 trace_i915_flip_request(intel_crtc->plane, obj);
11080
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011081 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +010011082
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011083cleanup_unpin:
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000011084 intel_unpin_fb_obj(fb, crtc->primary->state);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011085cleanup_pending:
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011086 atomic_dec(&intel_crtc->unpin_work_count);
Chris Wilson89ed88b2015-02-16 14:31:49 +000011087 mutex_unlock(&dev->struct_mutex);
11088cleanup:
Matt Roperf4510a22014-04-01 15:22:40 -070011089 crtc->primary->fb = old_fb;
Matt Roperafd65eb2015-02-03 13:10:04 -080011090 update_state_fb(crtc->primary);
Chris Wilson96b099f2010-06-07 14:03:04 +010011091
Chris Wilson89ed88b2015-02-16 14:31:49 +000011092 drm_gem_object_unreference_unlocked(&obj->base);
11093 drm_framebuffer_unreference(work->old_fb);
11094
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011095 spin_lock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +010011096 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011097 spin_unlock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +010011098
Daniel Vetter87b6b102014-05-15 15:33:46 +020011099 drm_crtc_vblank_put(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -070011100free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +010011101 kfree(work);
11102
Chris Wilsonf900db42014-02-20 09:26:13 +000011103 if (ret == -EIO) {
11104out_hang:
Matt Roper53a366b2014-12-23 10:41:53 -080011105 ret = intel_plane_restore(primary);
Chris Wilsonf0d3dad2014-09-07 16:51:12 +010011106 if (ret == 0 && event) {
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011107 spin_lock_irq(&dev->event_lock);
Daniel Vettera071fa02014-06-18 23:28:09 +020011108 drm_send_vblank_event(dev, pipe, event);
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011109 spin_unlock_irq(&dev->event_lock);
Chris Wilsonf0d3dad2014-09-07 16:51:12 +010011110 }
Chris Wilsonf900db42014-02-20 09:26:13 +000011111 }
Chris Wilson96b099f2010-06-07 14:03:04 +010011112 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011113}
11114
Jani Nikula65b38e02015-04-13 11:26:56 +030011115static const struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011116 .mode_set_base_atomic = intel_pipe_set_base_atomic,
11117 .load_lut = intel_crtc_load_lut,
Matt Roperea2c67b2014-12-23 10:41:52 -080011118 .atomic_begin = intel_begin_crtc_commit,
11119 .atomic_flush = intel_finish_crtc_commit,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011120};
11121
Daniel Vetter9a935852012-07-05 22:34:27 +020011122/**
11123 * intel_modeset_update_staged_output_state
11124 *
11125 * Updates the staged output configuration state, e.g. after we've read out the
11126 * current hw state.
11127 */
11128static void intel_modeset_update_staged_output_state(struct drm_device *dev)
11129{
Ville Syrjälä76688512014-01-10 11:28:06 +020011130 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020011131 struct intel_encoder *encoder;
11132 struct intel_connector *connector;
11133
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011134 for_each_intel_connector(dev, connector) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011135 connector->new_encoder =
11136 to_intel_encoder(connector->base.encoder);
11137 }
11138
Damien Lespiaub2784e12014-08-05 11:29:37 +010011139 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011140 encoder->new_crtc =
11141 to_intel_crtc(encoder->base.crtc);
11142 }
Ville Syrjälä76688512014-01-10 11:28:06 +020011143
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011144 for_each_intel_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080011145 crtc->new_enabled = crtc->base.state->enable;
Ville Syrjälä76688512014-01-10 11:28:06 +020011146 }
Daniel Vetter9a935852012-07-05 22:34:27 +020011147}
11148
Ander Conselvan de Oliveirad29b2f92015-03-20 16:18:05 +020011149/* Transitional helper to copy current connector/encoder state to
11150 * connector->state. This is needed so that code that is partially
11151 * converted to atomic does the right thing.
11152 */
11153static void intel_modeset_update_connector_atomic_state(struct drm_device *dev)
11154{
11155 struct intel_connector *connector;
11156
11157 for_each_intel_connector(dev, connector) {
11158 if (connector->base.encoder) {
11159 connector->base.state->best_encoder =
11160 connector->base.encoder;
11161 connector->base.state->crtc =
11162 connector->base.encoder->crtc;
11163 } else {
11164 connector->base.state->best_encoder = NULL;
11165 connector->base.state->crtc = NULL;
11166 }
11167 }
11168}
11169
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +030011170/* Fixup legacy state after an atomic state swap.
Daniel Vetter9a935852012-07-05 22:34:27 +020011171 */
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +030011172static void intel_modeset_fixup_state(struct drm_atomic_state *state)
Daniel Vetter9a935852012-07-05 22:34:27 +020011173{
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +030011174 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020011175 struct intel_encoder *encoder;
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +030011176 struct intel_connector *connector;
Daniel Vetter9a935852012-07-05 22:34:27 +020011177
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +030011178 for_each_intel_connector(state->dev, connector) {
11179 connector->base.encoder = connector->base.state->best_encoder;
11180 if (connector->base.encoder)
11181 connector->base.encoder->crtc =
11182 connector->base.state->crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020011183 }
11184
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030011185 /* Update crtc of disabled encoders */
11186 for_each_intel_encoder(state->dev, encoder) {
11187 int num_connectors = 0;
11188
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +030011189 for_each_intel_connector(state->dev, connector)
11190 if (connector->base.encoder == &encoder->base)
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030011191 num_connectors++;
11192
11193 if (num_connectors == 0)
11194 encoder->base.crtc = NULL;
Daniel Vetter9a935852012-07-05 22:34:27 +020011195 }
Ville Syrjälä76688512014-01-10 11:28:06 +020011196
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +030011197 for_each_intel_crtc(state->dev, crtc) {
11198 crtc->base.enabled = crtc->base.state->enable;
11199 crtc->config = to_intel_crtc_state(crtc->base.state);
Ville Syrjälä76688512014-01-10 11:28:06 +020011200 }
Ander Conselvan de Oliveirad29b2f92015-03-20 16:18:05 +020011201
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030011202 /* Copy the new configuration to the staged state, to keep the few
11203 * pieces of code that haven't been converted yet happy */
11204 intel_modeset_update_staged_output_state(state->dev);
Daniel Vetter9a935852012-07-05 22:34:27 +020011205}
11206
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011207static void
Robin Schroereba905b2014-05-18 02:24:50 +020011208connected_sink_compute_bpp(struct intel_connector *connector,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011209 struct intel_crtc_state *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011210{
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011211 int bpp = pipe_config->pipe_bpp;
11212
11213 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
11214 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030011215 connector->base.name);
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011216
11217 /* Don't use an invalid EDID bpc value */
11218 if (connector->base.display_info.bpc &&
11219 connector->base.display_info.bpc * 3 < bpp) {
11220 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
11221 bpp, connector->base.display_info.bpc*3);
11222 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
11223 }
11224
11225 /* Clamp bpp to 8 on screens without EDID 1.4 */
11226 if (connector->base.display_info.bpc == 0 && bpp > 24) {
11227 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
11228 bpp);
11229 pipe_config->pipe_bpp = 24;
11230 }
11231}
11232
11233static int
11234compute_baseline_pipe_bpp(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011235 struct intel_crtc_state *pipe_config)
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011236{
11237 struct drm_device *dev = crtc->base.dev;
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020011238 struct drm_atomic_state *state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011239 struct drm_connector *connector;
11240 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020011241 int bpp, i;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011242
Daniel Vetterd328c9d2015-04-10 16:22:37 +020011243 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)))
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011244 bpp = 10*3;
Daniel Vetterd328c9d2015-04-10 16:22:37 +020011245 else if (INTEL_INFO(dev)->gen >= 5)
11246 bpp = 12*3;
11247 else
11248 bpp = 8*3;
11249
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011250
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011251 pipe_config->pipe_bpp = bpp;
11252
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020011253 state = pipe_config->base.state;
11254
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011255 /* Clamp display bpp to EDID value */
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011256 for_each_connector_in_state(state, connector, connector_state, i) {
11257 if (connector_state->crtc != &crtc->base)
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020011258 continue;
11259
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011260 connected_sink_compute_bpp(to_intel_connector(connector),
11261 pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011262 }
11263
11264 return bpp;
11265}
11266
Daniel Vetter644db712013-09-19 14:53:58 +020011267static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
11268{
11269 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
11270 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +010011271 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +020011272 mode->crtc_hdisplay, mode->crtc_hsync_start,
11273 mode->crtc_hsync_end, mode->crtc_htotal,
11274 mode->crtc_vdisplay, mode->crtc_vsync_start,
11275 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
11276}
11277
Daniel Vetterc0b03412013-05-28 12:05:54 +020011278static void intel_dump_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011279 struct intel_crtc_state *pipe_config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020011280 const char *context)
11281{
Chandra Konduru6a60cd82015-04-07 15:28:40 -070011282 struct drm_device *dev = crtc->base.dev;
11283 struct drm_plane *plane;
11284 struct intel_plane *intel_plane;
11285 struct intel_plane_state *state;
11286 struct drm_framebuffer *fb;
11287
11288 DRM_DEBUG_KMS("[CRTC:%d]%s config %p for pipe %c\n", crtc->base.base.id,
11289 context, pipe_config, pipe_name(crtc->pipe));
Daniel Vetterc0b03412013-05-28 12:05:54 +020011290
11291 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
11292 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
11293 pipe_config->pipe_bpp, pipe_config->dither);
11294 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
11295 pipe_config->has_pch_encoder,
11296 pipe_config->fdi_lanes,
11297 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
11298 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
11299 pipe_config->fdi_m_n.tu);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030011300 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
11301 pipe_config->has_dp_encoder,
11302 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
11303 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
11304 pipe_config->dp_m_n.tu);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070011305
11306 DRM_DEBUG_KMS("dp: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n",
11307 pipe_config->has_dp_encoder,
11308 pipe_config->dp_m2_n2.gmch_m,
11309 pipe_config->dp_m2_n2.gmch_n,
11310 pipe_config->dp_m2_n2.link_m,
11311 pipe_config->dp_m2_n2.link_n,
11312 pipe_config->dp_m2_n2.tu);
11313
Daniel Vetter55072d12014-11-20 16:10:28 +010011314 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
11315 pipe_config->has_audio,
11316 pipe_config->has_infoframe);
11317
Daniel Vetterc0b03412013-05-28 12:05:54 +020011318 DRM_DEBUG_KMS("requested mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011319 drm_mode_debug_printmodeline(&pipe_config->base.mode);
Daniel Vetterc0b03412013-05-28 12:05:54 +020011320 DRM_DEBUG_KMS("adjusted mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011321 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
11322 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +030011323 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030011324 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
11325 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Chandra Konduru6a60cd82015-04-07 15:28:40 -070011326 DRM_DEBUG_KMS("num_scalers: %d\n", crtc->num_scalers);
11327 DRM_DEBUG_KMS("scaler_users: 0x%x\n", pipe_config->scaler_state.scaler_users);
11328 DRM_DEBUG_KMS("scaler id: %d\n", pipe_config->scaler_state.scaler_id);
Daniel Vetterc0b03412013-05-28 12:05:54 +020011329 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
11330 pipe_config->gmch_pfit.control,
11331 pipe_config->gmch_pfit.pgm_ratios,
11332 pipe_config->gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +010011333 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
Daniel Vetterc0b03412013-05-28 12:05:54 +020011334 pipe_config->pch_pfit.pos,
Chris Wilsonfd4daa92013-08-27 17:04:17 +010011335 pipe_config->pch_pfit.size,
11336 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
Paulo Zanoni42db64e2013-05-31 16:33:22 -030011337 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Ville Syrjäläcf532bb2013-09-04 18:30:02 +030011338 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
Chandra Konduru6a60cd82015-04-07 15:28:40 -070011339
11340 DRM_DEBUG_KMS("planes on this crtc\n");
11341 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
11342 intel_plane = to_intel_plane(plane);
11343 if (intel_plane->pipe != crtc->pipe)
11344 continue;
11345
11346 state = to_intel_plane_state(plane->state);
11347 fb = state->base.fb;
11348 if (!fb) {
11349 DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d "
11350 "disabled, scaler_id = %d\n",
11351 plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD",
11352 plane->base.id, intel_plane->pipe,
11353 (crtc->base.primary == plane) ? 0 : intel_plane->plane + 1,
11354 drm_plane_index(plane), state->scaler_id);
11355 continue;
11356 }
11357
11358 DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d enabled",
11359 plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD",
11360 plane->base.id, intel_plane->pipe,
11361 crtc->base.primary == plane ? 0 : intel_plane->plane + 1,
11362 drm_plane_index(plane));
11363 DRM_DEBUG_KMS("\tFB:%d, fb = %ux%u format = 0x%x",
11364 fb->base.id, fb->width, fb->height, fb->pixel_format);
11365 DRM_DEBUG_KMS("\tscaler:%d src (%u, %u) %ux%u dst (%u, %u) %ux%u\n",
11366 state->scaler_id,
11367 state->src.x1 >> 16, state->src.y1 >> 16,
11368 drm_rect_width(&state->src) >> 16,
11369 drm_rect_height(&state->src) >> 16,
11370 state->dst.x1, state->dst.y1,
11371 drm_rect_width(&state->dst), drm_rect_height(&state->dst));
11372 }
Daniel Vetterc0b03412013-05-28 12:05:54 +020011373}
11374
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011375static bool encoders_cloneable(const struct intel_encoder *a,
11376 const struct intel_encoder *b)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020011377{
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011378 /* masks could be asymmetric, so check both ways */
11379 return a == b || (a->cloneable & (1 << b->type) &&
11380 b->cloneable & (1 << a->type));
11381}
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020011382
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030011383static bool check_single_encoder_cloning(struct drm_atomic_state *state,
11384 struct intel_crtc *crtc,
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011385 struct intel_encoder *encoder)
11386{
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011387 struct intel_encoder *source_encoder;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011388 struct drm_connector *connector;
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030011389 struct drm_connector_state *connector_state;
11390 int i;
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011391
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011392 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030011393 if (connector_state->crtc != &crtc->base)
11394 continue;
11395
11396 source_encoder =
11397 to_intel_encoder(connector_state->best_encoder);
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011398 if (!encoders_cloneable(encoder, source_encoder))
11399 return false;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020011400 }
11401
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011402 return true;
11403}
11404
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030011405static bool check_encoder_cloning(struct drm_atomic_state *state,
11406 struct intel_crtc *crtc)
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011407{
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011408 struct intel_encoder *encoder;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011409 struct drm_connector *connector;
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030011410 struct drm_connector_state *connector_state;
11411 int i;
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011412
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011413 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030011414 if (connector_state->crtc != &crtc->base)
11415 continue;
11416
11417 encoder = to_intel_encoder(connector_state->best_encoder);
11418 if (!check_single_encoder_cloning(state, crtc, encoder))
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011419 return false;
11420 }
11421
11422 return true;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020011423}
11424
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030011425static bool check_digital_port_conflicts(struct drm_atomic_state *state)
Ville Syrjälä00f0b372014-12-02 14:10:46 +020011426{
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030011427 struct drm_device *dev = state->dev;
11428 struct intel_encoder *encoder;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011429 struct drm_connector *connector;
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030011430 struct drm_connector_state *connector_state;
Ville Syrjälä00f0b372014-12-02 14:10:46 +020011431 unsigned int used_ports = 0;
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030011432 int i;
Ville Syrjälä00f0b372014-12-02 14:10:46 +020011433
11434 /*
11435 * Walk the connector list instead of the encoder
11436 * list to detect the problem on ddi platforms
11437 * where there's just one encoder per digital port.
11438 */
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011439 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030011440 if (!connector_state->best_encoder)
11441 continue;
11442
11443 encoder = to_intel_encoder(connector_state->best_encoder);
11444
11445 WARN_ON(!connector_state->crtc);
Ville Syrjälä00f0b372014-12-02 14:10:46 +020011446
11447 switch (encoder->type) {
11448 unsigned int port_mask;
11449 case INTEL_OUTPUT_UNKNOWN:
11450 if (WARN_ON(!HAS_DDI(dev)))
11451 break;
11452 case INTEL_OUTPUT_DISPLAYPORT:
11453 case INTEL_OUTPUT_HDMI:
11454 case INTEL_OUTPUT_EDP:
11455 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
11456
11457 /* the same port mustn't appear more than once */
11458 if (used_ports & port_mask)
11459 return false;
11460
11461 used_ports |= port_mask;
11462 default:
11463 break;
11464 }
11465 }
11466
11467 return true;
11468}
11469
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020011470static void
11471clear_intel_crtc_state(struct intel_crtc_state *crtc_state)
11472{
11473 struct drm_crtc_state tmp_state;
Chandra Konduru663a3642015-04-07 15:28:41 -070011474 struct intel_crtc_scaler_state scaler_state;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030011475 struct intel_dpll_hw_state dpll_hw_state;
11476 enum intel_dpll_id shared_dpll;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020011477
Chandra Konduru663a3642015-04-07 15:28:41 -070011478 /* Clear only the intel specific part of the crtc state excluding scalers */
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020011479 tmp_state = crtc_state->base;
Chandra Konduru663a3642015-04-07 15:28:41 -070011480 scaler_state = crtc_state->scaler_state;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030011481 shared_dpll = crtc_state->shared_dpll;
11482 dpll_hw_state = crtc_state->dpll_hw_state;
11483
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020011484 memset(crtc_state, 0, sizeof *crtc_state);
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030011485
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020011486 crtc_state->base = tmp_state;
Chandra Konduru663a3642015-04-07 15:28:41 -070011487 crtc_state->scaler_state = scaler_state;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030011488 crtc_state->shared_dpll = shared_dpll;
11489 crtc_state->dpll_hw_state = dpll_hw_state;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020011490}
11491
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030011492static int
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011493intel_modeset_pipe_config(struct drm_crtc *crtc,
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030011494 struct drm_atomic_state *state,
11495 struct intel_crtc_state *pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +020011496{
Daniel Vetter7758a112012-07-08 19:40:39 +020011497 struct intel_encoder *encoder;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011498 struct drm_connector *connector;
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020011499 struct drm_connector_state *connector_state;
Daniel Vetterd328c9d2015-04-10 16:22:37 +020011500 int base_bpp, ret = -EINVAL;
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020011501 int i;
Daniel Vettere29c22c2013-02-21 00:00:16 +010011502 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +020011503
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030011504 if (!check_encoder_cloning(state, to_intel_crtc(crtc))) {
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020011505 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030011506 return -EINVAL;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020011507 }
11508
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030011509 if (!check_digital_port_conflicts(state)) {
Ville Syrjälä00f0b372014-12-02 14:10:46 +020011510 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030011511 return -EINVAL;
Ville Syrjälä00f0b372014-12-02 14:10:46 +020011512 }
11513
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020011514 clear_intel_crtc_state(pipe_config);
Daniel Vetter7758a112012-07-08 19:40:39 +020011515
Daniel Vettere143a212013-07-04 12:01:15 +020011516 pipe_config->cpu_transcoder =
11517 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011518
Imre Deak2960bc92013-07-30 13:36:32 +030011519 /*
11520 * Sanitize sync polarity flags based on requested ones. If neither
11521 * positive or negative polarity is requested, treat this as meaning
11522 * negative polarity.
11523 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011524 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030011525 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011526 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030011527
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011528 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030011529 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011530 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030011531
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011532 /* Compute a starting value for pipe_config->pipe_bpp taking the source
11533 * plane pixel format and any sink constraints into account. Returns the
11534 * source plane bpp so that dithering can be selected on mismatches
11535 * after encoders and crtc also have had their say. */
Daniel Vetterd328c9d2015-04-10 16:22:37 +020011536 base_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
11537 pipe_config);
11538 if (base_bpp < 0)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011539 goto fail;
11540
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030011541 /*
11542 * Determine the real pipe dimensions. Note that stereo modes can
11543 * increase the actual pipe size due to the frame doubling and
11544 * insertion of additional space for blanks between the frame. This
11545 * is stored in the crtc timings. We use the requested mode to do this
11546 * computation to clearly distinguish it from the adjusted mode, which
11547 * can be changed by the connectors in the below retry loop.
11548 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011549 drm_crtc_get_hv_timing(&pipe_config->base.mode,
Gustavo Padovanecb7e162014-12-01 15:40:09 -080011550 &pipe_config->pipe_src_w,
11551 &pipe_config->pipe_src_h);
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030011552
Daniel Vettere29c22c2013-02-21 00:00:16 +010011553encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +020011554 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +020011555 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +020011556 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +020011557
Daniel Vetter135c81b2013-07-21 21:37:09 +020011558 /* Fill in default crtc timings, allow encoders to overwrite them. */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011559 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
11560 CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +020011561
Daniel Vetter7758a112012-07-08 19:40:39 +020011562 /* Pass our mode to the connectors and the CRTC to give them a chance to
11563 * adjust it according to limitations or connector properties, and also
11564 * a chance to reject the mode entirely.
11565 */
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011566 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020011567 if (connector_state->crtc != crtc)
11568 continue;
11569
11570 encoder = to_intel_encoder(connector_state->best_encoder);
11571
Daniel Vetterefea6e82013-07-21 21:36:59 +020011572 if (!(encoder->compute_config(encoder, pipe_config))) {
11573 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +020011574 goto fail;
11575 }
11576 }
11577
Daniel Vetterff9a6752013-06-01 17:16:21 +020011578 /* Set default port clock if not overwritten by the encoder. Needs to be
11579 * done afterwards in case the encoder adjusts the mode. */
11580 if (!pipe_config->port_clock)
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011581 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
Damien Lespiau241bfc32013-09-25 16:45:37 +010011582 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +020011583
Daniel Vettera43f6e02013-06-07 23:10:32 +020011584 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010011585 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +020011586 DRM_DEBUG_KMS("CRTC fixup failed\n");
11587 goto fail;
11588 }
Daniel Vettere29c22c2013-02-21 00:00:16 +010011589
11590 if (ret == RETRY) {
11591 if (WARN(!retry, "loop in pipe configuration computation\n")) {
11592 ret = -EINVAL;
11593 goto fail;
11594 }
11595
11596 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
11597 retry = false;
11598 goto encoder_retry;
11599 }
11600
Daniel Vetterd328c9d2015-04-10 16:22:37 +020011601 pipe_config->dither = pipe_config->pipe_bpp != base_bpp;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011602 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
Daniel Vetterd328c9d2015-04-10 16:22:37 +020011603 base_bpp, pipe_config->pipe_bpp, pipe_config->dither);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011604
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030011605 return 0;
Daniel Vetter7758a112012-07-08 19:40:39 +020011606fail:
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030011607 return ret;
Daniel Vetter7758a112012-07-08 19:40:39 +020011608}
11609
Daniel Vetterea9d7582012-07-10 10:42:52 +020011610static bool intel_crtc_in_use(struct drm_crtc *crtc)
11611{
11612 struct drm_encoder *encoder;
11613 struct drm_device *dev = crtc->dev;
11614
11615 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
11616 if (encoder->crtc == crtc)
11617 return true;
11618
11619 return false;
11620}
11621
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030011622static bool
11623needs_modeset(struct drm_crtc_state *state)
Daniel Vetterea9d7582012-07-10 10:42:52 +020011624{
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030011625 return state->mode_changed || state->active_changed;
11626}
11627
11628static void
11629intel_modeset_update_state(struct drm_atomic_state *state)
11630{
11631 struct drm_device *dev = state->dev;
Daniel Vetterba41c0de2014-11-03 15:04:55 +010011632 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterea9d7582012-07-10 10:42:52 +020011633 struct intel_encoder *intel_encoder;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030011634 struct drm_crtc *crtc;
11635 struct drm_crtc_state *crtc_state;
Daniel Vetterea9d7582012-07-10 10:42:52 +020011636 struct drm_connector *connector;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030011637 int i;
Daniel Vetterea9d7582012-07-10 10:42:52 +020011638
Daniel Vetterba41c0de2014-11-03 15:04:55 +010011639 intel_shared_dpll_commit(dev_priv);
11640
Damien Lespiaub2784e12014-08-05 11:29:37 +010011641 for_each_intel_encoder(dev, intel_encoder) {
Daniel Vetterea9d7582012-07-10 10:42:52 +020011642 if (!intel_encoder->base.crtc)
11643 continue;
11644
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030011645 for_each_crtc_in_state(state, crtc, crtc_state, i)
11646 if (crtc == intel_encoder->base.crtc)
11647 break;
Daniel Vetterea9d7582012-07-10 10:42:52 +020011648
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030011649 if (crtc != intel_encoder->base.crtc)
11650 continue;
11651
11652 if (crtc_state->enable && needs_modeset(crtc_state))
Daniel Vetterea9d7582012-07-10 10:42:52 +020011653 intel_encoder->connectors_active = false;
11654 }
11655
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +030011656 drm_atomic_helper_swap_state(state->dev, state);
11657 intel_modeset_fixup_state(state);
Daniel Vetterea9d7582012-07-10 10:42:52 +020011658
Ville Syrjälä76688512014-01-10 11:28:06 +020011659 /* Double check state. */
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030011660 for_each_crtc(dev, crtc) {
11661 WARN_ON(crtc->state->enable != intel_crtc_in_use(crtc));
Daniel Vetterea9d7582012-07-10 10:42:52 +020011662 }
11663
11664 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
11665 if (!connector->encoder || !connector->encoder->crtc)
11666 continue;
11667
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030011668 for_each_crtc_in_state(state, crtc, crtc_state, i)
11669 if (crtc == connector->encoder->crtc)
11670 break;
Daniel Vetterea9d7582012-07-10 10:42:52 +020011671
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030011672 if (crtc != connector->encoder->crtc)
11673 continue;
11674
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +030011675 if (crtc->state->enable && needs_modeset(crtc->state)) {
Daniel Vetter68d34722012-09-06 22:08:35 +020011676 struct drm_property *dpms_property =
11677 dev->mode_config.dpms_property;
11678
Daniel Vetterea9d7582012-07-10 10:42:52 +020011679 connector->dpms = DRM_MODE_DPMS_ON;
Rob Clark662595d2012-10-11 20:36:04 -050011680 drm_object_property_set_value(&connector->base,
Daniel Vetter68d34722012-09-06 22:08:35 +020011681 dpms_property,
11682 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +020011683
11684 intel_encoder = to_intel_encoder(connector->encoder);
11685 intel_encoder->connectors_active = true;
11686 }
11687 }
11688
11689}
11690
Ville Syrjälä3bd26262013-09-06 23:29:02 +030011691static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030011692{
Ville Syrjälä3bd26262013-09-06 23:29:02 +030011693 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030011694
11695 if (clock1 == clock2)
11696 return true;
11697
11698 if (!clock1 || !clock2)
11699 return false;
11700
11701 diff = abs(clock1 - clock2);
11702
11703 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
11704 return true;
11705
11706 return false;
11707}
11708
Daniel Vetter25c5b262012-07-08 22:08:04 +020011709#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
11710 list_for_each_entry((intel_crtc), \
11711 &(dev)->mode_config.crtc_list, \
11712 base.head) \
Daniel Vetter0973f182013-04-19 11:25:33 +020011713 if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +020011714
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011715static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020011716intel_pipe_config_compare(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011717 struct intel_crtc_state *current_config,
11718 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011719{
Daniel Vetter66e985c2013-06-05 13:34:20 +020011720#define PIPE_CONF_CHECK_X(name) \
11721 if (current_config->name != pipe_config->name) { \
11722 DRM_ERROR("mismatch in " #name " " \
11723 "(expected 0x%08x, found 0x%08x)\n", \
11724 current_config->name, \
11725 pipe_config->name); \
11726 return false; \
11727 }
11728
Daniel Vetter08a24032013-04-19 11:25:34 +020011729#define PIPE_CONF_CHECK_I(name) \
11730 if (current_config->name != pipe_config->name) { \
11731 DRM_ERROR("mismatch in " #name " " \
11732 "(expected %i, found %i)\n", \
11733 current_config->name, \
11734 pipe_config->name); \
11735 return false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +010011736 }
11737
Vandana Kannanb95af8b2014-08-05 07:51:23 -070011738/* This is required for BDW+ where there is only one set of registers for
11739 * switching between high and low RR.
11740 * This macro can be used whenever a comparison has to be made between one
11741 * hw state and multiple sw state variables.
11742 */
11743#define PIPE_CONF_CHECK_I_ALT(name, alt_name) \
11744 if ((current_config->name != pipe_config->name) && \
11745 (current_config->alt_name != pipe_config->name)) { \
11746 DRM_ERROR("mismatch in " #name " " \
11747 "(expected %i or %i, found %i)\n", \
11748 current_config->name, \
11749 current_config->alt_name, \
11750 pipe_config->name); \
11751 return false; \
11752 }
11753
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020011754#define PIPE_CONF_CHECK_FLAGS(name, mask) \
11755 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Jesse Barnes6f024882013-07-01 10:19:09 -070011756 DRM_ERROR("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020011757 "(expected %i, found %i)\n", \
11758 current_config->name & (mask), \
11759 pipe_config->name & (mask)); \
11760 return false; \
11761 }
11762
Ville Syrjälä5e550652013-09-06 23:29:07 +030011763#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
11764 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
11765 DRM_ERROR("mismatch in " #name " " \
11766 "(expected %i, found %i)\n", \
11767 current_config->name, \
11768 pipe_config->name); \
11769 return false; \
11770 }
11771
Daniel Vetterbb760062013-06-06 14:55:52 +020011772#define PIPE_CONF_QUIRK(quirk) \
11773 ((current_config->quirks | pipe_config->quirks) & (quirk))
11774
Daniel Vettereccb1402013-05-22 00:50:22 +020011775 PIPE_CONF_CHECK_I(cpu_transcoder);
11776
Daniel Vetter08a24032013-04-19 11:25:34 +020011777 PIPE_CONF_CHECK_I(has_pch_encoder);
11778 PIPE_CONF_CHECK_I(fdi_lanes);
Daniel Vetter72419202013-04-04 13:28:53 +020011779 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
11780 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
11781 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
11782 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
11783 PIPE_CONF_CHECK_I(fdi_m_n.tu);
Daniel Vetter08a24032013-04-19 11:25:34 +020011784
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030011785 PIPE_CONF_CHECK_I(has_dp_encoder);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070011786
11787 if (INTEL_INFO(dev)->gen < 8) {
11788 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
11789 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
11790 PIPE_CONF_CHECK_I(dp_m_n.link_m);
11791 PIPE_CONF_CHECK_I(dp_m_n.link_n);
11792 PIPE_CONF_CHECK_I(dp_m_n.tu);
11793
11794 if (current_config->has_drrs) {
11795 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_m);
11796 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_n);
11797 PIPE_CONF_CHECK_I(dp_m2_n2.link_m);
11798 PIPE_CONF_CHECK_I(dp_m2_n2.link_n);
11799 PIPE_CONF_CHECK_I(dp_m2_n2.tu);
11800 }
11801 } else {
11802 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_m, dp_m2_n2.gmch_m);
11803 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_n, dp_m2_n2.gmch_n);
11804 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_m, dp_m2_n2.link_m);
11805 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_n, dp_m2_n2.link_n);
11806 PIPE_CONF_CHECK_I_ALT(dp_m_n.tu, dp_m2_n2.tu);
11807 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030011808
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011809 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
11810 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
11811 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
11812 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
11813 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
11814 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020011815
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011816 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
11817 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
11818 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
11819 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
11820 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
11821 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020011822
Daniel Vetterc93f54c2013-06-27 19:47:19 +020011823 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6897b4b2014-04-24 23:54:47 +020011824 PIPE_CONF_CHECK_I(has_hdmi_sink);
Daniel Vetterb5a9fa02014-04-24 23:54:49 +020011825 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
11826 IS_VALLEYVIEW(dev))
11827 PIPE_CONF_CHECK_I(limited_color_range);
Jesse Barnese43823e2014-11-05 14:26:08 -080011828 PIPE_CONF_CHECK_I(has_infoframe);
Daniel Vetter6c49f242013-06-06 12:45:25 +020011829
Daniel Vetter9ed109a2014-04-24 23:54:52 +020011830 PIPE_CONF_CHECK_I(has_audio);
11831
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011832 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020011833 DRM_MODE_FLAG_INTERLACE);
11834
Daniel Vetterbb760062013-06-06 14:55:52 +020011835 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011836 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020011837 DRM_MODE_FLAG_PHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011838 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020011839 DRM_MODE_FLAG_NHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011840 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020011841 DRM_MODE_FLAG_PVSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011842 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020011843 DRM_MODE_FLAG_NVSYNC);
11844 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -070011845
Ville Syrjälä37327ab2013-09-04 18:25:28 +030011846 PIPE_CONF_CHECK_I(pipe_src_w);
11847 PIPE_CONF_CHECK_I(pipe_src_h);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020011848
Daniel Vetter99535992014-04-13 12:00:33 +020011849 /*
11850 * FIXME: BIOS likes to set up a cloned config with lvds+external
11851 * screen. Since we don't yet re-compute the pipe config when moving
11852 * just the lvds port away to another pipe the sw tracking won't match.
11853 *
11854 * Proper atomic modesets with recomputed global state will fix this.
11855 * Until then just don't check gmch state for inherited modes.
11856 */
11857 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE)) {
11858 PIPE_CONF_CHECK_I(gmch_pfit.control);
11859 /* pfit ratios are autocomputed by the hw on gen4+ */
11860 if (INTEL_INFO(dev)->gen < 4)
11861 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
11862 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
11863 }
11864
Chris Wilsonfd4daa92013-08-27 17:04:17 +010011865 PIPE_CONF_CHECK_I(pch_pfit.enabled);
11866 if (current_config->pch_pfit.enabled) {
11867 PIPE_CONF_CHECK_I(pch_pfit.pos);
11868 PIPE_CONF_CHECK_I(pch_pfit.size);
11869 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020011870
Chandra Kondurua1b22782015-04-07 15:28:45 -070011871 PIPE_CONF_CHECK_I(scaler_state.scaler_id);
11872
Jesse Barnese59150d2014-01-07 13:30:45 -080011873 /* BDW+ don't expose a synchronous way to read the state */
11874 if (IS_HASWELL(dev))
11875 PIPE_CONF_CHECK_I(ips_enabled);
Paulo Zanoni42db64e2013-05-31 16:33:22 -030011876
Ville Syrjälä282740f2013-09-04 18:30:03 +030011877 PIPE_CONF_CHECK_I(double_wide);
11878
Daniel Vetter26804af2014-06-25 22:01:55 +030011879 PIPE_CONF_CHECK_X(ddi_pll_sel);
11880
Daniel Vetterc0d43d62013-06-07 23:11:08 +020011881 PIPE_CONF_CHECK_I(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +020011882 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +020011883 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +020011884 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
11885 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterd452c5b2014-07-04 11:27:39 -030011886 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
Damien Lespiau3f4cd192014-11-13 14:55:21 +000011887 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
11888 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
11889 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
Daniel Vetterc0d43d62013-06-07 23:11:08 +020011890
Ville Syrjälä42571ae2013-09-06 23:29:00 +030011891 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
11892 PIPE_CONF_CHECK_I(pipe_bpp);
11893
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011894 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
Jesse Barnesa9a7e982014-01-20 14:18:04 -080011895 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
Ville Syrjälä5e550652013-09-06 23:29:07 +030011896
Daniel Vetter66e985c2013-06-05 13:34:20 +020011897#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +020011898#undef PIPE_CONF_CHECK_I
Vandana Kannanb95af8b2014-08-05 07:51:23 -070011899#undef PIPE_CONF_CHECK_I_ALT
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020011900#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +030011901#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +020011902#undef PIPE_CONF_QUIRK
Daniel Vetter627eb5a2013-04-29 19:33:42 +020011903
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011904 return true;
11905}
11906
Damien Lespiau08db6652014-11-04 17:06:52 +000011907static void check_wm_state(struct drm_device *dev)
11908{
11909 struct drm_i915_private *dev_priv = dev->dev_private;
11910 struct skl_ddb_allocation hw_ddb, *sw_ddb;
11911 struct intel_crtc *intel_crtc;
11912 int plane;
11913
11914 if (INTEL_INFO(dev)->gen < 9)
11915 return;
11916
11917 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
11918 sw_ddb = &dev_priv->wm.skl_hw.ddb;
11919
11920 for_each_intel_crtc(dev, intel_crtc) {
11921 struct skl_ddb_entry *hw_entry, *sw_entry;
11922 const enum pipe pipe = intel_crtc->pipe;
11923
11924 if (!intel_crtc->active)
11925 continue;
11926
11927 /* planes */
Damien Lespiaudd740782015-02-28 14:54:08 +000011928 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau08db6652014-11-04 17:06:52 +000011929 hw_entry = &hw_ddb.plane[pipe][plane];
11930 sw_entry = &sw_ddb->plane[pipe][plane];
11931
11932 if (skl_ddb_entry_equal(hw_entry, sw_entry))
11933 continue;
11934
11935 DRM_ERROR("mismatch in DDB state pipe %c plane %d "
11936 "(expected (%u,%u), found (%u,%u))\n",
11937 pipe_name(pipe), plane + 1,
11938 sw_entry->start, sw_entry->end,
11939 hw_entry->start, hw_entry->end);
11940 }
11941
11942 /* cursor */
11943 hw_entry = &hw_ddb.cursor[pipe];
11944 sw_entry = &sw_ddb->cursor[pipe];
11945
11946 if (skl_ddb_entry_equal(hw_entry, sw_entry))
11947 continue;
11948
11949 DRM_ERROR("mismatch in DDB state pipe %c cursor "
11950 "(expected (%u,%u), found (%u,%u))\n",
11951 pipe_name(pipe),
11952 sw_entry->start, sw_entry->end,
11953 hw_entry->start, hw_entry->end);
11954 }
11955}
11956
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020011957static void
11958check_connector_state(struct drm_device *dev)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011959{
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011960 struct intel_connector *connector;
11961
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011962 for_each_intel_connector(dev, connector) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011963 /* This also checks the encoder/connector hw state with the
11964 * ->get_hw_state callbacks. */
11965 intel_connector_check_state(connector);
11966
Rob Clarke2c719b2014-12-15 13:56:32 -050011967 I915_STATE_WARN(&connector->new_encoder->base != connector->base.encoder,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011968 "connector's staged encoder doesn't match current encoder\n");
11969 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020011970}
11971
11972static void
11973check_encoder_state(struct drm_device *dev)
11974{
11975 struct intel_encoder *encoder;
11976 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011977
Damien Lespiaub2784e12014-08-05 11:29:37 +010011978 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011979 bool enabled = false;
11980 bool active = false;
11981 enum pipe pipe, tracked_pipe;
11982
11983 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
11984 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030011985 encoder->base.name);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011986
Rob Clarke2c719b2014-12-15 13:56:32 -050011987 I915_STATE_WARN(&encoder->new_crtc->base != encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011988 "encoder's stage crtc doesn't match current crtc\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050011989 I915_STATE_WARN(encoder->connectors_active && !encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011990 "encoder's active_connectors set, but no crtc\n");
11991
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011992 for_each_intel_connector(dev, connector) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011993 if (connector->base.encoder != &encoder->base)
11994 continue;
11995 enabled = true;
11996 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
11997 active = true;
11998 }
Dave Airlie0e32b392014-05-02 14:02:48 +100011999 /*
12000 * for MST connectors if we unplug the connector is gone
12001 * away but the encoder is still connected to a crtc
12002 * until a modeset happens in response to the hotplug.
12003 */
12004 if (!enabled && encoder->base.encoder_type == DRM_MODE_ENCODER_DPMST)
12005 continue;
12006
Rob Clarke2c719b2014-12-15 13:56:32 -050012007 I915_STATE_WARN(!!encoder->base.crtc != enabled,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012008 "encoder's enabled state mismatch "
12009 "(expected %i, found %i)\n",
12010 !!encoder->base.crtc, enabled);
Rob Clarke2c719b2014-12-15 13:56:32 -050012011 I915_STATE_WARN(active && !encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012012 "active encoder with no crtc\n");
12013
Rob Clarke2c719b2014-12-15 13:56:32 -050012014 I915_STATE_WARN(encoder->connectors_active != active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012015 "encoder's computed active state doesn't match tracked active state "
12016 "(expected %i, found %i)\n", active, encoder->connectors_active);
12017
12018 active = encoder->get_hw_state(encoder, &pipe);
Rob Clarke2c719b2014-12-15 13:56:32 -050012019 I915_STATE_WARN(active != encoder->connectors_active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012020 "encoder's hw state doesn't match sw tracking "
12021 "(expected %i, found %i)\n",
12022 encoder->connectors_active, active);
12023
12024 if (!encoder->base.crtc)
12025 continue;
12026
12027 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
Rob Clarke2c719b2014-12-15 13:56:32 -050012028 I915_STATE_WARN(active && pipe != tracked_pipe,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012029 "active encoder's pipe doesn't match"
12030 "(expected %i, found %i)\n",
12031 tracked_pipe, pipe);
12032
12033 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012034}
12035
12036static void
12037check_crtc_state(struct drm_device *dev)
12038{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012039 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012040 struct intel_crtc *crtc;
12041 struct intel_encoder *encoder;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012042 struct intel_crtc_state pipe_config;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012043
Damien Lespiaud3fcc802014-05-13 23:32:22 +010012044 for_each_intel_crtc(dev, crtc) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012045 bool enabled = false;
12046 bool active = false;
12047
Jesse Barnes045ac3b2013-05-14 17:08:26 -070012048 memset(&pipe_config, 0, sizeof(pipe_config));
12049
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012050 DRM_DEBUG_KMS("[CRTC:%d]\n",
12051 crtc->base.base.id);
12052
Matt Roper83d65732015-02-25 13:12:16 -080012053 I915_STATE_WARN(crtc->active && !crtc->base.state->enable,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012054 "active crtc, but not enabled in sw tracking\n");
12055
Damien Lespiaub2784e12014-08-05 11:29:37 +010012056 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012057 if (encoder->base.crtc != &crtc->base)
12058 continue;
12059 enabled = true;
12060 if (encoder->connectors_active)
12061 active = true;
12062 }
Daniel Vetter6c49f242013-06-06 12:45:25 +020012063
Rob Clarke2c719b2014-12-15 13:56:32 -050012064 I915_STATE_WARN(active != crtc->active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012065 "crtc's computed active state doesn't match tracked active state "
12066 "(expected %i, found %i)\n", active, crtc->active);
Matt Roper83d65732015-02-25 13:12:16 -080012067 I915_STATE_WARN(enabled != crtc->base.state->enable,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012068 "crtc's computed enabled state doesn't match tracked enabled state "
Matt Roper83d65732015-02-25 13:12:16 -080012069 "(expected %i, found %i)\n", enabled,
12070 crtc->base.state->enable);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012071
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012072 active = dev_priv->display.get_pipe_config(crtc,
12073 &pipe_config);
Daniel Vetterd62cf622013-05-29 10:41:29 +020012074
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030012075 /* hw state is inconsistent with the pipe quirk */
12076 if ((crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
12077 (crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Daniel Vetterd62cf622013-05-29 10:41:29 +020012078 active = crtc->active;
12079
Damien Lespiaub2784e12014-08-05 11:29:37 +010012080 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä3eaba512013-08-05 17:57:48 +030012081 enum pipe pipe;
Daniel Vetter6c49f242013-06-06 12:45:25 +020012082 if (encoder->base.crtc != &crtc->base)
12083 continue;
Daniel Vetter1d37b682013-11-18 09:00:59 +010012084 if (encoder->get_hw_state(encoder, &pipe))
Daniel Vetter6c49f242013-06-06 12:45:25 +020012085 encoder->get_config(encoder, &pipe_config);
12086 }
12087
Rob Clarke2c719b2014-12-15 13:56:32 -050012088 I915_STATE_WARN(crtc->active != active,
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012089 "crtc active state doesn't match with hw state "
12090 "(expected %i, found %i)\n", crtc->active, active);
12091
Daniel Vetterc0b03412013-05-28 12:05:54 +020012092 if (active &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020012093 !intel_pipe_config_compare(dev, crtc->config, &pipe_config)) {
Rob Clarke2c719b2014-12-15 13:56:32 -050012094 I915_STATE_WARN(1, "pipe state doesn't match!\n");
Daniel Vetterc0b03412013-05-28 12:05:54 +020012095 intel_dump_pipe_config(crtc, &pipe_config,
12096 "[hw state]");
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020012097 intel_dump_pipe_config(crtc, crtc->config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020012098 "[sw state]");
12099 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012100 }
12101}
12102
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012103static void
12104check_shared_dpll_state(struct drm_device *dev)
12105{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012106 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012107 struct intel_crtc *crtc;
12108 struct intel_dpll_hw_state dpll_hw_state;
12109 int i;
Daniel Vetter53589012013-06-05 13:34:16 +020012110
12111 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
12112 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
12113 int enabled_crtcs = 0, active_crtcs = 0;
12114 bool active;
12115
12116 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
12117
12118 DRM_DEBUG_KMS("%s\n", pll->name);
12119
12120 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
12121
Rob Clarke2c719b2014-12-15 13:56:32 -050012122 I915_STATE_WARN(pll->active > hweight32(pll->config.crtc_mask),
Daniel Vetter53589012013-06-05 13:34:16 +020012123 "more active pll users than references: %i vs %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020012124 pll->active, hweight32(pll->config.crtc_mask));
Rob Clarke2c719b2014-12-15 13:56:32 -050012125 I915_STATE_WARN(pll->active && !pll->on,
Daniel Vetter53589012013-06-05 13:34:16 +020012126 "pll in active use but not on in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050012127 I915_STATE_WARN(pll->on && !pll->active,
Daniel Vetter35c95372013-07-17 06:55:04 +020012128 "pll in on but not on in use in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050012129 I915_STATE_WARN(pll->on != active,
Daniel Vetter53589012013-06-05 13:34:16 +020012130 "pll on state mismatch (expected %i, found %i)\n",
12131 pll->on, active);
12132
Damien Lespiaud3fcc802014-05-13 23:32:22 +010012133 for_each_intel_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080012134 if (crtc->base.state->enable && intel_crtc_to_shared_dpll(crtc) == pll)
Daniel Vetter53589012013-06-05 13:34:16 +020012135 enabled_crtcs++;
12136 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
12137 active_crtcs++;
12138 }
Rob Clarke2c719b2014-12-15 13:56:32 -050012139 I915_STATE_WARN(pll->active != active_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020012140 "pll active crtcs mismatch (expected %i, found %i)\n",
12141 pll->active, active_crtcs);
Rob Clarke2c719b2014-12-15 13:56:32 -050012142 I915_STATE_WARN(hweight32(pll->config.crtc_mask) != enabled_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020012143 "pll enabled crtcs mismatch (expected %i, found %i)\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020012144 hweight32(pll->config.crtc_mask), enabled_crtcs);
Daniel Vetter66e985c2013-06-05 13:34:20 +020012145
Rob Clarke2c719b2014-12-15 13:56:32 -050012146 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state, &dpll_hw_state,
Daniel Vetter66e985c2013-06-05 13:34:20 +020012147 sizeof(dpll_hw_state)),
12148 "pll hw state mismatch\n");
Daniel Vetter53589012013-06-05 13:34:16 +020012149 }
Daniel Vettere2e1ed42012-07-08 21:14:38 +020012150}
12151
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012152void
12153intel_modeset_check_state(struct drm_device *dev)
12154{
Damien Lespiau08db6652014-11-04 17:06:52 +000012155 check_wm_state(dev);
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012156 check_connector_state(dev);
12157 check_encoder_state(dev);
12158 check_crtc_state(dev);
12159 check_shared_dpll_state(dev);
12160}
12161
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012162void ironlake_check_encoder_dotclock(const struct intel_crtc_state *pipe_config,
Ville Syrjälä18442d02013-09-13 16:00:08 +030012163 int dotclock)
12164{
12165 /*
12166 * FDI already provided one idea for the dotclock.
12167 * Yell if the encoder disagrees.
12168 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012169 WARN(!intel_fuzzy_clock_check(pipe_config->base.adjusted_mode.crtc_clock, dotclock),
Ville Syrjälä18442d02013-09-13 16:00:08 +030012170 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012171 pipe_config->base.adjusted_mode.crtc_clock, dotclock);
Ville Syrjälä18442d02013-09-13 16:00:08 +030012172}
12173
Ville Syrjälä80715b22014-05-15 20:23:23 +030012174static void update_scanline_offset(struct intel_crtc *crtc)
12175{
12176 struct drm_device *dev = crtc->base.dev;
12177
12178 /*
12179 * The scanline counter increments at the leading edge of hsync.
12180 *
12181 * On most platforms it starts counting from vtotal-1 on the
12182 * first active line. That means the scanline counter value is
12183 * always one less than what we would expect. Ie. just after
12184 * start of vblank, which also occurs at start of hsync (on the
12185 * last active line), the scanline counter will read vblank_start-1.
12186 *
12187 * On gen2 the scanline counter starts counting from 1 instead
12188 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
12189 * to keep the value positive), instead of adding one.
12190 *
12191 * On HSW+ the behaviour of the scanline counter depends on the output
12192 * type. For DP ports it behaves like most other platforms, but on HDMI
12193 * there's an extra 1 line difference. So we need to add two instead of
12194 * one to the value.
12195 */
12196 if (IS_GEN2(dev)) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020012197 const struct drm_display_mode *mode = &crtc->config->base.adjusted_mode;
Ville Syrjälä80715b22014-05-15 20:23:23 +030012198 int vtotal;
12199
12200 vtotal = mode->crtc_vtotal;
12201 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
12202 vtotal /= 2;
12203
12204 crtc->scanline_offset = vtotal - 1;
12205 } else if (HAS_DDI(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +030012206 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) {
Ville Syrjälä80715b22014-05-15 20:23:23 +030012207 crtc->scanline_offset = 2;
12208 } else
12209 crtc->scanline_offset = 1;
12210}
12211
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012212static struct intel_crtc_state *
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012213intel_modeset_compute_config(struct drm_crtc *crtc,
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012214 struct drm_atomic_state *state)
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012215{
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030012216 struct intel_crtc_state *pipe_config;
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020012217 int ret = 0;
12218
12219 ret = drm_atomic_add_affected_connectors(state, crtc);
12220 if (ret)
12221 return ERR_PTR(ret);
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012222
Ander Conselvan de Oliveira8c7b5cc2015-04-21 17:13:19 +030012223 ret = drm_atomic_helper_check_modeset(state->dev, state);
12224 if (ret)
12225 return ERR_PTR(ret);
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012226
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012227 /*
12228 * Note this needs changes when we start tracking multiple modes
12229 * and crtcs. At that point we'll need to compute the whole config
12230 * (i.e. one pipe_config for each crtc) rather than just the one
12231 * for this crtc.
12232 */
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030012233 pipe_config = intel_atomic_get_crtc_state(state, to_intel_crtc(crtc));
12234 if (IS_ERR(pipe_config))
12235 return pipe_config;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012236
Ander Conselvan de Oliveira4fed33f2015-04-21 17:13:03 +030012237 if (!pipe_config->base.enable)
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030012238 return pipe_config;
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012239
Ander Conselvan de Oliveira8c7b5cc2015-04-21 17:13:19 +030012240 ret = intel_modeset_pipe_config(crtc, state, pipe_config);
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030012241 if (ret)
12242 return ERR_PTR(ret);
Ander Conselvan de Oliveiradb7542d2015-03-20 16:18:04 +020012243
Ander Conselvan de Oliveira8d8c9b52015-04-21 17:13:11 +030012244 /* Check things that can only be changed through modeset */
12245 if (pipe_config->has_audio !=
12246 to_intel_crtc(crtc)->config->has_audio)
12247 pipe_config->base.mode_changed = true;
12248
12249 /*
12250 * Note we have an issue here with infoframes: current code
12251 * only updates them on the full mode set path per hw
12252 * requirements. So here we should be checking for any
12253 * required changes and forcing a mode set.
12254 */
12255
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030012256 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,"[modeset]");
12257
Ander Conselvan de Oliveira8c7b5cc2015-04-21 17:13:19 +030012258 ret = drm_atomic_helper_check_planes(state->dev, state);
12259 if (ret)
12260 return ERR_PTR(ret);
12261
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030012262 return pipe_config;
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012263}
12264
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012265static int __intel_set_mode_setup_plls(struct drm_atomic_state *state)
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012266{
Ander Conselvan de Oliveira225da592015-04-02 14:47:57 +030012267 struct drm_device *dev = state->dev;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012268 struct drm_i915_private *dev_priv = to_i915(dev);
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012269 unsigned clear_pipes = 0;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012270 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012271 struct intel_crtc_state *intel_crtc_state;
12272 struct drm_crtc *crtc;
12273 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012274 int ret = 0;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012275 int i;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012276
12277 if (!dev_priv->display.crtc_compute_clock)
12278 return 0;
12279
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012280 for_each_crtc_in_state(state, crtc, crtc_state, i) {
12281 intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012282 intel_crtc_state = to_intel_crtc_state(crtc_state);
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012283
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012284 if (needs_modeset(crtc_state)) {
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012285 clear_pipes |= 1 << intel_crtc->pipe;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012286 intel_crtc_state->shared_dpll = DPLL_ID_PRIVATE;
12287 memset(&intel_crtc_state->dpll_hw_state, 0,
12288 sizeof(intel_crtc_state->dpll_hw_state));
12289 }
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012290 }
12291
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012292 ret = intel_shared_dpll_start_config(dev_priv, clear_pipes);
12293 if (ret)
12294 goto done;
12295
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012296 for_each_crtc_in_state(state, crtc, crtc_state, i) {
12297 if (!needs_modeset(crtc_state) || !crtc_state->enable)
Ander Conselvan de Oliveira225da592015-04-02 14:47:57 +030012298 continue;
12299
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012300 intel_crtc = to_intel_crtc(crtc);
12301 intel_crtc_state = to_intel_crtc_state(crtc_state);
12302
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012303 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012304 intel_crtc_state);
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012305 if (ret) {
12306 intel_shared_dpll_abort_config(dev_priv);
12307 goto done;
12308 }
12309 }
12310
12311done:
12312 return ret;
12313}
12314
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030012315/* Code that should eventually be part of atomic_check() */
12316static int __intel_set_mode_checks(struct drm_atomic_state *state)
12317{
12318 struct drm_device *dev = state->dev;
12319 int ret;
12320
12321 /*
12322 * See if the config requires any additional preparation, e.g.
12323 * to adjust global state with pipes off. We need to do this
12324 * here so we can get the modeset_pipe updated config for the new
12325 * mode set on this crtc. For other crtcs we need to use the
12326 * adjusted_mode bits in the crtc directly.
12327 */
12328 if (IS_VALLEYVIEW(dev) || IS_BROXTON(dev)) {
12329 ret = valleyview_modeset_global_pipes(state);
12330 if (ret)
12331 return ret;
12332 }
12333
12334 ret = __intel_set_mode_setup_plls(state);
12335 if (ret)
12336 return ret;
12337
12338 return 0;
12339}
12340
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012341static int __intel_set_mode(struct drm_crtc *modeset_crtc,
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012342 struct intel_crtc_state *pipe_config)
Daniel Vettera6778b32012-07-02 09:56:42 +020012343{
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012344 struct drm_device *dev = modeset_crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +030012345 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +030012346 struct drm_atomic_state *state = pipe_config->base.state;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012347 struct drm_crtc *crtc;
12348 struct drm_crtc_state *crtc_state;
Chris Wilsonc0c36b942012-12-19 16:08:43 +000012349 int ret = 0;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012350 int i;
Daniel Vettera6778b32012-07-02 09:56:42 +020012351
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030012352 ret = __intel_set_mode_checks(state);
12353 if (ret < 0)
12354 return ret;
12355
Ander Conselvan de Oliveirad4afb8c2015-04-21 17:13:22 +030012356 ret = drm_atomic_helper_prepare_planes(dev, state);
12357 if (ret)
12358 return ret;
12359
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012360 for_each_crtc_in_state(state, crtc, crtc_state, i) {
12361 if (!needs_modeset(crtc_state))
12362 continue;
Daniel Vetter460da9162013-03-27 00:44:51 +010012363
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012364 if (!crtc_state->enable) {
12365 intel_crtc_disable(crtc);
12366 } else if (crtc->state->enable) {
12367 intel_crtc_disable_planes(crtc);
12368 dev_priv->display.crtc_disable(crtc);
Maarten Lankhorstce22dba2015-04-21 17:12:56 +030012369 }
Daniel Vetterea9d7582012-07-10 10:42:52 +020012370 }
Daniel Vettera6778b32012-07-02 09:56:42 +020012371
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020012372 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
12373 * to set it here already despite that we pass it down the callchain.
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012374 *
12375 * Note we'll need to fix this up when we start tracking multiple
12376 * pipes; here we assume a single modeset_pipe and only track the
12377 * single crtc and mode.
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020012378 */
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012379 if (pipe_config->base.enable && needs_modeset(&pipe_config->base)) {
Ander Conselvan de Oliveira8c7b5cc2015-04-21 17:13:19 +030012380 modeset_crtc->mode = pipe_config->base.mode;
Ville Syrjäläc326c0a2013-10-28 12:53:41 +020012381
12382 /*
12383 * Calculate and store various constants which
12384 * are later needed by vblank and swap-completion
12385 * timestamping. They are derived from true hwmode.
12386 */
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012387 drm_calc_timestamping_constants(modeset_crtc,
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012388 &pipe_config->base.adjusted_mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010012389 }
Daniel Vetter7758a112012-07-08 19:40:39 +020012390
Daniel Vetterea9d7582012-07-10 10:42:52 +020012391 /* Only after disabling all output pipelines that will be changed can we
12392 * update the the output configuration. */
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012393 intel_modeset_update_state(state);
Daniel Vetterea9d7582012-07-10 10:42:52 +020012394
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +030012395 /* The state has been swaped above, so state actually contains the
12396 * old state now. */
12397
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +030012398 modeset_update_crtc_power_domains(state);
Daniel Vetter47fab732012-10-26 10:58:18 +020012399
Ander Conselvan de Oliveirad4afb8c2015-04-21 17:13:22 +030012400 drm_atomic_helper_commit_planes(dev, state);
Daniel Vettera6778b32012-07-02 09:56:42 +020012401
12402 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012403 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +030012404 if (!needs_modeset(crtc->state) || !crtc->state->enable)
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012405 continue;
Ville Syrjälä80715b22014-05-15 20:23:23 +030012406
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012407 update_scanline_offset(to_intel_crtc(crtc));
12408
12409 dev_priv->display.crtc_enable(crtc);
12410 intel_crtc_enable_planes(crtc);
Ville Syrjälä80715b22014-05-15 20:23:23 +030012411 }
Daniel Vettera6778b32012-07-02 09:56:42 +020012412
Daniel Vettera6778b32012-07-02 09:56:42 +020012413 /* FIXME: add subpixel order */
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012414
Ander Conselvan de Oliveirad4afb8c2015-04-21 17:13:22 +030012415 drm_atomic_helper_cleanup_planes(dev, state);
12416
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030012417 drm_atomic_state_free(state);
12418
Ander Conselvan de Oliveira9eb45f22015-04-21 17:13:07 +030012419 return 0;
Daniel Vettera6778b32012-07-02 09:56:42 +020012420}
12421
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012422static int intel_set_mode_with_config(struct drm_crtc *crtc,
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012423 struct intel_crtc_state *pipe_config)
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012424{
12425 int ret;
12426
Ander Conselvan de Oliveira8c7b5cc2015-04-21 17:13:19 +030012427 ret = __intel_set_mode(crtc, pipe_config);
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012428
12429 if (ret == 0)
12430 intel_modeset_check_state(crtc->dev);
12431
12432 return ret;
12433}
12434
Damien Lespiaue7457a92013-08-08 22:28:59 +010012435static int intel_set_mode(struct drm_crtc *crtc,
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012436 struct drm_atomic_state *state)
Daniel Vetterf30da182013-04-11 20:22:50 +020012437{
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012438 struct intel_crtc_state *pipe_config;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012439 int ret = 0;
Daniel Vetterf30da182013-04-11 20:22:50 +020012440
Ander Conselvan de Oliveira8c7b5cc2015-04-21 17:13:19 +030012441 pipe_config = intel_modeset_compute_config(crtc, state);
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012442 if (IS_ERR(pipe_config)) {
12443 ret = PTR_ERR(pipe_config);
12444 goto out;
12445 }
Daniel Vetterf30da182013-04-11 20:22:50 +020012446
Ander Conselvan de Oliveira8c7b5cc2015-04-21 17:13:19 +030012447 ret = intel_set_mode_with_config(crtc, pipe_config);
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012448 if (ret)
12449 goto out;
12450
12451out:
12452 return ret;
Daniel Vetterf30da182013-04-11 20:22:50 +020012453}
12454
Chris Wilsonc0c36b942012-12-19 16:08:43 +000012455void intel_crtc_restore_mode(struct drm_crtc *crtc)
12456{
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012457 struct drm_device *dev = crtc->dev;
12458 struct drm_atomic_state *state;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030012459 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012460 struct intel_encoder *encoder;
12461 struct intel_connector *connector;
12462 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030012463 struct intel_crtc_state *crtc_state;
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030012464 int ret;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012465
12466 state = drm_atomic_state_alloc(dev);
12467 if (!state) {
12468 DRM_DEBUG_KMS("[CRTC:%d] mode restore failed, out of memory",
12469 crtc->base.id);
12470 return;
12471 }
12472
12473 state->acquire_ctx = dev->mode_config.acquire_ctx;
12474
12475 /* The force restore path in the HW readout code relies on the staged
12476 * config still keeping the user requested config while the actual
12477 * state has been overwritten by the configuration read from HW. We
12478 * need to copy the staged config to the atomic state, otherwise the
12479 * mode set will just reapply the state the HW is already in. */
12480 for_each_intel_encoder(dev, encoder) {
12481 if (&encoder->new_crtc->base != crtc)
12482 continue;
12483
12484 for_each_intel_connector(dev, connector) {
12485 if (connector->new_encoder != encoder)
12486 continue;
12487
12488 connector_state = drm_atomic_get_connector_state(state, &connector->base);
12489 if (IS_ERR(connector_state)) {
12490 DRM_DEBUG_KMS("Failed to add [CONNECTOR:%d:%s] to state: %ld\n",
12491 connector->base.base.id,
12492 connector->base.name,
12493 PTR_ERR(connector_state));
12494 continue;
12495 }
12496
12497 connector_state->crtc = crtc;
12498 connector_state->best_encoder = &encoder->base;
12499 }
12500 }
12501
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030012502 for_each_intel_crtc(dev, intel_crtc) {
12503 if (intel_crtc->new_enabled == intel_crtc->base.enabled)
12504 continue;
12505
12506 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
12507 if (IS_ERR(crtc_state)) {
12508 DRM_DEBUG_KMS("Failed to add [CRTC:%d] to state: %ld\n",
12509 intel_crtc->base.base.id,
12510 PTR_ERR(crtc_state));
12511 continue;
12512 }
12513
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020012514 crtc_state->base.active = crtc_state->base.enable =
12515 intel_crtc->new_enabled;
Ander Conselvan de Oliveira8c7b5cc2015-04-21 17:13:19 +030012516
12517 if (&intel_crtc->base == crtc)
12518 drm_mode_copy(&crtc_state->base.mode, &crtc->mode);
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030012519 }
12520
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030012521 intel_modeset_setup_plane_state(state, crtc, &crtc->mode,
12522 crtc->primary->fb, crtc->x, crtc->y);
12523
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030012524 ret = intel_set_mode(crtc, state);
12525 if (ret)
12526 drm_atomic_state_free(state);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000012527}
12528
Daniel Vetter25c5b262012-07-08 22:08:04 +020012529#undef for_each_intel_crtc_masked
12530
Ander Conselvan de Oliveirab7885262015-04-21 17:13:14 +030012531static bool intel_connector_in_mode_set(struct intel_connector *connector,
12532 struct drm_mode_set *set)
12533{
12534 int ro;
12535
12536 for (ro = 0; ro < set->num_connectors; ro++)
12537 if (set->connectors[ro] == &connector->base)
12538 return true;
12539
12540 return false;
12541}
12542
Daniel Vetter2e431052012-07-04 22:42:15 +020012543static int
Daniel Vetter9a935852012-07-05 22:34:27 +020012544intel_modeset_stage_output_state(struct drm_device *dev,
12545 struct drm_mode_set *set,
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020012546 struct drm_atomic_state *state)
Daniel Vetter50f56112012-07-02 09:35:43 +020012547{
Daniel Vetter9a935852012-07-05 22:34:27 +020012548 struct intel_connector *connector;
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030012549 struct drm_connector *drm_connector;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020012550 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030012551 struct drm_crtc *crtc;
12552 struct drm_crtc_state *crtc_state;
12553 int i, ret;
Daniel Vetter50f56112012-07-02 09:35:43 +020012554
Damien Lespiau9abdda72013-02-13 13:29:23 +000012555 /* The upper layers ensure that we either disable a crtc or have a list
Daniel Vetter9a935852012-07-05 22:34:27 +020012556 * of connectors. For paranoia, double-check this. */
12557 WARN_ON(!set->fb && (set->num_connectors != 0));
12558 WARN_ON(set->fb && (set->num_connectors == 0));
12559
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020012560 for_each_intel_connector(dev, connector) {
Ander Conselvan de Oliveirab7885262015-04-21 17:13:14 +030012561 bool in_mode_set = intel_connector_in_mode_set(connector, set);
12562
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030012563 if (!in_mode_set && connector->base.state->crtc != set->crtc)
12564 continue;
12565
12566 connector_state =
12567 drm_atomic_get_connector_state(state, &connector->base);
12568 if (IS_ERR(connector_state))
12569 return PTR_ERR(connector_state);
12570
Ander Conselvan de Oliveirab7885262015-04-21 17:13:14 +030012571 if (in_mode_set) {
12572 int pipe = to_intel_crtc(set->crtc)->pipe;
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030012573 connector_state->best_encoder =
12574 &intel_find_encoder(connector, pipe)->base;
Daniel Vetter50f56112012-07-02 09:35:43 +020012575 }
12576
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030012577 if (connector->base.state->crtc != set->crtc)
Ander Conselvan de Oliveirab7885262015-04-21 17:13:14 +030012578 continue;
12579
Daniel Vetter9a935852012-07-05 22:34:27 +020012580 /* If we disable the crtc, disable all its connectors. Also, if
12581 * the connector is on the changing crtc but not on the new
12582 * connector list, disable it. */
Ander Conselvan de Oliveirab7885262015-04-21 17:13:14 +030012583 if (!set->fb || !in_mode_set) {
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030012584 connector_state->best_encoder = NULL;
Daniel Vetter9a935852012-07-05 22:34:27 +020012585
12586 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
12587 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030012588 connector->base.name);
Daniel Vetter9a935852012-07-05 22:34:27 +020012589 }
Daniel Vetter9a935852012-07-05 22:34:27 +020012590 }
12591 /* connector->new_encoder is now updated for all connectors. */
12592
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030012593 for_each_connector_in_state(state, drm_connector, connector_state, i) {
12594 connector = to_intel_connector(drm_connector);
Ville Syrjälä76688512014-01-10 11:28:06 +020012595
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030012596 if (!connector_state->best_encoder) {
12597 ret = drm_atomic_set_crtc_for_connector(connector_state,
12598 NULL);
12599 if (ret)
12600 return ret;
12601
Daniel Vetter50f56112012-07-02 09:35:43 +020012602 continue;
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030012603 }
Daniel Vetter50f56112012-07-02 09:35:43 +020012604
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030012605 if (intel_connector_in_mode_set(connector, set)) {
12606 struct drm_crtc *crtc = connector->base.state->crtc;
12607
12608 /* If this connector was in a previous crtc, add it
12609 * to the state. We might need to disable it. */
12610 if (crtc) {
12611 crtc_state =
12612 drm_atomic_get_crtc_state(state, crtc);
12613 if (IS_ERR(crtc_state))
12614 return PTR_ERR(crtc_state);
12615 }
12616
12617 ret = drm_atomic_set_crtc_for_connector(connector_state,
12618 set->crtc);
12619 if (ret)
12620 return ret;
12621 }
Daniel Vetter50f56112012-07-02 09:35:43 +020012622
12623 /* Make sure the new CRTC will work with the encoder */
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030012624 if (!drm_encoder_crtc_ok(connector_state->best_encoder,
12625 connector_state->crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020012626 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +020012627 }
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020012628
Daniel Vetter9a935852012-07-05 22:34:27 +020012629 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
12630 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030012631 connector->base.name,
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030012632 connector_state->crtc->base.id);
12633
12634 if (connector_state->best_encoder != &connector->encoder->base)
12635 connector->encoder =
12636 to_intel_encoder(connector_state->best_encoder);
Daniel Vetter9a935852012-07-05 22:34:27 +020012637 }
12638
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030012639 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020012640 bool has_connectors;
12641
Ander Conselvan de Oliveirad5432a9d2015-04-21 17:13:15 +030012642 ret = drm_atomic_add_affected_connectors(state, crtc);
12643 if (ret)
12644 return ret;
Paulo Zanoni5a65f352014-01-07 14:55:53 -020012645
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020012646 has_connectors = !!drm_atomic_connectors_for_crtc(state, crtc);
12647 if (has_connectors != crtc_state->enable)
12648 crtc_state->enable =
12649 crtc_state->active = has_connectors;
Ville Syrjälä76688512014-01-10 11:28:06 +020012650 }
12651
Ander Conselvan de Oliveira8c7b5cc2015-04-21 17:13:19 +030012652 ret = intel_modeset_setup_plane_state(state, set->crtc, set->mode,
12653 set->fb, set->x, set->y);
12654 if (ret)
12655 return ret;
12656
12657 crtc_state = drm_atomic_get_crtc_state(state, set->crtc);
12658 if (IS_ERR(crtc_state))
12659 return PTR_ERR(crtc_state);
12660
12661 if (set->mode)
12662 drm_mode_copy(&crtc_state->mode, set->mode);
12663
12664 if (set->num_connectors)
12665 crtc_state->active = true;
12666
Daniel Vetter2e431052012-07-04 22:42:15 +020012667 return 0;
12668}
12669
Ander Conselvan de Oliveirabb546622015-04-21 17:13:13 +030012670static bool primary_plane_visible(struct drm_crtc *crtc)
12671{
12672 struct intel_plane_state *plane_state =
12673 to_intel_plane_state(crtc->primary->state);
12674
12675 return plane_state->visible;
12676}
12677
Daniel Vetter2e431052012-07-04 22:42:15 +020012678static int intel_crtc_set_config(struct drm_mode_set *set)
12679{
12680 struct drm_device *dev;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012681 struct drm_atomic_state *state = NULL;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012682 struct intel_crtc_state *pipe_config;
Ander Conselvan de Oliveirabb546622015-04-21 17:13:13 +030012683 bool primary_plane_was_visible;
Daniel Vetter2e431052012-07-04 22:42:15 +020012684 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +020012685
Daniel Vetter8d3e3752012-07-05 16:09:09 +020012686 BUG_ON(!set);
12687 BUG_ON(!set->crtc);
12688 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +020012689
Daniel Vetter7e53f3a2013-01-21 10:52:17 +010012690 /* Enforce sane interface api - has been abused by the fb helper. */
12691 BUG_ON(!set->mode && set->fb);
12692 BUG_ON(set->fb && set->num_connectors == 0);
Daniel Vetter431e50f2012-07-10 17:53:42 +020012693
Daniel Vetter2e431052012-07-04 22:42:15 +020012694 if (set->fb) {
12695 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
12696 set->crtc->base.id, set->fb->base.id,
12697 (int)set->num_connectors, set->x, set->y);
12698 } else {
12699 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +020012700 }
12701
12702 dev = set->crtc->dev;
12703
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012704 state = drm_atomic_state_alloc(dev);
Ander Conselvan de Oliveira7cbf41d2015-04-21 17:13:16 +030012705 if (!state)
12706 return -ENOMEM;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012707
12708 state->acquire_ctx = dev->mode_config.acquire_ctx;
12709
Ander Conselvan de Oliveira462a4252015-04-21 17:13:00 +030012710 ret = intel_modeset_stage_output_state(dev, set, state);
Daniel Vetter2e431052012-07-04 22:42:15 +020012711 if (ret)
Ander Conselvan de Oliveira7cbf41d2015-04-21 17:13:16 +030012712 goto out;
Daniel Vetter2e431052012-07-04 22:42:15 +020012713
Ander Conselvan de Oliveira8c7b5cc2015-04-21 17:13:19 +030012714 pipe_config = intel_modeset_compute_config(set->crtc, state);
Jesse Barnes20664592014-11-05 14:26:09 -080012715 if (IS_ERR(pipe_config)) {
Matt Roper6ac04832014-11-17 09:59:28 -080012716 ret = PTR_ERR(pipe_config);
Ander Conselvan de Oliveira7cbf41d2015-04-21 17:13:16 +030012717 goto out;
Jesse Barnes20664592014-11-05 14:26:09 -080012718 }
Jesse Barnes50f52752014-11-07 13:11:00 -080012719
Jesse Barnes1f9954d2014-11-05 14:26:10 -080012720 intel_update_pipe_size(to_intel_crtc(set->crtc));
12721
Ander Conselvan de Oliveirabb546622015-04-21 17:13:13 +030012722 primary_plane_was_visible = primary_plane_visible(set->crtc);
Matt Roper3b150f02014-05-29 08:06:53 -070012723
Ander Conselvan de Oliveira8c7b5cc2015-04-21 17:13:19 +030012724 ret = intel_set_mode_with_config(set->crtc, pipe_config);
Ander Conselvan de Oliveirabb546622015-04-21 17:13:13 +030012725
12726 if (ret == 0 &&
12727 pipe_config->base.enable &&
12728 pipe_config->base.planes_changed &&
12729 !needs_modeset(&pipe_config->base)) {
12730 struct intel_crtc *intel_crtc = to_intel_crtc(set->crtc);
Matt Roper3b150f02014-05-29 08:06:53 -070012731
12732 /*
12733 * We need to make sure the primary plane is re-enabled if it
12734 * has previously been turned off.
12735 */
Ander Conselvan de Oliveirabb546622015-04-21 17:13:13 +030012736 if (ret == 0 && !primary_plane_was_visible &&
12737 primary_plane_visible(set->crtc)) {
Matt Roper3b150f02014-05-29 08:06:53 -070012738 WARN_ON(!intel_crtc->active);
Maarten Lankhorst87d43002015-04-21 17:12:54 +030012739 intel_post_enable_primary(set->crtc);
Matt Roper3b150f02014-05-29 08:06:53 -070012740 }
12741
Jesse Barnes7ca51a32014-01-07 13:50:49 -080012742 /*
12743 * In the fastboot case this may be our only check of the
12744 * state after boot. It would be better to only do it on
12745 * the first update, but we don't have a nice way of doing that
12746 * (and really, set_config isn't used much for high freq page
12747 * flipping, so increasing its cost here shouldn't be a big
12748 * deal).
12749 */
Jani Nikulad330a952014-01-21 11:24:25 +020012750 if (i915.fastboot && ret == 0)
Jesse Barnes7ca51a32014-01-07 13:50:49 -080012751 intel_modeset_check_state(set->crtc->dev);
Daniel Vetter50f56112012-07-02 09:35:43 +020012752 }
12753
Chris Wilson2d05eae2013-05-03 17:36:25 +010012754 if (ret) {
Daniel Vetterbf67dfe2013-06-25 11:06:52 +020012755 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
12756 set->crtc->base.id, ret);
Chris Wilson2d05eae2013-05-03 17:36:25 +010012757 }
Daniel Vetter50f56112012-07-02 09:35:43 +020012758
Ander Conselvan de Oliveira7cbf41d2015-04-21 17:13:16 +030012759out:
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030012760 if (ret)
12761 drm_atomic_state_free(state);
Daniel Vetter50f56112012-07-02 09:35:43 +020012762 return ret;
12763}
12764
Chris Wilsonf6e5b162011-04-12 18:06:51 +010012765static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010012766 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +020012767 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010012768 .destroy = intel_crtc_destroy,
12769 .page_flip = intel_crtc_page_flip,
Matt Roper13568372015-01-21 16:35:47 -080012770 .atomic_duplicate_state = intel_crtc_duplicate_state,
12771 .atomic_destroy_state = intel_crtc_destroy_state,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010012772};
12773
Daniel Vetter53589012013-06-05 13:34:16 +020012774static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
12775 struct intel_shared_dpll *pll,
12776 struct intel_dpll_hw_state *hw_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010012777{
Daniel Vetter53589012013-06-05 13:34:16 +020012778 uint32_t val;
12779
Daniel Vetterf458ebb2014-09-30 10:56:39 +020012780 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_PLLS))
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030012781 return false;
12782
Daniel Vetter53589012013-06-05 13:34:16 +020012783 val = I915_READ(PCH_DPLL(pll->id));
Daniel Vetter66e985c2013-06-05 13:34:20 +020012784 hw_state->dpll = val;
12785 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
12786 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
Daniel Vetter53589012013-06-05 13:34:16 +020012787
12788 return val & DPLL_VCO_ENABLE;
12789}
12790
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020012791static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
12792 struct intel_shared_dpll *pll)
12793{
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020012794 I915_WRITE(PCH_FP0(pll->id), pll->config.hw_state.fp0);
12795 I915_WRITE(PCH_FP1(pll->id), pll->config.hw_state.fp1);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020012796}
12797
Daniel Vettere7b903d2013-06-05 13:34:14 +020012798static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
12799 struct intel_shared_dpll *pll)
12800{
Daniel Vettere7b903d2013-06-05 13:34:14 +020012801 /* PCH refclock must be enabled first */
Paulo Zanoni89eff4b2014-01-08 11:12:28 -020012802 ibx_assert_pch_refclk_enabled(dev_priv);
Daniel Vettere7b903d2013-06-05 13:34:14 +020012803
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020012804 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020012805
12806 /* Wait for the clocks to stabilize. */
12807 POSTING_READ(PCH_DPLL(pll->id));
12808 udelay(150);
12809
12810 /* The pixel multiplier can only be updated once the
12811 * DPLL is enabled and the clocks are stable.
12812 *
12813 * So write it again.
12814 */
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020012815 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020012816 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020012817 udelay(200);
12818}
12819
12820static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
12821 struct intel_shared_dpll *pll)
12822{
12823 struct drm_device *dev = dev_priv->dev;
12824 struct intel_crtc *crtc;
Daniel Vettere7b903d2013-06-05 13:34:14 +020012825
12826 /* Make sure no transcoder isn't still depending on us. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010012827 for_each_intel_crtc(dev, crtc) {
Daniel Vettere7b903d2013-06-05 13:34:14 +020012828 if (intel_crtc_to_shared_dpll(crtc) == pll)
12829 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
12830 }
12831
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020012832 I915_WRITE(PCH_DPLL(pll->id), 0);
12833 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020012834 udelay(200);
12835}
12836
Daniel Vetter46edb022013-06-05 13:34:12 +020012837static char *ibx_pch_dpll_names[] = {
12838 "PCH DPLL A",
12839 "PCH DPLL B",
12840};
12841
Daniel Vetter7c74ade2013-06-05 13:34:11 +020012842static void ibx_pch_dpll_init(struct drm_device *dev)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010012843{
Daniel Vettere7b903d2013-06-05 13:34:14 +020012844 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010012845 int i;
12846
Daniel Vetter7c74ade2013-06-05 13:34:11 +020012847 dev_priv->num_shared_dpll = 2;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010012848
Daniel Vettere72f9fb2013-06-05 13:34:06 +020012849 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
Daniel Vetter46edb022013-06-05 13:34:12 +020012850 dev_priv->shared_dplls[i].id = i;
12851 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020012852 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
Daniel Vettere7b903d2013-06-05 13:34:14 +020012853 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
12854 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
Daniel Vetter53589012013-06-05 13:34:16 +020012855 dev_priv->shared_dplls[i].get_hw_state =
12856 ibx_pch_dpll_get_hw_state;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010012857 }
12858}
12859
Daniel Vetter7c74ade2013-06-05 13:34:11 +020012860static void intel_shared_dpll_init(struct drm_device *dev)
12861{
Daniel Vettere7b903d2013-06-05 13:34:14 +020012862 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter7c74ade2013-06-05 13:34:11 +020012863
Daniel Vetter9cd86932014-06-25 22:01:57 +030012864 if (HAS_DDI(dev))
12865 intel_ddi_pll_init(dev);
12866 else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
Daniel Vetter7c74ade2013-06-05 13:34:11 +020012867 ibx_pch_dpll_init(dev);
12868 else
12869 dev_priv->num_shared_dpll = 0;
12870
12871 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
Daniel Vetter7c74ade2013-06-05 13:34:11 +020012872}
12873
Matt Roper6beb8c232014-12-01 15:40:14 -080012874/**
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +000012875 * intel_wm_need_update - Check whether watermarks need updating
12876 * @plane: drm plane
12877 * @state: new plane state
12878 *
12879 * Check current plane state versus the new one to determine whether
12880 * watermarks need to be recalculated.
12881 *
12882 * Returns true or false.
12883 */
12884bool intel_wm_need_update(struct drm_plane *plane,
12885 struct drm_plane_state *state)
12886{
12887 /* Update watermarks on tiling changes. */
12888 if (!plane->state->fb || !state->fb ||
12889 plane->state->fb->modifier[0] != state->fb->modifier[0] ||
12890 plane->state->rotation != state->rotation)
12891 return true;
12892
12893 return false;
12894}
12895
12896/**
Matt Roper6beb8c232014-12-01 15:40:14 -080012897 * intel_prepare_plane_fb - Prepare fb for usage on plane
12898 * @plane: drm plane to prepare for
12899 * @fb: framebuffer to prepare for presentation
12900 *
12901 * Prepares a framebuffer for usage on a display plane. Generally this
12902 * involves pinning the underlying object and updating the frontbuffer tracking
12903 * bits. Some older platforms need special physical address handling for
12904 * cursor planes.
12905 *
12906 * Returns 0 on success, negative error code on failure.
12907 */
12908int
12909intel_prepare_plane_fb(struct drm_plane *plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +000012910 struct drm_framebuffer *fb,
12911 const struct drm_plane_state *new_state)
Matt Roper465c1202014-05-29 08:06:54 -070012912{
12913 struct drm_device *dev = plane->dev;
Matt Roper6beb8c232014-12-01 15:40:14 -080012914 struct intel_plane *intel_plane = to_intel_plane(plane);
12915 enum pipe pipe = intel_plane->pipe;
12916 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
12917 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->fb);
12918 unsigned frontbuffer_bits = 0;
12919 int ret = 0;
Matt Roper465c1202014-05-29 08:06:54 -070012920
Matt Roperea2c67b2014-12-23 10:41:52 -080012921 if (!obj)
Matt Roper465c1202014-05-29 08:06:54 -070012922 return 0;
12923
Matt Roper6beb8c232014-12-01 15:40:14 -080012924 switch (plane->type) {
12925 case DRM_PLANE_TYPE_PRIMARY:
12926 frontbuffer_bits = INTEL_FRONTBUFFER_PRIMARY(pipe);
12927 break;
12928 case DRM_PLANE_TYPE_CURSOR:
12929 frontbuffer_bits = INTEL_FRONTBUFFER_CURSOR(pipe);
12930 break;
12931 case DRM_PLANE_TYPE_OVERLAY:
12932 frontbuffer_bits = INTEL_FRONTBUFFER_SPRITE(pipe);
12933 break;
12934 }
Matt Roper465c1202014-05-29 08:06:54 -070012935
Matt Roper4c345742014-07-09 16:22:10 -070012936 mutex_lock(&dev->struct_mutex);
Matt Roper465c1202014-05-29 08:06:54 -070012937
Matt Roper6beb8c232014-12-01 15:40:14 -080012938 if (plane->type == DRM_PLANE_TYPE_CURSOR &&
12939 INTEL_INFO(dev)->cursor_needs_physical) {
12940 int align = IS_I830(dev) ? 16 * 1024 : 256;
12941 ret = i915_gem_object_attach_phys(obj, align);
12942 if (ret)
12943 DRM_DEBUG_KMS("failed to attach phys object\n");
12944 } else {
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000012945 ret = intel_pin_and_fence_fb_obj(plane, fb, new_state, NULL);
Matt Roper6beb8c232014-12-01 15:40:14 -080012946 }
12947
12948 if (ret == 0)
12949 i915_gem_track_fb(old_obj, obj, frontbuffer_bits);
12950
12951 mutex_unlock(&dev->struct_mutex);
12952
12953 return ret;
12954}
12955
Matt Roper38f3ce32014-12-02 07:45:25 -080012956/**
12957 * intel_cleanup_plane_fb - Cleans up an fb after plane use
12958 * @plane: drm plane to clean up for
12959 * @fb: old framebuffer that was on plane
12960 *
12961 * Cleans up a framebuffer that has just been removed from a plane.
12962 */
12963void
12964intel_cleanup_plane_fb(struct drm_plane *plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +000012965 struct drm_framebuffer *fb,
12966 const struct drm_plane_state *old_state)
Matt Roper38f3ce32014-12-02 07:45:25 -080012967{
12968 struct drm_device *dev = plane->dev;
12969 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
12970
12971 if (WARN_ON(!obj))
12972 return;
12973
12974 if (plane->type != DRM_PLANE_TYPE_CURSOR ||
12975 !INTEL_INFO(dev)->cursor_needs_physical) {
12976 mutex_lock(&dev->struct_mutex);
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000012977 intel_unpin_fb_obj(fb, old_state);
Matt Roper38f3ce32014-12-02 07:45:25 -080012978 mutex_unlock(&dev->struct_mutex);
12979 }
Matt Roper465c1202014-05-29 08:06:54 -070012980}
12981
Chandra Konduru6156a452015-04-27 13:48:39 -070012982int
12983skl_max_scale(struct intel_crtc *intel_crtc, struct intel_crtc_state *crtc_state)
12984{
12985 int max_scale;
12986 struct drm_device *dev;
12987 struct drm_i915_private *dev_priv;
12988 int crtc_clock, cdclk;
12989
12990 if (!intel_crtc || !crtc_state)
12991 return DRM_PLANE_HELPER_NO_SCALING;
12992
12993 dev = intel_crtc->base.dev;
12994 dev_priv = dev->dev_private;
12995 crtc_clock = crtc_state->base.adjusted_mode.crtc_clock;
12996 cdclk = dev_priv->display.get_display_clock_speed(dev);
12997
12998 if (!crtc_clock || !cdclk)
12999 return DRM_PLANE_HELPER_NO_SCALING;
13000
13001 /*
13002 * skl max scale is lower of:
13003 * close to 3 but not 3, -1 is for that purpose
13004 * or
13005 * cdclk/crtc_clock
13006 */
13007 max_scale = min((1 << 16) * 3 - 1, (1 << 8) * ((cdclk << 8) / crtc_clock));
13008
13009 return max_scale;
13010}
13011
Matt Roper465c1202014-05-29 08:06:54 -070013012static int
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013013intel_check_primary_plane(struct drm_plane *plane,
13014 struct intel_plane_state *state)
Matt Roper465c1202014-05-29 08:06:54 -070013015{
Matt Roper32b7eee2014-12-24 07:59:06 -080013016 struct drm_device *dev = plane->dev;
13017 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roper2b875c22014-12-01 15:40:13 -080013018 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080013019 struct intel_crtc *intel_crtc;
Chandra Konduru6156a452015-04-27 13:48:39 -070013020 struct intel_crtc_state *crtc_state;
Matt Roper2b875c22014-12-01 15:40:13 -080013021 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013022 struct drm_rect *dest = &state->dst;
13023 struct drm_rect *src = &state->src;
13024 const struct drm_rect *clip = &state->clip;
Sonika Jindald8106362015-04-10 14:37:28 +053013025 bool can_position = false;
Chandra Konduru6156a452015-04-27 13:48:39 -070013026 int max_scale = DRM_PLANE_HELPER_NO_SCALING;
13027 int min_scale = DRM_PLANE_HELPER_NO_SCALING;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013028 int ret;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013029
Matt Roperea2c67b2014-12-23 10:41:52 -080013030 crtc = crtc ? crtc : plane->crtc;
13031 intel_crtc = to_intel_crtc(crtc);
Chandra Konduru6156a452015-04-27 13:48:39 -070013032 crtc_state = state->base.state ?
13033 intel_atomic_get_crtc_state(state->base.state, intel_crtc) : NULL;
Matt Roperea2c67b2014-12-23 10:41:52 -080013034
Chandra Konduru6156a452015-04-27 13:48:39 -070013035 if (INTEL_INFO(dev)->gen >= 9) {
13036 min_scale = 1;
13037 max_scale = skl_max_scale(intel_crtc, crtc_state);
Sonika Jindald8106362015-04-10 14:37:28 +053013038 can_position = true;
Chandra Konduru6156a452015-04-27 13:48:39 -070013039 }
Sonika Jindald8106362015-04-10 14:37:28 +053013040
Matt Roperc59cb172014-12-01 15:40:16 -080013041 ret = drm_plane_helper_check_update(plane, crtc, fb,
13042 src, dest, clip,
Chandra Konduru6156a452015-04-27 13:48:39 -070013043 min_scale,
13044 max_scale,
Sonika Jindald8106362015-04-10 14:37:28 +053013045 can_position, true,
13046 &state->visible);
Matt Roperc59cb172014-12-01 15:40:16 -080013047 if (ret)
13048 return ret;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013049
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013050 if (intel_crtc->active) {
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030013051 struct intel_plane_state *old_state =
13052 to_intel_plane_state(plane->state);
13053
Matt Roper32b7eee2014-12-24 07:59:06 -080013054 intel_crtc->atomic.wait_for_flips = true;
13055
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013056 /*
13057 * FBC does not work on some platforms for rotated
13058 * planes, so disable it when rotation is not 0 and
13059 * update it when rotation is set back to 0.
13060 *
13061 * FIXME: This is redundant with the fbc update done in
13062 * the primary plane enable function except that that
13063 * one is done too late. We eventually need to unify
13064 * this.
13065 */
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030013066 if (state->visible &&
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013067 INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev) &&
Paulo Zanonie35fef22015-02-09 14:46:29 -020013068 dev_priv->fbc.crtc == intel_crtc &&
Matt Roper8e7d6882015-01-21 16:35:41 -080013069 state->base.rotation != BIT(DRM_ROTATE_0)) {
Matt Roper32b7eee2014-12-24 07:59:06 -080013070 intel_crtc->atomic.disable_fbc = true;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013071 }
13072
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030013073 if (state->visible && !old_state->visible) {
Matt Roper32b7eee2014-12-24 07:59:06 -080013074 /*
13075 * BDW signals flip done immediately if the plane
13076 * is disabled, even if the plane enable is already
13077 * armed to occur at the next vblank :(
13078 */
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030013079 if (IS_BROADWELL(dev))
Matt Roper32b7eee2014-12-24 07:59:06 -080013080 intel_crtc->atomic.wait_vblank = true;
13081 }
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013082
Matt Roper32b7eee2014-12-24 07:59:06 -080013083 intel_crtc->atomic.fb_bits |=
13084 INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
13085
13086 intel_crtc->atomic.update_fbc = true;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +000013087
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +000013088 if (intel_wm_need_update(plane, &state->base))
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +000013089 intel_crtc->atomic.update_wm = true;
Matt Roperc59cb172014-12-01 15:40:16 -080013090 }
13091
Chandra Konduru6156a452015-04-27 13:48:39 -070013092 if (INTEL_INFO(dev)->gen >= 9) {
13093 ret = skl_update_scaler_users(intel_crtc, crtc_state,
13094 to_intel_plane(plane), state, 0);
13095 if (ret)
13096 return ret;
13097 }
13098
Matt Roperc59cb172014-12-01 15:40:16 -080013099 return 0;
Matt Roper465c1202014-05-29 08:06:54 -070013100}
13101
Sonika Jindal48404c12014-08-22 14:06:04 +053013102static void
13103intel_commit_primary_plane(struct drm_plane *plane,
13104 struct intel_plane_state *state)
13105{
Matt Roper2b875c22014-12-01 15:40:13 -080013106 struct drm_crtc *crtc = state->base.crtc;
13107 struct drm_framebuffer *fb = state->base.fb;
13108 struct drm_device *dev = plane->dev;
Sonika Jindal48404c12014-08-22 14:06:04 +053013109 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperea2c67b2014-12-23 10:41:52 -080013110 struct intel_crtc *intel_crtc;
Sonika Jindalce54d852014-08-21 11:44:39 +053013111 struct drm_rect *src = &state->src;
Matt Ropercf4c7c12014-12-04 10:27:42 -080013112
Matt Roperea2c67b2014-12-23 10:41:52 -080013113 crtc = crtc ? crtc : plane->crtc;
13114 intel_crtc = to_intel_crtc(crtc);
13115
Matt Ropercf4c7c12014-12-04 10:27:42 -080013116 plane->fb = fb;
Sonika Jindalce54d852014-08-21 11:44:39 +053013117 crtc->x = src->x1 >> 16;
Matt Roper465c1202014-05-29 08:06:54 -070013118 crtc->y = src->y1 >> 16;
13119
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013120 if (intel_crtc->active) {
Maarten Lankhorst27321ae2015-04-21 17:12:52 +030013121 if (state->visible)
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013122 /* FIXME: kill this fastboot hack */
13123 intel_update_pipe_size(intel_crtc);
13124
Maarten Lankhorst27321ae2015-04-21 17:12:52 +030013125 dev_priv->display.update_primary_plane(crtc, plane->fb,
13126 crtc->x, crtc->y);
Matt Roper32b7eee2014-12-24 07:59:06 -080013127 }
13128}
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013129
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013130static void
13131intel_disable_primary_plane(struct drm_plane *plane,
13132 struct drm_crtc *crtc,
13133 bool force)
13134{
13135 struct drm_device *dev = plane->dev;
13136 struct drm_i915_private *dev_priv = dev->dev_private;
13137
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013138 dev_priv->display.update_primary_plane(crtc, NULL, 0, 0);
13139}
13140
Matt Roper32b7eee2014-12-24 07:59:06 -080013141static void intel_begin_crtc_commit(struct drm_crtc *crtc)
13142{
13143 struct drm_device *dev = crtc->dev;
13144 struct drm_i915_private *dev_priv = dev->dev_private;
13145 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roperea2c67b2014-12-23 10:41:52 -080013146 struct intel_plane *intel_plane;
13147 struct drm_plane *p;
13148 unsigned fb_bits = 0;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013149
Matt Roperea2c67b2014-12-23 10:41:52 -080013150 /* Track fb's for any planes being disabled */
13151 list_for_each_entry(p, &dev->mode_config.plane_list, head) {
13152 intel_plane = to_intel_plane(p);
13153
13154 if (intel_crtc->atomic.disabled_planes &
13155 (1 << drm_plane_index(p))) {
13156 switch (p->type) {
13157 case DRM_PLANE_TYPE_PRIMARY:
13158 fb_bits = INTEL_FRONTBUFFER_PRIMARY(intel_plane->pipe);
13159 break;
13160 case DRM_PLANE_TYPE_CURSOR:
13161 fb_bits = INTEL_FRONTBUFFER_CURSOR(intel_plane->pipe);
13162 break;
13163 case DRM_PLANE_TYPE_OVERLAY:
13164 fb_bits = INTEL_FRONTBUFFER_SPRITE(intel_plane->pipe);
13165 break;
13166 }
13167
13168 mutex_lock(&dev->struct_mutex);
13169 i915_gem_track_fb(intel_fb_obj(p->fb), NULL, fb_bits);
13170 mutex_unlock(&dev->struct_mutex);
13171 }
13172 }
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013173
Matt Roper32b7eee2014-12-24 07:59:06 -080013174 if (intel_crtc->atomic.wait_for_flips)
13175 intel_crtc_wait_for_pending_flips(crtc);
13176
13177 if (intel_crtc->atomic.disable_fbc)
13178 intel_fbc_disable(dev);
13179
13180 if (intel_crtc->atomic.pre_disable_primary)
13181 intel_pre_disable_primary(crtc);
13182
13183 if (intel_crtc->atomic.update_wm)
13184 intel_update_watermarks(crtc);
13185
13186 intel_runtime_pm_get(dev_priv);
Matt Roperc34c9ee2014-12-23 10:41:50 -080013187
13188 /* Perform vblank evasion around commit operation */
13189 if (intel_crtc->active)
13190 intel_crtc->atomic.evade =
13191 intel_pipe_update_start(intel_crtc,
13192 &intel_crtc->atomic.start_vbl_count);
Matt Roper32b7eee2014-12-24 07:59:06 -080013193}
13194
13195static void intel_finish_crtc_commit(struct drm_crtc *crtc)
13196{
13197 struct drm_device *dev = crtc->dev;
13198 struct drm_i915_private *dev_priv = dev->dev_private;
13199 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13200 struct drm_plane *p;
13201
Matt Roperc34c9ee2014-12-23 10:41:50 -080013202 if (intel_crtc->atomic.evade)
13203 intel_pipe_update_end(intel_crtc,
13204 intel_crtc->atomic.start_vbl_count);
13205
Matt Roper32b7eee2014-12-24 07:59:06 -080013206 intel_runtime_pm_put(dev_priv);
13207
13208 if (intel_crtc->atomic.wait_vblank)
13209 intel_wait_for_vblank(dev, intel_crtc->pipe);
13210
13211 intel_frontbuffer_flip(dev, intel_crtc->atomic.fb_bits);
13212
13213 if (intel_crtc->atomic.update_fbc) {
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013214 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020013215 intel_fbc_update(dev);
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013216 mutex_unlock(&dev->struct_mutex);
13217 }
Matt Roper465c1202014-05-29 08:06:54 -070013218
Matt Roper32b7eee2014-12-24 07:59:06 -080013219 if (intel_crtc->atomic.post_enable_primary)
13220 intel_post_enable_primary(crtc);
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013221
Matt Roper32b7eee2014-12-24 07:59:06 -080013222 drm_for_each_legacy_plane(p, &dev->mode_config.plane_list)
13223 if (intel_crtc->atomic.update_sprite_watermarks & drm_plane_index(p))
13224 intel_update_sprite_watermarks(p, crtc, 0, 0, 0,
13225 false, false);
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013226
Matt Roper32b7eee2014-12-24 07:59:06 -080013227 memset(&intel_crtc->atomic, 0, sizeof(intel_crtc->atomic));
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013228}
13229
Matt Ropercf4c7c12014-12-04 10:27:42 -080013230/**
Matt Roper4a3b8762014-12-23 10:41:51 -080013231 * intel_plane_destroy - destroy a plane
13232 * @plane: plane to destroy
Matt Ropercf4c7c12014-12-04 10:27:42 -080013233 *
Matt Roper4a3b8762014-12-23 10:41:51 -080013234 * Common destruction function for all types of planes (primary, cursor,
13235 * sprite).
Matt Ropercf4c7c12014-12-04 10:27:42 -080013236 */
Matt Roper4a3b8762014-12-23 10:41:51 -080013237void intel_plane_destroy(struct drm_plane *plane)
Matt Roper465c1202014-05-29 08:06:54 -070013238{
13239 struct intel_plane *intel_plane = to_intel_plane(plane);
13240 drm_plane_cleanup(plane);
13241 kfree(intel_plane);
13242}
13243
Matt Roper65a3fea2015-01-21 16:35:42 -080013244const struct drm_plane_funcs intel_plane_funcs = {
Matt Roper70a101f2015-04-08 18:56:53 -070013245 .update_plane = drm_atomic_helper_update_plane,
13246 .disable_plane = drm_atomic_helper_disable_plane,
Matt Roper3d7d6512014-06-10 08:28:13 -070013247 .destroy = intel_plane_destroy,
Matt Roperc196e1d2015-01-21 16:35:48 -080013248 .set_property = drm_atomic_helper_plane_set_property,
Matt Ropera98b3432015-01-21 16:35:43 -080013249 .atomic_get_property = intel_plane_atomic_get_property,
13250 .atomic_set_property = intel_plane_atomic_set_property,
Matt Roperea2c67b2014-12-23 10:41:52 -080013251 .atomic_duplicate_state = intel_plane_duplicate_state,
13252 .atomic_destroy_state = intel_plane_destroy_state,
13253
Matt Roper465c1202014-05-29 08:06:54 -070013254};
13255
13256static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
13257 int pipe)
13258{
13259 struct intel_plane *primary;
Matt Roper8e7d6882015-01-21 16:35:41 -080013260 struct intel_plane_state *state;
Matt Roper465c1202014-05-29 08:06:54 -070013261 const uint32_t *intel_primary_formats;
13262 int num_formats;
13263
13264 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
13265 if (primary == NULL)
13266 return NULL;
13267
Matt Roper8e7d6882015-01-21 16:35:41 -080013268 state = intel_create_plane_state(&primary->base);
13269 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080013270 kfree(primary);
13271 return NULL;
13272 }
Matt Roper8e7d6882015-01-21 16:35:41 -080013273 primary->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080013274
Matt Roper465c1202014-05-29 08:06:54 -070013275 primary->can_scale = false;
13276 primary->max_downscale = 1;
Chandra Konduru6156a452015-04-27 13:48:39 -070013277 if (INTEL_INFO(dev)->gen >= 9) {
13278 primary->can_scale = true;
Chandra Konduruaf99ced2015-05-11 14:35:47 -070013279 state->scaler_id = -1;
Chandra Konduru6156a452015-04-27 13:48:39 -070013280 }
Matt Roper465c1202014-05-29 08:06:54 -070013281 primary->pipe = pipe;
13282 primary->plane = pipe;
Matt Roperc59cb172014-12-01 15:40:16 -080013283 primary->check_plane = intel_check_primary_plane;
13284 primary->commit_plane = intel_commit_primary_plane;
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013285 primary->disable_plane = intel_disable_primary_plane;
Chandra Konduru08e221f2015-04-07 15:28:37 -070013286 primary->ckey.flags = I915_SET_COLORKEY_NONE;
Matt Roper465c1202014-05-29 08:06:54 -070013287 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
13288 primary->plane = !pipe;
13289
13290 if (INTEL_INFO(dev)->gen <= 3) {
13291 intel_primary_formats = intel_primary_formats_gen2;
13292 num_formats = ARRAY_SIZE(intel_primary_formats_gen2);
13293 } else {
13294 intel_primary_formats = intel_primary_formats_gen4;
13295 num_formats = ARRAY_SIZE(intel_primary_formats_gen4);
13296 }
13297
13298 drm_universal_plane_init(dev, &primary->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080013299 &intel_plane_funcs,
Matt Roper465c1202014-05-29 08:06:54 -070013300 intel_primary_formats, num_formats,
13301 DRM_PLANE_TYPE_PRIMARY);
Sonika Jindal48404c12014-08-22 14:06:04 +053013302
Sonika Jindal3b7a5112015-04-10 14:37:29 +053013303 if (INTEL_INFO(dev)->gen >= 4)
13304 intel_create_rotation_property(dev, primary);
Sonika Jindal48404c12014-08-22 14:06:04 +053013305
Matt Roperea2c67b2014-12-23 10:41:52 -080013306 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
13307
Matt Roper465c1202014-05-29 08:06:54 -070013308 return &primary->base;
13309}
13310
Sonika Jindal3b7a5112015-04-10 14:37:29 +053013311void intel_create_rotation_property(struct drm_device *dev, struct intel_plane *plane)
13312{
13313 if (!dev->mode_config.rotation_property) {
13314 unsigned long flags = BIT(DRM_ROTATE_0) |
13315 BIT(DRM_ROTATE_180);
13316
13317 if (INTEL_INFO(dev)->gen >= 9)
13318 flags |= BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270);
13319
13320 dev->mode_config.rotation_property =
13321 drm_mode_create_rotation_property(dev, flags);
13322 }
13323 if (dev->mode_config.rotation_property)
13324 drm_object_attach_property(&plane->base.base,
13325 dev->mode_config.rotation_property,
13326 plane->base.state->rotation);
13327}
13328
Matt Roper3d7d6512014-06-10 08:28:13 -070013329static int
Gustavo Padovan852e7872014-09-05 17:22:31 -030013330intel_check_cursor_plane(struct drm_plane *plane,
13331 struct intel_plane_state *state)
Matt Roper3d7d6512014-06-10 08:28:13 -070013332{
Matt Roper2b875c22014-12-01 15:40:13 -080013333 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080013334 struct drm_device *dev = plane->dev;
Matt Roper2b875c22014-12-01 15:40:13 -080013335 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan852e7872014-09-05 17:22:31 -030013336 struct drm_rect *dest = &state->dst;
13337 struct drm_rect *src = &state->src;
13338 const struct drm_rect *clip = &state->clip;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013339 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Matt Roperea2c67b2014-12-23 10:41:52 -080013340 struct intel_crtc *intel_crtc;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013341 unsigned stride;
13342 int ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030013343
Matt Roperea2c67b2014-12-23 10:41:52 -080013344 crtc = crtc ? crtc : plane->crtc;
13345 intel_crtc = to_intel_crtc(crtc);
13346
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013347 ret = drm_plane_helper_check_update(plane, crtc, fb,
Gustavo Padovan852e7872014-09-05 17:22:31 -030013348 src, dest, clip,
13349 DRM_PLANE_HELPER_NO_SCALING,
13350 DRM_PLANE_HELPER_NO_SCALING,
13351 true, true, &state->visible);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013352 if (ret)
13353 return ret;
13354
13355
13356 /* if we want to turn off the cursor ignore width and height */
13357 if (!obj)
Matt Roper32b7eee2014-12-24 07:59:06 -080013358 goto finish;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013359
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013360 /* Check for which cursor types we support */
Matt Roperea2c67b2014-12-23 10:41:52 -080013361 if (!cursor_size_ok(dev, state->base.crtc_w, state->base.crtc_h)) {
13362 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
13363 state->base.crtc_w, state->base.crtc_h);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013364 return -EINVAL;
13365 }
13366
Matt Roperea2c67b2014-12-23 10:41:52 -080013367 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
13368 if (obj->base.size < stride * state->base.crtc_h) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013369 DRM_DEBUG_KMS("buffer is too small\n");
13370 return -ENOMEM;
13371 }
13372
Ville Syrjälä3a656b52015-03-09 21:08:37 +020013373 if (fb->modifier[0] != DRM_FORMAT_MOD_NONE) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013374 DRM_DEBUG_KMS("cursor cannot be tiled\n");
13375 ret = -EINVAL;
13376 }
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013377
Matt Roper32b7eee2014-12-24 07:59:06 -080013378finish:
13379 if (intel_crtc->active) {
Ville Syrjälä3749f462015-03-10 13:15:22 +020013380 if (plane->state->crtc_w != state->base.crtc_w)
Matt Roper32b7eee2014-12-24 07:59:06 -080013381 intel_crtc->atomic.update_wm = true;
13382
13383 intel_crtc->atomic.fb_bits |=
13384 INTEL_FRONTBUFFER_CURSOR(intel_crtc->pipe);
13385 }
13386
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013387 return ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030013388}
13389
Matt Roperf4a2cf22014-12-01 15:40:12 -080013390static void
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013391intel_disable_cursor_plane(struct drm_plane *plane,
13392 struct drm_crtc *crtc,
13393 bool force)
13394{
13395 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13396
13397 if (!force) {
13398 plane->fb = NULL;
13399 intel_crtc->cursor_bo = NULL;
13400 intel_crtc->cursor_addr = 0;
13401 }
13402
13403 intel_crtc_update_cursor(crtc, false);
13404}
13405
13406static void
Gustavo Padovan852e7872014-09-05 17:22:31 -030013407intel_commit_cursor_plane(struct drm_plane *plane,
13408 struct intel_plane_state *state)
13409{
Matt Roper2b875c22014-12-01 15:40:13 -080013410 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080013411 struct drm_device *dev = plane->dev;
13412 struct intel_crtc *intel_crtc;
Matt Roper2b875c22014-12-01 15:40:13 -080013413 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
Gustavo Padovana912f122014-12-01 15:40:10 -080013414 uint32_t addr;
Matt Roper3d7d6512014-06-10 08:28:13 -070013415
Matt Roperea2c67b2014-12-23 10:41:52 -080013416 crtc = crtc ? crtc : plane->crtc;
13417 intel_crtc = to_intel_crtc(crtc);
Sonika Jindala919db92014-10-23 07:41:33 -070013418
Matt Roperea2c67b2014-12-23 10:41:52 -080013419 plane->fb = state->base.fb;
13420 crtc->cursor_x = state->base.crtc_x;
13421 crtc->cursor_y = state->base.crtc_y;
13422
Gustavo Padovana912f122014-12-01 15:40:10 -080013423 if (intel_crtc->cursor_bo == obj)
13424 goto update;
13425
Matt Roperf4a2cf22014-12-01 15:40:12 -080013426 if (!obj)
Gustavo Padovana912f122014-12-01 15:40:10 -080013427 addr = 0;
Matt Roperf4a2cf22014-12-01 15:40:12 -080013428 else if (!INTEL_INFO(dev)->cursor_needs_physical)
Gustavo Padovana912f122014-12-01 15:40:10 -080013429 addr = i915_gem_obj_ggtt_offset(obj);
Matt Roperf4a2cf22014-12-01 15:40:12 -080013430 else
Gustavo Padovana912f122014-12-01 15:40:10 -080013431 addr = obj->phys_handle->busaddr;
Gustavo Padovana912f122014-12-01 15:40:10 -080013432
Gustavo Padovana912f122014-12-01 15:40:10 -080013433 intel_crtc->cursor_addr = addr;
13434 intel_crtc->cursor_bo = obj;
13435update:
Gustavo Padovana912f122014-12-01 15:40:10 -080013436
Matt Roper32b7eee2014-12-24 07:59:06 -080013437 if (intel_crtc->active)
Gustavo Padovan852e7872014-09-05 17:22:31 -030013438 intel_crtc_update_cursor(crtc, state->visible);
Matt Roper3d7d6512014-06-10 08:28:13 -070013439}
Gustavo Padovan852e7872014-09-05 17:22:31 -030013440
Matt Roper3d7d6512014-06-10 08:28:13 -070013441static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
13442 int pipe)
13443{
13444 struct intel_plane *cursor;
Matt Roper8e7d6882015-01-21 16:35:41 -080013445 struct intel_plane_state *state;
Matt Roper3d7d6512014-06-10 08:28:13 -070013446
13447 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
13448 if (cursor == NULL)
13449 return NULL;
13450
Matt Roper8e7d6882015-01-21 16:35:41 -080013451 state = intel_create_plane_state(&cursor->base);
13452 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080013453 kfree(cursor);
13454 return NULL;
13455 }
Matt Roper8e7d6882015-01-21 16:35:41 -080013456 cursor->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080013457
Matt Roper3d7d6512014-06-10 08:28:13 -070013458 cursor->can_scale = false;
13459 cursor->max_downscale = 1;
13460 cursor->pipe = pipe;
13461 cursor->plane = pipe;
Matt Roperc59cb172014-12-01 15:40:16 -080013462 cursor->check_plane = intel_check_cursor_plane;
13463 cursor->commit_plane = intel_commit_cursor_plane;
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013464 cursor->disable_plane = intel_disable_cursor_plane;
Matt Roper3d7d6512014-06-10 08:28:13 -070013465
13466 drm_universal_plane_init(dev, &cursor->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080013467 &intel_plane_funcs,
Matt Roper3d7d6512014-06-10 08:28:13 -070013468 intel_cursor_formats,
13469 ARRAY_SIZE(intel_cursor_formats),
13470 DRM_PLANE_TYPE_CURSOR);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070013471
13472 if (INTEL_INFO(dev)->gen >= 4) {
13473 if (!dev->mode_config.rotation_property)
13474 dev->mode_config.rotation_property =
13475 drm_mode_create_rotation_property(dev,
13476 BIT(DRM_ROTATE_0) |
13477 BIT(DRM_ROTATE_180));
13478 if (dev->mode_config.rotation_property)
13479 drm_object_attach_property(&cursor->base.base,
13480 dev->mode_config.rotation_property,
Matt Roper8e7d6882015-01-21 16:35:41 -080013481 state->base.rotation);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070013482 }
13483
Chandra Konduruaf99ced2015-05-11 14:35:47 -070013484 if (INTEL_INFO(dev)->gen >=9)
13485 state->scaler_id = -1;
13486
Matt Roperea2c67b2014-12-23 10:41:52 -080013487 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
13488
Matt Roper3d7d6512014-06-10 08:28:13 -070013489 return &cursor->base;
13490}
13491
Chandra Konduru549e2bf2015-04-07 15:28:38 -070013492static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
13493 struct intel_crtc_state *crtc_state)
13494{
13495 int i;
13496 struct intel_scaler *intel_scaler;
13497 struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state;
13498
13499 for (i = 0; i < intel_crtc->num_scalers; i++) {
13500 intel_scaler = &scaler_state->scalers[i];
13501 intel_scaler->in_use = 0;
13502 intel_scaler->id = i;
13503
13504 intel_scaler->mode = PS_SCALER_MODE_DYN;
13505 }
13506
13507 scaler_state->scaler_id = -1;
13508}
13509
Hannes Ederb358d0a2008-12-18 21:18:47 +010013510static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -080013511{
Jani Nikulafbee40d2014-03-31 14:27:18 +030013512 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080013513 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020013514 struct intel_crtc_state *crtc_state = NULL;
Matt Roper3d7d6512014-06-10 08:28:13 -070013515 struct drm_plane *primary = NULL;
13516 struct drm_plane *cursor = NULL;
Matt Roper465c1202014-05-29 08:06:54 -070013517 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080013518
Daniel Vetter955382f2013-09-19 14:05:45 +020013519 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -080013520 if (intel_crtc == NULL)
13521 return;
13522
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020013523 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
13524 if (!crtc_state)
13525 goto fail;
Ander Conselvan de Oliveira550acef2015-04-21 17:13:24 +030013526 intel_crtc->config = crtc_state;
13527 intel_crtc->base.state = &crtc_state->base;
Matt Roper07878242015-02-25 11:43:26 -080013528 crtc_state->base.crtc = &intel_crtc->base;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020013529
Chandra Konduru549e2bf2015-04-07 15:28:38 -070013530 /* initialize shared scalers */
13531 if (INTEL_INFO(dev)->gen >= 9) {
13532 if (pipe == PIPE_C)
13533 intel_crtc->num_scalers = 1;
13534 else
13535 intel_crtc->num_scalers = SKL_NUM_SCALERS;
13536
13537 skl_init_scalers(dev, intel_crtc, crtc_state);
13538 }
13539
Matt Roper465c1202014-05-29 08:06:54 -070013540 primary = intel_primary_plane_create(dev, pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070013541 if (!primary)
13542 goto fail;
13543
13544 cursor = intel_cursor_plane_create(dev, pipe);
13545 if (!cursor)
13546 goto fail;
13547
Matt Roper465c1202014-05-29 08:06:54 -070013548 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
Matt Roper3d7d6512014-06-10 08:28:13 -070013549 cursor, &intel_crtc_funcs);
13550 if (ret)
13551 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080013552
13553 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -080013554 for (i = 0; i < 256; i++) {
13555 intel_crtc->lut_r[i] = i;
13556 intel_crtc->lut_g[i] = i;
13557 intel_crtc->lut_b[i] = i;
13558 }
13559
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020013560 /*
13561 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
Daniel Vetter8c0f92e2014-06-16 02:08:26 +020013562 * is hooked to pipe B. Hence we want plane A feeding pipe B.
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020013563 */
Jesse Barnes80824002009-09-10 15:28:06 -070013564 intel_crtc->pipe = pipe;
13565 intel_crtc->plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +010013566 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
Zhao Yakui28c97732009-10-09 11:39:41 +080013567 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +010013568 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -070013569 }
13570
Chris Wilson4b0e3332014-05-30 16:35:26 +030013571 intel_crtc->cursor_base = ~0;
13572 intel_crtc->cursor_cntl = ~0;
Ville Syrjälädc41c152014-08-13 11:57:05 +030013573 intel_crtc->cursor_size = ~0;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030013574
Jesse Barnes22fd0fa2009-12-02 13:42:53 -080013575 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
13576 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
13577 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
13578 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
13579
Jesse Barnes79e53942008-11-07 14:24:08 -080013580 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Daniel Vetter87b6b102014-05-15 15:33:46 +020013581
13582 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070013583 return;
13584
13585fail:
13586 if (primary)
13587 drm_plane_cleanup(primary);
13588 if (cursor)
13589 drm_plane_cleanup(cursor);
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020013590 kfree(crtc_state);
Matt Roper3d7d6512014-06-10 08:28:13 -070013591 kfree(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -080013592}
13593
Jesse Barnes752aa882013-10-31 18:55:49 +020013594enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
13595{
13596 struct drm_encoder *encoder = connector->base.encoder;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020013597 struct drm_device *dev = connector->base.dev;
Jesse Barnes752aa882013-10-31 18:55:49 +020013598
Rob Clark51fd3712013-11-19 12:10:12 -050013599 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Jesse Barnes752aa882013-10-31 18:55:49 +020013600
Ville Syrjäläd3babd32014-11-07 11:16:01 +020013601 if (!encoder || WARN_ON(!encoder->crtc))
Jesse Barnes752aa882013-10-31 18:55:49 +020013602 return INVALID_PIPE;
13603
13604 return to_intel_crtc(encoder->crtc)->pipe;
13605}
13606
Carl Worth08d7b3d2009-04-29 14:43:54 -070013607int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +000013608 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -070013609{
Carl Worth08d7b3d2009-04-29 14:43:54 -070013610 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Rob Clark7707e652014-07-17 23:30:04 -040013611 struct drm_crtc *drmmode_crtc;
Daniel Vetterc05422d2009-08-11 16:05:30 +020013612 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -070013613
Rob Clark7707e652014-07-17 23:30:04 -040013614 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
Carl Worth08d7b3d2009-04-29 14:43:54 -070013615
Rob Clark7707e652014-07-17 23:30:04 -040013616 if (!drmmode_crtc) {
Carl Worth08d7b3d2009-04-29 14:43:54 -070013617 DRM_ERROR("no such CRTC id\n");
Ville Syrjälä3f2c2052013-10-17 13:35:03 +030013618 return -ENOENT;
Carl Worth08d7b3d2009-04-29 14:43:54 -070013619 }
13620
Rob Clark7707e652014-07-17 23:30:04 -040013621 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetterc05422d2009-08-11 16:05:30 +020013622 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -070013623
Daniel Vetterc05422d2009-08-11 16:05:30 +020013624 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -070013625}
13626
Daniel Vetter66a92782012-07-12 20:08:18 +020013627static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080013628{
Daniel Vetter66a92782012-07-12 20:08:18 +020013629 struct drm_device *dev = encoder->base.dev;
13630 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080013631 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080013632 int entry = 0;
13633
Damien Lespiaub2784e12014-08-05 11:29:37 +010013634 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020013635 if (encoders_cloneable(encoder, source_encoder))
Daniel Vetter66a92782012-07-12 20:08:18 +020013636 index_mask |= (1 << entry);
13637
Jesse Barnes79e53942008-11-07 14:24:08 -080013638 entry++;
13639 }
Chris Wilson4ef69c72010-09-09 15:14:28 +010013640
Jesse Barnes79e53942008-11-07 14:24:08 -080013641 return index_mask;
13642}
13643
Chris Wilson4d302442010-12-14 19:21:29 +000013644static bool has_edp_a(struct drm_device *dev)
13645{
13646 struct drm_i915_private *dev_priv = dev->dev_private;
13647
13648 if (!IS_MOBILE(dev))
13649 return false;
13650
13651 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
13652 return false;
13653
Damien Lespiaue3589902014-02-07 19:12:50 +000013654 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
Chris Wilson4d302442010-12-14 19:21:29 +000013655 return false;
13656
13657 return true;
13658}
13659
Jesse Barnes84b4e042014-06-25 08:24:29 -070013660static bool intel_crt_present(struct drm_device *dev)
13661{
13662 struct drm_i915_private *dev_priv = dev->dev_private;
13663
Damien Lespiau884497e2013-12-03 13:56:23 +000013664 if (INTEL_INFO(dev)->gen >= 9)
13665 return false;
13666
Damien Lespiaucf404ce2014-10-01 20:04:15 +010013667 if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
Jesse Barnes84b4e042014-06-25 08:24:29 -070013668 return false;
13669
13670 if (IS_CHERRYVIEW(dev))
13671 return false;
13672
13673 if (IS_VALLEYVIEW(dev) && !dev_priv->vbt.int_crt_support)
13674 return false;
13675
13676 return true;
13677}
13678
Jesse Barnes79e53942008-11-07 14:24:08 -080013679static void intel_setup_outputs(struct drm_device *dev)
13680{
Eric Anholt725e30a2009-01-22 13:01:02 -080013681 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +010013682 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -040013683 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -080013684
Daniel Vetterc9093352013-06-06 22:22:47 +020013685 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080013686
Jesse Barnes84b4e042014-06-25 08:24:29 -070013687 if (intel_crt_present(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -020013688 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040013689
Vandana Kannanc776eb22014-08-19 12:05:01 +053013690 if (IS_BROXTON(dev)) {
13691 /*
13692 * FIXME: Broxton doesn't support port detection via the
13693 * DDI_BUF_CTL_A or SFUSE_STRAP registers, find another way to
13694 * detect the ports.
13695 */
13696 intel_ddi_init(dev, PORT_A);
13697 intel_ddi_init(dev, PORT_B);
13698 intel_ddi_init(dev, PORT_C);
13699 } else if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030013700 int found;
13701
Jesse Barnesde31fac2015-03-06 15:53:32 -080013702 /*
13703 * Haswell uses DDI functions to detect digital outputs.
13704 * On SKL pre-D0 the strap isn't connected, so we assume
13705 * it's there.
13706 */
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030013707 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
Jesse Barnesde31fac2015-03-06 15:53:32 -080013708 /* WaIgnoreDDIAStrap: skl */
13709 if (found ||
13710 (IS_SKYLAKE(dev) && INTEL_REVID(dev) < SKL_REVID_D0))
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030013711 intel_ddi_init(dev, PORT_A);
13712
13713 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
13714 * register */
13715 found = I915_READ(SFUSE_STRAP);
13716
13717 if (found & SFUSE_STRAP_DDIB_DETECTED)
13718 intel_ddi_init(dev, PORT_B);
13719 if (found & SFUSE_STRAP_DDIC_DETECTED)
13720 intel_ddi_init(dev, PORT_C);
13721 if (found & SFUSE_STRAP_DDID_DETECTED)
13722 intel_ddi_init(dev, PORT_D);
13723 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -040013724 int found;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020013725 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
Daniel Vetter270b3042012-10-27 15:52:05 +020013726
13727 if (has_edp_a(dev))
13728 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040013729
Paulo Zanonidc0fa712013-02-19 16:21:46 -030013730 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +080013731 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +010013732 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080013733 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -030013734 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080013735 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030013736 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080013737 }
13738
Paulo Zanonidc0fa712013-02-19 16:21:46 -030013739 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030013740 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080013741
Paulo Zanonidc0fa712013-02-19 16:21:46 -030013742 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030013743 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080013744
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080013745 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030013746 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080013747
Daniel Vetter270b3042012-10-27 15:52:05 +020013748 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030013749 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -070013750 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030013751 /*
13752 * The DP_DETECTED bit is the latched state of the DDC
13753 * SDA pin at boot. However since eDP doesn't require DDC
13754 * (no way to plug in a DP->HDMI dongle) the DDC pins for
13755 * eDP ports may have been muxed to an alternate function.
13756 * Thus we can't rely on the DP_DETECTED bit alone to detect
13757 * eDP ports. Consult the VBT as well as DP_DETECTED to
13758 * detect eDP ports.
13759 */
Ville Syrjäläd2182a62015-01-09 14:21:14 +020013760 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED &&
13761 !intel_dp_is_edp(dev, PORT_B))
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030013762 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
13763 PORT_B);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030013764 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED ||
13765 intel_dp_is_edp(dev, PORT_B))
13766 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030013767
Ville Syrjäläd2182a62015-01-09 14:21:14 +020013768 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED &&
13769 !intel_dp_is_edp(dev, PORT_C))
Jesse Barnes6f6005a2013-08-09 09:34:35 -070013770 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
13771 PORT_C);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030013772 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED ||
13773 intel_dp_is_edp(dev, PORT_C))
13774 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
Gajanan Bhat19c03922012-09-27 19:13:07 +053013775
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030013776 if (IS_CHERRYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030013777 if (I915_READ(VLV_DISPLAY_BASE + CHV_HDMID) & SDVO_DETECTED)
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030013778 intel_hdmi_init(dev, VLV_DISPLAY_BASE + CHV_HDMID,
13779 PORT_D);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030013780 /* eDP not supported on port D, so don't check VBT */
13781 if (I915_READ(VLV_DISPLAY_BASE + DP_D) & DP_DETECTED)
13782 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_D, PORT_D);
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030013783 }
13784
Jani Nikula3cfca972013-08-27 15:12:26 +030013785 intel_dsi_init(dev);
Zhenyu Wang103a1962009-11-27 11:44:36 +080013786 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +080013787 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -080013788
Paulo Zanonie2debe92013-02-18 19:00:27 -030013789 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080013790 DRM_DEBUG_KMS("probing SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030013791 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080013792 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
13793 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030013794 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080013795 }
Ma Ling27185ae2009-08-24 13:50:23 +080013796
Imre Deake7281ea2013-05-08 13:14:08 +030013797 if (!found && SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030013798 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -080013799 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -040013800
13801 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -040013802
Paulo Zanonie2debe92013-02-18 19:00:27 -030013803 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080013804 DRM_DEBUG_KMS("probing SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030013805 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080013806 }
Ma Ling27185ae2009-08-24 13:50:23 +080013807
Paulo Zanonie2debe92013-02-18 19:00:27 -030013808 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +080013809
Jesse Barnesb01f2c32009-12-11 11:07:17 -080013810 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
13811 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030013812 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080013813 }
Imre Deake7281ea2013-05-08 13:14:08 +030013814 if (SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030013815 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -080013816 }
Ma Ling27185ae2009-08-24 13:50:23 +080013817
Jesse Barnesb01f2c32009-12-11 11:07:17 -080013818 if (SUPPORTS_INTEGRATED_DP(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +030013819 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030013820 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -070013821 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080013822 intel_dvo_init(dev);
13823
Zhenyu Wang103a1962009-11-27 11:44:36 +080013824 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080013825 intel_tv_init(dev);
13826
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -080013827 intel_psr_init(dev);
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -070013828
Damien Lespiaub2784e12014-08-05 11:29:37 +010013829 for_each_intel_encoder(dev, encoder) {
Chris Wilson4ef69c72010-09-09 15:14:28 +010013830 encoder->base.possible_crtcs = encoder->crtc_mask;
13831 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +020013832 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -080013833 }
Chris Wilson47356eb2011-01-11 17:06:04 +000013834
Paulo Zanonidde86e22012-12-01 12:04:25 -020013835 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +020013836
13837 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080013838}
13839
13840static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
13841{
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030013842 struct drm_device *dev = fb->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -080013843 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -080013844
Daniel Vetteref2d6332014-02-10 18:00:38 +010013845 drm_framebuffer_cleanup(fb);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030013846 mutex_lock(&dev->struct_mutex);
Daniel Vetteref2d6332014-02-10 18:00:38 +010013847 WARN_ON(!intel_fb->obj->framebuffer_references--);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030013848 drm_gem_object_unreference(&intel_fb->obj->base);
13849 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080013850 kfree(intel_fb);
13851}
13852
13853static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +000013854 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -080013855 unsigned int *handle)
13856{
13857 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +000013858 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080013859
Chris Wilson05394f32010-11-08 19:18:58 +000013860 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -080013861}
13862
13863static const struct drm_framebuffer_funcs intel_fb_funcs = {
13864 .destroy = intel_user_framebuffer_destroy,
13865 .create_handle = intel_user_framebuffer_create_handle,
13866};
13867
Damien Lespiaub3218032015-02-27 11:15:18 +000013868static
13869u32 intel_fb_pitch_limit(struct drm_device *dev, uint64_t fb_modifier,
13870 uint32_t pixel_format)
13871{
13872 u32 gen = INTEL_INFO(dev)->gen;
13873
13874 if (gen >= 9) {
13875 /* "The stride in bytes must not exceed the of the size of 8K
13876 * pixels and 32K bytes."
13877 */
13878 return min(8192*drm_format_plane_cpp(pixel_format, 0), 32768);
13879 } else if (gen >= 5 && !IS_VALLEYVIEW(dev)) {
13880 return 32*1024;
13881 } else if (gen >= 4) {
13882 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
13883 return 16*1024;
13884 else
13885 return 32*1024;
13886 } else if (gen >= 3) {
13887 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
13888 return 8*1024;
13889 else
13890 return 16*1024;
13891 } else {
13892 /* XXX DSPC is limited to 4k tiled */
13893 return 8*1024;
13894 }
13895}
13896
Daniel Vetterb5ea6422014-03-02 21:18:00 +010013897static int intel_framebuffer_init(struct drm_device *dev,
13898 struct intel_framebuffer *intel_fb,
13899 struct drm_mode_fb_cmd2 *mode_cmd,
13900 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -080013901{
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +000013902 unsigned int aligned_height;
Jesse Barnes79e53942008-11-07 14:24:08 -080013903 int ret;
Damien Lespiaub3218032015-02-27 11:15:18 +000013904 u32 pitch_limit, stride_alignment;
Jesse Barnes79e53942008-11-07 14:24:08 -080013905
Daniel Vetterdd4916c2013-10-09 21:23:51 +020013906 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
13907
Daniel Vetter2a80ead2015-02-10 17:16:06 +000013908 if (mode_cmd->flags & DRM_MODE_FB_MODIFIERS) {
13909 /* Enforce that fb modifier and tiling mode match, but only for
13910 * X-tiled. This is needed for FBC. */
13911 if (!!(obj->tiling_mode == I915_TILING_X) !=
13912 !!(mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED)) {
13913 DRM_DEBUG("tiling_mode doesn't match fb modifier\n");
13914 return -EINVAL;
13915 }
13916 } else {
13917 if (obj->tiling_mode == I915_TILING_X)
13918 mode_cmd->modifier[0] = I915_FORMAT_MOD_X_TILED;
13919 else if (obj->tiling_mode == I915_TILING_Y) {
13920 DRM_DEBUG("No Y tiling for legacy addfb\n");
13921 return -EINVAL;
13922 }
13923 }
13924
Tvrtko Ursulin9a8f0a12015-02-27 11:15:24 +000013925 /* Passed in modifier sanity checking. */
13926 switch (mode_cmd->modifier[0]) {
13927 case I915_FORMAT_MOD_Y_TILED:
13928 case I915_FORMAT_MOD_Yf_TILED:
13929 if (INTEL_INFO(dev)->gen < 9) {
13930 DRM_DEBUG("Unsupported tiling 0x%llx!\n",
13931 mode_cmd->modifier[0]);
13932 return -EINVAL;
13933 }
13934 case DRM_FORMAT_MOD_NONE:
13935 case I915_FORMAT_MOD_X_TILED:
13936 break;
13937 default:
Jesse Barnesc0f40422015-03-23 12:43:50 -070013938 DRM_DEBUG("Unsupported fb modifier 0x%llx!\n",
13939 mode_cmd->modifier[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +010013940 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000013941 }
Chris Wilson57cd6502010-08-08 12:34:44 +010013942
Damien Lespiaub3218032015-02-27 11:15:18 +000013943 stride_alignment = intel_fb_stride_alignment(dev, mode_cmd->modifier[0],
13944 mode_cmd->pixel_format);
13945 if (mode_cmd->pitches[0] & (stride_alignment - 1)) {
13946 DRM_DEBUG("pitch (%d) must be at least %u byte aligned\n",
13947 mode_cmd->pitches[0], stride_alignment);
Chris Wilson57cd6502010-08-08 12:34:44 +010013948 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000013949 }
Chris Wilson57cd6502010-08-08 12:34:44 +010013950
Damien Lespiaub3218032015-02-27 11:15:18 +000013951 pitch_limit = intel_fb_pitch_limit(dev, mode_cmd->modifier[0],
13952 mode_cmd->pixel_format);
Chris Wilsona35cdaa2013-06-25 17:26:45 +010013953 if (mode_cmd->pitches[0] > pitch_limit) {
Damien Lespiaub3218032015-02-27 11:15:18 +000013954 DRM_DEBUG("%s pitch (%u) must be at less than %d\n",
13955 mode_cmd->modifier[0] != DRM_FORMAT_MOD_NONE ?
Daniel Vetter2a80ead2015-02-10 17:16:06 +000013956 "tiled" : "linear",
Chris Wilsona35cdaa2013-06-25 17:26:45 +010013957 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020013958 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000013959 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020013960
Daniel Vetter2a80ead2015-02-10 17:16:06 +000013961 if (mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000013962 mode_cmd->pitches[0] != obj->stride) {
13963 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
13964 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020013965 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000013966 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020013967
Ville Syrjälä57779d02012-10-31 17:50:14 +020013968 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080013969 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020013970 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020013971 case DRM_FORMAT_RGB565:
13972 case DRM_FORMAT_XRGB8888:
13973 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020013974 break;
13975 case DRM_FORMAT_XRGB1555:
13976 case DRM_FORMAT_ARGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000013977 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000013978 DRM_DEBUG("unsupported pixel format: %s\n",
13979 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020013980 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000013981 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020013982 break;
13983 case DRM_FORMAT_XBGR8888:
13984 case DRM_FORMAT_ABGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020013985 case DRM_FORMAT_XRGB2101010:
13986 case DRM_FORMAT_ARGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020013987 case DRM_FORMAT_XBGR2101010:
13988 case DRM_FORMAT_ABGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000013989 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000013990 DRM_DEBUG("unsupported pixel format: %s\n",
13991 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020013992 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000013993 }
Jesse Barnesb5626742011-06-24 12:19:27 -070013994 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020013995 case DRM_FORMAT_YUYV:
13996 case DRM_FORMAT_UYVY:
13997 case DRM_FORMAT_YVYU:
13998 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000013999 if (INTEL_INFO(dev)->gen < 5) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014000 DRM_DEBUG("unsupported pixel format: %s\n",
14001 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020014002 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014003 }
Chris Wilson57cd6502010-08-08 12:34:44 +010014004 break;
14005 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014006 DRM_DEBUG("unsupported pixel format: %s\n",
14007 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010014008 return -EINVAL;
14009 }
14010
Ville Syrjälä90f9a332012-10-31 17:50:19 +020014011 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
14012 if (mode_cmd->offsets[0] != 0)
14013 return -EINVAL;
14014
Damien Lespiauec2c9812015-01-20 12:51:45 +000014015 aligned_height = intel_fb_align_height(dev, mode_cmd->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +000014016 mode_cmd->pixel_format,
14017 mode_cmd->modifier[0]);
Daniel Vetter53155c02013-10-09 21:55:33 +020014018 /* FIXME drm helper for size checks (especially planar formats)? */
14019 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
14020 return -EINVAL;
14021
Daniel Vetterc7d73f62012-12-13 23:38:38 +010014022 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
14023 intel_fb->obj = obj;
Daniel Vetter80075d42013-10-09 21:23:52 +020014024 intel_fb->obj->framebuffer_references++;
Daniel Vetterc7d73f62012-12-13 23:38:38 +010014025
Jesse Barnes79e53942008-11-07 14:24:08 -080014026 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
14027 if (ret) {
14028 DRM_ERROR("framebuffer init failed %d\n", ret);
14029 return ret;
14030 }
14031
Jesse Barnes79e53942008-11-07 14:24:08 -080014032 return 0;
14033}
14034
Jesse Barnes79e53942008-11-07 14:24:08 -080014035static struct drm_framebuffer *
14036intel_user_framebuffer_create(struct drm_device *dev,
14037 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -080014038 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080014039{
Chris Wilson05394f32010-11-08 19:18:58 +000014040 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080014041
Jesse Barnes308e5bc2011-11-14 14:51:28 -080014042 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
14043 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +000014044 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010014045 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080014046
Chris Wilsond2dff872011-04-19 08:36:26 +010014047 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -080014048}
14049
Daniel Vetter4520f532013-10-09 09:18:51 +020014050#ifndef CONFIG_DRM_I915_FBDEV
Daniel Vetter0632fef2013-10-08 17:44:49 +020014051static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
Daniel Vetter4520f532013-10-09 09:18:51 +020014052{
14053}
14054#endif
14055
Jesse Barnes79e53942008-11-07 14:24:08 -080014056static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080014057 .fb_create = intel_user_framebuffer_create,
Daniel Vetter0632fef2013-10-08 17:44:49 +020014058 .output_poll_changed = intel_fbdev_output_poll_changed,
Matt Roper5ee67f12015-01-21 16:35:44 -080014059 .atomic_check = intel_atomic_check,
14060 .atomic_commit = intel_atomic_commit,
Jesse Barnes79e53942008-11-07 14:24:08 -080014061};
14062
Jesse Barnese70236a2009-09-21 10:42:27 -070014063/* Set up chip specific display functions */
14064static void intel_init_display(struct drm_device *dev)
14065{
14066 struct drm_i915_private *dev_priv = dev->dev_private;
14067
Daniel Vetteree9300b2013-06-03 22:40:22 +020014068 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
14069 dev_priv->display.find_dpll = g4x_find_best_dpll;
Chon Ming Leeef9348c2014-04-09 13:28:18 +030014070 else if (IS_CHERRYVIEW(dev))
14071 dev_priv->display.find_dpll = chv_find_best_dpll;
Daniel Vetteree9300b2013-06-03 22:40:22 +020014072 else if (IS_VALLEYVIEW(dev))
14073 dev_priv->display.find_dpll = vlv_find_best_dpll;
14074 else if (IS_PINEVIEW(dev))
14075 dev_priv->display.find_dpll = pnv_find_best_dpll;
14076 else
14077 dev_priv->display.find_dpll = i9xx_find_best_dpll;
14078
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014079 if (INTEL_INFO(dev)->gen >= 9) {
14080 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014081 dev_priv->display.get_initial_plane_config =
14082 skylake_get_initial_plane_config;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014083 dev_priv->display.crtc_compute_clock =
14084 haswell_crtc_compute_clock;
14085 dev_priv->display.crtc_enable = haswell_crtc_enable;
14086 dev_priv->display.crtc_disable = haswell_crtc_disable;
14087 dev_priv->display.off = ironlake_crtc_off;
14088 dev_priv->display.update_primary_plane =
14089 skylake_update_primary_plane;
14090 } else if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010014091 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014092 dev_priv->display.get_initial_plane_config =
14093 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira797d0252014-10-29 11:32:34 +020014094 dev_priv->display.crtc_compute_clock =
14095 haswell_crtc_compute_clock;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020014096 dev_priv->display.crtc_enable = haswell_crtc_enable;
14097 dev_priv->display.crtc_disable = haswell_crtc_disable;
Daniel Vetterdf8ad702014-06-25 22:02:03 +030014098 dev_priv->display.off = ironlake_crtc_off;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014099 dev_priv->display.update_primary_plane =
14100 ironlake_update_primary_plane;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030014101 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010014102 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014103 dev_priv->display.get_initial_plane_config =
14104 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +020014105 dev_priv->display.crtc_compute_clock =
14106 ironlake_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020014107 dev_priv->display.crtc_enable = ironlake_crtc_enable;
14108 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010014109 dev_priv->display.off = ironlake_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070014110 dev_priv->display.update_primary_plane =
14111 ironlake_update_primary_plane;
Jesse Barnes89b667f2013-04-18 14:51:36 -070014112 } else if (IS_VALLEYVIEW(dev)) {
14113 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014114 dev_priv->display.get_initial_plane_config =
14115 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020014116 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Jesse Barnes89b667f2013-04-18 14:51:36 -070014117 dev_priv->display.crtc_enable = valleyview_crtc_enable;
14118 dev_priv->display.crtc_disable = i9xx_crtc_disable;
14119 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070014120 dev_priv->display.update_primary_plane =
14121 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070014122 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010014123 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014124 dev_priv->display.get_initial_plane_config =
14125 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020014126 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020014127 dev_priv->display.crtc_enable = i9xx_crtc_enable;
14128 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010014129 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070014130 dev_priv->display.update_primary_plane =
14131 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070014132 }
Jesse Barnese70236a2009-09-21 10:42:27 -070014133
Jesse Barnese70236a2009-09-21 10:42:27 -070014134 /* Returns the core display clock speed */
Ville Syrjälä1652d192015-03-31 14:12:01 +030014135 if (IS_SKYLAKE(dev))
14136 dev_priv->display.get_display_clock_speed =
14137 skylake_get_display_clock_speed;
14138 else if (IS_BROADWELL(dev))
14139 dev_priv->display.get_display_clock_speed =
14140 broadwell_get_display_clock_speed;
14141 else if (IS_HASWELL(dev))
14142 dev_priv->display.get_display_clock_speed =
14143 haswell_get_display_clock_speed;
14144 else if (IS_VALLEYVIEW(dev))
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070014145 dev_priv->display.get_display_clock_speed =
14146 valleyview_get_display_clock_speed;
Ville Syrjäläb37a6432015-03-31 14:11:54 +030014147 else if (IS_GEN5(dev))
14148 dev_priv->display.get_display_clock_speed =
14149 ilk_get_display_clock_speed;
Ville Syrjäläa7c66cd2015-03-31 14:11:56 +030014150 else if (IS_I945G(dev) || IS_BROADWATER(dev) ||
14151 IS_GEN6(dev) || IS_IVYBRIDGE(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -070014152 dev_priv->display.get_display_clock_speed =
14153 i945_get_display_clock_speed;
14154 else if (IS_I915G(dev))
14155 dev_priv->display.get_display_clock_speed =
14156 i915_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020014157 else if (IS_I945GM(dev) || IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070014158 dev_priv->display.get_display_clock_speed =
14159 i9xx_misc_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020014160 else if (IS_PINEVIEW(dev))
14161 dev_priv->display.get_display_clock_speed =
14162 pnv_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070014163 else if (IS_I915GM(dev))
14164 dev_priv->display.get_display_clock_speed =
14165 i915gm_get_display_clock_speed;
14166 else if (IS_I865G(dev))
14167 dev_priv->display.get_display_clock_speed =
14168 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +020014169 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070014170 dev_priv->display.get_display_clock_speed =
14171 i855_get_display_clock_speed;
14172 else /* 852, 830 */
14173 dev_priv->display.get_display_clock_speed =
14174 i830_get_display_clock_speed;
14175
Jani Nikula7c10a2b2014-10-27 16:26:43 +020014176 if (IS_GEN5(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053014177 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053014178 } else if (IS_GEN6(dev)) {
14179 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053014180 } else if (IS_IVYBRIDGE(dev)) {
14181 /* FIXME: detect B0+ stepping and use auto training */
14182 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Paulo Zanoni059b2fe2014-09-02 16:53:57 -030014183 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053014184 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Jesse Barnes30a970c2013-11-04 13:48:12 -080014185 } else if (IS_VALLEYVIEW(dev)) {
14186 dev_priv->display.modeset_global_resources =
14187 valleyview_modeset_global_resources;
Vandana Kannanf8437dd12014-11-24 13:37:39 +053014188 } else if (IS_BROXTON(dev)) {
14189 dev_priv->display.modeset_global_resources =
14190 broxton_modeset_global_resources;
Jesse Barnese70236a2009-09-21 10:42:27 -070014191 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070014192
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070014193 switch (INTEL_INFO(dev)->gen) {
14194 case 2:
14195 dev_priv->display.queue_flip = intel_gen2_queue_flip;
14196 break;
14197
14198 case 3:
14199 dev_priv->display.queue_flip = intel_gen3_queue_flip;
14200 break;
14201
14202 case 4:
14203 case 5:
14204 dev_priv->display.queue_flip = intel_gen4_queue_flip;
14205 break;
14206
14207 case 6:
14208 dev_priv->display.queue_flip = intel_gen6_queue_flip;
14209 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070014210 case 7:
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070014211 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
Jesse Barnes7c9017e2011-06-16 12:18:54 -070014212 dev_priv->display.queue_flip = intel_gen7_queue_flip;
14213 break;
Damien Lespiau830c81d2014-11-13 17:51:46 +000014214 case 9:
Tvrtko Ursulinba343e02015-02-10 17:16:12 +000014215 /* Drop through - unsupported since execlist only. */
14216 default:
14217 /* Default just returns -ENODEV to indicate unsupported */
14218 dev_priv->display.queue_flip = intel_default_queue_flip;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070014219 }
Jani Nikula7bd688c2013-11-08 16:48:56 +020014220
14221 intel_panel_init_backlight_funcs(dev);
Ville Syrjäläe39b9992014-09-04 14:53:14 +030014222
14223 mutex_init(&dev_priv->pps_mutex);
Jesse Barnese70236a2009-09-21 10:42:27 -070014224}
14225
Jesse Barnesb690e962010-07-19 13:53:12 -070014226/*
14227 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
14228 * resume, or other times. This quirk makes sure that's the case for
14229 * affected systems.
14230 */
Akshay Joshi0206e352011-08-16 15:34:10 -040014231static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070014232{
14233 struct drm_i915_private *dev_priv = dev->dev_private;
14234
14235 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020014236 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070014237}
14238
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030014239static void quirk_pipeb_force(struct drm_device *dev)
14240{
14241 struct drm_i915_private *dev_priv = dev->dev_private;
14242
14243 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
14244 DRM_INFO("applying pipe b force quirk\n");
14245}
14246
Keith Packard435793d2011-07-12 14:56:22 -070014247/*
14248 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
14249 */
14250static void quirk_ssc_force_disable(struct drm_device *dev)
14251{
14252 struct drm_i915_private *dev_priv = dev->dev_private;
14253 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020014254 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070014255}
14256
Carsten Emde4dca20e2012-03-15 15:56:26 +010014257/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010014258 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
14259 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010014260 */
14261static void quirk_invert_brightness(struct drm_device *dev)
14262{
14263 struct drm_i915_private *dev_priv = dev->dev_private;
14264 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020014265 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070014266}
14267
Scot Doyle9c72cc62014-07-03 23:27:50 +000014268/* Some VBT's incorrectly indicate no backlight is present */
14269static void quirk_backlight_present(struct drm_device *dev)
14270{
14271 struct drm_i915_private *dev_priv = dev->dev_private;
14272 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
14273 DRM_INFO("applying backlight present quirk\n");
14274}
14275
Jesse Barnesb690e962010-07-19 13:53:12 -070014276struct intel_quirk {
14277 int device;
14278 int subsystem_vendor;
14279 int subsystem_device;
14280 void (*hook)(struct drm_device *dev);
14281};
14282
Egbert Eich5f85f172012-10-14 15:46:38 +020014283/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
14284struct intel_dmi_quirk {
14285 void (*hook)(struct drm_device *dev);
14286 const struct dmi_system_id (*dmi_id_list)[];
14287};
14288
14289static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
14290{
14291 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
14292 return 1;
14293}
14294
14295static const struct intel_dmi_quirk intel_dmi_quirks[] = {
14296 {
14297 .dmi_id_list = &(const struct dmi_system_id[]) {
14298 {
14299 .callback = intel_dmi_reverse_brightness,
14300 .ident = "NCR Corporation",
14301 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
14302 DMI_MATCH(DMI_PRODUCT_NAME, ""),
14303 },
14304 },
14305 { } /* terminating entry */
14306 },
14307 .hook = quirk_invert_brightness,
14308 },
14309};
14310
Ben Widawskyc43b5632012-04-16 14:07:40 -070014311static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070014312 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
14313 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
14314
Jesse Barnesb690e962010-07-19 13:53:12 -070014315 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
14316 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
14317
Ville Syrjälä5f080c02014-08-15 01:22:06 +030014318 /* 830 needs to leave pipe A & dpll A up */
14319 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
14320
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030014321 /* 830 needs to leave pipe B & dpll B up */
14322 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
14323
Keith Packard435793d2011-07-12 14:56:22 -070014324 /* Lenovo U160 cannot use SSC on LVDS */
14325 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020014326
14327 /* Sony Vaio Y cannot use SSC on LVDS */
14328 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010014329
Alexander van Heukelumbe505f62013-12-28 21:00:39 +010014330 /* Acer Aspire 5734Z must invert backlight brightness */
14331 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
14332
14333 /* Acer/eMachines G725 */
14334 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
14335
14336 /* Acer/eMachines e725 */
14337 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
14338
14339 /* Acer/Packard Bell NCL20 */
14340 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
14341
14342 /* Acer Aspire 4736Z */
14343 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jani Nikula0f540c32014-01-13 17:30:34 +020014344
14345 /* Acer Aspire 5336 */
14346 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
Scot Doyle2e93a1a2014-07-03 23:27:51 +000014347
14348 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
14349 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
Scot Doyled4967d82014-07-03 23:27:52 +000014350
Scot Doyledfb3d47b2014-08-21 16:08:02 +000014351 /* Acer C720 Chromebook (Core i3 4005U) */
14352 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
14353
jens steinb2a96012014-10-28 20:25:53 +010014354 /* Apple Macbook 2,1 (Core 2 T7400) */
14355 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
14356
Scot Doyled4967d82014-07-03 23:27:52 +000014357 /* Toshiba CB35 Chromebook (Celeron 2955U) */
14358 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
Scot Doyle724cb062014-07-11 22:16:30 +000014359
14360 /* HP Chromebook 14 (Celeron 2955U) */
14361 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
Jani Nikulacf6f0af2015-02-19 10:53:39 +020014362
14363 /* Dell Chromebook 11 */
14364 { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present },
Jesse Barnesb690e962010-07-19 13:53:12 -070014365};
14366
14367static void intel_init_quirks(struct drm_device *dev)
14368{
14369 struct pci_dev *d = dev->pdev;
14370 int i;
14371
14372 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
14373 struct intel_quirk *q = &intel_quirks[i];
14374
14375 if (d->device == q->device &&
14376 (d->subsystem_vendor == q->subsystem_vendor ||
14377 q->subsystem_vendor == PCI_ANY_ID) &&
14378 (d->subsystem_device == q->subsystem_device ||
14379 q->subsystem_device == PCI_ANY_ID))
14380 q->hook(dev);
14381 }
Egbert Eich5f85f172012-10-14 15:46:38 +020014382 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
14383 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
14384 intel_dmi_quirks[i].hook(dev);
14385 }
Jesse Barnesb690e962010-07-19 13:53:12 -070014386}
14387
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014388/* Disable the VGA plane that we never use */
14389static void i915_disable_vga(struct drm_device *dev)
14390{
14391 struct drm_i915_private *dev_priv = dev->dev_private;
14392 u8 sr1;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020014393 u32 vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014394
Ville Syrjälä2b37c612014-01-22 21:32:38 +020014395 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014396 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070014397 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014398 sr1 = inb(VGA_SR_DATA);
14399 outb(sr1 | 1<<5, VGA_SR_DATA);
14400 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
14401 udelay(300);
14402
Ville Syrjälä01f5a622014-12-16 18:38:37 +020014403 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014404 POSTING_READ(vga_reg);
14405}
14406
Daniel Vetterf8175862012-04-10 15:50:11 +020014407void intel_modeset_init_hw(struct drm_device *dev)
14408{
Eugeni Dodonova8f78b52012-06-28 15:55:35 -030014409 intel_prepare_ddi(dev);
14410
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +030014411 if (IS_VALLEYVIEW(dev))
14412 vlv_update_cdclk(dev);
14413
Daniel Vetterf8175862012-04-10 15:50:11 +020014414 intel_init_clock_gating(dev);
14415
Daniel Vetter8090c6b2012-06-24 16:42:32 +020014416 intel_enable_gt_powersave(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020014417}
14418
Jesse Barnes79e53942008-11-07 14:24:08 -080014419void intel_modeset_init(struct drm_device *dev)
14420{
Jesse Barnes652c3932009-08-17 13:31:43 -070014421 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau1fe47782014-03-03 17:31:47 +000014422 int sprite, ret;
Damien Lespiau8cc87b72014-03-03 17:31:44 +000014423 enum pipe pipe;
Jesse Barnes46f297f2014-03-07 08:57:48 -080014424 struct intel_crtc *crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -080014425
14426 drm_mode_config_init(dev);
14427
14428 dev->mode_config.min_width = 0;
14429 dev->mode_config.min_height = 0;
14430
Dave Airlie019d96c2011-09-29 16:20:42 +010014431 dev->mode_config.preferred_depth = 24;
14432 dev->mode_config.prefer_shadow = 1;
14433
Tvrtko Ursulin25bab382015-02-10 17:16:16 +000014434 dev->mode_config.allow_fb_modifiers = true;
14435
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020014436 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080014437
Jesse Barnesb690e962010-07-19 13:53:12 -070014438 intel_init_quirks(dev);
14439
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030014440 intel_init_pm(dev);
14441
Ben Widawskye3c74752013-04-05 13:12:39 -070014442 if (INTEL_INFO(dev)->num_pipes == 0)
14443 return;
14444
Jesse Barnese70236a2009-09-21 10:42:27 -070014445 intel_init_display(dev);
Jani Nikula7c10a2b2014-10-27 16:26:43 +020014446 intel_init_audio(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070014447
Chris Wilsona6c45cf2010-09-17 00:32:17 +010014448 if (IS_GEN2(dev)) {
14449 dev->mode_config.max_width = 2048;
14450 dev->mode_config.max_height = 2048;
14451 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070014452 dev->mode_config.max_width = 4096;
14453 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080014454 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010014455 dev->mode_config.max_width = 8192;
14456 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080014457 }
Damien Lespiau068be562014-03-28 14:17:49 +000014458
Ville Syrjälädc41c152014-08-13 11:57:05 +030014459 if (IS_845G(dev) || IS_I865G(dev)) {
14460 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
14461 dev->mode_config.cursor_height = 1023;
14462 } else if (IS_GEN2(dev)) {
Damien Lespiau068be562014-03-28 14:17:49 +000014463 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
14464 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
14465 } else {
14466 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
14467 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
14468 }
14469
Ben Widawsky5d4545a2013-01-17 12:45:15 -080014470 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080014471
Zhao Yakui28c97732009-10-09 11:39:41 +080014472 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070014473 INTEL_INFO(dev)->num_pipes,
14474 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080014475
Damien Lespiau055e3932014-08-18 13:49:10 +010014476 for_each_pipe(dev_priv, pipe) {
Damien Lespiau8cc87b72014-03-03 17:31:44 +000014477 intel_crtc_init(dev, pipe);
Damien Lespiau3bdcfc02015-02-28 14:54:09 +000014478 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau1fe47782014-03-03 17:31:47 +000014479 ret = intel_plane_init(dev, pipe, sprite);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070014480 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030014481 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +000014482 pipe_name(pipe), sprite_name(pipe, sprite), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070014483 }
Jesse Barnes79e53942008-11-07 14:24:08 -080014484 }
14485
Jesse Barnesf42bb702013-12-16 16:34:23 -080014486 intel_init_dpio(dev);
14487
Daniel Vettere72f9fb2013-06-05 13:34:06 +020014488 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010014489
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014490 /* Just disable it once at startup */
14491 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080014492 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000014493
14494 /* Just in case the BIOS is doing something questionable. */
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020014495 intel_fbc_disable(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080014496
Daniel Vetter6e9f7982014-05-29 23:54:47 +020014497 drm_modeset_lock_all(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080014498 intel_modeset_setup_hw_state(dev, false);
Daniel Vetter6e9f7982014-05-29 23:54:47 +020014499 drm_modeset_unlock_all(dev);
Jesse Barnes46f297f2014-03-07 08:57:48 -080014500
Damien Lespiaud3fcc802014-05-13 23:32:22 +010014501 for_each_intel_crtc(dev, crtc) {
Jesse Barnes46f297f2014-03-07 08:57:48 -080014502 if (!crtc->active)
14503 continue;
14504
Jesse Barnes46f297f2014-03-07 08:57:48 -080014505 /*
Jesse Barnes46f297f2014-03-07 08:57:48 -080014506 * Note that reserving the BIOS fb up front prevents us
14507 * from stuffing other stolen allocations like the ring
14508 * on top. This prevents some ugliness at boot time, and
14509 * can even allow for smooth boot transitions if the BIOS
14510 * fb is large enough for the active pipe configuration.
14511 */
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014512 if (dev_priv->display.get_initial_plane_config) {
14513 dev_priv->display.get_initial_plane_config(crtc,
Jesse Barnes46f297f2014-03-07 08:57:48 -080014514 &crtc->plane_config);
14515 /*
14516 * If the fb is shared between multiple heads, we'll
14517 * just get the first one.
14518 */
Daniel Vetterf6936e22015-03-26 12:17:05 +010014519 intel_find_initial_plane_obj(crtc, &crtc->plane_config);
Jesse Barnes46f297f2014-03-07 08:57:48 -080014520 }
Jesse Barnes46f297f2014-03-07 08:57:48 -080014521 }
Chris Wilson2c7111d2011-03-29 10:40:27 +010014522}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080014523
Daniel Vetter7fad7982012-07-04 17:51:47 +020014524static void intel_enable_pipe_a(struct drm_device *dev)
14525{
14526 struct intel_connector *connector;
14527 struct drm_connector *crt = NULL;
14528 struct intel_load_detect_pipe load_detect_temp;
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030014529 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
Daniel Vetter7fad7982012-07-04 17:51:47 +020014530
14531 /* We can't just switch on the pipe A, we need to set things up with a
14532 * proper mode and output configuration. As a gross hack, enable pipe A
14533 * by enabling the load detect pipe once. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020014534 for_each_intel_connector(dev, connector) {
Daniel Vetter7fad7982012-07-04 17:51:47 +020014535 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
14536 crt = &connector->base;
14537 break;
14538 }
14539 }
14540
14541 if (!crt)
14542 return;
14543
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030014544 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
Ander Conselvan de Oliveira49172fe2015-03-20 16:18:02 +020014545 intel_release_load_detect_pipe(crt, &load_detect_temp, ctx);
Daniel Vetter7fad7982012-07-04 17:51:47 +020014546}
14547
Daniel Vetterfa555832012-10-10 23:14:00 +020014548static bool
14549intel_check_plane_mapping(struct intel_crtc *crtc)
14550{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070014551 struct drm_device *dev = crtc->base.dev;
14552 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020014553 u32 reg, val;
14554
Ben Widawsky7eb552a2013-03-13 14:05:41 -070014555 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020014556 return true;
14557
14558 reg = DSPCNTR(!crtc->plane);
14559 val = I915_READ(reg);
14560
14561 if ((val & DISPLAY_PLANE_ENABLE) &&
14562 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
14563 return false;
14564
14565 return true;
14566}
14567
Daniel Vetter24929352012-07-02 20:28:59 +020014568static void intel_sanitize_crtc(struct intel_crtc *crtc)
14569{
14570 struct drm_device *dev = crtc->base.dev;
14571 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020014572 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +020014573
Daniel Vetter24929352012-07-02 20:28:59 +020014574 /* Clear any frame start delays used for debugging left by the BIOS */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020014575 reg = PIPECONF(crtc->config->cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +020014576 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
14577
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030014578 /* restore vblank interrupts to correct state */
Daniel Vetter96256042015-02-13 21:03:42 +010014579 drm_crtc_vblank_reset(&crtc->base);
Ville Syrjäläd297e102014-08-06 14:50:01 +030014580 if (crtc->active) {
14581 update_scanline_offset(crtc);
Daniel Vetter96256042015-02-13 21:03:42 +010014582 drm_crtc_vblank_on(&crtc->base);
14583 }
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030014584
Daniel Vetter24929352012-07-02 20:28:59 +020014585 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020014586 * disable the crtc (and hence change the state) if it is wrong. Note
14587 * that gen4+ has a fixed plane -> pipe mapping. */
14588 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020014589 struct intel_connector *connector;
14590 bool plane;
14591
Daniel Vetter24929352012-07-02 20:28:59 +020014592 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
14593 crtc->base.base.id);
14594
14595 /* Pipe has the wrong plane attached and the plane is active.
14596 * Temporarily change the plane mapping and disable everything
14597 * ... */
14598 plane = crtc->plane;
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030014599 to_intel_plane_state(crtc->base.primary->state)->visible = true;
Daniel Vetter24929352012-07-02 20:28:59 +020014600 crtc->plane = !plane;
Maarten Lankhorstce22dba2015-04-21 17:12:56 +030014601 intel_crtc_disable_planes(&crtc->base);
Daniel Vetter24929352012-07-02 20:28:59 +020014602 dev_priv->display.crtc_disable(&crtc->base);
14603 crtc->plane = plane;
14604
14605 /* ... and break all links. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020014606 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020014607 if (connector->encoder->base.crtc != &crtc->base)
14608 continue;
14609
Egbert Eich7f1950f2014-04-25 10:56:22 +020014610 connector->base.dpms = DRM_MODE_DPMS_OFF;
14611 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020014612 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020014613 /* multiple connectors may have the same encoder:
14614 * handle them and break crtc link separately */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020014615 for_each_intel_connector(dev, connector)
Egbert Eich7f1950f2014-04-25 10:56:22 +020014616 if (connector->encoder->base.crtc == &crtc->base) {
14617 connector->encoder->base.crtc = NULL;
14618 connector->encoder->connectors_active = false;
14619 }
Daniel Vetter24929352012-07-02 20:28:59 +020014620
14621 WARN_ON(crtc->active);
Matt Roper83d65732015-02-25 13:12:16 -080014622 crtc->base.state->enable = false;
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020014623 crtc->base.state->active = false;
Daniel Vetter24929352012-07-02 20:28:59 +020014624 crtc->base.enabled = false;
14625 }
Daniel Vetter24929352012-07-02 20:28:59 +020014626
Daniel Vetter7fad7982012-07-04 17:51:47 +020014627 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
14628 crtc->pipe == PIPE_A && !crtc->active) {
14629 /* BIOS forgot to enable pipe A, this mostly happens after
14630 * resume. Force-enable the pipe to fix this, the update_dpms
14631 * call below we restore the pipe to the right state, but leave
14632 * the required bits on. */
14633 intel_enable_pipe_a(dev);
14634 }
14635
Daniel Vetter24929352012-07-02 20:28:59 +020014636 /* Adjust the state of the output pipe according to whether we
14637 * have active connectors/encoders. */
14638 intel_crtc_update_dpms(&crtc->base);
14639
Matt Roper83d65732015-02-25 13:12:16 -080014640 if (crtc->active != crtc->base.state->enable) {
Daniel Vetter24929352012-07-02 20:28:59 +020014641 struct intel_encoder *encoder;
14642
14643 /* This can happen either due to bugs in the get_hw_state
14644 * functions or because the pipe is force-enabled due to the
14645 * pipe A quirk. */
14646 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
14647 crtc->base.base.id,
Matt Roper83d65732015-02-25 13:12:16 -080014648 crtc->base.state->enable ? "enabled" : "disabled",
Daniel Vetter24929352012-07-02 20:28:59 +020014649 crtc->active ? "enabled" : "disabled");
14650
Matt Roper83d65732015-02-25 13:12:16 -080014651 crtc->base.state->enable = crtc->active;
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020014652 crtc->base.state->active = crtc->active;
Daniel Vetter24929352012-07-02 20:28:59 +020014653 crtc->base.enabled = crtc->active;
14654
14655 /* Because we only establish the connector -> encoder ->
14656 * crtc links if something is active, this means the
14657 * crtc is now deactivated. Break the links. connector
14658 * -> encoder links are only establish when things are
14659 * actually up, hence no need to break them. */
14660 WARN_ON(crtc->active);
14661
14662 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
14663 WARN_ON(encoder->connectors_active);
14664 encoder->base.crtc = NULL;
14665 }
14666 }
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020014667
Ville Syrjäläa3ed6aa2014-09-03 14:09:52 +030014668 if (crtc->active || HAS_GMCH_DISPLAY(dev)) {
Daniel Vetter4cc31482014-03-24 00:01:41 +010014669 /*
14670 * We start out with underrun reporting disabled to avoid races.
14671 * For correct bookkeeping mark this on active crtcs.
14672 *
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020014673 * Also on gmch platforms we dont have any hardware bits to
14674 * disable the underrun reporting. Which means we need to start
14675 * out with underrun reporting disabled also on inactive pipes,
14676 * since otherwise we'll complain about the garbage we read when
14677 * e.g. coming up after runtime pm.
14678 *
Daniel Vetter4cc31482014-03-24 00:01:41 +010014679 * No protection against concurrent access is required - at
14680 * worst a fifo underrun happens which also sets this to false.
14681 */
14682 crtc->cpu_fifo_underrun_disabled = true;
14683 crtc->pch_fifo_underrun_disabled = true;
14684 }
Daniel Vetter24929352012-07-02 20:28:59 +020014685}
14686
14687static void intel_sanitize_encoder(struct intel_encoder *encoder)
14688{
14689 struct intel_connector *connector;
14690 struct drm_device *dev = encoder->base.dev;
14691
14692 /* We need to check both for a crtc link (meaning that the
14693 * encoder is active and trying to read from a pipe) and the
14694 * pipe itself being active. */
14695 bool has_active_crtc = encoder->base.crtc &&
14696 to_intel_crtc(encoder->base.crtc)->active;
14697
14698 if (encoder->connectors_active && !has_active_crtc) {
14699 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
14700 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030014701 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020014702
14703 /* Connector is active, but has no active pipe. This is
14704 * fallout from our resume register restoring. Disable
14705 * the encoder manually again. */
14706 if (encoder->base.crtc) {
14707 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
14708 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030014709 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020014710 encoder->disable(encoder);
Ville Syrjäläa62d1492014-06-28 02:04:01 +030014711 if (encoder->post_disable)
14712 encoder->post_disable(encoder);
Daniel Vetter24929352012-07-02 20:28:59 +020014713 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020014714 encoder->base.crtc = NULL;
14715 encoder->connectors_active = false;
Daniel Vetter24929352012-07-02 20:28:59 +020014716
14717 /* Inconsistent output/port/pipe state happens presumably due to
14718 * a bug in one of the get_hw_state functions. Or someplace else
14719 * in our code, like the register restore mess on resume. Clamp
14720 * things to off as a safer default. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020014721 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020014722 if (connector->encoder != encoder)
14723 continue;
Egbert Eich7f1950f2014-04-25 10:56:22 +020014724 connector->base.dpms = DRM_MODE_DPMS_OFF;
14725 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020014726 }
14727 }
14728 /* Enabled encoders without active connectors will be fixed in
14729 * the crtc fixup. */
14730}
14731
Imre Deak04098752014-02-18 00:02:16 +020014732void i915_redisable_vga_power_on(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010014733{
14734 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020014735 u32 vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010014736
Imre Deak04098752014-02-18 00:02:16 +020014737 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
14738 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
14739 i915_disable_vga(dev);
14740 }
14741}
14742
14743void i915_redisable_vga(struct drm_device *dev)
14744{
14745 struct drm_i915_private *dev_priv = dev->dev_private;
14746
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030014747 /* This function can be called both from intel_modeset_setup_hw_state or
14748 * at a very early point in our resume sequence, where the power well
14749 * structures are not yet restored. Since this function is at a very
14750 * paranoid "someone might have enabled VGA while we were not looking"
14751 * level, just check if the power well is enabled instead of trying to
14752 * follow the "don't touch the power well if we don't need it" policy
14753 * the rest of the driver uses. */
Daniel Vetterf458ebb2014-09-30 10:56:39 +020014754 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_VGA))
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030014755 return;
14756
Imre Deak04098752014-02-18 00:02:16 +020014757 i915_redisable_vga_power_on(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010014758}
14759
Ville Syrjälä98ec7732014-04-30 17:43:01 +030014760static bool primary_get_hw_state(struct intel_crtc *crtc)
14761{
14762 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
14763
14764 if (!crtc->active)
14765 return false;
14766
14767 return I915_READ(DSPCNTR(crtc->plane)) & DISPLAY_PLANE_ENABLE;
14768}
14769
Daniel Vetter30e984d2013-06-05 13:34:17 +020014770static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020014771{
14772 struct drm_i915_private *dev_priv = dev->dev_private;
14773 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020014774 struct intel_crtc *crtc;
14775 struct intel_encoder *encoder;
14776 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020014777 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020014778
Damien Lespiaud3fcc802014-05-13 23:32:22 +010014779 for_each_intel_crtc(dev, crtc) {
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030014780 struct drm_plane *primary = crtc->base.primary;
14781 struct intel_plane_state *plane_state;
14782
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020014783 memset(crtc->config, 0, sizeof(*crtc->config));
Daniel Vetter3b117c82013-04-17 20:15:07 +020014784
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020014785 crtc->config->quirks |= PIPE_CONFIG_QUIRK_INHERITED_MODE;
Daniel Vetter99535992014-04-13 12:00:33 +020014786
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010014787 crtc->active = dev_priv->display.get_pipe_config(crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020014788 crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020014789
Matt Roper83d65732015-02-25 13:12:16 -080014790 crtc->base.state->enable = crtc->active;
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020014791 crtc->base.state->active = crtc->active;
Daniel Vetter24929352012-07-02 20:28:59 +020014792 crtc->base.enabled = crtc->active;
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030014793
14794 plane_state = to_intel_plane_state(primary->state);
14795 plane_state->visible = primary_get_hw_state(crtc);
Daniel Vetter24929352012-07-02 20:28:59 +020014796
14797 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
14798 crtc->base.base.id,
14799 crtc->active ? "enabled" : "disabled");
14800 }
14801
Daniel Vetter53589012013-06-05 13:34:16 +020014802 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
14803 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
14804
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020014805 pll->on = pll->get_hw_state(dev_priv, pll,
14806 &pll->config.hw_state);
Daniel Vetter53589012013-06-05 13:34:16 +020014807 pll->active = 0;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020014808 pll->config.crtc_mask = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010014809 for_each_intel_crtc(dev, crtc) {
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020014810 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll) {
Daniel Vetter53589012013-06-05 13:34:16 +020014811 pll->active++;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020014812 pll->config.crtc_mask |= 1 << crtc->pipe;
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020014813 }
Daniel Vetter53589012013-06-05 13:34:16 +020014814 }
Daniel Vetter53589012013-06-05 13:34:16 +020014815
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020014816 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020014817 pll->name, pll->config.crtc_mask, pll->on);
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030014818
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020014819 if (pll->config.crtc_mask)
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030014820 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
Daniel Vetter53589012013-06-05 13:34:16 +020014821 }
14822
Damien Lespiaub2784e12014-08-05 11:29:37 +010014823 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020014824 pipe = 0;
14825
14826 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -070014827 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
14828 encoder->base.crtc = &crtc->base;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020014829 encoder->get_config(encoder, crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020014830 } else {
14831 encoder->base.crtc = NULL;
14832 }
14833
14834 encoder->connectors_active = false;
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010014835 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
Daniel Vetter24929352012-07-02 20:28:59 +020014836 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030014837 encoder->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020014838 encoder->base.crtc ? "enabled" : "disabled",
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010014839 pipe_name(pipe));
Daniel Vetter24929352012-07-02 20:28:59 +020014840 }
14841
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020014842 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020014843 if (connector->get_hw_state(connector)) {
14844 connector->base.dpms = DRM_MODE_DPMS_ON;
14845 connector->encoder->connectors_active = true;
14846 connector->base.encoder = &connector->encoder->base;
14847 } else {
14848 connector->base.dpms = DRM_MODE_DPMS_OFF;
14849 connector->base.encoder = NULL;
14850 }
14851 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
14852 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030014853 connector->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020014854 connector->base.encoder ? "enabled" : "disabled");
14855 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020014856}
14857
14858/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
14859 * and i915 state tracking structures. */
14860void intel_modeset_setup_hw_state(struct drm_device *dev,
14861 bool force_restore)
14862{
14863 struct drm_i915_private *dev_priv = dev->dev_private;
14864 enum pipe pipe;
Daniel Vetter30e984d2013-06-05 13:34:17 +020014865 struct intel_crtc *crtc;
14866 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020014867 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020014868
14869 intel_modeset_readout_hw_state(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020014870
Jesse Barnesbabea612013-06-26 18:57:38 +030014871 /*
14872 * Now that we have the config, copy it to each CRTC struct
14873 * Note that this could go away if we move to using crtc_config
14874 * checking everywhere.
14875 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010014876 for_each_intel_crtc(dev, crtc) {
Jani Nikulad330a952014-01-21 11:24:25 +020014877 if (crtc->active && i915.fastboot) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020014878 intel_mode_from_pipe_config(&crtc->base.mode,
14879 crtc->config);
Jesse Barnesbabea612013-06-26 18:57:38 +030014880 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
14881 crtc->base.base.id);
14882 drm_mode_debug_printmodeline(&crtc->base.mode);
14883 }
14884 }
14885
Daniel Vetter24929352012-07-02 20:28:59 +020014886 /* HW state is read out, now we need to sanitize this mess. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010014887 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020014888 intel_sanitize_encoder(encoder);
14889 }
14890
Damien Lespiau055e3932014-08-18 13:49:10 +010014891 for_each_pipe(dev_priv, pipe) {
Daniel Vetter24929352012-07-02 20:28:59 +020014892 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
14893 intel_sanitize_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020014894 intel_dump_pipe_config(crtc, crtc->config,
14895 "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020014896 }
Daniel Vetter9a935852012-07-05 22:34:27 +020014897
Ander Conselvan de Oliveirad29b2f92015-03-20 16:18:05 +020014898 intel_modeset_update_connector_atomic_state(dev);
14899
Daniel Vetter35c95372013-07-17 06:55:04 +020014900 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
14901 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
14902
14903 if (!pll->on || pll->active)
14904 continue;
14905
14906 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
14907
14908 pll->disable(dev_priv, pll);
14909 pll->on = false;
14910 }
14911
Pradeep Bhat30789992014-11-04 17:06:45 +000014912 if (IS_GEN9(dev))
14913 skl_wm_get_hw_state(dev);
14914 else if (HAS_PCH_SPLIT(dev))
Ville Syrjälä243e6a42013-10-14 14:55:24 +030014915 ilk_wm_get_hw_state(dev);
14916
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010014917 if (force_restore) {
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030014918 i915_redisable_vga(dev);
14919
Daniel Vetterf30da182013-04-11 20:22:50 +020014920 /*
14921 * We need to use raw interfaces for restoring state to avoid
14922 * checking (bogus) intermediate states.
14923 */
Damien Lespiau055e3932014-08-18 13:49:10 +010014924 for_each_pipe(dev_priv, pipe) {
Jesse Barnesb5644d02013-03-26 13:25:27 -070014925 struct drm_crtc *crtc =
14926 dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vetterf30da182013-04-11 20:22:50 +020014927
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020014928 intel_crtc_restore_mode(crtc);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010014929 }
14930 } else {
14931 intel_modeset_update_staged_output_state(dev);
14932 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020014933
14934 intel_modeset_check_state(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +010014935}
14936
14937void intel_modeset_gem_init(struct drm_device *dev)
14938{
Jesse Barnes92122782014-10-09 12:57:42 -070014939 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes484b41d2014-03-07 08:57:55 -080014940 struct drm_crtc *c;
Matt Roper2ff8fde2014-07-08 07:50:07 -070014941 struct drm_i915_gem_object *obj;
Tvrtko Ursuline0d61492015-04-13 16:03:03 +010014942 int ret;
Jesse Barnes484b41d2014-03-07 08:57:55 -080014943
Imre Deakae484342014-03-31 15:10:44 +030014944 mutex_lock(&dev->struct_mutex);
14945 intel_init_gt_powersave(dev);
14946 mutex_unlock(&dev->struct_mutex);
14947
Jesse Barnes92122782014-10-09 12:57:42 -070014948 /*
14949 * There may be no VBT; and if the BIOS enabled SSC we can
14950 * just keep using it to avoid unnecessary flicker. Whereas if the
14951 * BIOS isn't using it, don't assume it will work even if the VBT
14952 * indicates as much.
14953 */
14954 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
14955 dev_priv->vbt.lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
14956 DREF_SSC1_ENABLE);
14957
Chris Wilson1833b132012-05-09 11:56:28 +010014958 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020014959
14960 intel_setup_overlay(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -080014961
14962 /*
14963 * Make sure any fbs we allocated at startup are properly
14964 * pinned & fenced. When we do the allocation it's too early
14965 * for this.
14966 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010014967 for_each_crtc(dev, c) {
Matt Roper2ff8fde2014-07-08 07:50:07 -070014968 obj = intel_fb_obj(c->primary->fb);
14969 if (obj == NULL)
Jesse Barnes484b41d2014-03-07 08:57:55 -080014970 continue;
14971
Tvrtko Ursuline0d61492015-04-13 16:03:03 +010014972 mutex_lock(&dev->struct_mutex);
14973 ret = intel_pin_and_fence_fb_obj(c->primary,
14974 c->primary->fb,
14975 c->primary->state,
14976 NULL);
14977 mutex_unlock(&dev->struct_mutex);
14978 if (ret) {
Jesse Barnes484b41d2014-03-07 08:57:55 -080014979 DRM_ERROR("failed to pin boot fb on pipe %d\n",
14980 to_intel_crtc(c)->pipe);
Dave Airlie66e514c2014-04-03 07:51:54 +100014981 drm_framebuffer_unreference(c->primary->fb);
14982 c->primary->fb = NULL;
Matt Roperafd65eb2015-02-03 13:10:04 -080014983 update_state_fb(c->primary);
Jesse Barnes484b41d2014-03-07 08:57:55 -080014984 }
14985 }
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020014986
14987 intel_backlight_register(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080014988}
14989
Imre Deak4932e2c2014-02-11 17:12:48 +020014990void intel_connector_unregister(struct intel_connector *intel_connector)
14991{
14992 struct drm_connector *connector = &intel_connector->base;
14993
14994 intel_panel_destroy_backlight(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +010014995 drm_connector_unregister(connector);
Imre Deak4932e2c2014-02-11 17:12:48 +020014996}
14997
Jesse Barnes79e53942008-11-07 14:24:08 -080014998void intel_modeset_cleanup(struct drm_device *dev)
14999{
Jesse Barnes652c3932009-08-17 13:31:43 -070015000 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid9255d52013-09-26 20:05:59 -030015001 struct drm_connector *connector;
Jesse Barnes652c3932009-08-17 13:31:43 -070015002
Imre Deak2eb52522014-11-19 15:30:05 +020015003 intel_disable_gt_powersave(dev);
15004
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020015005 intel_backlight_unregister(dev);
15006
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015007 /*
15008 * Interrupts and polling as the first thing to avoid creating havoc.
Imre Deak2eb52522014-11-19 15:30:05 +020015009 * Too much stuff here (turning of connectors, ...) would
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015010 * experience fancy races otherwise.
15011 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +020015012 intel_irq_uninstall(dev_priv);
Jesse Barneseb21b922014-06-20 11:57:33 -070015013
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015014 /*
15015 * Due to the hpd irq storm handling the hotplug work can re-arm the
15016 * poll handlers. Hence disable polling after hpd handling is shut down.
15017 */
Keith Packardf87ea762010-10-03 19:36:26 -070015018 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015019
Jesse Barnes652c3932009-08-17 13:31:43 -070015020 mutex_lock(&dev->struct_mutex);
15021
Jesse Barnes723bfd72010-10-07 16:01:13 -070015022 intel_unregister_dsm_handler();
15023
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020015024 intel_fbc_disable(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070015025
Kristian Høgsberg69341a52009-11-11 12:19:17 -050015026 mutex_unlock(&dev->struct_mutex);
15027
Chris Wilson1630fe72011-07-08 12:22:42 +010015028 /* flush any delayed tasks or pending work */
15029 flush_scheduled_work();
15030
Jani Nikuladb31af1d2013-11-08 16:48:53 +020015031 /* destroy the backlight and sysfs files before encoders/connectors */
15032 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Imre Deak4932e2c2014-02-11 17:12:48 +020015033 struct intel_connector *intel_connector;
15034
15035 intel_connector = to_intel_connector(connector);
15036 intel_connector->unregister(intel_connector);
Jani Nikuladb31af1d2013-11-08 16:48:53 +020015037 }
Paulo Zanonid9255d52013-09-26 20:05:59 -030015038
Jesse Barnes79e53942008-11-07 14:24:08 -080015039 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010015040
15041 intel_cleanup_overlay(dev);
Imre Deakae484342014-03-31 15:10:44 +030015042
15043 mutex_lock(&dev->struct_mutex);
15044 intel_cleanup_gt_powersave(dev);
15045 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080015046}
15047
Dave Airlie28d52042009-09-21 14:33:58 +100015048/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +080015049 * Return which encoder is currently attached for connector.
15050 */
Chris Wilsondf0e9242010-09-09 16:20:55 +010015051struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -080015052{
Chris Wilsondf0e9242010-09-09 16:20:55 +010015053 return &intel_attached_encoder(connector)->base;
15054}
Jesse Barnes79e53942008-11-07 14:24:08 -080015055
Chris Wilsondf0e9242010-09-09 16:20:55 +010015056void intel_connector_attach_encoder(struct intel_connector *connector,
15057 struct intel_encoder *encoder)
15058{
15059 connector->encoder = encoder;
15060 drm_mode_connector_attach_encoder(&connector->base,
15061 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080015062}
Dave Airlie28d52042009-09-21 14:33:58 +100015063
15064/*
15065 * set vga decode state - true == enable VGA decode
15066 */
15067int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
15068{
15069 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona885b3c2013-12-17 14:34:50 +000015070 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
Dave Airlie28d52042009-09-21 14:33:58 +100015071 u16 gmch_ctrl;
15072
Chris Wilson75fa0412014-02-07 18:37:02 -020015073 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
15074 DRM_ERROR("failed to read control word\n");
15075 return -EIO;
15076 }
15077
Chris Wilsonc0cc8a52014-02-07 18:37:03 -020015078 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
15079 return 0;
15080
Dave Airlie28d52042009-09-21 14:33:58 +100015081 if (state)
15082 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
15083 else
15084 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
Chris Wilson75fa0412014-02-07 18:37:02 -020015085
15086 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
15087 DRM_ERROR("failed to write control word\n");
15088 return -EIO;
15089 }
15090
Dave Airlie28d52042009-09-21 14:33:58 +100015091 return 0;
15092}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015093
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015094struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030015095
15096 u32 power_well_driver;
15097
Chris Wilson63b66e52013-08-08 15:12:06 +020015098 int num_transcoders;
15099
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015100 struct intel_cursor_error_state {
15101 u32 control;
15102 u32 position;
15103 u32 base;
15104 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010015105 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015106
15107 struct intel_pipe_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020015108 bool power_domain_on;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015109 u32 source;
Imre Deakf301b1e2014-04-18 15:55:04 +030015110 u32 stat;
Damien Lespiau52331302012-08-15 19:23:25 +010015111 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015112
15113 struct intel_plane_error_state {
15114 u32 control;
15115 u32 stride;
15116 u32 size;
15117 u32 pos;
15118 u32 addr;
15119 u32 surface;
15120 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010015121 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020015122
15123 struct intel_transcoder_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020015124 bool power_domain_on;
Chris Wilson63b66e52013-08-08 15:12:06 +020015125 enum transcoder cpu_transcoder;
15126
15127 u32 conf;
15128
15129 u32 htotal;
15130 u32 hblank;
15131 u32 hsync;
15132 u32 vtotal;
15133 u32 vblank;
15134 u32 vsync;
15135 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015136};
15137
15138struct intel_display_error_state *
15139intel_display_capture_error_state(struct drm_device *dev)
15140{
Jani Nikulafbee40d2014-03-31 14:27:18 +030015141 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015142 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020015143 int transcoders[] = {
15144 TRANSCODER_A,
15145 TRANSCODER_B,
15146 TRANSCODER_C,
15147 TRANSCODER_EDP,
15148 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015149 int i;
15150
Chris Wilson63b66e52013-08-08 15:12:06 +020015151 if (INTEL_INFO(dev)->num_pipes == 0)
15152 return NULL;
15153
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020015154 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015155 if (error == NULL)
15156 return NULL;
15157
Imre Deak190be112013-11-25 17:15:31 +020015158 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030015159 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
15160
Damien Lespiau055e3932014-08-18 13:49:10 +010015161 for_each_pipe(dev_priv, i) {
Imre Deakddf9c532013-11-27 22:02:02 +020015162 error->pipe[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020015163 __intel_display_power_is_enabled(dev_priv,
15164 POWER_DOMAIN_PIPE(i));
Imre Deakddf9c532013-11-27 22:02:02 +020015165 if (!error->pipe[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020015166 continue;
15167
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030015168 error->cursor[i].control = I915_READ(CURCNTR(i));
15169 error->cursor[i].position = I915_READ(CURPOS(i));
15170 error->cursor[i].base = I915_READ(CURBASE(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015171
15172 error->plane[i].control = I915_READ(DSPCNTR(i));
15173 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030015174 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030015175 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030015176 error->plane[i].pos = I915_READ(DSPPOS(i));
15177 }
Paulo Zanonica291362013-03-06 20:03:14 -030015178 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
15179 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015180 if (INTEL_INFO(dev)->gen >= 4) {
15181 error->plane[i].surface = I915_READ(DSPSURF(i));
15182 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
15183 }
15184
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015185 error->pipe[i].source = I915_READ(PIPESRC(i));
Imre Deakf301b1e2014-04-18 15:55:04 +030015186
Sonika Jindal3abfce72014-07-21 15:23:43 +053015187 if (HAS_GMCH_DISPLAY(dev))
Imre Deakf301b1e2014-04-18 15:55:04 +030015188 error->pipe[i].stat = I915_READ(PIPESTAT(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020015189 }
15190
15191 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
15192 if (HAS_DDI(dev_priv->dev))
15193 error->num_transcoders++; /* Account for eDP. */
15194
15195 for (i = 0; i < error->num_transcoders; i++) {
15196 enum transcoder cpu_transcoder = transcoders[i];
15197
Imre Deakddf9c532013-11-27 22:02:02 +020015198 error->transcoder[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020015199 __intel_display_power_is_enabled(dev_priv,
Paulo Zanoni38cc1da2013-12-20 15:09:41 -020015200 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020015201 if (!error->transcoder[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020015202 continue;
15203
Chris Wilson63b66e52013-08-08 15:12:06 +020015204 error->transcoder[i].cpu_transcoder = cpu_transcoder;
15205
15206 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
15207 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
15208 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
15209 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
15210 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
15211 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
15212 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015213 }
15214
15215 return error;
15216}
15217
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015218#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
15219
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015220void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015221intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015222 struct drm_device *dev,
15223 struct intel_display_error_state *error)
15224{
Damien Lespiau055e3932014-08-18 13:49:10 +010015225 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015226 int i;
15227
Chris Wilson63b66e52013-08-08 15:12:06 +020015228 if (!error)
15229 return;
15230
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015231 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Imre Deak190be112013-11-25 17:15:31 +020015232 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015233 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030015234 error->power_well_driver);
Damien Lespiau055e3932014-08-18 13:49:10 +010015235 for_each_pipe(dev_priv, i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015236 err_printf(m, "Pipe [%d]:\n", i);
Imre Deakddf9c532013-11-27 22:02:02 +020015237 err_printf(m, " Power: %s\n",
15238 error->pipe[i].power_domain_on ? "on" : "off");
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015239 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Imre Deakf301b1e2014-04-18 15:55:04 +030015240 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015241
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015242 err_printf(m, "Plane [%d]:\n", i);
15243 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
15244 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030015245 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015246 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
15247 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030015248 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030015249 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015250 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015251 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015252 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
15253 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015254 }
15255
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015256 err_printf(m, "Cursor [%d]:\n", i);
15257 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
15258 err_printf(m, " POS: %08x\n", error->cursor[i].position);
15259 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015260 }
Chris Wilson63b66e52013-08-08 15:12:06 +020015261
15262 for (i = 0; i < error->num_transcoders; i++) {
Chris Wilson1cf84bb2013-10-21 09:10:33 +010015263 err_printf(m, "CPU transcoder: %c\n",
Chris Wilson63b66e52013-08-08 15:12:06 +020015264 transcoder_name(error->transcoder[i].cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020015265 err_printf(m, " Power: %s\n",
15266 error->transcoder[i].power_domain_on ? "on" : "off");
Chris Wilson63b66e52013-08-08 15:12:06 +020015267 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
15268 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
15269 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
15270 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
15271 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
15272 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
15273 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
15274 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015275}
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030015276
15277void intel_modeset_preclose(struct drm_device *dev, struct drm_file *file)
15278{
15279 struct intel_crtc *crtc;
15280
15281 for_each_intel_crtc(dev, crtc) {
15282 struct intel_unpin_work *work;
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030015283
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020015284 spin_lock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030015285
15286 work = crtc->unpin_work;
15287
15288 if (work && work->event &&
15289 work->event->base.file_priv == file) {
15290 kfree(work->event);
15291 work->event = NULL;
15292 }
15293
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020015294 spin_unlock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030015295 }
15296}