blob: d5d648030af0cb01c42df70a4bfa29e336db731b [file] [log] [blame]
Jesse Barnes79e53942008-11-07 14:24:08 -08001/*
2 * Copyright © 2006-2007 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 */
26
Daniel Vetter618563e2012-04-01 13:38:50 +020027#include <linux/dmi.h>
Jesse Barnesc1c7af62009-09-10 15:28:03 -070028#include <linux/module.h>
29#include <linux/input.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080030#include <linux/i2c.h>
Shaohua Li7662c8b2009-06-26 11:23:55 +080031#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Jesse Barnes9cce37f2010-08-13 15:11:26 -070033#include <linux/vgaarb.h>
Wu Fengguange0dac652011-09-05 14:25:34 +080034#include <drm/drm_edid.h>
David Howells760285e2012-10-02 18:01:07 +010035#include <drm/drmP.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080036#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010037#include <drm/i915_drm.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080038#include "i915_drv.h"
Jesse Barnese5510fa2010-07-01 16:48:37 -070039#include "i915_trace.h"
Xi Ruoyao319c1d42015-03-12 20:16:32 +080040#include <drm/drm_atomic.h>
Matt Roperc196e1d2015-01-21 16:35:48 -080041#include <drm/drm_atomic_helper.h>
David Howells760285e2012-10-02 18:01:07 +010042#include <drm/drm_dp_helper.h>
43#include <drm/drm_crtc_helper.h>
Matt Roper465c1202014-05-29 08:06:54 -070044#include <drm/drm_plane_helper.h>
45#include <drm/drm_rect.h>
Keith Packardc0f372b32011-11-16 22:24:52 -080046#include <linux/dma_remapping.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080047
Matt Roper465c1202014-05-29 08:06:54 -070048/* Primary plane formats supported by all gen */
49#define COMMON_PRIMARY_FORMATS \
50 DRM_FORMAT_C8, \
51 DRM_FORMAT_RGB565, \
52 DRM_FORMAT_XRGB8888, \
53 DRM_FORMAT_ARGB8888
54
55/* Primary plane formats for gen <= 3 */
56static const uint32_t intel_primary_formats_gen2[] = {
57 COMMON_PRIMARY_FORMATS,
58 DRM_FORMAT_XRGB1555,
59 DRM_FORMAT_ARGB1555,
60};
61
62/* Primary plane formats for gen >= 4 */
63static const uint32_t intel_primary_formats_gen4[] = {
64 COMMON_PRIMARY_FORMATS, \
65 DRM_FORMAT_XBGR8888,
66 DRM_FORMAT_ABGR8888,
67 DRM_FORMAT_XRGB2101010,
68 DRM_FORMAT_ARGB2101010,
69 DRM_FORMAT_XBGR2101010,
70 DRM_FORMAT_ABGR2101010,
71};
72
Matt Roper3d7d6512014-06-10 08:28:13 -070073/* Cursor formats */
74static const uint32_t intel_cursor_formats[] = {
75 DRM_FORMAT_ARGB8888,
76};
77
Chris Wilson6b383a72010-09-13 13:54:26 +010078static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
Jesse Barnes79e53942008-11-07 14:24:08 -080079
Jesse Barnesf1f644d2013-06-27 00:39:25 +030080static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020081 struct intel_crtc_state *pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +030082static void ironlake_pch_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020083 struct intel_crtc_state *pipe_config);
Jesse Barnesf1f644d2013-06-27 00:39:25 +030084
Damien Lespiaue7457a92013-08-08 22:28:59 +010085static int intel_set_mode(struct drm_crtc *crtc, struct drm_display_mode *mode,
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020086 int x, int y, struct drm_framebuffer *old_fb,
87 struct drm_atomic_state *state);
Jesse Barneseb1bfe82014-02-12 12:26:25 -080088static int intel_framebuffer_init(struct drm_device *dev,
89 struct intel_framebuffer *ifb,
90 struct drm_mode_fb_cmd2 *mode_cmd,
91 struct drm_i915_gem_object *obj);
Daniel Vetter5b18e572014-04-24 23:55:06 +020092static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc);
93static void intel_set_pipe_timings(struct intel_crtc *intel_crtc);
Daniel Vetter29407aa2014-04-24 23:55:08 +020094static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -070095 struct intel_link_m_n *m_n,
96 struct intel_link_m_n *m2_n2);
Daniel Vetter29407aa2014-04-24 23:55:08 +020097static void ironlake_set_pipeconf(struct drm_crtc *crtc);
Daniel Vetter229fca92014-04-24 23:55:09 +020098static void haswell_set_pipeconf(struct drm_crtc *crtc);
99static void intel_set_pipe_csc(struct drm_crtc *crtc);
Ville Syrjäläd288f652014-10-28 13:20:22 +0200100static void vlv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200101 const struct intel_crtc_state *pipe_config);
Ville Syrjäläd288f652014-10-28 13:20:22 +0200102static void chv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200103 const struct intel_crtc_state *pipe_config);
Matt Roperea2c67b2014-12-23 10:41:52 -0800104static void intel_begin_crtc_commit(struct drm_crtc *crtc);
105static void intel_finish_crtc_commit(struct drm_crtc *crtc);
Chandra Konduru549e2bf2015-04-07 15:28:38 -0700106static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
107 struct intel_crtc_state *crtc_state);
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200108static int i9xx_get_refclk(const struct intel_crtc_state *crtc_state,
109 int num_connectors);
Maarten Lankhorstce22dba2015-04-21 17:12:56 +0300110static void intel_crtc_enable_planes(struct drm_crtc *crtc);
111static void intel_crtc_disable_planes(struct drm_crtc *crtc);
Damien Lespiaue7457a92013-08-08 22:28:59 +0100112
Dave Airlie0e32b392014-05-02 14:02:48 +1000113static struct intel_encoder *intel_find_encoder(struct intel_connector *connector, int pipe)
114{
115 if (!connector->mst_port)
116 return connector->encoder;
117 else
118 return &connector->mst_port->mst_encoders[pipe]->base;
119}
120
Jesse Barnes79e53942008-11-07 14:24:08 -0800121typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -0400122 int min, max;
Jesse Barnes79e53942008-11-07 14:24:08 -0800123} intel_range_t;
124
125typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -0400126 int dot_limit;
127 int p2_slow, p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -0800128} intel_p2_t;
129
Ma Lingd4906092009-03-18 20:13:27 +0800130typedef struct intel_limit intel_limit_t;
131struct intel_limit {
Akshay Joshi0206e352011-08-16 15:34:10 -0400132 intel_range_t dot, vco, n, m, m1, m2, p, p1;
133 intel_p2_t p2;
Ma Lingd4906092009-03-18 20:13:27 +0800134};
Jesse Barnes79e53942008-11-07 14:24:08 -0800135
Daniel Vetterd2acd212012-10-20 20:57:43 +0200136int
137intel_pch_rawclk(struct drm_device *dev)
138{
139 struct drm_i915_private *dev_priv = dev->dev_private;
140
141 WARN_ON(!HAS_PCH_SPLIT(dev));
142
143 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
144}
145
Chris Wilson021357a2010-09-07 20:54:59 +0100146static inline u32 /* units of 100MHz */
147intel_fdi_link_freq(struct drm_device *dev)
148{
Chris Wilson8b99e682010-10-13 09:59:17 +0100149 if (IS_GEN5(dev)) {
150 struct drm_i915_private *dev_priv = dev->dev_private;
151 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
152 } else
153 return 27;
Chris Wilson021357a2010-09-07 20:54:59 +0100154}
155
Daniel Vetter5d536e22013-07-06 12:52:06 +0200156static const intel_limit_t intel_limits_i8xx_dac = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400157 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200158 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200159 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400160 .m = { .min = 96, .max = 140 },
161 .m1 = { .min = 18, .max = 26 },
162 .m2 = { .min = 6, .max = 16 },
163 .p = { .min = 4, .max = 128 },
164 .p1 = { .min = 2, .max = 33 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700165 .p2 = { .dot_limit = 165000,
166 .p2_slow = 4, .p2_fast = 2 },
Keith Packarde4b36692009-06-05 19:22:17 -0700167};
168
Daniel Vetter5d536e22013-07-06 12:52:06 +0200169static const intel_limit_t intel_limits_i8xx_dvo = {
170 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200171 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200172 .n = { .min = 2, .max = 16 },
Daniel Vetter5d536e22013-07-06 12:52:06 +0200173 .m = { .min = 96, .max = 140 },
174 .m1 = { .min = 18, .max = 26 },
175 .m2 = { .min = 6, .max = 16 },
176 .p = { .min = 4, .max = 128 },
177 .p1 = { .min = 2, .max = 33 },
178 .p2 = { .dot_limit = 165000,
179 .p2_slow = 4, .p2_fast = 4 },
180};
181
Keith Packarde4b36692009-06-05 19:22:17 -0700182static const intel_limit_t intel_limits_i8xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400183 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200184 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200185 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400186 .m = { .min = 96, .max = 140 },
187 .m1 = { .min = 18, .max = 26 },
188 .m2 = { .min = 6, .max = 16 },
189 .p = { .min = 4, .max = 128 },
190 .p1 = { .min = 1, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700191 .p2 = { .dot_limit = 165000,
192 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700193};
Eric Anholt273e27c2011-03-30 13:01:10 -0700194
Keith Packarde4b36692009-06-05 19:22:17 -0700195static const intel_limit_t intel_limits_i9xx_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400196 .dot = { .min = 20000, .max = 400000 },
197 .vco = { .min = 1400000, .max = 2800000 },
198 .n = { .min = 1, .max = 6 },
199 .m = { .min = 70, .max = 120 },
Patrik Jakobsson4f7dfb62013-02-13 22:20:22 +0100200 .m1 = { .min = 8, .max = 18 },
201 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400202 .p = { .min = 5, .max = 80 },
203 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700204 .p2 = { .dot_limit = 200000,
205 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700206};
207
208static const intel_limit_t intel_limits_i9xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400209 .dot = { .min = 20000, .max = 400000 },
210 .vco = { .min = 1400000, .max = 2800000 },
211 .n = { .min = 1, .max = 6 },
212 .m = { .min = 70, .max = 120 },
Patrik Jakobsson53a7d2d2013-02-13 22:20:21 +0100213 .m1 = { .min = 8, .max = 18 },
214 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400215 .p = { .min = 7, .max = 98 },
216 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700217 .p2 = { .dot_limit = 112000,
218 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700219};
220
Eric Anholt273e27c2011-03-30 13:01:10 -0700221
Keith Packarde4b36692009-06-05 19:22:17 -0700222static const intel_limit_t intel_limits_g4x_sdvo = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700223 .dot = { .min = 25000, .max = 270000 },
224 .vco = { .min = 1750000, .max = 3500000},
225 .n = { .min = 1, .max = 4 },
226 .m = { .min = 104, .max = 138 },
227 .m1 = { .min = 17, .max = 23 },
228 .m2 = { .min = 5, .max = 11 },
229 .p = { .min = 10, .max = 30 },
230 .p1 = { .min = 1, .max = 3},
231 .p2 = { .dot_limit = 270000,
232 .p2_slow = 10,
233 .p2_fast = 10
Ma Ling044c7c42009-03-18 20:13:23 +0800234 },
Keith Packarde4b36692009-06-05 19:22:17 -0700235};
236
237static const intel_limit_t intel_limits_g4x_hdmi = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700238 .dot = { .min = 22000, .max = 400000 },
239 .vco = { .min = 1750000, .max = 3500000},
240 .n = { .min = 1, .max = 4 },
241 .m = { .min = 104, .max = 138 },
242 .m1 = { .min = 16, .max = 23 },
243 .m2 = { .min = 5, .max = 11 },
244 .p = { .min = 5, .max = 80 },
245 .p1 = { .min = 1, .max = 8},
246 .p2 = { .dot_limit = 165000,
247 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700248};
249
250static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700251 .dot = { .min = 20000, .max = 115000 },
252 .vco = { .min = 1750000, .max = 3500000 },
253 .n = { .min = 1, .max = 3 },
254 .m = { .min = 104, .max = 138 },
255 .m1 = { .min = 17, .max = 23 },
256 .m2 = { .min = 5, .max = 11 },
257 .p = { .min = 28, .max = 112 },
258 .p1 = { .min = 2, .max = 8 },
259 .p2 = { .dot_limit = 0,
260 .p2_slow = 14, .p2_fast = 14
Ma Ling044c7c42009-03-18 20:13:23 +0800261 },
Keith Packarde4b36692009-06-05 19:22:17 -0700262};
263
264static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700265 .dot = { .min = 80000, .max = 224000 },
266 .vco = { .min = 1750000, .max = 3500000 },
267 .n = { .min = 1, .max = 3 },
268 .m = { .min = 104, .max = 138 },
269 .m1 = { .min = 17, .max = 23 },
270 .m2 = { .min = 5, .max = 11 },
271 .p = { .min = 14, .max = 42 },
272 .p1 = { .min = 2, .max = 6 },
273 .p2 = { .dot_limit = 0,
274 .p2_slow = 7, .p2_fast = 7
Ma Ling044c7c42009-03-18 20:13:23 +0800275 },
Keith Packarde4b36692009-06-05 19:22:17 -0700276};
277
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500278static const intel_limit_t intel_limits_pineview_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400279 .dot = { .min = 20000, .max = 400000},
280 .vco = { .min = 1700000, .max = 3500000 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700281 /* Pineview's Ncounter is a ring counter */
Akshay Joshi0206e352011-08-16 15:34:10 -0400282 .n = { .min = 3, .max = 6 },
283 .m = { .min = 2, .max = 256 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700284 /* Pineview only has one combined m divider, which we treat as m2. */
Akshay Joshi0206e352011-08-16 15:34:10 -0400285 .m1 = { .min = 0, .max = 0 },
286 .m2 = { .min = 0, .max = 254 },
287 .p = { .min = 5, .max = 80 },
288 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700289 .p2 = { .dot_limit = 200000,
290 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700291};
292
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500293static const intel_limit_t intel_limits_pineview_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400294 .dot = { .min = 20000, .max = 400000 },
295 .vco = { .min = 1700000, .max = 3500000 },
296 .n = { .min = 3, .max = 6 },
297 .m = { .min = 2, .max = 256 },
298 .m1 = { .min = 0, .max = 0 },
299 .m2 = { .min = 0, .max = 254 },
300 .p = { .min = 7, .max = 112 },
301 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700302 .p2 = { .dot_limit = 112000,
303 .p2_slow = 14, .p2_fast = 14 },
Keith Packarde4b36692009-06-05 19:22:17 -0700304};
305
Eric Anholt273e27c2011-03-30 13:01:10 -0700306/* Ironlake / Sandybridge
307 *
308 * We calculate clock using (register_value + 2) for N/M1/M2, so here
309 * the range value for them is (actual_value - 2).
310 */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800311static const intel_limit_t intel_limits_ironlake_dac = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700312 .dot = { .min = 25000, .max = 350000 },
313 .vco = { .min = 1760000, .max = 3510000 },
314 .n = { .min = 1, .max = 5 },
315 .m = { .min = 79, .max = 127 },
316 .m1 = { .min = 12, .max = 22 },
317 .m2 = { .min = 5, .max = 9 },
318 .p = { .min = 5, .max = 80 },
319 .p1 = { .min = 1, .max = 8 },
320 .p2 = { .dot_limit = 225000,
321 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700322};
323
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800324static const intel_limit_t intel_limits_ironlake_single_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700325 .dot = { .min = 25000, .max = 350000 },
326 .vco = { .min = 1760000, .max = 3510000 },
327 .n = { .min = 1, .max = 3 },
328 .m = { .min = 79, .max = 118 },
329 .m1 = { .min = 12, .max = 22 },
330 .m2 = { .min = 5, .max = 9 },
331 .p = { .min = 28, .max = 112 },
332 .p1 = { .min = 2, .max = 8 },
333 .p2 = { .dot_limit = 225000,
334 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800335};
336
337static const intel_limit_t intel_limits_ironlake_dual_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700338 .dot = { .min = 25000, .max = 350000 },
339 .vco = { .min = 1760000, .max = 3510000 },
340 .n = { .min = 1, .max = 3 },
341 .m = { .min = 79, .max = 127 },
342 .m1 = { .min = 12, .max = 22 },
343 .m2 = { .min = 5, .max = 9 },
344 .p = { .min = 14, .max = 56 },
345 .p1 = { .min = 2, .max = 8 },
346 .p2 = { .dot_limit = 225000,
347 .p2_slow = 7, .p2_fast = 7 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800348};
349
Eric Anholt273e27c2011-03-30 13:01:10 -0700350/* LVDS 100mhz refclk limits. */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800351static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700352 .dot = { .min = 25000, .max = 350000 },
353 .vco = { .min = 1760000, .max = 3510000 },
354 .n = { .min = 1, .max = 2 },
355 .m = { .min = 79, .max = 126 },
356 .m1 = { .min = 12, .max = 22 },
357 .m2 = { .min = 5, .max = 9 },
358 .p = { .min = 28, .max = 112 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400359 .p1 = { .min = 2, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700360 .p2 = { .dot_limit = 225000,
361 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800362};
363
364static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700365 .dot = { .min = 25000, .max = 350000 },
366 .vco = { .min = 1760000, .max = 3510000 },
367 .n = { .min = 1, .max = 3 },
368 .m = { .min = 79, .max = 126 },
369 .m1 = { .min = 12, .max = 22 },
370 .m2 = { .min = 5, .max = 9 },
371 .p = { .min = 14, .max = 42 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400372 .p1 = { .min = 2, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700373 .p2 = { .dot_limit = 225000,
374 .p2_slow = 7, .p2_fast = 7 },
Zhao Yakui45476682009-12-31 16:06:04 +0800375};
376
Ville Syrjälädc730512013-09-24 21:26:30 +0300377static const intel_limit_t intel_limits_vlv = {
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300378 /*
379 * These are the data rate limits (measured in fast clocks)
380 * since those are the strictest limits we have. The fast
381 * clock and actual rate limits are more relaxed, so checking
382 * them would make no difference.
383 */
384 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
Daniel Vetter75e53982013-04-18 21:10:43 +0200385 .vco = { .min = 4000000, .max = 6000000 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700386 .n = { .min = 1, .max = 7 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700387 .m1 = { .min = 2, .max = 3 },
388 .m2 = { .min = 11, .max = 156 },
Ville Syrjäläb99ab662013-09-24 21:26:26 +0300389 .p1 = { .min = 2, .max = 3 },
Ville Syrjälä5fdc9c492013-09-24 21:26:29 +0300390 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700391};
392
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300393static const intel_limit_t intel_limits_chv = {
394 /*
395 * These are the data rate limits (measured in fast clocks)
396 * since those are the strictest limits we have. The fast
397 * clock and actual rate limits are more relaxed, so checking
398 * them would make no difference.
399 */
400 .dot = { .min = 25000 * 5, .max = 540000 * 5},
Ville Syrjälä17fe1022015-02-26 21:01:52 +0200401 .vco = { .min = 4800000, .max = 6480000 },
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300402 .n = { .min = 1, .max = 1 },
403 .m1 = { .min = 2, .max = 2 },
404 .m2 = { .min = 24 << 22, .max = 175 << 22 },
405 .p1 = { .min = 2, .max = 4 },
406 .p2 = { .p2_slow = 1, .p2_fast = 14 },
407};
408
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200409static const intel_limit_t intel_limits_bxt = {
410 /* FIXME: find real dot limits */
411 .dot = { .min = 0, .max = INT_MAX },
412 .vco = { .min = 4800000, .max = 6480000 },
413 .n = { .min = 1, .max = 1 },
414 .m1 = { .min = 2, .max = 2 },
415 /* FIXME: find real m2 limits */
416 .m2 = { .min = 2 << 22, .max = 255 << 22 },
417 .p1 = { .min = 2, .max = 4 },
418 .p2 = { .p2_slow = 1, .p2_fast = 20 },
419};
420
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300421static void vlv_clock(int refclk, intel_clock_t *clock)
422{
423 clock->m = clock->m1 * clock->m2;
424 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200425 if (WARN_ON(clock->n == 0 || clock->p == 0))
426 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300427 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
428 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300429}
430
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300431/**
432 * Returns whether any output on the specified pipe is of the specified type
433 */
Damien Lespiau40935612014-10-29 11:16:59 +0000434bool intel_pipe_has_type(struct intel_crtc *crtc, enum intel_output_type type)
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300435{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300436 struct drm_device *dev = crtc->base.dev;
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300437 struct intel_encoder *encoder;
438
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300439 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300440 if (encoder->type == type)
441 return true;
442
443 return false;
444}
445
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200446/**
447 * Returns whether any output on the specified pipe will have the specified
448 * type after a staged modeset is complete, i.e., the same as
449 * intel_pipe_has_type() but looking at encoder->new_crtc instead of
450 * encoder->crtc.
451 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200452static bool intel_pipe_will_have_type(const struct intel_crtc_state *crtc_state,
453 int type)
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200454{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200455 struct drm_atomic_state *state = crtc_state->base.state;
456 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 Oliveiraa93e2552015-03-20 16:18:17 +0200460 for (i = 0; i < state->num_connector; i++) {
461 if (!state->connectors[i])
462 continue;
463
464 connector_state = state->connector_states[i];
465 if (connector_state->crtc != crtc_state->base.crtc)
466 continue;
467
468 num_connectors++;
469
470 encoder = to_intel_encoder(connector_state->best_encoder);
471 if (encoder->type == type)
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200472 return true;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200473 }
474
475 WARN_ON(num_connectors == 0);
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200476
477 return false;
478}
479
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200480static const intel_limit_t *
481intel_ironlake_limit(struct intel_crtc_state *crtc_state, int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800482{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200483 struct drm_device *dev = crtc_state->base.crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800484 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800485
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200486 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100487 if (intel_is_dual_link_lvds(dev)) {
Chris Wilson1b894b52010-12-14 20:04:54 +0000488 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800489 limit = &intel_limits_ironlake_dual_lvds_100m;
490 else
491 limit = &intel_limits_ironlake_dual_lvds;
492 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000493 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800494 limit = &intel_limits_ironlake_single_lvds_100m;
495 else
496 limit = &intel_limits_ironlake_single_lvds;
497 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200498 } else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800499 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800500
501 return limit;
502}
503
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200504static const intel_limit_t *
505intel_g4x_limit(struct intel_crtc_state *crtc_state)
Ma Ling044c7c42009-03-18 20:13:23 +0800506{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200507 struct drm_device *dev = crtc_state->base.crtc->dev;
Ma Ling044c7c42009-03-18 20:13:23 +0800508 const intel_limit_t *limit;
509
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200510 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100511 if (intel_is_dual_link_lvds(dev))
Keith Packarde4b36692009-06-05 19:22:17 -0700512 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800513 else
Keith Packarde4b36692009-06-05 19:22:17 -0700514 limit = &intel_limits_g4x_single_channel_lvds;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200515 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI) ||
516 intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700517 limit = &intel_limits_g4x_hdmi;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200518 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700519 limit = &intel_limits_g4x_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800520 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700521 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800522
523 return limit;
524}
525
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200526static const intel_limit_t *
527intel_limit(struct intel_crtc_state *crtc_state, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800528{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200529 struct drm_device *dev = crtc_state->base.crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800530 const intel_limit_t *limit;
531
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200532 if (IS_BROXTON(dev))
533 limit = &intel_limits_bxt;
534 else if (HAS_PCH_SPLIT(dev))
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200535 limit = intel_ironlake_limit(crtc_state, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800536 else if (IS_G4X(dev)) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200537 limit = intel_g4x_limit(crtc_state);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500538 } else if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200539 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500540 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800541 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500542 limit = &intel_limits_pineview_sdvo;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300543 } else if (IS_CHERRYVIEW(dev)) {
544 limit = &intel_limits_chv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700545 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälädc730512013-09-24 21:26:30 +0300546 limit = &intel_limits_vlv;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100547 } else if (!IS_GEN2(dev)) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200548 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100549 limit = &intel_limits_i9xx_lvds;
550 else
551 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800552 } else {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200553 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700554 limit = &intel_limits_i8xx_lvds;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200555 else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO))
Keith Packarde4b36692009-06-05 19:22:17 -0700556 limit = &intel_limits_i8xx_dvo;
Daniel Vetter5d536e22013-07-06 12:52:06 +0200557 else
558 limit = &intel_limits_i8xx_dac;
Jesse Barnes79e53942008-11-07 14:24:08 -0800559 }
560 return limit;
561}
562
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500563/* m1 is reserved as 0 in Pineview, n is a ring counter */
564static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800565{
Shaohua Li21778322009-02-23 15:19:16 +0800566 clock->m = clock->m2 + 2;
567 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200568 if (WARN_ON(clock->n == 0 || clock->p == 0))
569 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300570 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
571 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Shaohua Li21778322009-02-23 15:19:16 +0800572}
573
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200574static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
575{
576 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
577}
578
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200579static void i9xx_clock(int refclk, intel_clock_t *clock)
Shaohua Li21778322009-02-23 15:19:16 +0800580{
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200581 clock->m = i9xx_dpll_compute_m(clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800582 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200583 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
584 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300585 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
586 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Jesse Barnes79e53942008-11-07 14:24:08 -0800587}
588
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300589static void chv_clock(int refclk, intel_clock_t *clock)
590{
591 clock->m = clock->m1 * clock->m2;
592 clock->p = clock->p1 * clock->p2;
593 if (WARN_ON(clock->n == 0 || clock->p == 0))
594 return;
595 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
596 clock->n << 22);
597 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
598}
599
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800600#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800601/**
602 * Returns whether the given set of divisors are valid for a given refclk with
603 * the given connectors.
604 */
605
Chris Wilson1b894b52010-12-14 20:04:54 +0000606static bool intel_PLL_is_valid(struct drm_device *dev,
607 const intel_limit_t *limit,
608 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800609{
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300610 if (clock->n < limit->n.min || limit->n.max < clock->n)
611 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800612 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400613 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800614 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400615 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800616 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400617 INTELPllInvalid("m1 out of range\n");
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300618
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200619 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev) && !IS_BROXTON(dev))
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300620 if (clock->m1 <= clock->m2)
621 INTELPllInvalid("m1 <= m2\n");
622
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200623 if (!IS_VALLEYVIEW(dev) && !IS_BROXTON(dev)) {
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300624 if (clock->p < limit->p.min || limit->p.max < clock->p)
625 INTELPllInvalid("p out of range\n");
626 if (clock->m < limit->m.min || limit->m.max < clock->m)
627 INTELPllInvalid("m out of range\n");
628 }
629
Jesse Barnes79e53942008-11-07 14:24:08 -0800630 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400631 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800632 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
633 * connector, etc., rather than just a single range.
634 */
635 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400636 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800637
638 return true;
639}
640
Ma Lingd4906092009-03-18 20:13:27 +0800641static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200642i9xx_find_best_dpll(const intel_limit_t *limit,
643 struct intel_crtc_state *crtc_state,
Sean Paulcec2f352012-01-10 15:09:36 -0800644 int target, int refclk, intel_clock_t *match_clock,
645 intel_clock_t *best_clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800646{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200647 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300648 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800649 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800650 int err = target;
651
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200652 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800653 /*
Daniel Vettera210b022012-11-26 17:22:08 +0100654 * For LVDS just rely on its current settings for dual-channel.
655 * We haven't figured out how to reliably set up different
656 * single/dual channel state, if we even can.
Jesse Barnes79e53942008-11-07 14:24:08 -0800657 */
Daniel Vetter1974cad2012-11-26 17:22:09 +0100658 if (intel_is_dual_link_lvds(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800659 clock.p2 = limit->p2.p2_fast;
660 else
661 clock.p2 = limit->p2.p2_slow;
662 } else {
663 if (target < limit->p2.dot_limit)
664 clock.p2 = limit->p2.p2_slow;
665 else
666 clock.p2 = limit->p2.p2_fast;
667 }
668
Akshay Joshi0206e352011-08-16 15:34:10 -0400669 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800670
Zhao Yakui42158662009-11-20 11:24:18 +0800671 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
672 clock.m1++) {
673 for (clock.m2 = limit->m2.min;
674 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterc0efc382013-06-03 20:56:24 +0200675 if (clock.m2 >= clock.m1)
Zhao Yakui42158662009-11-20 11:24:18 +0800676 break;
677 for (clock.n = limit->n.min;
678 clock.n <= limit->n.max; clock.n++) {
679 for (clock.p1 = limit->p1.min;
680 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800681 int this_err;
682
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200683 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000684 if (!intel_PLL_is_valid(dev, limit,
685 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800686 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800687 if (match_clock &&
688 clock.p != match_clock->p)
689 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800690
691 this_err = abs(clock.dot - target);
692 if (this_err < err) {
693 *best_clock = clock;
694 err = this_err;
695 }
696 }
697 }
698 }
699 }
700
701 return (err != target);
702}
703
Ma Lingd4906092009-03-18 20:13:27 +0800704static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200705pnv_find_best_dpll(const intel_limit_t *limit,
706 struct intel_crtc_state *crtc_state,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200707 int target, int refclk, intel_clock_t *match_clock,
708 intel_clock_t *best_clock)
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200709{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200710 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300711 struct drm_device *dev = crtc->base.dev;
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200712 intel_clock_t clock;
713 int err = target;
714
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200715 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200716 /*
717 * For LVDS just rely on its current settings for dual-channel.
718 * We haven't figured out how to reliably set up different
719 * single/dual channel state, if we even can.
720 */
721 if (intel_is_dual_link_lvds(dev))
722 clock.p2 = limit->p2.p2_fast;
723 else
724 clock.p2 = limit->p2.p2_slow;
725 } else {
726 if (target < limit->p2.dot_limit)
727 clock.p2 = limit->p2.p2_slow;
728 else
729 clock.p2 = limit->p2.p2_fast;
730 }
731
732 memset(best_clock, 0, sizeof(*best_clock));
733
734 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
735 clock.m1++) {
736 for (clock.m2 = limit->m2.min;
737 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200738 for (clock.n = limit->n.min;
739 clock.n <= limit->n.max; clock.n++) {
740 for (clock.p1 = limit->p1.min;
741 clock.p1 <= limit->p1.max; clock.p1++) {
742 int this_err;
743
744 pineview_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800745 if (!intel_PLL_is_valid(dev, limit,
746 &clock))
747 continue;
748 if (match_clock &&
749 clock.p != match_clock->p)
750 continue;
751
752 this_err = abs(clock.dot - target);
753 if (this_err < err) {
754 *best_clock = clock;
755 err = this_err;
756 }
757 }
758 }
759 }
760 }
761
762 return (err != target);
763}
764
Ma Lingd4906092009-03-18 20:13:27 +0800765static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200766g4x_find_best_dpll(const intel_limit_t *limit,
767 struct intel_crtc_state *crtc_state,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200768 int target, int refclk, intel_clock_t *match_clock,
769 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800770{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200771 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300772 struct drm_device *dev = crtc->base.dev;
Ma Lingd4906092009-03-18 20:13:27 +0800773 intel_clock_t clock;
774 int max_n;
775 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400776 /* approximately equals target * 0.00585 */
777 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800778 found = false;
779
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200780 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100781 if (intel_is_dual_link_lvds(dev))
Ma Lingd4906092009-03-18 20:13:27 +0800782 clock.p2 = limit->p2.p2_fast;
783 else
784 clock.p2 = limit->p2.p2_slow;
785 } else {
786 if (target < limit->p2.dot_limit)
787 clock.p2 = limit->p2.p2_slow;
788 else
789 clock.p2 = limit->p2.p2_fast;
790 }
791
792 memset(best_clock, 0, sizeof(*best_clock));
793 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200794 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800795 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200796 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800797 for (clock.m1 = limit->m1.max;
798 clock.m1 >= limit->m1.min; clock.m1--) {
799 for (clock.m2 = limit->m2.max;
800 clock.m2 >= limit->m2.min; clock.m2--) {
801 for (clock.p1 = limit->p1.max;
802 clock.p1 >= limit->p1.min; clock.p1--) {
803 int this_err;
804
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200805 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000806 if (!intel_PLL_is_valid(dev, limit,
807 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800808 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000809
810 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800811 if (this_err < err_most) {
812 *best_clock = clock;
813 err_most = this_err;
814 max_n = clock.n;
815 found = true;
816 }
817 }
818 }
819 }
820 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800821 return found;
822}
Ma Lingd4906092009-03-18 20:13:27 +0800823
Imre Deakd5dd62b2015-03-17 11:40:03 +0200824/*
825 * Check if the calculated PLL configuration is more optimal compared to the
826 * best configuration and error found so far. Return the calculated error.
827 */
828static bool vlv_PLL_is_optimal(struct drm_device *dev, int target_freq,
829 const intel_clock_t *calculated_clock,
830 const intel_clock_t *best_clock,
831 unsigned int best_error_ppm,
832 unsigned int *error_ppm)
833{
Imre Deak9ca3ba02015-03-17 11:40:05 +0200834 /*
835 * For CHV ignore the error and consider only the P value.
836 * Prefer a bigger P value based on HW requirements.
837 */
838 if (IS_CHERRYVIEW(dev)) {
839 *error_ppm = 0;
840
841 return calculated_clock->p > best_clock->p;
842 }
843
Imre Deak24be4e42015-03-17 11:40:04 +0200844 if (WARN_ON_ONCE(!target_freq))
845 return false;
846
Imre Deakd5dd62b2015-03-17 11:40:03 +0200847 *error_ppm = div_u64(1000000ULL *
848 abs(target_freq - calculated_clock->dot),
849 target_freq);
850 /*
851 * Prefer a better P value over a better (smaller) error if the error
852 * is small. Ensure this preference for future configurations too by
853 * setting the error to 0.
854 */
855 if (*error_ppm < 100 && calculated_clock->p > best_clock->p) {
856 *error_ppm = 0;
857
858 return true;
859 }
860
861 return *error_ppm + 10 < best_error_ppm;
862}
863
Zhenyu Wang2c072452009-06-05 15:38:42 +0800864static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200865vlv_find_best_dpll(const intel_limit_t *limit,
866 struct intel_crtc_state *crtc_state,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200867 int target, int refclk, intel_clock_t *match_clock,
868 intel_clock_t *best_clock)
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700869{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200870 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300871 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300872 intel_clock_t clock;
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300873 unsigned int bestppm = 1000000;
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300874 /* min update 19.2 MHz */
875 int max_n = min(limit->n.max, refclk / 19200);
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300876 bool found = false;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700877
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300878 target *= 5; /* fast clock */
879
880 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700881
882 /* based on hardware requirement, prefer smaller n to precision */
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300883 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Ville Syrjälä811bbf02013-09-24 21:26:25 +0300884 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
Ville Syrjälä889059d2013-09-24 21:26:27 +0300885 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
Ville Syrjäläc1a9ae42013-09-24 21:26:23 +0300886 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300887 clock.p = clock.p1 * clock.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700888 /* based on hardware requirement, prefer bigger m1,m2 values */
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300889 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
Imre Deakd5dd62b2015-03-17 11:40:03 +0200890 unsigned int ppm;
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300891
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300892 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
893 refclk * clock.m1);
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300894
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300895 vlv_clock(refclk, &clock);
896
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300897 if (!intel_PLL_is_valid(dev, limit,
898 &clock))
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300899 continue;
900
Imre Deakd5dd62b2015-03-17 11:40:03 +0200901 if (!vlv_PLL_is_optimal(dev, target,
902 &clock,
903 best_clock,
904 bestppm, &ppm))
905 continue;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300906
Imre Deakd5dd62b2015-03-17 11:40:03 +0200907 *best_clock = clock;
908 bestppm = ppm;
909 found = true;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700910 }
911 }
912 }
913 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700914
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300915 return found;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700916}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700917
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300918static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200919chv_find_best_dpll(const intel_limit_t *limit,
920 struct intel_crtc_state *crtc_state,
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300921 int target, int refclk, intel_clock_t *match_clock,
922 intel_clock_t *best_clock)
923{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200924 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300925 struct drm_device *dev = crtc->base.dev;
Imre Deak9ca3ba02015-03-17 11:40:05 +0200926 unsigned int best_error_ppm;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300927 intel_clock_t clock;
928 uint64_t m2;
929 int found = false;
930
931 memset(best_clock, 0, sizeof(*best_clock));
Imre Deak9ca3ba02015-03-17 11:40:05 +0200932 best_error_ppm = 1000000;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300933
934 /*
935 * Based on hardware doc, the n always set to 1, and m1 always
936 * set to 2. If requires to support 200Mhz refclk, we need to
937 * revisit this because n may not 1 anymore.
938 */
939 clock.n = 1, clock.m1 = 2;
940 target *= 5; /* fast clock */
941
942 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
943 for (clock.p2 = limit->p2.p2_fast;
944 clock.p2 >= limit->p2.p2_slow;
945 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
Imre Deak9ca3ba02015-03-17 11:40:05 +0200946 unsigned int error_ppm;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300947
948 clock.p = clock.p1 * clock.p2;
949
950 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
951 clock.n) << 22, refclk * clock.m1);
952
953 if (m2 > INT_MAX/clock.m1)
954 continue;
955
956 clock.m2 = m2;
957
958 chv_clock(refclk, &clock);
959
960 if (!intel_PLL_is_valid(dev, limit, &clock))
961 continue;
962
Imre Deak9ca3ba02015-03-17 11:40:05 +0200963 if (!vlv_PLL_is_optimal(dev, target, &clock, best_clock,
964 best_error_ppm, &error_ppm))
965 continue;
966
967 *best_clock = clock;
968 best_error_ppm = error_ppm;
969 found = true;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300970 }
971 }
972
973 return found;
974}
975
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200976bool bxt_find_best_dpll(struct intel_crtc_state *crtc_state, int target_clock,
977 intel_clock_t *best_clock)
978{
979 int refclk = i9xx_get_refclk(crtc_state, 0);
980
981 return chv_find_best_dpll(intel_limit(crtc_state, refclk), crtc_state,
982 target_clock, refclk, NULL, best_clock);
983}
984
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300985bool intel_crtc_active(struct drm_crtc *crtc)
986{
987 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
988
989 /* Be paranoid as we can arrive here with only partial
990 * state retrieved from the hardware during setup.
991 *
Damien Lespiau241bfc32013-09-25 16:45:37 +0100992 * We can ditch the adjusted_mode.crtc_clock check as soon
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300993 * as Haswell has gained clock readout/fastboot support.
994 *
Dave Airlie66e514c2014-04-03 07:51:54 +1000995 * We can ditch the crtc->primary->fb check as soon as we can
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300996 * properly reconstruct framebuffers.
Matt Roperc3d1f432015-03-09 10:19:23 -0700997 *
998 * FIXME: The intel_crtc->active here should be switched to
999 * crtc->state->active once we have proper CRTC states wired up
1000 * for atomic.
Ville Syrjälä20ddf662013-09-04 18:25:25 +03001001 */
Matt Roperc3d1f432015-03-09 10:19:23 -07001002 return intel_crtc->active && crtc->primary->state->fb &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001003 intel_crtc->config->base.adjusted_mode.crtc_clock;
Ville Syrjälä20ddf662013-09-04 18:25:25 +03001004}
1005
Paulo Zanonia5c961d2012-10-24 15:59:34 -02001006enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
1007 enum pipe pipe)
1008{
1009 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
1010 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1011
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001012 return intel_crtc->config->cpu_transcoder;
Paulo Zanonia5c961d2012-10-24 15:59:34 -02001013}
1014
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +03001015static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
1016{
1017 struct drm_i915_private *dev_priv = dev->dev_private;
1018 u32 reg = PIPEDSL(pipe);
1019 u32 line1, line2;
1020 u32 line_mask;
1021
1022 if (IS_GEN2(dev))
1023 line_mask = DSL_LINEMASK_GEN2;
1024 else
1025 line_mask = DSL_LINEMASK_GEN3;
1026
1027 line1 = I915_READ(reg) & line_mask;
1028 mdelay(5);
1029 line2 = I915_READ(reg) & line_mask;
1030
1031 return line1 == line2;
1032}
1033
Keith Packardab7ad7f2010-10-03 00:33:06 -07001034/*
1035 * intel_wait_for_pipe_off - wait for pipe to turn off
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001036 * @crtc: crtc whose pipe to wait for
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001037 *
1038 * After disabling a pipe, we can't wait for vblank in the usual way,
1039 * spinning on the vblank interrupt status bit, since we won't actually
1040 * see an interrupt when the pipe is disabled.
1041 *
Keith Packardab7ad7f2010-10-03 00:33:06 -07001042 * On Gen4 and above:
1043 * wait for the pipe register state bit to turn off
1044 *
1045 * Otherwise:
1046 * wait for the display line value to settle (it usually
1047 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +01001048 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001049 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001050static void intel_wait_for_pipe_off(struct intel_crtc *crtc)
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001051{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001052 struct drm_device *dev = crtc->base.dev;
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001053 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001054 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001055 enum pipe pipe = crtc->pipe;
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001056
Keith Packardab7ad7f2010-10-03 00:33:06 -07001057 if (INTEL_INFO(dev)->gen >= 4) {
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001058 int reg = PIPECONF(cpu_transcoder);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001059
Keith Packardab7ad7f2010-10-03 00:33:06 -07001060 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +01001061 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
1062 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 } else {
Keith Packardab7ad7f2010-10-03 00:33:06 -07001065 /* Wait for the display line to settle */
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +03001066 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
Daniel Vetter284637d2012-07-09 09:51:57 +02001067 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -07001068 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001069}
1070
Damien Lespiaub0ea7d32012-12-13 16:09:00 +00001071/*
1072 * ibx_digital_port_connected - is the specified port connected?
1073 * @dev_priv: i915 private structure
1074 * @port: the port to test
1075 *
1076 * Returns true if @port is connected, false otherwise.
1077 */
1078bool ibx_digital_port_connected(struct drm_i915_private *dev_priv,
1079 struct intel_digital_port *port)
1080{
1081 u32 bit;
1082
Damien Lespiauc36346e2012-12-13 16:09:03 +00001083 if (HAS_PCH_IBX(dev_priv->dev)) {
Robin Schroereba905b2014-05-18 02:24:50 +02001084 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +00001085 case PORT_B:
1086 bit = SDE_PORTB_HOTPLUG;
1087 break;
1088 case PORT_C:
1089 bit = SDE_PORTC_HOTPLUG;
1090 break;
1091 case PORT_D:
1092 bit = SDE_PORTD_HOTPLUG;
1093 break;
1094 default:
1095 return true;
1096 }
1097 } else {
Robin Schroereba905b2014-05-18 02:24:50 +02001098 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +00001099 case PORT_B:
1100 bit = SDE_PORTB_HOTPLUG_CPT;
1101 break;
1102 case PORT_C:
1103 bit = SDE_PORTC_HOTPLUG_CPT;
1104 break;
1105 case PORT_D:
1106 bit = SDE_PORTD_HOTPLUG_CPT;
1107 break;
1108 default:
1109 return true;
1110 }
Damien Lespiaub0ea7d32012-12-13 16:09:00 +00001111 }
1112
1113 return I915_READ(SDEISR) & bit;
1114}
1115
Jesse Barnesb24e7172011-01-04 15:09:30 -08001116static const char *state_string(bool enabled)
1117{
1118 return enabled ? "on" : "off";
1119}
1120
1121/* Only for pre-ILK configs */
Daniel Vetter55607e82013-06-16 21:42:39 +02001122void assert_pll(struct drm_i915_private *dev_priv,
1123 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001124{
1125 int reg;
1126 u32 val;
1127 bool cur_state;
1128
1129 reg = DPLL(pipe);
1130 val = I915_READ(reg);
1131 cur_state = !!(val & DPLL_VCO_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001132 I915_STATE_WARN(cur_state != state,
Jesse Barnesb24e7172011-01-04 15:09:30 -08001133 "PLL state assertion failure (expected %s, current %s)\n",
1134 state_string(state), state_string(cur_state));
1135}
Jesse Barnesb24e7172011-01-04 15:09:30 -08001136
Jani Nikula23538ef2013-08-27 15:12:22 +03001137/* XXX: the dsi pll is shared between MIPI DSI ports */
1138static void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
1139{
1140 u32 val;
1141 bool cur_state;
1142
1143 mutex_lock(&dev_priv->dpio_lock);
1144 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
1145 mutex_unlock(&dev_priv->dpio_lock);
1146
1147 cur_state = val & DSI_PLL_VCO_EN;
Rob Clarke2c719b2014-12-15 13:56:32 -05001148 I915_STATE_WARN(cur_state != state,
Jani Nikula23538ef2013-08-27 15:12:22 +03001149 "DSI PLL state assertion failure (expected %s, current %s)\n",
1150 state_string(state), state_string(cur_state));
1151}
1152#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1153#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1154
Daniel Vetter55607e82013-06-16 21:42:39 +02001155struct intel_shared_dpll *
Daniel Vettere2b78262013-06-07 23:10:03 +02001156intel_crtc_to_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes040484a2011-01-03 12:14:26 -08001157{
Daniel Vettere2b78262013-06-07 23:10:03 +02001158 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1159
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001160 if (crtc->config->shared_dpll < 0)
Daniel Vettere2b78262013-06-07 23:10:03 +02001161 return NULL;
1162
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001163 return &dev_priv->shared_dplls[crtc->config->shared_dpll];
Daniel Vettere2b78262013-06-07 23:10:03 +02001164}
1165
Jesse Barnesb24e7172011-01-04 15:09:30 -08001166/* For ILK+ */
Daniel Vetter55607e82013-06-16 21:42:39 +02001167void assert_shared_dpll(struct drm_i915_private *dev_priv,
1168 struct intel_shared_dpll *pll,
1169 bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001170{
Jesse Barnes040484a2011-01-03 12:14:26 -08001171 bool cur_state;
Daniel Vetter53589012013-06-05 13:34:16 +02001172 struct intel_dpll_hw_state hw_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001173
Chris Wilson92b27b02012-05-20 18:10:50 +01001174 if (WARN (!pll,
Daniel Vetter46edb022013-06-05 13:34:12 +02001175 "asserting DPLL %s with no DPLL\n", state_string(state)))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001176 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001177
Daniel Vetter53589012013-06-05 13:34:16 +02001178 cur_state = pll->get_hw_state(dev_priv, pll, &hw_state);
Rob Clarke2c719b2014-12-15 13:56:32 -05001179 I915_STATE_WARN(cur_state != state,
Daniel Vetter53589012013-06-05 13:34:16 +02001180 "%s assertion failure (expected %s, current %s)\n",
1181 pll->name, state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001182}
Jesse Barnes040484a2011-01-03 12:14:26 -08001183
1184static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1185 enum pipe pipe, bool state)
1186{
1187 int reg;
1188 u32 val;
1189 bool cur_state;
Paulo Zanoniad80a812012-10-24 16:06:19 -02001190 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1191 pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001192
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001193 if (HAS_DDI(dev_priv->dev)) {
1194 /* DDI does not have a specific FDI_TX register */
Paulo Zanoniad80a812012-10-24 16:06:19 -02001195 reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001196 val = I915_READ(reg);
Paulo Zanoniad80a812012-10-24 16:06:19 -02001197 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001198 } else {
1199 reg = FDI_TX_CTL(pipe);
1200 val = I915_READ(reg);
1201 cur_state = !!(val & FDI_TX_ENABLE);
1202 }
Rob Clarke2c719b2014-12-15 13:56:32 -05001203 I915_STATE_WARN(cur_state != state,
Jesse Barnes040484a2011-01-03 12:14:26 -08001204 "FDI TX state assertion failure (expected %s, current %s)\n",
1205 state_string(state), state_string(cur_state));
1206}
1207#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1208#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1209
1210static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1211 enum pipe pipe, bool state)
1212{
1213 int reg;
1214 u32 val;
1215 bool cur_state;
1216
Paulo Zanonid63fa0d2012-11-20 13:27:35 -02001217 reg = FDI_RX_CTL(pipe);
1218 val = I915_READ(reg);
1219 cur_state = !!(val & FDI_RX_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001220 I915_STATE_WARN(cur_state != state,
Jesse Barnes040484a2011-01-03 12:14:26 -08001221 "FDI RX state assertion failure (expected %s, current %s)\n",
1222 state_string(state), state_string(cur_state));
1223}
1224#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1225#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1226
1227static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1228 enum pipe pipe)
1229{
1230 int reg;
1231 u32 val;
1232
1233 /* ILK FDI PLL is always enabled */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001234 if (INTEL_INFO(dev_priv->dev)->gen == 5)
Jesse Barnes040484a2011-01-03 12:14:26 -08001235 return;
1236
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001237 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001238 if (HAS_DDI(dev_priv->dev))
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001239 return;
1240
Jesse Barnes040484a2011-01-03 12:14:26 -08001241 reg = FDI_TX_CTL(pipe);
1242 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001243 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 -08001244}
1245
Daniel Vetter55607e82013-06-16 21:42:39 +02001246void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1247 enum pipe pipe, bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001248{
1249 int reg;
1250 u32 val;
Daniel Vetter55607e82013-06-16 21:42:39 +02001251 bool cur_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001252
1253 reg = FDI_RX_CTL(pipe);
1254 val = I915_READ(reg);
Daniel Vetter55607e82013-06-16 21:42:39 +02001255 cur_state = !!(val & FDI_RX_PLL_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001256 I915_STATE_WARN(cur_state != state,
Daniel Vetter55607e82013-06-16 21:42:39 +02001257 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1258 state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001259}
1260
Daniel Vetterb680c372014-09-19 18:27:27 +02001261void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1262 enum pipe pipe)
Jesse Barnesea0760c2011-01-04 15:09:32 -08001263{
Jani Nikulabedd4db2014-08-22 15:04:13 +03001264 struct drm_device *dev = dev_priv->dev;
1265 int pp_reg;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001266 u32 val;
1267 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001268 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001269
Jani Nikulabedd4db2014-08-22 15:04:13 +03001270 if (WARN_ON(HAS_DDI(dev)))
1271 return;
1272
1273 if (HAS_PCH_SPLIT(dev)) {
1274 u32 port_sel;
1275
Jesse Barnesea0760c2011-01-04 15:09:32 -08001276 pp_reg = PCH_PP_CONTROL;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001277 port_sel = I915_READ(PCH_PP_ON_DELAYS) & PANEL_PORT_SELECT_MASK;
1278
1279 if (port_sel == PANEL_PORT_SELECT_LVDS &&
1280 I915_READ(PCH_LVDS) & LVDS_PIPEB_SELECT)
1281 panel_pipe = PIPE_B;
1282 /* XXX: else fix for eDP */
1283 } else if (IS_VALLEYVIEW(dev)) {
1284 /* presumably write lock depends on pipe, not port select */
1285 pp_reg = VLV_PIPE_PP_CONTROL(pipe);
1286 panel_pipe = pipe;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001287 } else {
1288 pp_reg = PP_CONTROL;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001289 if (I915_READ(LVDS) & LVDS_PIPEB_SELECT)
1290 panel_pipe = PIPE_B;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001291 }
1292
1293 val = I915_READ(pp_reg);
1294 if (!(val & PANEL_POWER_ON) ||
Jani Nikulaec49ba22014-08-21 15:06:25 +03001295 ((val & PANEL_UNLOCK_MASK) == PANEL_UNLOCK_REGS))
Jesse Barnesea0760c2011-01-04 15:09:32 -08001296 locked = false;
1297
Rob Clarke2c719b2014-12-15 13:56:32 -05001298 I915_STATE_WARN(panel_pipe == pipe && locked,
Jesse Barnesea0760c2011-01-04 15:09:32 -08001299 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001300 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001301}
1302
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001303static void assert_cursor(struct drm_i915_private *dev_priv,
1304 enum pipe pipe, bool state)
1305{
1306 struct drm_device *dev = dev_priv->dev;
1307 bool cur_state;
1308
Paulo Zanonid9d82082014-02-27 16:30:56 -03001309 if (IS_845G(dev) || IS_I865G(dev))
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001310 cur_state = I915_READ(_CURACNTR) & CURSOR_ENABLE;
Paulo Zanonid9d82082014-02-27 16:30:56 -03001311 else
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03001312 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001313
Rob Clarke2c719b2014-12-15 13:56:32 -05001314 I915_STATE_WARN(cur_state != state,
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001315 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
1316 pipe_name(pipe), state_string(state), state_string(cur_state));
1317}
1318#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1319#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1320
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001321void assert_pipe(struct drm_i915_private *dev_priv,
1322 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001323{
1324 int reg;
1325 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001326 bool cur_state;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001327 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1328 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001329
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001330 /* if we need the pipe quirk it must be always on */
1331 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1332 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Daniel Vetter8e636782012-01-22 01:36:48 +01001333 state = true;
1334
Daniel Vetterf458ebb2014-09-30 10:56:39 +02001335 if (!intel_display_power_is_enabled(dev_priv,
Paulo Zanonib97186f2013-05-03 12:15:36 -03001336 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
Paulo Zanoni69310162013-01-29 16:35:19 -02001337 cur_state = false;
1338 } else {
1339 reg = PIPECONF(cpu_transcoder);
1340 val = I915_READ(reg);
1341 cur_state = !!(val & PIPECONF_ENABLE);
1342 }
1343
Rob Clarke2c719b2014-12-15 13:56:32 -05001344 I915_STATE_WARN(cur_state != state,
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001345 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001346 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001347}
1348
Chris Wilson931872f2012-01-16 23:01:13 +00001349static void assert_plane(struct drm_i915_private *dev_priv,
1350 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001351{
1352 int reg;
1353 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001354 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001355
1356 reg = DSPCNTR(plane);
1357 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001358 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001359 I915_STATE_WARN(cur_state != state,
Chris Wilson931872f2012-01-16 23:01:13 +00001360 "plane %c assertion failure (expected %s, current %s)\n",
1361 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001362}
1363
Chris Wilson931872f2012-01-16 23:01:13 +00001364#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1365#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1366
Jesse Barnesb24e7172011-01-04 15:09:30 -08001367static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1368 enum pipe pipe)
1369{
Ville Syrjälä653e1022013-06-04 13:49:05 +03001370 struct drm_device *dev = dev_priv->dev;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001371 int reg, i;
1372 u32 val;
1373 int cur_pipe;
1374
Ville Syrjälä653e1022013-06-04 13:49:05 +03001375 /* Primary planes are fixed to pipes on gen4+ */
1376 if (INTEL_INFO(dev)->gen >= 4) {
Adam Jackson28c057942011-10-07 14:38:42 -04001377 reg = DSPCNTR(pipe);
1378 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001379 I915_STATE_WARN(val & DISPLAY_PLANE_ENABLE,
Adam Jackson28c057942011-10-07 14:38:42 -04001380 "plane %c assertion failure, should be disabled but not\n",
1381 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001382 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001383 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001384
Jesse Barnesb24e7172011-01-04 15:09:30 -08001385 /* Need to check both planes against the pipe */
Damien Lespiau055e3932014-08-18 13:49:10 +01001386 for_each_pipe(dev_priv, i) {
Jesse Barnesb24e7172011-01-04 15:09:30 -08001387 reg = DSPCNTR(i);
1388 val = I915_READ(reg);
1389 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1390 DISPPLANE_SEL_PIPE_SHIFT;
Rob Clarke2c719b2014-12-15 13:56:32 -05001391 I915_STATE_WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001392 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1393 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001394 }
1395}
1396
Jesse Barnes19332d72013-03-28 09:55:38 -07001397static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1398 enum pipe pipe)
1399{
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001400 struct drm_device *dev = dev_priv->dev;
Damien Lespiau1fe47782014-03-03 17:31:47 +00001401 int reg, sprite;
Jesse Barnes19332d72013-03-28 09:55:38 -07001402 u32 val;
1403
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001404 if (INTEL_INFO(dev)->gen >= 9) {
Damien Lespiau3bdcfc02015-02-28 14:54:09 +00001405 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001406 val = I915_READ(PLANE_CTL(pipe, sprite));
Rob Clarke2c719b2014-12-15 13:56:32 -05001407 I915_STATE_WARN(val & PLANE_CTL_ENABLE,
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001408 "plane %d assertion failure, should be off on pipe %c but is still active\n",
1409 sprite, pipe_name(pipe));
1410 }
1411 } else if (IS_VALLEYVIEW(dev)) {
Damien Lespiau3bdcfc02015-02-28 14:54:09 +00001412 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau1fe47782014-03-03 17:31:47 +00001413 reg = SPCNTR(pipe, sprite);
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001414 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001415 I915_STATE_WARN(val & SP_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001416 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +00001417 sprite_name(pipe, sprite), pipe_name(pipe));
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001418 }
1419 } else if (INTEL_INFO(dev)->gen >= 7) {
1420 reg = SPRCTL(pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07001421 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001422 I915_STATE_WARN(val & SPRITE_ENABLE,
Ville Syrjälä06da8da2013-04-17 17:48:51 +03001423 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001424 plane_name(pipe), pipe_name(pipe));
1425 } else if (INTEL_INFO(dev)->gen >= 5) {
1426 reg = DVSCNTR(pipe);
1427 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001428 I915_STATE_WARN(val & DVS_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001429 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1430 plane_name(pipe), pipe_name(pipe));
Jesse Barnes19332d72013-03-28 09:55:38 -07001431 }
1432}
1433
Ville Syrjälä08c71e52014-08-06 14:49:45 +03001434static void assert_vblank_disabled(struct drm_crtc *crtc)
1435{
Rob Clarke2c719b2014-12-15 13:56:32 -05001436 if (I915_STATE_WARN_ON(drm_crtc_vblank_get(crtc) == 0))
Ville Syrjälä08c71e52014-08-06 14:49:45 +03001437 drm_crtc_vblank_put(crtc);
1438}
1439
Paulo Zanoni89eff4b2014-01-08 11:12:28 -02001440static void ibx_assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
Jesse Barnes92f25842011-01-04 15:09:34 -08001441{
1442 u32 val;
1443 bool enabled;
1444
Rob Clarke2c719b2014-12-15 13:56:32 -05001445 I915_STATE_WARN_ON(!(HAS_PCH_IBX(dev_priv->dev) || HAS_PCH_CPT(dev_priv->dev)));
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001446
Jesse Barnes92f25842011-01-04 15:09:34 -08001447 val = I915_READ(PCH_DREF_CONTROL);
1448 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1449 DREF_SUPERSPREAD_SOURCE_MASK));
Rob Clarke2c719b2014-12-15 13:56:32 -05001450 I915_STATE_WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
Jesse Barnes92f25842011-01-04 15:09:34 -08001451}
1452
Daniel Vetterab9412b2013-05-03 11:49:46 +02001453static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1454 enum pipe pipe)
Jesse Barnes92f25842011-01-04 15:09:34 -08001455{
1456 int reg;
1457 u32 val;
1458 bool enabled;
1459
Daniel Vetterab9412b2013-05-03 11:49:46 +02001460 reg = PCH_TRANSCONF(pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001461 val = I915_READ(reg);
1462 enabled = !!(val & TRANS_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001463 I915_STATE_WARN(enabled,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001464 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1465 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001466}
1467
Keith Packard4e634382011-08-06 10:39:45 -07001468static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1469 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001470{
1471 if ((val & DP_PORT_EN) == 0)
1472 return false;
1473
1474 if (HAS_PCH_CPT(dev_priv->dev)) {
1475 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1476 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1477 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1478 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001479 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1480 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1481 return false;
Keith Packardf0575e92011-07-25 22:12:43 -07001482 } else {
1483 if ((val & DP_PIPE_MASK) != (pipe << 30))
1484 return false;
1485 }
1486 return true;
1487}
1488
Keith Packard1519b992011-08-06 10:35:34 -07001489static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1490 enum pipe pipe, u32 val)
1491{
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001492 if ((val & SDVO_ENABLE) == 0)
Keith Packard1519b992011-08-06 10:35:34 -07001493 return false;
1494
1495 if (HAS_PCH_CPT(dev_priv->dev)) {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001496 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001497 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001498 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1499 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1500 return false;
Keith Packard1519b992011-08-06 10:35:34 -07001501 } else {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001502 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001503 return false;
1504 }
1505 return true;
1506}
1507
1508static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1509 enum pipe pipe, u32 val)
1510{
1511 if ((val & LVDS_PORT_EN) == 0)
1512 return false;
1513
1514 if (HAS_PCH_CPT(dev_priv->dev)) {
1515 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1516 return false;
1517 } else {
1518 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1519 return false;
1520 }
1521 return true;
1522}
1523
1524static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1525 enum pipe pipe, u32 val)
1526{
1527 if ((val & ADPA_DAC_ENABLE) == 0)
1528 return false;
1529 if (HAS_PCH_CPT(dev_priv->dev)) {
1530 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1531 return false;
1532 } else {
1533 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1534 return false;
1535 }
1536 return true;
1537}
1538
Jesse Barnes291906f2011-02-02 12:28:03 -08001539static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001540 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001541{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001542 u32 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001543 I915_STATE_WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001544 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001545 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001546
Rob Clarke2c719b2014-12-15 13:56:32 -05001547 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001548 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001549 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001550}
1551
1552static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1553 enum pipe pipe, int reg)
1554{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001555 u32 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001556 I915_STATE_WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001557 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001558 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001559
Rob Clarke2c719b2014-12-15 13:56:32 -05001560 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001561 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001562 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001563}
1564
1565static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1566 enum pipe pipe)
1567{
1568 int reg;
1569 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001570
Keith Packardf0575e92011-07-25 22:12:43 -07001571 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1572 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1573 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001574
1575 reg = PCH_ADPA;
1576 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001577 I915_STATE_WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001578 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001579 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001580
1581 reg = PCH_LVDS;
1582 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001583 I915_STATE_WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001584 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001585 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001586
Paulo Zanonie2debe92013-02-18 19:00:27 -03001587 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1588 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1589 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
Jesse Barnes291906f2011-02-02 12:28:03 -08001590}
1591
Jesse Barnes40e9cf62013-10-03 11:35:46 -07001592static void intel_init_dpio(struct drm_device *dev)
1593{
1594 struct drm_i915_private *dev_priv = dev->dev_private;
1595
1596 if (!IS_VALLEYVIEW(dev))
1597 return;
1598
Chon Ming Leea09cadd2014-04-09 13:28:14 +03001599 /*
1600 * IOSF_PORT_DPIO is used for VLV x2 PHY (DP/HDMI B and C),
1601 * CHV x1 PHY (DP/HDMI D)
1602 * IOSF_PORT_DPIO_2 is used for CHV x2 PHY (DP/HDMI B and C)
1603 */
1604 if (IS_CHERRYVIEW(dev)) {
1605 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO_2;
1606 DPIO_PHY_IOSF_PORT(DPIO_PHY1) = IOSF_PORT_DPIO;
1607 } else {
1608 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO;
1609 }
Jesse Barnes5382f5f352013-12-16 16:34:24 -08001610}
1611
Ville Syrjäläd288f652014-10-28 13:20:22 +02001612static void vlv_enable_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001613 const struct intel_crtc_state *pipe_config)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001614{
Daniel Vetter426115c2013-07-11 22:13:42 +02001615 struct drm_device *dev = crtc->base.dev;
1616 struct drm_i915_private *dev_priv = dev->dev_private;
1617 int reg = DPLL(crtc->pipe);
Ville Syrjäläd288f652014-10-28 13:20:22 +02001618 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001619
Daniel Vetter426115c2013-07-11 22:13:42 +02001620 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001621
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001622 /* No really, not for ILK+ */
Daniel Vetter87442f72013-06-06 00:52:17 +02001623 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev));
1624
1625 /* PLL is protected by panel, make sure we can write it */
Jani Nikula6a9e7362014-08-22 15:06:35 +03001626 if (IS_MOBILE(dev_priv->dev))
Daniel Vetter426115c2013-07-11 22:13:42 +02001627 assert_panel_unlocked(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001628
Daniel Vetter426115c2013-07-11 22:13:42 +02001629 I915_WRITE(reg, dpll);
1630 POSTING_READ(reg);
1631 udelay(150);
1632
1633 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1634 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1635
Ville Syrjäläd288f652014-10-28 13:20:22 +02001636 I915_WRITE(DPLL_MD(crtc->pipe), pipe_config->dpll_hw_state.dpll_md);
Daniel Vetter426115c2013-07-11 22:13:42 +02001637 POSTING_READ(DPLL_MD(crtc->pipe));
Daniel Vetter87442f72013-06-06 00:52:17 +02001638
1639 /* We do this three times for luck */
Daniel Vetter426115c2013-07-11 22:13:42 +02001640 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001641 POSTING_READ(reg);
1642 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001643 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001644 POSTING_READ(reg);
1645 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001646 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001647 POSTING_READ(reg);
1648 udelay(150); /* wait for warmup */
1649}
1650
Ville Syrjäläd288f652014-10-28 13:20:22 +02001651static void chv_enable_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001652 const struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001653{
1654 struct drm_device *dev = crtc->base.dev;
1655 struct drm_i915_private *dev_priv = dev->dev_private;
1656 int pipe = crtc->pipe;
1657 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001658 u32 tmp;
1659
1660 assert_pipe_disabled(dev_priv, crtc->pipe);
1661
1662 BUG_ON(!IS_CHERRYVIEW(dev_priv->dev));
1663
1664 mutex_lock(&dev_priv->dpio_lock);
1665
1666 /* Enable back the 10bit clock to display controller */
1667 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1668 tmp |= DPIO_DCLKP_EN;
1669 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1670
1671 /*
1672 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1673 */
1674 udelay(1);
1675
1676 /* Enable PLL */
Ville Syrjäläd288f652014-10-28 13:20:22 +02001677 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001678
1679 /* Check PLL is locked */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001680 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001681 DRM_ERROR("PLL %d failed to lock\n", pipe);
1682
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001683 /* not sure when this should be written */
Ville Syrjäläd288f652014-10-28 13:20:22 +02001684 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001685 POSTING_READ(DPLL_MD(pipe));
1686
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001687 mutex_unlock(&dev_priv->dpio_lock);
1688}
1689
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001690static int intel_num_dvo_pipes(struct drm_device *dev)
1691{
1692 struct intel_crtc *crtc;
1693 int count = 0;
1694
1695 for_each_intel_crtc(dev, crtc)
1696 count += crtc->active &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001697 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO);
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001698
1699 return count;
1700}
1701
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001702static void i9xx_enable_pll(struct intel_crtc *crtc)
Daniel Vetter87442f72013-06-06 00:52:17 +02001703{
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001704 struct drm_device *dev = crtc->base.dev;
1705 struct drm_i915_private *dev_priv = dev->dev_private;
1706 int reg = DPLL(crtc->pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001707 u32 dpll = crtc->config->dpll_hw_state.dpll;
Daniel Vetter87442f72013-06-06 00:52:17 +02001708
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001709 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001710
1711 /* No really, not for ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001712 BUG_ON(INTEL_INFO(dev)->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001713
1714 /* PLL is protected by panel, make sure we can write it */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001715 if (IS_MOBILE(dev) && !IS_I830(dev))
1716 assert_panel_unlocked(dev_priv, crtc->pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001717
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001718 /* Enable DVO 2x clock on both PLLs if necessary */
1719 if (IS_I830(dev) && intel_num_dvo_pipes(dev) > 0) {
1720 /*
1721 * It appears to be important that we don't enable this
1722 * for the current pipe before otherwise configuring the
1723 * PLL. No idea how this should be handled if multiple
1724 * DVO outputs are enabled simultaneosly.
1725 */
1726 dpll |= DPLL_DVO_2X_MODE;
1727 I915_WRITE(DPLL(!crtc->pipe),
1728 I915_READ(DPLL(!crtc->pipe)) | DPLL_DVO_2X_MODE);
1729 }
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001730
1731 /* Wait for the clocks to stabilize. */
1732 POSTING_READ(reg);
1733 udelay(150);
1734
1735 if (INTEL_INFO(dev)->gen >= 4) {
1736 I915_WRITE(DPLL_MD(crtc->pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001737 crtc->config->dpll_hw_state.dpll_md);
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001738 } else {
1739 /* The pixel multiplier can only be updated once the
1740 * DPLL is enabled and the clocks are stable.
1741 *
1742 * So write it again.
1743 */
1744 I915_WRITE(reg, dpll);
1745 }
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001746
1747 /* We do this three times for luck */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001748 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001749 POSTING_READ(reg);
1750 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001751 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001752 POSTING_READ(reg);
1753 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001754 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001755 POSTING_READ(reg);
1756 udelay(150); /* wait for warmup */
1757}
1758
1759/**
Daniel Vetter50b44a42013-06-05 13:34:33 +02001760 * i9xx_disable_pll - disable a PLL
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001761 * @dev_priv: i915 private structure
1762 * @pipe: pipe PLL to disable
1763 *
1764 * Disable the PLL for @pipe, making sure the pipe is off first.
1765 *
1766 * Note! This is for pre-ILK only.
1767 */
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001768static void i9xx_disable_pll(struct intel_crtc *crtc)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001769{
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001770 struct drm_device *dev = crtc->base.dev;
1771 struct drm_i915_private *dev_priv = dev->dev_private;
1772 enum pipe pipe = crtc->pipe;
1773
1774 /* Disable DVO 2x clock on both PLLs if necessary */
1775 if (IS_I830(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001776 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO) &&
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001777 intel_num_dvo_pipes(dev) == 1) {
1778 I915_WRITE(DPLL(PIPE_B),
1779 I915_READ(DPLL(PIPE_B)) & ~DPLL_DVO_2X_MODE);
1780 I915_WRITE(DPLL(PIPE_A),
1781 I915_READ(DPLL(PIPE_A)) & ~DPLL_DVO_2X_MODE);
1782 }
1783
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001784 /* Don't disable pipe or pipe PLLs if needed */
1785 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1786 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001787 return;
1788
1789 /* Make sure the pipe isn't still relying on us */
1790 assert_pipe_disabled(dev_priv, pipe);
1791
Daniel Vetter50b44a42013-06-05 13:34:33 +02001792 I915_WRITE(DPLL(pipe), 0);
1793 POSTING_READ(DPLL(pipe));
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001794}
1795
Jesse Barnesf6071162013-10-01 10:41:38 -07001796static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1797{
1798 u32 val = 0;
1799
1800 /* Make sure the pipe isn't still relying on us */
1801 assert_pipe_disabled(dev_priv, pipe);
1802
Imre Deake5cbfbf2014-01-09 17:08:16 +02001803 /*
1804 * Leave integrated clock source and reference clock enabled for pipe B.
1805 * The latter is needed for VGA hotplug / manual detection.
1806 */
Jesse Barnesf6071162013-10-01 10:41:38 -07001807 if (pipe == PIPE_B)
Imre Deake5cbfbf2014-01-09 17:08:16 +02001808 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REFA_CLK_ENABLE_VLV;
Jesse Barnesf6071162013-10-01 10:41:38 -07001809 I915_WRITE(DPLL(pipe), val);
1810 POSTING_READ(DPLL(pipe));
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001811
1812}
1813
1814static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1815{
Ville Syrjäläd7520482014-04-09 13:28:59 +03001816 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001817 u32 val;
1818
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001819 /* Make sure the pipe isn't still relying on us */
1820 assert_pipe_disabled(dev_priv, pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001821
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001822 /* Set PLL en = 0 */
Ville Syrjäläd17ec4c2014-06-28 02:03:59 +03001823 val = DPLL_SSC_REF_CLOCK_CHV | DPLL_REFA_CLK_ENABLE_VLV;
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001824 if (pipe != PIPE_A)
1825 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1826 I915_WRITE(DPLL(pipe), val);
1827 POSTING_READ(DPLL(pipe));
Ville Syrjäläd7520482014-04-09 13:28:59 +03001828
1829 mutex_lock(&dev_priv->dpio_lock);
1830
1831 /* Disable 10bit clock to display controller */
1832 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1833 val &= ~DPIO_DCLKP_EN;
1834 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1835
Ville Syrjälä61407f62014-05-27 16:32:55 +03001836 /* disable left/right clock distribution */
1837 if (pipe != PIPE_B) {
1838 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1839 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1840 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1841 } else {
1842 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1843 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1844 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1845 }
1846
Ville Syrjäläd7520482014-04-09 13:28:59 +03001847 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesf6071162013-10-01 10:41:38 -07001848}
1849
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001850void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
1851 struct intel_digital_port *dport)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001852{
1853 u32 port_mask;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001854 int dpll_reg;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001855
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001856 switch (dport->port) {
1857 case PORT_B:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001858 port_mask = DPLL_PORTB_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001859 dpll_reg = DPLL(0);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001860 break;
1861 case PORT_C:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001862 port_mask = DPLL_PORTC_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001863 dpll_reg = DPLL(0);
1864 break;
1865 case PORT_D:
1866 port_mask = DPLL_PORTD_READY_MASK;
1867 dpll_reg = DPIO_PHY_STATUS;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001868 break;
1869 default:
1870 BUG();
1871 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07001872
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001873 if (wait_for((I915_READ(dpll_reg) & port_mask) == 0, 1000))
Jesse Barnes89b667f2013-04-18 14:51:36 -07001874 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001875 port_name(dport->port), I915_READ(dpll_reg));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001876}
1877
Daniel Vetterb14b1052014-04-24 23:55:13 +02001878static void intel_prepare_shared_dpll(struct intel_crtc *crtc)
1879{
1880 struct drm_device *dev = crtc->base.dev;
1881 struct drm_i915_private *dev_priv = dev->dev_private;
1882 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
1883
Chris Wilsonbe19f0f2014-05-28 16:16:42 +01001884 if (WARN_ON(pll == NULL))
1885 return;
1886
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001887 WARN_ON(!pll->config.crtc_mask);
Daniel Vetterb14b1052014-04-24 23:55:13 +02001888 if (pll->active == 0) {
1889 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
1890 WARN_ON(pll->on);
1891 assert_shared_dpll_disabled(dev_priv, pll);
1892
1893 pll->mode_set(dev_priv, pll);
1894 }
1895}
1896
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001897/**
Daniel Vetter85b38942014-04-24 23:55:14 +02001898 * intel_enable_shared_dpll - enable PCH PLL
Jesse Barnes92f25842011-01-04 15:09:34 -08001899 * @dev_priv: i915 private structure
1900 * @pipe: pipe PLL to enable
1901 *
1902 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1903 * drives the transcoder clock.
1904 */
Daniel Vetter85b38942014-04-24 23:55:14 +02001905static void intel_enable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001906{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001907 struct drm_device *dev = crtc->base.dev;
1908 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001909 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes92f25842011-01-04 15:09:34 -08001910
Daniel Vetter87a875b2013-06-05 13:34:19 +02001911 if (WARN_ON(pll == NULL))
Chris Wilson48da64a2012-05-13 20:16:12 +01001912 return;
1913
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001914 if (WARN_ON(pll->config.crtc_mask == 0))
Chris Wilson48da64a2012-05-13 20:16:12 +01001915 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001916
Damien Lespiau74dd6922014-07-29 18:06:17 +01001917 DRM_DEBUG_KMS("enable %s (active %d, on? %d) for crtc %d\n",
Daniel Vetter46edb022013-06-05 13:34:12 +02001918 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001919 crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001920
Daniel Vettercdbd2312013-06-05 13:34:03 +02001921 if (pll->active++) {
1922 WARN_ON(!pll->on);
Daniel Vettere9d69442013-06-05 13:34:15 +02001923 assert_shared_dpll_enabled(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001924 return;
1925 }
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001926 WARN_ON(pll->on);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001927
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001928 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
1929
Daniel Vetter46edb022013-06-05 13:34:12 +02001930 DRM_DEBUG_KMS("enabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001931 pll->enable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001932 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001933}
1934
Damien Lespiauf6daaec2014-08-09 23:00:56 +01001935static void intel_disable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001936{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001937 struct drm_device *dev = crtc->base.dev;
1938 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001939 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001940
Jesse Barnes92f25842011-01-04 15:09:34 -08001941 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001942 BUG_ON(INTEL_INFO(dev)->gen < 5);
Daniel Vetter87a875b2013-06-05 13:34:19 +02001943 if (WARN_ON(pll == NULL))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001944 return;
1945
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001946 if (WARN_ON(pll->config.crtc_mask == 0))
Chris Wilson48da64a2012-05-13 20:16:12 +01001947 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001948
Daniel Vetter46edb022013-06-05 13:34:12 +02001949 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1950 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001951 crtc->base.base.id);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001952
Chris Wilson48da64a2012-05-13 20:16:12 +01001953 if (WARN_ON(pll->active == 0)) {
Daniel Vettere9d69442013-06-05 13:34:15 +02001954 assert_shared_dpll_disabled(dev_priv, pll);
Chris Wilson48da64a2012-05-13 20:16:12 +01001955 return;
1956 }
1957
Daniel Vettere9d69442013-06-05 13:34:15 +02001958 assert_shared_dpll_enabled(dev_priv, pll);
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001959 WARN_ON(!pll->on);
Daniel Vettercdbd2312013-06-05 13:34:03 +02001960 if (--pll->active)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001961 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001962
Daniel Vetter46edb022013-06-05 13:34:12 +02001963 DRM_DEBUG_KMS("disabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001964 pll->disable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001965 pll->on = false;
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001966
1967 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
Jesse Barnes92f25842011-01-04 15:09:34 -08001968}
1969
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001970static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1971 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001972{
Daniel Vetter23670b322012-11-01 09:15:30 +01001973 struct drm_device *dev = dev_priv->dev;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001974 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vettere2b78262013-06-07 23:10:03 +02001975 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter23670b322012-11-01 09:15:30 +01001976 uint32_t reg, val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001977
1978 /* PCH only available on ILK+ */
Ville Syrjälä55522f32014-09-03 14:09:53 +03001979 BUG_ON(!HAS_PCH_SPLIT(dev));
Jesse Barnes040484a2011-01-03 12:14:26 -08001980
1981 /* Make sure PCH DPLL is enabled */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02001982 assert_shared_dpll_enabled(dev_priv,
Daniel Vettere9d69442013-06-05 13:34:15 +02001983 intel_crtc_to_shared_dpll(intel_crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001984
1985 /* FDI must be feeding us bits for PCH ports */
1986 assert_fdi_tx_enabled(dev_priv, pipe);
1987 assert_fdi_rx_enabled(dev_priv, pipe);
1988
Daniel Vetter23670b322012-11-01 09:15:30 +01001989 if (HAS_PCH_CPT(dev)) {
1990 /* Workaround: Set the timing override bit before enabling the
1991 * pch transcoder. */
1992 reg = TRANS_CHICKEN2(pipe);
1993 val = I915_READ(reg);
1994 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1995 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001996 }
Daniel Vetter23670b322012-11-01 09:15:30 +01001997
Daniel Vetterab9412b2013-05-03 11:49:46 +02001998 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001999 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02002000 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07002001
2002 if (HAS_PCH_IBX(dev_priv->dev)) {
2003 /*
2004 * make the BPC in transcoder be consistent with
2005 * that in pipeconf reg.
2006 */
Daniel Vetterdfd07d72012-12-17 11:21:38 +01002007 val &= ~PIPECONF_BPC_MASK;
2008 val |= pipeconf_val & PIPECONF_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07002009 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02002010
2011 val &= ~TRANS_INTERLACE_MASK;
2012 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02002013 if (HAS_PCH_IBX(dev_priv->dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03002014 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02002015 val |= TRANS_LEGACY_INTERLACED_ILK;
2016 else
2017 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02002018 else
2019 val |= TRANS_PROGRESSIVE;
2020
Jesse Barnes040484a2011-01-03 12:14:26 -08002021 I915_WRITE(reg, val | TRANS_ENABLE);
2022 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03002023 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
Jesse Barnes040484a2011-01-03 12:14:26 -08002024}
2025
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002026static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02002027 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08002028{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002029 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002030
2031 /* PCH only available on ILK+ */
Ville Syrjälä55522f32014-09-03 14:09:53 +03002032 BUG_ON(!HAS_PCH_SPLIT(dev_priv->dev));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002033
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002034 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01002035 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02002036 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002037
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002038 /* Workaround: set timing override bit. */
2039 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01002040 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002041 I915_WRITE(_TRANSA_CHICKEN2, val);
2042
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02002043 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02002044 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002045
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02002046 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
2047 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02002048 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002049 else
2050 val |= TRANS_PROGRESSIVE;
2051
Daniel Vetterab9412b2013-05-03 11:49:46 +02002052 I915_WRITE(LPT_TRANSCONF, val);
2053 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
Paulo Zanoni937bb612012-10-31 18:12:47 -02002054 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002055}
2056
Paulo Zanonib8a4f402012-10-31 18:12:42 -02002057static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
2058 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08002059{
Daniel Vetter23670b322012-11-01 09:15:30 +01002060 struct drm_device *dev = dev_priv->dev;
2061 uint32_t reg, val;
Jesse Barnes040484a2011-01-03 12:14:26 -08002062
2063 /* FDI relies on the transcoder */
2064 assert_fdi_tx_disabled(dev_priv, pipe);
2065 assert_fdi_rx_disabled(dev_priv, pipe);
2066
Jesse Barnes291906f2011-02-02 12:28:03 -08002067 /* Ports must be off as well */
2068 assert_pch_ports_disabled(dev_priv, pipe);
2069
Daniel Vetterab9412b2013-05-03 11:49:46 +02002070 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002071 val = I915_READ(reg);
2072 val &= ~TRANS_ENABLE;
2073 I915_WRITE(reg, val);
2074 /* wait for PCH transcoder off, transcoder state */
2075 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03002076 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
Daniel Vetter23670b322012-11-01 09:15:30 +01002077
2078 if (!HAS_PCH_IBX(dev)) {
2079 /* Workaround: Clear the timing override chicken bit again. */
2080 reg = TRANS_CHICKEN2(pipe);
2081 val = I915_READ(reg);
2082 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
2083 I915_WRITE(reg, val);
2084 }
Jesse Barnes040484a2011-01-03 12:14:26 -08002085}
2086
Paulo Zanoniab4d9662012-10-31 18:12:55 -02002087static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002088{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002089 u32 val;
2090
Daniel Vetterab9412b2013-05-03 11:49:46 +02002091 val = I915_READ(LPT_TRANSCONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002092 val &= ~TRANS_ENABLE;
Daniel Vetterab9412b2013-05-03 11:49:46 +02002093 I915_WRITE(LPT_TRANSCONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002094 /* wait for PCH transcoder off, transcoder state */
Daniel Vetterab9412b2013-05-03 11:49:46 +02002095 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02002096 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002097
2098 /* Workaround: clear timing override bit. */
2099 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01002100 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002101 I915_WRITE(_TRANSA_CHICKEN2, val);
Jesse Barnes92f25842011-01-04 15:09:34 -08002102}
2103
2104/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002105 * intel_enable_pipe - enable a pipe, asserting requirements
Paulo Zanoni03722642014-01-17 13:51:09 -02002106 * @crtc: crtc responsible for the pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08002107 *
Paulo Zanoni03722642014-01-17 13:51:09 -02002108 * Enable @crtc's pipe, making sure that various hardware specific requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08002109 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002110 */
Paulo Zanonie1fdc472014-01-17 13:51:12 -02002111static void intel_enable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002112{
Paulo Zanoni03722642014-01-17 13:51:09 -02002113 struct drm_device *dev = crtc->base.dev;
2114 struct drm_i915_private *dev_priv = dev->dev_private;
2115 enum pipe pipe = crtc->pipe;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002116 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
2117 pipe);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002118 enum pipe pch_transcoder;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002119 int reg;
2120 u32 val;
2121
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002122 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002123 assert_cursor_disabled(dev_priv, pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002124 assert_sprites_disabled(dev_priv, pipe);
2125
Paulo Zanoni681e5812012-12-06 11:12:38 -02002126 if (HAS_PCH_LPT(dev_priv->dev))
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002127 pch_transcoder = TRANSCODER_A;
2128 else
2129 pch_transcoder = pipe;
2130
Jesse Barnesb24e7172011-01-04 15:09:30 -08002131 /*
2132 * A pipe without a PLL won't actually be able to drive bits from
2133 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
2134 * need the check.
2135 */
Imre Deak50360402015-01-16 00:55:16 -08002136 if (HAS_GMCH_DISPLAY(dev_priv->dev))
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03002137 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
Jani Nikula23538ef2013-08-27 15:12:22 +03002138 assert_dsi_pll_enabled(dev_priv);
2139 else
2140 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002141 else {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002142 if (crtc->config->has_pch_encoder) {
Jesse Barnes040484a2011-01-03 12:14:26 -08002143 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002144 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002145 assert_fdi_tx_pll_enabled(dev_priv,
2146 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08002147 }
2148 /* FIXME: assert CPU port conditions for SNB+ */
2149 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08002150
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002151 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002152 val = I915_READ(reg);
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002153 if (val & PIPECONF_ENABLE) {
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002154 WARN_ON(!((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
2155 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)));
Chris Wilson00d70b12011-03-17 07:18:29 +00002156 return;
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002157 }
Chris Wilson00d70b12011-03-17 07:18:29 +00002158
2159 I915_WRITE(reg, val | PIPECONF_ENABLE);
Paulo Zanoni851855d2013-12-19 19:12:29 -02002160 POSTING_READ(reg);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002161}
2162
2163/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002164 * intel_disable_pipe - disable a pipe, asserting requirements
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002165 * @crtc: crtc whose pipes is to be disabled
Jesse Barnesb24e7172011-01-04 15:09:30 -08002166 *
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002167 * Disable the pipe of @crtc, making sure that various hardware
2168 * specific requirements are met, if applicable, e.g. plane
2169 * disabled, panel fitter off, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002170 *
2171 * Will wait until the pipe has shut down before returning.
2172 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002173static void intel_disable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002174{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002175 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002176 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002177 enum pipe pipe = crtc->pipe;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002178 int reg;
2179 u32 val;
2180
2181 /*
2182 * Make sure planes won't keep trying to pump pixels to us,
2183 * or we might hang the display.
2184 */
2185 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002186 assert_cursor_disabled(dev_priv, pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07002187 assert_sprites_disabled(dev_priv, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002188
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002189 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002190 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00002191 if ((val & PIPECONF_ENABLE) == 0)
2192 return;
2193
Ville Syrjälä67adc642014-08-15 01:21:57 +03002194 /*
2195 * Double wide has implications for planes
2196 * so best keep it disabled when not needed.
2197 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002198 if (crtc->config->double_wide)
Ville Syrjälä67adc642014-08-15 01:21:57 +03002199 val &= ~PIPECONF_DOUBLE_WIDE;
2200
2201 /* Don't disable pipe or pipe PLLs if needed */
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002202 if (!(pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) &&
2203 !(pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Ville Syrjälä67adc642014-08-15 01:21:57 +03002204 val &= ~PIPECONF_ENABLE;
2205
2206 I915_WRITE(reg, val);
2207 if ((val & PIPECONF_ENABLE) == 0)
2208 intel_wait_for_pipe_off(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002209}
2210
Keith Packardd74362c2011-07-28 14:47:14 -07002211/*
2212 * Plane regs are double buffered, going from enabled->disabled needs a
2213 * trigger in order to latch. The display address reg provides this.
2214 */
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002215void intel_flush_primary_plane(struct drm_i915_private *dev_priv,
2216 enum plane plane)
Keith Packardd74362c2011-07-28 14:47:14 -07002217{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00002218 struct drm_device *dev = dev_priv->dev;
2219 u32 reg = INTEL_INFO(dev)->gen >= 4 ? DSPSURF(plane) : DSPADDR(plane);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002220
2221 I915_WRITE(reg, I915_READ(reg));
2222 POSTING_READ(reg);
Keith Packardd74362c2011-07-28 14:47:14 -07002223}
2224
Jesse Barnesb24e7172011-01-04 15:09:30 -08002225/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002226 * intel_enable_primary_hw_plane - enable the primary plane on a given pipe
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002227 * @plane: plane to be enabled
2228 * @crtc: crtc for the plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002229 *
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002230 * Enable @plane on @crtc, making sure that the pipe is running first.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002231 */
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002232static void intel_enable_primary_hw_plane(struct drm_plane *plane,
2233 struct drm_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002234{
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002235 struct drm_device *dev = plane->dev;
2236 struct drm_i915_private *dev_priv = dev->dev_private;
2237 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002238
2239 /* If the pipe isn't enabled, we can't pump pixels and may hang */
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002240 assert_pipe_enabled(dev_priv, intel_crtc->pipe);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002241 to_intel_plane_state(plane->state)->visible = true;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002242
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002243 dev_priv->display.update_primary_plane(crtc, plane->fb,
2244 crtc->x, crtc->y);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002245}
2246
Chris Wilson693db182013-03-05 14:52:39 +00002247static bool need_vtd_wa(struct drm_device *dev)
2248{
2249#ifdef CONFIG_INTEL_IOMMU
2250 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2251 return true;
2252#endif
2253 return false;
2254}
2255
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002256unsigned int
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002257intel_tile_height(struct drm_device *dev, uint32_t pixel_format,
2258 uint64_t fb_format_modifier)
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002259{
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002260 unsigned int tile_height;
2261 uint32_t pixel_bytes;
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002262
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002263 switch (fb_format_modifier) {
2264 case DRM_FORMAT_MOD_NONE:
2265 tile_height = 1;
2266 break;
2267 case I915_FORMAT_MOD_X_TILED:
2268 tile_height = IS_GEN2(dev) ? 16 : 8;
2269 break;
2270 case I915_FORMAT_MOD_Y_TILED:
2271 tile_height = 32;
2272 break;
2273 case I915_FORMAT_MOD_Yf_TILED:
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002274 pixel_bytes = drm_format_plane_cpp(pixel_format, 0);
2275 switch (pixel_bytes) {
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002276 default:
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002277 case 1:
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002278 tile_height = 64;
2279 break;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002280 case 2:
2281 case 4:
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002282 tile_height = 32;
2283 break;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002284 case 8:
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002285 tile_height = 16;
2286 break;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002287 case 16:
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002288 WARN_ONCE(1,
2289 "128-bit pixels are not supported for display!");
2290 tile_height = 16;
2291 break;
2292 }
2293 break;
2294 default:
2295 MISSING_CASE(fb_format_modifier);
2296 tile_height = 1;
2297 break;
2298 }
Daniel Vetter091df6c2015-02-10 17:16:10 +00002299
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002300 return tile_height;
2301}
2302
2303unsigned int
2304intel_fb_align_height(struct drm_device *dev, unsigned int height,
2305 uint32_t pixel_format, uint64_t fb_format_modifier)
2306{
2307 return ALIGN(height, intel_tile_height(dev, pixel_format,
2308 fb_format_modifier));
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002309}
2310
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002311static int
2312intel_fill_fb_ggtt_view(struct i915_ggtt_view *view, struct drm_framebuffer *fb,
2313 const struct drm_plane_state *plane_state)
2314{
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002315 struct intel_rotation_info *info = &view->rotation_info;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002316
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002317 *view = i915_ggtt_view_normal;
2318
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002319 if (!plane_state)
2320 return 0;
2321
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002322 if (!intel_rotation_90_or_270(plane_state->rotation))
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002323 return 0;
2324
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02002325 *view = i915_ggtt_view_rotated;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002326
2327 info->height = fb->height;
2328 info->pixel_format = fb->pixel_format;
2329 info->pitch = fb->pitches[0];
2330 info->fb_modifier = fb->modifier[0];
2331
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002332 return 0;
2333}
2334
Chris Wilson127bd2a2010-07-23 23:32:05 +01002335int
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002336intel_pin_and_fence_fb_obj(struct drm_plane *plane,
2337 struct drm_framebuffer *fb,
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +00002338 const struct drm_plane_state *plane_state,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002339 struct intel_engine_cs *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002340{
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002341 struct drm_device *dev = fb->dev;
Chris Wilsonce453d82011-02-21 14:43:56 +00002342 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002343 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002344 struct i915_ggtt_view view;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002345 u32 alignment;
2346 int ret;
2347
Matt Roperebcdd392014-07-09 16:22:11 -07002348 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
2349
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002350 switch (fb->modifier[0]) {
2351 case DRM_FORMAT_MOD_NONE:
Damien Lespiau1fada4c2013-07-03 21:06:02 +01002352 if (INTEL_INFO(dev)->gen >= 9)
2353 alignment = 256 * 1024;
2354 else if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
Chris Wilson534843d2010-07-05 18:01:46 +01002355 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002356 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01002357 alignment = 4 * 1024;
2358 else
2359 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002360 break;
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002361 case I915_FORMAT_MOD_X_TILED:
Damien Lespiau1fada4c2013-07-03 21:06:02 +01002362 if (INTEL_INFO(dev)->gen >= 9)
2363 alignment = 256 * 1024;
2364 else {
2365 /* pin() will align the object as required by fence */
2366 alignment = 0;
2367 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002368 break;
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002369 case I915_FORMAT_MOD_Y_TILED:
Damien Lespiau1327b9a2015-02-27 11:15:20 +00002370 case I915_FORMAT_MOD_Yf_TILED:
2371 if (WARN_ONCE(INTEL_INFO(dev)->gen < 9,
2372 "Y tiling bo slipped through, driver bug!\n"))
2373 return -EINVAL;
2374 alignment = 1 * 1024 * 1024;
2375 break;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002376 default:
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002377 MISSING_CASE(fb->modifier[0]);
2378 return -EINVAL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002379 }
2380
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002381 ret = intel_fill_fb_ggtt_view(&view, fb, plane_state);
2382 if (ret)
2383 return ret;
2384
Chris Wilson693db182013-03-05 14:52:39 +00002385 /* Note that the w/a also requires 64 PTE of padding following the
2386 * bo. We currently fill all unused PTE with the shadow page and so
2387 * we should always have valid PTE following the scanout preventing
2388 * the VT-d warning.
2389 */
2390 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2391 alignment = 256 * 1024;
2392
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002393 /*
2394 * Global gtt pte registers are special registers which actually forward
2395 * writes to a chunk of system memory. Which means that there is no risk
2396 * that the register values disappear as soon as we call
2397 * intel_runtime_pm_put(), so it is correct to wrap only the
2398 * pin/unpin/fence and not more.
2399 */
2400 intel_runtime_pm_get(dev_priv);
2401
Chris Wilsonce453d82011-02-21 14:43:56 +00002402 dev_priv->mm.interruptible = false;
Tvrtko Ursuline6617332015-03-23 11:10:33 +00002403 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined,
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002404 &view);
Chris Wilson48b956c2010-09-14 12:50:34 +01002405 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00002406 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002407
2408 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2409 * fence, whereas 965+ only requires a fence if using
2410 * framebuffer compression. For simplicity, we always install
2411 * a fence as the cost is not that onerous.
2412 */
Chris Wilson06d98132012-04-17 15:31:24 +01002413 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002414 if (ret)
2415 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002416
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002417 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002418
Chris Wilsonce453d82011-02-21 14:43:56 +00002419 dev_priv->mm.interruptible = true;
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002420 intel_runtime_pm_put(dev_priv);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002421 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01002422
2423err_unpin:
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002424 i915_gem_object_unpin_from_display_plane(obj, &view);
Chris Wilsonce453d82011-02-21 14:43:56 +00002425err_interruptible:
2426 dev_priv->mm.interruptible = true;
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002427 intel_runtime_pm_put(dev_priv);
Chris Wilson48b956c2010-09-14 12:50:34 +01002428 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002429}
2430
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +00002431static void intel_unpin_fb_obj(struct drm_framebuffer *fb,
2432 const struct drm_plane_state *plane_state)
Chris Wilson1690e1e2011-12-14 13:57:08 +01002433{
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +00002434 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002435 struct i915_ggtt_view view;
2436 int ret;
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +00002437
Matt Roperebcdd392014-07-09 16:22:11 -07002438 WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex));
2439
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002440 ret = intel_fill_fb_ggtt_view(&view, fb, plane_state);
2441 WARN_ONCE(ret, "Couldn't get view from plane state!");
2442
Chris Wilson1690e1e2011-12-14 13:57:08 +01002443 i915_gem_object_unpin_fence(obj);
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002444 i915_gem_object_unpin_from_display_plane(obj, &view);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002445}
2446
Daniel Vetterc2c75132012-07-05 12:17:30 +02002447/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2448 * is assumed to be a power-of-two. */
Chris Wilsonbc752862013-02-21 20:04:31 +00002449unsigned long intel_gen4_compute_page_offset(int *x, int *y,
2450 unsigned int tiling_mode,
2451 unsigned int cpp,
2452 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02002453{
Chris Wilsonbc752862013-02-21 20:04:31 +00002454 if (tiling_mode != I915_TILING_NONE) {
2455 unsigned int tile_rows, tiles;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002456
Chris Wilsonbc752862013-02-21 20:04:31 +00002457 tile_rows = *y / 8;
2458 *y %= 8;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002459
Chris Wilsonbc752862013-02-21 20:04:31 +00002460 tiles = *x / (512/cpp);
2461 *x %= 512/cpp;
2462
2463 return tile_rows * pitch * 8 + tiles * 4096;
2464 } else {
2465 unsigned int offset;
2466
2467 offset = *y * pitch + *x * cpp;
2468 *y = 0;
2469 *x = (offset & 4095) / cpp;
2470 return offset & -4096;
2471 }
Daniel Vetterc2c75132012-07-05 12:17:30 +02002472}
2473
Damien Lespiaub35d63f2015-01-20 12:51:50 +00002474static int i9xx_format_to_fourcc(int format)
Jesse Barnes46f297f2014-03-07 08:57:48 -08002475{
2476 switch (format) {
2477 case DISPPLANE_8BPP:
2478 return DRM_FORMAT_C8;
2479 case DISPPLANE_BGRX555:
2480 return DRM_FORMAT_XRGB1555;
2481 case DISPPLANE_BGRX565:
2482 return DRM_FORMAT_RGB565;
2483 default:
2484 case DISPPLANE_BGRX888:
2485 return DRM_FORMAT_XRGB8888;
2486 case DISPPLANE_RGBX888:
2487 return DRM_FORMAT_XBGR8888;
2488 case DISPPLANE_BGRX101010:
2489 return DRM_FORMAT_XRGB2101010;
2490 case DISPPLANE_RGBX101010:
2491 return DRM_FORMAT_XBGR2101010;
2492 }
2493}
2494
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00002495static int skl_format_to_fourcc(int format, bool rgb_order, bool alpha)
2496{
2497 switch (format) {
2498 case PLANE_CTL_FORMAT_RGB_565:
2499 return DRM_FORMAT_RGB565;
2500 default:
2501 case PLANE_CTL_FORMAT_XRGB_8888:
2502 if (rgb_order) {
2503 if (alpha)
2504 return DRM_FORMAT_ABGR8888;
2505 else
2506 return DRM_FORMAT_XBGR8888;
2507 } else {
2508 if (alpha)
2509 return DRM_FORMAT_ARGB8888;
2510 else
2511 return DRM_FORMAT_XRGB8888;
2512 }
2513 case PLANE_CTL_FORMAT_XRGB_2101010:
2514 if (rgb_order)
2515 return DRM_FORMAT_XBGR2101010;
2516 else
2517 return DRM_FORMAT_XRGB2101010;
2518 }
2519}
2520
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002521static bool
Daniel Vetterf6936e22015-03-26 12:17:05 +01002522intel_alloc_initial_plane_obj(struct intel_crtc *crtc,
2523 struct intel_initial_plane_config *plane_config)
Jesse Barnes46f297f2014-03-07 08:57:48 -08002524{
2525 struct drm_device *dev = crtc->base.dev;
2526 struct drm_i915_gem_object *obj = NULL;
2527 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Damien Lespiau2d140302015-02-05 17:22:18 +00002528 struct drm_framebuffer *fb = &plane_config->fb->base;
Daniel Vetterf37b5c22015-02-10 23:12:27 +01002529 u32 base_aligned = round_down(plane_config->base, PAGE_SIZE);
2530 u32 size_aligned = round_up(plane_config->base + plane_config->size,
2531 PAGE_SIZE);
2532
2533 size_aligned -= base_aligned;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002534
Chris Wilsonff2652e2014-03-10 08:07:02 +00002535 if (plane_config->size == 0)
2536 return false;
2537
Daniel Vetterf37b5c22015-02-10 23:12:27 +01002538 obj = i915_gem_object_create_stolen_for_preallocated(dev,
2539 base_aligned,
2540 base_aligned,
2541 size_aligned);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002542 if (!obj)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002543 return false;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002544
Damien Lespiau49af4492015-01-20 12:51:44 +00002545 obj->tiling_mode = plane_config->tiling;
2546 if (obj->tiling_mode == I915_TILING_X)
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002547 obj->stride = fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002548
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002549 mode_cmd.pixel_format = fb->pixel_format;
2550 mode_cmd.width = fb->width;
2551 mode_cmd.height = fb->height;
2552 mode_cmd.pitches[0] = fb->pitches[0];
Daniel Vetter18c52472015-02-10 17:16:09 +00002553 mode_cmd.modifier[0] = fb->modifier[0];
2554 mode_cmd.flags = DRM_MODE_FB_MODIFIERS;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002555
2556 mutex_lock(&dev->struct_mutex);
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002557 if (intel_framebuffer_init(dev, to_intel_framebuffer(fb),
Jesse Barnes484b41d2014-03-07 08:57:55 -08002558 &mode_cmd, obj)) {
Jesse Barnes46f297f2014-03-07 08:57:48 -08002559 DRM_DEBUG_KMS("intel fb init failed\n");
2560 goto out_unref_obj;
2561 }
Jesse Barnes46f297f2014-03-07 08:57:48 -08002562 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002563
Daniel Vetterf6936e22015-03-26 12:17:05 +01002564 DRM_DEBUG_KMS("initial plane fb obj %p\n", obj);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002565 return true;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002566
2567out_unref_obj:
2568 drm_gem_object_unreference(&obj->base);
2569 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002570 return false;
2571}
2572
Matt Roperafd65eb2015-02-03 13:10:04 -08002573/* Update plane->state->fb to match plane->fb after driver-internal updates */
2574static void
2575update_state_fb(struct drm_plane *plane)
2576{
2577 if (plane->fb == plane->state->fb)
2578 return;
2579
2580 if (plane->state->fb)
2581 drm_framebuffer_unreference(plane->state->fb);
2582 plane->state->fb = plane->fb;
2583 if (plane->state->fb)
2584 drm_framebuffer_reference(plane->state->fb);
2585}
2586
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002587static void
Daniel Vetterf6936e22015-03-26 12:17:05 +01002588intel_find_initial_plane_obj(struct intel_crtc *intel_crtc,
2589 struct intel_initial_plane_config *plane_config)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002590{
2591 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnesd9ceb812014-10-09 12:57:43 -07002592 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002593 struct drm_crtc *c;
2594 struct intel_crtc *i;
Matt Roper2ff8fde2014-07-08 07:50:07 -07002595 struct drm_i915_gem_object *obj;
Daniel Vetter88595ac2015-03-26 12:42:24 +01002596 struct drm_plane *primary = intel_crtc->base.primary;
2597 struct drm_framebuffer *fb;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002598
Damien Lespiau2d140302015-02-05 17:22:18 +00002599 if (!plane_config->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002600 return;
2601
Daniel Vetterf6936e22015-03-26 12:17:05 +01002602 if (intel_alloc_initial_plane_obj(intel_crtc, plane_config)) {
Daniel Vetter88595ac2015-03-26 12:42:24 +01002603 fb = &plane_config->fb->base;
2604 goto valid_fb;
Damien Lespiauf55548b2015-02-05 18:30:20 +00002605 }
Jesse Barnes484b41d2014-03-07 08:57:55 -08002606
Damien Lespiau2d140302015-02-05 17:22:18 +00002607 kfree(plane_config->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002608
2609 /*
2610 * Failed to alloc the obj, check to see if we should share
2611 * an fb with another CRTC instead
2612 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002613 for_each_crtc(dev, c) {
Jesse Barnes484b41d2014-03-07 08:57:55 -08002614 i = to_intel_crtc(c);
2615
2616 if (c == &intel_crtc->base)
2617 continue;
2618
Matt Roper2ff8fde2014-07-08 07:50:07 -07002619 if (!i->active)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002620 continue;
2621
Daniel Vetter88595ac2015-03-26 12:42:24 +01002622 fb = c->primary->fb;
2623 if (!fb)
Matt Roper2ff8fde2014-07-08 07:50:07 -07002624 continue;
2625
Daniel Vetter88595ac2015-03-26 12:42:24 +01002626 obj = intel_fb_obj(fb);
Matt Roper2ff8fde2014-07-08 07:50:07 -07002627 if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) {
Daniel Vetter88595ac2015-03-26 12:42:24 +01002628 drm_framebuffer_reference(fb);
2629 goto valid_fb;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002630 }
2631 }
Daniel Vetter88595ac2015-03-26 12:42:24 +01002632
2633 return;
2634
2635valid_fb:
2636 obj = intel_fb_obj(fb);
2637 if (obj->tiling_mode != I915_TILING_NONE)
2638 dev_priv->preserve_bios_swizzle = true;
2639
2640 primary->fb = fb;
2641 primary->state->crtc = &intel_crtc->base;
2642 primary->crtc = &intel_crtc->base;
2643 update_state_fb(primary);
2644 obj->frontbuffer_bits |= INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002645}
2646
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002647static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2648 struct drm_framebuffer *fb,
2649 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07002650{
2651 struct drm_device *dev = crtc->dev;
2652 struct drm_i915_private *dev_priv = dev->dev_private;
2653 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002654 struct drm_plane *primary = crtc->primary;
2655 bool visible = to_intel_plane_state(primary->state)->visible;
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002656 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002657 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002658 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002659 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002660 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302661 int pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002662
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002663 if (!visible || !fb) {
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002664 I915_WRITE(reg, 0);
2665 if (INTEL_INFO(dev)->gen >= 4)
2666 I915_WRITE(DSPSURF(plane), 0);
2667 else
2668 I915_WRITE(DSPADDR(plane), 0);
2669 POSTING_READ(reg);
2670 return;
2671 }
2672
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002673 obj = intel_fb_obj(fb);
2674 if (WARN_ON(obj == NULL))
2675 return;
2676
2677 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2678
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002679 dspcntr = DISPPLANE_GAMMA_ENABLE;
2680
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002681 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002682
2683 if (INTEL_INFO(dev)->gen < 4) {
2684 if (intel_crtc->pipe == PIPE_B)
2685 dspcntr |= DISPPLANE_SEL_PIPE_B;
2686
2687 /* pipesrc and dspsize control the size that is scaled from,
2688 * which should always be the user's requested size.
2689 */
2690 I915_WRITE(DSPSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002691 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2692 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002693 I915_WRITE(DSPPOS(plane), 0);
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002694 } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) {
2695 I915_WRITE(PRIMSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002696 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2697 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002698 I915_WRITE(PRIMPOS(plane), 0);
2699 I915_WRITE(PRIMCNSTALPHA(plane), 0);
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002700 }
2701
Ville Syrjälä57779d02012-10-31 17:50:14 +02002702 switch (fb->pixel_format) {
2703 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002704 dspcntr |= DISPPLANE_8BPP;
2705 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002706 case DRM_FORMAT_XRGB1555:
2707 case DRM_FORMAT_ARGB1555:
2708 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002709 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002710 case DRM_FORMAT_RGB565:
2711 dspcntr |= DISPPLANE_BGRX565;
2712 break;
2713 case DRM_FORMAT_XRGB8888:
2714 case DRM_FORMAT_ARGB8888:
2715 dspcntr |= DISPPLANE_BGRX888;
2716 break;
2717 case DRM_FORMAT_XBGR8888:
2718 case DRM_FORMAT_ABGR8888:
2719 dspcntr |= DISPPLANE_RGBX888;
2720 break;
2721 case DRM_FORMAT_XRGB2101010:
2722 case DRM_FORMAT_ARGB2101010:
2723 dspcntr |= DISPPLANE_BGRX101010;
2724 break;
2725 case DRM_FORMAT_XBGR2101010:
2726 case DRM_FORMAT_ABGR2101010:
2727 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002728 break;
2729 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002730 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07002731 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002732
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002733 if (INTEL_INFO(dev)->gen >= 4 &&
2734 obj->tiling_mode != I915_TILING_NONE)
2735 dspcntr |= DISPPLANE_TILED;
Jesse Barnes81255562010-08-02 12:07:50 -07002736
Ville Syrjäläde1aa622013-06-07 10:47:01 +03002737 if (IS_G4X(dev))
2738 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2739
Ville Syrjäläb98971272014-08-27 16:51:22 +03002740 linear_offset = y * fb->pitches[0] + x * pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002741
Daniel Vetterc2c75132012-07-05 12:17:30 +02002742 if (INTEL_INFO(dev)->gen >= 4) {
2743 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002744 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002745 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002746 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002747 linear_offset -= intel_crtc->dspaddr_offset;
2748 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002749 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002750 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002751
Matt Roper8e7d6882015-01-21 16:35:41 -08002752 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302753 dspcntr |= DISPPLANE_ROTATE_180;
2754
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002755 x += (intel_crtc->config->pipe_src_w - 1);
2756 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302757
2758 /* Finding the last pixel of the last line of the display
2759 data and adding to linear_offset*/
2760 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002761 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2762 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302763 }
2764
2765 I915_WRITE(reg, dspcntr);
2766
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002767 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002768 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002769 I915_WRITE(DSPSURF(plane),
2770 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002771 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002772 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002773 } else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002774 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002775 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002776}
2777
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002778static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2779 struct drm_framebuffer *fb,
2780 int x, int y)
Jesse Barnes17638cd2011-06-24 12:19:23 -07002781{
2782 struct drm_device *dev = crtc->dev;
2783 struct drm_i915_private *dev_priv = dev->dev_private;
2784 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002785 struct drm_plane *primary = crtc->primary;
2786 bool visible = to_intel_plane_state(primary->state)->visible;
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002787 struct drm_i915_gem_object *obj;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002788 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002789 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002790 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002791 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302792 int pixel_size;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002793
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002794 if (!visible || !fb) {
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002795 I915_WRITE(reg, 0);
2796 I915_WRITE(DSPSURF(plane), 0);
2797 POSTING_READ(reg);
2798 return;
2799 }
2800
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002801 obj = intel_fb_obj(fb);
2802 if (WARN_ON(obj == NULL))
2803 return;
2804
2805 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2806
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002807 dspcntr = DISPPLANE_GAMMA_ENABLE;
2808
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002809 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002810
2811 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
2812 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
2813
Ville Syrjälä57779d02012-10-31 17:50:14 +02002814 switch (fb->pixel_format) {
2815 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002816 dspcntr |= DISPPLANE_8BPP;
2817 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002818 case DRM_FORMAT_RGB565:
2819 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002820 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002821 case DRM_FORMAT_XRGB8888:
2822 case DRM_FORMAT_ARGB8888:
2823 dspcntr |= DISPPLANE_BGRX888;
2824 break;
2825 case DRM_FORMAT_XBGR8888:
2826 case DRM_FORMAT_ABGR8888:
2827 dspcntr |= DISPPLANE_RGBX888;
2828 break;
2829 case DRM_FORMAT_XRGB2101010:
2830 case DRM_FORMAT_ARGB2101010:
2831 dspcntr |= DISPPLANE_BGRX101010;
2832 break;
2833 case DRM_FORMAT_XBGR2101010:
2834 case DRM_FORMAT_ABGR2101010:
2835 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002836 break;
2837 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002838 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002839 }
2840
2841 if (obj->tiling_mode != I915_TILING_NONE)
2842 dspcntr |= DISPPLANE_TILED;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002843
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002844 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03002845 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002846
Ville Syrjäläb98971272014-08-27 16:51:22 +03002847 linear_offset = y * fb->pitches[0] + x * pixel_size;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002848 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002849 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002850 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002851 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002852 linear_offset -= intel_crtc->dspaddr_offset;
Matt Roper8e7d6882015-01-21 16:35:41 -08002853 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302854 dspcntr |= DISPPLANE_ROTATE_180;
2855
2856 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002857 x += (intel_crtc->config->pipe_src_w - 1);
2858 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302859
2860 /* Finding the last pixel of the last line of the display
2861 data and adding to linear_offset*/
2862 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002863 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2864 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302865 }
2866 }
2867
2868 I915_WRITE(reg, dspcntr);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002869
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002870 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002871 I915_WRITE(DSPSURF(plane),
2872 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Paulo Zanonib3dc6852013-11-02 21:07:33 -07002873 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002874 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2875 } else {
2876 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2877 I915_WRITE(DSPLINOFF(plane), linear_offset);
2878 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002879 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002880}
2881
Damien Lespiaub3218032015-02-27 11:15:18 +00002882u32 intel_fb_stride_alignment(struct drm_device *dev, uint64_t fb_modifier,
2883 uint32_t pixel_format)
2884{
2885 u32 bits_per_pixel = drm_format_plane_cpp(pixel_format, 0) * 8;
2886
2887 /*
2888 * The stride is either expressed as a multiple of 64 bytes
2889 * chunks for linear buffers or in number of tiles for tiled
2890 * buffers.
2891 */
2892 switch (fb_modifier) {
2893 case DRM_FORMAT_MOD_NONE:
2894 return 64;
2895 case I915_FORMAT_MOD_X_TILED:
2896 if (INTEL_INFO(dev)->gen == 2)
2897 return 128;
2898 return 512;
2899 case I915_FORMAT_MOD_Y_TILED:
2900 /* No need to check for old gens and Y tiling since this is
2901 * about the display engine and those will be blocked before
2902 * we get here.
2903 */
2904 return 128;
2905 case I915_FORMAT_MOD_Yf_TILED:
2906 if (bits_per_pixel == 8)
2907 return 64;
2908 else
2909 return 128;
2910 default:
2911 MISSING_CASE(fb_modifier);
2912 return 64;
2913 }
2914}
2915
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002916unsigned long intel_plane_obj_offset(struct intel_plane *intel_plane,
2917 struct drm_i915_gem_object *obj)
2918{
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02002919 const struct i915_ggtt_view *view = &i915_ggtt_view_normal;
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002920
2921 if (intel_rotation_90_or_270(intel_plane->base.state->rotation))
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02002922 view = &i915_ggtt_view_rotated;
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002923
2924 return i915_gem_obj_ggtt_offset_view(obj, view);
2925}
2926
Chandra Kondurua1b22782015-04-07 15:28:45 -07002927/*
2928 * This function detaches (aka. unbinds) unused scalers in hardware
2929 */
2930void skl_detach_scalers(struct intel_crtc *intel_crtc)
2931{
2932 struct drm_device *dev;
2933 struct drm_i915_private *dev_priv;
2934 struct intel_crtc_scaler_state *scaler_state;
2935 int i;
2936
2937 if (!intel_crtc || !intel_crtc->config)
2938 return;
2939
2940 dev = intel_crtc->base.dev;
2941 dev_priv = dev->dev_private;
2942 scaler_state = &intel_crtc->config->scaler_state;
2943
2944 /* loop through and disable scalers that aren't in use */
2945 for (i = 0; i < intel_crtc->num_scalers; i++) {
2946 if (!scaler_state->scalers[i].in_use) {
2947 I915_WRITE(SKL_PS_CTRL(intel_crtc->pipe, i), 0);
2948 I915_WRITE(SKL_PS_WIN_POS(intel_crtc->pipe, i), 0);
2949 I915_WRITE(SKL_PS_WIN_SZ(intel_crtc->pipe, i), 0);
2950 DRM_DEBUG_KMS("CRTC:%d Disabled scaler id %u.%u\n",
2951 intel_crtc->base.base.id, intel_crtc->pipe, i);
2952 }
2953 }
2954}
2955
Chandra Konduru6156a452015-04-27 13:48:39 -07002956u32 skl_plane_ctl_format(uint32_t pixel_format)
2957{
2958 u32 plane_ctl_format = 0;
2959 switch (pixel_format) {
2960 case DRM_FORMAT_RGB565:
2961 plane_ctl_format = PLANE_CTL_FORMAT_RGB_565;
2962 break;
2963 case DRM_FORMAT_XBGR8888:
2964 plane_ctl_format = PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX;
2965 break;
2966 case DRM_FORMAT_XRGB8888:
2967 plane_ctl_format = PLANE_CTL_FORMAT_XRGB_8888;
2968 break;
2969 /*
2970 * XXX: For ARBG/ABGR formats we default to expecting scanout buffers
2971 * to be already pre-multiplied. We need to add a knob (or a different
2972 * DRM_FORMAT) for user-space to configure that.
2973 */
2974 case DRM_FORMAT_ABGR8888:
2975 plane_ctl_format = PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX |
2976 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
2977 break;
2978 case DRM_FORMAT_ARGB8888:
2979 plane_ctl_format = PLANE_CTL_FORMAT_XRGB_8888 |
2980 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
2981 break;
2982 case DRM_FORMAT_XRGB2101010:
2983 plane_ctl_format = PLANE_CTL_FORMAT_XRGB_2101010;
2984 break;
2985 case DRM_FORMAT_XBGR2101010:
2986 plane_ctl_format = PLANE_CTL_ORDER_RGBX | PLANE_CTL_FORMAT_XRGB_2101010;
2987 break;
2988 case DRM_FORMAT_YUYV:
2989 plane_ctl_format = PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YUYV;
2990 break;
2991 case DRM_FORMAT_YVYU:
2992 plane_ctl_format = PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YVYU;
2993 break;
2994 case DRM_FORMAT_UYVY:
2995 plane_ctl_format = PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_UYVY;
2996 break;
2997 case DRM_FORMAT_VYUY:
2998 plane_ctl_format = PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_VYUY;
2999 break;
3000 default:
3001 BUG();
3002 }
3003 return plane_ctl_format;
3004}
3005
3006u32 skl_plane_ctl_tiling(uint64_t fb_modifier)
3007{
3008 u32 plane_ctl_tiling = 0;
3009 switch (fb_modifier) {
3010 case DRM_FORMAT_MOD_NONE:
3011 break;
3012 case I915_FORMAT_MOD_X_TILED:
3013 plane_ctl_tiling = PLANE_CTL_TILED_X;
3014 break;
3015 case I915_FORMAT_MOD_Y_TILED:
3016 plane_ctl_tiling = PLANE_CTL_TILED_Y;
3017 break;
3018 case I915_FORMAT_MOD_Yf_TILED:
3019 plane_ctl_tiling = PLANE_CTL_TILED_YF;
3020 break;
3021 default:
3022 MISSING_CASE(fb_modifier);
3023 }
3024 return plane_ctl_tiling;
3025}
3026
3027u32 skl_plane_ctl_rotation(unsigned int rotation)
3028{
3029 u32 plane_ctl_rotation = 0;
3030 switch (rotation) {
3031 case BIT(DRM_ROTATE_0):
3032 break;
3033 case BIT(DRM_ROTATE_90):
3034 plane_ctl_rotation = PLANE_CTL_ROTATE_90;
3035 break;
3036 case BIT(DRM_ROTATE_180):
3037 plane_ctl_rotation = PLANE_CTL_ROTATE_180;
3038 break;
3039 case BIT(DRM_ROTATE_270):
3040 plane_ctl_rotation = PLANE_CTL_ROTATE_270;
3041 break;
3042 default:
3043 MISSING_CASE(rotation);
3044 }
3045
3046 return plane_ctl_rotation;
3047}
3048
Damien Lespiau70d21f02013-07-03 21:06:04 +01003049static void skylake_update_primary_plane(struct drm_crtc *crtc,
3050 struct drm_framebuffer *fb,
3051 int x, int y)
3052{
3053 struct drm_device *dev = crtc->dev;
3054 struct drm_i915_private *dev_priv = dev->dev_private;
3055 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03003056 struct drm_plane *plane = crtc->primary;
3057 bool visible = to_intel_plane_state(plane->state)->visible;
Damien Lespiau70d21f02013-07-03 21:06:04 +01003058 struct drm_i915_gem_object *obj;
3059 int pipe = intel_crtc->pipe;
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303060 u32 plane_ctl, stride_div, stride;
3061 u32 tile_height, plane_offset, plane_size;
3062 unsigned int rotation;
3063 int x_offset, y_offset;
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00003064 unsigned long surf_addr;
Chandra Konduru6156a452015-04-27 13:48:39 -07003065 struct intel_crtc_state *crtc_state = intel_crtc->config;
3066 struct intel_plane_state *plane_state;
3067 int src_x = 0, src_y = 0, src_w = 0, src_h = 0;
3068 int dst_x = 0, dst_y = 0, dst_w = 0, dst_h = 0;
3069 int scaler_id = -1;
3070
Chandra Konduru6156a452015-04-27 13:48:39 -07003071 plane_state = to_intel_plane_state(plane->state);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003072
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03003073 if (!visible || !fb) {
Damien Lespiau70d21f02013-07-03 21:06:04 +01003074 I915_WRITE(PLANE_CTL(pipe, 0), 0);
3075 I915_WRITE(PLANE_SURF(pipe, 0), 0);
3076 POSTING_READ(PLANE_CTL(pipe, 0));
3077 return;
3078 }
3079
3080 plane_ctl = PLANE_CTL_ENABLE |
3081 PLANE_CTL_PIPE_GAMMA_ENABLE |
3082 PLANE_CTL_PIPE_CSC_ENABLE;
3083
Chandra Konduru6156a452015-04-27 13:48:39 -07003084 plane_ctl |= skl_plane_ctl_format(fb->pixel_format);
3085 plane_ctl |= skl_plane_ctl_tiling(fb->modifier[0]);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003086 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303087
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303088 rotation = plane->state->rotation;
Chandra Konduru6156a452015-04-27 13:48:39 -07003089 plane_ctl |= skl_plane_ctl_rotation(rotation);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003090
Damien Lespiaub3218032015-02-27 11:15:18 +00003091 obj = intel_fb_obj(fb);
3092 stride_div = intel_fb_stride_alignment(dev, fb->modifier[0],
3093 fb->pixel_format);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303094 surf_addr = intel_plane_obj_offset(to_intel_plane(plane), obj);
3095
Chandra Konduru6156a452015-04-27 13:48:39 -07003096 /*
3097 * FIXME: intel_plane_state->src, dst aren't set when transitional
3098 * update_plane helpers are called from legacy paths.
3099 * Once full atomic crtc is available, below check can be avoided.
3100 */
3101 if (drm_rect_width(&plane_state->src)) {
3102 scaler_id = plane_state->scaler_id;
3103 src_x = plane_state->src.x1 >> 16;
3104 src_y = plane_state->src.y1 >> 16;
3105 src_w = drm_rect_width(&plane_state->src) >> 16;
3106 src_h = drm_rect_height(&plane_state->src) >> 16;
3107 dst_x = plane_state->dst.x1;
3108 dst_y = plane_state->dst.y1;
3109 dst_w = drm_rect_width(&plane_state->dst);
3110 dst_h = drm_rect_height(&plane_state->dst);
3111
3112 WARN_ON(x != src_x || y != src_y);
3113 } else {
3114 src_w = intel_crtc->config->pipe_src_w;
3115 src_h = intel_crtc->config->pipe_src_h;
3116 }
3117
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303118 if (intel_rotation_90_or_270(rotation)) {
3119 /* stride = Surface height in tiles */
3120 tile_height = intel_tile_height(dev, fb->bits_per_pixel,
3121 fb->modifier[0]);
3122 stride = DIV_ROUND_UP(fb->height, tile_height);
Chandra Konduru6156a452015-04-27 13:48:39 -07003123 x_offset = stride * tile_height - y - src_h;
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303124 y_offset = x;
Chandra Konduru6156a452015-04-27 13:48:39 -07003125 plane_size = (src_w - 1) << 16 | (src_h - 1);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303126 } else {
3127 stride = fb->pitches[0] / stride_div;
3128 x_offset = x;
3129 y_offset = y;
Chandra Konduru6156a452015-04-27 13:48:39 -07003130 plane_size = (src_h - 1) << 16 | (src_w - 1);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303131 }
3132 plane_offset = y_offset << 16 | x_offset;
Damien Lespiaub3218032015-02-27 11:15:18 +00003133
Damien Lespiau70d21f02013-07-03 21:06:04 +01003134 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303135 I915_WRITE(PLANE_OFFSET(pipe, 0), plane_offset);
3136 I915_WRITE(PLANE_SIZE(pipe, 0), plane_size);
3137 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
Chandra Konduru6156a452015-04-27 13:48:39 -07003138
3139 if (scaler_id >= 0) {
3140 uint32_t ps_ctrl = 0;
3141
3142 WARN_ON(!dst_w || !dst_h);
3143 ps_ctrl = PS_SCALER_EN | PS_PLANE_SEL(0) |
3144 crtc_state->scaler_state.scalers[scaler_id].mode;
3145 I915_WRITE(SKL_PS_CTRL(pipe, scaler_id), ps_ctrl);
3146 I915_WRITE(SKL_PS_PWR_GATE(pipe, scaler_id), 0);
3147 I915_WRITE(SKL_PS_WIN_POS(pipe, scaler_id), (dst_x << 16) | dst_y);
3148 I915_WRITE(SKL_PS_WIN_SZ(pipe, scaler_id), (dst_w << 16) | dst_h);
3149 I915_WRITE(PLANE_POS(pipe, 0), 0);
3150 } else {
3151 I915_WRITE(PLANE_POS(pipe, 0), (dst_y << 16) | dst_x);
3152 }
3153
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00003154 I915_WRITE(PLANE_SURF(pipe, 0), surf_addr);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003155
3156 POSTING_READ(PLANE_SURF(pipe, 0));
3157}
3158
Jesse Barnes17638cd2011-06-24 12:19:23 -07003159/* Assume fb object is pinned & idle & fenced and just update base pointers */
3160static int
3161intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
3162 int x, int y, enum mode_set_atomic state)
3163{
3164 struct drm_device *dev = crtc->dev;
3165 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07003166
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01003167 if (dev_priv->display.disable_fbc)
3168 dev_priv->display.disable_fbc(dev);
Jesse Barnes81255562010-08-02 12:07:50 -07003169
Daniel Vetter29b9bde2014-04-24 23:55:01 +02003170 dev_priv->display.update_primary_plane(crtc, fb, x, y);
3171
3172 return 0;
Jesse Barnes81255562010-08-02 12:07:50 -07003173}
3174
Ville Syrjälä75147472014-11-24 18:28:11 +02003175static void intel_complete_page_flips(struct drm_device *dev)
Ville Syrjälä96a02912013-02-18 19:08:49 +02003176{
Ville Syrjälä96a02912013-02-18 19:08:49 +02003177 struct drm_crtc *crtc;
3178
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01003179 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02003180 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3181 enum plane plane = intel_crtc->plane;
3182
3183 intel_prepare_page_flip(dev, plane);
3184 intel_finish_page_flip_plane(dev, plane);
3185 }
Ville Syrjälä75147472014-11-24 18:28:11 +02003186}
3187
3188static void intel_update_primary_planes(struct drm_device *dev)
3189{
3190 struct drm_i915_private *dev_priv = dev->dev_private;
3191 struct drm_crtc *crtc;
Ville Syrjälä96a02912013-02-18 19:08:49 +02003192
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01003193 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02003194 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3195
Rob Clark51fd3712013-11-19 12:10:12 -05003196 drm_modeset_lock(&crtc->mutex, NULL);
Chris Wilson947fdaadf2013-11-27 12:01:32 +00003197 /*
3198 * FIXME: Once we have proper support for primary planes (and
3199 * disabling them without disabling the entire crtc) allow again
Dave Airlie66e514c2014-04-03 07:51:54 +10003200 * a NULL crtc->primary->fb.
Chris Wilson947fdaadf2013-11-27 12:01:32 +00003201 */
Matt Roperf4510a22014-04-01 15:22:40 -07003202 if (intel_crtc->active && crtc->primary->fb)
Matt Roper262ca2b2014-03-18 17:22:55 -07003203 dev_priv->display.update_primary_plane(crtc,
Dave Airlie66e514c2014-04-03 07:51:54 +10003204 crtc->primary->fb,
Matt Roper262ca2b2014-03-18 17:22:55 -07003205 crtc->x,
3206 crtc->y);
Rob Clark51fd3712013-11-19 12:10:12 -05003207 drm_modeset_unlock(&crtc->mutex);
Ville Syrjälä96a02912013-02-18 19:08:49 +02003208 }
3209}
3210
Maarten Lankhorstce22dba2015-04-21 17:12:56 +03003211void intel_crtc_reset(struct intel_crtc *crtc)
3212{
3213 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
3214
3215 if (!crtc->active)
3216 return;
3217
3218 intel_crtc_disable_planes(&crtc->base);
3219 dev_priv->display.crtc_disable(&crtc->base);
3220 dev_priv->display.crtc_enable(&crtc->base);
3221 intel_crtc_enable_planes(&crtc->base);
3222}
3223
Ville Syrjälä75147472014-11-24 18:28:11 +02003224void intel_prepare_reset(struct drm_device *dev)
3225{
Ville Syrjäläf98ce922014-11-21 21:54:30 +02003226 struct drm_i915_private *dev_priv = to_i915(dev);
3227 struct intel_crtc *crtc;
3228
Ville Syrjälä75147472014-11-24 18:28:11 +02003229 /* no reset support for gen2 */
3230 if (IS_GEN2(dev))
3231 return;
3232
3233 /* reset doesn't touch the display */
3234 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
3235 return;
3236
3237 drm_modeset_lock_all(dev);
Ville Syrjäläf98ce922014-11-21 21:54:30 +02003238
3239 /*
3240 * Disabling the crtcs gracefully seems nicer. Also the
3241 * g33 docs say we should at least disable all the planes.
3242 */
3243 for_each_intel_crtc(dev, crtc) {
Maarten Lankhorstce22dba2015-04-21 17:12:56 +03003244 if (!crtc->active)
3245 continue;
3246
3247 intel_crtc_disable_planes(&crtc->base);
3248 dev_priv->display.crtc_disable(&crtc->base);
Ville Syrjäläf98ce922014-11-21 21:54:30 +02003249 }
Ville Syrjälä75147472014-11-24 18:28:11 +02003250}
3251
3252void intel_finish_reset(struct drm_device *dev)
3253{
3254 struct drm_i915_private *dev_priv = to_i915(dev);
3255
3256 /*
3257 * Flips in the rings will be nuked by the reset,
3258 * so complete all pending flips so that user space
3259 * will get its events and not get stuck.
3260 */
3261 intel_complete_page_flips(dev);
3262
3263 /* no reset support for gen2 */
3264 if (IS_GEN2(dev))
3265 return;
3266
3267 /* reset doesn't touch the display */
3268 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) {
3269 /*
3270 * Flips in the rings have been nuked by the reset,
3271 * so update the base address of all primary
3272 * planes to the the last fb to make sure we're
3273 * showing the correct fb after a reset.
3274 */
3275 intel_update_primary_planes(dev);
3276 return;
3277 }
3278
3279 /*
3280 * The display has been reset as well,
3281 * so need a full re-initialization.
3282 */
3283 intel_runtime_pm_disable_interrupts(dev_priv);
3284 intel_runtime_pm_enable_interrupts(dev_priv);
3285
3286 intel_modeset_init_hw(dev);
3287
3288 spin_lock_irq(&dev_priv->irq_lock);
3289 if (dev_priv->display.hpd_irq_setup)
3290 dev_priv->display.hpd_irq_setup(dev);
3291 spin_unlock_irq(&dev_priv->irq_lock);
3292
3293 intel_modeset_setup_hw_state(dev, true);
3294
3295 intel_hpd_init(dev_priv);
3296
3297 drm_modeset_unlock_all(dev);
3298}
3299
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003300static int
Chris Wilson14667a42012-04-03 17:58:35 +01003301intel_finish_fb(struct drm_framebuffer *old_fb)
3302{
Matt Roper2ff8fde2014-07-08 07:50:07 -07003303 struct drm_i915_gem_object *obj = intel_fb_obj(old_fb);
Chris Wilson14667a42012-04-03 17:58:35 +01003304 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
3305 bool was_interruptible = dev_priv->mm.interruptible;
3306 int ret;
3307
Chris Wilson14667a42012-04-03 17:58:35 +01003308 /* Big Hammer, we also need to ensure that any pending
3309 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
3310 * current scanout is retired before unpinning the old
3311 * framebuffer.
3312 *
3313 * This should only fail upon a hung GPU, in which case we
3314 * can safely continue.
3315 */
3316 dev_priv->mm.interruptible = false;
3317 ret = i915_gem_object_finish_gpu(obj);
3318 dev_priv->mm.interruptible = was_interruptible;
3319
3320 return ret;
3321}
3322
Chris Wilson7d5e3792014-03-04 13:15:08 +00003323static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
3324{
3325 struct drm_device *dev = crtc->dev;
3326 struct drm_i915_private *dev_priv = dev->dev_private;
3327 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003328 bool pending;
3329
3330 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
3331 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
3332 return false;
3333
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003334 spin_lock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003335 pending = to_intel_crtc(crtc)->unpin_work != NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003336 spin_unlock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003337
3338 return pending;
3339}
3340
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003341static void intel_update_pipe_size(struct intel_crtc *crtc)
3342{
3343 struct drm_device *dev = crtc->base.dev;
3344 struct drm_i915_private *dev_priv = dev->dev_private;
3345 const struct drm_display_mode *adjusted_mode;
3346
3347 if (!i915.fastboot)
3348 return;
3349
3350 /*
3351 * Update pipe size and adjust fitter if needed: the reason for this is
3352 * that in compute_mode_changes we check the native mode (not the pfit
3353 * mode) to see if we can flip rather than do a full mode set. In the
3354 * fastboot case, we'll flip, but if we don't update the pipesrc and
3355 * pfit state, we'll end up with a big fb scanned out into the wrong
3356 * sized surface.
3357 *
3358 * To fix this properly, we need to hoist the checks up into
3359 * compute_mode_changes (or above), check the actual pfit state and
3360 * whether the platform allows pfit disable with pipe active, and only
3361 * then update the pipesrc and pfit state, even on the flip path.
3362 */
3363
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003364 adjusted_mode = &crtc->config->base.adjusted_mode;
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003365
3366 I915_WRITE(PIPESRC(crtc->pipe),
3367 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
3368 (adjusted_mode->crtc_vdisplay - 1));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003369 if (!crtc->config->pch_pfit.enabled &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03003370 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
3371 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003372 I915_WRITE(PF_CTL(crtc->pipe), 0);
3373 I915_WRITE(PF_WIN_POS(crtc->pipe), 0);
3374 I915_WRITE(PF_WIN_SZ(crtc->pipe), 0);
3375 }
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003376 crtc->config->pipe_src_w = adjusted_mode->crtc_hdisplay;
3377 crtc->config->pipe_src_h = adjusted_mode->crtc_vdisplay;
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003378}
3379
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003380static void intel_fdi_normal_train(struct drm_crtc *crtc)
3381{
3382 struct drm_device *dev = crtc->dev;
3383 struct drm_i915_private *dev_priv = dev->dev_private;
3384 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3385 int pipe = intel_crtc->pipe;
3386 u32 reg, temp;
3387
3388 /* enable normal train */
3389 reg = FDI_TX_CTL(pipe);
3390 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07003391 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07003392 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3393 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07003394 } else {
3395 temp &= ~FDI_LINK_TRAIN_NONE;
3396 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07003397 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003398 I915_WRITE(reg, temp);
3399
3400 reg = FDI_RX_CTL(pipe);
3401 temp = I915_READ(reg);
3402 if (HAS_PCH_CPT(dev)) {
3403 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3404 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3405 } else {
3406 temp &= ~FDI_LINK_TRAIN_NONE;
3407 temp |= FDI_LINK_TRAIN_NONE;
3408 }
3409 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3410
3411 /* wait one idle pattern time */
3412 POSTING_READ(reg);
3413 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07003414
3415 /* IVB wants error correction enabled */
3416 if (IS_IVYBRIDGE(dev))
3417 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3418 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003419}
3420
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003421/* The FDI link training functions for ILK/Ibexpeak. */
3422static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3423{
3424 struct drm_device *dev = crtc->dev;
3425 struct drm_i915_private *dev_priv = dev->dev_private;
3426 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3427 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003428 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003429
Ville Syrjälä1c8562f2014-04-25 22:12:07 +03003430 /* FDI needs bits from pipe first */
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003431 assert_pipe_enabled(dev_priv, pipe);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003432
Adam Jacksone1a44742010-06-25 15:32:14 -04003433 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3434 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003435 reg = FDI_RX_IMR(pipe);
3436 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003437 temp &= ~FDI_RX_SYMBOL_LOCK;
3438 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003439 I915_WRITE(reg, temp);
3440 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003441 udelay(150);
3442
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003443 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003444 reg = FDI_TX_CTL(pipe);
3445 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003446 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003447 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003448 temp &= ~FDI_LINK_TRAIN_NONE;
3449 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003450 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003451
Chris Wilson5eddb702010-09-11 13:48:45 +01003452 reg = FDI_RX_CTL(pipe);
3453 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003454 temp &= ~FDI_LINK_TRAIN_NONE;
3455 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003456 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3457
3458 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003459 udelay(150);
3460
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003461 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01003462 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3463 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3464 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003465
Chris Wilson5eddb702010-09-11 13:48:45 +01003466 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003467 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003468 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003469 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3470
3471 if ((temp & FDI_RX_BIT_LOCK)) {
3472 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01003473 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003474 break;
3475 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003476 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003477 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003478 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003479
3480 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003481 reg = FDI_TX_CTL(pipe);
3482 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003483 temp &= ~FDI_LINK_TRAIN_NONE;
3484 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003485 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003486
Chris Wilson5eddb702010-09-11 13:48:45 +01003487 reg = FDI_RX_CTL(pipe);
3488 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003489 temp &= ~FDI_LINK_TRAIN_NONE;
3490 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003491 I915_WRITE(reg, temp);
3492
3493 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003494 udelay(150);
3495
Chris Wilson5eddb702010-09-11 13:48:45 +01003496 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003497 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003498 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003499 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3500
3501 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003502 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003503 DRM_DEBUG_KMS("FDI train 2 done.\n");
3504 break;
3505 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003506 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003507 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003508 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003509
3510 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07003511
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003512}
3513
Akshay Joshi0206e352011-08-16 15:34:10 -04003514static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003515 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3516 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3517 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3518 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3519};
3520
3521/* The FDI link training functions for SNB/Cougarpoint. */
3522static void gen6_fdi_link_train(struct drm_crtc *crtc)
3523{
3524 struct drm_device *dev = crtc->dev;
3525 struct drm_i915_private *dev_priv = dev->dev_private;
3526 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3527 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05003528 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003529
Adam Jacksone1a44742010-06-25 15:32:14 -04003530 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3531 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003532 reg = FDI_RX_IMR(pipe);
3533 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003534 temp &= ~FDI_RX_SYMBOL_LOCK;
3535 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003536 I915_WRITE(reg, temp);
3537
3538 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003539 udelay(150);
3540
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003541 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003542 reg = FDI_TX_CTL(pipe);
3543 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003544 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003545 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003546 temp &= ~FDI_LINK_TRAIN_NONE;
3547 temp |= FDI_LINK_TRAIN_PATTERN_1;
3548 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3549 /* SNB-B */
3550 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01003551 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003552
Daniel Vetterd74cf322012-10-26 10:58:13 +02003553 I915_WRITE(FDI_RX_MISC(pipe),
3554 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3555
Chris Wilson5eddb702010-09-11 13:48:45 +01003556 reg = FDI_RX_CTL(pipe);
3557 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003558 if (HAS_PCH_CPT(dev)) {
3559 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3560 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3561 } else {
3562 temp &= ~FDI_LINK_TRAIN_NONE;
3563 temp |= FDI_LINK_TRAIN_PATTERN_1;
3564 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003565 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3566
3567 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003568 udelay(150);
3569
Akshay Joshi0206e352011-08-16 15:34:10 -04003570 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003571 reg = FDI_TX_CTL(pipe);
3572 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003573 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3574 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003575 I915_WRITE(reg, temp);
3576
3577 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003578 udelay(500);
3579
Sean Paulfa37d392012-03-02 12:53:39 -05003580 for (retry = 0; retry < 5; retry++) {
3581 reg = FDI_RX_IIR(pipe);
3582 temp = I915_READ(reg);
3583 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3584 if (temp & FDI_RX_BIT_LOCK) {
3585 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3586 DRM_DEBUG_KMS("FDI train 1 done.\n");
3587 break;
3588 }
3589 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003590 }
Sean Paulfa37d392012-03-02 12:53:39 -05003591 if (retry < 5)
3592 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003593 }
3594 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003595 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003596
3597 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003598 reg = FDI_TX_CTL(pipe);
3599 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003600 temp &= ~FDI_LINK_TRAIN_NONE;
3601 temp |= FDI_LINK_TRAIN_PATTERN_2;
3602 if (IS_GEN6(dev)) {
3603 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3604 /* SNB-B */
3605 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3606 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003607 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003608
Chris Wilson5eddb702010-09-11 13:48:45 +01003609 reg = FDI_RX_CTL(pipe);
3610 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003611 if (HAS_PCH_CPT(dev)) {
3612 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3613 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3614 } else {
3615 temp &= ~FDI_LINK_TRAIN_NONE;
3616 temp |= FDI_LINK_TRAIN_PATTERN_2;
3617 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003618 I915_WRITE(reg, temp);
3619
3620 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003621 udelay(150);
3622
Akshay Joshi0206e352011-08-16 15:34:10 -04003623 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003624 reg = FDI_TX_CTL(pipe);
3625 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003626 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3627 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003628 I915_WRITE(reg, temp);
3629
3630 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003631 udelay(500);
3632
Sean Paulfa37d392012-03-02 12:53:39 -05003633 for (retry = 0; retry < 5; retry++) {
3634 reg = FDI_RX_IIR(pipe);
3635 temp = I915_READ(reg);
3636 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3637 if (temp & FDI_RX_SYMBOL_LOCK) {
3638 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3639 DRM_DEBUG_KMS("FDI train 2 done.\n");
3640 break;
3641 }
3642 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003643 }
Sean Paulfa37d392012-03-02 12:53:39 -05003644 if (retry < 5)
3645 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003646 }
3647 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003648 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003649
3650 DRM_DEBUG_KMS("FDI train done.\n");
3651}
3652
Jesse Barnes357555c2011-04-28 15:09:55 -07003653/* Manual link training for Ivy Bridge A0 parts */
3654static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3655{
3656 struct drm_device *dev = crtc->dev;
3657 struct drm_i915_private *dev_priv = dev->dev_private;
3658 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3659 int pipe = intel_crtc->pipe;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003660 u32 reg, temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07003661
3662 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3663 for train result */
3664 reg = FDI_RX_IMR(pipe);
3665 temp = I915_READ(reg);
3666 temp &= ~FDI_RX_SYMBOL_LOCK;
3667 temp &= ~FDI_RX_BIT_LOCK;
3668 I915_WRITE(reg, temp);
3669
3670 POSTING_READ(reg);
3671 udelay(150);
3672
Daniel Vetter01a415f2012-10-27 15:58:40 +02003673 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3674 I915_READ(FDI_RX_IIR(pipe)));
3675
Jesse Barnes139ccd32013-08-19 11:04:55 -07003676 /* Try each vswing and preemphasis setting twice before moving on */
3677 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3678 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07003679 reg = FDI_TX_CTL(pipe);
3680 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003681 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3682 temp &= ~FDI_TX_ENABLE;
3683 I915_WRITE(reg, temp);
3684
3685 reg = FDI_RX_CTL(pipe);
3686 temp = I915_READ(reg);
3687 temp &= ~FDI_LINK_TRAIN_AUTO;
3688 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3689 temp &= ~FDI_RX_ENABLE;
3690 I915_WRITE(reg, temp);
3691
3692 /* enable CPU FDI TX and PCH FDI RX */
3693 reg = FDI_TX_CTL(pipe);
3694 temp = I915_READ(reg);
3695 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003696 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003697 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07003698 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003699 temp |= snb_b_fdi_train_param[j/2];
3700 temp |= FDI_COMPOSITE_SYNC;
3701 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3702
3703 I915_WRITE(FDI_RX_MISC(pipe),
3704 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3705
3706 reg = FDI_RX_CTL(pipe);
3707 temp = I915_READ(reg);
3708 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3709 temp |= FDI_COMPOSITE_SYNC;
3710 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3711
3712 POSTING_READ(reg);
3713 udelay(1); /* should be 0.5us */
3714
3715 for (i = 0; i < 4; i++) {
3716 reg = FDI_RX_IIR(pipe);
3717 temp = I915_READ(reg);
3718 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3719
3720 if (temp & FDI_RX_BIT_LOCK ||
3721 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3722 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3723 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3724 i);
3725 break;
3726 }
3727 udelay(1); /* should be 0.5us */
3728 }
3729 if (i == 4) {
3730 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3731 continue;
3732 }
3733
3734 /* Train 2 */
3735 reg = FDI_TX_CTL(pipe);
3736 temp = I915_READ(reg);
3737 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3738 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3739 I915_WRITE(reg, temp);
3740
3741 reg = FDI_RX_CTL(pipe);
3742 temp = I915_READ(reg);
3743 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3744 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07003745 I915_WRITE(reg, temp);
3746
3747 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003748 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003749
Jesse Barnes139ccd32013-08-19 11:04:55 -07003750 for (i = 0; i < 4; i++) {
3751 reg = FDI_RX_IIR(pipe);
3752 temp = I915_READ(reg);
3753 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07003754
Jesse Barnes139ccd32013-08-19 11:04:55 -07003755 if (temp & FDI_RX_SYMBOL_LOCK ||
3756 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3757 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3758 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3759 i);
3760 goto train_done;
3761 }
3762 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003763 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07003764 if (i == 4)
3765 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07003766 }
Jesse Barnes357555c2011-04-28 15:09:55 -07003767
Jesse Barnes139ccd32013-08-19 11:04:55 -07003768train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07003769 DRM_DEBUG_KMS("FDI train done.\n");
3770}
3771
Daniel Vetter88cefb62012-08-12 19:27:14 +02003772static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07003773{
Daniel Vetter88cefb62012-08-12 19:27:14 +02003774 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003775 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003776 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003777 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003778
Jesse Barnesc64e3112010-09-10 11:27:03 -07003779
Jesse Barnes0e23b992010-09-10 11:10:00 -07003780 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01003781 reg = FDI_RX_CTL(pipe);
3782 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003783 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003784 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003785 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01003786 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3787
3788 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003789 udelay(200);
3790
3791 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003792 temp = I915_READ(reg);
3793 I915_WRITE(reg, temp | FDI_PCDCLK);
3794
3795 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003796 udelay(200);
3797
Paulo Zanoni20749732012-11-23 15:30:38 -02003798 /* Enable CPU FDI TX PLL, always on for Ironlake */
3799 reg = FDI_TX_CTL(pipe);
3800 temp = I915_READ(reg);
3801 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3802 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01003803
Paulo Zanoni20749732012-11-23 15:30:38 -02003804 POSTING_READ(reg);
3805 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003806 }
3807}
3808
Daniel Vetter88cefb62012-08-12 19:27:14 +02003809static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3810{
3811 struct drm_device *dev = intel_crtc->base.dev;
3812 struct drm_i915_private *dev_priv = dev->dev_private;
3813 int pipe = intel_crtc->pipe;
3814 u32 reg, temp;
3815
3816 /* Switch from PCDclk to Rawclk */
3817 reg = FDI_RX_CTL(pipe);
3818 temp = I915_READ(reg);
3819 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3820
3821 /* Disable CPU FDI TX PLL */
3822 reg = FDI_TX_CTL(pipe);
3823 temp = I915_READ(reg);
3824 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3825
3826 POSTING_READ(reg);
3827 udelay(100);
3828
3829 reg = FDI_RX_CTL(pipe);
3830 temp = I915_READ(reg);
3831 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3832
3833 /* Wait for the clocks to turn off. */
3834 POSTING_READ(reg);
3835 udelay(100);
3836}
3837
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003838static void ironlake_fdi_disable(struct drm_crtc *crtc)
3839{
3840 struct drm_device *dev = crtc->dev;
3841 struct drm_i915_private *dev_priv = dev->dev_private;
3842 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3843 int pipe = intel_crtc->pipe;
3844 u32 reg, temp;
3845
3846 /* disable CPU FDI tx and PCH FDI rx */
3847 reg = FDI_TX_CTL(pipe);
3848 temp = I915_READ(reg);
3849 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3850 POSTING_READ(reg);
3851
3852 reg = FDI_RX_CTL(pipe);
3853 temp = I915_READ(reg);
3854 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003855 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003856 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3857
3858 POSTING_READ(reg);
3859 udelay(100);
3860
3861 /* Ironlake workaround, disable clock pointer after downing FDI */
Robin Schroereba905b2014-05-18 02:24:50 +02003862 if (HAS_PCH_IBX(dev))
Jesse Barnes6f06ce12011-01-04 15:09:38 -08003863 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003864
3865 /* still set train pattern 1 */
3866 reg = FDI_TX_CTL(pipe);
3867 temp = I915_READ(reg);
3868 temp &= ~FDI_LINK_TRAIN_NONE;
3869 temp |= FDI_LINK_TRAIN_PATTERN_1;
3870 I915_WRITE(reg, temp);
3871
3872 reg = FDI_RX_CTL(pipe);
3873 temp = I915_READ(reg);
3874 if (HAS_PCH_CPT(dev)) {
3875 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3876 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3877 } else {
3878 temp &= ~FDI_LINK_TRAIN_NONE;
3879 temp |= FDI_LINK_TRAIN_PATTERN_1;
3880 }
3881 /* BPC in FDI rx is consistent with that in PIPECONF */
3882 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003883 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003884 I915_WRITE(reg, temp);
3885
3886 POSTING_READ(reg);
3887 udelay(100);
3888}
3889
Chris Wilson5dce5b932014-01-20 10:17:36 +00003890bool intel_has_pending_fb_unpin(struct drm_device *dev)
3891{
3892 struct intel_crtc *crtc;
3893
3894 /* Note that we don't need to be called with mode_config.lock here
3895 * as our list of CRTC objects is static for the lifetime of the
3896 * device and so cannot disappear as we iterate. Similarly, we can
3897 * happily treat the predicates as racy, atomic checks as userspace
3898 * cannot claim and pin a new fb without at least acquring the
3899 * struct_mutex and so serialising with us.
3900 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003901 for_each_intel_crtc(dev, crtc) {
Chris Wilson5dce5b932014-01-20 10:17:36 +00003902 if (atomic_read(&crtc->unpin_work_count) == 0)
3903 continue;
3904
3905 if (crtc->unpin_work)
3906 intel_wait_for_vblank(dev, crtc->pipe);
3907
3908 return true;
3909 }
3910
3911 return false;
3912}
3913
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003914static void page_flip_completed(struct intel_crtc *intel_crtc)
3915{
3916 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
3917 struct intel_unpin_work *work = intel_crtc->unpin_work;
3918
3919 /* ensure that the unpin work is consistent wrt ->pending. */
3920 smp_rmb();
3921 intel_crtc->unpin_work = NULL;
3922
3923 if (work->event)
3924 drm_send_vblank_event(intel_crtc->base.dev,
3925 intel_crtc->pipe,
3926 work->event);
3927
3928 drm_crtc_vblank_put(&intel_crtc->base);
3929
3930 wake_up_all(&dev_priv->pending_flip_queue);
3931 queue_work(dev_priv->wq, &work->work);
3932
3933 trace_i915_flip_complete(intel_crtc->plane,
3934 work->pending_flip_obj);
3935}
3936
Ville Syrjälä46a55d32014-05-21 14:04:46 +03003937void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003938{
Chris Wilson0f911282012-04-17 10:05:38 +01003939 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01003940 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003941
Daniel Vetter2c10d572012-12-20 21:24:07 +01003942 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
Chris Wilson9c787942014-09-05 07:13:25 +01003943 if (WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3944 !intel_crtc_has_pending_flip(crtc),
3945 60*HZ) == 0)) {
3946 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter2c10d572012-12-20 21:24:07 +01003947
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003948 spin_lock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003949 if (intel_crtc->unpin_work) {
3950 WARN_ONCE(1, "Removing stuck page flip\n");
3951 page_flip_completed(intel_crtc);
3952 }
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003953 spin_unlock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003954 }
Chris Wilson5bb61642012-09-27 21:25:58 +01003955
Chris Wilson975d5682014-08-20 13:13:34 +01003956 if (crtc->primary->fb) {
3957 mutex_lock(&dev->struct_mutex);
3958 intel_finish_fb(crtc->primary->fb);
3959 mutex_unlock(&dev->struct_mutex);
3960 }
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003961}
3962
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003963/* Program iCLKIP clock to the desired frequency */
3964static void lpt_program_iclkip(struct drm_crtc *crtc)
3965{
3966 struct drm_device *dev = crtc->dev;
3967 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003968 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003969 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3970 u32 temp;
3971
Daniel Vetter09153002012-12-12 14:06:44 +01003972 mutex_lock(&dev_priv->dpio_lock);
3973
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003974 /* It is necessary to ungate the pixclk gate prior to programming
3975 * the divisors, and gate it back when it is done.
3976 */
3977 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3978
3979 /* Disable SSCCTL */
3980 intel_sbi_write(dev_priv, SBI_SSCCTL6,
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003981 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
3982 SBI_SSCCTL_DISABLE,
3983 SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003984
3985 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003986 if (clock == 20000) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003987 auxdiv = 1;
3988 divsel = 0x41;
3989 phaseinc = 0x20;
3990 } else {
3991 /* The iCLK virtual clock root frequency is in MHz,
Damien Lespiau241bfc32013-09-25 16:45:37 +01003992 * but the adjusted_mode->crtc_clock in in KHz. To get the
3993 * divisors, it is necessary to divide one by another, so we
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003994 * convert the virtual clock precision to KHz here for higher
3995 * precision.
3996 */
3997 u32 iclk_virtual_root_freq = 172800 * 1000;
3998 u32 iclk_pi_range = 64;
3999 u32 desired_divisor, msb_divisor_value, pi_value;
4000
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03004001 desired_divisor = (iclk_virtual_root_freq / clock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004002 msb_divisor_value = desired_divisor / iclk_pi_range;
4003 pi_value = desired_divisor % iclk_pi_range;
4004
4005 auxdiv = 0;
4006 divsel = msb_divisor_value - 2;
4007 phaseinc = pi_value;
4008 }
4009
4010 /* This should not happen with any sane values */
4011 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
4012 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
4013 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
4014 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
4015
4016 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 +03004017 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004018 auxdiv,
4019 divsel,
4020 phasedir,
4021 phaseinc);
4022
4023 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004024 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004025 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
4026 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
4027 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
4028 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
4029 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
4030 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004031 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004032
4033 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004034 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004035 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
4036 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004037 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004038
4039 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004040 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004041 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004042 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004043
4044 /* Wait for initialization time */
4045 udelay(24);
4046
4047 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
Daniel Vetter09153002012-12-12 14:06:44 +01004048
4049 mutex_unlock(&dev_priv->dpio_lock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004050}
4051
Daniel Vetter275f01b22013-05-03 11:49:47 +02004052static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
4053 enum pipe pch_transcoder)
4054{
4055 struct drm_device *dev = crtc->base.dev;
4056 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004057 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Daniel Vetter275f01b22013-05-03 11:49:47 +02004058
4059 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
4060 I915_READ(HTOTAL(cpu_transcoder)));
4061 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
4062 I915_READ(HBLANK(cpu_transcoder)));
4063 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
4064 I915_READ(HSYNC(cpu_transcoder)));
4065
4066 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
4067 I915_READ(VTOTAL(cpu_transcoder)));
4068 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
4069 I915_READ(VBLANK(cpu_transcoder)));
4070 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
4071 I915_READ(VSYNC(cpu_transcoder)));
4072 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
4073 I915_READ(VSYNCSHIFT(cpu_transcoder)));
4074}
4075
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004076static void cpt_set_fdi_bc_bifurcation(struct drm_device *dev, bool enable)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004077{
4078 struct drm_i915_private *dev_priv = dev->dev_private;
4079 uint32_t temp;
4080
4081 temp = I915_READ(SOUTH_CHICKEN1);
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004082 if (!!(temp & FDI_BC_BIFURCATION_SELECT) == enable)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004083 return;
4084
4085 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
4086 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
4087
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004088 temp &= ~FDI_BC_BIFURCATION_SELECT;
4089 if (enable)
4090 temp |= FDI_BC_BIFURCATION_SELECT;
4091
4092 DRM_DEBUG_KMS("%sabling fdi C rx\n", enable ? "en" : "dis");
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004093 I915_WRITE(SOUTH_CHICKEN1, temp);
4094 POSTING_READ(SOUTH_CHICKEN1);
4095}
4096
4097static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
4098{
4099 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004100
4101 switch (intel_crtc->pipe) {
4102 case PIPE_A:
4103 break;
4104 case PIPE_B:
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004105 if (intel_crtc->config->fdi_lanes > 2)
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004106 cpt_set_fdi_bc_bifurcation(dev, false);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004107 else
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004108 cpt_set_fdi_bc_bifurcation(dev, true);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004109
4110 break;
4111 case PIPE_C:
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004112 cpt_set_fdi_bc_bifurcation(dev, true);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004113
4114 break;
4115 default:
4116 BUG();
4117 }
4118}
4119
Jesse Barnesf67a5592011-01-05 10:31:48 -08004120/*
4121 * Enable PCH resources required for PCH ports:
4122 * - PCH PLLs
4123 * - FDI training & RX/TX
4124 * - update transcoder timings
4125 * - DP transcoding bits
4126 * - transcoder
4127 */
4128static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08004129{
4130 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004131 struct drm_i915_private *dev_priv = dev->dev_private;
4132 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4133 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004134 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004135
Daniel Vetterab9412b2013-05-03 11:49:46 +02004136 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01004137
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004138 if (IS_IVYBRIDGE(dev))
4139 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
4140
Daniel Vettercd986ab2012-10-26 10:58:12 +02004141 /* Write the TU size bits before fdi link training, so that error
4142 * detection works. */
4143 I915_WRITE(FDI_RX_TUSIZE1(pipe),
4144 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
4145
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004146 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07004147 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004148
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004149 /* We need to program the right clock selection before writing the pixel
4150 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02004151 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004152 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07004153
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004154 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02004155 temp |= TRANS_DPLL_ENABLE(pipe);
4156 sel = TRANS_DPLLB_SEL(pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004157 if (intel_crtc->config->shared_dpll == DPLL_ID_PCH_PLL_B)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004158 temp |= sel;
4159 else
4160 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004161 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004162 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004163
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004164 /* XXX: pch pll's can be enabled any time before we enable the PCH
4165 * transcoder, and we actually should do this to not upset any PCH
4166 * transcoder that already use the clock when we share it.
4167 *
4168 * Note that enable_shared_dpll tries to do the right thing, but
4169 * get_shared_dpll unconditionally resets the pll - we need that to have
4170 * the right LVDS enable sequence. */
Daniel Vetter85b38942014-04-24 23:55:14 +02004171 intel_enable_shared_dpll(intel_crtc);
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004172
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08004173 /* set transcoder timing, panel must allow it */
4174 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02004175 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004176
Paulo Zanoni303b81e2012-10-31 18:12:23 -02004177 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08004178
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004179 /* For PCH DP, enable TRANS_DP_CTL */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004180 if (HAS_PCH_CPT(dev) && intel_crtc->config->has_dp_encoder) {
Daniel Vetterdfd07d72012-12-17 11:21:38 +01004181 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01004182 reg = TRANS_DP_CTL(pipe);
4183 temp = I915_READ(reg);
4184 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08004185 TRANS_DP_SYNC_MASK |
4186 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01004187 temp |= (TRANS_DP_OUTPUT_ENABLE |
4188 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07004189 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004190
4191 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01004192 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004193 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01004194 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004195
4196 switch (intel_trans_dp_port_sel(crtc)) {
4197 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01004198 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004199 break;
4200 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01004201 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004202 break;
4203 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01004204 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004205 break;
4206 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02004207 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004208 }
4209
Chris Wilson5eddb702010-09-11 13:48:45 +01004210 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004211 }
4212
Paulo Zanonib8a4f402012-10-31 18:12:42 -02004213 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004214}
4215
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004216static void lpt_pch_enable(struct drm_crtc *crtc)
4217{
4218 struct drm_device *dev = crtc->dev;
4219 struct drm_i915_private *dev_priv = dev->dev_private;
4220 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004221 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004222
Daniel Vetterab9412b2013-05-03 11:49:46 +02004223 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004224
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02004225 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004226
Paulo Zanoni0540e482012-10-31 18:12:40 -02004227 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02004228 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004229
Paulo Zanoni937bb612012-10-31 18:12:47 -02004230 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004231}
4232
Daniel Vetter716c2e52014-06-25 22:02:02 +03004233void intel_put_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004234{
Daniel Vettere2b78262013-06-07 23:10:03 +02004235 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004236
4237 if (pll == NULL)
4238 return;
4239
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02004240 if (!(pll->config.crtc_mask & (1 << crtc->pipe))) {
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +02004241 WARN(1, "bad %s crtc mask\n", pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004242 return;
4243 }
4244
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02004245 pll->config.crtc_mask &= ~(1 << crtc->pipe);
4246 if (pll->config.crtc_mask == 0) {
Daniel Vetterf4a091c2013-06-10 17:28:22 +02004247 WARN_ON(pll->on);
4248 WARN_ON(pll->active);
4249 }
4250
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004251 crtc->config->shared_dpll = DPLL_ID_PRIVATE;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004252}
4253
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004254struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc,
4255 struct intel_crtc_state *crtc_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004256{
Daniel Vettere2b78262013-06-07 23:10:03 +02004257 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004258 struct intel_shared_dpll *pll;
Daniel Vettere2b78262013-06-07 23:10:03 +02004259 enum intel_dpll_id i;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004260
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004261 if (HAS_PCH_IBX(dev_priv->dev)) {
4262 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
Daniel Vetterd94ab062013-07-04 12:01:16 +02004263 i = (enum intel_dpll_id) crtc->pipe;
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004264 pll = &dev_priv->shared_dplls[i];
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004265
Daniel Vetter46edb022013-06-05 13:34:12 +02004266 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
4267 crtc->base.base.id, pll->name);
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004268
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004269 WARN_ON(pll->new_config->crtc_mask);
Daniel Vetterf2a69f42014-05-20 15:19:19 +02004270
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004271 goto found;
4272 }
4273
Satheeshakrishna Mbcddf612014-08-22 09:49:10 +05304274 if (IS_BROXTON(dev_priv->dev)) {
4275 /* PLL is attached to port in bxt */
4276 struct intel_encoder *encoder;
4277 struct intel_digital_port *intel_dig_port;
4278
4279 encoder = intel_ddi_get_crtc_new_encoder(crtc_state);
4280 if (WARN_ON(!encoder))
4281 return NULL;
4282
4283 intel_dig_port = enc_to_dig_port(&encoder->base);
4284 /* 1:1 mapping between ports and PLLs */
4285 i = (enum intel_dpll_id)intel_dig_port->port;
4286 pll = &dev_priv->shared_dplls[i];
4287 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
4288 crtc->base.base.id, pll->name);
4289 WARN_ON(pll->new_config->crtc_mask);
4290
4291 goto found;
4292 }
4293
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004294 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4295 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004296
4297 /* Only want to check enabled timings first */
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004298 if (pll->new_config->crtc_mask == 0)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004299 continue;
4300
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004301 if (memcmp(&crtc_state->dpll_hw_state,
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004302 &pll->new_config->hw_state,
4303 sizeof(pll->new_config->hw_state)) == 0) {
4304 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (crtc mask 0x%08x, ative %d)\n",
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +02004305 crtc->base.base.id, pll->name,
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004306 pll->new_config->crtc_mask,
4307 pll->active);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004308 goto found;
4309 }
4310 }
4311
4312 /* Ok no matching timings, maybe there's a free one? */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004313 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4314 pll = &dev_priv->shared_dplls[i];
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004315 if (pll->new_config->crtc_mask == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02004316 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
4317 crtc->base.base.id, pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004318 goto found;
4319 }
4320 }
4321
4322 return NULL;
4323
4324found:
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004325 if (pll->new_config->crtc_mask == 0)
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004326 pll->new_config->hw_state = crtc_state->dpll_hw_state;
Daniel Vetterf2a69f42014-05-20 15:19:19 +02004327
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004328 crtc_state->shared_dpll = i;
Daniel Vetter46edb022013-06-05 13:34:12 +02004329 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
4330 pipe_name(crtc->pipe));
Daniel Vetter66e985c2013-06-05 13:34:20 +02004331
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004332 pll->new_config->crtc_mask |= 1 << crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004333
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004334 return pll;
4335}
4336
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004337/**
4338 * intel_shared_dpll_start_config - start a new PLL staged config
4339 * @dev_priv: DRM device
4340 * @clear_pipes: mask of pipes that will have their PLLs freed
4341 *
4342 * Starts a new PLL staged config, copying the current config but
4343 * releasing the references of pipes specified in clear_pipes.
4344 */
4345static int intel_shared_dpll_start_config(struct drm_i915_private *dev_priv,
4346 unsigned clear_pipes)
4347{
4348 struct intel_shared_dpll *pll;
4349 enum intel_dpll_id i;
4350
4351 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4352 pll = &dev_priv->shared_dplls[i];
4353
4354 pll->new_config = kmemdup(&pll->config, sizeof pll->config,
4355 GFP_KERNEL);
4356 if (!pll->new_config)
4357 goto cleanup;
4358
4359 pll->new_config->crtc_mask &= ~clear_pipes;
4360 }
4361
4362 return 0;
4363
4364cleanup:
4365 while (--i >= 0) {
4366 pll = &dev_priv->shared_dplls[i];
Ander Conselvan de Oliveiraf354d732014-11-07 14:07:41 +02004367 kfree(pll->new_config);
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004368 pll->new_config = NULL;
4369 }
4370
4371 return -ENOMEM;
4372}
4373
4374static void intel_shared_dpll_commit(struct drm_i915_private *dev_priv)
4375{
4376 struct intel_shared_dpll *pll;
4377 enum intel_dpll_id i;
4378
4379 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4380 pll = &dev_priv->shared_dplls[i];
4381
4382 WARN_ON(pll->new_config == &pll->config);
4383
4384 pll->config = *pll->new_config;
4385 kfree(pll->new_config);
4386 pll->new_config = NULL;
4387 }
4388}
4389
4390static void intel_shared_dpll_abort_config(struct drm_i915_private *dev_priv)
4391{
4392 struct intel_shared_dpll *pll;
4393 enum intel_dpll_id i;
4394
4395 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4396 pll = &dev_priv->shared_dplls[i];
4397
4398 WARN_ON(pll->new_config == &pll->config);
4399
4400 kfree(pll->new_config);
4401 pll->new_config = NULL;
4402 }
4403}
4404
Daniel Vettera1520312013-05-03 11:49:50 +02004405static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07004406{
4407 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01004408 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07004409 u32 temp;
4410
4411 temp = I915_READ(dslreg);
4412 udelay(500);
4413 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07004414 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03004415 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07004416 }
4417}
4418
Chandra Kondurua1b22782015-04-07 15:28:45 -07004419/**
4420 * skl_update_scaler_users - Stages update to crtc's scaler state
4421 * @intel_crtc: crtc
4422 * @crtc_state: crtc_state
4423 * @plane: plane (NULL indicates crtc is requesting update)
4424 * @plane_state: plane's state
4425 * @force_detach: request unconditional detachment of scaler
4426 *
4427 * This function updates scaler state for requested plane or crtc.
4428 * To request scaler usage update for a plane, caller shall pass plane pointer.
4429 * To request scaler usage update for crtc, caller shall pass plane pointer
4430 * as NULL.
4431 *
4432 * Return
4433 * 0 - scaler_usage updated successfully
4434 * error - requested scaling cannot be supported or other error condition
4435 */
4436int
4437skl_update_scaler_users(
4438 struct intel_crtc *intel_crtc, struct intel_crtc_state *crtc_state,
4439 struct intel_plane *intel_plane, struct intel_plane_state *plane_state,
4440 int force_detach)
4441{
4442 int need_scaling;
4443 int idx;
4444 int src_w, src_h, dst_w, dst_h;
4445 int *scaler_id;
4446 struct drm_framebuffer *fb;
4447 struct intel_crtc_scaler_state *scaler_state;
Chandra Konduru6156a452015-04-27 13:48:39 -07004448 unsigned int rotation;
Chandra Kondurua1b22782015-04-07 15:28:45 -07004449
4450 if (!intel_crtc || !crtc_state)
4451 return 0;
4452
4453 scaler_state = &crtc_state->scaler_state;
4454
4455 idx = intel_plane ? drm_plane_index(&intel_plane->base) : SKL_CRTC_INDEX;
4456 fb = intel_plane ? plane_state->base.fb : NULL;
4457
4458 if (intel_plane) {
4459 src_w = drm_rect_width(&plane_state->src) >> 16;
4460 src_h = drm_rect_height(&plane_state->src) >> 16;
4461 dst_w = drm_rect_width(&plane_state->dst);
4462 dst_h = drm_rect_height(&plane_state->dst);
4463 scaler_id = &plane_state->scaler_id;
Chandra Konduru6156a452015-04-27 13:48:39 -07004464 rotation = plane_state->base.rotation;
Chandra Kondurua1b22782015-04-07 15:28:45 -07004465 } else {
4466 struct drm_display_mode *adjusted_mode =
4467 &crtc_state->base.adjusted_mode;
4468 src_w = crtc_state->pipe_src_w;
4469 src_h = crtc_state->pipe_src_h;
4470 dst_w = adjusted_mode->hdisplay;
4471 dst_h = adjusted_mode->vdisplay;
4472 scaler_id = &scaler_state->scaler_id;
Chandra Konduru6156a452015-04-27 13:48:39 -07004473 rotation = DRM_ROTATE_0;
Chandra Kondurua1b22782015-04-07 15:28:45 -07004474 }
Chandra Konduru6156a452015-04-27 13:48:39 -07004475
4476 need_scaling = intel_rotation_90_or_270(rotation) ?
4477 (src_h != dst_w || src_w != dst_h):
4478 (src_w != dst_w || src_h != dst_h);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004479
4480 /*
4481 * if plane is being disabled or scaler is no more required or force detach
4482 * - free scaler binded to this plane/crtc
4483 * - in order to do this, update crtc->scaler_usage
4484 *
4485 * Here scaler state in crtc_state is set free so that
4486 * scaler can be assigned to other user. Actual register
4487 * update to free the scaler is done in plane/panel-fit programming.
4488 * For this purpose crtc/plane_state->scaler_id isn't reset here.
4489 */
4490 if (force_detach || !need_scaling || (intel_plane &&
4491 (!fb || !plane_state->visible))) {
4492 if (*scaler_id >= 0) {
4493 scaler_state->scaler_users &= ~(1 << idx);
4494 scaler_state->scalers[*scaler_id].in_use = 0;
4495
4496 DRM_DEBUG_KMS("Staged freeing scaler id %d.%d from %s:%d "
4497 "crtc_state = %p scaler_users = 0x%x\n",
4498 intel_crtc->pipe, *scaler_id, intel_plane ? "PLANE" : "CRTC",
4499 intel_plane ? intel_plane->base.base.id :
4500 intel_crtc->base.base.id, crtc_state,
4501 scaler_state->scaler_users);
4502 *scaler_id = -1;
4503 }
4504 return 0;
4505 }
4506
4507 /* range checks */
4508 if (src_w < SKL_MIN_SRC_W || src_h < SKL_MIN_SRC_H ||
4509 dst_w < SKL_MIN_DST_W || dst_h < SKL_MIN_DST_H ||
4510
4511 src_w > SKL_MAX_SRC_W || src_h > SKL_MAX_SRC_H ||
4512 dst_w > SKL_MAX_DST_W || dst_h > SKL_MAX_DST_H) {
4513 DRM_DEBUG_KMS("%s:%d scaler_user index %u.%u: src %ux%u dst %ux%u "
4514 "size is out of scaler range\n",
4515 intel_plane ? "PLANE" : "CRTC",
4516 intel_plane ? intel_plane->base.base.id : intel_crtc->base.base.id,
4517 intel_crtc->pipe, idx, src_w, src_h, dst_w, dst_h);
4518 return -EINVAL;
4519 }
4520
4521 /* check colorkey */
4522 if (intel_plane && intel_plane->ckey.flags != I915_SET_COLORKEY_NONE) {
4523 DRM_DEBUG_KMS("PLANE:%d scaling with color key not allowed",
4524 intel_plane->base.base.id);
4525 return -EINVAL;
4526 }
4527
4528 /* Check src format */
4529 if (intel_plane) {
4530 switch (fb->pixel_format) {
4531 case DRM_FORMAT_RGB565:
4532 case DRM_FORMAT_XBGR8888:
4533 case DRM_FORMAT_XRGB8888:
4534 case DRM_FORMAT_ABGR8888:
4535 case DRM_FORMAT_ARGB8888:
4536 case DRM_FORMAT_XRGB2101010:
4537 case DRM_FORMAT_ARGB2101010:
4538 case DRM_FORMAT_XBGR2101010:
4539 case DRM_FORMAT_ABGR2101010:
4540 case DRM_FORMAT_YUYV:
4541 case DRM_FORMAT_YVYU:
4542 case DRM_FORMAT_UYVY:
4543 case DRM_FORMAT_VYUY:
4544 break;
4545 default:
4546 DRM_DEBUG_KMS("PLANE:%d FB:%d unsupported scaling format 0x%x\n",
4547 intel_plane->base.base.id, fb->base.id, fb->pixel_format);
4548 return -EINVAL;
4549 }
4550 }
4551
4552 /* mark this plane as a scaler user in crtc_state */
4553 scaler_state->scaler_users |= (1 << idx);
4554 DRM_DEBUG_KMS("%s:%d staged scaling request for %ux%u->%ux%u "
4555 "crtc_state = %p scaler_users = 0x%x\n",
4556 intel_plane ? "PLANE" : "CRTC",
4557 intel_plane ? intel_plane->base.base.id : intel_crtc->base.base.id,
4558 src_w, src_h, dst_w, dst_h, crtc_state, scaler_state->scaler_users);
4559 return 0;
4560}
4561
4562static void skylake_pfit_update(struct intel_crtc *crtc, int enable)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004563{
4564 struct drm_device *dev = crtc->base.dev;
4565 struct drm_i915_private *dev_priv = dev->dev_private;
4566 int pipe = crtc->pipe;
Chandra Kondurua1b22782015-04-07 15:28:45 -07004567 struct intel_crtc_scaler_state *scaler_state =
4568 &crtc->config->scaler_state;
4569
4570 DRM_DEBUG_KMS("for crtc_state = %p\n", crtc->config);
4571
4572 /* To update pfit, first update scaler state */
4573 skl_update_scaler_users(crtc, crtc->config, NULL, NULL, !enable);
4574 intel_atomic_setup_scalers(crtc->base.dev, crtc, crtc->config);
4575 skl_detach_scalers(crtc);
4576 if (!enable)
4577 return;
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004578
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004579 if (crtc->config->pch_pfit.enabled) {
Chandra Kondurua1b22782015-04-07 15:28:45 -07004580 int id;
4581
4582 if (WARN_ON(crtc->config->scaler_state.scaler_id < 0)) {
4583 DRM_ERROR("Requesting pfit without getting a scaler first\n");
4584 return;
4585 }
4586
4587 id = scaler_state->scaler_id;
4588 I915_WRITE(SKL_PS_CTRL(pipe, id), PS_SCALER_EN |
4589 PS_FILTER_MEDIUM | scaler_state->scalers[id].mode);
4590 I915_WRITE(SKL_PS_WIN_POS(pipe, id), crtc->config->pch_pfit.pos);
4591 I915_WRITE(SKL_PS_WIN_SZ(pipe, id), crtc->config->pch_pfit.size);
4592
4593 DRM_DEBUG_KMS("for crtc_state = %p scaler_id = %d\n", crtc->config, id);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004594 }
4595}
4596
Jesse Barnesb074cec2013-04-25 12:55:02 -07004597static void ironlake_pfit_enable(struct intel_crtc *crtc)
4598{
4599 struct drm_device *dev = crtc->base.dev;
4600 struct drm_i915_private *dev_priv = dev->dev_private;
4601 int pipe = crtc->pipe;
4602
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004603 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07004604 /* Force use of hard-coded filter coefficients
4605 * as some pre-programmed values are broken,
4606 * e.g. x201.
4607 */
4608 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
4609 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4610 PF_PIPE_SEL_IVB(pipe));
4611 else
4612 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004613 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4614 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08004615 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004616}
4617
Matt Roper4a3b8762014-12-23 10:41:51 -08004618static void intel_enable_sprite_planes(struct drm_crtc *crtc)
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004619{
4620 struct drm_device *dev = crtc->dev;
4621 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07004622 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004623 struct intel_plane *intel_plane;
4624
Matt Roperaf2b6532014-04-01 15:22:32 -07004625 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
4626 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004627 if (intel_plane->pipe == pipe)
4628 intel_plane_restore(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07004629 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03004630}
4631
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004632void hsw_enable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004633{
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004634 struct drm_device *dev = crtc->base.dev;
4635 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid77e4532013-09-24 13:52:55 -03004636
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004637 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004638 return;
4639
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004640 /* We can only enable IPS after we enable a plane and wait for a vblank */
4641 intel_wait_for_vblank(dev, crtc->pipe);
4642
Paulo Zanonid77e4532013-09-24 13:52:55 -03004643 assert_plane_enabled(dev_priv, crtc->plane);
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004644 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004645 mutex_lock(&dev_priv->rps.hw_lock);
4646 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4647 mutex_unlock(&dev_priv->rps.hw_lock);
4648 /* Quoting Art Runyan: "its not safe to expect any particular
4649 * value in IPS_CTL bit 31 after enabling IPS through the
Jesse Barnese59150d2014-01-07 13:30:45 -08004650 * mailbox." Moreover, the mailbox may return a bogus state,
4651 * so we need to just enable it and continue on.
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004652 */
4653 } else {
4654 I915_WRITE(IPS_CTL, IPS_ENABLE);
4655 /* The bit only becomes 1 in the next vblank, so this wait here
4656 * is essentially intel_wait_for_vblank. If we don't have this
4657 * and don't wait for vblanks until the end of crtc_enable, then
4658 * the HW state readout code will complain that the expected
4659 * IPS_CTL value is not the one we read. */
4660 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
4661 DRM_ERROR("Timed out waiting for IPS enable\n");
4662 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004663}
4664
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004665void hsw_disable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004666{
4667 struct drm_device *dev = crtc->base.dev;
4668 struct drm_i915_private *dev_priv = dev->dev_private;
4669
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004670 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004671 return;
4672
4673 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004674 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004675 mutex_lock(&dev_priv->rps.hw_lock);
4676 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4677 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004678 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
4679 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
4680 DRM_ERROR("Timed out waiting for IPS disable\n");
Jesse Barnese59150d2014-01-07 13:30:45 -08004681 } else {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004682 I915_WRITE(IPS_CTL, 0);
Jesse Barnese59150d2014-01-07 13:30:45 -08004683 POSTING_READ(IPS_CTL);
4684 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004685
4686 /* We need to wait for a vblank before we can disable the plane. */
4687 intel_wait_for_vblank(dev, crtc->pipe);
4688}
4689
4690/** Loads the palette/gamma unit for the CRTC with the prepared values */
4691static void intel_crtc_load_lut(struct drm_crtc *crtc)
4692{
4693 struct drm_device *dev = crtc->dev;
4694 struct drm_i915_private *dev_priv = dev->dev_private;
4695 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4696 enum pipe pipe = intel_crtc->pipe;
4697 int palreg = PALETTE(pipe);
4698 int i;
4699 bool reenable_ips = false;
4700
4701 /* The clocks have to be on to load the palette. */
Matt Roper83d65732015-02-25 13:12:16 -08004702 if (!crtc->state->enable || !intel_crtc->active)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004703 return;
4704
Imre Deak50360402015-01-16 00:55:16 -08004705 if (HAS_GMCH_DISPLAY(dev_priv->dev)) {
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03004706 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI))
Paulo Zanonid77e4532013-09-24 13:52:55 -03004707 assert_dsi_pll_enabled(dev_priv);
4708 else
4709 assert_pll_enabled(dev_priv, pipe);
4710 }
4711
4712 /* use legacy palette for Ironlake */
Sonika Jindal7a1db492014-07-22 11:18:27 +05304713 if (!HAS_GMCH_DISPLAY(dev))
Paulo Zanonid77e4532013-09-24 13:52:55 -03004714 palreg = LGC_PALETTE(pipe);
4715
4716 /* Workaround : Do not read or write the pipe palette/gamma data while
4717 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
4718 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004719 if (IS_HASWELL(dev) && intel_crtc->config->ips_enabled &&
Paulo Zanonid77e4532013-09-24 13:52:55 -03004720 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
4721 GAMMA_MODE_MODE_SPLIT)) {
4722 hsw_disable_ips(intel_crtc);
4723 reenable_ips = true;
4724 }
4725
4726 for (i = 0; i < 256; i++) {
4727 I915_WRITE(palreg + 4 * i,
4728 (intel_crtc->lut_r[i] << 16) |
4729 (intel_crtc->lut_g[i] << 8) |
4730 intel_crtc->lut_b[i]);
4731 }
4732
4733 if (reenable_ips)
4734 hsw_enable_ips(intel_crtc);
4735}
4736
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004737static void intel_crtc_dpms_overlay_disable(struct intel_crtc *intel_crtc)
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004738{
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004739 if (intel_crtc->overlay) {
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004740 struct drm_device *dev = intel_crtc->base.dev;
4741 struct drm_i915_private *dev_priv = dev->dev_private;
4742
4743 mutex_lock(&dev->struct_mutex);
4744 dev_priv->mm.interruptible = false;
4745 (void) intel_overlay_switch_off(intel_crtc->overlay);
4746 dev_priv->mm.interruptible = true;
4747 mutex_unlock(&dev->struct_mutex);
4748 }
4749
4750 /* Let userspace switch the overlay on again. In most cases userspace
4751 * has to recompute where to put it anyway.
4752 */
4753}
4754
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004755/**
4756 * intel_post_enable_primary - Perform operations after enabling primary plane
4757 * @crtc: the CRTC whose primary plane was just enabled
4758 *
4759 * Performs potentially sleeping operations that must be done after the primary
4760 * plane is enabled, such as updating FBC and IPS. Note that this may be
4761 * called due to an explicit primary plane update, or due to an implicit
4762 * re-enable that is caused when a sprite plane is updated to no longer
4763 * completely hide the primary plane.
4764 */
4765static void
4766intel_post_enable_primary(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004767{
4768 struct drm_device *dev = crtc->dev;
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004769 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004770 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4771 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004772
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004773 /*
4774 * BDW signals flip done immediately if the plane
4775 * is disabled, even if the plane enable is already
4776 * armed to occur at the next vblank :(
4777 */
4778 if (IS_BROADWELL(dev))
4779 intel_wait_for_vblank(dev, pipe);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004780
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004781 /*
4782 * FIXME IPS should be fine as long as one plane is
4783 * enabled, but in practice it seems to have problems
4784 * when going from primary only to sprite only and vice
4785 * versa.
4786 */
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004787 hsw_enable_ips(intel_crtc);
4788
4789 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02004790 intel_fbc_update(dev);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004791 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf99d7062014-06-19 16:01:59 +02004792
4793 /*
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004794 * Gen2 reports pipe underruns whenever all planes are disabled.
4795 * So don't enable underrun reporting before at least some planes
4796 * are enabled.
4797 * FIXME: Need to fix the logic to work when we turn off all planes
4798 * but leave the pipe running.
Daniel Vetterf99d7062014-06-19 16:01:59 +02004799 */
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004800 if (IS_GEN2(dev))
4801 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4802
4803 /* Underruns don't raise interrupts, so check manually. */
4804 if (HAS_GMCH_DISPLAY(dev))
4805 i9xx_check_fifo_underruns(dev_priv);
4806}
4807
4808/**
4809 * intel_pre_disable_primary - Perform operations before disabling primary plane
4810 * @crtc: the CRTC whose primary plane is to be disabled
4811 *
4812 * Performs potentially sleeping operations that must be done before the
4813 * primary plane is disabled, such as updating FBC and IPS. Note that this may
4814 * be called due to an explicit primary plane update, or due to an implicit
4815 * disable that is caused when a sprite plane completely hides the primary
4816 * plane.
4817 */
4818static void
4819intel_pre_disable_primary(struct drm_crtc *crtc)
4820{
4821 struct drm_device *dev = crtc->dev;
4822 struct drm_i915_private *dev_priv = dev->dev_private;
4823 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4824 int pipe = intel_crtc->pipe;
4825
4826 /*
4827 * Gen2 reports pipe underruns whenever all planes are disabled.
4828 * So diasble underrun reporting before all the planes get disabled.
4829 * FIXME: Need to fix the logic to work when we turn off all planes
4830 * but leave the pipe running.
4831 */
4832 if (IS_GEN2(dev))
4833 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
4834
4835 /*
4836 * Vblank time updates from the shadow to live plane control register
4837 * are blocked if the memory self-refresh mode is active at that
4838 * moment. So to make sure the plane gets truly disabled, disable
4839 * first the self-refresh mode. The self-refresh enable bit in turn
4840 * will be checked/applied by the HW only at the next frame start
4841 * event which is after the vblank start event, so we need to have a
4842 * wait-for-vblank between disabling the plane and the pipe.
4843 */
4844 if (HAS_GMCH_DISPLAY(dev))
4845 intel_set_memory_cxsr(dev_priv, false);
4846
4847 mutex_lock(&dev->struct_mutex);
4848 if (dev_priv->fbc.crtc == intel_crtc)
4849 intel_fbc_disable(dev);
4850 mutex_unlock(&dev->struct_mutex);
4851
4852 /*
4853 * FIXME IPS should be fine as long as one plane is
4854 * enabled, but in practice it seems to have problems
4855 * when going from primary only to sprite only and vice
4856 * versa.
4857 */
4858 hsw_disable_ips(intel_crtc);
4859}
4860
4861static void intel_crtc_enable_planes(struct drm_crtc *crtc)
4862{
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004863 intel_enable_primary_hw_plane(crtc->primary, crtc);
4864 intel_enable_sprite_planes(crtc);
4865 intel_crtc_update_cursor(crtc, true);
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004866
4867 intel_post_enable_primary(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004868}
4869
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004870static void intel_crtc_disable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004871{
4872 struct drm_device *dev = crtc->dev;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004873 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorst27321ae2015-04-21 17:12:52 +03004874 struct intel_plane *intel_plane;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004875 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004876
4877 intel_crtc_wait_for_pending_flips(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004878
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004879 intel_pre_disable_primary(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004880
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004881 intel_crtc_dpms_overlay_disable(intel_crtc);
Maarten Lankhorst27321ae2015-04-21 17:12:52 +03004882 for_each_intel_plane(dev, intel_plane) {
4883 if (intel_plane->pipe == pipe) {
4884 struct drm_crtc *from = intel_plane->base.crtc;
4885
4886 intel_plane->disable_plane(&intel_plane->base,
4887 from ?: crtc, true);
4888 }
4889 }
Ville Syrjäläf98551a2014-05-22 17:48:06 +03004890
Daniel Vetterf99d7062014-06-19 16:01:59 +02004891 /*
4892 * FIXME: Once we grow proper nuclear flip support out of this we need
4893 * to compute the mask of flip planes precisely. For the time being
4894 * consider this a flip to a NULL plane.
4895 */
4896 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004897}
4898
Jesse Barnesf67a5592011-01-05 10:31:48 -08004899static void ironlake_crtc_enable(struct drm_crtc *crtc)
4900{
4901 struct drm_device *dev = crtc->dev;
4902 struct drm_i915_private *dev_priv = dev->dev_private;
4903 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004904 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004905 int pipe = intel_crtc->pipe;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004906
Matt Roper83d65732015-02-25 13:12:16 -08004907 WARN_ON(!crtc->state->enable);
Daniel Vetter08a48462012-07-02 11:43:47 +02004908
Jesse Barnesf67a5592011-01-05 10:31:48 -08004909 if (intel_crtc->active)
4910 return;
4911
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004912 if (intel_crtc->config->has_pch_encoder)
Daniel Vetterb14b1052014-04-24 23:55:13 +02004913 intel_prepare_shared_dpll(intel_crtc);
4914
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004915 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05304916 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004917
4918 intel_set_pipe_timings(intel_crtc);
4919
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004920 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter29407aa2014-04-24 23:55:08 +02004921 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004922 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004923 }
4924
4925 ironlake_set_pipeconf(crtc);
4926
Jesse Barnesf67a5592011-01-05 10:31:48 -08004927 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004928
Daniel Vettera72e4c92014-09-30 10:56:47 +02004929 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4930 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni86642812013-04-12 17:57:57 -03004931
Daniel Vetterf6736a12013-06-05 13:34:30 +02004932 for_each_encoder_on_crtc(dev, crtc, encoder)
Daniel Vetter952735e2013-06-05 13:34:27 +02004933 if (encoder->pre_enable)
4934 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004935
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004936 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02004937 /* Note: FDI PLL enabling _must_ be done before we enable the
4938 * cpu pipes, hence this is separate from all the other fdi/pch
4939 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02004940 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02004941 } else {
4942 assert_fdi_tx_disabled(dev_priv, pipe);
4943 assert_fdi_rx_disabled(dev_priv, pipe);
4944 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004945
Jesse Barnesb074cec2013-04-25 12:55:02 -07004946 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004947
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02004948 /*
4949 * On ILK+ LUT must be loaded before the pipe is running but with
4950 * clocks enabled
4951 */
4952 intel_crtc_load_lut(crtc);
4953
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004954 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004955 intel_enable_pipe(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004956
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004957 if (intel_crtc->config->has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08004958 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004959
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004960 assert_vblank_disabled(crtc);
4961 drm_crtc_vblank_on(crtc);
4962
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004963 for_each_encoder_on_crtc(dev, crtc, encoder)
4964 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02004965
4966 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02004967 cpt_verify_modeset(dev, intel_crtc->pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004968}
4969
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004970/* IPS only exists on ULT machines and is tied to pipe A. */
4971static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4972{
Damien Lespiauf5adf942013-06-24 18:29:34 +01004973 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004974}
4975
Paulo Zanonie4916942013-09-20 16:21:19 -03004976/*
4977 * This implements the workaround described in the "notes" section of the mode
4978 * set sequence documentation. When going from no pipes or single pipe to
4979 * multiple pipes, and planes are enabled after the pipe, we need to wait at
4980 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
4981 */
4982static void haswell_mode_set_planes_workaround(struct intel_crtc *crtc)
4983{
4984 struct drm_device *dev = crtc->base.dev;
4985 struct intel_crtc *crtc_it, *other_active_crtc = NULL;
4986
4987 /* We want to get the other_active_crtc only if there's only 1 other
4988 * active crtc. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004989 for_each_intel_crtc(dev, crtc_it) {
Paulo Zanonie4916942013-09-20 16:21:19 -03004990 if (!crtc_it->active || crtc_it == crtc)
4991 continue;
4992
4993 if (other_active_crtc)
4994 return;
4995
4996 other_active_crtc = crtc_it;
4997 }
4998 if (!other_active_crtc)
4999 return;
5000
5001 intel_wait_for_vblank(dev, other_active_crtc->pipe);
5002 intel_wait_for_vblank(dev, other_active_crtc->pipe);
5003}
5004
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005005static void haswell_crtc_enable(struct drm_crtc *crtc)
5006{
5007 struct drm_device *dev = crtc->dev;
5008 struct drm_i915_private *dev_priv = dev->dev_private;
5009 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5010 struct intel_encoder *encoder;
5011 int pipe = intel_crtc->pipe;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005012
Matt Roper83d65732015-02-25 13:12:16 -08005013 WARN_ON(!crtc->state->enable);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005014
5015 if (intel_crtc->active)
5016 return;
5017
Daniel Vetterdf8ad702014-06-25 22:02:03 +03005018 if (intel_crtc_to_shared_dpll(intel_crtc))
5019 intel_enable_shared_dpll(intel_crtc);
5020
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005021 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05305022 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter229fca92014-04-24 23:55:09 +02005023
5024 intel_set_pipe_timings(intel_crtc);
5025
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005026 if (intel_crtc->config->cpu_transcoder != TRANSCODER_EDP) {
5027 I915_WRITE(PIPE_MULT(intel_crtc->config->cpu_transcoder),
5028 intel_crtc->config->pixel_multiplier - 1);
Clint Taylorebb69c92014-09-30 10:30:22 -07005029 }
5030
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005031 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter229fca92014-04-24 23:55:09 +02005032 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005033 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter229fca92014-04-24 23:55:09 +02005034 }
5035
5036 haswell_set_pipeconf(crtc);
5037
5038 intel_set_pipe_csc(crtc);
5039
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005040 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03005041
Daniel Vettera72e4c92014-09-30 10:56:47 +02005042 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005043 for_each_encoder_on_crtc(dev, crtc, encoder)
5044 if (encoder->pre_enable)
5045 encoder->pre_enable(encoder);
5046
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005047 if (intel_crtc->config->has_pch_encoder) {
Daniel Vettera72e4c92014-09-30 10:56:47 +02005048 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5049 true);
Imre Deak4fe94672014-06-25 22:01:49 +03005050 dev_priv->display.fdi_link_train(crtc);
5051 }
5052
Paulo Zanoni1f544382012-10-24 11:32:00 -02005053 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005054
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005055 if (INTEL_INFO(dev)->gen == 9)
Chandra Kondurua1b22782015-04-07 15:28:45 -07005056 skylake_pfit_update(intel_crtc, 1);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005057 else if (INTEL_INFO(dev)->gen < 9)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00005058 ironlake_pfit_enable(intel_crtc);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005059 else
5060 MISSING_CASE(INTEL_INFO(dev)->gen);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005061
5062 /*
5063 * On ILK+ LUT must be loaded before the pipe is running but with
5064 * clocks enabled
5065 */
5066 intel_crtc_load_lut(crtc);
5067
Paulo Zanoni1f544382012-10-24 11:32:00 -02005068 intel_ddi_set_pipe_settings(crtc);
Damien Lespiau8228c252013-03-07 15:30:27 +00005069 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005070
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005071 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02005072 intel_enable_pipe(intel_crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005073
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005074 if (intel_crtc->config->has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02005075 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005076
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005077 if (intel_crtc->config->dp_encoder_is_mst)
Dave Airlie0e32b392014-05-02 14:02:48 +10005078 intel_ddi_set_vc_payload_alloc(crtc, true);
5079
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005080 assert_vblank_disabled(crtc);
5081 drm_crtc_vblank_on(crtc);
5082
Jani Nikula8807e552013-08-30 19:40:32 +03005083 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005084 encoder->enable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03005085 intel_opregion_notify_encoder(encoder, true);
5086 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005087
Paulo Zanonie4916942013-09-20 16:21:19 -03005088 /* If we change the relative order between pipe/planes enabling, we need
5089 * to change the workaround. */
5090 haswell_mode_set_planes_workaround(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005091}
5092
Daniel Vetter3f8dce32013-05-08 10:36:30 +02005093static void ironlake_pfit_disable(struct intel_crtc *crtc)
5094{
5095 struct drm_device *dev = crtc->base.dev;
5096 struct drm_i915_private *dev_priv = dev->dev_private;
5097 int pipe = crtc->pipe;
5098
5099 /* To avoid upsetting the power well on haswell only disable the pfit if
5100 * it's in use. The hw state code will make sure we get this right. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005101 if (crtc->config->pch_pfit.enabled) {
Daniel Vetter3f8dce32013-05-08 10:36:30 +02005102 I915_WRITE(PF_CTL(pipe), 0);
5103 I915_WRITE(PF_WIN_POS(pipe), 0);
5104 I915_WRITE(PF_WIN_SZ(pipe), 0);
5105 }
5106}
5107
Jesse Barnes6be4a602010-09-10 10:26:01 -07005108static void ironlake_crtc_disable(struct drm_crtc *crtc)
5109{
5110 struct drm_device *dev = crtc->dev;
5111 struct drm_i915_private *dev_priv = dev->dev_private;
5112 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005113 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07005114 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01005115 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07005116
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005117 if (!intel_crtc->active)
5118 return;
5119
Daniel Vetterea9d7582012-07-10 10:42:52 +02005120 for_each_encoder_on_crtc(dev, crtc, encoder)
5121 encoder->disable(encoder);
5122
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005123 drm_crtc_vblank_off(crtc);
5124 assert_vblank_disabled(crtc);
5125
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005126 if (intel_crtc->config->has_pch_encoder)
Daniel Vettera72e4c92014-09-30 10:56:47 +02005127 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
Daniel Vetterd925c592013-06-05 13:34:04 +02005128
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03005129 intel_disable_pipe(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005130
Daniel Vetter3f8dce32013-05-08 10:36:30 +02005131 ironlake_pfit_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005132
Daniel Vetterbf49ec82012-09-06 22:15:40 +02005133 for_each_encoder_on_crtc(dev, crtc, encoder)
5134 if (encoder->post_disable)
5135 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005136
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005137 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterd925c592013-06-05 13:34:04 +02005138 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005139
Daniel Vetterd925c592013-06-05 13:34:04 +02005140 ironlake_disable_pch_transcoder(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005141
Daniel Vetterd925c592013-06-05 13:34:04 +02005142 if (HAS_PCH_CPT(dev)) {
5143 /* disable TRANS_DP_CTL */
5144 reg = TRANS_DP_CTL(pipe);
5145 temp = I915_READ(reg);
5146 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
5147 TRANS_DP_PORT_SEL_MASK);
5148 temp |= TRANS_DP_PORT_SEL_NONE;
5149 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005150
Daniel Vetterd925c592013-06-05 13:34:04 +02005151 /* disable DPLL_SEL */
5152 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02005153 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
Daniel Vetterd925c592013-06-05 13:34:04 +02005154 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005155 }
Daniel Vetterd925c592013-06-05 13:34:04 +02005156
5157 /* disable PCH DPLL */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02005158 intel_disable_shared_dpll(intel_crtc);
Daniel Vetterd925c592013-06-05 13:34:04 +02005159
5160 ironlake_fdi_pll_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005161 }
5162
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005163 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03005164 intel_update_watermarks(crtc);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01005165
5166 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02005167 intel_fbc_update(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01005168 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005169}
5170
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005171static void haswell_crtc_disable(struct drm_crtc *crtc)
5172{
5173 struct drm_device *dev = crtc->dev;
5174 struct drm_i915_private *dev_priv = dev->dev_private;
5175 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5176 struct intel_encoder *encoder;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005177 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005178
5179 if (!intel_crtc->active)
5180 return;
5181
Jani Nikula8807e552013-08-30 19:40:32 +03005182 for_each_encoder_on_crtc(dev, crtc, encoder) {
5183 intel_opregion_notify_encoder(encoder, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005184 encoder->disable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03005185 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005186
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005187 drm_crtc_vblank_off(crtc);
5188 assert_vblank_disabled(crtc);
5189
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005190 if (intel_crtc->config->has_pch_encoder)
Daniel Vettera72e4c92014-09-30 10:56:47 +02005191 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5192 false);
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03005193 intel_disable_pipe(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005194
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005195 if (intel_crtc->config->dp_encoder_is_mst)
Ville Syrjäläa4bf2142014-08-18 21:27:34 +03005196 intel_ddi_set_vc_payload_alloc(crtc, false);
5197
Paulo Zanoniad80a812012-10-24 16:06:19 -02005198 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005199
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005200 if (INTEL_INFO(dev)->gen == 9)
Chandra Kondurua1b22782015-04-07 15:28:45 -07005201 skylake_pfit_update(intel_crtc, 0);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005202 else if (INTEL_INFO(dev)->gen < 9)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00005203 ironlake_pfit_disable(intel_crtc);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005204 else
5205 MISSING_CASE(INTEL_INFO(dev)->gen);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005206
Paulo Zanoni1f544382012-10-24 11:32:00 -02005207 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005208
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005209 if (intel_crtc->config->has_pch_encoder) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02005210 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02005211 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02005212 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005213
Imre Deak97b040a2014-06-25 22:01:50 +03005214 for_each_encoder_on_crtc(dev, crtc, encoder)
5215 if (encoder->post_disable)
5216 encoder->post_disable(encoder);
5217
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005218 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03005219 intel_update_watermarks(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005220
5221 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02005222 intel_fbc_update(dev);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005223 mutex_unlock(&dev->struct_mutex);
Daniel Vetterdf8ad702014-06-25 22:02:03 +03005224
5225 if (intel_crtc_to_shared_dpll(intel_crtc))
5226 intel_disable_shared_dpll(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005227}
5228
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005229static void ironlake_crtc_off(struct drm_crtc *crtc)
5230{
5231 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettere72f9fb2013-06-05 13:34:06 +02005232 intel_put_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005233}
5234
Paulo Zanoni6441ab52012-10-05 12:05:58 -03005235
Jesse Barnes2dd24552013-04-25 12:55:01 -07005236static void i9xx_pfit_enable(struct intel_crtc *crtc)
5237{
5238 struct drm_device *dev = crtc->base.dev;
5239 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005240 struct intel_crtc_state *pipe_config = crtc->config;
Jesse Barnes2dd24552013-04-25 12:55:01 -07005241
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02005242 if (!pipe_config->gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07005243 return;
5244
Daniel Vetterc0b03412013-05-28 12:05:54 +02005245 /*
5246 * The panel fitter should only be adjusted whilst the pipe is disabled,
5247 * according to register description and PRM.
5248 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07005249 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
5250 assert_pipe_disabled(dev_priv, crtc->pipe);
5251
Jesse Barnesb074cec2013-04-25 12:55:02 -07005252 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
5253 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02005254
5255 /* Border color in case we don't scale up to the full screen. Black by
5256 * default, change to something else for debugging. */
5257 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07005258}
5259
Dave Airlied05410f2014-06-05 13:22:59 +10005260static enum intel_display_power_domain port_to_power_domain(enum port port)
5261{
5262 switch (port) {
5263 case PORT_A:
5264 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
5265 case PORT_B:
5266 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
5267 case PORT_C:
5268 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
5269 case PORT_D:
5270 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
5271 default:
5272 WARN_ON_ONCE(1);
5273 return POWER_DOMAIN_PORT_OTHER;
5274 }
5275}
5276
Imre Deak77d22dc2014-03-05 16:20:52 +02005277#define for_each_power_domain(domain, mask) \
5278 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
5279 if ((1 << (domain)) & (mask))
5280
Imre Deak319be8a2014-03-04 19:22:57 +02005281enum intel_display_power_domain
5282intel_display_port_power_domain(struct intel_encoder *intel_encoder)
Imre Deak77d22dc2014-03-05 16:20:52 +02005283{
Imre Deak319be8a2014-03-04 19:22:57 +02005284 struct drm_device *dev = intel_encoder->base.dev;
5285 struct intel_digital_port *intel_dig_port;
5286
5287 switch (intel_encoder->type) {
5288 case INTEL_OUTPUT_UNKNOWN:
5289 /* Only DDI platforms should ever use this output type */
5290 WARN_ON_ONCE(!HAS_DDI(dev));
5291 case INTEL_OUTPUT_DISPLAYPORT:
5292 case INTEL_OUTPUT_HDMI:
5293 case INTEL_OUTPUT_EDP:
5294 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
Dave Airlied05410f2014-06-05 13:22:59 +10005295 return port_to_power_domain(intel_dig_port->port);
Dave Airlie0e32b392014-05-02 14:02:48 +10005296 case INTEL_OUTPUT_DP_MST:
5297 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5298 return port_to_power_domain(intel_dig_port->port);
Imre Deak319be8a2014-03-04 19:22:57 +02005299 case INTEL_OUTPUT_ANALOG:
5300 return POWER_DOMAIN_PORT_CRT;
5301 case INTEL_OUTPUT_DSI:
5302 return POWER_DOMAIN_PORT_DSI;
5303 default:
5304 return POWER_DOMAIN_PORT_OTHER;
5305 }
5306}
5307
5308static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
5309{
5310 struct drm_device *dev = crtc->dev;
5311 struct intel_encoder *intel_encoder;
5312 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5313 enum pipe pipe = intel_crtc->pipe;
Imre Deak77d22dc2014-03-05 16:20:52 +02005314 unsigned long mask;
5315 enum transcoder transcoder;
5316
5317 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
5318
5319 mask = BIT(POWER_DOMAIN_PIPE(pipe));
5320 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005321 if (intel_crtc->config->pch_pfit.enabled ||
5322 intel_crtc->config->pch_pfit.force_thru)
Imre Deak77d22dc2014-03-05 16:20:52 +02005323 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
5324
Imre Deak319be8a2014-03-04 19:22:57 +02005325 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
5326 mask |= BIT(intel_display_port_power_domain(intel_encoder));
5327
Imre Deak77d22dc2014-03-05 16:20:52 +02005328 return mask;
5329}
5330
Ander Conselvan de Oliveira679dacd2015-03-20 16:18:15 +02005331static void modeset_update_crtc_power_domains(struct drm_atomic_state *state)
Imre Deak77d22dc2014-03-05 16:20:52 +02005332{
Ander Conselvan de Oliveira679dacd2015-03-20 16:18:15 +02005333 struct drm_device *dev = state->dev;
Imre Deak77d22dc2014-03-05 16:20:52 +02005334 struct drm_i915_private *dev_priv = dev->dev_private;
5335 unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
5336 struct intel_crtc *crtc;
5337
5338 /*
5339 * First get all needed power domains, then put all unneeded, to avoid
5340 * any unnecessary toggling of the power wells.
5341 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01005342 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02005343 enum intel_display_power_domain domain;
5344
Matt Roper83d65732015-02-25 13:12:16 -08005345 if (!crtc->base.state->enable)
Imre Deak77d22dc2014-03-05 16:20:52 +02005346 continue;
5347
Imre Deak319be8a2014-03-04 19:22:57 +02005348 pipe_domains[crtc->pipe] = get_crtc_power_domains(&crtc->base);
Imre Deak77d22dc2014-03-05 16:20:52 +02005349
5350 for_each_power_domain(domain, pipe_domains[crtc->pipe])
5351 intel_display_power_get(dev_priv, domain);
5352 }
5353
Ville Syrjälä50f6e502014-11-06 14:49:12 +02005354 if (dev_priv->display.modeset_global_resources)
Ander Conselvan de Oliveira679dacd2015-03-20 16:18:15 +02005355 dev_priv->display.modeset_global_resources(state);
Ville Syrjälä50f6e502014-11-06 14:49:12 +02005356
Damien Lespiaud3fcc802014-05-13 23:32:22 +01005357 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02005358 enum intel_display_power_domain domain;
5359
5360 for_each_power_domain(domain, crtc->enabled_power_domains)
5361 intel_display_power_put(dev_priv, domain);
5362
5363 crtc->enabled_power_domains = pipe_domains[crtc->pipe];
5364 }
5365
5366 intel_display_set_init_power(dev_priv, false);
5367}
5368
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305369void broxton_set_cdclk(struct drm_device *dev, int frequency)
5370{
5371 struct drm_i915_private *dev_priv = dev->dev_private;
5372 uint32_t divider;
5373 uint32_t ratio;
5374 uint32_t current_freq;
5375 int ret;
5376
5377 /* frequency = 19.2MHz * ratio / 2 / div{1,1.5,2,4} */
5378 switch (frequency) {
5379 case 144000:
5380 divider = BXT_CDCLK_CD2X_DIV_SEL_4;
5381 ratio = BXT_DE_PLL_RATIO(60);
5382 break;
5383 case 288000:
5384 divider = BXT_CDCLK_CD2X_DIV_SEL_2;
5385 ratio = BXT_DE_PLL_RATIO(60);
5386 break;
5387 case 384000:
5388 divider = BXT_CDCLK_CD2X_DIV_SEL_1_5;
5389 ratio = BXT_DE_PLL_RATIO(60);
5390 break;
5391 case 576000:
5392 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5393 ratio = BXT_DE_PLL_RATIO(60);
5394 break;
5395 case 624000:
5396 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5397 ratio = BXT_DE_PLL_RATIO(65);
5398 break;
5399 case 19200:
5400 /*
5401 * Bypass frequency with DE PLL disabled. Init ratio, divider
5402 * to suppress GCC warning.
5403 */
5404 ratio = 0;
5405 divider = 0;
5406 break;
5407 default:
5408 DRM_ERROR("unsupported CDCLK freq %d", frequency);
5409
5410 return;
5411 }
5412
5413 mutex_lock(&dev_priv->rps.hw_lock);
5414 /* Inform power controller of upcoming frequency change */
5415 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
5416 0x80000000);
5417 mutex_unlock(&dev_priv->rps.hw_lock);
5418
5419 if (ret) {
5420 DRM_ERROR("PCode CDCLK freq change notify failed (err %d, freq %d)\n",
5421 ret, frequency);
5422 return;
5423 }
5424
5425 current_freq = I915_READ(CDCLK_CTL) & CDCLK_FREQ_DECIMAL_MASK;
5426 /* convert from .1 fixpoint MHz with -1MHz offset to kHz */
5427 current_freq = current_freq * 500 + 1000;
5428
5429 /*
5430 * DE PLL has to be disabled when
5431 * - setting to 19.2MHz (bypass, PLL isn't used)
5432 * - before setting to 624MHz (PLL needs toggling)
5433 * - before setting to any frequency from 624MHz (PLL needs toggling)
5434 */
5435 if (frequency == 19200 || frequency == 624000 ||
5436 current_freq == 624000) {
5437 I915_WRITE(BXT_DE_PLL_ENABLE, ~BXT_DE_PLL_PLL_ENABLE);
5438 /* Timeout 200us */
5439 if (wait_for(!(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK),
5440 1))
5441 DRM_ERROR("timout waiting for DE PLL unlock\n");
5442 }
5443
5444 if (frequency != 19200) {
5445 uint32_t val;
5446
5447 val = I915_READ(BXT_DE_PLL_CTL);
5448 val &= ~BXT_DE_PLL_RATIO_MASK;
5449 val |= ratio;
5450 I915_WRITE(BXT_DE_PLL_CTL, val);
5451
5452 I915_WRITE(BXT_DE_PLL_ENABLE, BXT_DE_PLL_PLL_ENABLE);
5453 /* Timeout 200us */
5454 if (wait_for(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK, 1))
5455 DRM_ERROR("timeout waiting for DE PLL lock\n");
5456
5457 val = I915_READ(CDCLK_CTL);
5458 val &= ~BXT_CDCLK_CD2X_DIV_SEL_MASK;
5459 val |= divider;
5460 /*
5461 * Disable SSA Precharge when CD clock frequency < 500 MHz,
5462 * enable otherwise.
5463 */
5464 val &= ~BXT_CDCLK_SSA_PRECHARGE_ENABLE;
5465 if (frequency >= 500000)
5466 val |= BXT_CDCLK_SSA_PRECHARGE_ENABLE;
5467
5468 val &= ~CDCLK_FREQ_DECIMAL_MASK;
5469 /* convert from kHz to .1 fixpoint MHz with -1MHz offset */
5470 val |= (frequency - 1000) / 500;
5471 I915_WRITE(CDCLK_CTL, val);
5472 }
5473
5474 mutex_lock(&dev_priv->rps.hw_lock);
5475 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
5476 DIV_ROUND_UP(frequency, 25000));
5477 mutex_unlock(&dev_priv->rps.hw_lock);
5478
5479 if (ret) {
5480 DRM_ERROR("PCode CDCLK freq set failed, (err %d, freq %d)\n",
5481 ret, frequency);
5482 return;
5483 }
5484
5485 dev_priv->cdclk_freq = frequency;
5486}
5487
5488void broxton_init_cdclk(struct drm_device *dev)
5489{
5490 struct drm_i915_private *dev_priv = dev->dev_private;
5491 uint32_t val;
5492
5493 /*
5494 * NDE_RSTWRN_OPT RST PCH Handshake En must always be 0b on BXT
5495 * or else the reset will hang because there is no PCH to respond.
5496 * Move the handshake programming to initialization sequence.
5497 * Previously was left up to BIOS.
5498 */
5499 val = I915_READ(HSW_NDE_RSTWRN_OPT);
5500 val &= ~RESET_PCH_HANDSHAKE_ENABLE;
5501 I915_WRITE(HSW_NDE_RSTWRN_OPT, val);
5502
5503 /* Enable PG1 for cdclk */
5504 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
5505
5506 /* check if cd clock is enabled */
5507 if (I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_PLL_ENABLE) {
5508 DRM_DEBUG_KMS("Display already initialized\n");
5509 return;
5510 }
5511
5512 /*
5513 * FIXME:
5514 * - The initial CDCLK needs to be read from VBT.
5515 * Need to make this change after VBT has changes for BXT.
5516 * - check if setting the max (or any) cdclk freq is really necessary
5517 * here, it belongs to modeset time
5518 */
5519 broxton_set_cdclk(dev, 624000);
5520
5521 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) | DBUF_POWER_REQUEST);
Ville Syrjälä22e02c02015-05-06 14:28:57 +03005522 POSTING_READ(DBUF_CTL);
5523
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305524 udelay(10);
5525
5526 if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE))
5527 DRM_ERROR("DBuf power enable timeout!\n");
5528}
5529
5530void broxton_uninit_cdclk(struct drm_device *dev)
5531{
5532 struct drm_i915_private *dev_priv = dev->dev_private;
5533
5534 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) & ~DBUF_POWER_REQUEST);
Ville Syrjälä22e02c02015-05-06 14:28:57 +03005535 POSTING_READ(DBUF_CTL);
5536
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305537 udelay(10);
5538
5539 if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE)
5540 DRM_ERROR("DBuf power disable timeout!\n");
5541
5542 /* Set minimum (bypass) frequency, in effect turning off the DE PLL */
5543 broxton_set_cdclk(dev, 19200);
5544
5545 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
5546}
5547
Ville Syrjälädfcab172014-06-13 13:37:47 +03005548/* returns HPLL frequency in kHz */
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03005549static int valleyview_get_vco(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005550{
Jesse Barnes586f49d2013-11-04 16:06:59 -08005551 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
Jesse Barnes30a970c2013-11-04 13:48:12 -08005552
Jesse Barnes586f49d2013-11-04 16:06:59 -08005553 /* Obtain SKU information */
5554 mutex_lock(&dev_priv->dpio_lock);
5555 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
5556 CCK_FUSE_HPLL_FREQ_MASK;
5557 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005558
Ville Syrjälädfcab172014-06-13 13:37:47 +03005559 return vco_freq[hpll_freq] * 1000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005560}
5561
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03005562static void vlv_update_cdclk(struct drm_device *dev)
5563{
5564 struct drm_i915_private *dev_priv = dev->dev_private;
5565
Vandana Kannan164dfd22014-11-24 13:37:41 +05305566 dev_priv->cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
Ville Syrjälä43dc52c2014-10-07 17:41:20 +03005567 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
Vandana Kannan164dfd22014-11-24 13:37:41 +05305568 dev_priv->cdclk_freq);
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03005569
5570 /*
5571 * Program the gmbus_freq based on the cdclk frequency.
5572 * BSpec erroneously claims we should aim for 4MHz, but
5573 * in fact 1MHz is the correct frequency.
5574 */
Vandana Kannan164dfd22014-11-24 13:37:41 +05305575 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->cdclk_freq, 1000));
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03005576}
5577
Jesse Barnes30a970c2013-11-04 13:48:12 -08005578/* Adjust CDclk dividers to allow high res or save power if possible */
5579static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
5580{
5581 struct drm_i915_private *dev_priv = dev->dev_private;
5582 u32 val, cmd;
5583
Vandana Kannan164dfd22014-11-24 13:37:41 +05305584 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5585 != dev_priv->cdclk_freq);
Imre Deakd60c4472014-03-27 17:45:10 +02005586
Ville Syrjälädfcab172014-06-13 13:37:47 +03005587 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
Jesse Barnes30a970c2013-11-04 13:48:12 -08005588 cmd = 2;
Ville Syrjälädfcab172014-06-13 13:37:47 +03005589 else if (cdclk == 266667)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005590 cmd = 1;
5591 else
5592 cmd = 0;
5593
5594 mutex_lock(&dev_priv->rps.hw_lock);
5595 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5596 val &= ~DSPFREQGUAR_MASK;
5597 val |= (cmd << DSPFREQGUAR_SHIFT);
5598 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5599 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5600 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
5601 50)) {
5602 DRM_ERROR("timed out waiting for CDclk change\n");
5603 }
5604 mutex_unlock(&dev_priv->rps.hw_lock);
5605
Ville Syrjälädfcab172014-06-13 13:37:47 +03005606 if (cdclk == 400000) {
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005607 u32 divider;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005608
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005609 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005610
5611 mutex_lock(&dev_priv->dpio_lock);
5612 /* adjust cdclk divider */
5613 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
Ville Syrjälä9cf33db2014-06-13 13:37:48 +03005614 val &= ~DISPLAY_FREQUENCY_VALUES;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005615 val |= divider;
5616 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
Ville Syrjäläa877e802014-06-13 13:37:52 +03005617
5618 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
5619 DISPLAY_FREQUENCY_STATUS) == (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
5620 50))
5621 DRM_ERROR("timed out waiting for CDclk change\n");
Jesse Barnes30a970c2013-11-04 13:48:12 -08005622 mutex_unlock(&dev_priv->dpio_lock);
5623 }
5624
5625 mutex_lock(&dev_priv->dpio_lock);
5626 /* adjust self-refresh exit latency value */
5627 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
5628 val &= ~0x7f;
5629
5630 /*
5631 * For high bandwidth configs, we set a higher latency in the bunit
5632 * so that the core display fetch happens in time to avoid underruns.
5633 */
Ville Syrjälädfcab172014-06-13 13:37:47 +03005634 if (cdclk == 400000)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005635 val |= 4500 / 250; /* 4.5 usec */
5636 else
5637 val |= 3000 / 250; /* 3.0 usec */
5638 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
5639 mutex_unlock(&dev_priv->dpio_lock);
5640
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +03005641 vlv_update_cdclk(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005642}
5643
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005644static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
5645{
5646 struct drm_i915_private *dev_priv = dev->dev_private;
5647 u32 val, cmd;
5648
Vandana Kannan164dfd22014-11-24 13:37:41 +05305649 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5650 != dev_priv->cdclk_freq);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005651
5652 switch (cdclk) {
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005653 case 333333:
5654 case 320000:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005655 case 266667:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005656 case 200000:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005657 break;
5658 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01005659 MISSING_CASE(cdclk);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005660 return;
5661 }
5662
Ville Syrjälä9d0d3fd2015-03-02 20:07:17 +02005663 /*
5664 * Specs are full of misinformation, but testing on actual
5665 * hardware has shown that we just need to write the desired
5666 * CCK divider into the Punit register.
5667 */
5668 cmd = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
5669
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005670 mutex_lock(&dev_priv->rps.hw_lock);
5671 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5672 val &= ~DSPFREQGUAR_MASK_CHV;
5673 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
5674 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5675 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5676 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
5677 50)) {
5678 DRM_ERROR("timed out waiting for CDclk change\n");
5679 }
5680 mutex_unlock(&dev_priv->rps.hw_lock);
5681
5682 vlv_update_cdclk(dev);
5683}
5684
Jesse Barnes30a970c2013-11-04 13:48:12 -08005685static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
5686 int max_pixclk)
5687{
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005688 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005689 int limit = IS_CHERRYVIEW(dev_priv) ? 95 : 90;
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005690
Jesse Barnes30a970c2013-11-04 13:48:12 -08005691 /*
5692 * Really only a few cases to deal with, as only 4 CDclks are supported:
5693 * 200MHz
5694 * 267MHz
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005695 * 320/333MHz (depends on HPLL freq)
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005696 * 400MHz (VLV only)
5697 * So we check to see whether we're above 90% (VLV) or 95% (CHV)
5698 * of the lower bin and adjust if needed.
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005699 *
5700 * We seem to get an unstable or solid color picture at 200MHz.
5701 * Not sure what's wrong. For now use 200MHz only when all pipes
5702 * are off.
Jesse Barnes30a970c2013-11-04 13:48:12 -08005703 */
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005704 if (!IS_CHERRYVIEW(dev_priv) &&
5705 max_pixclk > freq_320*limit/100)
Ville Syrjälädfcab172014-06-13 13:37:47 +03005706 return 400000;
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005707 else if (max_pixclk > 266667*limit/100)
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005708 return freq_320;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005709 else if (max_pixclk > 0)
Ville Syrjälädfcab172014-06-13 13:37:47 +03005710 return 266667;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005711 else
5712 return 200000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005713}
5714
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305715static int broxton_calc_cdclk(struct drm_i915_private *dev_priv,
5716 int max_pixclk)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005717{
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305718 /*
5719 * FIXME:
5720 * - remove the guardband, it's not needed on BXT
5721 * - set 19.2MHz bypass frequency if there are no active pipes
5722 */
5723 if (max_pixclk > 576000*9/10)
5724 return 624000;
5725 else if (max_pixclk > 384000*9/10)
5726 return 576000;
5727 else if (max_pixclk > 288000*9/10)
5728 return 384000;
5729 else if (max_pixclk > 144000*9/10)
5730 return 288000;
5731 else
5732 return 144000;
5733}
5734
Jesse Barnes30a970c2013-11-04 13:48:12 -08005735/* compute the max pixel clock for new configuration */
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005736static int intel_mode_max_pixclk(struct drm_atomic_state *state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005737{
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005738 struct drm_device *dev = state->dev;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005739 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005740 struct intel_crtc_state *crtc_state;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005741 int max_pixclk = 0;
5742
Damien Lespiaud3fcc802014-05-13 23:32:22 +01005743 for_each_intel_crtc(dev, intel_crtc) {
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005744 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
5745 if (IS_ERR(crtc_state))
5746 return PTR_ERR(crtc_state);
5747
5748 if (!crtc_state->base.enable)
5749 continue;
5750
5751 max_pixclk = max(max_pixclk,
5752 crtc_state->base.adjusted_mode.crtc_clock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005753 }
5754
5755 return max_pixclk;
5756}
5757
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005758static int valleyview_modeset_global_pipes(struct drm_atomic_state *state,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02005759 unsigned *prepare_pipes)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005760{
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005761 struct drm_i915_private *dev_priv = to_i915(state->dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005762 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005763 int max_pixclk = intel_mode_max_pixclk(state);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305764 int cdclk;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005765
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005766 if (max_pixclk < 0)
5767 return max_pixclk;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005768
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305769 if (IS_VALLEYVIEW(dev_priv))
5770 cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
5771 else
5772 cdclk = broxton_calc_cdclk(dev_priv, max_pixclk);
5773
5774 if (cdclk == dev_priv->cdclk_freq)
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005775 return 0;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005776
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02005777 /* disable/enable all currently active pipes while we change cdclk */
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005778 for_each_intel_crtc(state->dev, intel_crtc)
Matt Roper83d65732015-02-25 13:12:16 -08005779 if (intel_crtc->base.state->enable)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005780 *prepare_pipes |= (1 << intel_crtc->pipe);
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005781
5782 return 0;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005783}
5784
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02005785static void vlv_program_pfi_credits(struct drm_i915_private *dev_priv)
5786{
5787 unsigned int credits, default_credits;
5788
5789 if (IS_CHERRYVIEW(dev_priv))
5790 default_credits = PFI_CREDIT(12);
5791 else
5792 default_credits = PFI_CREDIT(8);
5793
Vandana Kannan164dfd22014-11-24 13:37:41 +05305794 if (DIV_ROUND_CLOSEST(dev_priv->cdclk_freq, 1000) >= dev_priv->rps.cz_freq) {
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02005795 /* CHV suggested value is 31 or 63 */
5796 if (IS_CHERRYVIEW(dev_priv))
5797 credits = PFI_CREDIT_31;
5798 else
5799 credits = PFI_CREDIT(15);
5800 } else {
5801 credits = default_credits;
5802 }
5803
5804 /*
5805 * WA - write default credits before re-programming
5806 * FIXME: should we also set the resend bit here?
5807 */
5808 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
5809 default_credits);
5810
5811 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
5812 credits | PFI_CREDIT_RESEND);
5813
5814 /*
5815 * FIXME is this guaranteed to clear
5816 * immediately or should we poll for it?
5817 */
5818 WARN_ON(I915_READ(GCI_CONTROL) & PFI_CREDIT_RESEND);
5819}
5820
Ander Conselvan de Oliveira679dacd2015-03-20 16:18:15 +02005821static void valleyview_modeset_global_resources(struct drm_atomic_state *state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005822{
Ander Conselvan de Oliveira679dacd2015-03-20 16:18:15 +02005823 struct drm_device *dev = state->dev;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005824 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005825 int max_pixclk = intel_mode_max_pixclk(state);
5826 int req_cdclk;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005827
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005828 /* The only reason this can fail is if we fail to add the crtc_state
5829 * to the atomic state. But that can't happen since the call to
5830 * intel_mode_max_pixclk() in valleyview_modeset_global_pipes() (which
5831 * can't have failed otherwise the mode set would be aborted) added all
5832 * the states already. */
5833 if (WARN_ON(max_pixclk < 0))
5834 return;
5835
5836 req_cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005837
Vandana Kannan164dfd22014-11-24 13:37:41 +05305838 if (req_cdclk != dev_priv->cdclk_freq) {
Imre Deak738c05c2014-11-19 16:25:37 +02005839 /*
5840 * FIXME: We can end up here with all power domains off, yet
5841 * with a CDCLK frequency other than the minimum. To account
5842 * for this take the PIPE-A power domain, which covers the HW
5843 * blocks needed for the following programming. This can be
5844 * removed once it's guaranteed that we get here either with
5845 * the minimum CDCLK set, or the required power domains
5846 * enabled.
5847 */
5848 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
5849
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005850 if (IS_CHERRYVIEW(dev))
5851 cherryview_set_cdclk(dev, req_cdclk);
5852 else
5853 valleyview_set_cdclk(dev, req_cdclk);
Imre Deak738c05c2014-11-19 16:25:37 +02005854
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02005855 vlv_program_pfi_credits(dev_priv);
5856
Imre Deak738c05c2014-11-19 16:25:37 +02005857 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005858 }
Jesse Barnes30a970c2013-11-04 13:48:12 -08005859}
5860
Jesse Barnes89b667f2013-04-18 14:51:36 -07005861static void valleyview_crtc_enable(struct drm_crtc *crtc)
5862{
5863 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02005864 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005865 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5866 struct intel_encoder *encoder;
5867 int pipe = intel_crtc->pipe;
Jani Nikula23538ef2013-08-27 15:12:22 +03005868 bool is_dsi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07005869
Matt Roper83d65732015-02-25 13:12:16 -08005870 WARN_ON(!crtc->state->enable);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005871
5872 if (intel_crtc->active)
5873 return;
5874
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03005875 is_dsi = intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI);
Shobhit Kumar8525a232014-06-25 12:20:39 +05305876
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005877 if (!is_dsi) {
5878 if (IS_CHERRYVIEW(dev))
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005879 chv_prepare_pll(intel_crtc, intel_crtc->config);
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005880 else
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005881 vlv_prepare_pll(intel_crtc, intel_crtc->config);
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03005882 }
Daniel Vetter5b18e572014-04-24 23:55:06 +02005883
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005884 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05305885 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter5b18e572014-04-24 23:55:06 +02005886
5887 intel_set_pipe_timings(intel_crtc);
5888
Ville Syrjäläc14b0482014-10-16 20:52:34 +03005889 if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) {
5890 struct drm_i915_private *dev_priv = dev->dev_private;
5891
5892 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
5893 I915_WRITE(CHV_CANVAS(pipe), 0);
5894 }
5895
Daniel Vetter5b18e572014-04-24 23:55:06 +02005896 i9xx_set_pipeconf(intel_crtc);
5897
Jesse Barnes89b667f2013-04-18 14:51:36 -07005898 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07005899
Daniel Vettera72e4c92014-09-30 10:56:47 +02005900 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005901
Jesse Barnes89b667f2013-04-18 14:51:36 -07005902 for_each_encoder_on_crtc(dev, crtc, encoder)
5903 if (encoder->pre_pll_enable)
5904 encoder->pre_pll_enable(encoder);
5905
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005906 if (!is_dsi) {
5907 if (IS_CHERRYVIEW(dev))
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005908 chv_enable_pll(intel_crtc, intel_crtc->config);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005909 else
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005910 vlv_enable_pll(intel_crtc, intel_crtc->config);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005911 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07005912
5913 for_each_encoder_on_crtc(dev, crtc, encoder)
5914 if (encoder->pre_enable)
5915 encoder->pre_enable(encoder);
5916
Jesse Barnes2dd24552013-04-25 12:55:01 -07005917 i9xx_pfit_enable(intel_crtc);
5918
Ville Syrjälä63cbb072013-06-04 13:48:59 +03005919 intel_crtc_load_lut(crtc);
5920
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005921 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02005922 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02005923
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03005924 assert_vblank_disabled(crtc);
5925 drm_crtc_vblank_on(crtc);
5926
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005927 for_each_encoder_on_crtc(dev, crtc, encoder)
5928 encoder->enable(encoder);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005929}
5930
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005931static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
5932{
5933 struct drm_device *dev = crtc->base.dev;
5934 struct drm_i915_private *dev_priv = dev->dev_private;
5935
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005936 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
5937 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005938}
5939
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005940static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005941{
5942 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02005943 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08005944 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005945 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08005946 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08005947
Matt Roper83d65732015-02-25 13:12:16 -08005948 WARN_ON(!crtc->state->enable);
Daniel Vetter08a48462012-07-02 11:43:47 +02005949
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005950 if (intel_crtc->active)
5951 return;
5952
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02005953 i9xx_set_pll_dividers(intel_crtc);
5954
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005955 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05305956 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter5b18e572014-04-24 23:55:06 +02005957
5958 intel_set_pipe_timings(intel_crtc);
5959
Daniel Vetter5b18e572014-04-24 23:55:06 +02005960 i9xx_set_pipeconf(intel_crtc);
5961
Chris Wilsonf7abfe82010-09-13 14:19:16 +01005962 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01005963
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005964 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02005965 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03005966
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02005967 for_each_encoder_on_crtc(dev, crtc, encoder)
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02005968 if (encoder->pre_enable)
5969 encoder->pre_enable(encoder);
5970
Daniel Vetterf6736a12013-06-05 13:34:30 +02005971 i9xx_enable_pll(intel_crtc);
5972
Jesse Barnes2dd24552013-04-25 12:55:01 -07005973 i9xx_pfit_enable(intel_crtc);
5974
Ville Syrjälä63cbb072013-06-04 13:48:59 +03005975 intel_crtc_load_lut(crtc);
5976
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005977 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02005978 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02005979
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03005980 assert_vblank_disabled(crtc);
5981 drm_crtc_vblank_on(crtc);
5982
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005983 for_each_encoder_on_crtc(dev, crtc, encoder)
5984 encoder->enable(encoder);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07005985}
5986
Daniel Vetter87476d62013-04-11 16:29:06 +02005987static void i9xx_pfit_disable(struct intel_crtc *crtc)
5988{
5989 struct drm_device *dev = crtc->base.dev;
5990 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02005991
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005992 if (!crtc->config->gmch_pfit.control)
Daniel Vetter328d8e82013-05-08 10:36:31 +02005993 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02005994
5995 assert_pipe_disabled(dev_priv, crtc->pipe);
5996
Daniel Vetter328d8e82013-05-08 10:36:31 +02005997 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
5998 I915_READ(PFIT_CONTROL));
5999 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02006000}
6001
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006002static void i9xx_crtc_disable(struct drm_crtc *crtc)
6003{
6004 struct drm_device *dev = crtc->dev;
6005 struct drm_i915_private *dev_priv = dev->dev_private;
6006 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02006007 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006008 int pipe = intel_crtc->pipe;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02006009
Chris Wilsonf7abfe82010-09-13 14:19:16 +01006010 if (!intel_crtc->active)
6011 return;
6012
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006013 /*
6014 * On gen2 planes are double buffered but the pipe isn't, so we must
6015 * wait for planes to fully turn off before disabling the pipe.
Imre Deak564ed192014-06-13 14:54:21 +03006016 * We also need to wait on all gmch platforms because of the
6017 * self-refresh mode constraint explained above.
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006018 */
Imre Deak564ed192014-06-13 14:54:21 +03006019 intel_wait_for_vblank(dev, pipe);
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006020
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03006021 for_each_encoder_on_crtc(dev, crtc, encoder)
6022 encoder->disable(encoder);
6023
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01006024 drm_crtc_vblank_off(crtc);
6025 assert_vblank_disabled(crtc);
6026
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03006027 intel_disable_pipe(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02006028
Daniel Vetter87476d62013-04-11 16:29:06 +02006029 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02006030
Jesse Barnes89b667f2013-04-18 14:51:36 -07006031 for_each_encoder_on_crtc(dev, crtc, encoder)
6032 if (encoder->post_disable)
6033 encoder->post_disable(encoder);
6034
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006035 if (!intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI)) {
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03006036 if (IS_CHERRYVIEW(dev))
6037 chv_disable_pll(dev_priv, pipe);
6038 else if (IS_VALLEYVIEW(dev))
6039 vlv_disable_pll(dev_priv, pipe);
6040 else
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03006041 i9xx_disable_pll(intel_crtc);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03006042 }
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006043
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006044 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02006045 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006046
Chris Wilsonf7abfe82010-09-13 14:19:16 +01006047 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03006048 intel_update_watermarks(crtc);
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03006049
Daniel Vetterefa96242014-04-24 23:55:02 +02006050 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02006051 intel_fbc_update(dev);
Daniel Vetterefa96242014-04-24 23:55:02 +02006052 mutex_unlock(&dev->struct_mutex);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006053}
6054
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006055static void i9xx_crtc_off(struct drm_crtc *crtc)
6056{
6057}
6058
Borun Fub04c5bd2014-07-12 10:02:27 +05306059/* Master function to enable/disable CRTC and corresponding power wells */
6060void intel_crtc_control(struct drm_crtc *crtc, bool enable)
Chris Wilsoncdd59982010-09-08 16:30:16 +01006061{
Chris Wilsoncdd59982010-09-08 16:30:16 +01006062 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006063 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006064 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006065 enum intel_display_power_domain domain;
6066 unsigned long domains;
Daniel Vetter976f8a22012-07-08 22:34:21 +02006067
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006068 if (enable) {
6069 if (!intel_crtc->active) {
Daniel Vettere1e9fb82014-06-25 22:02:04 +03006070 domains = get_crtc_power_domains(crtc);
6071 for_each_power_domain(domain, domains)
6072 intel_display_power_get(dev_priv, domain);
6073 intel_crtc->enabled_power_domains = domains;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006074
6075 dev_priv->display.crtc_enable(crtc);
Maarten Lankhorstce22dba2015-04-21 17:12:56 +03006076 intel_crtc_enable_planes(crtc);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006077 }
6078 } else {
6079 if (intel_crtc->active) {
Maarten Lankhorstce22dba2015-04-21 17:12:56 +03006080 intel_crtc_disable_planes(crtc);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006081 dev_priv->display.crtc_disable(crtc);
6082
Daniel Vettere1e9fb82014-06-25 22:02:04 +03006083 domains = intel_crtc->enabled_power_domains;
6084 for_each_power_domain(domain, domains)
6085 intel_display_power_put(dev_priv, domain);
6086 intel_crtc->enabled_power_domains = 0;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006087 }
6088 }
Borun Fub04c5bd2014-07-12 10:02:27 +05306089}
6090
6091/**
6092 * Sets the power management mode of the pipe and plane.
6093 */
6094void intel_crtc_update_dpms(struct drm_crtc *crtc)
6095{
6096 struct drm_device *dev = crtc->dev;
6097 struct intel_encoder *intel_encoder;
6098 bool enable = false;
6099
6100 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
6101 enable |= intel_encoder->connectors_active;
6102
6103 intel_crtc_control(crtc, enable);
Daniel Vetter976f8a22012-07-08 22:34:21 +02006104}
6105
Daniel Vetter976f8a22012-07-08 22:34:21 +02006106static void intel_crtc_disable(struct drm_crtc *crtc)
6107{
6108 struct drm_device *dev = crtc->dev;
6109 struct drm_connector *connector;
6110 struct drm_i915_private *dev_priv = dev->dev_private;
6111
6112 /* crtc should still be enabled when we disable it. */
Matt Roper83d65732015-02-25 13:12:16 -08006113 WARN_ON(!crtc->state->enable);
Daniel Vetter976f8a22012-07-08 22:34:21 +02006114
Maarten Lankhorstce22dba2015-04-21 17:12:56 +03006115 intel_crtc_disable_planes(crtc);
Daniel Vetter976f8a22012-07-08 22:34:21 +02006116 dev_priv->display.crtc_disable(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006117 dev_priv->display.off(crtc);
6118
Matt Roper70a101f2015-04-08 18:56:53 -07006119 drm_plane_helper_disable(crtc->primary);
Daniel Vetter976f8a22012-07-08 22:34:21 +02006120
6121 /* Update computed state. */
6122 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
6123 if (!connector->encoder || !connector->encoder->crtc)
6124 continue;
6125
6126 if (connector->encoder->crtc != crtc)
6127 continue;
6128
6129 connector->dpms = DRM_MODE_DPMS_OFF;
6130 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01006131 }
6132}
6133
Chris Wilsonea5b2132010-08-04 13:50:23 +01006134void intel_encoder_destroy(struct drm_encoder *encoder)
6135{
Chris Wilson4ef69c72010-09-09 15:14:28 +01006136 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01006137
Chris Wilsonea5b2132010-08-04 13:50:23 +01006138 drm_encoder_cleanup(encoder);
6139 kfree(intel_encoder);
6140}
6141
Damien Lespiau92373292013-08-08 22:28:57 +01006142/* Simple dpms helper for encoders with just one connector, no cloning and only
Daniel Vetter5ab432e2012-06-30 08:59:56 +02006143 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
6144 * state of the entire output pipe. */
Damien Lespiau92373292013-08-08 22:28:57 +01006145static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
Daniel Vetter5ab432e2012-06-30 08:59:56 +02006146{
6147 if (mode == DRM_MODE_DPMS_ON) {
6148 encoder->connectors_active = true;
6149
Daniel Vetterb2cabb02012-07-01 22:42:24 +02006150 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02006151 } else {
6152 encoder->connectors_active = false;
6153
Daniel Vetterb2cabb02012-07-01 22:42:24 +02006154 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02006155 }
6156}
6157
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006158/* Cross check the actual hw state with our own modeset state tracking (and it's
6159 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02006160static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006161{
6162 if (connector->get_hw_state(connector)) {
6163 struct intel_encoder *encoder = connector->encoder;
6164 struct drm_crtc *crtc;
6165 bool encoder_enabled;
6166 enum pipe pipe;
6167
6168 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
6169 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03006170 connector->base.name);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006171
Dave Airlie0e32b392014-05-02 14:02:48 +10006172 /* there is no real hw state for MST connectors */
6173 if (connector->mst_port)
6174 return;
6175
Rob Clarke2c719b2014-12-15 13:56:32 -05006176 I915_STATE_WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006177 "wrong connector dpms state\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05006178 I915_STATE_WARN(connector->base.encoder != &encoder->base,
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006179 "active connector not linked to encoder\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006180
Dave Airlie36cd7442014-05-02 13:44:18 +10006181 if (encoder) {
Rob Clarke2c719b2014-12-15 13:56:32 -05006182 I915_STATE_WARN(!encoder->connectors_active,
Dave Airlie36cd7442014-05-02 13:44:18 +10006183 "encoder->connectors_active not set\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006184
Dave Airlie36cd7442014-05-02 13:44:18 +10006185 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
Rob Clarke2c719b2014-12-15 13:56:32 -05006186 I915_STATE_WARN(!encoder_enabled, "encoder not enabled\n");
6187 if (I915_STATE_WARN_ON(!encoder->base.crtc))
Dave Airlie36cd7442014-05-02 13:44:18 +10006188 return;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006189
Dave Airlie36cd7442014-05-02 13:44:18 +10006190 crtc = encoder->base.crtc;
6191
Matt Roper83d65732015-02-25 13:12:16 -08006192 I915_STATE_WARN(!crtc->state->enable,
6193 "crtc not enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05006194 I915_STATE_WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
6195 I915_STATE_WARN(pipe != to_intel_crtc(crtc)->pipe,
Dave Airlie36cd7442014-05-02 13:44:18 +10006196 "encoder active on the wrong pipe\n");
6197 }
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006198 }
6199}
6200
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03006201int intel_connector_init(struct intel_connector *connector)
6202{
6203 struct drm_connector_state *connector_state;
6204
6205 connector_state = kzalloc(sizeof *connector_state, GFP_KERNEL);
6206 if (!connector_state)
6207 return -ENOMEM;
6208
6209 connector->base.state = connector_state;
6210 return 0;
6211}
6212
6213struct intel_connector *intel_connector_alloc(void)
6214{
6215 struct intel_connector *connector;
6216
6217 connector = kzalloc(sizeof *connector, GFP_KERNEL);
6218 if (!connector)
6219 return NULL;
6220
6221 if (intel_connector_init(connector) < 0) {
6222 kfree(connector);
6223 return NULL;
6224 }
6225
6226 return connector;
6227}
6228
Daniel Vetter5ab432e2012-06-30 08:59:56 +02006229/* Even simpler default implementation, if there's really no special case to
6230 * consider. */
6231void intel_connector_dpms(struct drm_connector *connector, int mode)
6232{
Daniel Vetter5ab432e2012-06-30 08:59:56 +02006233 /* All the simple cases only support two dpms states. */
6234 if (mode != DRM_MODE_DPMS_ON)
6235 mode = DRM_MODE_DPMS_OFF;
6236
6237 if (mode == connector->dpms)
6238 return;
6239
6240 connector->dpms = mode;
6241
6242 /* Only need to change hw state when actually enabled */
Chris Wilsonc9976dcf2013-09-29 19:15:07 +01006243 if (connector->encoder)
6244 intel_encoder_dpms(to_intel_encoder(connector->encoder), mode);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006245
Daniel Vetterb9805142012-08-31 17:37:33 +02006246 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02006247}
6248
Daniel Vetterf0947c32012-07-02 13:10:34 +02006249/* Simple connector->get_hw_state implementation for encoders that support only
6250 * one connector and no cloning and hence the encoder state determines the state
6251 * of the connector. */
6252bool intel_connector_get_hw_state(struct intel_connector *connector)
6253{
Daniel Vetter24929352012-07-02 20:28:59 +02006254 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02006255 struct intel_encoder *encoder = connector->encoder;
6256
6257 return encoder->get_hw_state(encoder, &pipe);
6258}
6259
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006260static int pipe_required_fdi_lanes(struct intel_crtc_state *crtc_state)
Ville Syrjäläd272ddf2015-03-11 18:52:31 +02006261{
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006262 if (crtc_state->base.enable && crtc_state->has_pch_encoder)
6263 return crtc_state->fdi_lanes;
Ville Syrjäläd272ddf2015-03-11 18:52:31 +02006264
6265 return 0;
6266}
6267
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006268static int ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006269 struct intel_crtc_state *pipe_config)
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006270{
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006271 struct drm_atomic_state *state = pipe_config->base.state;
6272 struct intel_crtc *other_crtc;
6273 struct intel_crtc_state *other_crtc_state;
6274
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006275 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
6276 pipe_name(pipe), pipe_config->fdi_lanes);
6277 if (pipe_config->fdi_lanes > 4) {
6278 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
6279 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006280 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006281 }
6282
Paulo Zanonibafb6552013-11-02 21:07:44 -07006283 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006284 if (pipe_config->fdi_lanes > 2) {
6285 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
6286 pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006287 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006288 } else {
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006289 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006290 }
6291 }
6292
6293 if (INTEL_INFO(dev)->num_pipes == 2)
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006294 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006295
6296 /* Ivybridge 3 pipe is really complicated */
6297 switch (pipe) {
6298 case PIPE_A:
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006299 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006300 case PIPE_B:
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006301 if (pipe_config->fdi_lanes <= 2)
6302 return 0;
6303
6304 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_C));
6305 other_crtc_state =
6306 intel_atomic_get_crtc_state(state, other_crtc);
6307 if (IS_ERR(other_crtc_state))
6308 return PTR_ERR(other_crtc_state);
6309
6310 if (pipe_required_fdi_lanes(other_crtc_state) > 0) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006311 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
6312 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006313 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006314 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006315 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006316 case PIPE_C:
Ville Syrjälä251cc672015-03-11 18:52:30 +02006317 if (pipe_config->fdi_lanes > 2) {
6318 DRM_DEBUG_KMS("only 2 lanes on pipe %c: required %i lanes\n",
6319 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006320 return -EINVAL;
Ville Syrjälä251cc672015-03-11 18:52:30 +02006321 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006322
6323 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_B));
6324 other_crtc_state =
6325 intel_atomic_get_crtc_state(state, other_crtc);
6326 if (IS_ERR(other_crtc_state))
6327 return PTR_ERR(other_crtc_state);
6328
6329 if (pipe_required_fdi_lanes(other_crtc_state) > 2) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006330 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006331 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006332 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006333 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006334 default:
6335 BUG();
6336 }
6337}
6338
Daniel Vettere29c22c2013-02-21 00:00:16 +01006339#define RETRY 1
6340static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006341 struct intel_crtc_state *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02006342{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006343 struct drm_device *dev = intel_crtc->base.dev;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006344 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006345 int lane, link_bw, fdi_dotclock, ret;
6346 bool needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02006347
Daniel Vettere29c22c2013-02-21 00:00:16 +01006348retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02006349 /* FDI is a binary signal running at ~2.7GHz, encoding
6350 * each output octet as 10 bits. The actual frequency
6351 * is stored as a divider into a 100MHz clock, and the
6352 * mode pixel clock is stored in units of 1KHz.
6353 * Hence the bw of each lane in terms of the mode signal
6354 * is:
6355 */
6356 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
6357
Damien Lespiau241bfc32013-09-25 16:45:37 +01006358 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02006359
Daniel Vetter2bd89a02013-06-01 17:16:19 +02006360 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02006361 pipe_config->pipe_bpp);
6362
6363 pipe_config->fdi_lanes = lane;
6364
Daniel Vetter2bd89a02013-06-01 17:16:19 +02006365 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02006366 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006367
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006368 ret = ironlake_check_fdi_lanes(intel_crtc->base.dev,
6369 intel_crtc->pipe, pipe_config);
6370 if (ret == -EINVAL && pipe_config->pipe_bpp > 6*3) {
Daniel Vettere29c22c2013-02-21 00:00:16 +01006371 pipe_config->pipe_bpp -= 2*3;
6372 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
6373 pipe_config->pipe_bpp);
6374 needs_recompute = true;
6375 pipe_config->bw_constrained = true;
6376
6377 goto retry;
6378 }
6379
6380 if (needs_recompute)
6381 return RETRY;
6382
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006383 return ret;
Daniel Vetter877d48d2013-04-19 11:24:43 +02006384}
6385
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006386static void hsw_compute_ips_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006387 struct intel_crtc_state *pipe_config)
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006388{
Jani Nikulad330a952014-01-21 11:24:25 +02006389 pipe_config->ips_enabled = i915.enable_ips &&
Paulo Zanoni3c4ca582013-05-31 16:33:23 -03006390 hsw_crtc_supports_ips(crtc) &&
Jesse Barnesb6dfdc92013-07-25 10:06:50 -07006391 pipe_config->pipe_bpp <= 24;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006392}
6393
Daniel Vettera43f6e02013-06-07 23:10:32 +02006394static int intel_crtc_compute_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006395 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08006396{
Daniel Vettera43f6e02013-06-07 23:10:32 +02006397 struct drm_device *dev = crtc->base.dev;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02006398 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02006399 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Chandra Kondurud03c93d2015-04-09 16:42:46 -07006400 int ret;
Chris Wilson89749352010-09-12 18:25:19 +01006401
Ville Syrjäläad3a4472013-09-04 18:30:04 +03006402 /* FIXME should check pixel clock limits on all platforms */
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006403 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006404 int clock_limit =
6405 dev_priv->display.get_display_clock_speed(dev);
6406
6407 /*
6408 * Enable pixel doubling when the dot clock
6409 * is > 90% of the (display) core speed.
6410 *
Ville Syrjäläb397c962013-09-04 18:30:06 +03006411 * GDG double wide on either pipe,
6412 * otherwise pipe A only.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006413 */
Ville Syrjäläb397c962013-09-04 18:30:06 +03006414 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
Damien Lespiau241bfc32013-09-25 16:45:37 +01006415 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
Ville Syrjäläad3a4472013-09-04 18:30:04 +03006416 clock_limit *= 2;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006417 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03006418 }
6419
Damien Lespiau241bfc32013-09-25 16:45:37 +01006420 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
Daniel Vettere29c22c2013-02-21 00:00:16 +01006421 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08006422 }
Chris Wilson89749352010-09-12 18:25:19 +01006423
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03006424 /*
6425 * Pipe horizontal size must be even in:
6426 * - DVO ganged mode
6427 * - LVDS dual channel mode
6428 * - Double wide pipe
6429 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02006430 if ((intel_pipe_will_have_type(pipe_config, INTEL_OUTPUT_LVDS) &&
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03006431 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
6432 pipe_config->pipe_src_w &= ~1;
6433
Damien Lespiau8693a822013-05-03 18:48:11 +01006434 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
6435 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03006436 */
6437 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
6438 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01006439 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03006440
Damien Lespiauf5adf942013-06-24 18:29:34 +01006441 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02006442 hsw_compute_ips_config(crtc, pipe_config);
6443
Daniel Vetter877d48d2013-04-19 11:24:43 +02006444 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02006445 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02006446
Chandra Kondurud03c93d2015-04-09 16:42:46 -07006447 /* FIXME: remove below call once atomic mode set is place and all crtc
6448 * related checks called from atomic_crtc_check function */
6449 ret = 0;
6450 DRM_DEBUG_KMS("intel_crtc = %p drm_state (pipe_config->base.state) = %p\n",
6451 crtc, pipe_config->base.state);
6452 ret = intel_atomic_setup_scalers(dev, crtc, pipe_config);
6453
6454 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08006455}
6456
Ville Syrjälä1652d192015-03-31 14:12:01 +03006457static int skylake_get_display_clock_speed(struct drm_device *dev)
6458{
6459 struct drm_i915_private *dev_priv = to_i915(dev);
6460 uint32_t lcpll1 = I915_READ(LCPLL1_CTL);
6461 uint32_t cdctl = I915_READ(CDCLK_CTL);
6462 uint32_t linkrate;
6463
6464 if (!(lcpll1 & LCPLL_PLL_ENABLE)) {
6465 WARN(1, "LCPLL1 not enabled\n");
6466 return 24000; /* 24MHz is the cd freq with NSSC ref */
6467 }
6468
6469 if ((cdctl & CDCLK_FREQ_SEL_MASK) == CDCLK_FREQ_540)
6470 return 540000;
6471
6472 linkrate = (I915_READ(DPLL_CTRL1) &
Damien Lespiau71cd8422015-04-30 16:39:17 +01006473 DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0)) >> 1;
Ville Syrjälä1652d192015-03-31 14:12:01 +03006474
Damien Lespiau71cd8422015-04-30 16:39:17 +01006475 if (linkrate == DPLL_CTRL1_LINK_RATE_2160 ||
6476 linkrate == DPLL_CTRL1_LINK_RATE_1080) {
Ville Syrjälä1652d192015-03-31 14:12:01 +03006477 /* vco 8640 */
6478 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6479 case CDCLK_FREQ_450_432:
6480 return 432000;
6481 case CDCLK_FREQ_337_308:
6482 return 308570;
6483 case CDCLK_FREQ_675_617:
6484 return 617140;
6485 default:
6486 WARN(1, "Unknown cd freq selection\n");
6487 }
6488 } else {
6489 /* vco 8100 */
6490 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6491 case CDCLK_FREQ_450_432:
6492 return 450000;
6493 case CDCLK_FREQ_337_308:
6494 return 337500;
6495 case CDCLK_FREQ_675_617:
6496 return 675000;
6497 default:
6498 WARN(1, "Unknown cd freq selection\n");
6499 }
6500 }
6501
6502 /* error case, do as if DPLL0 isn't enabled */
6503 return 24000;
6504}
6505
6506static int broadwell_get_display_clock_speed(struct drm_device *dev)
6507{
6508 struct drm_i915_private *dev_priv = dev->dev_private;
6509 uint32_t lcpll = I915_READ(LCPLL_CTL);
6510 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6511
6512 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6513 return 800000;
6514 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6515 return 450000;
6516 else if (freq == LCPLL_CLK_FREQ_450)
6517 return 450000;
6518 else if (freq == LCPLL_CLK_FREQ_54O_BDW)
6519 return 540000;
6520 else if (freq == LCPLL_CLK_FREQ_337_5_BDW)
6521 return 337500;
6522 else
6523 return 675000;
6524}
6525
6526static int haswell_get_display_clock_speed(struct drm_device *dev)
6527{
6528 struct drm_i915_private *dev_priv = dev->dev_private;
6529 uint32_t lcpll = I915_READ(LCPLL_CTL);
6530 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6531
6532 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6533 return 800000;
6534 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6535 return 450000;
6536 else if (freq == LCPLL_CLK_FREQ_450)
6537 return 450000;
6538 else if (IS_HSW_ULT(dev))
6539 return 337500;
6540 else
6541 return 540000;
Jesse Barnes79e53942008-11-07 14:24:08 -08006542}
6543
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07006544static int valleyview_get_display_clock_speed(struct drm_device *dev)
6545{
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03006546 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03006547 u32 val;
6548 int divider;
6549
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03006550 if (dev_priv->hpll_freq == 0)
6551 dev_priv->hpll_freq = valleyview_get_vco(dev_priv);
6552
Ville Syrjäläd197b7d2014-06-13 13:37:49 +03006553 mutex_lock(&dev_priv->dpio_lock);
6554 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
6555 mutex_unlock(&dev_priv->dpio_lock);
6556
6557 divider = val & DISPLAY_FREQUENCY_VALUES;
6558
Ville Syrjälä7d007f42014-06-13 13:37:53 +03006559 WARN((val & DISPLAY_FREQUENCY_STATUS) !=
6560 (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
6561 "cdclk change in progress\n");
6562
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03006563 return DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, divider + 1);
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07006564}
6565
Ville Syrjäläb37a6432015-03-31 14:11:54 +03006566static int ilk_get_display_clock_speed(struct drm_device *dev)
6567{
6568 return 450000;
6569}
6570
Jesse Barnese70236a2009-09-21 10:42:27 -07006571static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08006572{
Jesse Barnese70236a2009-09-21 10:42:27 -07006573 return 400000;
6574}
Jesse Barnes79e53942008-11-07 14:24:08 -08006575
Jesse Barnese70236a2009-09-21 10:42:27 -07006576static int i915_get_display_clock_speed(struct drm_device *dev)
6577{
Ville Syrjäläe907f172015-03-31 14:09:47 +03006578 return 333333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006579}
Jesse Barnes79e53942008-11-07 14:24:08 -08006580
Jesse Barnese70236a2009-09-21 10:42:27 -07006581static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
6582{
6583 return 200000;
6584}
Jesse Barnes79e53942008-11-07 14:24:08 -08006585
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006586static int pnv_get_display_clock_speed(struct drm_device *dev)
6587{
6588 u16 gcfgc = 0;
6589
6590 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6591
6592 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6593 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006594 return 266667;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006595 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006596 return 333333;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006597 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006598 return 444444;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006599 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
6600 return 200000;
6601 default:
6602 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
6603 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006604 return 133333;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006605 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006606 return 166667;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006607 }
6608}
6609
Jesse Barnese70236a2009-09-21 10:42:27 -07006610static int i915gm_get_display_clock_speed(struct drm_device *dev)
6611{
6612 u16 gcfgc = 0;
6613
6614 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6615
6616 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Ville Syrjäläe907f172015-03-31 14:09:47 +03006617 return 133333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006618 else {
6619 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6620 case GC_DISPLAY_CLOCK_333_MHZ:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006621 return 333333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006622 default:
6623 case GC_DISPLAY_CLOCK_190_200_MHZ:
6624 return 190000;
6625 }
6626 }
6627}
Jesse Barnes79e53942008-11-07 14:24:08 -08006628
Jesse Barnese70236a2009-09-21 10:42:27 -07006629static int i865_get_display_clock_speed(struct drm_device *dev)
6630{
Ville Syrjäläe907f172015-03-31 14:09:47 +03006631 return 266667;
Jesse Barnese70236a2009-09-21 10:42:27 -07006632}
6633
6634static int i855_get_display_clock_speed(struct drm_device *dev)
6635{
6636 u16 hpllcc = 0;
6637 /* Assume that the hardware is in the high speed state. This
6638 * should be the default.
6639 */
6640 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
6641 case GC_CLOCK_133_200:
6642 case GC_CLOCK_100_200:
6643 return 200000;
6644 case GC_CLOCK_166_250:
6645 return 250000;
6646 case GC_CLOCK_100_133:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006647 return 133333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006648 }
6649
6650 /* Shouldn't happen */
6651 return 0;
6652}
6653
6654static int i830_get_display_clock_speed(struct drm_device *dev)
6655{
Ville Syrjäläe907f172015-03-31 14:09:47 +03006656 return 133333;
Jesse Barnes79e53942008-11-07 14:24:08 -08006657}
6658
Zhenyu Wang2c072452009-06-05 15:38:42 +08006659static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03006660intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08006661{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03006662 while (*num > DATA_LINK_M_N_MASK ||
6663 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08006664 *num >>= 1;
6665 *den >>= 1;
6666 }
6667}
6668
Ville Syrjäläa65851a2013-04-23 15:03:34 +03006669static void compute_m_n(unsigned int m, unsigned int n,
6670 uint32_t *ret_m, uint32_t *ret_n)
6671{
6672 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
6673 *ret_m = div_u64((uint64_t) m * *ret_n, n);
6674 intel_reduce_m_n_ratio(ret_m, ret_n);
6675}
6676
Daniel Vettere69d0bc2012-11-29 15:59:36 +01006677void
6678intel_link_compute_m_n(int bits_per_pixel, int nlanes,
6679 int pixel_clock, int link_clock,
6680 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08006681{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01006682 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03006683
6684 compute_m_n(bits_per_pixel * pixel_clock,
6685 link_clock * nlanes * 8,
6686 &m_n->gmch_m, &m_n->gmch_n);
6687
6688 compute_m_n(pixel_clock, link_clock,
6689 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08006690}
6691
Chris Wilsona7615032011-01-12 17:04:08 +00006692static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
6693{
Jani Nikulad330a952014-01-21 11:24:25 +02006694 if (i915.panel_use_ssc >= 0)
6695 return i915.panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006696 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07006697 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00006698}
6699
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02006700static int i9xx_get_refclk(const struct intel_crtc_state *crtc_state,
6701 int num_connectors)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08006702{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02006703 struct drm_device *dev = crtc_state->base.crtc->dev;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08006704 struct drm_i915_private *dev_priv = dev->dev_private;
6705 int refclk;
6706
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02006707 WARN_ON(!crtc_state->base.state);
6708
Imre Deak5ab7b0b2015-03-06 03:29:25 +02006709 if (IS_VALLEYVIEW(dev) || IS_BROXTON(dev)) {
Daniel Vetter9a0ea492013-09-16 11:29:34 +02006710 refclk = 100000;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02006711 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08006712 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006713 refclk = dev_priv->vbt.lvds_ssc_freq;
6714 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
Jesse Barnesc65d77d2011-12-15 12:30:36 -08006715 } else if (!IS_GEN2(dev)) {
6716 refclk = 96000;
6717 } else {
6718 refclk = 48000;
6719 }
6720
6721 return refclk;
6722}
6723
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006724static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08006725{
Daniel Vetter7df00d72013-05-21 21:54:55 +02006726 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006727}
Daniel Vetterf47709a2013-03-28 10:42:02 +01006728
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006729static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
6730{
6731 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08006732}
6733
Daniel Vetterf47709a2013-03-28 10:42:02 +01006734static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006735 struct intel_crtc_state *crtc_state,
Jesse Barnesa7516a02011-12-15 12:30:37 -08006736 intel_clock_t *reduced_clock)
6737{
Daniel Vetterf47709a2013-03-28 10:42:02 +01006738 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08006739 u32 fp, fp2 = 0;
6740
6741 if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006742 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08006743 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006744 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08006745 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006746 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08006747 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006748 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08006749 }
6750
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006751 crtc_state->dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08006752
Daniel Vetterf47709a2013-03-28 10:42:02 +01006753 crtc->lowfreq_avail = false;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02006754 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Rodrigo Viviab585de2015-03-24 12:40:09 -07006755 reduced_clock) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006756 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01006757 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08006758 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02006759 crtc_state->dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08006760 }
6761}
6762
Chon Ming Lee5e69f972013-09-05 20:41:49 +08006763static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
6764 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07006765{
6766 u32 reg_val;
6767
6768 /*
6769 * PLLB opamp always calibrates to max value of 0x3f, force enable it
6770 * and set it to a reasonable value instead.
6771 */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006772 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07006773 reg_val &= 0xffffff00;
6774 reg_val |= 0x00000030;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006775 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006776
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006777 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006778 reg_val &= 0x8cffffff;
6779 reg_val = 0x8c000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006780 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006781
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006782 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07006783 reg_val &= 0xffffff00;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006784 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006785
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006786 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006787 reg_val &= 0x00ffffff;
6788 reg_val |= 0xb0000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006789 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006790}
6791
Daniel Vetterb5518422013-05-03 11:49:48 +02006792static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
6793 struct intel_link_m_n *m_n)
6794{
6795 struct drm_device *dev = crtc->base.dev;
6796 struct drm_i915_private *dev_priv = dev->dev_private;
6797 int pipe = crtc->pipe;
6798
Daniel Vettere3b95f12013-05-03 11:49:49 +02006799 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
6800 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
6801 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
6802 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02006803}
6804
6805static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -07006806 struct intel_link_m_n *m_n,
6807 struct intel_link_m_n *m2_n2)
Daniel Vetterb5518422013-05-03 11:49:48 +02006808{
6809 struct drm_device *dev = crtc->base.dev;
6810 struct drm_i915_private *dev_priv = dev->dev_private;
6811 int pipe = crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006812 enum transcoder transcoder = crtc->config->cpu_transcoder;
Daniel Vetterb5518422013-05-03 11:49:48 +02006813
6814 if (INTEL_INFO(dev)->gen >= 5) {
6815 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
6816 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
6817 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
6818 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
Vandana Kannanf769cd22014-08-05 07:51:22 -07006819 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
6820 * for gen < 8) and if DRRS is supported (to make sure the
6821 * registers are not unnecessarily accessed).
6822 */
Durgadoss R44395bf2015-02-13 15:33:02 +05306823 if (m2_n2 && (IS_CHERRYVIEW(dev) || INTEL_INFO(dev)->gen < 8) &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006824 crtc->config->has_drrs) {
Vandana Kannanf769cd22014-08-05 07:51:22 -07006825 I915_WRITE(PIPE_DATA_M2(transcoder),
6826 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
6827 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
6828 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
6829 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
6830 }
Daniel Vetterb5518422013-05-03 11:49:48 +02006831 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02006832 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
6833 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
6834 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
6835 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02006836 }
6837}
6838
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05306839void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n)
Daniel Vetter03afc4a2013-04-02 23:42:31 +02006840{
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05306841 struct intel_link_m_n *dp_m_n, *dp_m2_n2 = NULL;
6842
6843 if (m_n == M1_N1) {
6844 dp_m_n = &crtc->config->dp_m_n;
6845 dp_m2_n2 = &crtc->config->dp_m2_n2;
6846 } else if (m_n == M2_N2) {
6847
6848 /*
6849 * M2_N2 registers are not supported. Hence m2_n2 divider value
6850 * needs to be programmed into M1_N1.
6851 */
6852 dp_m_n = &crtc->config->dp_m2_n2;
6853 } else {
6854 DRM_ERROR("Unsupported divider value\n");
6855 return;
6856 }
6857
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006858 if (crtc->config->has_pch_encoder)
6859 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02006860 else
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05306861 intel_cpu_transcoder_set_m_n(crtc, dp_m_n, dp_m2_n2);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02006862}
6863
Ville Syrjäläd288f652014-10-28 13:20:22 +02006864static void vlv_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006865 struct intel_crtc_state *pipe_config)
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006866{
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006867 u32 dpll, dpll_md;
6868
6869 /*
6870 * Enable DPIO clock input. We should never disable the reference
6871 * clock for pipe B, since VGA hotplug / manual detection depends
6872 * on it.
6873 */
6874 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
6875 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
6876 /* We should never disable this, set it here for state tracking */
6877 if (crtc->pipe == PIPE_B)
6878 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
6879 dpll |= DPLL_VCO_ENABLE;
Ville Syrjäläd288f652014-10-28 13:20:22 +02006880 pipe_config->dpll_hw_state.dpll = dpll;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006881
Ville Syrjäläd288f652014-10-28 13:20:22 +02006882 dpll_md = (pipe_config->pixel_multiplier - 1)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006883 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjäläd288f652014-10-28 13:20:22 +02006884 pipe_config->dpll_hw_state.dpll_md = dpll_md;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006885}
6886
Ville Syrjäläd288f652014-10-28 13:20:22 +02006887static void vlv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006888 const struct intel_crtc_state *pipe_config)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006889{
Daniel Vetterf47709a2013-03-28 10:42:02 +01006890 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006891 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01006892 int pipe = crtc->pipe;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006893 u32 mdiv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006894 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006895 u32 coreclk, reg_val;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006896
Daniel Vetter09153002012-12-12 14:06:44 +01006897 mutex_lock(&dev_priv->dpio_lock);
6898
Ville Syrjäläd288f652014-10-28 13:20:22 +02006899 bestn = pipe_config->dpll.n;
6900 bestm1 = pipe_config->dpll.m1;
6901 bestm2 = pipe_config->dpll.m2;
6902 bestp1 = pipe_config->dpll.p1;
6903 bestp2 = pipe_config->dpll.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006904
Jesse Barnes89b667f2013-04-18 14:51:36 -07006905 /* See eDP HDMI DPIO driver vbios notes doc */
6906
6907 /* PLL B needs special handling */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006908 if (pipe == PIPE_B)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08006909 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006910
6911 /* Set up Tx target for periodic Rcomp update */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006912 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006913
6914 /* Disable target IRef on PLL */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006915 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07006916 reg_val &= 0x00ffffff;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006917 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006918
6919 /* Disable fast lock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006920 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006921
6922 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006923 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
6924 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
6925 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006926 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07006927
6928 /*
6929 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
6930 * but we don't support that).
6931 * Note: don't use the DAC post divider as it seems unstable.
6932 */
6933 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006934 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006935
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006936 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006937 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006938
Jesse Barnes89b667f2013-04-18 14:51:36 -07006939 /* Set HBR and RBR LPF coefficients */
Ville Syrjäläd288f652014-10-28 13:20:22 +02006940 if (pipe_config->port_clock == 162000 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006941 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG) ||
6942 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006943 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Ville Syrjälä885b0122013-07-05 19:21:38 +03006944 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006945 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006946 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006947 0x00d0000f);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006948
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02006949 if (pipe_config->has_dp_encoder) {
Jesse Barnes89b667f2013-04-18 14:51:36 -07006950 /* Use SSC source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006951 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006952 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006953 0x0df40000);
6954 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006955 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006956 0x0df70000);
6957 } else { /* HDMI or VGA */
6958 /* Use bend source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02006959 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006960 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006961 0x0df70000);
6962 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006963 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07006964 0x0df40000);
6965 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006966
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006967 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07006968 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006969 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
6970 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
Jesse Barnes89b667f2013-04-18 14:51:36 -07006971 coreclk |= 0x01000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006972 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006973
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006974 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
Daniel Vetter09153002012-12-12 14:06:44 +01006975 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07006976}
6977
Ville Syrjäläd288f652014-10-28 13:20:22 +02006978static void chv_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006979 struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006980{
Ville Syrjäläd288f652014-10-28 13:20:22 +02006981 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLOCK_CHV |
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006982 DPLL_REFA_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
6983 DPLL_VCO_ENABLE;
6984 if (crtc->pipe != PIPE_A)
Ville Syrjäläd288f652014-10-28 13:20:22 +02006985 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006986
Ville Syrjäläd288f652014-10-28 13:20:22 +02006987 pipe_config->dpll_hw_state.dpll_md =
6988 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006989}
6990
Ville Syrjäläd288f652014-10-28 13:20:22 +02006991static void chv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006992 const struct intel_crtc_state *pipe_config)
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03006993{
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006994 struct drm_device *dev = crtc->base.dev;
6995 struct drm_i915_private *dev_priv = dev->dev_private;
6996 int pipe = crtc->pipe;
6997 int dpll_reg = DPLL(crtc->pipe);
6998 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05306999 u32 loopfilter, tribuf_calcntr;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007000 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307001 u32 dpio_val;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307002 int vco;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007003
Ville Syrjäläd288f652014-10-28 13:20:22 +02007004 bestn = pipe_config->dpll.n;
7005 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
7006 bestm1 = pipe_config->dpll.m1;
7007 bestm2 = pipe_config->dpll.m2 >> 22;
7008 bestp1 = pipe_config->dpll.p1;
7009 bestp2 = pipe_config->dpll.p2;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307010 vco = pipe_config->dpll.vco;
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307011 dpio_val = 0;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307012 loopfilter = 0;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007013
7014 /*
7015 * Enable Refclk and SSC
7016 */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03007017 I915_WRITE(dpll_reg,
Ville Syrjäläd288f652014-10-28 13:20:22 +02007018 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03007019
7020 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007021
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007022 /* p1 and p2 divider */
7023 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
7024 5 << DPIO_CHV_S1_DIV_SHIFT |
7025 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
7026 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
7027 1 << DPIO_CHV_K_DIV_SHIFT);
7028
7029 /* Feedback post-divider - m2 */
7030 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
7031
7032 /* Feedback refclk divider - n and m1 */
7033 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
7034 DPIO_CHV_M1_DIV_BY_2 |
7035 1 << DPIO_CHV_N_DIV_SHIFT);
7036
7037 /* M2 fraction division */
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307038 if (bestm2_frac)
7039 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007040
7041 /* M2 fraction division enable */
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307042 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
7043 dpio_val &= ~(DPIO_CHV_FEEDFWD_GAIN_MASK | DPIO_CHV_FRAC_DIV_EN);
7044 dpio_val |= (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT);
7045 if (bestm2_frac)
7046 dpio_val |= DPIO_CHV_FRAC_DIV_EN;
7047 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port), dpio_val);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007048
Vijay Purushothamande3a0fd2015-03-05 19:32:06 +05307049 /* Program digital lock detect threshold */
7050 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW9(port));
7051 dpio_val &= ~(DPIO_CHV_INT_LOCK_THRESHOLD_MASK |
7052 DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE);
7053 dpio_val |= (0x5 << DPIO_CHV_INT_LOCK_THRESHOLD_SHIFT);
7054 if (!bestm2_frac)
7055 dpio_val |= DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE;
7056 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW9(port), dpio_val);
7057
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007058 /* Loop filter */
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307059 if (vco == 5400000) {
7060 loopfilter |= (0x3 << DPIO_CHV_PROP_COEFF_SHIFT);
7061 loopfilter |= (0x8 << DPIO_CHV_INT_COEFF_SHIFT);
7062 loopfilter |= (0x1 << DPIO_CHV_GAIN_CTRL_SHIFT);
7063 tribuf_calcntr = 0x9;
7064 } else if (vco <= 6200000) {
7065 loopfilter |= (0x5 << DPIO_CHV_PROP_COEFF_SHIFT);
7066 loopfilter |= (0xB << DPIO_CHV_INT_COEFF_SHIFT);
7067 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7068 tribuf_calcntr = 0x9;
7069 } else if (vco <= 6480000) {
7070 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7071 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7072 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7073 tribuf_calcntr = 0x8;
7074 } else {
7075 /* Not supported. Apply the same limits as in the max case */
7076 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7077 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7078 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7079 tribuf_calcntr = 0;
7080 }
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007081 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
7082
Ville Syrjälä968040b2015-03-11 22:52:08 +02007083 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW8(port));
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307084 dpio_val &= ~DPIO_CHV_TDC_TARGET_CNT_MASK;
7085 dpio_val |= (tribuf_calcntr << DPIO_CHV_TDC_TARGET_CNT_SHIFT);
7086 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW8(port), dpio_val);
7087
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007088 /* AFC Recal */
7089 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
7090 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
7091 DPIO_AFC_RECAL);
7092
7093 mutex_unlock(&dev_priv->dpio_lock);
7094}
7095
Ville Syrjäläd288f652014-10-28 13:20:22 +02007096/**
7097 * vlv_force_pll_on - forcibly enable just the PLL
7098 * @dev_priv: i915 private structure
7099 * @pipe: pipe PLL to enable
7100 * @dpll: PLL configuration
7101 *
7102 * Enable the PLL for @pipe using the supplied @dpll config. To be used
7103 * in cases where we need the PLL enabled even when @pipe is not going to
7104 * be enabled.
7105 */
7106void vlv_force_pll_on(struct drm_device *dev, enum pipe pipe,
7107 const struct dpll *dpll)
7108{
7109 struct intel_crtc *crtc =
7110 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007111 struct intel_crtc_state pipe_config = {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007112 .base.crtc = &crtc->base,
Ville Syrjäläd288f652014-10-28 13:20:22 +02007113 .pixel_multiplier = 1,
7114 .dpll = *dpll,
7115 };
7116
7117 if (IS_CHERRYVIEW(dev)) {
7118 chv_update_pll(crtc, &pipe_config);
7119 chv_prepare_pll(crtc, &pipe_config);
7120 chv_enable_pll(crtc, &pipe_config);
7121 } else {
7122 vlv_update_pll(crtc, &pipe_config);
7123 vlv_prepare_pll(crtc, &pipe_config);
7124 vlv_enable_pll(crtc, &pipe_config);
7125 }
7126}
7127
7128/**
7129 * vlv_force_pll_off - forcibly disable just the PLL
7130 * @dev_priv: i915 private structure
7131 * @pipe: pipe PLL to disable
7132 *
7133 * Disable the PLL for @pipe. To be used in cases where we need
7134 * the PLL enabled even when @pipe is not going to be enabled.
7135 */
7136void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe)
7137{
7138 if (IS_CHERRYVIEW(dev))
7139 chv_disable_pll(to_i915(dev), pipe);
7140 else
7141 vlv_disable_pll(to_i915(dev), pipe);
7142}
7143
Daniel Vetterf47709a2013-03-28 10:42:02 +01007144static void i9xx_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007145 struct intel_crtc_state *crtc_state,
Daniel Vetterf47709a2013-03-28 10:42:02 +01007146 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007147 int num_connectors)
7148{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007149 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007150 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007151 u32 dpll;
7152 bool is_sdvo;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007153 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007154
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007155 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05307156
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007157 is_sdvo = intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO) ||
7158 intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007159
7160 dpll = DPLL_VGA_MODE_DIS;
7161
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007162 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007163 dpll |= DPLLB_MODE_LVDS;
7164 else
7165 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01007166
Daniel Vetteref1b4602013-06-01 17:17:04 +02007167 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007168 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetter198a037f2013-04-19 11:14:37 +02007169 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007170 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02007171
7172 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007173 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007174
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007175 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007176 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007177
7178 /* compute bitmask from p1 value */
7179 if (IS_PINEVIEW(dev))
7180 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
7181 else {
7182 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7183 if (IS_G4X(dev) && reduced_clock)
7184 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
7185 }
7186 switch (clock->p2) {
7187 case 5:
7188 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
7189 break;
7190 case 7:
7191 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
7192 break;
7193 case 10:
7194 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
7195 break;
7196 case 14:
7197 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
7198 break;
7199 }
7200 if (INTEL_INFO(dev)->gen >= 4)
7201 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
7202
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007203 if (crtc_state->sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007204 dpll |= PLL_REF_INPUT_TVCLKINBC;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007205 else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007206 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
7207 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7208 else
7209 dpll |= PLL_REF_INPUT_DREFCLK;
7210
7211 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007212 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02007213
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007214 if (INTEL_INFO(dev)->gen >= 4) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007215 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02007216 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007217 crtc_state->dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007218 }
7219}
7220
Daniel Vetterf47709a2013-03-28 10:42:02 +01007221static void i8xx_update_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007222 struct intel_crtc_state *crtc_state,
Daniel Vetterf47709a2013-03-28 10:42:02 +01007223 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007224 int num_connectors)
7225{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007226 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007227 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007228 u32 dpll;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007229 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007230
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007231 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05307232
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007233 dpll = DPLL_VGA_MODE_DIS;
7234
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007235 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007236 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7237 } else {
7238 if (clock->p1 == 2)
7239 dpll |= PLL_P1_DIVIDE_BY_TWO;
7240 else
7241 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7242 if (clock->p2 == 4)
7243 dpll |= PLL_P2_DIVIDE_BY_4;
7244 }
7245
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007246 if (!IS_I830(dev) && intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO))
Daniel Vetter4a33e482013-07-06 12:52:05 +02007247 dpll |= DPLL_DVO_2X_MODE;
7248
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007249 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007250 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
7251 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7252 else
7253 dpll |= PLL_REF_INPUT_DREFCLK;
7254
7255 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007256 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007257}
7258
Daniel Vetter8a654f32013-06-01 17:16:22 +02007259static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007260{
7261 struct drm_device *dev = intel_crtc->base.dev;
7262 struct drm_i915_private *dev_priv = dev->dev_private;
7263 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007264 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Daniel Vetter8a654f32013-06-01 17:16:22 +02007265 struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007266 &intel_crtc->config->base.adjusted_mode;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02007267 uint32_t crtc_vtotal, crtc_vblank_end;
7268 int vsyncshift = 0;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007269
7270 /* We need to be careful not to changed the adjusted mode, for otherwise
7271 * the hw state checker will get angry at the mismatch. */
7272 crtc_vtotal = adjusted_mode->crtc_vtotal;
7273 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007274
Ville Syrjälä609aeac2014-03-28 23:29:30 +02007275 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007276 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007277 crtc_vtotal -= 1;
7278 crtc_vblank_end -= 1;
Ville Syrjälä609aeac2014-03-28 23:29:30 +02007279
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007280 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjälä609aeac2014-03-28 23:29:30 +02007281 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
7282 else
7283 vsyncshift = adjusted_mode->crtc_hsync_start -
7284 adjusted_mode->crtc_htotal / 2;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02007285 if (vsyncshift < 0)
7286 vsyncshift += adjusted_mode->crtc_htotal;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007287 }
7288
7289 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007290 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007291
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007292 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007293 (adjusted_mode->crtc_hdisplay - 1) |
7294 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007295 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007296 (adjusted_mode->crtc_hblank_start - 1) |
7297 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007298 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007299 (adjusted_mode->crtc_hsync_start - 1) |
7300 ((adjusted_mode->crtc_hsync_end - 1) << 16));
7301
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007302 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007303 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007304 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007305 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007306 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007307 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007308 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007309 (adjusted_mode->crtc_vsync_start - 1) |
7310 ((adjusted_mode->crtc_vsync_end - 1) << 16));
7311
Paulo Zanonib5e508d2012-10-24 11:34:43 -02007312 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
7313 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
7314 * documented on the DDI_FUNC_CTL register description, EDP Input Select
7315 * bits. */
7316 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
7317 (pipe == PIPE_B || pipe == PIPE_C))
7318 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
7319
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007320 /* pipesrc controls the size that is scaled from, which should
7321 * always be the user's requested size.
7322 */
7323 I915_WRITE(PIPESRC(pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007324 ((intel_crtc->config->pipe_src_w - 1) << 16) |
7325 (intel_crtc->config->pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007326}
7327
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007328static void intel_get_pipe_timings(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007329 struct intel_crtc_state *pipe_config)
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007330{
7331 struct drm_device *dev = crtc->base.dev;
7332 struct drm_i915_private *dev_priv = dev->dev_private;
7333 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
7334 uint32_t tmp;
7335
7336 tmp = I915_READ(HTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007337 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
7338 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007339 tmp = I915_READ(HBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007340 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
7341 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007342 tmp = I915_READ(HSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007343 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
7344 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007345
7346 tmp = I915_READ(VTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007347 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
7348 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007349 tmp = I915_READ(VBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007350 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
7351 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007352 tmp = I915_READ(VSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007353 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
7354 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007355
7356 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007357 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
7358 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
7359 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007360 }
7361
7362 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03007363 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
7364 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
7365
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007366 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
7367 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007368}
7369
Daniel Vetterf6a83282014-02-11 15:28:57 -08007370void intel_mode_from_pipe_config(struct drm_display_mode *mode,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007371 struct intel_crtc_state *pipe_config)
Jesse Barnesbabea612013-06-26 18:57:38 +03007372{
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007373 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
7374 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
7375 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
7376 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03007377
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007378 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
7379 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
7380 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
7381 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03007382
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007383 mode->flags = pipe_config->base.adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03007384
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007385 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
7386 mode->flags |= pipe_config->base.adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03007387}
7388
Daniel Vetter84b046f2013-02-19 18:48:54 +01007389static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
7390{
7391 struct drm_device *dev = intel_crtc->base.dev;
7392 struct drm_i915_private *dev_priv = dev->dev_private;
7393 uint32_t pipeconf;
7394
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02007395 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01007396
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03007397 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
7398 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
7399 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
Daniel Vetter67c72a12013-09-24 11:46:14 +02007400
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007401 if (intel_crtc->config->double_wide)
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03007402 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01007403
Daniel Vetterff9ce462013-04-24 14:57:17 +02007404 /* only g4x and later have fancy bpc/dither controls */
7405 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02007406 /* Bspec claims that we can't use dithering for 30bpp pipes. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007407 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
Daniel Vetterff9ce462013-04-24 14:57:17 +02007408 pipeconf |= PIPECONF_DITHER_EN |
7409 PIPECONF_DITHER_TYPE_SP;
7410
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007411 switch (intel_crtc->config->pipe_bpp) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02007412 case 18:
7413 pipeconf |= PIPECONF_6BPC;
7414 break;
7415 case 24:
7416 pipeconf |= PIPECONF_8BPC;
7417 break;
7418 case 30:
7419 pipeconf |= PIPECONF_10BPC;
7420 break;
7421 default:
7422 /* Case prevented by intel_choose_pipe_bpp_dither. */
7423 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01007424 }
7425 }
7426
7427 if (HAS_PIPE_CXSR(dev)) {
7428 if (intel_crtc->lowfreq_avail) {
7429 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
7430 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
7431 } else {
7432 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01007433 }
7434 }
7435
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007436 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02007437 if (INTEL_INFO(dev)->gen < 4 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007438 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02007439 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
7440 else
7441 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
7442 } else
Daniel Vetter84b046f2013-02-19 18:48:54 +01007443 pipeconf |= PIPECONF_PROGRESSIVE;
7444
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007445 if (IS_VALLEYVIEW(dev) && intel_crtc->config->limited_color_range)
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02007446 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03007447
Daniel Vetter84b046f2013-02-19 18:48:54 +01007448 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
7449 POSTING_READ(PIPECONF(intel_crtc->pipe));
7450}
7451
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007452static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
7453 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08007454{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007455 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08007456 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholtc751ce42010-03-25 11:48:48 -07007457 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07007458 intel_clock_t clock, reduced_clock;
Daniel Vettera16af722013-04-30 14:01:44 +02007459 bool ok, has_reduced_clock = false;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007460 bool is_lvds = false, is_dsi = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01007461 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08007462 const intel_limit_t *limit;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02007463 struct drm_atomic_state *state = crtc_state->base.state;
7464 struct drm_connector_state *connector_state;
7465 int i;
Jesse Barnes79e53942008-11-07 14:24:08 -08007466
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02007467 for (i = 0; i < state->num_connector; i++) {
7468 if (!state->connectors[i])
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02007469 continue;
7470
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02007471 connector_state = state->connector_states[i];
7472 if (connector_state->crtc != &crtc->base)
7473 continue;
7474
7475 encoder = to_intel_encoder(connector_state->best_encoder);
7476
Chris Wilson5eddb702010-09-11 13:48:45 +01007477 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08007478 case INTEL_OUTPUT_LVDS:
7479 is_lvds = true;
7480 break;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007481 case INTEL_OUTPUT_DSI:
7482 is_dsi = true;
7483 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007484 default:
7485 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08007486 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05007487
Eric Anholtc751ce42010-03-25 11:48:48 -07007488 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08007489 }
7490
Jani Nikulaf2335332013-09-13 11:03:09 +03007491 if (is_dsi)
Daniel Vetter5b18e572014-04-24 23:55:06 +02007492 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007493
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007494 if (!crtc_state->clock_set) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007495 refclk = i9xx_get_refclk(crtc_state, num_connectors);
Jani Nikulaf2335332013-09-13 11:03:09 +03007496
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007497 /*
7498 * Returns a set of divisors for the desired target clock with
7499 * the given refclk, or FALSE. The returned values represent
7500 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
7501 * 2) / p1 / p2.
7502 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007503 limit = intel_limit(crtc_state, refclk);
7504 ok = dev_priv->display.find_dpll(limit, crtc_state,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007505 crtc_state->port_clock,
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007506 refclk, NULL, &clock);
Jani Nikulaf2335332013-09-13 11:03:09 +03007507 if (!ok) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007508 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7509 return -EINVAL;
7510 }
Eric Anholtf564048e2011-03-30 13:01:02 -07007511
Jani Nikulaf2335332013-09-13 11:03:09 +03007512 if (is_lvds && dev_priv->lvds_downclock_avail) {
7513 /*
7514 * Ensure we match the reduced clock's P to the target
7515 * clock. If the clocks don't match, we can't switch
7516 * the display clock by using the FP0/FP1. In such case
7517 * we will disable the LVDS downclock feature.
7518 */
7519 has_reduced_clock =
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007520 dev_priv->display.find_dpll(limit, crtc_state,
Jani Nikulaf2335332013-09-13 11:03:09 +03007521 dev_priv->lvds_downclock,
7522 refclk, &clock,
7523 &reduced_clock);
7524 }
7525 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007526 crtc_state->dpll.n = clock.n;
7527 crtc_state->dpll.m1 = clock.m1;
7528 crtc_state->dpll.m2 = clock.m2;
7529 crtc_state->dpll.p1 = clock.p1;
7530 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01007531 }
Eric Anholtf564048e2011-03-30 13:01:02 -07007532
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007533 if (IS_GEN2(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007534 i8xx_update_pll(crtc, crtc_state,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05307535 has_reduced_clock ? &reduced_clock : NULL,
7536 num_connectors);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007537 } else if (IS_CHERRYVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007538 chv_update_pll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007539 } else if (IS_VALLEYVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007540 vlv_update_pll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007541 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007542 i9xx_update_pll(crtc, crtc_state,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007543 has_reduced_clock ? &reduced_clock : NULL,
Robin Schroereba905b2014-05-18 02:24:50 +02007544 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007545 }
Eric Anholtf564048e2011-03-30 13:01:02 -07007546
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007547 return 0;
Eric Anholtf564048e2011-03-30 13:01:02 -07007548}
7549
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007550static void i9xx_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007551 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007552{
7553 struct drm_device *dev = crtc->base.dev;
7554 struct drm_i915_private *dev_priv = dev->dev_private;
7555 uint32_t tmp;
7556
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02007557 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
7558 return;
7559
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007560 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02007561 if (!(tmp & PFIT_ENABLE))
7562 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007563
Daniel Vetter06922822013-07-11 13:35:40 +02007564 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007565 if (INTEL_INFO(dev)->gen < 4) {
7566 if (crtc->pipe != PIPE_B)
7567 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007568 } else {
7569 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
7570 return;
7571 }
7572
Daniel Vetter06922822013-07-11 13:35:40 +02007573 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007574 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
7575 if (INTEL_INFO(dev)->gen < 5)
7576 pipe_config->gmch_pfit.lvds_border_bits =
7577 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
7578}
7579
Jesse Barnesacbec812013-09-20 11:29:32 -07007580static void vlv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007581 struct intel_crtc_state *pipe_config)
Jesse Barnesacbec812013-09-20 11:29:32 -07007582{
7583 struct drm_device *dev = crtc->base.dev;
7584 struct drm_i915_private *dev_priv = dev->dev_private;
7585 int pipe = pipe_config->cpu_transcoder;
7586 intel_clock_t clock;
7587 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07007588 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07007589
Shobhit Kumarf573de52014-07-30 20:32:37 +05307590 /* In case of MIPI DPLL will not even be used */
7591 if (!(pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE))
7592 return;
7593
Jesse Barnesacbec812013-09-20 11:29:32 -07007594 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007595 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
Jesse Barnesacbec812013-09-20 11:29:32 -07007596 mutex_unlock(&dev_priv->dpio_lock);
7597
7598 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
7599 clock.m2 = mdiv & DPIO_M2DIV_MASK;
7600 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
7601 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
7602 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
7603
Ville Syrjäläf6466282013-10-14 14:50:31 +03007604 vlv_clock(refclk, &clock);
Jesse Barnesacbec812013-09-20 11:29:32 -07007605
Ville Syrjäläf6466282013-10-14 14:50:31 +03007606 /* clock.dot is the fast clock */
7607 pipe_config->port_clock = clock.dot / 5;
Jesse Barnesacbec812013-09-20 11:29:32 -07007608}
7609
Damien Lespiau5724dbd2015-01-20 12:51:52 +00007610static void
7611i9xx_get_initial_plane_config(struct intel_crtc *crtc,
7612 struct intel_initial_plane_config *plane_config)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007613{
7614 struct drm_device *dev = crtc->base.dev;
7615 struct drm_i915_private *dev_priv = dev->dev_private;
7616 u32 val, base, offset;
7617 int pipe = crtc->pipe, plane = crtc->plane;
7618 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00007619 unsigned int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007620 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00007621 struct intel_framebuffer *intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007622
Damien Lespiau42a7b082015-02-05 19:35:13 +00007623 val = I915_READ(DSPCNTR(plane));
7624 if (!(val & DISPLAY_PLANE_ENABLE))
7625 return;
7626
Damien Lespiaud9806c92015-01-21 14:07:19 +00007627 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00007628 if (!intel_fb) {
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007629 DRM_DEBUG_KMS("failed to alloc fb\n");
7630 return;
7631 }
7632
Damien Lespiau1b842c82015-01-21 13:50:54 +00007633 fb = &intel_fb->base;
7634
Daniel Vetter18c52472015-02-10 17:16:09 +00007635 if (INTEL_INFO(dev)->gen >= 4) {
7636 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00007637 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00007638 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
7639 }
7640 }
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007641
7642 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00007643 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007644 fb->pixel_format = fourcc;
7645 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007646
7647 if (INTEL_INFO(dev)->gen >= 4) {
Damien Lespiau49af4492015-01-20 12:51:44 +00007648 if (plane_config->tiling)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007649 offset = I915_READ(DSPTILEOFF(plane));
7650 else
7651 offset = I915_READ(DSPLINOFF(plane));
7652 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
7653 } else {
7654 base = I915_READ(DSPADDR(plane));
7655 }
7656 plane_config->base = base;
7657
7658 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007659 fb->width = ((val >> 16) & 0xfff) + 1;
7660 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007661
7662 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007663 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007664
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007665 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00007666 fb->pixel_format,
7667 fb->modifier[0]);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007668
Daniel Vetterf37b5c22015-02-10 23:12:27 +01007669 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007670
Damien Lespiau2844a922015-01-20 12:51:48 +00007671 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
7672 pipe_name(pipe), plane, fb->width, fb->height,
7673 fb->bits_per_pixel, base, fb->pitches[0],
7674 plane_config->size);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007675
Damien Lespiau2d140302015-02-05 17:22:18 +00007676 plane_config->fb = intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007677}
7678
Ville Syrjälä70b23a92014-04-09 13:28:22 +03007679static void chv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007680 struct intel_crtc_state *pipe_config)
Ville Syrjälä70b23a92014-04-09 13:28:22 +03007681{
7682 struct drm_device *dev = crtc->base.dev;
7683 struct drm_i915_private *dev_priv = dev->dev_private;
7684 int pipe = pipe_config->cpu_transcoder;
7685 enum dpio_channel port = vlv_pipe_to_channel(pipe);
7686 intel_clock_t clock;
7687 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2;
7688 int refclk = 100000;
7689
7690 mutex_lock(&dev_priv->dpio_lock);
7691 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
7692 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
7693 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
7694 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
7695 mutex_unlock(&dev_priv->dpio_lock);
7696
7697 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
7698 clock.m2 = ((pll_dw0 & 0xff) << 22) | (pll_dw2 & 0x3fffff);
7699 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
7700 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
7701 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
7702
7703 chv_clock(refclk, &clock);
7704
7705 /* clock.dot is the fast clock */
7706 pipe_config->port_clock = clock.dot / 5;
7707}
7708
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007709static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007710 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007711{
7712 struct drm_device *dev = crtc->base.dev;
7713 struct drm_i915_private *dev_priv = dev->dev_private;
7714 uint32_t tmp;
7715
Daniel Vetterf458ebb2014-09-30 10:56:39 +02007716 if (!intel_display_power_is_enabled(dev_priv,
7717 POWER_DOMAIN_PIPE(crtc->pipe)))
Imre Deakb5482bd2014-03-05 16:20:55 +02007718 return false;
7719
Daniel Vettere143a212013-07-04 12:01:15 +02007720 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007721 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02007722
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007723 tmp = I915_READ(PIPECONF(crtc->pipe));
7724 if (!(tmp & PIPECONF_ENABLE))
7725 return false;
7726
Ville Syrjälä42571ae2013-09-06 23:29:00 +03007727 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
7728 switch (tmp & PIPECONF_BPC_MASK) {
7729 case PIPECONF_6BPC:
7730 pipe_config->pipe_bpp = 18;
7731 break;
7732 case PIPECONF_8BPC:
7733 pipe_config->pipe_bpp = 24;
7734 break;
7735 case PIPECONF_10BPC:
7736 pipe_config->pipe_bpp = 30;
7737 break;
7738 default:
7739 break;
7740 }
7741 }
7742
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02007743 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
7744 pipe_config->limited_color_range = true;
7745
Ville Syrjälä282740f2013-09-04 18:30:03 +03007746 if (INTEL_INFO(dev)->gen < 4)
7747 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
7748
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007749 intel_get_pipe_timings(crtc, pipe_config);
7750
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007751 i9xx_get_pfit_config(crtc, pipe_config);
7752
Daniel Vetter6c49f242013-06-06 12:45:25 +02007753 if (INTEL_INFO(dev)->gen >= 4) {
7754 tmp = I915_READ(DPLL_MD(crtc->pipe));
7755 pipe_config->pixel_multiplier =
7756 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
7757 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02007758 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02007759 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
7760 tmp = I915_READ(DPLL(crtc->pipe));
7761 pipe_config->pixel_multiplier =
7762 ((tmp & SDVO_MULTIPLIER_MASK)
7763 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
7764 } else {
7765 /* Note that on i915G/GM the pixel multiplier is in the sdvo
7766 * port and will be fixed up in the encoder->get_config
7767 * function. */
7768 pipe_config->pixel_multiplier = 1;
7769 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02007770 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
7771 if (!IS_VALLEYVIEW(dev)) {
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03007772 /*
7773 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
7774 * on 830. Filter it out here so that we don't
7775 * report errors due to that.
7776 */
7777 if (IS_I830(dev))
7778 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
7779
Daniel Vetter8bcc2792013-06-05 13:34:28 +02007780 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
7781 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03007782 } else {
7783 /* Mask out read-only status bits. */
7784 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
7785 DPLL_PORTC_READY_MASK |
7786 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02007787 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02007788
Ville Syrjälä70b23a92014-04-09 13:28:22 +03007789 if (IS_CHERRYVIEW(dev))
7790 chv_crtc_clock_get(crtc, pipe_config);
7791 else if (IS_VALLEYVIEW(dev))
Jesse Barnesacbec812013-09-20 11:29:32 -07007792 vlv_crtc_clock_get(crtc, pipe_config);
7793 else
7794 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03007795
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007796 return true;
7797}
7798
Paulo Zanonidde86e22012-12-01 12:04:25 -02007799static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07007800{
7801 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007802 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007803 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007804 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07007805 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07007806 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07007807 bool has_ck505 = false;
7808 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007809
7810 /* We need to take the global config into account */
Damien Lespiaub2784e12014-08-05 11:29:37 +01007811 for_each_intel_encoder(dev, encoder) {
Keith Packard199e5d72011-09-22 12:01:57 -07007812 switch (encoder->type) {
7813 case INTEL_OUTPUT_LVDS:
7814 has_panel = true;
7815 has_lvds = true;
7816 break;
7817 case INTEL_OUTPUT_EDP:
7818 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03007819 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07007820 has_cpu_edp = true;
7821 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007822 default:
7823 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007824 }
7825 }
7826
Keith Packard99eb6a02011-09-26 14:29:12 -07007827 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03007828 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07007829 can_ssc = has_ck505;
7830 } else {
7831 has_ck505 = false;
7832 can_ssc = true;
7833 }
7834
Imre Deak2de69052013-05-08 13:14:04 +03007835 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
7836 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07007837
7838 /* Ironlake: try to setup display ref clock before DPLL
7839 * enabling. This is only under driver's control after
7840 * PCH B stepping, previous chipset stepping should be
7841 * ignoring this setting.
7842 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007843 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07007844
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007845 /* As we must carefully and slowly disable/enable each source in turn,
7846 * compute the final state we want first and check if we need to
7847 * make any changes at all.
7848 */
7849 final = val;
7850 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07007851 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007852 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07007853 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007854 final |= DREF_NONSPREAD_SOURCE_ENABLE;
7855
7856 final &= ~DREF_SSC_SOURCE_MASK;
7857 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
7858 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007859
Keith Packard199e5d72011-09-22 12:01:57 -07007860 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007861 final |= DREF_SSC_SOURCE_ENABLE;
7862
7863 if (intel_panel_use_ssc(dev_priv) && can_ssc)
7864 final |= DREF_SSC1_ENABLE;
7865
7866 if (has_cpu_edp) {
7867 if (intel_panel_use_ssc(dev_priv) && can_ssc)
7868 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
7869 else
7870 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
7871 } else
7872 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
7873 } else {
7874 final |= DREF_SSC_SOURCE_DISABLE;
7875 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
7876 }
7877
7878 if (final == val)
7879 return;
7880
7881 /* Always enable nonspread source */
7882 val &= ~DREF_NONSPREAD_SOURCE_MASK;
7883
7884 if (has_ck505)
7885 val |= DREF_NONSPREAD_CK505_ENABLE;
7886 else
7887 val |= DREF_NONSPREAD_SOURCE_ENABLE;
7888
7889 if (has_panel) {
7890 val &= ~DREF_SSC_SOURCE_MASK;
7891 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007892
Keith Packard199e5d72011-09-22 12:01:57 -07007893 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07007894 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07007895 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007896 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02007897 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007898 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007899
7900 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007901 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07007902 POSTING_READ(PCH_DREF_CONTROL);
7903 udelay(200);
7904
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007905 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07007906
7907 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07007908 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07007909 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07007910 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007911 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Robin Schroereba905b2014-05-18 02:24:50 +02007912 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007913 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07007914 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007915 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007916
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007917 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07007918 POSTING_READ(PCH_DREF_CONTROL);
7919 udelay(200);
7920 } else {
7921 DRM_DEBUG_KMS("Disabling SSC entirely\n");
7922
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007923 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07007924
7925 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007926 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007927
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007928 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07007929 POSTING_READ(PCH_DREF_CONTROL);
7930 udelay(200);
7931
7932 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007933 val &= ~DREF_SSC_SOURCE_MASK;
7934 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007935
7936 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007937 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07007938
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007939 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07007940 POSTING_READ(PCH_DREF_CONTROL);
7941 udelay(200);
7942 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07007943
7944 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07007945}
7946
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007947static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02007948{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007949 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02007950
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007951 tmp = I915_READ(SOUTH_CHICKEN2);
7952 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
7953 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007954
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007955 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
7956 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
7957 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02007958
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007959 tmp = I915_READ(SOUTH_CHICKEN2);
7960 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
7961 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007962
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007963 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
7964 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
7965 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03007966}
7967
7968/* WaMPhyProgramming:hsw */
7969static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
7970{
7971 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02007972
7973 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
7974 tmp &= ~(0xFF << 24);
7975 tmp |= (0x12 << 24);
7976 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
7977
Paulo Zanonidde86e22012-12-01 12:04:25 -02007978 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
7979 tmp |= (1 << 11);
7980 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
7981
7982 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
7983 tmp |= (1 << 11);
7984 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
7985
Paulo Zanonidde86e22012-12-01 12:04:25 -02007986 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
7987 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
7988 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
7989
7990 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
7991 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
7992 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
7993
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007994 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
7995 tmp &= ~(7 << 13);
7996 tmp |= (5 << 13);
7997 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02007998
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03007999 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
8000 tmp &= ~(7 << 13);
8001 tmp |= (5 << 13);
8002 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008003
8004 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
8005 tmp &= ~0xFF;
8006 tmp |= 0x1C;
8007 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
8008
8009 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
8010 tmp &= ~0xFF;
8011 tmp |= 0x1C;
8012 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
8013
8014 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
8015 tmp &= ~(0xFF << 16);
8016 tmp |= (0x1C << 16);
8017 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
8018
8019 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
8020 tmp &= ~(0xFF << 16);
8021 tmp |= (0x1C << 16);
8022 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
8023
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008024 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
8025 tmp |= (1 << 27);
8026 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008027
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008028 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
8029 tmp |= (1 << 27);
8030 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008031
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008032 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
8033 tmp &= ~(0xF << 28);
8034 tmp |= (4 << 28);
8035 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008036
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008037 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
8038 tmp &= ~(0xF << 28);
8039 tmp |= (4 << 28);
8040 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008041}
8042
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008043/* Implements 3 different sequences from BSpec chapter "Display iCLK
8044 * Programming" based on the parameters passed:
8045 * - Sequence to enable CLKOUT_DP
8046 * - Sequence to enable CLKOUT_DP without spread
8047 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
8048 */
8049static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
8050 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008051{
8052 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008053 uint32_t reg, tmp;
8054
8055 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
8056 with_spread = true;
8057 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
8058 with_fdi, "LP PCH doesn't have FDI\n"))
8059 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008060
8061 mutex_lock(&dev_priv->dpio_lock);
8062
8063 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8064 tmp &= ~SBI_SSCCTL_DISABLE;
8065 tmp |= SBI_SSCCTL_PATHALT;
8066 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8067
8068 udelay(24);
8069
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008070 if (with_spread) {
8071 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8072 tmp &= ~SBI_SSCCTL_PATHALT;
8073 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008074
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008075 if (with_fdi) {
8076 lpt_reset_fdi_mphy(dev_priv);
8077 lpt_program_fdi_mphy(dev_priv);
8078 }
8079 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02008080
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008081 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
8082 SBI_GEN0 : SBI_DBUFF0;
8083 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8084 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8085 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01008086
8087 mutex_unlock(&dev_priv->dpio_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008088}
8089
Paulo Zanoni47701c32013-07-23 11:19:25 -03008090/* Sequence to disable CLKOUT_DP */
8091static void lpt_disable_clkout_dp(struct drm_device *dev)
8092{
8093 struct drm_i915_private *dev_priv = dev->dev_private;
8094 uint32_t reg, tmp;
8095
8096 mutex_lock(&dev_priv->dpio_lock);
8097
8098 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
8099 SBI_GEN0 : SBI_DBUFF0;
8100 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8101 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8102 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
8103
8104 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8105 if (!(tmp & SBI_SSCCTL_DISABLE)) {
8106 if (!(tmp & SBI_SSCCTL_PATHALT)) {
8107 tmp |= SBI_SSCCTL_PATHALT;
8108 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8109 udelay(32);
8110 }
8111 tmp |= SBI_SSCCTL_DISABLE;
8112 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8113 }
8114
8115 mutex_unlock(&dev_priv->dpio_lock);
8116}
8117
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008118static void lpt_init_pch_refclk(struct drm_device *dev)
8119{
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008120 struct intel_encoder *encoder;
8121 bool has_vga = false;
8122
Damien Lespiaub2784e12014-08-05 11:29:37 +01008123 for_each_intel_encoder(dev, encoder) {
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008124 switch (encoder->type) {
8125 case INTEL_OUTPUT_ANALOG:
8126 has_vga = true;
8127 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008128 default:
8129 break;
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008130 }
8131 }
8132
Paulo Zanoni47701c32013-07-23 11:19:25 -03008133 if (has_vga)
8134 lpt_enable_clkout_dp(dev, true, true);
8135 else
8136 lpt_disable_clkout_dp(dev);
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008137}
8138
Paulo Zanonidde86e22012-12-01 12:04:25 -02008139/*
8140 * Initialize reference clocks when the driver loads
8141 */
8142void intel_init_pch_refclk(struct drm_device *dev)
8143{
8144 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
8145 ironlake_init_pch_refclk(dev);
8146 else if (HAS_PCH_LPT(dev))
8147 lpt_init_pch_refclk(dev);
8148}
8149
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008150static int ironlake_get_refclk(struct intel_crtc_state *crtc_state)
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008151{
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008152 struct drm_device *dev = crtc_state->base.crtc->dev;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008153 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008154 struct drm_atomic_state *state = crtc_state->base.state;
8155 struct drm_connector_state *connector_state;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008156 struct intel_encoder *encoder;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008157 int num_connectors = 0, i;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008158 bool is_lvds = false;
8159
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008160 for (i = 0; i < state->num_connector; i++) {
8161 if (!state->connectors[i])
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02008162 continue;
8163
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008164 connector_state = state->connector_states[i];
8165 if (connector_state->crtc != crtc_state->base.crtc)
8166 continue;
8167
8168 encoder = to_intel_encoder(connector_state->best_encoder);
8169
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008170 switch (encoder->type) {
8171 case INTEL_OUTPUT_LVDS:
8172 is_lvds = true;
8173 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008174 default:
8175 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008176 }
8177 num_connectors++;
8178 }
8179
8180 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008181 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03008182 dev_priv->vbt.lvds_ssc_freq);
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008183 return dev_priv->vbt.lvds_ssc_freq;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008184 }
8185
8186 return 120000;
8187}
8188
Daniel Vetter6ff93602013-04-19 11:24:36 +02008189static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03008190{
8191 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
8192 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8193 int pipe = intel_crtc->pipe;
8194 uint32_t val;
8195
Daniel Vetter78114072013-06-13 00:54:57 +02008196 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03008197
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008198 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03008199 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008200 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008201 break;
8202 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008203 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008204 break;
8205 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008206 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008207 break;
8208 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008209 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008210 break;
8211 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03008212 /* Case prevented by intel_choose_pipe_bpp_dither. */
8213 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03008214 }
8215
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008216 if (intel_crtc->config->dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03008217 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8218
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008219 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03008220 val |= PIPECONF_INTERLACED_ILK;
8221 else
8222 val |= PIPECONF_PROGRESSIVE;
8223
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008224 if (intel_crtc->config->limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02008225 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02008226
Paulo Zanonic8203562012-09-12 10:06:29 -03008227 I915_WRITE(PIPECONF(pipe), val);
8228 POSTING_READ(PIPECONF(pipe));
8229}
8230
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008231/*
8232 * Set up the pipe CSC unit.
8233 *
8234 * Currently only full range RGB to limited range RGB conversion
8235 * is supported, but eventually this should handle various
8236 * RGB<->YCbCr scenarios as well.
8237 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01008238static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008239{
8240 struct drm_device *dev = crtc->dev;
8241 struct drm_i915_private *dev_priv = dev->dev_private;
8242 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8243 int pipe = intel_crtc->pipe;
8244 uint16_t coeff = 0x7800; /* 1.0 */
8245
8246 /*
8247 * TODO: Check what kind of values actually come out of the pipe
8248 * with these coeff/postoff values and adjust to get the best
8249 * accuracy. Perhaps we even need to take the bpc value into
8250 * consideration.
8251 */
8252
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008253 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008254 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
8255
8256 /*
8257 * GY/GU and RY/RU should be the other way around according
8258 * to BSpec, but reality doesn't agree. Just set them up in
8259 * a way that results in the correct picture.
8260 */
8261 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
8262 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
8263
8264 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
8265 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
8266
8267 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
8268 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
8269
8270 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
8271 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
8272 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
8273
8274 if (INTEL_INFO(dev)->gen > 6) {
8275 uint16_t postoff = 0;
8276
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008277 if (intel_crtc->config->limited_color_range)
Ville Syrjälä32cf0cb2013-11-28 22:10:38 +02008278 postoff = (16 * (1 << 12) / 255) & 0x1fff;
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008279
8280 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
8281 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
8282 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
8283
8284 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
8285 } else {
8286 uint32_t mode = CSC_MODE_YUV_TO_RGB;
8287
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008288 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008289 mode |= CSC_BLACK_SCREEN_OFFSET;
8290
8291 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
8292 }
8293}
8294
Daniel Vetter6ff93602013-04-19 11:24:36 +02008295static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008296{
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008297 struct drm_device *dev = crtc->dev;
8298 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008299 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008300 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008301 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008302 uint32_t val;
8303
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02008304 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008305
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008306 if (IS_HASWELL(dev) && intel_crtc->config->dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008307 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8308
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008309 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008310 val |= PIPECONF_INTERLACED_ILK;
8311 else
8312 val |= PIPECONF_PROGRESSIVE;
8313
Paulo Zanoni702e7a52012-10-23 18:29:59 -02008314 I915_WRITE(PIPECONF(cpu_transcoder), val);
8315 POSTING_READ(PIPECONF(cpu_transcoder));
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02008316
8317 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
8318 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008319
Satheeshakrishna M3cdf1222014-04-08 15:46:53 +05308320 if (IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008321 val = 0;
8322
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008323 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008324 case 18:
8325 val |= PIPEMISC_DITHER_6_BPC;
8326 break;
8327 case 24:
8328 val |= PIPEMISC_DITHER_8_BPC;
8329 break;
8330 case 30:
8331 val |= PIPEMISC_DITHER_10_BPC;
8332 break;
8333 case 36:
8334 val |= PIPEMISC_DITHER_12_BPC;
8335 break;
8336 default:
8337 /* Case prevented by pipe_config_set_bpp. */
8338 BUG();
8339 }
8340
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008341 if (intel_crtc->config->dither)
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008342 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
8343
8344 I915_WRITE(PIPEMISC(pipe), val);
8345 }
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008346}
8347
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008348static bool ironlake_compute_clocks(struct drm_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008349 struct intel_crtc_state *crtc_state,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008350 intel_clock_t *clock,
8351 bool *has_reduced_clock,
8352 intel_clock_t *reduced_clock)
8353{
8354 struct drm_device *dev = crtc->dev;
8355 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008356 int refclk;
8357 const intel_limit_t *limit;
Daniel Vettera16af722013-04-30 14:01:44 +02008358 bool ret, is_lvds = false;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008359
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02008360 is_lvds = intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008361
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008362 refclk = ironlake_get_refclk(crtc_state);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008363
8364 /*
8365 * Returns a set of divisors for the desired target clock with the given
8366 * refclk, or FALSE. The returned values represent the clock equation:
8367 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
8368 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02008369 limit = intel_limit(crtc_state, refclk);
8370 ret = dev_priv->display.find_dpll(limit, crtc_state,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008371 crtc_state->port_clock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02008372 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008373 if (!ret)
8374 return false;
8375
8376 if (is_lvds && dev_priv->lvds_downclock_avail) {
8377 /*
8378 * Ensure we match the reduced clock's P to the target clock.
8379 * If the clocks don't match, we can't switch the display clock
8380 * by using the FP0/FP1. In such case we will disable the LVDS
8381 * downclock feature.
8382 */
Daniel Vetteree9300b2013-06-03 22:40:22 +02008383 *has_reduced_clock =
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02008384 dev_priv->display.find_dpll(limit, crtc_state,
Daniel Vetteree9300b2013-06-03 22:40:22 +02008385 dev_priv->lvds_downclock,
8386 refclk, clock,
8387 reduced_clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008388 }
8389
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008390 return true;
8391}
8392
Paulo Zanonid4b19312012-11-29 11:29:32 -02008393int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
8394{
8395 /*
8396 * Account for spread spectrum to avoid
8397 * oversubscribing the link. Max center spread
8398 * is 2.5%; use 5% for safety's sake.
8399 */
8400 u32 bps = target_clock * bpp * 21 / 20;
Ville Syrjälä619d4d02014-02-27 14:23:14 +02008401 return DIV_ROUND_UP(bps, link_bw * 8);
Paulo Zanonid4b19312012-11-29 11:29:32 -02008402}
8403
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008404static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02008405{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008406 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03008407}
8408
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008409static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008410 struct intel_crtc_state *crtc_state,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008411 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02008412 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008413{
8414 struct drm_crtc *crtc = &intel_crtc->base;
8415 struct drm_device *dev = crtc->dev;
8416 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008417 struct drm_atomic_state *state = crtc_state->base.state;
8418 struct drm_connector_state *connector_state;
8419 struct intel_encoder *encoder;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008420 uint32_t dpll;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008421 int factor, num_connectors = 0, i;
Daniel Vetter09ede542013-04-30 14:01:45 +02008422 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008423
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008424 for (i = 0; i < state->num_connector; i++) {
8425 if (!state->connectors[i])
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +02008426 continue;
8427
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008428 connector_state = state->connector_states[i];
8429 if (connector_state->crtc != crtc_state->base.crtc)
8430 continue;
8431
8432 encoder = to_intel_encoder(connector_state->best_encoder);
8433
8434 switch (encoder->type) {
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008435 case INTEL_OUTPUT_LVDS:
8436 is_lvds = true;
8437 break;
8438 case INTEL_OUTPUT_SDVO:
8439 case INTEL_OUTPUT_HDMI:
8440 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008441 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008442 default:
8443 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008444 }
8445
8446 num_connectors++;
8447 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008448
Chris Wilsonc1858122010-12-03 21:35:48 +00008449 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07008450 factor = 21;
8451 if (is_lvds) {
8452 if ((intel_panel_use_ssc(dev_priv) &&
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008453 dev_priv->vbt.lvds_ssc_freq == 100000) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02008454 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07008455 factor = 25;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008456 } else if (crtc_state->sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07008457 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00008458
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008459 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02008460 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00008461
Daniel Vetter9a7c7892013-04-04 22:20:34 +02008462 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
8463 *fp2 |= FP_CB_TUNE;
8464
Chris Wilson5eddb702010-09-11 13:48:45 +01008465 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08008466
Eric Anholta07d6782011-03-30 13:01:08 -07008467 if (is_lvds)
8468 dpll |= DPLLB_MODE_LVDS;
8469 else
8470 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02008471
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008472 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02008473 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02008474
8475 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02008476 dpll |= DPLL_SDVO_HIGH_SPEED;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008477 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02008478 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08008479
Eric Anholta07d6782011-03-30 13:01:08 -07008480 /* compute bitmask from p1 value */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008481 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07008482 /* also FPA1 */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008483 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07008484
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008485 switch (crtc_state->dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07008486 case 5:
8487 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
8488 break;
8489 case 7:
8490 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
8491 break;
8492 case 10:
8493 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
8494 break;
8495 case 14:
8496 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
8497 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08008498 }
8499
Daniel Vetterb4c09f32013-04-30 14:01:42 +02008500 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05008501 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08008502 else
8503 dpll |= PLL_REF_INPUT_DREFCLK;
8504
Daniel Vetter959e16d2013-06-05 13:34:21 +02008505 return dpll | DPLL_VCO_ENABLE;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008506}
8507
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008508static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
8509 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08008510{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008511 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08008512 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02008513 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03008514 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01008515 bool is_lvds = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02008516 struct intel_shared_dpll *pll;
Jesse Barnes79e53942008-11-07 14:24:08 -08008517
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03008518 is_lvds = intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS);
Jesse Barnes79e53942008-11-07 14:24:08 -08008519
Paulo Zanoni5dc52982012-10-05 12:05:56 -03008520 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
8521 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
8522
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008523 ok = ironlake_compute_clocks(&crtc->base, crtc_state, &clock,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008524 &has_reduced_clock, &reduced_clock);
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008525 if (!ok && !crtc_state->clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008526 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8527 return -EINVAL;
8528 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01008529 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008530 if (!crtc_state->clock_set) {
8531 crtc_state->dpll.n = clock.n;
8532 crtc_state->dpll.m1 = clock.m1;
8533 crtc_state->dpll.m2 = clock.m2;
8534 crtc_state->dpll.p1 = clock.p1;
8535 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01008536 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008537
Paulo Zanoni5dc52982012-10-05 12:05:56 -03008538 /* 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 +02008539 if (crtc_state->has_pch_encoder) {
8540 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02008541 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008542 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02008543
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008544 dpll = ironlake_compute_dpll(crtc, crtc_state,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02008545 &fp, &reduced_clock,
8546 has_reduced_clock ? &fp2 : NULL);
8547
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008548 crtc_state->dpll_hw_state.dpll = dpll;
8549 crtc_state->dpll_hw_state.fp0 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02008550 if (has_reduced_clock)
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008551 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetter66e985c2013-06-05 13:34:20 +02008552 else
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008553 crtc_state->dpll_hw_state.fp1 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02008554
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008555 pll = intel_get_shared_dpll(crtc, crtc_state);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01008556 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03008557 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008558 pipe_name(crtc->pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07008559 return -EINVAL;
8560 }
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +02008561 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008562
Rodrigo Viviab585de2015-03-24 12:40:09 -07008563 if (is_lvds && has_reduced_clock)
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008564 crtc->lowfreq_avail = true;
Daniel Vetterbcd644e2013-06-05 13:34:22 +02008565 else
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008566 crtc->lowfreq_avail = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02008567
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02008568 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008569}
8570
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008571static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
8572 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02008573{
8574 struct drm_device *dev = crtc->base.dev;
8575 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008576 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02008577
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008578 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
8579 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
8580 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
8581 & ~TU_SIZE_MASK;
8582 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
8583 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
8584 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
8585}
8586
8587static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
8588 enum transcoder transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008589 struct intel_link_m_n *m_n,
8590 struct intel_link_m_n *m2_n2)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008591{
8592 struct drm_device *dev = crtc->base.dev;
8593 struct drm_i915_private *dev_priv = dev->dev_private;
8594 enum pipe pipe = crtc->pipe;
8595
8596 if (INTEL_INFO(dev)->gen >= 5) {
8597 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
8598 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
8599 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
8600 & ~TU_SIZE_MASK;
8601 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
8602 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
8603 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008604 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
8605 * gen < 8) and if DRRS is supported (to make sure the
8606 * registers are not unnecessarily read).
8607 */
8608 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008609 crtc->config->has_drrs) {
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008610 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
8611 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
8612 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
8613 & ~TU_SIZE_MASK;
8614 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
8615 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
8616 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
8617 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008618 } else {
8619 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
8620 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
8621 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
8622 & ~TU_SIZE_MASK;
8623 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
8624 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
8625 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
8626 }
8627}
8628
8629void intel_dp_get_m_n(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008630 struct intel_crtc_state *pipe_config)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008631{
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02008632 if (pipe_config->has_pch_encoder)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008633 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
8634 else
8635 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008636 &pipe_config->dp_m_n,
8637 &pipe_config->dp_m2_n2);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008638}
8639
Daniel Vetter72419202013-04-04 13:28:53 +02008640static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008641 struct intel_crtc_state *pipe_config)
Daniel Vetter72419202013-04-04 13:28:53 +02008642{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008643 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008644 &pipe_config->fdi_m_n, NULL);
Daniel Vetter72419202013-04-04 13:28:53 +02008645}
8646
Jesse Barnesbd2e2442014-11-13 17:51:47 +00008647static void skylake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008648 struct intel_crtc_state *pipe_config)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00008649{
8650 struct drm_device *dev = crtc->base.dev;
8651 struct drm_i915_private *dev_priv = dev->dev_private;
Chandra Kondurua1b22782015-04-07 15:28:45 -07008652 struct intel_crtc_scaler_state *scaler_state = &pipe_config->scaler_state;
8653 uint32_t ps_ctrl = 0;
8654 int id = -1;
8655 int i;
Jesse Barnesbd2e2442014-11-13 17:51:47 +00008656
Chandra Kondurua1b22782015-04-07 15:28:45 -07008657 /* find scaler attached to this pipe */
8658 for (i = 0; i < crtc->num_scalers; i++) {
8659 ps_ctrl = I915_READ(SKL_PS_CTRL(crtc->pipe, i));
8660 if (ps_ctrl & PS_SCALER_EN && !(ps_ctrl & PS_PLANE_SEL_MASK)) {
8661 id = i;
8662 pipe_config->pch_pfit.enabled = true;
8663 pipe_config->pch_pfit.pos = I915_READ(SKL_PS_WIN_POS(crtc->pipe, i));
8664 pipe_config->pch_pfit.size = I915_READ(SKL_PS_WIN_SZ(crtc->pipe, i));
8665 break;
8666 }
8667 }
Jesse Barnesbd2e2442014-11-13 17:51:47 +00008668
Chandra Kondurua1b22782015-04-07 15:28:45 -07008669 scaler_state->scaler_id = id;
8670 if (id >= 0) {
8671 scaler_state->scaler_users |= (1 << SKL_CRTC_INDEX);
8672 } else {
8673 scaler_state->scaler_users &= ~(1 << SKL_CRTC_INDEX);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00008674 }
8675}
8676
Damien Lespiau5724dbd2015-01-20 12:51:52 +00008677static void
8678skylake_get_initial_plane_config(struct intel_crtc *crtc,
8679 struct intel_initial_plane_config *plane_config)
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008680{
8681 struct drm_device *dev = crtc->base.dev;
8682 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau40f46282015-02-27 11:15:21 +00008683 u32 val, base, offset, stride_mult, tiling;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008684 int pipe = crtc->pipe;
8685 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00008686 unsigned int aligned_height;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008687 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00008688 struct intel_framebuffer *intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008689
Damien Lespiaud9806c92015-01-21 14:07:19 +00008690 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00008691 if (!intel_fb) {
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008692 DRM_DEBUG_KMS("failed to alloc fb\n");
8693 return;
8694 }
8695
Damien Lespiau1b842c82015-01-21 13:50:54 +00008696 fb = &intel_fb->base;
8697
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008698 val = I915_READ(PLANE_CTL(pipe, 0));
Damien Lespiau42a7b082015-02-05 19:35:13 +00008699 if (!(val & PLANE_CTL_ENABLE))
8700 goto error;
8701
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008702 pixel_format = val & PLANE_CTL_FORMAT_MASK;
8703 fourcc = skl_format_to_fourcc(pixel_format,
8704 val & PLANE_CTL_ORDER_RGBX,
8705 val & PLANE_CTL_ALPHA_MASK);
8706 fb->pixel_format = fourcc;
8707 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
8708
Damien Lespiau40f46282015-02-27 11:15:21 +00008709 tiling = val & PLANE_CTL_TILED_MASK;
8710 switch (tiling) {
8711 case PLANE_CTL_TILED_LINEAR:
8712 fb->modifier[0] = DRM_FORMAT_MOD_NONE;
8713 break;
8714 case PLANE_CTL_TILED_X:
8715 plane_config->tiling = I915_TILING_X;
8716 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
8717 break;
8718 case PLANE_CTL_TILED_Y:
8719 fb->modifier[0] = I915_FORMAT_MOD_Y_TILED;
8720 break;
8721 case PLANE_CTL_TILED_YF:
8722 fb->modifier[0] = I915_FORMAT_MOD_Yf_TILED;
8723 break;
8724 default:
8725 MISSING_CASE(tiling);
8726 goto error;
8727 }
8728
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008729 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
8730 plane_config->base = base;
8731
8732 offset = I915_READ(PLANE_OFFSET(pipe, 0));
8733
8734 val = I915_READ(PLANE_SIZE(pipe, 0));
8735 fb->height = ((val >> 16) & 0xfff) + 1;
8736 fb->width = ((val >> 0) & 0x1fff) + 1;
8737
8738 val = I915_READ(PLANE_STRIDE(pipe, 0));
Damien Lespiau40f46282015-02-27 11:15:21 +00008739 stride_mult = intel_fb_stride_alignment(dev, fb->modifier[0],
8740 fb->pixel_format);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008741 fb->pitches[0] = (val & 0x3ff) * stride_mult;
8742
8743 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00008744 fb->pixel_format,
8745 fb->modifier[0]);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008746
Daniel Vetterf37b5c22015-02-10 23:12:27 +01008747 plane_config->size = fb->pitches[0] * aligned_height;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008748
8749 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
8750 pipe_name(pipe), fb->width, fb->height,
8751 fb->bits_per_pixel, base, fb->pitches[0],
8752 plane_config->size);
8753
Damien Lespiau2d140302015-02-05 17:22:18 +00008754 plane_config->fb = intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00008755 return;
8756
8757error:
8758 kfree(fb);
8759}
8760
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008761static void ironlake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008762 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008763{
8764 struct drm_device *dev = crtc->base.dev;
8765 struct drm_i915_private *dev_priv = dev->dev_private;
8766 uint32_t tmp;
8767
8768 tmp = I915_READ(PF_CTL(crtc->pipe));
8769
8770 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01008771 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008772 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
8773 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02008774
8775 /* We currently do not free assignements of panel fitters on
8776 * ivb/hsw (since we don't use the higher upscaling modes which
8777 * differentiates them) so just WARN about this case for now. */
8778 if (IS_GEN7(dev)) {
8779 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
8780 PF_PIPE_SEL_IVB(crtc->pipe));
8781 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008782 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008783}
8784
Damien Lespiau5724dbd2015-01-20 12:51:52 +00008785static void
8786ironlake_get_initial_plane_config(struct intel_crtc *crtc,
8787 struct intel_initial_plane_config *plane_config)
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008788{
8789 struct drm_device *dev = crtc->base.dev;
8790 struct drm_i915_private *dev_priv = dev->dev_private;
8791 u32 val, base, offset;
Damien Lespiauaeee5a42015-01-20 12:51:47 +00008792 int pipe = crtc->pipe;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008793 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00008794 unsigned int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008795 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00008796 struct intel_framebuffer *intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008797
Damien Lespiau42a7b082015-02-05 19:35:13 +00008798 val = I915_READ(DSPCNTR(pipe));
8799 if (!(val & DISPLAY_PLANE_ENABLE))
8800 return;
8801
Damien Lespiaud9806c92015-01-21 14:07:19 +00008802 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00008803 if (!intel_fb) {
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008804 DRM_DEBUG_KMS("failed to alloc fb\n");
8805 return;
8806 }
8807
Damien Lespiau1b842c82015-01-21 13:50:54 +00008808 fb = &intel_fb->base;
8809
Daniel Vetter18c52472015-02-10 17:16:09 +00008810 if (INTEL_INFO(dev)->gen >= 4) {
8811 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00008812 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00008813 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
8814 }
8815 }
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008816
8817 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00008818 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008819 fb->pixel_format = fourcc;
8820 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008821
Damien Lespiauaeee5a42015-01-20 12:51:47 +00008822 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008823 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiauaeee5a42015-01-20 12:51:47 +00008824 offset = I915_READ(DSPOFFSET(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008825 } else {
Damien Lespiau49af4492015-01-20 12:51:44 +00008826 if (plane_config->tiling)
Damien Lespiauaeee5a42015-01-20 12:51:47 +00008827 offset = I915_READ(DSPTILEOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008828 else
Damien Lespiauaeee5a42015-01-20 12:51:47 +00008829 offset = I915_READ(DSPLINOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008830 }
8831 plane_config->base = base;
8832
8833 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008834 fb->width = ((val >> 16) & 0xfff) + 1;
8835 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008836
8837 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008838 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008839
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008840 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00008841 fb->pixel_format,
8842 fb->modifier[0]);
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008843
Daniel Vetterf37b5c22015-02-10 23:12:27 +01008844 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008845
Damien Lespiau2844a922015-01-20 12:51:48 +00008846 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
8847 pipe_name(pipe), fb->width, fb->height,
8848 fb->bits_per_pixel, base, fb->pitches[0],
8849 plane_config->size);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008850
Damien Lespiau2d140302015-02-05 17:22:18 +00008851 plane_config->fb = intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08008852}
8853
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008854static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008855 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008856{
8857 struct drm_device *dev = crtc->base.dev;
8858 struct drm_i915_private *dev_priv = dev->dev_private;
8859 uint32_t tmp;
8860
Daniel Vetterf458ebb2014-09-30 10:56:39 +02008861 if (!intel_display_power_is_enabled(dev_priv,
8862 POWER_DOMAIN_PIPE(crtc->pipe)))
Paulo Zanoni930e8c92014-07-04 13:38:34 -03008863 return false;
8864
Daniel Vettere143a212013-07-04 12:01:15 +02008865 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008866 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02008867
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008868 tmp = I915_READ(PIPECONF(crtc->pipe));
8869 if (!(tmp & PIPECONF_ENABLE))
8870 return false;
8871
Ville Syrjälä42571ae2013-09-06 23:29:00 +03008872 switch (tmp & PIPECONF_BPC_MASK) {
8873 case PIPECONF_6BPC:
8874 pipe_config->pipe_bpp = 18;
8875 break;
8876 case PIPECONF_8BPC:
8877 pipe_config->pipe_bpp = 24;
8878 break;
8879 case PIPECONF_10BPC:
8880 pipe_config->pipe_bpp = 30;
8881 break;
8882 case PIPECONF_12BPC:
8883 pipe_config->pipe_bpp = 36;
8884 break;
8885 default:
8886 break;
8887 }
8888
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02008889 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
8890 pipe_config->limited_color_range = true;
8891
Daniel Vetterab9412b2013-05-03 11:49:46 +02008892 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02008893 struct intel_shared_dpll *pll;
8894
Daniel Vetter88adfff2013-03-28 10:42:01 +01008895 pipe_config->has_pch_encoder = true;
8896
Daniel Vetter627eb5a2013-04-29 19:33:42 +02008897 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
8898 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
8899 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02008900
8901 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02008902
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008903 if (HAS_PCH_IBX(dev_priv->dev)) {
Daniel Vetterd94ab062013-07-04 12:01:16 +02008904 pipe_config->shared_dpll =
8905 (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008906 } else {
8907 tmp = I915_READ(PCH_DPLL_SEL);
8908 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
8909 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
8910 else
8911 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
8912 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02008913
8914 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
8915
8916 WARN_ON(!pll->get_hw_state(dev_priv, pll,
8917 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02008918
8919 tmp = pipe_config->dpll_hw_state.dpll;
8920 pipe_config->pixel_multiplier =
8921 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
8922 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03008923
8924 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02008925 } else {
8926 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02008927 }
8928
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008929 intel_get_pipe_timings(crtc, pipe_config);
8930
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008931 ironlake_get_pfit_config(crtc, pipe_config);
8932
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008933 return true;
8934}
8935
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008936static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
8937{
8938 struct drm_device *dev = dev_priv->dev;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008939 struct intel_crtc *crtc;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008940
Damien Lespiaud3fcc802014-05-13 23:32:22 +01008941 for_each_intel_crtc(dev, crtc)
Rob Clarke2c719b2014-12-15 13:56:32 -05008942 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008943 pipe_name(crtc->pipe));
8944
Rob Clarke2c719b2014-12-15 13:56:32 -05008945 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
8946 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
8947 I915_STATE_WARN(I915_READ(WRPLL_CTL1) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
8948 I915_STATE_WARN(I915_READ(WRPLL_CTL2) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
8949 I915_STATE_WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
8950 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008951 "CPU PWM1 enabled\n");
Paulo Zanonic5107b82014-07-04 11:50:30 -03008952 if (IS_HASWELL(dev))
Rob Clarke2c719b2014-12-15 13:56:32 -05008953 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
Paulo Zanonic5107b82014-07-04 11:50:30 -03008954 "CPU PWM2 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05008955 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008956 "PCH PWM1 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05008957 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008958 "Utility pin enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05008959 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008960
Paulo Zanoni9926ada2014-04-01 19:39:47 -03008961 /*
8962 * In theory we can still leave IRQs enabled, as long as only the HPD
8963 * interrupts remain enabled. We used to check for that, but since it's
8964 * gen-specific and since we only disable LCPLL after we fully disable
8965 * the interrupts, the check below should be enough.
8966 */
Rob Clarke2c719b2014-12-15 13:56:32 -05008967 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008968}
8969
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03008970static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
8971{
8972 struct drm_device *dev = dev_priv->dev;
8973
8974 if (IS_HASWELL(dev))
8975 return I915_READ(D_COMP_HSW);
8976 else
8977 return I915_READ(D_COMP_BDW);
8978}
8979
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03008980static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
8981{
8982 struct drm_device *dev = dev_priv->dev;
8983
8984 if (IS_HASWELL(dev)) {
8985 mutex_lock(&dev_priv->rps.hw_lock);
8986 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
8987 val))
Paulo Zanonif475dad2014-07-04 11:59:57 -03008988 DRM_ERROR("Failed to write to D_COMP\n");
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03008989 mutex_unlock(&dev_priv->rps.hw_lock);
8990 } else {
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03008991 I915_WRITE(D_COMP_BDW, val);
8992 POSTING_READ(D_COMP_BDW);
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03008993 }
Paulo Zanonibe256dc2013-07-23 11:19:26 -03008994}
8995
8996/*
8997 * This function implements pieces of two sequences from BSpec:
8998 * - Sequence for display software to disable LCPLL
8999 * - Sequence for display software to allow package C8+
9000 * The steps implemented here are just the steps that actually touch the LCPLL
9001 * register. Callers should take care of disabling all the display engine
9002 * functions, doing the mode unset, fixing interrupts, etc.
9003 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03009004static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
9005 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009006{
9007 uint32_t val;
9008
9009 assert_can_disable_lcpll(dev_priv);
9010
9011 val = I915_READ(LCPLL_CTL);
9012
9013 if (switch_to_fclk) {
9014 val |= LCPLL_CD_SOURCE_FCLK;
9015 I915_WRITE(LCPLL_CTL, val);
9016
9017 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
9018 LCPLL_CD_SOURCE_FCLK_DONE, 1))
9019 DRM_ERROR("Switching to FCLK failed\n");
9020
9021 val = I915_READ(LCPLL_CTL);
9022 }
9023
9024 val |= LCPLL_PLL_DISABLE;
9025 I915_WRITE(LCPLL_CTL, val);
9026 POSTING_READ(LCPLL_CTL);
9027
9028 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
9029 DRM_ERROR("LCPLL still locked\n");
9030
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009031 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009032 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009033 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009034 ndelay(100);
9035
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009036 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
9037 1))
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009038 DRM_ERROR("D_COMP RCOMP still in progress\n");
9039
9040 if (allow_power_down) {
9041 val = I915_READ(LCPLL_CTL);
9042 val |= LCPLL_POWER_DOWN_ALLOW;
9043 I915_WRITE(LCPLL_CTL, val);
9044 POSTING_READ(LCPLL_CTL);
9045 }
9046}
9047
9048/*
9049 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
9050 * source.
9051 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03009052static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009053{
9054 uint32_t val;
9055
9056 val = I915_READ(LCPLL_CTL);
9057
9058 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
9059 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
9060 return;
9061
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03009062 /*
9063 * Make sure we're not on PC8 state before disabling PC8, otherwise
9064 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03009065 */
Mika Kuoppala59bad942015-01-16 11:34:40 +02009066 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Paulo Zanoni215733f2013-08-19 13:18:07 -03009067
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009068 if (val & LCPLL_POWER_DOWN_ALLOW) {
9069 val &= ~LCPLL_POWER_DOWN_ALLOW;
9070 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02009071 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009072 }
9073
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009074 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009075 val |= D_COMP_COMP_FORCE;
9076 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009077 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009078
9079 val = I915_READ(LCPLL_CTL);
9080 val &= ~LCPLL_PLL_DISABLE;
9081 I915_WRITE(LCPLL_CTL, val);
9082
9083 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
9084 DRM_ERROR("LCPLL not locked yet\n");
9085
9086 if (val & LCPLL_CD_SOURCE_FCLK) {
9087 val = I915_READ(LCPLL_CTL);
9088 val &= ~LCPLL_CD_SOURCE_FCLK;
9089 I915_WRITE(LCPLL_CTL, val);
9090
9091 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
9092 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
9093 DRM_ERROR("Switching back to LCPLL failed\n");
9094 }
Paulo Zanoni215733f2013-08-19 13:18:07 -03009095
Mika Kuoppala59bad942015-01-16 11:34:40 +02009096 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009097}
9098
Paulo Zanoni765dab672014-03-07 20:08:18 -03009099/*
9100 * Package states C8 and deeper are really deep PC states that can only be
9101 * reached when all the devices on the system allow it, so even if the graphics
9102 * device allows PC8+, it doesn't mean the system will actually get to these
9103 * states. Our driver only allows PC8+ when going into runtime PM.
9104 *
9105 * The requirements for PC8+ are that all the outputs are disabled, the power
9106 * well is disabled and most interrupts are disabled, and these are also
9107 * requirements for runtime PM. When these conditions are met, we manually do
9108 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
9109 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
9110 * hang the machine.
9111 *
9112 * When we really reach PC8 or deeper states (not just when we allow it) we lose
9113 * the state of some registers, so when we come back from PC8+ we need to
9114 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
9115 * need to take care of the registers kept by RC6. Notice that this happens even
9116 * if we don't put the device in PCI D3 state (which is what currently happens
9117 * because of the runtime PM support).
9118 *
9119 * For more, read "Display Sequences for Package C8" on the hardware
9120 * documentation.
9121 */
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03009122void hsw_enable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03009123{
Paulo Zanonic67a4702013-08-19 13:18:09 -03009124 struct drm_device *dev = dev_priv->dev;
9125 uint32_t val;
9126
Paulo Zanonic67a4702013-08-19 13:18:09 -03009127 DRM_DEBUG_KMS("Enabling package C8+\n");
9128
Paulo Zanonic67a4702013-08-19 13:18:09 -03009129 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
9130 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9131 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
9132 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9133 }
9134
9135 lpt_disable_clkout_dp(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009136 hsw_disable_lcpll(dev_priv, true, true);
9137}
9138
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03009139void hsw_disable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03009140{
9141 struct drm_device *dev = dev_priv->dev;
9142 uint32_t val;
9143
Paulo Zanonic67a4702013-08-19 13:18:09 -03009144 DRM_DEBUG_KMS("Disabling package C8+\n");
9145
9146 hsw_restore_lcpll(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009147 lpt_init_pch_refclk(dev);
9148
9149 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
9150 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9151 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
9152 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9153 }
9154
9155 intel_prepare_ddi(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009156}
9157
Vandana Kannanf8437dd12014-11-24 13:37:39 +05309158static void broxton_modeset_global_resources(struct drm_atomic_state *state)
9159{
9160 struct drm_device *dev = state->dev;
9161 struct drm_i915_private *dev_priv = dev->dev_private;
9162 int max_pixclk = intel_mode_max_pixclk(state);
9163 int req_cdclk;
9164
9165 /* see the comment in valleyview_modeset_global_resources */
9166 if (WARN_ON(max_pixclk < 0))
9167 return;
9168
9169 req_cdclk = broxton_calc_cdclk(dev_priv, max_pixclk);
9170
9171 if (req_cdclk != dev_priv->cdclk_freq)
9172 broxton_set_cdclk(dev, req_cdclk);
9173}
9174
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009175static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
9176 struct intel_crtc_state *crtc_state)
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03009177{
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009178 if (!intel_ddi_pll_select(crtc, crtc_state))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03009179 return -EINVAL;
Daniel Vetter716c2e52014-06-25 22:02:02 +03009180
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03009181 crtc->lowfreq_avail = false;
Daniel Vetter644cef32014-04-24 23:55:07 +02009182
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02009183 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08009184}
9185
Satheeshakrishna M3760b592014-08-22 09:49:11 +05309186static void bxt_get_ddi_pll(struct drm_i915_private *dev_priv,
9187 enum port port,
9188 struct intel_crtc_state *pipe_config)
9189{
9190 switch (port) {
9191 case PORT_A:
9192 pipe_config->ddi_pll_sel = SKL_DPLL0;
9193 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
9194 break;
9195 case PORT_B:
9196 pipe_config->ddi_pll_sel = SKL_DPLL1;
9197 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
9198 break;
9199 case PORT_C:
9200 pipe_config->ddi_pll_sel = SKL_DPLL2;
9201 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
9202 break;
9203 default:
9204 DRM_ERROR("Incorrect port type\n");
9205 }
9206}
9207
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009208static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
9209 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009210 struct intel_crtc_state *pipe_config)
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009211{
Damien Lespiau3148ade2014-11-21 16:14:56 +00009212 u32 temp, dpll_ctl1;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009213
9214 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
9215 pipe_config->ddi_pll_sel = temp >> (port * 3 + 1);
9216
9217 switch (pipe_config->ddi_pll_sel) {
Damien Lespiau3148ade2014-11-21 16:14:56 +00009218 case SKL_DPLL0:
9219 /*
9220 * On SKL the eDP DPLL (DPLL0 as we don't use SSC) is not part
9221 * of the shared DPLL framework and thus needs to be read out
9222 * separately
9223 */
9224 dpll_ctl1 = I915_READ(DPLL_CTRL1);
9225 pipe_config->dpll_hw_state.ctrl1 = dpll_ctl1 & 0x3f;
9226 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009227 case SKL_DPLL1:
9228 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
9229 break;
9230 case SKL_DPLL2:
9231 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
9232 break;
9233 case SKL_DPLL3:
9234 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
9235 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009236 }
9237}
9238
Damien Lespiau7d2c8172014-07-29 18:06:18 +01009239static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
9240 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009241 struct intel_crtc_state *pipe_config)
Damien Lespiau7d2c8172014-07-29 18:06:18 +01009242{
9243 pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
9244
9245 switch (pipe_config->ddi_pll_sel) {
9246 case PORT_CLK_SEL_WRPLL1:
9247 pipe_config->shared_dpll = DPLL_ID_WRPLL1;
9248 break;
9249 case PORT_CLK_SEL_WRPLL2:
9250 pipe_config->shared_dpll = DPLL_ID_WRPLL2;
9251 break;
9252 }
9253}
9254
Daniel Vetter26804af2014-06-25 22:01:55 +03009255static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009256 struct intel_crtc_state *pipe_config)
Daniel Vetter26804af2014-06-25 22:01:55 +03009257{
9258 struct drm_device *dev = crtc->base.dev;
9259 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterd452c5b2014-07-04 11:27:39 -03009260 struct intel_shared_dpll *pll;
Daniel Vetter26804af2014-06-25 22:01:55 +03009261 enum port port;
9262 uint32_t tmp;
9263
9264 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
9265
9266 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
9267
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009268 if (IS_SKYLAKE(dev))
9269 skylake_get_ddi_pll(dev_priv, port, pipe_config);
Satheeshakrishna M3760b592014-08-22 09:49:11 +05309270 else if (IS_BROXTON(dev))
9271 bxt_get_ddi_pll(dev_priv, port, pipe_config);
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009272 else
9273 haswell_get_ddi_pll(dev_priv, port, pipe_config);
Daniel Vetter9cd86932014-06-25 22:01:57 +03009274
Daniel Vetterd452c5b2014-07-04 11:27:39 -03009275 if (pipe_config->shared_dpll >= 0) {
9276 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
9277
9278 WARN_ON(!pll->get_hw_state(dev_priv, pll,
9279 &pipe_config->dpll_hw_state));
9280 }
9281
Daniel Vetter26804af2014-06-25 22:01:55 +03009282 /*
9283 * Haswell has only FDI/PCH transcoder A. It is which is connected to
9284 * DDI E. So just check whether this pipe is wired to DDI E and whether
9285 * the PCH transcoder is on.
9286 */
Damien Lespiauca370452013-12-03 13:56:24 +00009287 if (INTEL_INFO(dev)->gen < 9 &&
9288 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
Daniel Vetter26804af2014-06-25 22:01:55 +03009289 pipe_config->has_pch_encoder = true;
9290
9291 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
9292 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
9293 FDI_DP_PORT_WIDTH_SHIFT) + 1;
9294
9295 ironlake_get_fdi_m_n_config(crtc, pipe_config);
9296 }
9297}
9298
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009299static bool haswell_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009300 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009301{
9302 struct drm_device *dev = crtc->base.dev;
9303 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009304 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009305 uint32_t tmp;
9306
Daniel Vetterf458ebb2014-09-30 10:56:39 +02009307 if (!intel_display_power_is_enabled(dev_priv,
Imre Deakb5482bd2014-03-05 16:20:55 +02009308 POWER_DOMAIN_PIPE(crtc->pipe)))
9309 return false;
9310
Daniel Vettere143a212013-07-04 12:01:15 +02009311 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009312 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
9313
Daniel Vettereccb1402013-05-22 00:50:22 +02009314 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
9315 if (tmp & TRANS_DDI_FUNC_ENABLE) {
9316 enum pipe trans_edp_pipe;
9317 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
9318 default:
9319 WARN(1, "unknown pipe linked to edp transcoder\n");
9320 case TRANS_DDI_EDP_INPUT_A_ONOFF:
9321 case TRANS_DDI_EDP_INPUT_A_ON:
9322 trans_edp_pipe = PIPE_A;
9323 break;
9324 case TRANS_DDI_EDP_INPUT_B_ONOFF:
9325 trans_edp_pipe = PIPE_B;
9326 break;
9327 case TRANS_DDI_EDP_INPUT_C_ONOFF:
9328 trans_edp_pipe = PIPE_C;
9329 break;
9330 }
9331
9332 if (trans_edp_pipe == crtc->pipe)
9333 pipe_config->cpu_transcoder = TRANSCODER_EDP;
9334 }
9335
Daniel Vetterf458ebb2014-09-30 10:56:39 +02009336 if (!intel_display_power_is_enabled(dev_priv,
Daniel Vettereccb1402013-05-22 00:50:22 +02009337 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -03009338 return false;
9339
Daniel Vettereccb1402013-05-22 00:50:22 +02009340 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009341 if (!(tmp & PIPECONF_ENABLE))
9342 return false;
9343
Daniel Vetter26804af2014-06-25 22:01:55 +03009344 haswell_get_ddi_port_state(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02009345
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009346 intel_get_pipe_timings(crtc, pipe_config);
9347
Chandra Kondurua1b22782015-04-07 15:28:45 -07009348 if (INTEL_INFO(dev)->gen >= 9) {
9349 skl_init_scalers(dev, crtc, pipe_config);
9350 }
9351
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009352 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009353 if (intel_display_power_is_enabled(dev_priv, pfit_domain)) {
Jesse Barnesff6d9f52015-01-21 17:19:54 -08009354 if (INTEL_INFO(dev)->gen == 9)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009355 skylake_get_pfit_config(crtc, pipe_config);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08009356 else if (INTEL_INFO(dev)->gen < 9)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009357 ironlake_get_pfit_config(crtc, pipe_config);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08009358 else
9359 MISSING_CASE(INTEL_INFO(dev)->gen);
9360
Chandra Kondurua1b22782015-04-07 15:28:45 -07009361 } else {
9362 pipe_config->scaler_state.scaler_id = -1;
9363 pipe_config->scaler_state.scaler_users &= ~(1 << SKL_CRTC_INDEX);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009364 }
Daniel Vetter88adfff2013-03-28 10:42:01 +01009365
Jesse Barnese59150d2014-01-07 13:30:45 -08009366 if (IS_HASWELL(dev))
9367 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
9368 (I915_READ(IPS_CTL) & IPS_ENABLE);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03009369
Clint Taylorebb69c92014-09-30 10:30:22 -07009370 if (pipe_config->cpu_transcoder != TRANSCODER_EDP) {
9371 pipe_config->pixel_multiplier =
9372 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
9373 } else {
9374 pipe_config->pixel_multiplier = 1;
9375 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02009376
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009377 return true;
9378}
9379
Chris Wilson560b85b2010-08-07 11:01:38 +01009380static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
9381{
9382 struct drm_device *dev = crtc->dev;
9383 struct drm_i915_private *dev_priv = dev->dev_private;
9384 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälädc41c152014-08-13 11:57:05 +03009385 uint32_t cntl = 0, size = 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01009386
Ville Syrjälädc41c152014-08-13 11:57:05 +03009387 if (base) {
Matt Roper3dd512f2015-02-27 10:12:00 -08009388 unsigned int width = intel_crtc->base.cursor->state->crtc_w;
9389 unsigned int height = intel_crtc->base.cursor->state->crtc_h;
Ville Syrjälädc41c152014-08-13 11:57:05 +03009390 unsigned int stride = roundup_pow_of_two(width) * 4;
9391
9392 switch (stride) {
9393 default:
9394 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
9395 width, stride);
9396 stride = 256;
9397 /* fallthrough */
9398 case 256:
9399 case 512:
9400 case 1024:
9401 case 2048:
9402 break;
Chris Wilson4b0e3332014-05-30 16:35:26 +03009403 }
9404
Ville Syrjälädc41c152014-08-13 11:57:05 +03009405 cntl |= CURSOR_ENABLE |
9406 CURSOR_GAMMA_ENABLE |
9407 CURSOR_FORMAT_ARGB |
9408 CURSOR_STRIDE(stride);
9409
9410 size = (height << 12) | width;
Chris Wilson4b0e3332014-05-30 16:35:26 +03009411 }
Chris Wilson560b85b2010-08-07 11:01:38 +01009412
Ville Syrjälädc41c152014-08-13 11:57:05 +03009413 if (intel_crtc->cursor_cntl != 0 &&
9414 (intel_crtc->cursor_base != base ||
9415 intel_crtc->cursor_size != size ||
9416 intel_crtc->cursor_cntl != cntl)) {
9417 /* On these chipsets we can only modify the base/size/stride
9418 * whilst the cursor is disabled.
9419 */
9420 I915_WRITE(_CURACNTR, 0);
9421 POSTING_READ(_CURACNTR);
9422 intel_crtc->cursor_cntl = 0;
9423 }
9424
Ville Syrjälä99d1f382014-09-12 20:53:32 +03009425 if (intel_crtc->cursor_base != base) {
Ville Syrjälädc41c152014-08-13 11:57:05 +03009426 I915_WRITE(_CURABASE, base);
Ville Syrjälä99d1f382014-09-12 20:53:32 +03009427 intel_crtc->cursor_base = base;
9428 }
Ville Syrjälädc41c152014-08-13 11:57:05 +03009429
9430 if (intel_crtc->cursor_size != size) {
9431 I915_WRITE(CURSIZE, size);
9432 intel_crtc->cursor_size = size;
9433 }
9434
Chris Wilson4b0e3332014-05-30 16:35:26 +03009435 if (intel_crtc->cursor_cntl != cntl) {
9436 I915_WRITE(_CURACNTR, cntl);
9437 POSTING_READ(_CURACNTR);
9438 intel_crtc->cursor_cntl = cntl;
9439 }
Chris Wilson560b85b2010-08-07 11:01:38 +01009440}
9441
9442static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
9443{
9444 struct drm_device *dev = crtc->dev;
9445 struct drm_i915_private *dev_priv = dev->dev_private;
9446 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9447 int pipe = intel_crtc->pipe;
Chris Wilson4b0e3332014-05-30 16:35:26 +03009448 uint32_t cntl;
Chris Wilson560b85b2010-08-07 11:01:38 +01009449
Chris Wilson4b0e3332014-05-30 16:35:26 +03009450 cntl = 0;
9451 if (base) {
9452 cntl = MCURSOR_GAMMA_ENABLE;
Matt Roper3dd512f2015-02-27 10:12:00 -08009453 switch (intel_crtc->base.cursor->state->crtc_w) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05309454 case 64:
9455 cntl |= CURSOR_MODE_64_ARGB_AX;
9456 break;
9457 case 128:
9458 cntl |= CURSOR_MODE_128_ARGB_AX;
9459 break;
9460 case 256:
9461 cntl |= CURSOR_MODE_256_ARGB_AX;
9462 break;
9463 default:
Matt Roper3dd512f2015-02-27 10:12:00 -08009464 MISSING_CASE(intel_crtc->base.cursor->state->crtc_w);
Sagar Kamble4726e0b2014-03-10 17:06:23 +05309465 return;
Chris Wilson560b85b2010-08-07 11:01:38 +01009466 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03009467 cntl |= pipe << 28; /* Connect to correct pipe */
Ville Syrjälä47bf17a2014-09-12 20:53:33 +03009468
9469 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
9470 cntl |= CURSOR_PIPE_CSC_ENABLE;
Chris Wilson560b85b2010-08-07 11:01:38 +01009471 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03009472
Matt Roper8e7d6882015-01-21 16:35:41 -08009473 if (crtc->cursor->state->rotation == BIT(DRM_ROTATE_180))
Ville Syrjälä4398ad42014-10-23 07:41:34 -07009474 cntl |= CURSOR_ROTATE_180;
9475
Chris Wilson4b0e3332014-05-30 16:35:26 +03009476 if (intel_crtc->cursor_cntl != cntl) {
9477 I915_WRITE(CURCNTR(pipe), cntl);
9478 POSTING_READ(CURCNTR(pipe));
9479 intel_crtc->cursor_cntl = cntl;
9480 }
9481
Jesse Barnes65a21cd2011-10-12 11:10:21 -07009482 /* and commit changes on next vblank */
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03009483 I915_WRITE(CURBASE(pipe), base);
9484 POSTING_READ(CURBASE(pipe));
Ville Syrjälä99d1f382014-09-12 20:53:32 +03009485
9486 intel_crtc->cursor_base = base;
Jesse Barnes65a21cd2011-10-12 11:10:21 -07009487}
9488
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009489/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01009490static void intel_crtc_update_cursor(struct drm_crtc *crtc,
9491 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009492{
9493 struct drm_device *dev = crtc->dev;
9494 struct drm_i915_private *dev_priv = dev->dev_private;
9495 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9496 int pipe = intel_crtc->pipe;
Matt Roper3d7d6512014-06-10 08:28:13 -07009497 int x = crtc->cursor_x;
9498 int y = crtc->cursor_y;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03009499 u32 base = 0, pos = 0;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009500
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03009501 if (on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009502 base = intel_crtc->cursor_addr;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009503
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009504 if (x >= intel_crtc->config->pipe_src_w)
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03009505 base = 0;
9506
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009507 if (y >= intel_crtc->config->pipe_src_h)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009508 base = 0;
9509
9510 if (x < 0) {
Matt Roper3dd512f2015-02-27 10:12:00 -08009511 if (x + intel_crtc->base.cursor->state->crtc_w <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009512 base = 0;
9513
9514 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
9515 x = -x;
9516 }
9517 pos |= x << CURSOR_X_SHIFT;
9518
9519 if (y < 0) {
Matt Roper3dd512f2015-02-27 10:12:00 -08009520 if (y + intel_crtc->base.cursor->state->crtc_h <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009521 base = 0;
9522
9523 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
9524 y = -y;
9525 }
9526 pos |= y << CURSOR_Y_SHIFT;
9527
Chris Wilson4b0e3332014-05-30 16:35:26 +03009528 if (base == 0 && intel_crtc->cursor_base == 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009529 return;
9530
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03009531 I915_WRITE(CURPOS(pipe), pos);
9532
Ville Syrjälä4398ad42014-10-23 07:41:34 -07009533 /* ILK+ do this automagically */
9534 if (HAS_GMCH_DISPLAY(dev) &&
Matt Roper8e7d6882015-01-21 16:35:41 -08009535 crtc->cursor->state->rotation == BIT(DRM_ROTATE_180)) {
Matt Roper3dd512f2015-02-27 10:12:00 -08009536 base += (intel_crtc->base.cursor->state->crtc_h *
9537 intel_crtc->base.cursor->state->crtc_w - 1) * 4;
Ville Syrjälä4398ad42014-10-23 07:41:34 -07009538 }
9539
Ville Syrjälä8ac54662014-08-12 19:39:54 +03009540 if (IS_845G(dev) || IS_I865G(dev))
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03009541 i845_update_cursor(crtc, base);
9542 else
9543 i9xx_update_cursor(crtc, base);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009544}
9545
Ville Syrjälädc41c152014-08-13 11:57:05 +03009546static bool cursor_size_ok(struct drm_device *dev,
9547 uint32_t width, uint32_t height)
9548{
9549 if (width == 0 || height == 0)
9550 return false;
9551
9552 /*
9553 * 845g/865g are special in that they are only limited by
9554 * the width of their cursors, the height is arbitrary up to
9555 * the precision of the register. Everything else requires
9556 * square cursors, limited to a few power-of-two sizes.
9557 */
9558 if (IS_845G(dev) || IS_I865G(dev)) {
9559 if ((width & 63) != 0)
9560 return false;
9561
9562 if (width > (IS_845G(dev) ? 64 : 512))
9563 return false;
9564
9565 if (height > 1023)
9566 return false;
9567 } else {
9568 switch (width | height) {
9569 case 256:
9570 case 128:
9571 if (IS_GEN2(dev))
9572 return false;
9573 case 64:
9574 break;
9575 default:
9576 return false;
9577 }
9578 }
9579
9580 return true;
9581}
9582
Jesse Barnes79e53942008-11-07 14:24:08 -08009583static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01009584 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08009585{
James Simmons72034252010-08-03 01:33:19 +01009586 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08009587 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08009588
James Simmons72034252010-08-03 01:33:19 +01009589 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08009590 intel_crtc->lut_r[i] = red[i] >> 8;
9591 intel_crtc->lut_g[i] = green[i] >> 8;
9592 intel_crtc->lut_b[i] = blue[i] >> 8;
9593 }
9594
9595 intel_crtc_load_lut(crtc);
9596}
9597
Jesse Barnes79e53942008-11-07 14:24:08 -08009598/* VESA 640x480x72Hz mode to set on the pipe */
9599static struct drm_display_mode load_detect_mode = {
9600 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
9601 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
9602};
9603
Daniel Vettera8bb6812014-02-10 18:00:39 +01009604struct drm_framebuffer *
9605__intel_framebuffer_create(struct drm_device *dev,
9606 struct drm_mode_fb_cmd2 *mode_cmd,
9607 struct drm_i915_gem_object *obj)
Chris Wilsond2dff872011-04-19 08:36:26 +01009608{
9609 struct intel_framebuffer *intel_fb;
9610 int ret;
9611
9612 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
9613 if (!intel_fb) {
Alexey Khoroshilov6ccb81f2014-11-08 01:41:23 +03009614 drm_gem_object_unreference(&obj->base);
Chris Wilsond2dff872011-04-19 08:36:26 +01009615 return ERR_PTR(-ENOMEM);
9616 }
9617
9618 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02009619 if (ret)
9620 goto err;
Chris Wilsond2dff872011-04-19 08:36:26 +01009621
9622 return &intel_fb->base;
Daniel Vetterdd4916c2013-10-09 21:23:51 +02009623err:
Alexey Khoroshilov6ccb81f2014-11-08 01:41:23 +03009624 drm_gem_object_unreference(&obj->base);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02009625 kfree(intel_fb);
9626
9627 return ERR_PTR(ret);
Chris Wilsond2dff872011-04-19 08:36:26 +01009628}
9629
Daniel Vetterb5ea6422014-03-02 21:18:00 +01009630static struct drm_framebuffer *
Daniel Vettera8bb6812014-02-10 18:00:39 +01009631intel_framebuffer_create(struct drm_device *dev,
9632 struct drm_mode_fb_cmd2 *mode_cmd,
9633 struct drm_i915_gem_object *obj)
9634{
9635 struct drm_framebuffer *fb;
9636 int ret;
9637
9638 ret = i915_mutex_lock_interruptible(dev);
9639 if (ret)
9640 return ERR_PTR(ret);
9641 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
9642 mutex_unlock(&dev->struct_mutex);
9643
9644 return fb;
9645}
9646
Chris Wilsond2dff872011-04-19 08:36:26 +01009647static u32
9648intel_framebuffer_pitch_for_width(int width, int bpp)
9649{
9650 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
9651 return ALIGN(pitch, 64);
9652}
9653
9654static u32
9655intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
9656{
9657 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
Fabian Frederick1267a262014-07-01 20:39:41 +02009658 return PAGE_ALIGN(pitch * mode->vdisplay);
Chris Wilsond2dff872011-04-19 08:36:26 +01009659}
9660
9661static struct drm_framebuffer *
9662intel_framebuffer_create_for_mode(struct drm_device *dev,
9663 struct drm_display_mode *mode,
9664 int depth, int bpp)
9665{
9666 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +00009667 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +01009668
9669 obj = i915_gem_alloc_object(dev,
9670 intel_framebuffer_size_for_mode(mode, bpp));
9671 if (obj == NULL)
9672 return ERR_PTR(-ENOMEM);
9673
9674 mode_cmd.width = mode->hdisplay;
9675 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08009676 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
9677 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00009678 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01009679
9680 return intel_framebuffer_create(dev, &mode_cmd, obj);
9681}
9682
9683static struct drm_framebuffer *
9684mode_fits_in_fbdev(struct drm_device *dev,
9685 struct drm_display_mode *mode)
9686{
Daniel Vetter4520f532013-10-09 09:18:51 +02009687#ifdef CONFIG_DRM_I915_FBDEV
Chris Wilsond2dff872011-04-19 08:36:26 +01009688 struct drm_i915_private *dev_priv = dev->dev_private;
9689 struct drm_i915_gem_object *obj;
9690 struct drm_framebuffer *fb;
9691
Daniel Vetter4c0e5522014-02-14 16:35:54 +01009692 if (!dev_priv->fbdev)
9693 return NULL;
9694
9695 if (!dev_priv->fbdev->fb)
Chris Wilsond2dff872011-04-19 08:36:26 +01009696 return NULL;
9697
Jesse Barnes8bcd4552014-02-07 12:10:38 -08009698 obj = dev_priv->fbdev->fb->obj;
Daniel Vetter4c0e5522014-02-14 16:35:54 +01009699 BUG_ON(!obj);
Chris Wilsond2dff872011-04-19 08:36:26 +01009700
Jesse Barnes8bcd4552014-02-07 12:10:38 -08009701 fb = &dev_priv->fbdev->fb->base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02009702 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
9703 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01009704 return NULL;
9705
Ville Syrjälä01f2c772011-12-20 00:06:49 +02009706 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01009707 return NULL;
9708
9709 return fb;
Daniel Vetter4520f532013-10-09 09:18:51 +02009710#else
9711 return NULL;
9712#endif
Chris Wilsond2dff872011-04-19 08:36:26 +01009713}
9714
Daniel Vetterd2434ab2012-08-12 21:20:10 +02009715bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01009716 struct drm_display_mode *mode,
Rob Clark51fd3712013-11-19 12:10:12 -05009717 struct intel_load_detect_pipe *old,
9718 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -08009719{
9720 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02009721 struct intel_encoder *intel_encoder =
9722 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08009723 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01009724 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08009725 struct drm_crtc *crtc = NULL;
9726 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02009727 struct drm_framebuffer *fb;
Rob Clark51fd3712013-11-19 12:10:12 -05009728 struct drm_mode_config *config = &dev->mode_config;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +02009729 struct drm_atomic_state *state = NULL;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +02009730 struct drm_connector_state *connector_state;
Rob Clark51fd3712013-11-19 12:10:12 -05009731 int ret, i = -1;
Jesse Barnes79e53942008-11-07 14:24:08 -08009732
Chris Wilsond2dff872011-04-19 08:36:26 +01009733 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03009734 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +03009735 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +01009736
Rob Clark51fd3712013-11-19 12:10:12 -05009737retry:
9738 ret = drm_modeset_lock(&config->connection_mutex, ctx);
9739 if (ret)
9740 goto fail_unlock;
Daniel Vetter6e9f7982014-05-29 23:54:47 +02009741
Jesse Barnes79e53942008-11-07 14:24:08 -08009742 /*
9743 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01009744 *
Jesse Barnes79e53942008-11-07 14:24:08 -08009745 * - if the connector already has an assigned crtc, use it (but make
9746 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01009747 *
Jesse Barnes79e53942008-11-07 14:24:08 -08009748 * - try to find the first unused crtc that can drive this connector,
9749 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08009750 */
9751
9752 /* See if we already have a CRTC for this connector */
9753 if (encoder->crtc) {
9754 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01009755
Rob Clark51fd3712013-11-19 12:10:12 -05009756 ret = drm_modeset_lock(&crtc->mutex, ctx);
9757 if (ret)
9758 goto fail_unlock;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01009759 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
9760 if (ret)
9761 goto fail_unlock;
Daniel Vetter7b240562012-12-12 00:35:33 +01009762
Daniel Vetter24218aa2012-08-12 19:27:11 +02009763 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01009764 old->load_detect_temp = false;
9765
9766 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02009767 if (connector->dpms != DRM_MODE_DPMS_ON)
9768 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01009769
Chris Wilson71731882011-04-19 23:10:58 +01009770 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08009771 }
9772
9773 /* Find an unused one (if possible) */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01009774 for_each_crtc(dev, possible_crtc) {
Jesse Barnes79e53942008-11-07 14:24:08 -08009775 i++;
9776 if (!(encoder->possible_crtcs & (1 << i)))
9777 continue;
Matt Roper83d65732015-02-25 13:12:16 -08009778 if (possible_crtc->state->enable)
Ville Syrjäläa4592492014-08-11 13:15:36 +03009779 continue;
9780 /* This can occur when applying the pipe A quirk on resume. */
9781 if (to_intel_crtc(possible_crtc)->new_enabled)
9782 continue;
9783
9784 crtc = possible_crtc;
9785 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08009786 }
9787
9788 /*
9789 * If we didn't find an unused CRTC, don't use any.
9790 */
9791 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01009792 DRM_DEBUG_KMS("no pipe available for load-detect\n");
Rob Clark51fd3712013-11-19 12:10:12 -05009793 goto fail_unlock;
Jesse Barnes79e53942008-11-07 14:24:08 -08009794 }
9795
Rob Clark51fd3712013-11-19 12:10:12 -05009796 ret = drm_modeset_lock(&crtc->mutex, ctx);
9797 if (ret)
9798 goto fail_unlock;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01009799 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
9800 if (ret)
9801 goto fail_unlock;
Daniel Vetterfc303102012-07-09 10:40:58 +02009802 intel_encoder->new_crtc = to_intel_crtc(crtc);
9803 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08009804
9805 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02009806 intel_crtc->new_enabled = true;
Daniel Vetter24218aa2012-08-12 19:27:11 +02009807 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01009808 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01009809 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08009810
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +02009811 state = drm_atomic_state_alloc(dev);
9812 if (!state)
9813 return false;
9814
9815 state->acquire_ctx = ctx;
9816
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +02009817 connector_state = drm_atomic_get_connector_state(state, connector);
9818 if (IS_ERR(connector_state)) {
9819 ret = PTR_ERR(connector_state);
9820 goto fail;
9821 }
9822
9823 connector_state->crtc = crtc;
9824 connector_state->best_encoder = &intel_encoder->base;
9825
Chris Wilson64927112011-04-20 07:25:26 +01009826 if (!mode)
9827 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08009828
Chris Wilsond2dff872011-04-19 08:36:26 +01009829 /* We need a framebuffer large enough to accommodate all accesses
9830 * that the plane may generate whilst we perform load detection.
9831 * We can not rely on the fbcon either being present (we get called
9832 * during its initialisation to detect all boot displays, or it may
9833 * not even exist) or that it is large enough to satisfy the
9834 * requested mode.
9835 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02009836 fb = mode_fits_in_fbdev(dev, mode);
9837 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01009838 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02009839 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
9840 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01009841 } else
9842 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02009843 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01009844 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +02009845 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08009846 }
Chris Wilsond2dff872011-04-19 08:36:26 +01009847
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +02009848 if (intel_set_mode(crtc, mode, 0, 0, fb, state)) {
Chris Wilson64927112011-04-20 07:25:26 +01009849 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01009850 if (old->release_fb)
9851 old->release_fb->funcs->destroy(old->release_fb);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02009852 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08009853 }
Daniel Vetter9128b042015-03-03 17:31:21 +01009854 crtc->primary->crtc = crtc;
Chris Wilson71731882011-04-19 23:10:58 +01009855
Jesse Barnes79e53942008-11-07 14:24:08 -08009856 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07009857 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +01009858 return true;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02009859
9860 fail:
Matt Roper83d65732015-02-25 13:12:16 -08009861 intel_crtc->new_enabled = crtc->state->enable;
Rob Clark51fd3712013-11-19 12:10:12 -05009862fail_unlock:
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +02009863 if (state) {
9864 drm_atomic_state_free(state);
9865 state = NULL;
9866 }
9867
Rob Clark51fd3712013-11-19 12:10:12 -05009868 if (ret == -EDEADLK) {
9869 drm_modeset_backoff(ctx);
9870 goto retry;
9871 }
9872
Ville Syrjälä412b61d2014-01-17 15:59:39 +02009873 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08009874}
9875
Daniel Vetterd2434ab2012-08-12 21:20:10 +02009876void intel_release_load_detect_pipe(struct drm_connector *connector,
Ander Conselvan de Oliveira49172fe2015-03-20 16:18:02 +02009877 struct intel_load_detect_pipe *old,
9878 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -08009879{
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +02009880 struct drm_device *dev = connector->dev;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02009881 struct intel_encoder *intel_encoder =
9882 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01009883 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +01009884 struct drm_crtc *crtc = encoder->crtc;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02009885 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +02009886 struct drm_atomic_state *state;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +02009887 struct drm_connector_state *connector_state;
Jesse Barnes79e53942008-11-07 14:24:08 -08009888
Chris Wilsond2dff872011-04-19 08:36:26 +01009889 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03009890 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +03009891 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +01009892
Chris Wilson8261b192011-04-19 23:18:09 +01009893 if (old->load_detect_temp) {
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +02009894 state = drm_atomic_state_alloc(dev);
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +02009895 if (!state)
9896 goto fail;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +02009897
9898 state->acquire_ctx = ctx;
9899
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +02009900 connector_state = drm_atomic_get_connector_state(state, connector);
9901 if (IS_ERR(connector_state))
9902 goto fail;
9903
Daniel Vetterfc303102012-07-09 10:40:58 +02009904 to_intel_connector(connector)->new_encoder = NULL;
9905 intel_encoder->new_crtc = NULL;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02009906 intel_crtc->new_enabled = false;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +02009907
9908 connector_state->best_encoder = NULL;
9909 connector_state->crtc = NULL;
9910
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +02009911 intel_set_mode(crtc, NULL, 0, 0, NULL, state);
9912
9913 drm_atomic_state_free(state);
Chris Wilsond2dff872011-04-19 08:36:26 +01009914
Daniel Vetter36206362012-12-10 20:42:17 +01009915 if (old->release_fb) {
9916 drm_framebuffer_unregister_private(old->release_fb);
9917 drm_framebuffer_unreference(old->release_fb);
9918 }
Chris Wilsond2dff872011-04-19 08:36:26 +01009919
Chris Wilson0622a532011-04-21 09:32:11 +01009920 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08009921 }
9922
Eric Anholtc751ce42010-03-25 11:48:48 -07009923 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +02009924 if (old->dpms_mode != DRM_MODE_DPMS_ON)
9925 connector->funcs->dpms(connector, old->dpms_mode);
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +02009926
9927 return;
9928fail:
9929 DRM_DEBUG_KMS("Couldn't release load detect pipe.\n");
9930 drm_atomic_state_free(state);
Jesse Barnes79e53942008-11-07 14:24:08 -08009931}
9932
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03009933static int i9xx_pll_refclk(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009934 const struct intel_crtc_state *pipe_config)
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03009935{
9936 struct drm_i915_private *dev_priv = dev->dev_private;
9937 u32 dpll = pipe_config->dpll_hw_state.dpll;
9938
9939 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
Ville Syrjäläe91e9412013-12-09 18:54:16 +02009940 return dev_priv->vbt.lvds_ssc_freq;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03009941 else if (HAS_PCH_SPLIT(dev))
9942 return 120000;
9943 else if (!IS_GEN2(dev))
9944 return 96000;
9945 else
9946 return 48000;
9947}
9948
Jesse Barnes79e53942008-11-07 14:24:08 -08009949/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009950static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009951 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08009952{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009953 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08009954 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009955 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +03009956 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -08009957 u32 fp;
9958 intel_clock_t clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03009959 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -08009960
9961 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +03009962 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -08009963 else
Ville Syrjälä293623f2013-09-13 16:18:46 +03009964 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -08009965
9966 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05009967 if (IS_PINEVIEW(dev)) {
9968 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
9969 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08009970 } else {
9971 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
9972 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
9973 }
9974
Chris Wilsona6c45cf2010-09-17 00:32:17 +01009975 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05009976 if (IS_PINEVIEW(dev))
9977 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
9978 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08009979 else
9980 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08009981 DPLL_FPA01_P1_POST_DIV_SHIFT);
9982
9983 switch (dpll & DPLL_MODE_MASK) {
9984 case DPLLB_MODE_DAC_SERIAL:
9985 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
9986 5 : 10;
9987 break;
9988 case DPLLB_MODE_LVDS:
9989 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
9990 7 : 14;
9991 break;
9992 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08009993 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08009994 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009995 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08009996 }
9997
Daniel Vetterac58c3f2013-06-01 17:16:17 +02009998 if (IS_PINEVIEW(dev))
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03009999 pineview_clock(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +020010000 else
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010001 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -080010002 } else {
Ville Syrjälä0fb58222014-01-10 14:06:46 +020010003 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +020010004 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
Jesse Barnes79e53942008-11-07 14:24:08 -080010005
10006 if (is_lvds) {
10007 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
10008 DPLL_FPA01_P1_POST_DIV_SHIFT);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +020010009
10010 if (lvds & LVDS_CLKB_POWER_UP)
10011 clock.p2 = 7;
10012 else
10013 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -080010014 } else {
10015 if (dpll & PLL_P1_DIVIDE_BY_TWO)
10016 clock.p1 = 2;
10017 else {
10018 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
10019 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
10020 }
10021 if (dpll & PLL_P2_DIVIDE_BY_4)
10022 clock.p2 = 4;
10023 else
10024 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -080010025 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010026
10027 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -080010028 }
10029
Ville Syrjälä18442d02013-09-13 16:00:08 +030010030 /*
10031 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +010010032 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +030010033 * encoder's get_config() function.
10034 */
10035 pipe_config->port_clock = clock.dot;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010036}
10037
Ville Syrjälä6878da02013-09-13 15:59:11 +030010038int intel_dotclock_calculate(int link_freq,
10039 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010040{
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010041 /*
10042 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +030010043 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010044 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +030010045 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010046 *
10047 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +030010048 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -080010049 */
10050
Ville Syrjälä6878da02013-09-13 15:59:11 +030010051 if (!m_n->link_n)
10052 return 0;
10053
10054 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
10055}
10056
Ville Syrjälä18442d02013-09-13 16:00:08 +030010057static void ironlake_pch_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010058 struct intel_crtc_state *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +030010059{
10060 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä18442d02013-09-13 16:00:08 +030010061
10062 /* read out port_clock from the DPLL */
10063 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +030010064
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010065 /*
Ville Syrjälä18442d02013-09-13 16:00:08 +030010066 * This value does not include pixel_multiplier.
Damien Lespiau241bfc32013-09-25 16:45:37 +010010067 * We will check that port_clock and adjusted_mode.crtc_clock
Ville Syrjälä18442d02013-09-13 16:00:08 +030010068 * agree once we know their relationship in the encoder's
10069 * get_config() function.
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010070 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010071 pipe_config->base.adjusted_mode.crtc_clock =
Ville Syrjälä18442d02013-09-13 16:00:08 +030010072 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
10073 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -080010074}
10075
10076/** Returns the currently programmed mode of the given pipe. */
10077struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
10078 struct drm_crtc *crtc)
10079{
Jesse Barnes548f2452011-02-17 10:40:53 -080010080 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080010081 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010082 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080010083 struct drm_display_mode *mode;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010084 struct intel_crtc_state pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -020010085 int htot = I915_READ(HTOTAL(cpu_transcoder));
10086 int hsync = I915_READ(HSYNC(cpu_transcoder));
10087 int vtot = I915_READ(VTOTAL(cpu_transcoder));
10088 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +030010089 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -080010090
10091 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
10092 if (!mode)
10093 return NULL;
10094
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010095 /*
10096 * Construct a pipe_config sufficient for getting the clock info
10097 * back out of crtc_clock_get.
10098 *
10099 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
10100 * to use a real value here instead.
10101 */
Ville Syrjälä293623f2013-09-13 16:18:46 +030010102 pipe_config.cpu_transcoder = (enum transcoder) pipe;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010103 pipe_config.pixel_multiplier = 1;
Ville Syrjälä293623f2013-09-13 16:18:46 +030010104 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
10105 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
10106 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010107 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
10108
Ville Syrjälä773ae032013-09-23 17:48:20 +030010109 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -080010110 mode->hdisplay = (htot & 0xffff) + 1;
10111 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
10112 mode->hsync_start = (hsync & 0xffff) + 1;
10113 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
10114 mode->vdisplay = (vtot & 0xffff) + 1;
10115 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
10116 mode->vsync_start = (vsync & 0xffff) + 1;
10117 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
10118
10119 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -080010120
10121 return mode;
10122}
10123
Jesse Barnes652c3932009-08-17 13:31:43 -070010124static void intel_decrease_pllclock(struct drm_crtc *crtc)
10125{
10126 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +030010127 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -070010128 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -070010129
Sonika Jindalbaff2962014-07-22 11:16:35 +053010130 if (!HAS_GMCH_DISPLAY(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -070010131 return;
10132
10133 if (!dev_priv->lvds_downclock_avail)
10134 return;
10135
10136 /*
10137 * Since this is called by a timer, we should never get here in
10138 * the manual case.
10139 */
10140 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +010010141 int pipe = intel_crtc->pipe;
10142 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +020010143 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +010010144
Zhao Yakui44d98a62009-10-09 11:39:40 +080010145 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -070010146
Sean Paul8ac5a6d2012-02-13 13:14:51 -050010147 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -070010148
Chris Wilson074b5e12012-05-02 12:07:06 +010010149 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -070010150 dpll |= DISPLAY_RATE_SELECT_FPA1;
10151 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -070010152 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -070010153 dpll = I915_READ(dpll_reg);
10154 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +080010155 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -070010156 }
10157
10158}
10159
Chris Wilsonf047e392012-07-21 12:31:41 +010010160void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -070010161{
Paulo Zanonic67a4702013-08-19 13:18:09 -030010162 struct drm_i915_private *dev_priv = dev->dev_private;
10163
Chris Wilsonf62a0072014-02-21 17:55:39 +000010164 if (dev_priv->mm.busy)
10165 return;
10166
Paulo Zanoni43694d62014-03-07 20:08:08 -030010167 intel_runtime_pm_get(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -030010168 i915_update_gfx_val(dev_priv);
Chris Wilson43cf3bf2015-03-18 09:48:22 +000010169 if (INTEL_INFO(dev)->gen >= 6)
10170 gen6_rps_busy(dev_priv);
Chris Wilsonf62a0072014-02-21 17:55:39 +000010171 dev_priv->mm.busy = true;
Chris Wilsonf047e392012-07-21 12:31:41 +010010172}
10173
10174void intel_mark_idle(struct drm_device *dev)
10175{
Paulo Zanonic67a4702013-08-19 13:18:09 -030010176 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson725a5b52013-01-08 11:02:57 +000010177 struct drm_crtc *crtc;
10178
Chris Wilsonf62a0072014-02-21 17:55:39 +000010179 if (!dev_priv->mm.busy)
10180 return;
10181
10182 dev_priv->mm.busy = false;
10183
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010010184 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -070010185 if (!crtc->primary->fb)
Chris Wilson725a5b52013-01-08 11:02:57 +000010186 continue;
10187
10188 intel_decrease_pllclock(crtc);
10189 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +010010190
Damien Lespiau3d13ef22014-02-07 19:12:47 +000010191 if (INTEL_INFO(dev)->gen >= 6)
Chris Wilsonb29c19b2013-09-25 17:34:56 +010010192 gen6_rps_idle(dev->dev_private);
Paulo Zanonibb4cdd52014-02-21 13:52:19 -030010193
Paulo Zanoni43694d62014-03-07 20:08:08 -030010194 intel_runtime_pm_put(dev_priv);
Chris Wilsonf047e392012-07-21 12:31:41 +010010195}
10196
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020010197static void intel_crtc_set_state(struct intel_crtc *crtc,
10198 struct intel_crtc_state *crtc_state)
10199{
10200 kfree(crtc->config);
10201 crtc->config = crtc_state;
Ander Conselvan de Oliveira16f3f652015-01-15 14:55:27 +020010202 crtc->base.state = &crtc_state->base;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020010203}
10204
Jesse Barnes79e53942008-11-07 14:24:08 -080010205static void intel_crtc_destroy(struct drm_crtc *crtc)
10206{
10207 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010208 struct drm_device *dev = crtc->dev;
10209 struct intel_unpin_work *work;
Daniel Vetter67e77c52010-08-20 22:26:30 +020010210
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010211 spin_lock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010212 work = intel_crtc->unpin_work;
10213 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010214 spin_unlock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010215
10216 if (work) {
10217 cancel_work_sync(&work->work);
10218 kfree(work);
10219 }
Jesse Barnes79e53942008-11-07 14:24:08 -080010220
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020010221 intel_crtc_set_state(intel_crtc, NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -080010222 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010223
Jesse Barnes79e53942008-11-07 14:24:08 -080010224 kfree(intel_crtc);
10225}
10226
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010227static void intel_unpin_work_fn(struct work_struct *__work)
10228{
10229 struct intel_unpin_work *work =
10230 container_of(__work, struct intel_unpin_work, work);
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010231 struct drm_device *dev = work->crtc->dev;
Daniel Vetterf99d7062014-06-19 16:01:59 +020010232 enum pipe pipe = to_intel_crtc(work->crtc)->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010233
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010234 mutex_lock(&dev->struct_mutex);
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000010235 intel_unpin_fb_obj(work->old_fb, work->crtc->primary->state);
Chris Wilson05394f32010-11-08 19:18:58 +000010236 drm_gem_object_unreference(&work->pending_flip_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +000010237
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020010238 intel_fbc_update(dev);
John Harrisonf06cc1b2014-11-24 18:49:37 +000010239
10240 if (work->flip_queued_req)
John Harrison146d84f2014-12-05 13:49:33 +000010241 i915_gem_request_assign(&work->flip_queued_req, NULL);
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010242 mutex_unlock(&dev->struct_mutex);
10243
Daniel Vetterf99d7062014-06-19 16:01:59 +020010244 intel_frontbuffer_flip_complete(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
Chris Wilson89ed88b2015-02-16 14:31:49 +000010245 drm_framebuffer_unreference(work->old_fb);
Daniel Vetterf99d7062014-06-19 16:01:59 +020010246
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010247 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
10248 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
10249
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010250 kfree(work);
10251}
10252
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010253static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +010010254 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010255{
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010256 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10257 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010258 unsigned long flags;
10259
10260 /* Ignore early vblank irqs */
10261 if (intel_crtc == NULL)
10262 return;
10263
Daniel Vetterf3260382014-09-15 14:55:23 +020010264 /*
10265 * This is called both by irq handlers and the reset code (to complete
10266 * lost pageflips) so needs the full irqsave spinlocks.
10267 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010268 spin_lock_irqsave(&dev->event_lock, flags);
10269 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +000010270
10271 /* Ensure we don't miss a work->pending update ... */
10272 smp_rmb();
10273
10274 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010275 spin_unlock_irqrestore(&dev->event_lock, flags);
10276 return;
10277 }
10278
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010279 page_flip_completed(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +010010280
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010281 spin_unlock_irqrestore(&dev->event_lock, flags);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010282}
10283
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010284void intel_finish_page_flip(struct drm_device *dev, int pipe)
10285{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010286 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010287 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
10288
Mario Kleiner49b14a52010-12-09 07:00:07 +010010289 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010290}
10291
10292void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
10293{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010294 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010295 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
10296
Mario Kleiner49b14a52010-12-09 07:00:07 +010010297 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010298}
10299
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010300/* Is 'a' after or equal to 'b'? */
10301static bool g4x_flip_count_after_eq(u32 a, u32 b)
10302{
10303 return !((a - b) & 0x80000000);
10304}
10305
10306static bool page_flip_finished(struct intel_crtc *crtc)
10307{
10308 struct drm_device *dev = crtc->base.dev;
10309 struct drm_i915_private *dev_priv = dev->dev_private;
10310
Ville Syrjäläbdfa7542014-05-27 21:33:09 +030010311 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
10312 crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
10313 return true;
10314
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010315 /*
10316 * The relevant registers doen't exist on pre-ctg.
10317 * As the flip done interrupt doesn't trigger for mmio
10318 * flips on gmch platforms, a flip count check isn't
10319 * really needed there. But since ctg has the registers,
10320 * include it in the check anyway.
10321 */
10322 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
10323 return true;
10324
10325 /*
10326 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
10327 * used the same base address. In that case the mmio flip might
10328 * have completed, but the CS hasn't even executed the flip yet.
10329 *
10330 * A flip count check isn't enough as the CS might have updated
10331 * the base address just after start of vblank, but before we
10332 * managed to process the interrupt. This means we'd complete the
10333 * CS flip too soon.
10334 *
10335 * Combining both checks should get us a good enough result. It may
10336 * still happen that the CS flip has been executed, but has not
10337 * yet actually completed. But in case the base address is the same
10338 * anyway, we don't really care.
10339 */
10340 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
10341 crtc->unpin_work->gtt_offset &&
10342 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_GM45(crtc->pipe)),
10343 crtc->unpin_work->flip_count);
10344}
10345
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010346void intel_prepare_page_flip(struct drm_device *dev, int plane)
10347{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010348 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010349 struct intel_crtc *intel_crtc =
10350 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
10351 unsigned long flags;
10352
Daniel Vetterf3260382014-09-15 14:55:23 +020010353
10354 /*
10355 * This is called both by irq handlers and the reset code (to complete
10356 * lost pageflips) so needs the full irqsave spinlocks.
10357 *
10358 * NB: An MMIO update of the plane base pointer will also
Chris Wilsone7d841c2012-12-03 11:36:30 +000010359 * generate a page-flip completion irq, i.e. every modeset
10360 * is also accompanied by a spurious intel_prepare_page_flip().
10361 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010362 spin_lock_irqsave(&dev->event_lock, flags);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010363 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
Chris Wilsone7d841c2012-12-03 11:36:30 +000010364 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010365 spin_unlock_irqrestore(&dev->event_lock, flags);
10366}
10367
Robin Schroereba905b2014-05-18 02:24:50 +020010368static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
Chris Wilsone7d841c2012-12-03 11:36:30 +000010369{
10370 /* Ensure that the work item is consistent when activating it ... */
10371 smp_wmb();
10372 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
10373 /* and that it is marked active as soon as the irq could fire. */
10374 smp_wmb();
10375}
10376
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010377static int intel_gen2_queue_flip(struct drm_device *dev,
10378 struct drm_crtc *crtc,
10379 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010380 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +010010381 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -070010382 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010383{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010384 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010385 u32 flip_mask;
10386 int ret;
10387
Daniel Vetter6d90c952012-04-26 23:28:05 +020010388 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010389 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010390 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010391
10392 /* Can't queue multiple flips, so wait for the previous
10393 * one to finish before executing the next.
10394 */
10395 if (intel_crtc->plane)
10396 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
10397 else
10398 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +020010399 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
10400 intel_ring_emit(ring, MI_NOOP);
10401 intel_ring_emit(ring, MI_DISPLAY_FLIP |
10402 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
10403 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010404 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +020010405 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +000010406
10407 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +010010408 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +010010409 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010410}
10411
10412static int intel_gen3_queue_flip(struct drm_device *dev,
10413 struct drm_crtc *crtc,
10414 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010415 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +010010416 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -070010417 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010418{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010419 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010420 u32 flip_mask;
10421 int ret;
10422
Daniel Vetter6d90c952012-04-26 23:28:05 +020010423 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010424 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010425 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010426
10427 if (intel_crtc->plane)
10428 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
10429 else
10430 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +020010431 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
10432 intel_ring_emit(ring, MI_NOOP);
10433 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
10434 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
10435 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010436 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +020010437 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010438
Chris Wilsone7d841c2012-12-03 11:36:30 +000010439 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +010010440 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +010010441 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010442}
10443
10444static int intel_gen4_queue_flip(struct drm_device *dev,
10445 struct drm_crtc *crtc,
10446 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010447 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +010010448 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -070010449 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010450{
10451 struct drm_i915_private *dev_priv = dev->dev_private;
10452 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10453 uint32_t pf, pipesrc;
10454 int ret;
10455
Daniel Vetter6d90c952012-04-26 23:28:05 +020010456 ret = intel_ring_begin(ring, 4);
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 /* i965+ uses the linear or tiled offsets from the
10461 * Display Registers (which do not change across a page-flip)
10462 * so we need only reprogram the base address.
10463 */
Daniel Vetter6d90c952012-04-26 23:28:05 +020010464 intel_ring_emit(ring, MI_DISPLAY_FLIP |
10465 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
10466 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010467 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
Daniel Vetterc2c75132012-07-05 12:17:30 +020010468 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010469
10470 /* XXX Enabling the panel-fitter across page-flip is so far
10471 * untested on non-native modes, so ignore it for now.
10472 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
10473 */
10474 pf = 0;
10475 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +020010476 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +000010477
10478 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +010010479 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +010010480 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010481}
10482
10483static int intel_gen6_queue_flip(struct drm_device *dev,
10484 struct drm_crtc *crtc,
10485 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010486 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +010010487 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -070010488 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010489{
10490 struct drm_i915_private *dev_priv = dev->dev_private;
10491 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10492 uint32_t pf, pipesrc;
10493 int ret;
10494
Daniel Vetter6d90c952012-04-26 23:28:05 +020010495 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010496 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010497 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010498
Daniel Vetter6d90c952012-04-26 23:28:05 +020010499 intel_ring_emit(ring, MI_DISPLAY_FLIP |
10500 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
10501 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010502 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010503
Chris Wilson99d9acd2012-04-17 20:37:00 +010010504 /* Contrary to the suggestions in the documentation,
10505 * "Enable Panel Fitter" does not seem to be required when page
10506 * flipping with a non-native mode, and worse causes a normal
10507 * modeset to fail.
10508 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
10509 */
10510 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010511 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +020010512 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +000010513
10514 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +010010515 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +010010516 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010517}
10518
Jesse Barnes7c9017e2011-06-16 12:18:54 -070010519static int intel_gen7_queue_flip(struct drm_device *dev,
10520 struct drm_crtc *crtc,
10521 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010522 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +010010523 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -070010524 uint32_t flags)
Jesse Barnes7c9017e2011-06-16 12:18:54 -070010525{
Jesse Barnes7c9017e2011-06-16 12:18:54 -070010526 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettercb05d8d2012-05-23 14:02:00 +020010527 uint32_t plane_bit = 0;
Chris Wilsonffe74d72013-08-26 20:58:12 +010010528 int len, ret;
10529
Robin Schroereba905b2014-05-18 02:24:50 +020010530 switch (intel_crtc->plane) {
Daniel Vettercb05d8d2012-05-23 14:02:00 +020010531 case PLANE_A:
10532 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
10533 break;
10534 case PLANE_B:
10535 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
10536 break;
10537 case PLANE_C:
10538 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
10539 break;
10540 default:
10541 WARN_ONCE(1, "unknown plane in flip command\n");
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010542 return -ENODEV;
Daniel Vettercb05d8d2012-05-23 14:02:00 +020010543 }
10544
Chris Wilsonffe74d72013-08-26 20:58:12 +010010545 len = 4;
Damien Lespiauf4768282014-04-07 20:24:34 +010010546 if (ring->id == RCS) {
Chris Wilsonffe74d72013-08-26 20:58:12 +010010547 len += 6;
Damien Lespiauf4768282014-04-07 20:24:34 +010010548 /*
10549 * On Gen 8, SRM is now taking an extra dword to accommodate
10550 * 48bits addresses, and we need a NOOP for the batch size to
10551 * stay even.
10552 */
10553 if (IS_GEN8(dev))
10554 len += 2;
10555 }
Chris Wilsonffe74d72013-08-26 20:58:12 +010010556
Ville Syrjäläf66fab82014-02-11 19:52:06 +020010557 /*
10558 * BSpec MI_DISPLAY_FLIP for IVB:
10559 * "The full packet must be contained within the same cache line."
10560 *
10561 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
10562 * cacheline, if we ever start emitting more commands before
10563 * the MI_DISPLAY_FLIP we may need to first emit everything else,
10564 * then do the cacheline alignment, and finally emit the
10565 * MI_DISPLAY_FLIP.
10566 */
10567 ret = intel_ring_cacheline_align(ring);
10568 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010569 return ret;
Ville Syrjäläf66fab82014-02-11 19:52:06 +020010570
Chris Wilsonffe74d72013-08-26 20:58:12 +010010571 ret = intel_ring_begin(ring, len);
Jesse Barnes7c9017e2011-06-16 12:18:54 -070010572 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010573 return ret;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070010574
Chris Wilsonffe74d72013-08-26 20:58:12 +010010575 /* Unmask the flip-done completion message. Note that the bspec says that
10576 * we should do this for both the BCS and RCS, and that we must not unmask
10577 * more than one flip event at any time (or ensure that one flip message
10578 * can be sent by waiting for flip-done prior to queueing new flips).
10579 * Experimentation says that BCS works despite DERRMR masking all
10580 * flip-done completion events and that unmasking all planes at once
10581 * for the RCS also doesn't appear to drop events. Setting the DERRMR
10582 * to zero does lead to lockups within MI_DISPLAY_FLIP.
10583 */
10584 if (ring->id == RCS) {
10585 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
10586 intel_ring_emit(ring, DERRMR);
10587 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
10588 DERRMR_PIPEB_PRI_FLIP_DONE |
10589 DERRMR_PIPEC_PRI_FLIP_DONE));
Damien Lespiauf4768282014-04-07 20:24:34 +010010590 if (IS_GEN8(dev))
10591 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
10592 MI_SRM_LRM_GLOBAL_GTT);
10593 else
10594 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) |
10595 MI_SRM_LRM_GLOBAL_GTT);
Chris Wilsonffe74d72013-08-26 20:58:12 +010010596 intel_ring_emit(ring, DERRMR);
10597 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Damien Lespiauf4768282014-04-07 20:24:34 +010010598 if (IS_GEN8(dev)) {
10599 intel_ring_emit(ring, 0);
10600 intel_ring_emit(ring, MI_NOOP);
10601 }
Chris Wilsonffe74d72013-08-26 20:58:12 +010010602 }
10603
Daniel Vettercb05d8d2012-05-23 14:02:00 +020010604 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +020010605 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010606 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -070010607 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +000010608
10609 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +010010610 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +010010611 return 0;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070010612}
10613
Sourab Gupta84c33a62014-06-02 16:47:17 +053010614static bool use_mmio_flip(struct intel_engine_cs *ring,
10615 struct drm_i915_gem_object *obj)
10616{
10617 /*
10618 * This is not being used for older platforms, because
10619 * non-availability of flip done interrupt forces us to use
10620 * CS flips. Older platforms derive flip done using some clever
10621 * tricks involving the flip_pending status bits and vblank irqs.
10622 * So using MMIO flips there would disrupt this mechanism.
10623 */
10624
Chris Wilson8e09bf82014-07-08 10:40:30 +010010625 if (ring == NULL)
10626 return true;
10627
Sourab Gupta84c33a62014-06-02 16:47:17 +053010628 if (INTEL_INFO(ring->dev)->gen < 5)
10629 return false;
10630
10631 if (i915.use_mmio_flip < 0)
10632 return false;
10633 else if (i915.use_mmio_flip > 0)
10634 return true;
Oscar Mateo14bf9932014-07-24 17:04:34 +010010635 else if (i915.enable_execlists)
10636 return true;
Sourab Gupta84c33a62014-06-02 16:47:17 +053010637 else
John Harrison41c52412014-11-24 18:49:43 +000010638 return ring != i915_gem_request_get_ring(obj->last_read_req);
Sourab Gupta84c33a62014-06-02 16:47:17 +053010639}
10640
Damien Lespiauff944562014-11-20 14:58:16 +000010641static void skl_do_mmio_flip(struct intel_crtc *intel_crtc)
10642{
10643 struct drm_device *dev = intel_crtc->base.dev;
10644 struct drm_i915_private *dev_priv = dev->dev_private;
10645 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
Damien Lespiauff944562014-11-20 14:58:16 +000010646 const enum pipe pipe = intel_crtc->pipe;
10647 u32 ctl, stride;
10648
10649 ctl = I915_READ(PLANE_CTL(pipe, 0));
10650 ctl &= ~PLANE_CTL_TILED_MASK;
Tvrtko Ursulin2ebef632015-04-20 16:22:48 +010010651 switch (fb->modifier[0]) {
10652 case DRM_FORMAT_MOD_NONE:
10653 break;
10654 case I915_FORMAT_MOD_X_TILED:
Damien Lespiauff944562014-11-20 14:58:16 +000010655 ctl |= PLANE_CTL_TILED_X;
Tvrtko Ursulin2ebef632015-04-20 16:22:48 +010010656 break;
10657 case I915_FORMAT_MOD_Y_TILED:
10658 ctl |= PLANE_CTL_TILED_Y;
10659 break;
10660 case I915_FORMAT_MOD_Yf_TILED:
10661 ctl |= PLANE_CTL_TILED_YF;
10662 break;
10663 default:
10664 MISSING_CASE(fb->modifier[0]);
10665 }
Damien Lespiauff944562014-11-20 14:58:16 +000010666
10667 /*
10668 * The stride is either expressed as a multiple of 64 bytes chunks for
10669 * linear buffers or in number of tiles for tiled buffers.
10670 */
Tvrtko Ursulin2ebef632015-04-20 16:22:48 +010010671 stride = fb->pitches[0] /
10672 intel_fb_stride_alignment(dev, fb->modifier[0],
10673 fb->pixel_format);
Damien Lespiauff944562014-11-20 14:58:16 +000010674
10675 /*
10676 * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on
10677 * PLANE_SURF updates, the update is then guaranteed to be atomic.
10678 */
10679 I915_WRITE(PLANE_CTL(pipe, 0), ctl);
10680 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
10681
10682 I915_WRITE(PLANE_SURF(pipe, 0), intel_crtc->unpin_work->gtt_offset);
10683 POSTING_READ(PLANE_SURF(pipe, 0));
10684}
10685
10686static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc)
Sourab Gupta84c33a62014-06-02 16:47:17 +053010687{
10688 struct drm_device *dev = intel_crtc->base.dev;
10689 struct drm_i915_private *dev_priv = dev->dev_private;
10690 struct intel_framebuffer *intel_fb =
10691 to_intel_framebuffer(intel_crtc->base.primary->fb);
10692 struct drm_i915_gem_object *obj = intel_fb->obj;
10693 u32 dspcntr;
10694 u32 reg;
10695
Sourab Gupta84c33a62014-06-02 16:47:17 +053010696 reg = DSPCNTR(intel_crtc->plane);
10697 dspcntr = I915_READ(reg);
10698
Damien Lespiauc5d97472014-10-25 00:11:11 +010010699 if (obj->tiling_mode != I915_TILING_NONE)
10700 dspcntr |= DISPPLANE_TILED;
10701 else
10702 dspcntr &= ~DISPPLANE_TILED;
10703
Sourab Gupta84c33a62014-06-02 16:47:17 +053010704 I915_WRITE(reg, dspcntr);
10705
10706 I915_WRITE(DSPSURF(intel_crtc->plane),
10707 intel_crtc->unpin_work->gtt_offset);
10708 POSTING_READ(DSPSURF(intel_crtc->plane));
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020010709
Damien Lespiauff944562014-11-20 14:58:16 +000010710}
10711
10712/*
10713 * XXX: This is the temporary way to update the plane registers until we get
10714 * around to using the usual plane update functions for MMIO flips
10715 */
10716static void intel_do_mmio_flip(struct intel_crtc *intel_crtc)
10717{
10718 struct drm_device *dev = intel_crtc->base.dev;
10719 bool atomic_update;
10720 u32 start_vbl_count;
10721
10722 intel_mark_page_flip_active(intel_crtc);
10723
10724 atomic_update = intel_pipe_update_start(intel_crtc, &start_vbl_count);
10725
10726 if (INTEL_INFO(dev)->gen >= 9)
10727 skl_do_mmio_flip(intel_crtc);
10728 else
10729 /* use_mmio_flip() retricts MMIO flips to ilk+ */
10730 ilk_do_mmio_flip(intel_crtc);
10731
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020010732 if (atomic_update)
10733 intel_pipe_update_end(intel_crtc, start_vbl_count);
Sourab Gupta84c33a62014-06-02 16:47:17 +053010734}
10735
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020010736static void intel_mmio_flip_work_func(struct work_struct *work)
Sourab Gupta84c33a62014-06-02 16:47:17 +053010737{
John Harrisoncc8c4cc2014-11-24 18:49:34 +000010738 struct intel_crtc *crtc =
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020010739 container_of(work, struct intel_crtc, mmio_flip.work);
John Harrisoncc8c4cc2014-11-24 18:49:34 +000010740 struct intel_mmio_flip *mmio_flip;
Sourab Gupta84c33a62014-06-02 16:47:17 +053010741
John Harrisoncc8c4cc2014-11-24 18:49:34 +000010742 mmio_flip = &crtc->mmio_flip;
10743 if (mmio_flip->req)
John Harrison9c654812014-11-24 18:49:35 +000010744 WARN_ON(__i915_wait_request(mmio_flip->req,
10745 crtc->reset_counter,
10746 false, NULL, NULL) != 0);
Sourab Gupta84c33a62014-06-02 16:47:17 +053010747
John Harrisoncc8c4cc2014-11-24 18:49:34 +000010748 intel_do_mmio_flip(crtc);
10749 if (mmio_flip->req) {
10750 mutex_lock(&crtc->base.dev->struct_mutex);
John Harrison146d84f2014-12-05 13:49:33 +000010751 i915_gem_request_assign(&mmio_flip->req, NULL);
John Harrisoncc8c4cc2014-11-24 18:49:34 +000010752 mutex_unlock(&crtc->base.dev->struct_mutex);
10753 }
Sourab Gupta84c33a62014-06-02 16:47:17 +053010754}
10755
10756static int intel_queue_mmio_flip(struct drm_device *dev,
10757 struct drm_crtc *crtc,
10758 struct drm_framebuffer *fb,
10759 struct drm_i915_gem_object *obj,
10760 struct intel_engine_cs *ring,
10761 uint32_t flags)
10762{
Sourab Gupta84c33a62014-06-02 16:47:17 +053010763 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Sourab Gupta84c33a62014-06-02 16:47:17 +053010764
John Harrisoncc8c4cc2014-11-24 18:49:34 +000010765 i915_gem_request_assign(&intel_crtc->mmio_flip.req,
10766 obj->last_write_req);
Sourab Gupta84c33a62014-06-02 16:47:17 +053010767
Ander Conselvan de Oliveira536f5b52014-11-06 11:03:40 +020010768 schedule_work(&intel_crtc->mmio_flip.work);
10769
Sourab Gupta84c33a62014-06-02 16:47:17 +053010770 return 0;
10771}
10772
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010773static int intel_default_queue_flip(struct drm_device *dev,
10774 struct drm_crtc *crtc,
10775 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010776 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +010010777 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -070010778 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010779{
10780 return -ENODEV;
10781}
10782
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010783static bool __intel_pageflip_stall_check(struct drm_device *dev,
10784 struct drm_crtc *crtc)
10785{
10786 struct drm_i915_private *dev_priv = dev->dev_private;
10787 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10788 struct intel_unpin_work *work = intel_crtc->unpin_work;
10789 u32 addr;
10790
10791 if (atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE)
10792 return true;
10793
10794 if (!work->enable_stall_check)
10795 return false;
10796
10797 if (work->flip_ready_vblank == 0) {
Daniel Vetter3a8a9462014-11-26 14:39:48 +010010798 if (work->flip_queued_req &&
10799 !i915_gem_request_completed(work->flip_queued_req, true))
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010800 return false;
10801
Daniel Vetter1e3feef2015-02-13 21:03:45 +010010802 work->flip_ready_vblank = drm_crtc_vblank_count(crtc);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010803 }
10804
Daniel Vetter1e3feef2015-02-13 21:03:45 +010010805 if (drm_crtc_vblank_count(crtc) - work->flip_ready_vblank < 3)
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010806 return false;
10807
10808 /* Potential stall - if we see that the flip has happened,
10809 * assume a missed interrupt. */
10810 if (INTEL_INFO(dev)->gen >= 4)
10811 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane)));
10812 else
10813 addr = I915_READ(DSPADDR(intel_crtc->plane));
10814
10815 /* There is a potential issue here with a false positive after a flip
10816 * to the same address. We could address this by checking for a
10817 * non-incrementing frame counter.
10818 */
10819 return addr == work->gtt_offset;
10820}
10821
10822void intel_check_page_flip(struct drm_device *dev, int pipe)
10823{
10824 struct drm_i915_private *dev_priv = dev->dev_private;
10825 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
10826 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson6ad790c2015-04-07 16:20:31 +010010827 struct intel_unpin_work *work;
Daniel Vetterf3260382014-09-15 14:55:23 +020010828
Dave Gordon6c51d462015-03-06 15:34:26 +000010829 WARN_ON(!in_interrupt());
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010830
10831 if (crtc == NULL)
10832 return;
10833
Daniel Vetterf3260382014-09-15 14:55:23 +020010834 spin_lock(&dev->event_lock);
Chris Wilson6ad790c2015-04-07 16:20:31 +010010835 work = intel_crtc->unpin_work;
10836 if (work != NULL && __intel_pageflip_stall_check(dev, crtc)) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010837 WARN_ONCE(1, "Kicking stuck page flip: queued at %d, now %d\n",
Chris Wilson6ad790c2015-04-07 16:20:31 +010010838 work->flip_queued_vblank, drm_vblank_count(dev, pipe));
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010839 page_flip_completed(intel_crtc);
Chris Wilson6ad790c2015-04-07 16:20:31 +010010840 work = NULL;
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010841 }
Chris Wilson6ad790c2015-04-07 16:20:31 +010010842 if (work != NULL &&
10843 drm_vblank_count(dev, pipe) - work->flip_queued_vblank > 1)
10844 intel_queue_rps_boost_for_request(dev, work->flip_queued_req);
Daniel Vetterf3260382014-09-15 14:55:23 +020010845 spin_unlock(&dev->event_lock);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010846}
10847
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010848static int intel_crtc_page_flip(struct drm_crtc *crtc,
10849 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010850 struct drm_pending_vblank_event *event,
10851 uint32_t page_flip_flags)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010852{
10853 struct drm_device *dev = crtc->dev;
10854 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperf4510a22014-04-01 15:22:40 -070010855 struct drm_framebuffer *old_fb = crtc->primary->fb;
Matt Roper2ff8fde2014-07-08 07:50:07 -070010856 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010857 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Gustavo Padovan455a6802014-12-01 15:40:11 -080010858 struct drm_plane *primary = crtc->primary;
Daniel Vettera071fa02014-06-18 23:28:09 +020010859 enum pipe pipe = intel_crtc->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010860 struct intel_unpin_work *work;
Oscar Mateoa4872ba2014-05-22 14:13:33 +010010861 struct intel_engine_cs *ring;
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010010862 bool mmio_flip;
Chris Wilson52e68632010-08-08 10:15:59 +010010863 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010864
Matt Roper2ff8fde2014-07-08 07:50:07 -070010865 /*
10866 * drm_mode_page_flip_ioctl() should already catch this, but double
10867 * check to be safe. In the future we may enable pageflipping from
10868 * a disabled primary plane.
10869 */
10870 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
10871 return -EBUSY;
10872
Ville Syrjäläe6a595d2012-05-24 21:08:59 +030010873 /* Can't change pixel format via MI display flips. */
Matt Roperf4510a22014-04-01 15:22:40 -070010874 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Ville Syrjäläe6a595d2012-05-24 21:08:59 +030010875 return -EINVAL;
10876
10877 /*
10878 * TILEOFF/LINOFF registers can't be changed via MI display flips.
10879 * Note that pitch changes could also affect these register.
10880 */
10881 if (INTEL_INFO(dev)->gen > 3 &&
Matt Roperf4510a22014-04-01 15:22:40 -070010882 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
10883 fb->pitches[0] != crtc->primary->fb->pitches[0]))
Ville Syrjäläe6a595d2012-05-24 21:08:59 +030010884 return -EINVAL;
10885
Chris Wilsonf900db42014-02-20 09:26:13 +000010886 if (i915_terminally_wedged(&dev_priv->gpu_error))
10887 goto out_hang;
10888
Daniel Vetterb14c5672013-09-19 12:18:32 +020010889 work = kzalloc(sizeof(*work), GFP_KERNEL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010890 if (work == NULL)
10891 return -ENOMEM;
10892
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010893 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010894 work->crtc = crtc;
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000010895 work->old_fb = old_fb;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010896 INIT_WORK(&work->work, intel_unpin_work_fn);
10897
Daniel Vetter87b6b102014-05-15 15:33:46 +020010898 ret = drm_crtc_vblank_get(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -070010899 if (ret)
10900 goto free_work;
10901
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010902 /* We borrow the event spin lock for protecting unpin_work */
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010903 spin_lock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010904 if (intel_crtc->unpin_work) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010905 /* Before declaring the flip queue wedged, check if
10906 * the hardware completed the operation behind our backs.
10907 */
10908 if (__intel_pageflip_stall_check(dev, crtc)) {
10909 DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n");
10910 page_flip_completed(intel_crtc);
10911 } else {
10912 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010913 spin_unlock_irq(&dev->event_lock);
Chris Wilson468f0b42010-05-27 13:18:13 +010010914
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010915 drm_crtc_vblank_put(crtc);
10916 kfree(work);
10917 return -EBUSY;
10918 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010919 }
10920 intel_crtc->unpin_work = work;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010921 spin_unlock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010922
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010923 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
10924 flush_workqueue(dev_priv->wq);
10925
Jesse Barnes75dfca82010-02-10 15:09:44 -080010926 /* Reference the objects for the scheduled work. */
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000010927 drm_framebuffer_reference(work->old_fb);
Chris Wilson05394f32010-11-08 19:18:58 +000010928 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010929
Matt Roperf4510a22014-04-01 15:22:40 -070010930 crtc->primary->fb = fb;
Matt Roperafd65eb2015-02-03 13:10:04 -080010931 update_state_fb(crtc->primary);
Matt Roper1ed1f962015-01-30 16:22:36 -080010932
Chris Wilsone1f99ce2010-10-27 12:45:26 +010010933 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +010010934
Chris Wilson89ed88b2015-02-16 14:31:49 +000010935 ret = i915_mutex_lock_interruptible(dev);
10936 if (ret)
10937 goto cleanup;
10938
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010939 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +020010940 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +010010941
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010942 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
Daniel Vettera071fa02014-06-18 23:28:09 +020010943 work->flip_count = I915_READ(PIPE_FLIPCOUNT_GM45(pipe)) + 1;
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010944
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010945 if (IS_VALLEYVIEW(dev)) {
10946 ring = &dev_priv->ring[BCS];
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000010947 if (obj->tiling_mode != intel_fb_obj(work->old_fb)->tiling_mode)
Chris Wilson8e09bf82014-07-08 10:40:30 +010010948 /* vlv: DISPLAY_FLIP fails to change tiling */
10949 ring = NULL;
Chris Wilson48bf5b22014-12-27 09:48:28 +000010950 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Chris Wilson2a92d5b2014-07-08 10:40:29 +010010951 ring = &dev_priv->ring[BCS];
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010952 } else if (INTEL_INFO(dev)->gen >= 7) {
John Harrison41c52412014-11-24 18:49:43 +000010953 ring = i915_gem_request_get_ring(obj->last_read_req);
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010954 if (ring == NULL || ring->id != RCS)
10955 ring = &dev_priv->ring[BCS];
10956 } else {
10957 ring = &dev_priv->ring[RCS];
10958 }
10959
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010010960 mmio_flip = use_mmio_flip(ring, obj);
10961
10962 /* When using CS flips, we want to emit semaphores between rings.
10963 * However, when using mmio flips we will create a task to do the
10964 * synchronisation, so all we want here is to pin the framebuffer
10965 * into the display plane and skip any waits.
10966 */
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000010967 ret = intel_pin_and_fence_fb_obj(crtc->primary, fb,
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010010968 crtc->primary->state,
10969 mmio_flip ? i915_gem_request_get_ring(obj->last_read_req) : ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010970 if (ret)
10971 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010972
Tvrtko Ursulin121920f2015-03-23 11:10:37 +000010973 work->gtt_offset = intel_plane_obj_offset(to_intel_plane(primary), obj)
10974 + intel_crtc->dspaddr_offset;
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010975
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010010976 if (mmio_flip) {
Sourab Gupta84c33a62014-06-02 16:47:17 +053010977 ret = intel_queue_mmio_flip(dev, crtc, fb, obj, ring,
10978 page_flip_flags);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010979 if (ret)
10980 goto cleanup_unpin;
10981
John Harrisonf06cc1b2014-11-24 18:49:37 +000010982 i915_gem_request_assign(&work->flip_queued_req,
10983 obj->last_write_req);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010984 } else {
Sourab Gupta84c33a62014-06-02 16:47:17 +053010985 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, ring,
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010986 page_flip_flags);
10987 if (ret)
10988 goto cleanup_unpin;
10989
John Harrisonf06cc1b2014-11-24 18:49:37 +000010990 i915_gem_request_assign(&work->flip_queued_req,
10991 intel_ring_get_request(ring));
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010992 }
10993
Daniel Vetter1e3feef2015-02-13 21:03:45 +010010994 work->flip_queued_vblank = drm_crtc_vblank_count(crtc);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010995 work->enable_stall_check = true;
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010996
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000010997 i915_gem_track_fb(intel_fb_obj(work->old_fb), obj,
Daniel Vettera071fa02014-06-18 23:28:09 +020010998 INTEL_FRONTBUFFER_PRIMARY(pipe));
10999
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020011000 intel_fbc_disable(dev);
Daniel Vetterf99d7062014-06-19 16:01:59 +020011001 intel_frontbuffer_flip_prepare(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011002 mutex_unlock(&dev->struct_mutex);
11003
Jesse Barnese5510fa2010-07-01 16:48:37 -070011004 trace_i915_flip_request(intel_crtc->plane, obj);
11005
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011006 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +010011007
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011008cleanup_unpin:
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000011009 intel_unpin_fb_obj(fb, crtc->primary->state);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011010cleanup_pending:
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011011 atomic_dec(&intel_crtc->unpin_work_count);
Chris Wilson89ed88b2015-02-16 14:31:49 +000011012 mutex_unlock(&dev->struct_mutex);
11013cleanup:
Matt Roperf4510a22014-04-01 15:22:40 -070011014 crtc->primary->fb = old_fb;
Matt Roperafd65eb2015-02-03 13:10:04 -080011015 update_state_fb(crtc->primary);
Chris Wilson96b099f2010-06-07 14:03:04 +010011016
Chris Wilson89ed88b2015-02-16 14:31:49 +000011017 drm_gem_object_unreference_unlocked(&obj->base);
11018 drm_framebuffer_unreference(work->old_fb);
11019
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011020 spin_lock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +010011021 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011022 spin_unlock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +010011023
Daniel Vetter87b6b102014-05-15 15:33:46 +020011024 drm_crtc_vblank_put(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -070011025free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +010011026 kfree(work);
11027
Chris Wilsonf900db42014-02-20 09:26:13 +000011028 if (ret == -EIO) {
11029out_hang:
Matt Roper53a366b2014-12-23 10:41:53 -080011030 ret = intel_plane_restore(primary);
Chris Wilsonf0d3dad2014-09-07 16:51:12 +010011031 if (ret == 0 && event) {
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011032 spin_lock_irq(&dev->event_lock);
Daniel Vettera071fa02014-06-18 23:28:09 +020011033 drm_send_vblank_event(dev, pipe, event);
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011034 spin_unlock_irq(&dev->event_lock);
Chris Wilsonf0d3dad2014-09-07 16:51:12 +010011035 }
Chris Wilsonf900db42014-02-20 09:26:13 +000011036 }
Chris Wilson96b099f2010-06-07 14:03:04 +010011037 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011038}
11039
Jani Nikula65b38e02015-04-13 11:26:56 +030011040static const struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011041 .mode_set_base_atomic = intel_pipe_set_base_atomic,
11042 .load_lut = intel_crtc_load_lut,
Matt Roperea2c67b2014-12-23 10:41:52 -080011043 .atomic_begin = intel_begin_crtc_commit,
11044 .atomic_flush = intel_finish_crtc_commit,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011045};
11046
Daniel Vetter9a935852012-07-05 22:34:27 +020011047/**
11048 * intel_modeset_update_staged_output_state
11049 *
11050 * Updates the staged output configuration state, e.g. after we've read out the
11051 * current hw state.
11052 */
11053static void intel_modeset_update_staged_output_state(struct drm_device *dev)
11054{
Ville Syrjälä76688512014-01-10 11:28:06 +020011055 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020011056 struct intel_encoder *encoder;
11057 struct intel_connector *connector;
11058
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011059 for_each_intel_connector(dev, connector) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011060 connector->new_encoder =
11061 to_intel_encoder(connector->base.encoder);
11062 }
11063
Damien Lespiaub2784e12014-08-05 11:29:37 +010011064 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011065 encoder->new_crtc =
11066 to_intel_crtc(encoder->base.crtc);
11067 }
Ville Syrjälä76688512014-01-10 11:28:06 +020011068
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011069 for_each_intel_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080011070 crtc->new_enabled = crtc->base.state->enable;
Ville Syrjälä76688512014-01-10 11:28:06 +020011071 }
Daniel Vetter9a935852012-07-05 22:34:27 +020011072}
11073
Ander Conselvan de Oliveirad29b2f92015-03-20 16:18:05 +020011074/* Transitional helper to copy current connector/encoder state to
11075 * connector->state. This is needed so that code that is partially
11076 * converted to atomic does the right thing.
11077 */
11078static void intel_modeset_update_connector_atomic_state(struct drm_device *dev)
11079{
11080 struct intel_connector *connector;
11081
11082 for_each_intel_connector(dev, connector) {
11083 if (connector->base.encoder) {
11084 connector->base.state->best_encoder =
11085 connector->base.encoder;
11086 connector->base.state->crtc =
11087 connector->base.encoder->crtc;
11088 } else {
11089 connector->base.state->best_encoder = NULL;
11090 connector->base.state->crtc = NULL;
11091 }
11092 }
11093}
11094
Daniel Vetter9a935852012-07-05 22:34:27 +020011095/**
11096 * intel_modeset_commit_output_state
11097 *
11098 * This function copies the stage display pipe configuration to the real one.
11099 */
11100static void intel_modeset_commit_output_state(struct drm_device *dev)
11101{
Ville Syrjälä76688512014-01-10 11:28:06 +020011102 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020011103 struct intel_encoder *encoder;
11104 struct intel_connector *connector;
11105
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011106 for_each_intel_connector(dev, connector) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011107 connector->base.encoder = &connector->new_encoder->base;
11108 }
11109
Damien Lespiaub2784e12014-08-05 11:29:37 +010011110 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +020011111 encoder->base.crtc = &encoder->new_crtc->base;
11112 }
Ville Syrjälä76688512014-01-10 11:28:06 +020011113
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011114 for_each_intel_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080011115 crtc->base.state->enable = crtc->new_enabled;
Ville Syrjälä76688512014-01-10 11:28:06 +020011116 crtc->base.enabled = crtc->new_enabled;
11117 }
Ander Conselvan de Oliveirad29b2f92015-03-20 16:18:05 +020011118
11119 intel_modeset_update_connector_atomic_state(dev);
Daniel Vetter9a935852012-07-05 22:34:27 +020011120}
11121
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011122static void
Robin Schroereba905b2014-05-18 02:24:50 +020011123connected_sink_compute_bpp(struct intel_connector *connector,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011124 struct intel_crtc_state *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011125{
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011126 int bpp = pipe_config->pipe_bpp;
11127
11128 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
11129 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030011130 connector->base.name);
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011131
11132 /* Don't use an invalid EDID bpc value */
11133 if (connector->base.display_info.bpc &&
11134 connector->base.display_info.bpc * 3 < bpp) {
11135 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
11136 bpp, connector->base.display_info.bpc*3);
11137 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
11138 }
11139
11140 /* Clamp bpp to 8 on screens without EDID 1.4 */
11141 if (connector->base.display_info.bpc == 0 && bpp > 24) {
11142 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
11143 bpp);
11144 pipe_config->pipe_bpp = 24;
11145 }
11146}
11147
11148static int
11149compute_baseline_pipe_bpp(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011150 struct intel_crtc_state *pipe_config)
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011151{
11152 struct drm_device *dev = crtc->base.dev;
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020011153 struct drm_atomic_state *state;
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011154 struct intel_connector *connector;
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020011155 int bpp, i;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011156
Daniel Vetterd328c9d2015-04-10 16:22:37 +020011157 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)))
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011158 bpp = 10*3;
Daniel Vetterd328c9d2015-04-10 16:22:37 +020011159 else if (INTEL_INFO(dev)->gen >= 5)
11160 bpp = 12*3;
11161 else
11162 bpp = 8*3;
11163
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011164
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011165 pipe_config->pipe_bpp = bpp;
11166
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020011167 state = pipe_config->base.state;
11168
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011169 /* Clamp display bpp to EDID value */
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020011170 for (i = 0; i < state->num_connector; i++) {
11171 if (!state->connectors[i])
11172 continue;
11173
11174 connector = to_intel_connector(state->connectors[i]);
11175 if (state->connector_states[i]->crtc != &crtc->base)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011176 continue;
11177
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011178 connected_sink_compute_bpp(connector, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011179 }
11180
11181 return bpp;
11182}
11183
Daniel Vetter644db712013-09-19 14:53:58 +020011184static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
11185{
11186 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
11187 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +010011188 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +020011189 mode->crtc_hdisplay, mode->crtc_hsync_start,
11190 mode->crtc_hsync_end, mode->crtc_htotal,
11191 mode->crtc_vdisplay, mode->crtc_vsync_start,
11192 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
11193}
11194
Daniel Vetterc0b03412013-05-28 12:05:54 +020011195static void intel_dump_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011196 struct intel_crtc_state *pipe_config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020011197 const char *context)
11198{
Chandra Konduru6a60cd82015-04-07 15:28:40 -070011199 struct drm_device *dev = crtc->base.dev;
11200 struct drm_plane *plane;
11201 struct intel_plane *intel_plane;
11202 struct intel_plane_state *state;
11203 struct drm_framebuffer *fb;
11204
11205 DRM_DEBUG_KMS("[CRTC:%d]%s config %p for pipe %c\n", crtc->base.base.id,
11206 context, pipe_config, pipe_name(crtc->pipe));
Daniel Vetterc0b03412013-05-28 12:05:54 +020011207
11208 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
11209 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
11210 pipe_config->pipe_bpp, pipe_config->dither);
11211 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
11212 pipe_config->has_pch_encoder,
11213 pipe_config->fdi_lanes,
11214 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
11215 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
11216 pipe_config->fdi_m_n.tu);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030011217 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
11218 pipe_config->has_dp_encoder,
11219 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
11220 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
11221 pipe_config->dp_m_n.tu);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070011222
11223 DRM_DEBUG_KMS("dp: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n",
11224 pipe_config->has_dp_encoder,
11225 pipe_config->dp_m2_n2.gmch_m,
11226 pipe_config->dp_m2_n2.gmch_n,
11227 pipe_config->dp_m2_n2.link_m,
11228 pipe_config->dp_m2_n2.link_n,
11229 pipe_config->dp_m2_n2.tu);
11230
Daniel Vetter55072d12014-11-20 16:10:28 +010011231 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
11232 pipe_config->has_audio,
11233 pipe_config->has_infoframe);
11234
Daniel Vetterc0b03412013-05-28 12:05:54 +020011235 DRM_DEBUG_KMS("requested mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011236 drm_mode_debug_printmodeline(&pipe_config->base.mode);
Daniel Vetterc0b03412013-05-28 12:05:54 +020011237 DRM_DEBUG_KMS("adjusted mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011238 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
11239 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +030011240 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030011241 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
11242 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Chandra Konduru6a60cd82015-04-07 15:28:40 -070011243 DRM_DEBUG_KMS("num_scalers: %d\n", crtc->num_scalers);
11244 DRM_DEBUG_KMS("scaler_users: 0x%x\n", pipe_config->scaler_state.scaler_users);
11245 DRM_DEBUG_KMS("scaler id: %d\n", pipe_config->scaler_state.scaler_id);
Daniel Vetterc0b03412013-05-28 12:05:54 +020011246 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
11247 pipe_config->gmch_pfit.control,
11248 pipe_config->gmch_pfit.pgm_ratios,
11249 pipe_config->gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +010011250 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
Daniel Vetterc0b03412013-05-28 12:05:54 +020011251 pipe_config->pch_pfit.pos,
Chris Wilsonfd4daa92013-08-27 17:04:17 +010011252 pipe_config->pch_pfit.size,
11253 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
Paulo Zanoni42db64e2013-05-31 16:33:22 -030011254 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Ville Syrjäläcf532bb2013-09-04 18:30:02 +030011255 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
Chandra Konduru6a60cd82015-04-07 15:28:40 -070011256
11257 DRM_DEBUG_KMS("planes on this crtc\n");
11258 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
11259 intel_plane = to_intel_plane(plane);
11260 if (intel_plane->pipe != crtc->pipe)
11261 continue;
11262
11263 state = to_intel_plane_state(plane->state);
11264 fb = state->base.fb;
11265 if (!fb) {
11266 DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d "
11267 "disabled, scaler_id = %d\n",
11268 plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD",
11269 plane->base.id, intel_plane->pipe,
11270 (crtc->base.primary == plane) ? 0 : intel_plane->plane + 1,
11271 drm_plane_index(plane), state->scaler_id);
11272 continue;
11273 }
11274
11275 DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d enabled",
11276 plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD",
11277 plane->base.id, intel_plane->pipe,
11278 crtc->base.primary == plane ? 0 : intel_plane->plane + 1,
11279 drm_plane_index(plane));
11280 DRM_DEBUG_KMS("\tFB:%d, fb = %ux%u format = 0x%x",
11281 fb->base.id, fb->width, fb->height, fb->pixel_format);
11282 DRM_DEBUG_KMS("\tscaler:%d src (%u, %u) %ux%u dst (%u, %u) %ux%u\n",
11283 state->scaler_id,
11284 state->src.x1 >> 16, state->src.y1 >> 16,
11285 drm_rect_width(&state->src) >> 16,
11286 drm_rect_height(&state->src) >> 16,
11287 state->dst.x1, state->dst.y1,
11288 drm_rect_width(&state->dst), drm_rect_height(&state->dst));
11289 }
Daniel Vetterc0b03412013-05-28 12:05:54 +020011290}
11291
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011292static bool encoders_cloneable(const struct intel_encoder *a,
11293 const struct intel_encoder *b)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020011294{
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011295 /* masks could be asymmetric, so check both ways */
11296 return a == b || (a->cloneable & (1 << b->type) &&
11297 b->cloneable & (1 << a->type));
11298}
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020011299
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030011300static bool check_single_encoder_cloning(struct drm_atomic_state *state,
11301 struct intel_crtc *crtc,
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011302 struct intel_encoder *encoder)
11303{
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011304 struct intel_encoder *source_encoder;
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030011305 struct drm_connector_state *connector_state;
11306 int i;
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011307
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030011308 for (i = 0; i < state->num_connector; i++) {
11309 if (!state->connectors[i])
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020011310 continue;
11311
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030011312 connector_state = state->connector_states[i];
11313 if (connector_state->crtc != &crtc->base)
11314 continue;
11315
11316 source_encoder =
11317 to_intel_encoder(connector_state->best_encoder);
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011318 if (!encoders_cloneable(encoder, source_encoder))
11319 return false;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020011320 }
11321
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011322 return true;
11323}
11324
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030011325static bool check_encoder_cloning(struct drm_atomic_state *state,
11326 struct intel_crtc *crtc)
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011327{
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011328 struct intel_encoder *encoder;
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030011329 struct drm_connector_state *connector_state;
11330 int i;
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011331
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030011332 for (i = 0; i < state->num_connector; i++) {
11333 if (!state->connectors[i])
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011334 continue;
11335
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030011336 connector_state = state->connector_states[i];
11337 if (connector_state->crtc != &crtc->base)
11338 continue;
11339
11340 encoder = to_intel_encoder(connector_state->best_encoder);
11341 if (!check_single_encoder_cloning(state, crtc, encoder))
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011342 return false;
11343 }
11344
11345 return true;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020011346}
11347
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030011348static bool check_digital_port_conflicts(struct drm_atomic_state *state)
Ville Syrjälä00f0b372014-12-02 14:10:46 +020011349{
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030011350 struct drm_device *dev = state->dev;
11351 struct intel_encoder *encoder;
11352 struct drm_connector_state *connector_state;
Ville Syrjälä00f0b372014-12-02 14:10:46 +020011353 unsigned int used_ports = 0;
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030011354 int i;
Ville Syrjälä00f0b372014-12-02 14:10:46 +020011355
11356 /*
11357 * Walk the connector list instead of the encoder
11358 * list to detect the problem on ddi platforms
11359 * where there's just one encoder per digital port.
11360 */
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030011361 for (i = 0; i < state->num_connector; i++) {
11362 if (!state->connectors[i])
Ville Syrjälä00f0b372014-12-02 14:10:46 +020011363 continue;
11364
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030011365 connector_state = state->connector_states[i];
11366 if (!connector_state->best_encoder)
11367 continue;
11368
11369 encoder = to_intel_encoder(connector_state->best_encoder);
11370
11371 WARN_ON(!connector_state->crtc);
Ville Syrjälä00f0b372014-12-02 14:10:46 +020011372
11373 switch (encoder->type) {
11374 unsigned int port_mask;
11375 case INTEL_OUTPUT_UNKNOWN:
11376 if (WARN_ON(!HAS_DDI(dev)))
11377 break;
11378 case INTEL_OUTPUT_DISPLAYPORT:
11379 case INTEL_OUTPUT_HDMI:
11380 case INTEL_OUTPUT_EDP:
11381 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
11382
11383 /* the same port mustn't appear more than once */
11384 if (used_ports & port_mask)
11385 return false;
11386
11387 used_ports |= port_mask;
11388 default:
11389 break;
11390 }
11391 }
11392
11393 return true;
11394}
11395
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020011396static void
11397clear_intel_crtc_state(struct intel_crtc_state *crtc_state)
11398{
11399 struct drm_crtc_state tmp_state;
Chandra Konduru663a3642015-04-07 15:28:41 -070011400 struct intel_crtc_scaler_state scaler_state;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020011401
Chandra Konduru663a3642015-04-07 15:28:41 -070011402 /* Clear only the intel specific part of the crtc state excluding scalers */
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020011403 tmp_state = crtc_state->base;
Chandra Konduru663a3642015-04-07 15:28:41 -070011404 scaler_state = crtc_state->scaler_state;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020011405 memset(crtc_state, 0, sizeof *crtc_state);
11406 crtc_state->base = tmp_state;
Chandra Konduru663a3642015-04-07 15:28:41 -070011407 crtc_state->scaler_state = scaler_state;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020011408}
11409
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011410static struct intel_crtc_state *
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011411intel_modeset_pipe_config(struct drm_crtc *crtc,
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020011412 struct drm_display_mode *mode,
11413 struct drm_atomic_state *state)
Daniel Vetter7758a112012-07-08 19:40:39 +020011414{
Daniel Vetter7758a112012-07-08 19:40:39 +020011415 struct intel_encoder *encoder;
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020011416 struct intel_connector *connector;
11417 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011418 struct intel_crtc_state *pipe_config;
Daniel Vetterd328c9d2015-04-10 16:22:37 +020011419 int base_bpp, ret = -EINVAL;
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020011420 int i;
Daniel Vettere29c22c2013-02-21 00:00:16 +010011421 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +020011422
Ander Conselvan de Oliveira98a221d2015-04-02 14:48:00 +030011423 if (!check_encoder_cloning(state, to_intel_crtc(crtc))) {
Daniel Vetteraccfc0c2013-05-30 15:04:25 +020011424 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
11425 return ERR_PTR(-EINVAL);
11426 }
11427
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030011428 if (!check_digital_port_conflicts(state)) {
Ville Syrjälä00f0b372014-12-02 14:10:46 +020011429 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
11430 return ERR_PTR(-EINVAL);
11431 }
11432
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020011433 pipe_config = intel_atomic_get_crtc_state(state, to_intel_crtc(crtc));
11434 if (IS_ERR(pipe_config))
11435 return pipe_config;
11436
11437 clear_intel_crtc_state(pipe_config);
Daniel Vetter7758a112012-07-08 19:40:39 +020011438
Matt Roper07878242015-02-25 11:43:26 -080011439 pipe_config->base.crtc = crtc;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011440 drm_mode_copy(&pipe_config->base.adjusted_mode, mode);
11441 drm_mode_copy(&pipe_config->base.mode, mode);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030011442
Daniel Vettere143a212013-07-04 12:01:15 +020011443 pipe_config->cpu_transcoder =
11444 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +020011445 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011446
Imre Deak2960bc92013-07-30 13:36:32 +030011447 /*
11448 * Sanitize sync polarity flags based on requested ones. If neither
11449 * positive or negative polarity is requested, treat this as meaning
11450 * negative polarity.
11451 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011452 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030011453 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011454 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030011455
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011456 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030011457 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011458 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030011459
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011460 /* Compute a starting value for pipe_config->pipe_bpp taking the source
11461 * plane pixel format and any sink constraints into account. Returns the
11462 * source plane bpp so that dithering can be selected on mismatches
11463 * after encoders and crtc also have had their say. */
Daniel Vetterd328c9d2015-04-10 16:22:37 +020011464 base_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
11465 pipe_config);
11466 if (base_bpp < 0)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011467 goto fail;
11468
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030011469 /*
11470 * Determine the real pipe dimensions. Note that stereo modes can
11471 * increase the actual pipe size due to the frame doubling and
11472 * insertion of additional space for blanks between the frame. This
11473 * is stored in the crtc timings. We use the requested mode to do this
11474 * computation to clearly distinguish it from the adjusted mode, which
11475 * can be changed by the connectors in the below retry loop.
11476 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011477 drm_crtc_get_hv_timing(&pipe_config->base.mode,
Gustavo Padovanecb7e162014-12-01 15:40:09 -080011478 &pipe_config->pipe_src_w,
11479 &pipe_config->pipe_src_h);
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030011480
Daniel Vettere29c22c2013-02-21 00:00:16 +010011481encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +020011482 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +020011483 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +020011484 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +020011485
Daniel Vetter135c81b2013-07-21 21:37:09 +020011486 /* Fill in default crtc timings, allow encoders to overwrite them. */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011487 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
11488 CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +020011489
Daniel Vetter7758a112012-07-08 19:40:39 +020011490 /* Pass our mode to the connectors and the CRTC to give them a chance to
11491 * adjust it according to limitations or connector properties, and also
11492 * a chance to reject the mode entirely.
11493 */
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020011494 for (i = 0; i < state->num_connector; i++) {
11495 connector = to_intel_connector(state->connectors[i]);
11496 if (!connector)
Daniel Vetter7758a112012-07-08 19:40:39 +020011497 continue;
Daniel Vetter7ae89232013-03-27 00:44:52 +010011498
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020011499 connector_state = state->connector_states[i];
11500 if (connector_state->crtc != crtc)
11501 continue;
11502
11503 encoder = to_intel_encoder(connector_state->best_encoder);
11504
Daniel Vetterefea6e82013-07-21 21:36:59 +020011505 if (!(encoder->compute_config(encoder, pipe_config))) {
11506 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +020011507 goto fail;
11508 }
11509 }
11510
Daniel Vetterff9a6752013-06-01 17:16:21 +020011511 /* Set default port clock if not overwritten by the encoder. Needs to be
11512 * done afterwards in case the encoder adjusts the mode. */
11513 if (!pipe_config->port_clock)
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011514 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
Damien Lespiau241bfc32013-09-25 16:45:37 +010011515 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +020011516
Daniel Vettera43f6e02013-06-07 23:10:32 +020011517 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010011518 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +020011519 DRM_DEBUG_KMS("CRTC fixup failed\n");
11520 goto fail;
11521 }
Daniel Vettere29c22c2013-02-21 00:00:16 +010011522
11523 if (ret == RETRY) {
11524 if (WARN(!retry, "loop in pipe configuration computation\n")) {
11525 ret = -EINVAL;
11526 goto fail;
11527 }
11528
11529 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
11530 retry = false;
11531 goto encoder_retry;
11532 }
11533
Daniel Vetterd328c9d2015-04-10 16:22:37 +020011534 pipe_config->dither = pipe_config->pipe_bpp != base_bpp;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011535 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
Daniel Vetterd328c9d2015-04-10 16:22:37 +020011536 base_bpp, pipe_config->pipe_bpp, pipe_config->dither);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011537
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010011538 return pipe_config;
Daniel Vetter7758a112012-07-08 19:40:39 +020011539fail:
Daniel Vettere29c22c2013-02-21 00:00:16 +010011540 return ERR_PTR(ret);
Daniel Vetter7758a112012-07-08 19:40:39 +020011541}
11542
Daniel Vettere2e1ed42012-07-08 21:14:38 +020011543/* Computes which crtcs are affected and sets the relevant bits in the mask. For
11544 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
11545static void
11546intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
11547 unsigned *prepare_pipes, unsigned *disable_pipes)
11548{
11549 struct intel_crtc *intel_crtc;
11550 struct drm_device *dev = crtc->dev;
11551 struct intel_encoder *encoder;
11552 struct intel_connector *connector;
11553 struct drm_crtc *tmp_crtc;
11554
11555 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
11556
11557 /* Check which crtcs have changed outputs connected to them, these need
11558 * to be part of the prepare_pipes mask. We don't (yet) support global
11559 * modeset across multiple crtcs, so modeset_pipes will only have one
11560 * bit set at most. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011561 for_each_intel_connector(dev, connector) {
Daniel Vettere2e1ed42012-07-08 21:14:38 +020011562 if (connector->base.encoder == &connector->new_encoder->base)
11563 continue;
11564
11565 if (connector->base.encoder) {
11566 tmp_crtc = connector->base.encoder->crtc;
11567
11568 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
11569 }
11570
11571 if (connector->new_encoder)
11572 *prepare_pipes |=
11573 1 << connector->new_encoder->new_crtc->pipe;
11574 }
11575
Damien Lespiaub2784e12014-08-05 11:29:37 +010011576 for_each_intel_encoder(dev, encoder) {
Daniel Vettere2e1ed42012-07-08 21:14:38 +020011577 if (encoder->base.crtc == &encoder->new_crtc->base)
11578 continue;
11579
11580 if (encoder->base.crtc) {
11581 tmp_crtc = encoder->base.crtc;
11582
11583 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
11584 }
11585
11586 if (encoder->new_crtc)
11587 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
11588 }
11589
Ville Syrjälä76688512014-01-10 11:28:06 +020011590 /* Check for pipes that will be enabled/disabled ... */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011591 for_each_intel_crtc(dev, intel_crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080011592 if (intel_crtc->base.state->enable == intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020011593 continue;
11594
Ville Syrjälä76688512014-01-10 11:28:06 +020011595 if (!intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020011596 *disable_pipes |= 1 << intel_crtc->pipe;
Ville Syrjälä76688512014-01-10 11:28:06 +020011597 else
11598 *prepare_pipes |= 1 << intel_crtc->pipe;
Daniel Vettere2e1ed42012-07-08 21:14:38 +020011599 }
11600
11601
11602 /* set_mode is also used to update properties on life display pipes. */
11603 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä76688512014-01-10 11:28:06 +020011604 if (intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +020011605 *prepare_pipes |= 1 << intel_crtc->pipe;
11606
Daniel Vetterb6c51642013-04-12 18:48:43 +020011607 /*
11608 * For simplicity do a full modeset on any pipe where the output routing
11609 * changed. We could be more clever, but that would require us to be
11610 * more careful with calling the relevant encoder->mode_set functions.
11611 */
Daniel Vettere2e1ed42012-07-08 21:14:38 +020011612 if (*prepare_pipes)
11613 *modeset_pipes = *prepare_pipes;
11614
11615 /* ... and mask these out. */
11616 *modeset_pipes &= ~(*disable_pipes);
11617 *prepare_pipes &= ~(*disable_pipes);
Daniel Vetterb6c51642013-04-12 18:48:43 +020011618
11619 /*
11620 * HACK: We don't (yet) fully support global modesets. intel_set_config
11621 * obies this rule, but the modeset restore mode of
11622 * intel_modeset_setup_hw_state does not.
11623 */
11624 *modeset_pipes &= 1 << intel_crtc->pipe;
11625 *prepare_pipes &= 1 << intel_crtc->pipe;
Daniel Vettere3641d32013-04-11 19:49:07 +020011626
11627 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
11628 *modeset_pipes, *prepare_pipes, *disable_pipes);
Daniel Vettere2e1ed42012-07-08 21:14:38 +020011629}
11630
Daniel Vetterea9d7582012-07-10 10:42:52 +020011631static bool intel_crtc_in_use(struct drm_crtc *crtc)
11632{
11633 struct drm_encoder *encoder;
11634 struct drm_device *dev = crtc->dev;
11635
11636 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
11637 if (encoder->crtc == crtc)
11638 return true;
11639
11640 return false;
11641}
11642
11643static void
11644intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
11645{
Daniel Vetterba41c0de2014-11-03 15:04:55 +010011646 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterea9d7582012-07-10 10:42:52 +020011647 struct intel_encoder *intel_encoder;
11648 struct intel_crtc *intel_crtc;
11649 struct drm_connector *connector;
11650
Daniel Vetterba41c0de2014-11-03 15:04:55 +010011651 intel_shared_dpll_commit(dev_priv);
11652
Damien Lespiaub2784e12014-08-05 11:29:37 +010011653 for_each_intel_encoder(dev, intel_encoder) {
Daniel Vetterea9d7582012-07-10 10:42:52 +020011654 if (!intel_encoder->base.crtc)
11655 continue;
11656
11657 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
11658
11659 if (prepare_pipes & (1 << intel_crtc->pipe))
11660 intel_encoder->connectors_active = false;
11661 }
11662
11663 intel_modeset_commit_output_state(dev);
11664
Ville Syrjälä76688512014-01-10 11:28:06 +020011665 /* Double check state. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011666 for_each_intel_crtc(dev, intel_crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080011667 WARN_ON(intel_crtc->base.state->enable != intel_crtc_in_use(&intel_crtc->base));
Daniel Vetterea9d7582012-07-10 10:42:52 +020011668 }
11669
11670 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
11671 if (!connector->encoder || !connector->encoder->crtc)
11672 continue;
11673
11674 intel_crtc = to_intel_crtc(connector->encoder->crtc);
11675
11676 if (prepare_pipes & (1 << intel_crtc->pipe)) {
Daniel Vetter68d34722012-09-06 22:08:35 +020011677 struct drm_property *dpms_property =
11678 dev->mode_config.dpms_property;
11679
Daniel Vetterea9d7582012-07-10 10:42:52 +020011680 connector->dpms = DRM_MODE_DPMS_ON;
Rob Clark662595d2012-10-11 20:36:04 -050011681 drm_object_property_set_value(&connector->base,
Daniel Vetter68d34722012-09-06 22:08:35 +020011682 dpms_property,
11683 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +020011684
11685 intel_encoder = to_intel_encoder(connector->encoder);
11686 intel_encoder->connectors_active = true;
11687 }
11688 }
11689
11690}
11691
Ville Syrjälä3bd26262013-09-06 23:29:02 +030011692static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030011693{
Ville Syrjälä3bd26262013-09-06 23:29:02 +030011694 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030011695
11696 if (clock1 == clock2)
11697 return true;
11698
11699 if (!clock1 || !clock2)
11700 return false;
11701
11702 diff = abs(clock1 - clock2);
11703
11704 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
11705 return true;
11706
11707 return false;
11708}
11709
Daniel Vetter25c5b262012-07-08 22:08:04 +020011710#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
11711 list_for_each_entry((intel_crtc), \
11712 &(dev)->mode_config.crtc_list, \
11713 base.head) \
Daniel Vetter0973f182013-04-19 11:25:33 +020011714 if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +020011715
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011716static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020011717intel_pipe_config_compare(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011718 struct intel_crtc_state *current_config,
11719 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011720{
Daniel Vetter66e985c2013-06-05 13:34:20 +020011721#define PIPE_CONF_CHECK_X(name) \
11722 if (current_config->name != pipe_config->name) { \
11723 DRM_ERROR("mismatch in " #name " " \
11724 "(expected 0x%08x, found 0x%08x)\n", \
11725 current_config->name, \
11726 pipe_config->name); \
11727 return false; \
11728 }
11729
Daniel Vetter08a24032013-04-19 11:25:34 +020011730#define PIPE_CONF_CHECK_I(name) \
11731 if (current_config->name != pipe_config->name) { \
11732 DRM_ERROR("mismatch in " #name " " \
11733 "(expected %i, found %i)\n", \
11734 current_config->name, \
11735 pipe_config->name); \
11736 return false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +010011737 }
11738
Vandana Kannanb95af8b2014-08-05 07:51:23 -070011739/* This is required for BDW+ where there is only one set of registers for
11740 * switching between high and low RR.
11741 * This macro can be used whenever a comparison has to be made between one
11742 * hw state and multiple sw state variables.
11743 */
11744#define PIPE_CONF_CHECK_I_ALT(name, alt_name) \
11745 if ((current_config->name != pipe_config->name) && \
11746 (current_config->alt_name != pipe_config->name)) { \
11747 DRM_ERROR("mismatch in " #name " " \
11748 "(expected %i or %i, found %i)\n", \
11749 current_config->name, \
11750 current_config->alt_name, \
11751 pipe_config->name); \
11752 return false; \
11753 }
11754
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020011755#define PIPE_CONF_CHECK_FLAGS(name, mask) \
11756 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Jesse Barnes6f024882013-07-01 10:19:09 -070011757 DRM_ERROR("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020011758 "(expected %i, found %i)\n", \
11759 current_config->name & (mask), \
11760 pipe_config->name & (mask)); \
11761 return false; \
11762 }
11763
Ville Syrjälä5e550652013-09-06 23:29:07 +030011764#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
11765 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
11766 DRM_ERROR("mismatch in " #name " " \
11767 "(expected %i, found %i)\n", \
11768 current_config->name, \
11769 pipe_config->name); \
11770 return false; \
11771 }
11772
Daniel Vetterbb760062013-06-06 14:55:52 +020011773#define PIPE_CONF_QUIRK(quirk) \
11774 ((current_config->quirks | pipe_config->quirks) & (quirk))
11775
Daniel Vettereccb1402013-05-22 00:50:22 +020011776 PIPE_CONF_CHECK_I(cpu_transcoder);
11777
Daniel Vetter08a24032013-04-19 11:25:34 +020011778 PIPE_CONF_CHECK_I(has_pch_encoder);
11779 PIPE_CONF_CHECK_I(fdi_lanes);
Daniel Vetter72419202013-04-04 13:28:53 +020011780 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
11781 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
11782 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
11783 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
11784 PIPE_CONF_CHECK_I(fdi_m_n.tu);
Daniel Vetter08a24032013-04-19 11:25:34 +020011785
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030011786 PIPE_CONF_CHECK_I(has_dp_encoder);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070011787
11788 if (INTEL_INFO(dev)->gen < 8) {
11789 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
11790 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
11791 PIPE_CONF_CHECK_I(dp_m_n.link_m);
11792 PIPE_CONF_CHECK_I(dp_m_n.link_n);
11793 PIPE_CONF_CHECK_I(dp_m_n.tu);
11794
11795 if (current_config->has_drrs) {
11796 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_m);
11797 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_n);
11798 PIPE_CONF_CHECK_I(dp_m2_n2.link_m);
11799 PIPE_CONF_CHECK_I(dp_m2_n2.link_n);
11800 PIPE_CONF_CHECK_I(dp_m2_n2.tu);
11801 }
11802 } else {
11803 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_m, dp_m2_n2.gmch_m);
11804 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_n, dp_m2_n2.gmch_n);
11805 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_m, dp_m2_n2.link_m);
11806 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_n, dp_m2_n2.link_n);
11807 PIPE_CONF_CHECK_I_ALT(dp_m_n.tu, dp_m2_n2.tu);
11808 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030011809
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011810 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
11811 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
11812 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
11813 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
11814 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
11815 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020011816
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011817 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
11818 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
11819 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
11820 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
11821 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
11822 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020011823
Daniel Vetterc93f54c2013-06-27 19:47:19 +020011824 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6897b4b2014-04-24 23:54:47 +020011825 PIPE_CONF_CHECK_I(has_hdmi_sink);
Daniel Vetterb5a9fa02014-04-24 23:54:49 +020011826 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
11827 IS_VALLEYVIEW(dev))
11828 PIPE_CONF_CHECK_I(limited_color_range);
Jesse Barnese43823e2014-11-05 14:26:08 -080011829 PIPE_CONF_CHECK_I(has_infoframe);
Daniel Vetter6c49f242013-06-06 12:45:25 +020011830
Daniel Vetter9ed109a2014-04-24 23:54:52 +020011831 PIPE_CONF_CHECK_I(has_audio);
11832
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011833 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020011834 DRM_MODE_FLAG_INTERLACE);
11835
Daniel Vetterbb760062013-06-06 14:55:52 +020011836 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011837 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020011838 DRM_MODE_FLAG_PHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011839 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020011840 DRM_MODE_FLAG_NHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011841 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020011842 DRM_MODE_FLAG_PVSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011843 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020011844 DRM_MODE_FLAG_NVSYNC);
11845 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -070011846
Ville Syrjälä37327ab2013-09-04 18:25:28 +030011847 PIPE_CONF_CHECK_I(pipe_src_w);
11848 PIPE_CONF_CHECK_I(pipe_src_h);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020011849
Daniel Vetter99535992014-04-13 12:00:33 +020011850 /*
11851 * FIXME: BIOS likes to set up a cloned config with lvds+external
11852 * screen. Since we don't yet re-compute the pipe config when moving
11853 * just the lvds port away to another pipe the sw tracking won't match.
11854 *
11855 * Proper atomic modesets with recomputed global state will fix this.
11856 * Until then just don't check gmch state for inherited modes.
11857 */
11858 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE)) {
11859 PIPE_CONF_CHECK_I(gmch_pfit.control);
11860 /* pfit ratios are autocomputed by the hw on gen4+ */
11861 if (INTEL_INFO(dev)->gen < 4)
11862 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
11863 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
11864 }
11865
Chris Wilsonfd4daa92013-08-27 17:04:17 +010011866 PIPE_CONF_CHECK_I(pch_pfit.enabled);
11867 if (current_config->pch_pfit.enabled) {
11868 PIPE_CONF_CHECK_I(pch_pfit.pos);
11869 PIPE_CONF_CHECK_I(pch_pfit.size);
11870 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020011871
Chandra Kondurua1b22782015-04-07 15:28:45 -070011872 PIPE_CONF_CHECK_I(scaler_state.scaler_id);
11873
Jesse Barnese59150d2014-01-07 13:30:45 -080011874 /* BDW+ don't expose a synchronous way to read the state */
11875 if (IS_HASWELL(dev))
11876 PIPE_CONF_CHECK_I(ips_enabled);
Paulo Zanoni42db64e2013-05-31 16:33:22 -030011877
Ville Syrjälä282740f2013-09-04 18:30:03 +030011878 PIPE_CONF_CHECK_I(double_wide);
11879
Daniel Vetter26804af2014-06-25 22:01:55 +030011880 PIPE_CONF_CHECK_X(ddi_pll_sel);
11881
Daniel Vetterc0d43d62013-06-07 23:11:08 +020011882 PIPE_CONF_CHECK_I(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +020011883 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +020011884 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +020011885 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
11886 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterd452c5b2014-07-04 11:27:39 -030011887 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
Damien Lespiau3f4cd192014-11-13 14:55:21 +000011888 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
11889 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
11890 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
Daniel Vetterc0d43d62013-06-07 23:11:08 +020011891
Ville Syrjälä42571ae2013-09-06 23:29:00 +030011892 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
11893 PIPE_CONF_CHECK_I(pipe_bpp);
11894
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011895 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
Jesse Barnesa9a7e982014-01-20 14:18:04 -080011896 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
Ville Syrjälä5e550652013-09-06 23:29:07 +030011897
Daniel Vetter66e985c2013-06-05 13:34:20 +020011898#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +020011899#undef PIPE_CONF_CHECK_I
Vandana Kannanb95af8b2014-08-05 07:51:23 -070011900#undef PIPE_CONF_CHECK_I_ALT
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020011901#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +030011902#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +020011903#undef PIPE_CONF_QUIRK
Daniel Vetter627eb5a2013-04-29 19:33:42 +020011904
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011905 return true;
11906}
11907
Damien Lespiau08db6652014-11-04 17:06:52 +000011908static void check_wm_state(struct drm_device *dev)
11909{
11910 struct drm_i915_private *dev_priv = dev->dev_private;
11911 struct skl_ddb_allocation hw_ddb, *sw_ddb;
11912 struct intel_crtc *intel_crtc;
11913 int plane;
11914
11915 if (INTEL_INFO(dev)->gen < 9)
11916 return;
11917
11918 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
11919 sw_ddb = &dev_priv->wm.skl_hw.ddb;
11920
11921 for_each_intel_crtc(dev, intel_crtc) {
11922 struct skl_ddb_entry *hw_entry, *sw_entry;
11923 const enum pipe pipe = intel_crtc->pipe;
11924
11925 if (!intel_crtc->active)
11926 continue;
11927
11928 /* planes */
Damien Lespiaudd740782015-02-28 14:54:08 +000011929 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau08db6652014-11-04 17:06:52 +000011930 hw_entry = &hw_ddb.plane[pipe][plane];
11931 sw_entry = &sw_ddb->plane[pipe][plane];
11932
11933 if (skl_ddb_entry_equal(hw_entry, sw_entry))
11934 continue;
11935
11936 DRM_ERROR("mismatch in DDB state pipe %c plane %d "
11937 "(expected (%u,%u), found (%u,%u))\n",
11938 pipe_name(pipe), plane + 1,
11939 sw_entry->start, sw_entry->end,
11940 hw_entry->start, hw_entry->end);
11941 }
11942
11943 /* cursor */
11944 hw_entry = &hw_ddb.cursor[pipe];
11945 sw_entry = &sw_ddb->cursor[pipe];
11946
11947 if (skl_ddb_entry_equal(hw_entry, sw_entry))
11948 continue;
11949
11950 DRM_ERROR("mismatch in DDB state pipe %c cursor "
11951 "(expected (%u,%u), found (%u,%u))\n",
11952 pipe_name(pipe),
11953 sw_entry->start, sw_entry->end,
11954 hw_entry->start, hw_entry->end);
11955 }
11956}
11957
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020011958static void
11959check_connector_state(struct drm_device *dev)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011960{
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011961 struct intel_connector *connector;
11962
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011963 for_each_intel_connector(dev, connector) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011964 /* This also checks the encoder/connector hw state with the
11965 * ->get_hw_state callbacks. */
11966 intel_connector_check_state(connector);
11967
Rob Clarke2c719b2014-12-15 13:56:32 -050011968 I915_STATE_WARN(&connector->new_encoder->base != connector->base.encoder,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011969 "connector's staged encoder doesn't match current encoder\n");
11970 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020011971}
11972
11973static void
11974check_encoder_state(struct drm_device *dev)
11975{
11976 struct intel_encoder *encoder;
11977 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011978
Damien Lespiaub2784e12014-08-05 11:29:37 +010011979 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011980 bool enabled = false;
11981 bool active = false;
11982 enum pipe pipe, tracked_pipe;
11983
11984 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
11985 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030011986 encoder->base.name);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011987
Rob Clarke2c719b2014-12-15 13:56:32 -050011988 I915_STATE_WARN(&encoder->new_crtc->base != encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011989 "encoder's stage crtc doesn't match current crtc\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050011990 I915_STATE_WARN(encoder->connectors_active && !encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011991 "encoder's active_connectors set, but no crtc\n");
11992
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020011993 for_each_intel_connector(dev, connector) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020011994 if (connector->base.encoder != &encoder->base)
11995 continue;
11996 enabled = true;
11997 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
11998 active = true;
11999 }
Dave Airlie0e32b392014-05-02 14:02:48 +100012000 /*
12001 * for MST connectors if we unplug the connector is gone
12002 * away but the encoder is still connected to a crtc
12003 * until a modeset happens in response to the hotplug.
12004 */
12005 if (!enabled && encoder->base.encoder_type == DRM_MODE_ENCODER_DPMST)
12006 continue;
12007
Rob Clarke2c719b2014-12-15 13:56:32 -050012008 I915_STATE_WARN(!!encoder->base.crtc != enabled,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012009 "encoder's enabled state mismatch "
12010 "(expected %i, found %i)\n",
12011 !!encoder->base.crtc, enabled);
Rob Clarke2c719b2014-12-15 13:56:32 -050012012 I915_STATE_WARN(active && !encoder->base.crtc,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012013 "active encoder with no crtc\n");
12014
Rob Clarke2c719b2014-12-15 13:56:32 -050012015 I915_STATE_WARN(encoder->connectors_active != active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012016 "encoder's computed active state doesn't match tracked active state "
12017 "(expected %i, found %i)\n", active, encoder->connectors_active);
12018
12019 active = encoder->get_hw_state(encoder, &pipe);
Rob Clarke2c719b2014-12-15 13:56:32 -050012020 I915_STATE_WARN(active != encoder->connectors_active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012021 "encoder's hw state doesn't match sw tracking "
12022 "(expected %i, found %i)\n",
12023 encoder->connectors_active, active);
12024
12025 if (!encoder->base.crtc)
12026 continue;
12027
12028 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
Rob Clarke2c719b2014-12-15 13:56:32 -050012029 I915_STATE_WARN(active && pipe != tracked_pipe,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012030 "active encoder's pipe doesn't match"
12031 "(expected %i, found %i)\n",
12032 tracked_pipe, pipe);
12033
12034 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012035}
12036
12037static void
12038check_crtc_state(struct drm_device *dev)
12039{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012040 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012041 struct intel_crtc *crtc;
12042 struct intel_encoder *encoder;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012043 struct intel_crtc_state pipe_config;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012044
Damien Lespiaud3fcc802014-05-13 23:32:22 +010012045 for_each_intel_crtc(dev, crtc) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012046 bool enabled = false;
12047 bool active = false;
12048
Jesse Barnes045ac3b2013-05-14 17:08:26 -070012049 memset(&pipe_config, 0, sizeof(pipe_config));
12050
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012051 DRM_DEBUG_KMS("[CRTC:%d]\n",
12052 crtc->base.base.id);
12053
Matt Roper83d65732015-02-25 13:12:16 -080012054 I915_STATE_WARN(crtc->active && !crtc->base.state->enable,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012055 "active crtc, but not enabled in sw tracking\n");
12056
Damien Lespiaub2784e12014-08-05 11:29:37 +010012057 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012058 if (encoder->base.crtc != &crtc->base)
12059 continue;
12060 enabled = true;
12061 if (encoder->connectors_active)
12062 active = true;
12063 }
Daniel Vetter6c49f242013-06-06 12:45:25 +020012064
Rob Clarke2c719b2014-12-15 13:56:32 -050012065 I915_STATE_WARN(active != crtc->active,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012066 "crtc's computed active state doesn't match tracked active state "
12067 "(expected %i, found %i)\n", active, crtc->active);
Matt Roper83d65732015-02-25 13:12:16 -080012068 I915_STATE_WARN(enabled != crtc->base.state->enable,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012069 "crtc's computed enabled state doesn't match tracked enabled state "
Matt Roper83d65732015-02-25 13:12:16 -080012070 "(expected %i, found %i)\n", enabled,
12071 crtc->base.state->enable);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012072
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012073 active = dev_priv->display.get_pipe_config(crtc,
12074 &pipe_config);
Daniel Vetterd62cf622013-05-29 10:41:29 +020012075
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030012076 /* hw state is inconsistent with the pipe quirk */
12077 if ((crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
12078 (crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Daniel Vetterd62cf622013-05-29 10:41:29 +020012079 active = crtc->active;
12080
Damien Lespiaub2784e12014-08-05 11:29:37 +010012081 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä3eaba512013-08-05 17:57:48 +030012082 enum pipe pipe;
Daniel Vetter6c49f242013-06-06 12:45:25 +020012083 if (encoder->base.crtc != &crtc->base)
12084 continue;
Daniel Vetter1d37b682013-11-18 09:00:59 +010012085 if (encoder->get_hw_state(encoder, &pipe))
Daniel Vetter6c49f242013-06-06 12:45:25 +020012086 encoder->get_config(encoder, &pipe_config);
12087 }
12088
Rob Clarke2c719b2014-12-15 13:56:32 -050012089 I915_STATE_WARN(crtc->active != active,
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012090 "crtc active state doesn't match with hw state "
12091 "(expected %i, found %i)\n", crtc->active, active);
12092
Daniel Vetterc0b03412013-05-28 12:05:54 +020012093 if (active &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020012094 !intel_pipe_config_compare(dev, crtc->config, &pipe_config)) {
Rob Clarke2c719b2014-12-15 13:56:32 -050012095 I915_STATE_WARN(1, "pipe state doesn't match!\n");
Daniel Vetterc0b03412013-05-28 12:05:54 +020012096 intel_dump_pipe_config(crtc, &pipe_config,
12097 "[hw state]");
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020012098 intel_dump_pipe_config(crtc, crtc->config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020012099 "[sw state]");
12100 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012101 }
12102}
12103
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012104static void
12105check_shared_dpll_state(struct drm_device *dev)
12106{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012107 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012108 struct intel_crtc *crtc;
12109 struct intel_dpll_hw_state dpll_hw_state;
12110 int i;
Daniel Vetter53589012013-06-05 13:34:16 +020012111
12112 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
12113 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
12114 int enabled_crtcs = 0, active_crtcs = 0;
12115 bool active;
12116
12117 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
12118
12119 DRM_DEBUG_KMS("%s\n", pll->name);
12120
12121 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
12122
Rob Clarke2c719b2014-12-15 13:56:32 -050012123 I915_STATE_WARN(pll->active > hweight32(pll->config.crtc_mask),
Daniel Vetter53589012013-06-05 13:34:16 +020012124 "more active pll users than references: %i vs %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020012125 pll->active, hweight32(pll->config.crtc_mask));
Rob Clarke2c719b2014-12-15 13:56:32 -050012126 I915_STATE_WARN(pll->active && !pll->on,
Daniel Vetter53589012013-06-05 13:34:16 +020012127 "pll in active use but not on in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050012128 I915_STATE_WARN(pll->on && !pll->active,
Daniel Vetter35c95372013-07-17 06:55:04 +020012129 "pll in on but not on in use in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050012130 I915_STATE_WARN(pll->on != active,
Daniel Vetter53589012013-06-05 13:34:16 +020012131 "pll on state mismatch (expected %i, found %i)\n",
12132 pll->on, active);
12133
Damien Lespiaud3fcc802014-05-13 23:32:22 +010012134 for_each_intel_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080012135 if (crtc->base.state->enable && intel_crtc_to_shared_dpll(crtc) == pll)
Daniel Vetter53589012013-06-05 13:34:16 +020012136 enabled_crtcs++;
12137 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
12138 active_crtcs++;
12139 }
Rob Clarke2c719b2014-12-15 13:56:32 -050012140 I915_STATE_WARN(pll->active != active_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020012141 "pll active crtcs mismatch (expected %i, found %i)\n",
12142 pll->active, active_crtcs);
Rob Clarke2c719b2014-12-15 13:56:32 -050012143 I915_STATE_WARN(hweight32(pll->config.crtc_mask) != enabled_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020012144 "pll enabled crtcs mismatch (expected %i, found %i)\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020012145 hweight32(pll->config.crtc_mask), enabled_crtcs);
Daniel Vetter66e985c2013-06-05 13:34:20 +020012146
Rob Clarke2c719b2014-12-15 13:56:32 -050012147 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state, &dpll_hw_state,
Daniel Vetter66e985c2013-06-05 13:34:20 +020012148 sizeof(dpll_hw_state)),
12149 "pll hw state mismatch\n");
Daniel Vetter53589012013-06-05 13:34:16 +020012150 }
Daniel Vettera6778b32012-07-02 09:56:42 +020012151}
12152
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012153void
12154intel_modeset_check_state(struct drm_device *dev)
12155{
Damien Lespiau08db6652014-11-04 17:06:52 +000012156 check_wm_state(dev);
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012157 check_connector_state(dev);
12158 check_encoder_state(dev);
12159 check_crtc_state(dev);
12160 check_shared_dpll_state(dev);
12161}
12162
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012163void ironlake_check_encoder_dotclock(const struct intel_crtc_state *pipe_config,
Ville Syrjälä18442d02013-09-13 16:00:08 +030012164 int dotclock)
12165{
12166 /*
12167 * FDI already provided one idea for the dotclock.
12168 * Yell if the encoder disagrees.
12169 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012170 WARN(!intel_fuzzy_clock_check(pipe_config->base.adjusted_mode.crtc_clock, dotclock),
Ville Syrjälä18442d02013-09-13 16:00:08 +030012171 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012172 pipe_config->base.adjusted_mode.crtc_clock, dotclock);
Ville Syrjälä18442d02013-09-13 16:00:08 +030012173}
12174
Ville Syrjälä80715b22014-05-15 20:23:23 +030012175static void update_scanline_offset(struct intel_crtc *crtc)
12176{
12177 struct drm_device *dev = crtc->base.dev;
12178
12179 /*
12180 * The scanline counter increments at the leading edge of hsync.
12181 *
12182 * On most platforms it starts counting from vtotal-1 on the
12183 * first active line. That means the scanline counter value is
12184 * always one less than what we would expect. Ie. just after
12185 * start of vblank, which also occurs at start of hsync (on the
12186 * last active line), the scanline counter will read vblank_start-1.
12187 *
12188 * On gen2 the scanline counter starts counting from 1 instead
12189 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
12190 * to keep the value positive), instead of adding one.
12191 *
12192 * On HSW+ the behaviour of the scanline counter depends on the output
12193 * type. For DP ports it behaves like most other platforms, but on HDMI
12194 * there's an extra 1 line difference. So we need to add two instead of
12195 * one to the value.
12196 */
12197 if (IS_GEN2(dev)) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020012198 const struct drm_display_mode *mode = &crtc->config->base.adjusted_mode;
Ville Syrjälä80715b22014-05-15 20:23:23 +030012199 int vtotal;
12200
12201 vtotal = mode->crtc_vtotal;
12202 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
12203 vtotal /= 2;
12204
12205 crtc->scanline_offset = vtotal - 1;
12206 } else if (HAS_DDI(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +030012207 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) {
Ville Syrjälä80715b22014-05-15 20:23:23 +030012208 crtc->scanline_offset = 2;
12209 } else
12210 crtc->scanline_offset = 1;
12211}
12212
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012213static struct intel_crtc_state *
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012214intel_modeset_compute_config(struct drm_crtc *crtc,
12215 struct drm_display_mode *mode,
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012216 struct drm_atomic_state *state,
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012217 unsigned *modeset_pipes,
12218 unsigned *prepare_pipes,
12219 unsigned *disable_pipes)
12220{
Ander Conselvan de Oliveiradb7542d2015-03-20 16:18:04 +020012221 struct drm_device *dev = crtc->dev;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012222 struct intel_crtc_state *pipe_config = NULL;
Ander Conselvan de Oliveiradb7542d2015-03-20 16:18:04 +020012223 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020012224 int ret = 0;
12225
12226 ret = drm_atomic_add_affected_connectors(state, crtc);
12227 if (ret)
12228 return ERR_PTR(ret);
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012229
12230 intel_modeset_affected_pipes(crtc, modeset_pipes,
12231 prepare_pipes, disable_pipes);
12232
Ander Conselvan de Oliveiradb7542d2015-03-20 16:18:04 +020012233 for_each_intel_crtc_masked(dev, *disable_pipes, intel_crtc) {
12234 pipe_config = intel_atomic_get_crtc_state(state, intel_crtc);
12235 if (IS_ERR(pipe_config))
12236 return pipe_config;
12237
12238 pipe_config->base.enable = false;
12239 }
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012240
12241 /*
12242 * Note this needs changes when we start tracking multiple modes
12243 * and crtcs. At that point we'll need to compute the whole config
12244 * (i.e. one pipe_config for each crtc) rather than just the one
12245 * for this crtc.
12246 */
Ander Conselvan de Oliveiradb7542d2015-03-20 16:18:04 +020012247 for_each_intel_crtc_masked(dev, *modeset_pipes, intel_crtc) {
12248 /* FIXME: For now we still expect modeset_pipes has at most
12249 * one bit set. */
12250 if (WARN_ON(&intel_crtc->base != crtc))
12251 continue;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012252
Daniel Vetter8805aa72015-04-10 16:22:38 +020012253 pipe_config = intel_modeset_pipe_config(crtc, mode, state);
Ander Conselvan de Oliveiradb7542d2015-03-20 16:18:04 +020012254 if (IS_ERR(pipe_config))
12255 return pipe_config;
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012256
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +030012257 pipe_config->base.enable = true;
12258
Ander Conselvan de Oliveiradb7542d2015-03-20 16:18:04 +020012259 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
12260 "[modeset]");
12261 }
12262
12263 return intel_atomic_get_crtc_state(state, to_intel_crtc(crtc));;
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012264}
12265
Ander Conselvan de Oliveira225da592015-04-02 14:47:57 +030012266static int __intel_set_mode_setup_plls(struct drm_atomic_state *state,
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012267 unsigned modeset_pipes,
12268 unsigned disable_pipes)
12269{
Ander Conselvan de Oliveira225da592015-04-02 14:47:57 +030012270 struct drm_device *dev = state->dev;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012271 struct drm_i915_private *dev_priv = to_i915(dev);
12272 unsigned clear_pipes = modeset_pipes | disable_pipes;
12273 struct intel_crtc *intel_crtc;
12274 int ret = 0;
12275
12276 if (!dev_priv->display.crtc_compute_clock)
12277 return 0;
12278
12279 ret = intel_shared_dpll_start_config(dev_priv, clear_pipes);
12280 if (ret)
12281 goto done;
12282
12283 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
Ander Conselvan de Oliveira225da592015-04-02 14:47:57 +030012284 struct intel_crtc_state *crtc_state =
12285 intel_atomic_get_crtc_state(state, intel_crtc);
12286
12287 /* Modeset pipes should have a new state by now */
12288 if (WARN_ON(IS_ERR(crtc_state)))
12289 continue;
12290
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012291 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
Ander Conselvan de Oliveira225da592015-04-02 14:47:57 +030012292 crtc_state);
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012293 if (ret) {
12294 intel_shared_dpll_abort_config(dev_priv);
12295 goto done;
12296 }
12297 }
12298
12299done:
12300 return ret;
12301}
12302
Daniel Vetterf30da182013-04-11 20:22:50 +020012303static int __intel_set_mode(struct drm_crtc *crtc,
12304 struct drm_display_mode *mode,
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012305 int x, int y, struct drm_framebuffer *fb,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012306 struct intel_crtc_state *pipe_config,
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012307 unsigned modeset_pipes,
12308 unsigned prepare_pipes,
12309 unsigned disable_pipes)
Daniel Vettera6778b32012-07-02 09:56:42 +020012310{
12311 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +030012312 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030012313 struct drm_display_mode *saved_mode;
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +030012314 struct drm_atomic_state *state = pipe_config->base.state;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012315 struct intel_crtc_state *crtc_state_copy = NULL;
Daniel Vetter25c5b262012-07-08 22:08:04 +020012316 struct intel_crtc *intel_crtc;
Chris Wilsonc0c36b942012-12-19 16:08:43 +000012317 int ret = 0;
Daniel Vettera6778b32012-07-02 09:56:42 +020012318
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030012319 saved_mode = kmalloc(sizeof(*saved_mode), GFP_KERNEL);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000012320 if (!saved_mode)
12321 return -ENOMEM;
Daniel Vettera6778b32012-07-02 09:56:42 +020012322
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012323 crtc_state_copy = kmalloc(sizeof(*crtc_state_copy), GFP_KERNEL);
12324 if (!crtc_state_copy) {
12325 ret = -ENOMEM;
12326 goto done;
12327 }
12328
Tim Gardner3ac18232012-12-07 07:54:26 -070012329 *saved_mode = crtc->mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020012330
Jesse Barnes30a970c2013-11-04 13:48:12 -080012331 /*
12332 * See if the config requires any additional preparation, e.g.
12333 * to adjust global state with pipes off. We need to do this
12334 * here so we can get the modeset_pipe updated config for the new
12335 * mode set on this crtc. For other crtcs we need to use the
12336 * adjusted_mode bits in the crtc directly.
12337 */
Vandana Kannanf8437dd12014-11-24 13:37:39 +053012338 if (IS_VALLEYVIEW(dev) || IS_BROXTON(dev)) {
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +030012339 ret = valleyview_modeset_global_pipes(state, &prepare_pipes);
12340 if (ret)
12341 goto done;
Jesse Barnes30a970c2013-11-04 13:48:12 -080012342
Ville Syrjäläc164f832013-11-05 22:34:12 +020012343 /* may have added more to prepare_pipes than we should */
12344 prepare_pipes &= ~disable_pipes;
12345 }
12346
Ander Conselvan de Oliveira225da592015-04-02 14:47:57 +030012347 ret = __intel_set_mode_setup_plls(state, modeset_pipes, disable_pipes);
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012348 if (ret)
12349 goto done;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +020012350
Daniel Vetter460da9162013-03-27 00:44:51 +010012351 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
12352 intel_crtc_disable(&intel_crtc->base);
12353
Daniel Vetterea9d7582012-07-10 10:42:52 +020012354 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
Maarten Lankhorstce22dba2015-04-21 17:12:56 +030012355 if (intel_crtc->base.state->enable) {
12356 intel_crtc_disable_planes(&intel_crtc->base);
Daniel Vetterea9d7582012-07-10 10:42:52 +020012357 dev_priv->display.crtc_disable(&intel_crtc->base);
Maarten Lankhorstce22dba2015-04-21 17:12:56 +030012358 }
Daniel Vetterea9d7582012-07-10 10:42:52 +020012359 }
Daniel Vettera6778b32012-07-02 09:56:42 +020012360
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020012361 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
12362 * to set it here already despite that we pass it down the callchain.
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012363 *
12364 * Note we'll need to fix this up when we start tracking multiple
12365 * pipes; here we assume a single modeset_pipe and only track the
12366 * single crtc and mode.
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020012367 */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010012368 if (modeset_pipes) {
Daniel Vetter25c5b262012-07-08 22:08:04 +020012369 crtc->mode = *mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010012370 /* mode_set/enable/disable functions rely on a correct pipe
12371 * config. */
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020012372 intel_crtc_set_state(to_intel_crtc(crtc), pipe_config);
Ville Syrjäläc326c0a2013-10-28 12:53:41 +020012373
12374 /*
12375 * Calculate and store various constants which
12376 * are later needed by vblank and swap-completion
12377 * timestamping. They are derived from true hwmode.
12378 */
12379 drm_calc_timestamping_constants(crtc,
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012380 &pipe_config->base.adjusted_mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010012381 }
Daniel Vetter7758a112012-07-08 19:40:39 +020012382
Daniel Vetterea9d7582012-07-10 10:42:52 +020012383 /* Only after disabling all output pipelines that will be changed can we
12384 * update the the output configuration. */
12385 intel_modeset_update_state(dev, prepare_pipes);
12386
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +030012387 modeset_update_crtc_power_domains(state);
Daniel Vetter47fab732012-10-26 10:58:18 +020012388
Daniel Vetter25c5b262012-07-08 22:08:04 +020012389 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
Gustavo Padovan455a6802014-12-01 15:40:11 -080012390 struct drm_plane *primary = intel_crtc->base.primary;
12391 int vdisplay, hdisplay;
Daniel Vetter4c107942014-04-24 23:55:05 +020012392
Gustavo Padovan455a6802014-12-01 15:40:11 -080012393 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
Matt Roper70a101f2015-04-08 18:56:53 -070012394 ret = drm_plane_helper_update(primary, &intel_crtc->base,
12395 fb, 0, 0,
12396 hdisplay, vdisplay,
12397 x << 16, y << 16,
12398 hdisplay << 16, vdisplay << 16);
Daniel Vettera6778b32012-07-02 09:56:42 +020012399 }
12400
12401 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Ville Syrjälä80715b22014-05-15 20:23:23 +030012402 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
12403 update_scanline_offset(intel_crtc);
12404
Daniel Vetter25c5b262012-07-08 22:08:04 +020012405 dev_priv->display.crtc_enable(&intel_crtc->base);
Maarten Lankhorstce22dba2015-04-21 17:12:56 +030012406 intel_crtc_enable_planes(&intel_crtc->base);
Ville Syrjälä80715b22014-05-15 20:23:23 +030012407 }
Daniel Vettera6778b32012-07-02 09:56:42 +020012408
Daniel Vettera6778b32012-07-02 09:56:42 +020012409 /* FIXME: add subpixel order */
12410done:
Matt Roper83d65732015-02-25 13:12:16 -080012411 if (ret && crtc->state->enable)
Tim Gardner3ac18232012-12-07 07:54:26 -070012412 crtc->mode = *saved_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020012413
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012414 if (ret == 0 && pipe_config) {
12415 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12416
12417 /* The pipe_config will be freed with the atomic state, so
12418 * make a copy. */
12419 memcpy(crtc_state_copy, intel_crtc->config,
12420 sizeof *crtc_state_copy);
12421 intel_crtc->config = crtc_state_copy;
12422 intel_crtc->base.state = &crtc_state_copy->base;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012423 } else {
12424 kfree(crtc_state_copy);
12425 }
12426
Tim Gardner3ac18232012-12-07 07:54:26 -070012427 kfree(saved_mode);
Daniel Vettera6778b32012-07-02 09:56:42 +020012428 return ret;
12429}
12430
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012431static int intel_set_mode_pipes(struct drm_crtc *crtc,
12432 struct drm_display_mode *mode,
12433 int x, int y, struct drm_framebuffer *fb,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012434 struct intel_crtc_state *pipe_config,
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012435 unsigned modeset_pipes,
12436 unsigned prepare_pipes,
12437 unsigned disable_pipes)
12438{
12439 int ret;
12440
12441 ret = __intel_set_mode(crtc, mode, x, y, fb, pipe_config, modeset_pipes,
12442 prepare_pipes, disable_pipes);
12443
12444 if (ret == 0)
12445 intel_modeset_check_state(crtc->dev);
12446
12447 return ret;
12448}
12449
Damien Lespiaue7457a92013-08-08 22:28:59 +010012450static int intel_set_mode(struct drm_crtc *crtc,
12451 struct drm_display_mode *mode,
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012452 int x, int y, struct drm_framebuffer *fb,
12453 struct drm_atomic_state *state)
Daniel Vetterf30da182013-04-11 20:22:50 +020012454{
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012455 struct intel_crtc_state *pipe_config;
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012456 unsigned modeset_pipes, prepare_pipes, disable_pipes;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012457 int ret = 0;
Daniel Vetterf30da182013-04-11 20:22:50 +020012458
Daniel Vetter8805aa72015-04-10 16:22:38 +020012459 pipe_config = intel_modeset_compute_config(crtc, mode, state,
Jesse Barnes7f27126e2014-11-05 14:26:06 -080012460 &modeset_pipes,
12461 &prepare_pipes,
12462 &disable_pipes);
Daniel Vetterf30da182013-04-11 20:22:50 +020012463
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012464 if (IS_ERR(pipe_config)) {
12465 ret = PTR_ERR(pipe_config);
12466 goto out;
12467 }
Daniel Vetterf30da182013-04-11 20:22:50 +020012468
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012469 ret = intel_set_mode_pipes(crtc, mode, x, y, fb, pipe_config,
12470 modeset_pipes, prepare_pipes,
12471 disable_pipes);
12472 if (ret)
12473 goto out;
12474
12475out:
12476 return ret;
Daniel Vetterf30da182013-04-11 20:22:50 +020012477}
12478
Chris Wilsonc0c36b942012-12-19 16:08:43 +000012479void intel_crtc_restore_mode(struct drm_crtc *crtc)
12480{
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012481 struct drm_device *dev = crtc->dev;
12482 struct drm_atomic_state *state;
12483 struct intel_encoder *encoder;
12484 struct intel_connector *connector;
12485 struct drm_connector_state *connector_state;
12486
12487 state = drm_atomic_state_alloc(dev);
12488 if (!state) {
12489 DRM_DEBUG_KMS("[CRTC:%d] mode restore failed, out of memory",
12490 crtc->base.id);
12491 return;
12492 }
12493
12494 state->acquire_ctx = dev->mode_config.acquire_ctx;
12495
12496 /* The force restore path in the HW readout code relies on the staged
12497 * config still keeping the user requested config while the actual
12498 * state has been overwritten by the configuration read from HW. We
12499 * need to copy the staged config to the atomic state, otherwise the
12500 * mode set will just reapply the state the HW is already in. */
12501 for_each_intel_encoder(dev, encoder) {
12502 if (&encoder->new_crtc->base != crtc)
12503 continue;
12504
12505 for_each_intel_connector(dev, connector) {
12506 if (connector->new_encoder != encoder)
12507 continue;
12508
12509 connector_state = drm_atomic_get_connector_state(state, &connector->base);
12510 if (IS_ERR(connector_state)) {
12511 DRM_DEBUG_KMS("Failed to add [CONNECTOR:%d:%s] to state: %ld\n",
12512 connector->base.base.id,
12513 connector->base.name,
12514 PTR_ERR(connector_state));
12515 continue;
12516 }
12517
12518 connector_state->crtc = crtc;
12519 connector_state->best_encoder = &encoder->base;
12520 }
12521 }
12522
12523 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->primary->fb,
12524 state);
12525
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
Daniel Vetterd9e55602012-07-04 22:16:09 +020012531static void intel_set_config_free(struct intel_set_config *config)
12532{
12533 if (!config)
12534 return;
12535
Daniel Vetter1aa4b622012-07-05 16:20:48 +020012536 kfree(config->save_connector_encoders);
12537 kfree(config->save_encoder_crtcs);
Ville Syrjälä76688512014-01-10 11:28:06 +020012538 kfree(config->save_crtc_enabled);
Daniel Vetterd9e55602012-07-04 22:16:09 +020012539 kfree(config);
12540}
12541
Daniel Vetter85f9eb72012-07-04 22:24:08 +020012542static int intel_set_config_save_state(struct drm_device *dev,
12543 struct intel_set_config *config)
12544{
Ville Syrjälä76688512014-01-10 11:28:06 +020012545 struct drm_crtc *crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020012546 struct drm_encoder *encoder;
12547 struct drm_connector *connector;
12548 int count;
12549
Ville Syrjälä76688512014-01-10 11:28:06 +020012550 config->save_crtc_enabled =
12551 kcalloc(dev->mode_config.num_crtc,
12552 sizeof(bool), GFP_KERNEL);
12553 if (!config->save_crtc_enabled)
12554 return -ENOMEM;
12555
Daniel Vetter1aa4b622012-07-05 16:20:48 +020012556 config->save_encoder_crtcs =
12557 kcalloc(dev->mode_config.num_encoder,
12558 sizeof(struct drm_crtc *), GFP_KERNEL);
12559 if (!config->save_encoder_crtcs)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020012560 return -ENOMEM;
12561
Daniel Vetter1aa4b622012-07-05 16:20:48 +020012562 config->save_connector_encoders =
12563 kcalloc(dev->mode_config.num_connector,
12564 sizeof(struct drm_encoder *), GFP_KERNEL);
12565 if (!config->save_connector_encoders)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020012566 return -ENOMEM;
12567
12568 /* Copy data. Note that driver private data is not affected.
12569 * Should anything bad happen only the expected state is
12570 * restored, not the drivers personal bookkeeping.
12571 */
12572 count = 0;
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010012573 for_each_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080012574 config->save_crtc_enabled[count++] = crtc->state->enable;
Ville Syrjälä76688512014-01-10 11:28:06 +020012575 }
12576
12577 count = 0;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020012578 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020012579 config->save_encoder_crtcs[count++] = encoder->crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020012580 }
12581
12582 count = 0;
12583 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020012584 config->save_connector_encoders[count++] = connector->encoder;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020012585 }
12586
12587 return 0;
12588}
12589
12590static void intel_set_config_restore_state(struct drm_device *dev,
12591 struct intel_set_config *config)
12592{
Ville Syrjälä76688512014-01-10 11:28:06 +020012593 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020012594 struct intel_encoder *encoder;
12595 struct intel_connector *connector;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020012596 int count;
12597
12598 count = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010012599 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020012600 crtc->new_enabled = config->save_crtc_enabled[count++];
12601 }
12602
12603 count = 0;
Damien Lespiaub2784e12014-08-05 11:29:37 +010012604 for_each_intel_encoder(dev, encoder) {
Daniel Vetter9a935852012-07-05 22:34:27 +020012605 encoder->new_crtc =
12606 to_intel_crtc(config->save_encoder_crtcs[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020012607 }
12608
12609 count = 0;
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020012610 for_each_intel_connector(dev, connector) {
Daniel Vetter9a935852012-07-05 22:34:27 +020012611 connector->new_encoder =
12612 to_intel_encoder(config->save_connector_encoders[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020012613 }
12614}
12615
Imre Deake3de42b2013-05-03 19:44:07 +020012616static bool
Chris Wilson2e57f472013-07-17 12:14:40 +010012617is_crtc_connector_off(struct drm_mode_set *set)
Imre Deake3de42b2013-05-03 19:44:07 +020012618{
12619 int i;
12620
Chris Wilson2e57f472013-07-17 12:14:40 +010012621 if (set->num_connectors == 0)
12622 return false;
12623
12624 if (WARN_ON(set->connectors == NULL))
12625 return false;
12626
12627 for (i = 0; i < set->num_connectors; i++)
12628 if (set->connectors[i]->encoder &&
12629 set->connectors[i]->encoder->crtc == set->crtc &&
12630 set->connectors[i]->dpms != DRM_MODE_DPMS_ON)
Imre Deake3de42b2013-05-03 19:44:07 +020012631 return true;
12632
12633 return false;
12634}
12635
Daniel Vetter5e2b5842012-07-04 22:41:29 +020012636static void
12637intel_set_config_compute_mode_changes(struct drm_mode_set *set,
12638 struct intel_set_config *config)
12639{
12640
12641 /* We should be able to check here if the fb has the same properties
12642 * and then just flip_or_move it */
Chris Wilson2e57f472013-07-17 12:14:40 +010012643 if (is_crtc_connector_off(set)) {
12644 config->mode_changed = true;
Matt Roperf4510a22014-04-01 15:22:40 -070012645 } else if (set->crtc->primary->fb != set->fb) {
Matt Roper3b150f02014-05-29 08:06:53 -070012646 /*
12647 * If we have no fb, we can only flip as long as the crtc is
12648 * active, otherwise we need a full mode set. The crtc may
12649 * be active if we've only disabled the primary plane, or
12650 * in fastboot situations.
12651 */
Matt Roperf4510a22014-04-01 15:22:40 -070012652 if (set->crtc->primary->fb == NULL) {
Jesse Barnes319d9822013-06-26 01:38:19 +030012653 struct intel_crtc *intel_crtc =
12654 to_intel_crtc(set->crtc);
12655
Matt Roper3b150f02014-05-29 08:06:53 -070012656 if (intel_crtc->active) {
Jesse Barnes319d9822013-06-26 01:38:19 +030012657 DRM_DEBUG_KMS("crtc has no fb, will flip\n");
12658 config->fb_changed = true;
12659 } else {
12660 DRM_DEBUG_KMS("inactive crtc, full mode set\n");
12661 config->mode_changed = true;
12662 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020012663 } else if (set->fb == NULL) {
12664 config->mode_changed = true;
Daniel Vetter72f49012013-03-28 16:01:35 +010012665 } else if (set->fb->pixel_format !=
Matt Roperf4510a22014-04-01 15:22:40 -070012666 set->crtc->primary->fb->pixel_format) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020012667 config->mode_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020012668 } else {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020012669 config->fb_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020012670 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020012671 }
12672
Daniel Vetter835c5872012-07-10 18:11:08 +020012673 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
Daniel Vetter5e2b5842012-07-04 22:41:29 +020012674 config->fb_changed = true;
12675
12676 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
12677 DRM_DEBUG_KMS("modes are different, full mode set\n");
12678 drm_mode_debug_printmodeline(&set->crtc->mode);
12679 drm_mode_debug_printmodeline(set->mode);
12680 config->mode_changed = true;
12681 }
Chris Wilsona1d95702013-08-13 18:48:47 +010012682
12683 DRM_DEBUG_KMS("computed changes for [CRTC:%d], mode_changed=%d, fb_changed=%d\n",
12684 set->crtc->base.id, config->mode_changed, config->fb_changed);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020012685}
12686
Daniel Vetter2e431052012-07-04 22:42:15 +020012687static int
Daniel Vetter9a935852012-07-05 22:34:27 +020012688intel_modeset_stage_output_state(struct drm_device *dev,
12689 struct drm_mode_set *set,
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020012690 struct intel_set_config *config,
12691 struct drm_atomic_state *state)
Daniel Vetter50f56112012-07-02 09:35:43 +020012692{
Daniel Vetter9a935852012-07-05 22:34:27 +020012693 struct intel_connector *connector;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020012694 struct drm_connector_state *connector_state;
Daniel Vetter9a935852012-07-05 22:34:27 +020012695 struct intel_encoder *encoder;
Ville Syrjälä76688512014-01-10 11:28:06 +020012696 struct intel_crtc *crtc;
Paulo Zanonif3f08572013-08-12 14:56:53 -030012697 int ro;
Daniel Vetter50f56112012-07-02 09:35:43 +020012698
Damien Lespiau9abdda72013-02-13 13:29:23 +000012699 /* The upper layers ensure that we either disable a crtc or have a list
Daniel Vetter9a935852012-07-05 22:34:27 +020012700 * of connectors. For paranoia, double-check this. */
12701 WARN_ON(!set->fb && (set->num_connectors != 0));
12702 WARN_ON(set->fb && (set->num_connectors == 0));
12703
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020012704 for_each_intel_connector(dev, connector) {
Daniel Vetter9a935852012-07-05 22:34:27 +020012705 /* Otherwise traverse passed in connector list and get encoders
12706 * for them. */
Daniel Vetter50f56112012-07-02 09:35:43 +020012707 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020012708 if (set->connectors[ro] == &connector->base) {
Dave Airlie0e32b392014-05-02 14:02:48 +100012709 connector->new_encoder = intel_find_encoder(connector, to_intel_crtc(set->crtc)->pipe);
Daniel Vetter50f56112012-07-02 09:35:43 +020012710 break;
12711 }
12712 }
12713
Daniel Vetter9a935852012-07-05 22:34:27 +020012714 /* If we disable the crtc, disable all its connectors. Also, if
12715 * the connector is on the changing crtc but not on the new
12716 * connector list, disable it. */
12717 if ((!set->fb || ro == set->num_connectors) &&
12718 connector->base.encoder &&
12719 connector->base.encoder->crtc == set->crtc) {
12720 connector->new_encoder = NULL;
12721
12722 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
12723 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030012724 connector->base.name);
Daniel Vetter9a935852012-07-05 22:34:27 +020012725 }
12726
12727
12728 if (&connector->new_encoder->base != connector->base.encoder) {
Ander Conselvan de Oliveira10634182015-03-03 15:21:57 +020012729 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] encoder changed, full mode switch\n",
12730 connector->base.base.id,
12731 connector->base.name);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020012732 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020012733 }
Daniel Vetter9a935852012-07-05 22:34:27 +020012734 }
12735 /* connector->new_encoder is now updated for all connectors. */
12736
12737 /* Update crtc of enabled connectors. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020012738 for_each_intel_connector(dev, connector) {
Ville Syrjälä76688512014-01-10 11:28:06 +020012739 struct drm_crtc *new_crtc;
12740
Daniel Vetter9a935852012-07-05 22:34:27 +020012741 if (!connector->new_encoder)
Daniel Vetter50f56112012-07-02 09:35:43 +020012742 continue;
12743
Daniel Vetter9a935852012-07-05 22:34:27 +020012744 new_crtc = connector->new_encoder->base.crtc;
Daniel Vetter50f56112012-07-02 09:35:43 +020012745
12746 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020012747 if (set->connectors[ro] == &connector->base)
Daniel Vetter50f56112012-07-02 09:35:43 +020012748 new_crtc = set->crtc;
12749 }
12750
12751 /* Make sure the new CRTC will work with the encoder */
Thierry Reding14509912014-01-13 12:00:22 +010012752 if (!drm_encoder_crtc_ok(&connector->new_encoder->base,
12753 new_crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020012754 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +020012755 }
Dave Airlie0e32b392014-05-02 14:02:48 +100012756 connector->new_encoder->new_crtc = to_intel_crtc(new_crtc);
Daniel Vetter9a935852012-07-05 22:34:27 +020012757
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020012758 connector_state =
12759 drm_atomic_get_connector_state(state, &connector->base);
12760 if (IS_ERR(connector_state))
12761 return PTR_ERR(connector_state);
12762
12763 connector_state->crtc = new_crtc;
12764 connector_state->best_encoder = &connector->new_encoder->base;
12765
Daniel Vetter9a935852012-07-05 22:34:27 +020012766 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
12767 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030012768 connector->base.name,
Daniel Vetter9a935852012-07-05 22:34:27 +020012769 new_crtc->base.id);
12770 }
12771
12772 /* Check for any encoders that needs to be disabled. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010012773 for_each_intel_encoder(dev, encoder) {
Paulo Zanoni5a65f352014-01-07 14:55:53 -020012774 int num_connectors = 0;
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020012775 for_each_intel_connector(dev, connector) {
Daniel Vetter9a935852012-07-05 22:34:27 +020012776 if (connector->new_encoder == encoder) {
12777 WARN_ON(!connector->new_encoder->new_crtc);
Paulo Zanoni5a65f352014-01-07 14:55:53 -020012778 num_connectors++;
Daniel Vetter9a935852012-07-05 22:34:27 +020012779 }
12780 }
Paulo Zanoni5a65f352014-01-07 14:55:53 -020012781
12782 if (num_connectors == 0)
12783 encoder->new_crtc = NULL;
12784 else if (num_connectors > 1)
12785 return -EINVAL;
12786
Daniel Vetter9a935852012-07-05 22:34:27 +020012787 /* Only now check for crtc changes so we don't miss encoders
12788 * that will be disabled. */
12789 if (&encoder->new_crtc->base != encoder->base.crtc) {
Ander Conselvan de Oliveira10634182015-03-03 15:21:57 +020012790 DRM_DEBUG_KMS("[ENCODER:%d:%s] crtc changed, full mode switch\n",
12791 encoder->base.base.id,
12792 encoder->base.name);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020012793 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020012794 }
12795 }
Daniel Vetter9a935852012-07-05 22:34:27 +020012796 /* Now we've also updated encoder->new_crtc for all encoders. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020012797 for_each_intel_connector(dev, connector) {
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020012798 connector_state =
12799 drm_atomic_get_connector_state(state, &connector->base);
Ander Conselvan de Oliveira9d918c12015-03-27 15:33:51 +020012800 if (IS_ERR(connector_state))
12801 return PTR_ERR(connector_state);
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020012802
12803 if (connector->new_encoder) {
Dave Airlie0e32b392014-05-02 14:02:48 +100012804 if (connector->new_encoder != connector->encoder)
12805 connector->encoder = connector->new_encoder;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020012806 } else {
12807 connector_state->crtc = NULL;
Ander Conselvan de Oliveiraf61cccf2015-03-31 11:35:00 +030012808 connector_state->best_encoder = NULL;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020012809 }
Dave Airlie0e32b392014-05-02 14:02:48 +100012810 }
Damien Lespiaud3fcc802014-05-13 23:32:22 +010012811 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020012812 crtc->new_enabled = false;
12813
Damien Lespiaub2784e12014-08-05 11:29:37 +010012814 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä76688512014-01-10 11:28:06 +020012815 if (encoder->new_crtc == crtc) {
12816 crtc->new_enabled = true;
12817 break;
12818 }
12819 }
12820
Matt Roper83d65732015-02-25 13:12:16 -080012821 if (crtc->new_enabled != crtc->base.state->enable) {
Ander Conselvan de Oliveira10634182015-03-03 15:21:57 +020012822 DRM_DEBUG_KMS("[CRTC:%d] %sabled, full mode switch\n",
12823 crtc->base.base.id,
Ville Syrjälä76688512014-01-10 11:28:06 +020012824 crtc->new_enabled ? "en" : "dis");
12825 config->mode_changed = true;
12826 }
12827 }
12828
Daniel Vetter2e431052012-07-04 22:42:15 +020012829 return 0;
12830}
12831
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020012832static void disable_crtc_nofb(struct intel_crtc *crtc)
12833{
12834 struct drm_device *dev = crtc->base.dev;
12835 struct intel_encoder *encoder;
12836 struct intel_connector *connector;
12837
12838 DRM_DEBUG_KMS("Trying to restore without FB -> disabling pipe %c\n",
12839 pipe_name(crtc->pipe));
12840
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020012841 for_each_intel_connector(dev, connector) {
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020012842 if (connector->new_encoder &&
12843 connector->new_encoder->new_crtc == crtc)
12844 connector->new_encoder = NULL;
12845 }
12846
Damien Lespiaub2784e12014-08-05 11:29:37 +010012847 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020012848 if (encoder->new_crtc == crtc)
12849 encoder->new_crtc = NULL;
12850 }
12851
12852 crtc->new_enabled = false;
12853}
12854
Daniel Vetter2e431052012-07-04 22:42:15 +020012855static int intel_crtc_set_config(struct drm_mode_set *set)
12856{
12857 struct drm_device *dev;
Daniel Vetter2e431052012-07-04 22:42:15 +020012858 struct drm_mode_set save_set;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012859 struct drm_atomic_state *state = NULL;
Daniel Vetter2e431052012-07-04 22:42:15 +020012860 struct intel_set_config *config;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012861 struct intel_crtc_state *pipe_config;
Jesse Barnes50f52752014-11-07 13:11:00 -080012862 unsigned modeset_pipes, prepare_pipes, disable_pipes;
Daniel Vetter2e431052012-07-04 22:42:15 +020012863 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +020012864
Daniel Vetter8d3e3752012-07-05 16:09:09 +020012865 BUG_ON(!set);
12866 BUG_ON(!set->crtc);
12867 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +020012868
Daniel Vetter7e53f3a2013-01-21 10:52:17 +010012869 /* Enforce sane interface api - has been abused by the fb helper. */
12870 BUG_ON(!set->mode && set->fb);
12871 BUG_ON(set->fb && set->num_connectors == 0);
Daniel Vetter431e50f2012-07-10 17:53:42 +020012872
Daniel Vetter2e431052012-07-04 22:42:15 +020012873 if (set->fb) {
12874 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
12875 set->crtc->base.id, set->fb->base.id,
12876 (int)set->num_connectors, set->x, set->y);
12877 } else {
12878 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +020012879 }
12880
12881 dev = set->crtc->dev;
12882
12883 ret = -ENOMEM;
12884 config = kzalloc(sizeof(*config), GFP_KERNEL);
12885 if (!config)
12886 goto out_config;
12887
12888 ret = intel_set_config_save_state(dev, config);
12889 if (ret)
12890 goto out_config;
12891
12892 save_set.crtc = set->crtc;
12893 save_set.mode = &set->crtc->mode;
12894 save_set.x = set->crtc->x;
12895 save_set.y = set->crtc->y;
Matt Roperf4510a22014-04-01 15:22:40 -070012896 save_set.fb = set->crtc->primary->fb;
Daniel Vetter2e431052012-07-04 22:42:15 +020012897
12898 /* Compute whether we need a full modeset, only an fb base update or no
12899 * change at all. In the future we might also check whether only the
12900 * mode changed, e.g. for LVDS where we only change the panel fitter in
12901 * such cases. */
12902 intel_set_config_compute_mode_changes(set, config);
12903
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012904 state = drm_atomic_state_alloc(dev);
12905 if (!state) {
12906 ret = -ENOMEM;
12907 goto out_config;
12908 }
12909
12910 state->acquire_ctx = dev->mode_config.acquire_ctx;
12911
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020012912 ret = intel_modeset_stage_output_state(dev, set, config, state);
Daniel Vetter2e431052012-07-04 22:42:15 +020012913 if (ret)
12914 goto fail;
12915
Jesse Barnes50f52752014-11-07 13:11:00 -080012916 pipe_config = intel_modeset_compute_config(set->crtc, set->mode,
Daniel Vetter8805aa72015-04-10 16:22:38 +020012917 state,
Jesse Barnes50f52752014-11-07 13:11:00 -080012918 &modeset_pipes,
12919 &prepare_pipes,
12920 &disable_pipes);
Jesse Barnes20664592014-11-05 14:26:09 -080012921 if (IS_ERR(pipe_config)) {
Matt Roper6ac04832014-11-17 09:59:28 -080012922 ret = PTR_ERR(pipe_config);
Jesse Barnes50f52752014-11-07 13:11:00 -080012923 goto fail;
Jesse Barnes20664592014-11-05 14:26:09 -080012924 } else if (pipe_config) {
Ville Syrjäläb9950a12014-11-21 21:00:36 +020012925 if (pipe_config->has_audio !=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020012926 to_intel_crtc(set->crtc)->config->has_audio)
Jesse Barnes20664592014-11-05 14:26:09 -080012927 config->mode_changed = true;
12928
Jesse Barnesaf15d2c2014-12-01 09:54:28 -080012929 /*
12930 * Note we have an issue here with infoframes: current code
12931 * only updates them on the full mode set path per hw
12932 * requirements. So here we should be checking for any
12933 * required changes and forcing a mode set.
12934 */
Jesse Barnes20664592014-11-05 14:26:09 -080012935 }
Jesse Barnes50f52752014-11-07 13:11:00 -080012936
Jesse Barnes1f9954d2014-11-05 14:26:10 -080012937 intel_update_pipe_size(to_intel_crtc(set->crtc));
12938
Daniel Vetter5e2b5842012-07-04 22:41:29 +020012939 if (config->mode_changed) {
Jesse Barnes50f52752014-11-07 13:11:00 -080012940 ret = intel_set_mode_pipes(set->crtc, set->mode,
12941 set->x, set->y, set->fb, pipe_config,
12942 modeset_pipes, prepare_pipes,
12943 disable_pipes);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020012944 } else if (config->fb_changed) {
Matt Roper3b150f02014-05-29 08:06:53 -070012945 struct intel_crtc *intel_crtc = to_intel_crtc(set->crtc);
Gustavo Padovan455a6802014-12-01 15:40:11 -080012946 struct drm_plane *primary = set->crtc->primary;
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030012947 struct intel_plane_state *plane_state =
12948 to_intel_plane_state(primary->state);
12949 bool was_visible = plane_state->visible;
Gustavo Padovan455a6802014-12-01 15:40:11 -080012950 int vdisplay, hdisplay;
Matt Roper3b150f02014-05-29 08:06:53 -070012951
Gustavo Padovan455a6802014-12-01 15:40:11 -080012952 drm_crtc_get_hv_timing(set->mode, &hdisplay, &vdisplay);
Matt Roper70a101f2015-04-08 18:56:53 -070012953 ret = drm_plane_helper_update(primary, set->crtc, set->fb,
12954 0, 0, hdisplay, vdisplay,
12955 set->x << 16, set->y << 16,
12956 hdisplay << 16, vdisplay << 16);
Matt Roper3b150f02014-05-29 08:06:53 -070012957
12958 /*
12959 * We need to make sure the primary plane is re-enabled if it
12960 * has previously been turned off.
12961 */
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030012962 plane_state = to_intel_plane_state(primary->state);
12963 if (ret == 0 && !was_visible && plane_state->visible) {
Matt Roper3b150f02014-05-29 08:06:53 -070012964 WARN_ON(!intel_crtc->active);
Maarten Lankhorst87d43002015-04-21 17:12:54 +030012965 intel_post_enable_primary(set->crtc);
Matt Roper3b150f02014-05-29 08:06:53 -070012966 }
12967
Jesse Barnes7ca51a32014-01-07 13:50:49 -080012968 /*
12969 * In the fastboot case this may be our only check of the
12970 * state after boot. It would be better to only do it on
12971 * the first update, but we don't have a nice way of doing that
12972 * (and really, set_config isn't used much for high freq page
12973 * flipping, so increasing its cost here shouldn't be a big
12974 * deal).
12975 */
Jani Nikulad330a952014-01-21 11:24:25 +020012976 if (i915.fastboot && ret == 0)
Jesse Barnes7ca51a32014-01-07 13:50:49 -080012977 intel_modeset_check_state(set->crtc->dev);
Daniel Vetter50f56112012-07-02 09:35:43 +020012978 }
12979
Chris Wilson2d05eae2013-05-03 17:36:25 +010012980 if (ret) {
Daniel Vetterbf67dfe2013-06-25 11:06:52 +020012981 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
12982 set->crtc->base.id, ret);
Daniel Vetter50f56112012-07-02 09:35:43 +020012983fail:
Chris Wilson2d05eae2013-05-03 17:36:25 +010012984 intel_set_config_restore_state(dev, config);
Daniel Vetter50f56112012-07-02 09:35:43 +020012985
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012986 drm_atomic_state_clear(state);
12987
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020012988 /*
12989 * HACK: if the pipe was on, but we didn't have a framebuffer,
12990 * force the pipe off to avoid oopsing in the modeset code
12991 * due to fb==NULL. This should only happen during boot since
12992 * we don't yet reconstruct the FB from the hardware state.
12993 */
12994 if (to_intel_crtc(save_set.crtc)->new_enabled && !save_set.fb)
12995 disable_crtc_nofb(to_intel_crtc(save_set.crtc));
12996
Chris Wilson2d05eae2013-05-03 17:36:25 +010012997 /* Try to restore the config */
12998 if (config->mode_changed &&
12999 intel_set_mode(save_set.crtc, save_set.mode,
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013000 save_set.x, save_set.y, save_set.fb,
13001 state))
Chris Wilson2d05eae2013-05-03 17:36:25 +010013002 DRM_ERROR("failed to restore config after modeset failure\n");
13003 }
Daniel Vetter50f56112012-07-02 09:35:43 +020013004
Daniel Vetterd9e55602012-07-04 22:16:09 +020013005out_config:
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013006 if (state)
13007 drm_atomic_state_free(state);
13008
Daniel Vetterd9e55602012-07-04 22:16:09 +020013009 intel_set_config_free(config);
Daniel Vetter50f56112012-07-02 09:35:43 +020013010 return ret;
13011}
13012
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013013static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013014 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +020013015 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013016 .destroy = intel_crtc_destroy,
13017 .page_flip = intel_crtc_page_flip,
Matt Roper13568372015-01-21 16:35:47 -080013018 .atomic_duplicate_state = intel_crtc_duplicate_state,
13019 .atomic_destroy_state = intel_crtc_destroy_state,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013020};
13021
Daniel Vetter53589012013-06-05 13:34:16 +020013022static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
13023 struct intel_shared_dpll *pll,
13024 struct intel_dpll_hw_state *hw_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013025{
Daniel Vetter53589012013-06-05 13:34:16 +020013026 uint32_t val;
13027
Daniel Vetterf458ebb2014-09-30 10:56:39 +020013028 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_PLLS))
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030013029 return false;
13030
Daniel Vetter53589012013-06-05 13:34:16 +020013031 val = I915_READ(PCH_DPLL(pll->id));
Daniel Vetter66e985c2013-06-05 13:34:20 +020013032 hw_state->dpll = val;
13033 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
13034 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
Daniel Vetter53589012013-06-05 13:34:16 +020013035
13036 return val & DPLL_VCO_ENABLE;
13037}
13038
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013039static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
13040 struct intel_shared_dpll *pll)
13041{
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013042 I915_WRITE(PCH_FP0(pll->id), pll->config.hw_state.fp0);
13043 I915_WRITE(PCH_FP1(pll->id), pll->config.hw_state.fp1);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013044}
13045
Daniel Vettere7b903d2013-06-05 13:34:14 +020013046static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
13047 struct intel_shared_dpll *pll)
13048{
Daniel Vettere7b903d2013-06-05 13:34:14 +020013049 /* PCH refclock must be enabled first */
Paulo Zanoni89eff4b2014-01-08 11:12:28 -020013050 ibx_assert_pch_refclk_enabled(dev_priv);
Daniel Vettere7b903d2013-06-05 13:34:14 +020013051
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013052 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013053
13054 /* Wait for the clocks to stabilize. */
13055 POSTING_READ(PCH_DPLL(pll->id));
13056 udelay(150);
13057
13058 /* The pixel multiplier can only be updated once the
13059 * DPLL is enabled and the clocks are stable.
13060 *
13061 * So write it again.
13062 */
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013063 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013064 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020013065 udelay(200);
13066}
13067
13068static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
13069 struct intel_shared_dpll *pll)
13070{
13071 struct drm_device *dev = dev_priv->dev;
13072 struct intel_crtc *crtc;
Daniel Vettere7b903d2013-06-05 13:34:14 +020013073
13074 /* Make sure no transcoder isn't still depending on us. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013075 for_each_intel_crtc(dev, crtc) {
Daniel Vettere7b903d2013-06-05 13:34:14 +020013076 if (intel_crtc_to_shared_dpll(crtc) == pll)
13077 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
13078 }
13079
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013080 I915_WRITE(PCH_DPLL(pll->id), 0);
13081 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020013082 udelay(200);
13083}
13084
Daniel Vetter46edb022013-06-05 13:34:12 +020013085static char *ibx_pch_dpll_names[] = {
13086 "PCH DPLL A",
13087 "PCH DPLL B",
13088};
13089
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013090static void ibx_pch_dpll_init(struct drm_device *dev)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013091{
Daniel Vettere7b903d2013-06-05 13:34:14 +020013092 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013093 int i;
13094
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013095 dev_priv->num_shared_dpll = 2;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013096
Daniel Vettere72f9fb2013-06-05 13:34:06 +020013097 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
Daniel Vetter46edb022013-06-05 13:34:12 +020013098 dev_priv->shared_dplls[i].id = i;
13099 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013100 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
Daniel Vettere7b903d2013-06-05 13:34:14 +020013101 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
13102 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
Daniel Vetter53589012013-06-05 13:34:16 +020013103 dev_priv->shared_dplls[i].get_hw_state =
13104 ibx_pch_dpll_get_hw_state;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013105 }
13106}
13107
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013108static void intel_shared_dpll_init(struct drm_device *dev)
13109{
Daniel Vettere7b903d2013-06-05 13:34:14 +020013110 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013111
Daniel Vetter9cd86932014-06-25 22:01:57 +030013112 if (HAS_DDI(dev))
13113 intel_ddi_pll_init(dev);
13114 else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013115 ibx_pch_dpll_init(dev);
13116 else
13117 dev_priv->num_shared_dpll = 0;
13118
13119 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013120}
13121
Matt Roper6beb8c232014-12-01 15:40:14 -080013122/**
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +000013123 * intel_wm_need_update - Check whether watermarks need updating
13124 * @plane: drm plane
13125 * @state: new plane state
13126 *
13127 * Check current plane state versus the new one to determine whether
13128 * watermarks need to be recalculated.
13129 *
13130 * Returns true or false.
13131 */
13132bool intel_wm_need_update(struct drm_plane *plane,
13133 struct drm_plane_state *state)
13134{
13135 /* Update watermarks on tiling changes. */
13136 if (!plane->state->fb || !state->fb ||
13137 plane->state->fb->modifier[0] != state->fb->modifier[0] ||
13138 plane->state->rotation != state->rotation)
13139 return true;
13140
13141 return false;
13142}
13143
13144/**
Matt Roper6beb8c232014-12-01 15:40:14 -080013145 * intel_prepare_plane_fb - Prepare fb for usage on plane
13146 * @plane: drm plane to prepare for
13147 * @fb: framebuffer to prepare for presentation
13148 *
13149 * Prepares a framebuffer for usage on a display plane. Generally this
13150 * involves pinning the underlying object and updating the frontbuffer tracking
13151 * bits. Some older platforms need special physical address handling for
13152 * cursor planes.
13153 *
13154 * Returns 0 on success, negative error code on failure.
13155 */
13156int
13157intel_prepare_plane_fb(struct drm_plane *plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +000013158 struct drm_framebuffer *fb,
13159 const struct drm_plane_state *new_state)
Matt Roper465c1202014-05-29 08:06:54 -070013160{
13161 struct drm_device *dev = plane->dev;
Matt Roper6beb8c232014-12-01 15:40:14 -080013162 struct intel_plane *intel_plane = to_intel_plane(plane);
13163 enum pipe pipe = intel_plane->pipe;
13164 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
13165 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->fb);
13166 unsigned frontbuffer_bits = 0;
13167 int ret = 0;
Matt Roper465c1202014-05-29 08:06:54 -070013168
Matt Roperea2c67b2014-12-23 10:41:52 -080013169 if (!obj)
Matt Roper465c1202014-05-29 08:06:54 -070013170 return 0;
13171
Matt Roper6beb8c232014-12-01 15:40:14 -080013172 switch (plane->type) {
13173 case DRM_PLANE_TYPE_PRIMARY:
13174 frontbuffer_bits = INTEL_FRONTBUFFER_PRIMARY(pipe);
13175 break;
13176 case DRM_PLANE_TYPE_CURSOR:
13177 frontbuffer_bits = INTEL_FRONTBUFFER_CURSOR(pipe);
13178 break;
13179 case DRM_PLANE_TYPE_OVERLAY:
13180 frontbuffer_bits = INTEL_FRONTBUFFER_SPRITE(pipe);
13181 break;
13182 }
Matt Roper465c1202014-05-29 08:06:54 -070013183
Matt Roper4c345742014-07-09 16:22:10 -070013184 mutex_lock(&dev->struct_mutex);
Matt Roper465c1202014-05-29 08:06:54 -070013185
Matt Roper6beb8c232014-12-01 15:40:14 -080013186 if (plane->type == DRM_PLANE_TYPE_CURSOR &&
13187 INTEL_INFO(dev)->cursor_needs_physical) {
13188 int align = IS_I830(dev) ? 16 * 1024 : 256;
13189 ret = i915_gem_object_attach_phys(obj, align);
13190 if (ret)
13191 DRM_DEBUG_KMS("failed to attach phys object\n");
13192 } else {
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000013193 ret = intel_pin_and_fence_fb_obj(plane, fb, new_state, NULL);
Matt Roper6beb8c232014-12-01 15:40:14 -080013194 }
13195
13196 if (ret == 0)
13197 i915_gem_track_fb(old_obj, obj, frontbuffer_bits);
13198
13199 mutex_unlock(&dev->struct_mutex);
13200
13201 return ret;
13202}
13203
Matt Roper38f3ce32014-12-02 07:45:25 -080013204/**
13205 * intel_cleanup_plane_fb - Cleans up an fb after plane use
13206 * @plane: drm plane to clean up for
13207 * @fb: old framebuffer that was on plane
13208 *
13209 * Cleans up a framebuffer that has just been removed from a plane.
13210 */
13211void
13212intel_cleanup_plane_fb(struct drm_plane *plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +000013213 struct drm_framebuffer *fb,
13214 const struct drm_plane_state *old_state)
Matt Roper38f3ce32014-12-02 07:45:25 -080013215{
13216 struct drm_device *dev = plane->dev;
13217 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
13218
13219 if (WARN_ON(!obj))
13220 return;
13221
13222 if (plane->type != DRM_PLANE_TYPE_CURSOR ||
13223 !INTEL_INFO(dev)->cursor_needs_physical) {
13224 mutex_lock(&dev->struct_mutex);
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000013225 intel_unpin_fb_obj(fb, old_state);
Matt Roper38f3ce32014-12-02 07:45:25 -080013226 mutex_unlock(&dev->struct_mutex);
13227 }
Matt Roper465c1202014-05-29 08:06:54 -070013228}
13229
Chandra Konduru6156a452015-04-27 13:48:39 -070013230int
13231skl_max_scale(struct intel_crtc *intel_crtc, struct intel_crtc_state *crtc_state)
13232{
13233 int max_scale;
13234 struct drm_device *dev;
13235 struct drm_i915_private *dev_priv;
13236 int crtc_clock, cdclk;
13237
13238 if (!intel_crtc || !crtc_state)
13239 return DRM_PLANE_HELPER_NO_SCALING;
13240
13241 dev = intel_crtc->base.dev;
13242 dev_priv = dev->dev_private;
13243 crtc_clock = crtc_state->base.adjusted_mode.crtc_clock;
13244 cdclk = dev_priv->display.get_display_clock_speed(dev);
13245
13246 if (!crtc_clock || !cdclk)
13247 return DRM_PLANE_HELPER_NO_SCALING;
13248
13249 /*
13250 * skl max scale is lower of:
13251 * close to 3 but not 3, -1 is for that purpose
13252 * or
13253 * cdclk/crtc_clock
13254 */
13255 max_scale = min((1 << 16) * 3 - 1, (1 << 8) * ((cdclk << 8) / crtc_clock));
13256
13257 return max_scale;
13258}
13259
Matt Roper465c1202014-05-29 08:06:54 -070013260static int
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013261intel_check_primary_plane(struct drm_plane *plane,
13262 struct intel_plane_state *state)
Matt Roper465c1202014-05-29 08:06:54 -070013263{
Matt Roper32b7eee2014-12-24 07:59:06 -080013264 struct drm_device *dev = plane->dev;
13265 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roper2b875c22014-12-01 15:40:13 -080013266 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080013267 struct intel_crtc *intel_crtc;
Chandra Konduru6156a452015-04-27 13:48:39 -070013268 struct intel_crtc_state *crtc_state;
Matt Roper2b875c22014-12-01 15:40:13 -080013269 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013270 struct drm_rect *dest = &state->dst;
13271 struct drm_rect *src = &state->src;
13272 const struct drm_rect *clip = &state->clip;
Sonika Jindald8106362015-04-10 14:37:28 +053013273 bool can_position = false;
Chandra Konduru6156a452015-04-27 13:48:39 -070013274 int max_scale = DRM_PLANE_HELPER_NO_SCALING;
13275 int min_scale = DRM_PLANE_HELPER_NO_SCALING;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013276 int ret;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013277
Matt Roperea2c67b2014-12-23 10:41:52 -080013278 crtc = crtc ? crtc : plane->crtc;
13279 intel_crtc = to_intel_crtc(crtc);
Chandra Konduru6156a452015-04-27 13:48:39 -070013280 crtc_state = state->base.state ?
13281 intel_atomic_get_crtc_state(state->base.state, intel_crtc) : NULL;
Matt Roperea2c67b2014-12-23 10:41:52 -080013282
Chandra Konduru6156a452015-04-27 13:48:39 -070013283 if (INTEL_INFO(dev)->gen >= 9) {
13284 min_scale = 1;
13285 max_scale = skl_max_scale(intel_crtc, crtc_state);
Sonika Jindald8106362015-04-10 14:37:28 +053013286 can_position = true;
Chandra Konduru6156a452015-04-27 13:48:39 -070013287 }
Sonika Jindald8106362015-04-10 14:37:28 +053013288
Matt Roperc59cb172014-12-01 15:40:16 -080013289 ret = drm_plane_helper_check_update(plane, crtc, fb,
13290 src, dest, clip,
Chandra Konduru6156a452015-04-27 13:48:39 -070013291 min_scale,
13292 max_scale,
Sonika Jindald8106362015-04-10 14:37:28 +053013293 can_position, true,
13294 &state->visible);
Matt Roperc59cb172014-12-01 15:40:16 -080013295 if (ret)
13296 return ret;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013297
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013298 if (intel_crtc->active) {
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030013299 struct intel_plane_state *old_state =
13300 to_intel_plane_state(plane->state);
13301
Matt Roper32b7eee2014-12-24 07:59:06 -080013302 intel_crtc->atomic.wait_for_flips = true;
13303
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013304 /*
13305 * FBC does not work on some platforms for rotated
13306 * planes, so disable it when rotation is not 0 and
13307 * update it when rotation is set back to 0.
13308 *
13309 * FIXME: This is redundant with the fbc update done in
13310 * the primary plane enable function except that that
13311 * one is done too late. We eventually need to unify
13312 * this.
13313 */
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030013314 if (state->visible &&
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013315 INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev) &&
Paulo Zanonie35fef22015-02-09 14:46:29 -020013316 dev_priv->fbc.crtc == intel_crtc &&
Matt Roper8e7d6882015-01-21 16:35:41 -080013317 state->base.rotation != BIT(DRM_ROTATE_0)) {
Matt Roper32b7eee2014-12-24 07:59:06 -080013318 intel_crtc->atomic.disable_fbc = true;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013319 }
13320
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030013321 if (state->visible && !old_state->visible) {
Matt Roper32b7eee2014-12-24 07:59:06 -080013322 /*
13323 * BDW signals flip done immediately if the plane
13324 * is disabled, even if the plane enable is already
13325 * armed to occur at the next vblank :(
13326 */
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030013327 if (IS_BROADWELL(dev))
Matt Roper32b7eee2014-12-24 07:59:06 -080013328 intel_crtc->atomic.wait_vblank = true;
13329 }
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013330
Matt Roper32b7eee2014-12-24 07:59:06 -080013331 intel_crtc->atomic.fb_bits |=
13332 INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
13333
13334 intel_crtc->atomic.update_fbc = true;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +000013335
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +000013336 if (intel_wm_need_update(plane, &state->base))
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +000013337 intel_crtc->atomic.update_wm = true;
Matt Roperc59cb172014-12-01 15:40:16 -080013338 }
13339
Chandra Konduru6156a452015-04-27 13:48:39 -070013340 if (INTEL_INFO(dev)->gen >= 9) {
13341 ret = skl_update_scaler_users(intel_crtc, crtc_state,
13342 to_intel_plane(plane), state, 0);
13343 if (ret)
13344 return ret;
13345 }
13346
Matt Roperc59cb172014-12-01 15:40:16 -080013347 return 0;
Matt Roper465c1202014-05-29 08:06:54 -070013348}
13349
Sonika Jindal48404c12014-08-22 14:06:04 +053013350static void
13351intel_commit_primary_plane(struct drm_plane *plane,
13352 struct intel_plane_state *state)
13353{
Matt Roper2b875c22014-12-01 15:40:13 -080013354 struct drm_crtc *crtc = state->base.crtc;
13355 struct drm_framebuffer *fb = state->base.fb;
13356 struct drm_device *dev = plane->dev;
Sonika Jindal48404c12014-08-22 14:06:04 +053013357 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperea2c67b2014-12-23 10:41:52 -080013358 struct intel_crtc *intel_crtc;
Sonika Jindalce54d852014-08-21 11:44:39 +053013359 struct drm_rect *src = &state->src;
Matt Ropercf4c7c12014-12-04 10:27:42 -080013360
Matt Roperea2c67b2014-12-23 10:41:52 -080013361 crtc = crtc ? crtc : plane->crtc;
13362 intel_crtc = to_intel_crtc(crtc);
13363
Matt Ropercf4c7c12014-12-04 10:27:42 -080013364 plane->fb = fb;
Sonika Jindalce54d852014-08-21 11:44:39 +053013365 crtc->x = src->x1 >> 16;
Matt Roper465c1202014-05-29 08:06:54 -070013366 crtc->y = src->y1 >> 16;
13367
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013368 if (intel_crtc->active) {
Maarten Lankhorst27321ae2015-04-21 17:12:52 +030013369 if (state->visible)
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013370 /* FIXME: kill this fastboot hack */
13371 intel_update_pipe_size(intel_crtc);
13372
Maarten Lankhorst27321ae2015-04-21 17:12:52 +030013373 dev_priv->display.update_primary_plane(crtc, plane->fb,
13374 crtc->x, crtc->y);
Matt Roper32b7eee2014-12-24 07:59:06 -080013375 }
13376}
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013377
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013378static void
13379intel_disable_primary_plane(struct drm_plane *plane,
13380 struct drm_crtc *crtc,
13381 bool force)
13382{
13383 struct drm_device *dev = plane->dev;
13384 struct drm_i915_private *dev_priv = dev->dev_private;
13385
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013386 dev_priv->display.update_primary_plane(crtc, NULL, 0, 0);
13387}
13388
Matt Roper32b7eee2014-12-24 07:59:06 -080013389static void intel_begin_crtc_commit(struct drm_crtc *crtc)
13390{
13391 struct drm_device *dev = crtc->dev;
13392 struct drm_i915_private *dev_priv = dev->dev_private;
13393 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roperea2c67b2014-12-23 10:41:52 -080013394 struct intel_plane *intel_plane;
13395 struct drm_plane *p;
13396 unsigned fb_bits = 0;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013397
Matt Roperea2c67b2014-12-23 10:41:52 -080013398 /* Track fb's for any planes being disabled */
13399 list_for_each_entry(p, &dev->mode_config.plane_list, head) {
13400 intel_plane = to_intel_plane(p);
13401
13402 if (intel_crtc->atomic.disabled_planes &
13403 (1 << drm_plane_index(p))) {
13404 switch (p->type) {
13405 case DRM_PLANE_TYPE_PRIMARY:
13406 fb_bits = INTEL_FRONTBUFFER_PRIMARY(intel_plane->pipe);
13407 break;
13408 case DRM_PLANE_TYPE_CURSOR:
13409 fb_bits = INTEL_FRONTBUFFER_CURSOR(intel_plane->pipe);
13410 break;
13411 case DRM_PLANE_TYPE_OVERLAY:
13412 fb_bits = INTEL_FRONTBUFFER_SPRITE(intel_plane->pipe);
13413 break;
13414 }
13415
13416 mutex_lock(&dev->struct_mutex);
13417 i915_gem_track_fb(intel_fb_obj(p->fb), NULL, fb_bits);
13418 mutex_unlock(&dev->struct_mutex);
13419 }
13420 }
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013421
Matt Roper32b7eee2014-12-24 07:59:06 -080013422 if (intel_crtc->atomic.wait_for_flips)
13423 intel_crtc_wait_for_pending_flips(crtc);
13424
13425 if (intel_crtc->atomic.disable_fbc)
13426 intel_fbc_disable(dev);
13427
13428 if (intel_crtc->atomic.pre_disable_primary)
13429 intel_pre_disable_primary(crtc);
13430
13431 if (intel_crtc->atomic.update_wm)
13432 intel_update_watermarks(crtc);
13433
13434 intel_runtime_pm_get(dev_priv);
Matt Roperc34c9ee2014-12-23 10:41:50 -080013435
13436 /* Perform vblank evasion around commit operation */
13437 if (intel_crtc->active)
13438 intel_crtc->atomic.evade =
13439 intel_pipe_update_start(intel_crtc,
13440 &intel_crtc->atomic.start_vbl_count);
Matt Roper32b7eee2014-12-24 07:59:06 -080013441}
13442
13443static void intel_finish_crtc_commit(struct drm_crtc *crtc)
13444{
13445 struct drm_device *dev = crtc->dev;
13446 struct drm_i915_private *dev_priv = dev->dev_private;
13447 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13448 struct drm_plane *p;
13449
Matt Roperc34c9ee2014-12-23 10:41:50 -080013450 if (intel_crtc->atomic.evade)
13451 intel_pipe_update_end(intel_crtc,
13452 intel_crtc->atomic.start_vbl_count);
13453
Matt Roper32b7eee2014-12-24 07:59:06 -080013454 intel_runtime_pm_put(dev_priv);
13455
13456 if (intel_crtc->atomic.wait_vblank)
13457 intel_wait_for_vblank(dev, intel_crtc->pipe);
13458
13459 intel_frontbuffer_flip(dev, intel_crtc->atomic.fb_bits);
13460
13461 if (intel_crtc->atomic.update_fbc) {
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013462 mutex_lock(&dev->struct_mutex);
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020013463 intel_fbc_update(dev);
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013464 mutex_unlock(&dev->struct_mutex);
13465 }
Matt Roper465c1202014-05-29 08:06:54 -070013466
Matt Roper32b7eee2014-12-24 07:59:06 -080013467 if (intel_crtc->atomic.post_enable_primary)
13468 intel_post_enable_primary(crtc);
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013469
Matt Roper32b7eee2014-12-24 07:59:06 -080013470 drm_for_each_legacy_plane(p, &dev->mode_config.plane_list)
13471 if (intel_crtc->atomic.update_sprite_watermarks & drm_plane_index(p))
13472 intel_update_sprite_watermarks(p, crtc, 0, 0, 0,
13473 false, false);
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013474
Matt Roper32b7eee2014-12-24 07:59:06 -080013475 memset(&intel_crtc->atomic, 0, sizeof(intel_crtc->atomic));
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013476}
13477
Matt Ropercf4c7c12014-12-04 10:27:42 -080013478/**
Matt Roper4a3b8762014-12-23 10:41:51 -080013479 * intel_plane_destroy - destroy a plane
13480 * @plane: plane to destroy
Matt Ropercf4c7c12014-12-04 10:27:42 -080013481 *
Matt Roper4a3b8762014-12-23 10:41:51 -080013482 * Common destruction function for all types of planes (primary, cursor,
13483 * sprite).
Matt Ropercf4c7c12014-12-04 10:27:42 -080013484 */
Matt Roper4a3b8762014-12-23 10:41:51 -080013485void intel_plane_destroy(struct drm_plane *plane)
Matt Roper465c1202014-05-29 08:06:54 -070013486{
13487 struct intel_plane *intel_plane = to_intel_plane(plane);
13488 drm_plane_cleanup(plane);
13489 kfree(intel_plane);
13490}
13491
Matt Roper65a3fea2015-01-21 16:35:42 -080013492const struct drm_plane_funcs intel_plane_funcs = {
Matt Roper70a101f2015-04-08 18:56:53 -070013493 .update_plane = drm_atomic_helper_update_plane,
13494 .disable_plane = drm_atomic_helper_disable_plane,
Matt Roper3d7d6512014-06-10 08:28:13 -070013495 .destroy = intel_plane_destroy,
Matt Roperc196e1d2015-01-21 16:35:48 -080013496 .set_property = drm_atomic_helper_plane_set_property,
Matt Ropera98b3432015-01-21 16:35:43 -080013497 .atomic_get_property = intel_plane_atomic_get_property,
13498 .atomic_set_property = intel_plane_atomic_set_property,
Matt Roperea2c67b2014-12-23 10:41:52 -080013499 .atomic_duplicate_state = intel_plane_duplicate_state,
13500 .atomic_destroy_state = intel_plane_destroy_state,
13501
Matt Roper465c1202014-05-29 08:06:54 -070013502};
13503
13504static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
13505 int pipe)
13506{
13507 struct intel_plane *primary;
Matt Roper8e7d6882015-01-21 16:35:41 -080013508 struct intel_plane_state *state;
Matt Roper465c1202014-05-29 08:06:54 -070013509 const uint32_t *intel_primary_formats;
13510 int num_formats;
13511
13512 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
13513 if (primary == NULL)
13514 return NULL;
13515
Matt Roper8e7d6882015-01-21 16:35:41 -080013516 state = intel_create_plane_state(&primary->base);
13517 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080013518 kfree(primary);
13519 return NULL;
13520 }
Matt Roper8e7d6882015-01-21 16:35:41 -080013521 primary->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080013522
Matt Roper465c1202014-05-29 08:06:54 -070013523 primary->can_scale = false;
13524 primary->max_downscale = 1;
Chandra Konduru6156a452015-04-27 13:48:39 -070013525 if (INTEL_INFO(dev)->gen >= 9) {
13526 primary->can_scale = true;
13527 }
Chandra Konduru549e2bf2015-04-07 15:28:38 -070013528 state->scaler_id = -1;
Matt Roper465c1202014-05-29 08:06:54 -070013529 primary->pipe = pipe;
13530 primary->plane = pipe;
Matt Roperc59cb172014-12-01 15:40:16 -080013531 primary->check_plane = intel_check_primary_plane;
13532 primary->commit_plane = intel_commit_primary_plane;
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013533 primary->disable_plane = intel_disable_primary_plane;
Chandra Konduru08e221f2015-04-07 15:28:37 -070013534 primary->ckey.flags = I915_SET_COLORKEY_NONE;
Matt Roper465c1202014-05-29 08:06:54 -070013535 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
13536 primary->plane = !pipe;
13537
13538 if (INTEL_INFO(dev)->gen <= 3) {
13539 intel_primary_formats = intel_primary_formats_gen2;
13540 num_formats = ARRAY_SIZE(intel_primary_formats_gen2);
13541 } else {
13542 intel_primary_formats = intel_primary_formats_gen4;
13543 num_formats = ARRAY_SIZE(intel_primary_formats_gen4);
13544 }
13545
13546 drm_universal_plane_init(dev, &primary->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080013547 &intel_plane_funcs,
Matt Roper465c1202014-05-29 08:06:54 -070013548 intel_primary_formats, num_formats,
13549 DRM_PLANE_TYPE_PRIMARY);
Sonika Jindal48404c12014-08-22 14:06:04 +053013550
Sonika Jindal3b7a5112015-04-10 14:37:29 +053013551 if (INTEL_INFO(dev)->gen >= 4)
13552 intel_create_rotation_property(dev, primary);
Sonika Jindal48404c12014-08-22 14:06:04 +053013553
Matt Roperea2c67b2014-12-23 10:41:52 -080013554 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
13555
Matt Roper465c1202014-05-29 08:06:54 -070013556 return &primary->base;
13557}
13558
Sonika Jindal3b7a5112015-04-10 14:37:29 +053013559void intel_create_rotation_property(struct drm_device *dev, struct intel_plane *plane)
13560{
13561 if (!dev->mode_config.rotation_property) {
13562 unsigned long flags = BIT(DRM_ROTATE_0) |
13563 BIT(DRM_ROTATE_180);
13564
13565 if (INTEL_INFO(dev)->gen >= 9)
13566 flags |= BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270);
13567
13568 dev->mode_config.rotation_property =
13569 drm_mode_create_rotation_property(dev, flags);
13570 }
13571 if (dev->mode_config.rotation_property)
13572 drm_object_attach_property(&plane->base.base,
13573 dev->mode_config.rotation_property,
13574 plane->base.state->rotation);
13575}
13576
Matt Roper3d7d6512014-06-10 08:28:13 -070013577static int
Gustavo Padovan852e7872014-09-05 17:22:31 -030013578intel_check_cursor_plane(struct drm_plane *plane,
13579 struct intel_plane_state *state)
Matt Roper3d7d6512014-06-10 08:28:13 -070013580{
Matt Roper2b875c22014-12-01 15:40:13 -080013581 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080013582 struct drm_device *dev = plane->dev;
Matt Roper2b875c22014-12-01 15:40:13 -080013583 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan852e7872014-09-05 17:22:31 -030013584 struct drm_rect *dest = &state->dst;
13585 struct drm_rect *src = &state->src;
13586 const struct drm_rect *clip = &state->clip;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013587 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Matt Roperea2c67b2014-12-23 10:41:52 -080013588 struct intel_crtc *intel_crtc;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013589 unsigned stride;
13590 int ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030013591
Matt Roperea2c67b2014-12-23 10:41:52 -080013592 crtc = crtc ? crtc : plane->crtc;
13593 intel_crtc = to_intel_crtc(crtc);
13594
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013595 ret = drm_plane_helper_check_update(plane, crtc, fb,
Gustavo Padovan852e7872014-09-05 17:22:31 -030013596 src, dest, clip,
13597 DRM_PLANE_HELPER_NO_SCALING,
13598 DRM_PLANE_HELPER_NO_SCALING,
13599 true, true, &state->visible);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013600 if (ret)
13601 return ret;
13602
13603
13604 /* if we want to turn off the cursor ignore width and height */
13605 if (!obj)
Matt Roper32b7eee2014-12-24 07:59:06 -080013606 goto finish;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013607
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013608 /* Check for which cursor types we support */
Matt Roperea2c67b2014-12-23 10:41:52 -080013609 if (!cursor_size_ok(dev, state->base.crtc_w, state->base.crtc_h)) {
13610 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
13611 state->base.crtc_w, state->base.crtc_h);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013612 return -EINVAL;
13613 }
13614
Matt Roperea2c67b2014-12-23 10:41:52 -080013615 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
13616 if (obj->base.size < stride * state->base.crtc_h) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013617 DRM_DEBUG_KMS("buffer is too small\n");
13618 return -ENOMEM;
13619 }
13620
Ville Syrjälä3a656b52015-03-09 21:08:37 +020013621 if (fb->modifier[0] != DRM_FORMAT_MOD_NONE) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013622 DRM_DEBUG_KMS("cursor cannot be tiled\n");
13623 ret = -EINVAL;
13624 }
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013625
Matt Roper32b7eee2014-12-24 07:59:06 -080013626finish:
13627 if (intel_crtc->active) {
Ville Syrjälä3749f462015-03-10 13:15:22 +020013628 if (plane->state->crtc_w != state->base.crtc_w)
Matt Roper32b7eee2014-12-24 07:59:06 -080013629 intel_crtc->atomic.update_wm = true;
13630
13631 intel_crtc->atomic.fb_bits |=
13632 INTEL_FRONTBUFFER_CURSOR(intel_crtc->pipe);
13633 }
13634
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013635 return ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030013636}
13637
Matt Roperf4a2cf22014-12-01 15:40:12 -080013638static void
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013639intel_disable_cursor_plane(struct drm_plane *plane,
13640 struct drm_crtc *crtc,
13641 bool force)
13642{
13643 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13644
13645 if (!force) {
13646 plane->fb = NULL;
13647 intel_crtc->cursor_bo = NULL;
13648 intel_crtc->cursor_addr = 0;
13649 }
13650
13651 intel_crtc_update_cursor(crtc, false);
13652}
13653
13654static void
Gustavo Padovan852e7872014-09-05 17:22:31 -030013655intel_commit_cursor_plane(struct drm_plane *plane,
13656 struct intel_plane_state *state)
13657{
Matt Roper2b875c22014-12-01 15:40:13 -080013658 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080013659 struct drm_device *dev = plane->dev;
13660 struct intel_crtc *intel_crtc;
Matt Roper2b875c22014-12-01 15:40:13 -080013661 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
Gustavo Padovana912f122014-12-01 15:40:10 -080013662 uint32_t addr;
Matt Roper3d7d6512014-06-10 08:28:13 -070013663
Matt Roperea2c67b2014-12-23 10:41:52 -080013664 crtc = crtc ? crtc : plane->crtc;
13665 intel_crtc = to_intel_crtc(crtc);
Sonika Jindala919db92014-10-23 07:41:33 -070013666
Matt Roperea2c67b2014-12-23 10:41:52 -080013667 plane->fb = state->base.fb;
13668 crtc->cursor_x = state->base.crtc_x;
13669 crtc->cursor_y = state->base.crtc_y;
13670
Gustavo Padovana912f122014-12-01 15:40:10 -080013671 if (intel_crtc->cursor_bo == obj)
13672 goto update;
13673
Matt Roperf4a2cf22014-12-01 15:40:12 -080013674 if (!obj)
Gustavo Padovana912f122014-12-01 15:40:10 -080013675 addr = 0;
Matt Roperf4a2cf22014-12-01 15:40:12 -080013676 else if (!INTEL_INFO(dev)->cursor_needs_physical)
Gustavo Padovana912f122014-12-01 15:40:10 -080013677 addr = i915_gem_obj_ggtt_offset(obj);
Matt Roperf4a2cf22014-12-01 15:40:12 -080013678 else
Gustavo Padovana912f122014-12-01 15:40:10 -080013679 addr = obj->phys_handle->busaddr;
Gustavo Padovana912f122014-12-01 15:40:10 -080013680
Gustavo Padovana912f122014-12-01 15:40:10 -080013681 intel_crtc->cursor_addr = addr;
13682 intel_crtc->cursor_bo = obj;
13683update:
Gustavo Padovana912f122014-12-01 15:40:10 -080013684
Matt Roper32b7eee2014-12-24 07:59:06 -080013685 if (intel_crtc->active)
Gustavo Padovan852e7872014-09-05 17:22:31 -030013686 intel_crtc_update_cursor(crtc, state->visible);
Matt Roper3d7d6512014-06-10 08:28:13 -070013687}
Gustavo Padovan852e7872014-09-05 17:22:31 -030013688
Matt Roper3d7d6512014-06-10 08:28:13 -070013689static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
13690 int pipe)
13691{
13692 struct intel_plane *cursor;
Matt Roper8e7d6882015-01-21 16:35:41 -080013693 struct intel_plane_state *state;
Matt Roper3d7d6512014-06-10 08:28:13 -070013694
13695 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
13696 if (cursor == NULL)
13697 return NULL;
13698
Matt Roper8e7d6882015-01-21 16:35:41 -080013699 state = intel_create_plane_state(&cursor->base);
13700 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080013701 kfree(cursor);
13702 return NULL;
13703 }
Matt Roper8e7d6882015-01-21 16:35:41 -080013704 cursor->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080013705
Matt Roper3d7d6512014-06-10 08:28:13 -070013706 cursor->can_scale = false;
13707 cursor->max_downscale = 1;
13708 cursor->pipe = pipe;
13709 cursor->plane = pipe;
Chandra Konduru549e2bf2015-04-07 15:28:38 -070013710 state->scaler_id = -1;
Matt Roperc59cb172014-12-01 15:40:16 -080013711 cursor->check_plane = intel_check_cursor_plane;
13712 cursor->commit_plane = intel_commit_cursor_plane;
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013713 cursor->disable_plane = intel_disable_cursor_plane;
Matt Roper3d7d6512014-06-10 08:28:13 -070013714
13715 drm_universal_plane_init(dev, &cursor->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080013716 &intel_plane_funcs,
Matt Roper3d7d6512014-06-10 08:28:13 -070013717 intel_cursor_formats,
13718 ARRAY_SIZE(intel_cursor_formats),
13719 DRM_PLANE_TYPE_CURSOR);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070013720
13721 if (INTEL_INFO(dev)->gen >= 4) {
13722 if (!dev->mode_config.rotation_property)
13723 dev->mode_config.rotation_property =
13724 drm_mode_create_rotation_property(dev,
13725 BIT(DRM_ROTATE_0) |
13726 BIT(DRM_ROTATE_180));
13727 if (dev->mode_config.rotation_property)
13728 drm_object_attach_property(&cursor->base.base,
13729 dev->mode_config.rotation_property,
Matt Roper8e7d6882015-01-21 16:35:41 -080013730 state->base.rotation);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070013731 }
13732
Matt Roperea2c67b2014-12-23 10:41:52 -080013733 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
13734
Matt Roper3d7d6512014-06-10 08:28:13 -070013735 return &cursor->base;
13736}
13737
Chandra Konduru549e2bf2015-04-07 15:28:38 -070013738static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
13739 struct intel_crtc_state *crtc_state)
13740{
13741 int i;
13742 struct intel_scaler *intel_scaler;
13743 struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state;
13744
13745 for (i = 0; i < intel_crtc->num_scalers; i++) {
13746 intel_scaler = &scaler_state->scalers[i];
13747 intel_scaler->in_use = 0;
13748 intel_scaler->id = i;
13749
13750 intel_scaler->mode = PS_SCALER_MODE_DYN;
13751 }
13752
13753 scaler_state->scaler_id = -1;
13754}
13755
Hannes Ederb358d0a2008-12-18 21:18:47 +010013756static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -080013757{
Jani Nikulafbee40d2014-03-31 14:27:18 +030013758 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080013759 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020013760 struct intel_crtc_state *crtc_state = NULL;
Matt Roper3d7d6512014-06-10 08:28:13 -070013761 struct drm_plane *primary = NULL;
13762 struct drm_plane *cursor = NULL;
Matt Roper465c1202014-05-29 08:06:54 -070013763 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080013764
Daniel Vetter955382f2013-09-19 14:05:45 +020013765 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -080013766 if (intel_crtc == NULL)
13767 return;
13768
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020013769 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
13770 if (!crtc_state)
13771 goto fail;
13772 intel_crtc_set_state(intel_crtc, crtc_state);
Matt Roper07878242015-02-25 11:43:26 -080013773 crtc_state->base.crtc = &intel_crtc->base;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020013774
Chandra Konduru549e2bf2015-04-07 15:28:38 -070013775 /* initialize shared scalers */
13776 if (INTEL_INFO(dev)->gen >= 9) {
13777 if (pipe == PIPE_C)
13778 intel_crtc->num_scalers = 1;
13779 else
13780 intel_crtc->num_scalers = SKL_NUM_SCALERS;
13781
13782 skl_init_scalers(dev, intel_crtc, crtc_state);
13783 }
13784
Matt Roper465c1202014-05-29 08:06:54 -070013785 primary = intel_primary_plane_create(dev, pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070013786 if (!primary)
13787 goto fail;
13788
13789 cursor = intel_cursor_plane_create(dev, pipe);
13790 if (!cursor)
13791 goto fail;
13792
Matt Roper465c1202014-05-29 08:06:54 -070013793 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
Matt Roper3d7d6512014-06-10 08:28:13 -070013794 cursor, &intel_crtc_funcs);
13795 if (ret)
13796 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080013797
13798 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -080013799 for (i = 0; i < 256; i++) {
13800 intel_crtc->lut_r[i] = i;
13801 intel_crtc->lut_g[i] = i;
13802 intel_crtc->lut_b[i] = i;
13803 }
13804
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020013805 /*
13806 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
Daniel Vetter8c0f92e2014-06-16 02:08:26 +020013807 * is hooked to pipe B. Hence we want plane A feeding pipe B.
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020013808 */
Jesse Barnes80824002009-09-10 15:28:06 -070013809 intel_crtc->pipe = pipe;
13810 intel_crtc->plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +010013811 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
Zhao Yakui28c97732009-10-09 11:39:41 +080013812 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +010013813 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -070013814 }
13815
Chris Wilson4b0e3332014-05-30 16:35:26 +030013816 intel_crtc->cursor_base = ~0;
13817 intel_crtc->cursor_cntl = ~0;
Ville Syrjälädc41c152014-08-13 11:57:05 +030013818 intel_crtc->cursor_size = ~0;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030013819
Jesse Barnes22fd0fa2009-12-02 13:42:53 -080013820 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
13821 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
13822 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
13823 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
13824
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020013825 INIT_WORK(&intel_crtc->mmio_flip.work, intel_mmio_flip_work_func);
13826
Jesse Barnes79e53942008-11-07 14:24:08 -080013827 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Daniel Vetter87b6b102014-05-15 15:33:46 +020013828
13829 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070013830 return;
13831
13832fail:
13833 if (primary)
13834 drm_plane_cleanup(primary);
13835 if (cursor)
13836 drm_plane_cleanup(cursor);
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020013837 kfree(crtc_state);
Matt Roper3d7d6512014-06-10 08:28:13 -070013838 kfree(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -080013839}
13840
Jesse Barnes752aa882013-10-31 18:55:49 +020013841enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
13842{
13843 struct drm_encoder *encoder = connector->base.encoder;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020013844 struct drm_device *dev = connector->base.dev;
Jesse Barnes752aa882013-10-31 18:55:49 +020013845
Rob Clark51fd3712013-11-19 12:10:12 -050013846 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Jesse Barnes752aa882013-10-31 18:55:49 +020013847
Ville Syrjäläd3babd32014-11-07 11:16:01 +020013848 if (!encoder || WARN_ON(!encoder->crtc))
Jesse Barnes752aa882013-10-31 18:55:49 +020013849 return INVALID_PIPE;
13850
13851 return to_intel_crtc(encoder->crtc)->pipe;
13852}
13853
Carl Worth08d7b3d2009-04-29 14:43:54 -070013854int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +000013855 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -070013856{
Carl Worth08d7b3d2009-04-29 14:43:54 -070013857 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Rob Clark7707e652014-07-17 23:30:04 -040013858 struct drm_crtc *drmmode_crtc;
Daniel Vetterc05422d2009-08-11 16:05:30 +020013859 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -070013860
Rob Clark7707e652014-07-17 23:30:04 -040013861 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
Carl Worth08d7b3d2009-04-29 14:43:54 -070013862
Rob Clark7707e652014-07-17 23:30:04 -040013863 if (!drmmode_crtc) {
Carl Worth08d7b3d2009-04-29 14:43:54 -070013864 DRM_ERROR("no such CRTC id\n");
Ville Syrjälä3f2c2052013-10-17 13:35:03 +030013865 return -ENOENT;
Carl Worth08d7b3d2009-04-29 14:43:54 -070013866 }
13867
Rob Clark7707e652014-07-17 23:30:04 -040013868 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetterc05422d2009-08-11 16:05:30 +020013869 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -070013870
Daniel Vetterc05422d2009-08-11 16:05:30 +020013871 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -070013872}
13873
Daniel Vetter66a92782012-07-12 20:08:18 +020013874static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080013875{
Daniel Vetter66a92782012-07-12 20:08:18 +020013876 struct drm_device *dev = encoder->base.dev;
13877 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080013878 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080013879 int entry = 0;
13880
Damien Lespiaub2784e12014-08-05 11:29:37 +010013881 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020013882 if (encoders_cloneable(encoder, source_encoder))
Daniel Vetter66a92782012-07-12 20:08:18 +020013883 index_mask |= (1 << entry);
13884
Jesse Barnes79e53942008-11-07 14:24:08 -080013885 entry++;
13886 }
Chris Wilson4ef69c72010-09-09 15:14:28 +010013887
Jesse Barnes79e53942008-11-07 14:24:08 -080013888 return index_mask;
13889}
13890
Chris Wilson4d302442010-12-14 19:21:29 +000013891static bool has_edp_a(struct drm_device *dev)
13892{
13893 struct drm_i915_private *dev_priv = dev->dev_private;
13894
13895 if (!IS_MOBILE(dev))
13896 return false;
13897
13898 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
13899 return false;
13900
Damien Lespiaue3589902014-02-07 19:12:50 +000013901 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
Chris Wilson4d302442010-12-14 19:21:29 +000013902 return false;
13903
13904 return true;
13905}
13906
Jesse Barnes84b4e042014-06-25 08:24:29 -070013907static bool intel_crt_present(struct drm_device *dev)
13908{
13909 struct drm_i915_private *dev_priv = dev->dev_private;
13910
Damien Lespiau884497e2013-12-03 13:56:23 +000013911 if (INTEL_INFO(dev)->gen >= 9)
13912 return false;
13913
Damien Lespiaucf404ce2014-10-01 20:04:15 +010013914 if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
Jesse Barnes84b4e042014-06-25 08:24:29 -070013915 return false;
13916
13917 if (IS_CHERRYVIEW(dev))
13918 return false;
13919
13920 if (IS_VALLEYVIEW(dev) && !dev_priv->vbt.int_crt_support)
13921 return false;
13922
13923 return true;
13924}
13925
Jesse Barnes79e53942008-11-07 14:24:08 -080013926static void intel_setup_outputs(struct drm_device *dev)
13927{
Eric Anholt725e30a2009-01-22 13:01:02 -080013928 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +010013929 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -040013930 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -080013931
Daniel Vetterc9093352013-06-06 22:22:47 +020013932 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080013933
Jesse Barnes84b4e042014-06-25 08:24:29 -070013934 if (intel_crt_present(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -020013935 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040013936
Vandana Kannanc776eb22014-08-19 12:05:01 +053013937 if (IS_BROXTON(dev)) {
13938 /*
13939 * FIXME: Broxton doesn't support port detection via the
13940 * DDI_BUF_CTL_A or SFUSE_STRAP registers, find another way to
13941 * detect the ports.
13942 */
13943 intel_ddi_init(dev, PORT_A);
13944 intel_ddi_init(dev, PORT_B);
13945 intel_ddi_init(dev, PORT_C);
13946 } else if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030013947 int found;
13948
Jesse Barnesde31fac2015-03-06 15:53:32 -080013949 /*
13950 * Haswell uses DDI functions to detect digital outputs.
13951 * On SKL pre-D0 the strap isn't connected, so we assume
13952 * it's there.
13953 */
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030013954 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
Jesse Barnesde31fac2015-03-06 15:53:32 -080013955 /* WaIgnoreDDIAStrap: skl */
13956 if (found ||
13957 (IS_SKYLAKE(dev) && INTEL_REVID(dev) < SKL_REVID_D0))
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030013958 intel_ddi_init(dev, PORT_A);
13959
13960 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
13961 * register */
13962 found = I915_READ(SFUSE_STRAP);
13963
13964 if (found & SFUSE_STRAP_DDIB_DETECTED)
13965 intel_ddi_init(dev, PORT_B);
13966 if (found & SFUSE_STRAP_DDIC_DETECTED)
13967 intel_ddi_init(dev, PORT_C);
13968 if (found & SFUSE_STRAP_DDID_DETECTED)
13969 intel_ddi_init(dev, PORT_D);
13970 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -040013971 int found;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020013972 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
Daniel Vetter270b3042012-10-27 15:52:05 +020013973
13974 if (has_edp_a(dev))
13975 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040013976
Paulo Zanonidc0fa712013-02-19 16:21:46 -030013977 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +080013978 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +010013979 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080013980 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -030013981 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080013982 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030013983 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080013984 }
13985
Paulo Zanonidc0fa712013-02-19 16:21:46 -030013986 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030013987 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080013988
Paulo Zanonidc0fa712013-02-19 16:21:46 -030013989 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030013990 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080013991
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080013992 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030013993 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080013994
Daniel Vetter270b3042012-10-27 15:52:05 +020013995 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030013996 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -070013997 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030013998 /*
13999 * The DP_DETECTED bit is the latched state of the DDC
14000 * SDA pin at boot. However since eDP doesn't require DDC
14001 * (no way to plug in a DP->HDMI dongle) the DDC pins for
14002 * eDP ports may have been muxed to an alternate function.
14003 * Thus we can't rely on the DP_DETECTED bit alone to detect
14004 * eDP ports. Consult the VBT as well as DP_DETECTED to
14005 * detect eDP ports.
14006 */
Ville Syrjäläd2182a62015-01-09 14:21:14 +020014007 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED &&
14008 !intel_dp_is_edp(dev, PORT_B))
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030014009 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
14010 PORT_B);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014011 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED ||
14012 intel_dp_is_edp(dev, PORT_B))
14013 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030014014
Ville Syrjäläd2182a62015-01-09 14:21:14 +020014015 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED &&
14016 !intel_dp_is_edp(dev, PORT_C))
Jesse Barnes6f6005a2013-08-09 09:34:35 -070014017 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
14018 PORT_C);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014019 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED ||
14020 intel_dp_is_edp(dev, PORT_C))
14021 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
Gajanan Bhat19c03922012-09-27 19:13:07 +053014022
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030014023 if (IS_CHERRYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014024 if (I915_READ(VLV_DISPLAY_BASE + CHV_HDMID) & SDVO_DETECTED)
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030014025 intel_hdmi_init(dev, VLV_DISPLAY_BASE + CHV_HDMID,
14026 PORT_D);
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014027 /* eDP not supported on port D, so don't check VBT */
14028 if (I915_READ(VLV_DISPLAY_BASE + DP_D) & DP_DETECTED)
14029 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_D, PORT_D);
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030014030 }
14031
Jani Nikula3cfca972013-08-27 15:12:26 +030014032 intel_dsi_init(dev);
Zhenyu Wang103a1962009-11-27 11:44:36 +080014033 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +080014034 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -080014035
Paulo Zanonie2debe92013-02-18 19:00:27 -030014036 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014037 DRM_DEBUG_KMS("probing SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030014038 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014039 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
14040 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030014041 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014042 }
Ma Ling27185ae2009-08-24 13:50:23 +080014043
Imre Deake7281ea2013-05-08 13:14:08 +030014044 if (!found && SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014045 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -080014046 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -040014047
14048 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -040014049
Paulo Zanonie2debe92013-02-18 19:00:27 -030014050 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014051 DRM_DEBUG_KMS("probing SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030014052 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014053 }
Ma Ling27185ae2009-08-24 13:50:23 +080014054
Paulo Zanonie2debe92013-02-18 19:00:27 -030014055 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +080014056
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014057 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
14058 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030014059 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014060 }
Imre Deake7281ea2013-05-08 13:14:08 +030014061 if (SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014062 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -080014063 }
Ma Ling27185ae2009-08-24 13:50:23 +080014064
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014065 if (SUPPORTS_INTEGRATED_DP(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +030014066 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014067 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -070014068 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080014069 intel_dvo_init(dev);
14070
Zhenyu Wang103a1962009-11-27 11:44:36 +080014071 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080014072 intel_tv_init(dev);
14073
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -080014074 intel_psr_init(dev);
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -070014075
Damien Lespiaub2784e12014-08-05 11:29:37 +010014076 for_each_intel_encoder(dev, encoder) {
Chris Wilson4ef69c72010-09-09 15:14:28 +010014077 encoder->base.possible_crtcs = encoder->crtc_mask;
14078 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +020014079 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -080014080 }
Chris Wilson47356eb2011-01-11 17:06:04 +000014081
Paulo Zanonidde86e22012-12-01 12:04:25 -020014082 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +020014083
14084 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080014085}
14086
14087static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
14088{
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030014089 struct drm_device *dev = fb->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -080014090 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -080014091
Daniel Vetteref2d6332014-02-10 18:00:38 +010014092 drm_framebuffer_cleanup(fb);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030014093 mutex_lock(&dev->struct_mutex);
Daniel Vetteref2d6332014-02-10 18:00:38 +010014094 WARN_ON(!intel_fb->obj->framebuffer_references--);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030014095 drm_gem_object_unreference(&intel_fb->obj->base);
14096 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080014097 kfree(intel_fb);
14098}
14099
14100static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +000014101 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -080014102 unsigned int *handle)
14103{
14104 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +000014105 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080014106
Chris Wilson05394f32010-11-08 19:18:58 +000014107 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -080014108}
14109
14110static const struct drm_framebuffer_funcs intel_fb_funcs = {
14111 .destroy = intel_user_framebuffer_destroy,
14112 .create_handle = intel_user_framebuffer_create_handle,
14113};
14114
Damien Lespiaub3218032015-02-27 11:15:18 +000014115static
14116u32 intel_fb_pitch_limit(struct drm_device *dev, uint64_t fb_modifier,
14117 uint32_t pixel_format)
14118{
14119 u32 gen = INTEL_INFO(dev)->gen;
14120
14121 if (gen >= 9) {
14122 /* "The stride in bytes must not exceed the of the size of 8K
14123 * pixels and 32K bytes."
14124 */
14125 return min(8192*drm_format_plane_cpp(pixel_format, 0), 32768);
14126 } else if (gen >= 5 && !IS_VALLEYVIEW(dev)) {
14127 return 32*1024;
14128 } else if (gen >= 4) {
14129 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
14130 return 16*1024;
14131 else
14132 return 32*1024;
14133 } else if (gen >= 3) {
14134 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
14135 return 8*1024;
14136 else
14137 return 16*1024;
14138 } else {
14139 /* XXX DSPC is limited to 4k tiled */
14140 return 8*1024;
14141 }
14142}
14143
Daniel Vetterb5ea6422014-03-02 21:18:00 +010014144static int intel_framebuffer_init(struct drm_device *dev,
14145 struct intel_framebuffer *intel_fb,
14146 struct drm_mode_fb_cmd2 *mode_cmd,
14147 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -080014148{
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +000014149 unsigned int aligned_height;
Jesse Barnes79e53942008-11-07 14:24:08 -080014150 int ret;
Damien Lespiaub3218032015-02-27 11:15:18 +000014151 u32 pitch_limit, stride_alignment;
Jesse Barnes79e53942008-11-07 14:24:08 -080014152
Daniel Vetterdd4916c2013-10-09 21:23:51 +020014153 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
14154
Daniel Vetter2a80ead2015-02-10 17:16:06 +000014155 if (mode_cmd->flags & DRM_MODE_FB_MODIFIERS) {
14156 /* Enforce that fb modifier and tiling mode match, but only for
14157 * X-tiled. This is needed for FBC. */
14158 if (!!(obj->tiling_mode == I915_TILING_X) !=
14159 !!(mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED)) {
14160 DRM_DEBUG("tiling_mode doesn't match fb modifier\n");
14161 return -EINVAL;
14162 }
14163 } else {
14164 if (obj->tiling_mode == I915_TILING_X)
14165 mode_cmd->modifier[0] = I915_FORMAT_MOD_X_TILED;
14166 else if (obj->tiling_mode == I915_TILING_Y) {
14167 DRM_DEBUG("No Y tiling for legacy addfb\n");
14168 return -EINVAL;
14169 }
14170 }
14171
Tvrtko Ursulin9a8f0a12015-02-27 11:15:24 +000014172 /* Passed in modifier sanity checking. */
14173 switch (mode_cmd->modifier[0]) {
14174 case I915_FORMAT_MOD_Y_TILED:
14175 case I915_FORMAT_MOD_Yf_TILED:
14176 if (INTEL_INFO(dev)->gen < 9) {
14177 DRM_DEBUG("Unsupported tiling 0x%llx!\n",
14178 mode_cmd->modifier[0]);
14179 return -EINVAL;
14180 }
14181 case DRM_FORMAT_MOD_NONE:
14182 case I915_FORMAT_MOD_X_TILED:
14183 break;
14184 default:
Jesse Barnesc0f40422015-03-23 12:43:50 -070014185 DRM_DEBUG("Unsupported fb modifier 0x%llx!\n",
14186 mode_cmd->modifier[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +010014187 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014188 }
Chris Wilson57cd6502010-08-08 12:34:44 +010014189
Damien Lespiaub3218032015-02-27 11:15:18 +000014190 stride_alignment = intel_fb_stride_alignment(dev, mode_cmd->modifier[0],
14191 mode_cmd->pixel_format);
14192 if (mode_cmd->pitches[0] & (stride_alignment - 1)) {
14193 DRM_DEBUG("pitch (%d) must be at least %u byte aligned\n",
14194 mode_cmd->pitches[0], stride_alignment);
Chris Wilson57cd6502010-08-08 12:34:44 +010014195 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014196 }
Chris Wilson57cd6502010-08-08 12:34:44 +010014197
Damien Lespiaub3218032015-02-27 11:15:18 +000014198 pitch_limit = intel_fb_pitch_limit(dev, mode_cmd->modifier[0],
14199 mode_cmd->pixel_format);
Chris Wilsona35cdaa2013-06-25 17:26:45 +010014200 if (mode_cmd->pitches[0] > pitch_limit) {
Damien Lespiaub3218032015-02-27 11:15:18 +000014201 DRM_DEBUG("%s pitch (%u) must be at less than %d\n",
14202 mode_cmd->modifier[0] != DRM_FORMAT_MOD_NONE ?
Daniel Vetter2a80ead2015-02-10 17:16:06 +000014203 "tiled" : "linear",
Chris Wilsona35cdaa2013-06-25 17:26:45 +010014204 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014205 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014206 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014207
Daniel Vetter2a80ead2015-02-10 17:16:06 +000014208 if (mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014209 mode_cmd->pitches[0] != obj->stride) {
14210 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
14211 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014212 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014213 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014214
Ville Syrjälä57779d02012-10-31 17:50:14 +020014215 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080014216 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020014217 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020014218 case DRM_FORMAT_RGB565:
14219 case DRM_FORMAT_XRGB8888:
14220 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020014221 break;
14222 case DRM_FORMAT_XRGB1555:
14223 case DRM_FORMAT_ARGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014224 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014225 DRM_DEBUG("unsupported pixel format: %s\n",
14226 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020014227 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014228 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020014229 break;
14230 case DRM_FORMAT_XBGR8888:
14231 case DRM_FORMAT_ABGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020014232 case DRM_FORMAT_XRGB2101010:
14233 case DRM_FORMAT_ARGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020014234 case DRM_FORMAT_XBGR2101010:
14235 case DRM_FORMAT_ABGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014236 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014237 DRM_DEBUG("unsupported pixel format: %s\n",
14238 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020014239 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014240 }
Jesse Barnesb5626742011-06-24 12:19:27 -070014241 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020014242 case DRM_FORMAT_YUYV:
14243 case DRM_FORMAT_UYVY:
14244 case DRM_FORMAT_YVYU:
14245 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014246 if (INTEL_INFO(dev)->gen < 5) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014247 DRM_DEBUG("unsupported pixel format: %s\n",
14248 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020014249 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014250 }
Chris Wilson57cd6502010-08-08 12:34:44 +010014251 break;
14252 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014253 DRM_DEBUG("unsupported pixel format: %s\n",
14254 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010014255 return -EINVAL;
14256 }
14257
Ville Syrjälä90f9a332012-10-31 17:50:19 +020014258 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
14259 if (mode_cmd->offsets[0] != 0)
14260 return -EINVAL;
14261
Damien Lespiauec2c9812015-01-20 12:51:45 +000014262 aligned_height = intel_fb_align_height(dev, mode_cmd->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +000014263 mode_cmd->pixel_format,
14264 mode_cmd->modifier[0]);
Daniel Vetter53155c02013-10-09 21:55:33 +020014265 /* FIXME drm helper for size checks (especially planar formats)? */
14266 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
14267 return -EINVAL;
14268
Daniel Vetterc7d73f62012-12-13 23:38:38 +010014269 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
14270 intel_fb->obj = obj;
Daniel Vetter80075d42013-10-09 21:23:52 +020014271 intel_fb->obj->framebuffer_references++;
Daniel Vetterc7d73f62012-12-13 23:38:38 +010014272
Jesse Barnes79e53942008-11-07 14:24:08 -080014273 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
14274 if (ret) {
14275 DRM_ERROR("framebuffer init failed %d\n", ret);
14276 return ret;
14277 }
14278
Jesse Barnes79e53942008-11-07 14:24:08 -080014279 return 0;
14280}
14281
Jesse Barnes79e53942008-11-07 14:24:08 -080014282static struct drm_framebuffer *
14283intel_user_framebuffer_create(struct drm_device *dev,
14284 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -080014285 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080014286{
Chris Wilson05394f32010-11-08 19:18:58 +000014287 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080014288
Jesse Barnes308e5bc2011-11-14 14:51:28 -080014289 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
14290 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +000014291 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010014292 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080014293
Chris Wilsond2dff872011-04-19 08:36:26 +010014294 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -080014295}
14296
Daniel Vetter4520f532013-10-09 09:18:51 +020014297#ifndef CONFIG_DRM_I915_FBDEV
Daniel Vetter0632fef2013-10-08 17:44:49 +020014298static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
Daniel Vetter4520f532013-10-09 09:18:51 +020014299{
14300}
14301#endif
14302
Jesse Barnes79e53942008-11-07 14:24:08 -080014303static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080014304 .fb_create = intel_user_framebuffer_create,
Daniel Vetter0632fef2013-10-08 17:44:49 +020014305 .output_poll_changed = intel_fbdev_output_poll_changed,
Matt Roper5ee67f12015-01-21 16:35:44 -080014306 .atomic_check = intel_atomic_check,
14307 .atomic_commit = intel_atomic_commit,
Jesse Barnes79e53942008-11-07 14:24:08 -080014308};
14309
Jesse Barnese70236a2009-09-21 10:42:27 -070014310/* Set up chip specific display functions */
14311static void intel_init_display(struct drm_device *dev)
14312{
14313 struct drm_i915_private *dev_priv = dev->dev_private;
14314
Daniel Vetteree9300b2013-06-03 22:40:22 +020014315 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
14316 dev_priv->display.find_dpll = g4x_find_best_dpll;
Chon Ming Leeef9348c2014-04-09 13:28:18 +030014317 else if (IS_CHERRYVIEW(dev))
14318 dev_priv->display.find_dpll = chv_find_best_dpll;
Daniel Vetteree9300b2013-06-03 22:40:22 +020014319 else if (IS_VALLEYVIEW(dev))
14320 dev_priv->display.find_dpll = vlv_find_best_dpll;
14321 else if (IS_PINEVIEW(dev))
14322 dev_priv->display.find_dpll = pnv_find_best_dpll;
14323 else
14324 dev_priv->display.find_dpll = i9xx_find_best_dpll;
14325
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014326 if (INTEL_INFO(dev)->gen >= 9) {
14327 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014328 dev_priv->display.get_initial_plane_config =
14329 skylake_get_initial_plane_config;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014330 dev_priv->display.crtc_compute_clock =
14331 haswell_crtc_compute_clock;
14332 dev_priv->display.crtc_enable = haswell_crtc_enable;
14333 dev_priv->display.crtc_disable = haswell_crtc_disable;
14334 dev_priv->display.off = ironlake_crtc_off;
14335 dev_priv->display.update_primary_plane =
14336 skylake_update_primary_plane;
14337 } else if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010014338 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014339 dev_priv->display.get_initial_plane_config =
14340 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira797d0252014-10-29 11:32:34 +020014341 dev_priv->display.crtc_compute_clock =
14342 haswell_crtc_compute_clock;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020014343 dev_priv->display.crtc_enable = haswell_crtc_enable;
14344 dev_priv->display.crtc_disable = haswell_crtc_disable;
Daniel Vetterdf8ad702014-06-25 22:02:03 +030014345 dev_priv->display.off = ironlake_crtc_off;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014346 dev_priv->display.update_primary_plane =
14347 ironlake_update_primary_plane;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030014348 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010014349 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014350 dev_priv->display.get_initial_plane_config =
14351 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +020014352 dev_priv->display.crtc_compute_clock =
14353 ironlake_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020014354 dev_priv->display.crtc_enable = ironlake_crtc_enable;
14355 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010014356 dev_priv->display.off = ironlake_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070014357 dev_priv->display.update_primary_plane =
14358 ironlake_update_primary_plane;
Jesse Barnes89b667f2013-04-18 14:51:36 -070014359 } else if (IS_VALLEYVIEW(dev)) {
14360 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014361 dev_priv->display.get_initial_plane_config =
14362 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020014363 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Jesse Barnes89b667f2013-04-18 14:51:36 -070014364 dev_priv->display.crtc_enable = valleyview_crtc_enable;
14365 dev_priv->display.crtc_disable = i9xx_crtc_disable;
14366 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070014367 dev_priv->display.update_primary_plane =
14368 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070014369 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010014370 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014371 dev_priv->display.get_initial_plane_config =
14372 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020014373 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020014374 dev_priv->display.crtc_enable = i9xx_crtc_enable;
14375 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010014376 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070014377 dev_priv->display.update_primary_plane =
14378 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070014379 }
Jesse Barnese70236a2009-09-21 10:42:27 -070014380
Jesse Barnese70236a2009-09-21 10:42:27 -070014381 /* Returns the core display clock speed */
Ville Syrjälä1652d192015-03-31 14:12:01 +030014382 if (IS_SKYLAKE(dev))
14383 dev_priv->display.get_display_clock_speed =
14384 skylake_get_display_clock_speed;
14385 else if (IS_BROADWELL(dev))
14386 dev_priv->display.get_display_clock_speed =
14387 broadwell_get_display_clock_speed;
14388 else if (IS_HASWELL(dev))
14389 dev_priv->display.get_display_clock_speed =
14390 haswell_get_display_clock_speed;
14391 else if (IS_VALLEYVIEW(dev))
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070014392 dev_priv->display.get_display_clock_speed =
14393 valleyview_get_display_clock_speed;
Ville Syrjäläb37a6432015-03-31 14:11:54 +030014394 else if (IS_GEN5(dev))
14395 dev_priv->display.get_display_clock_speed =
14396 ilk_get_display_clock_speed;
Ville Syrjäläa7c66cd2015-03-31 14:11:56 +030014397 else if (IS_I945G(dev) || IS_BROADWATER(dev) ||
14398 IS_GEN6(dev) || IS_IVYBRIDGE(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -070014399 dev_priv->display.get_display_clock_speed =
14400 i945_get_display_clock_speed;
14401 else if (IS_I915G(dev))
14402 dev_priv->display.get_display_clock_speed =
14403 i915_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020014404 else if (IS_I945GM(dev) || IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070014405 dev_priv->display.get_display_clock_speed =
14406 i9xx_misc_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020014407 else if (IS_PINEVIEW(dev))
14408 dev_priv->display.get_display_clock_speed =
14409 pnv_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070014410 else if (IS_I915GM(dev))
14411 dev_priv->display.get_display_clock_speed =
14412 i915gm_get_display_clock_speed;
14413 else if (IS_I865G(dev))
14414 dev_priv->display.get_display_clock_speed =
14415 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +020014416 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070014417 dev_priv->display.get_display_clock_speed =
14418 i855_get_display_clock_speed;
14419 else /* 852, 830 */
14420 dev_priv->display.get_display_clock_speed =
14421 i830_get_display_clock_speed;
14422
Jani Nikula7c10a2b2014-10-27 16:26:43 +020014423 if (IS_GEN5(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053014424 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053014425 } else if (IS_GEN6(dev)) {
14426 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053014427 } else if (IS_IVYBRIDGE(dev)) {
14428 /* FIXME: detect B0+ stepping and use auto training */
14429 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Paulo Zanoni059b2fe2014-09-02 16:53:57 -030014430 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053014431 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Jesse Barnes30a970c2013-11-04 13:48:12 -080014432 } else if (IS_VALLEYVIEW(dev)) {
14433 dev_priv->display.modeset_global_resources =
14434 valleyview_modeset_global_resources;
Vandana Kannanf8437dd12014-11-24 13:37:39 +053014435 } else if (IS_BROXTON(dev)) {
14436 dev_priv->display.modeset_global_resources =
14437 broxton_modeset_global_resources;
Jesse Barnese70236a2009-09-21 10:42:27 -070014438 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070014439
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070014440 switch (INTEL_INFO(dev)->gen) {
14441 case 2:
14442 dev_priv->display.queue_flip = intel_gen2_queue_flip;
14443 break;
14444
14445 case 3:
14446 dev_priv->display.queue_flip = intel_gen3_queue_flip;
14447 break;
14448
14449 case 4:
14450 case 5:
14451 dev_priv->display.queue_flip = intel_gen4_queue_flip;
14452 break;
14453
14454 case 6:
14455 dev_priv->display.queue_flip = intel_gen6_queue_flip;
14456 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070014457 case 7:
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070014458 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
Jesse Barnes7c9017e2011-06-16 12:18:54 -070014459 dev_priv->display.queue_flip = intel_gen7_queue_flip;
14460 break;
Damien Lespiau830c81d2014-11-13 17:51:46 +000014461 case 9:
Tvrtko Ursulinba343e02015-02-10 17:16:12 +000014462 /* Drop through - unsupported since execlist only. */
14463 default:
14464 /* Default just returns -ENODEV to indicate unsupported */
14465 dev_priv->display.queue_flip = intel_default_queue_flip;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070014466 }
Jani Nikula7bd688c2013-11-08 16:48:56 +020014467
14468 intel_panel_init_backlight_funcs(dev);
Ville Syrjäläe39b9992014-09-04 14:53:14 +030014469
14470 mutex_init(&dev_priv->pps_mutex);
Jesse Barnese70236a2009-09-21 10:42:27 -070014471}
14472
Jesse Barnesb690e962010-07-19 13:53:12 -070014473/*
14474 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
14475 * resume, or other times. This quirk makes sure that's the case for
14476 * affected systems.
14477 */
Akshay Joshi0206e352011-08-16 15:34:10 -040014478static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070014479{
14480 struct drm_i915_private *dev_priv = dev->dev_private;
14481
14482 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020014483 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070014484}
14485
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030014486static void quirk_pipeb_force(struct drm_device *dev)
14487{
14488 struct drm_i915_private *dev_priv = dev->dev_private;
14489
14490 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
14491 DRM_INFO("applying pipe b force quirk\n");
14492}
14493
Keith Packard435793d2011-07-12 14:56:22 -070014494/*
14495 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
14496 */
14497static void quirk_ssc_force_disable(struct drm_device *dev)
14498{
14499 struct drm_i915_private *dev_priv = dev->dev_private;
14500 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020014501 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070014502}
14503
Carsten Emde4dca20e2012-03-15 15:56:26 +010014504/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010014505 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
14506 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010014507 */
14508static void quirk_invert_brightness(struct drm_device *dev)
14509{
14510 struct drm_i915_private *dev_priv = dev->dev_private;
14511 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020014512 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070014513}
14514
Scot Doyle9c72cc62014-07-03 23:27:50 +000014515/* Some VBT's incorrectly indicate no backlight is present */
14516static void quirk_backlight_present(struct drm_device *dev)
14517{
14518 struct drm_i915_private *dev_priv = dev->dev_private;
14519 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
14520 DRM_INFO("applying backlight present quirk\n");
14521}
14522
Jesse Barnesb690e962010-07-19 13:53:12 -070014523struct intel_quirk {
14524 int device;
14525 int subsystem_vendor;
14526 int subsystem_device;
14527 void (*hook)(struct drm_device *dev);
14528};
14529
Egbert Eich5f85f172012-10-14 15:46:38 +020014530/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
14531struct intel_dmi_quirk {
14532 void (*hook)(struct drm_device *dev);
14533 const struct dmi_system_id (*dmi_id_list)[];
14534};
14535
14536static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
14537{
14538 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
14539 return 1;
14540}
14541
14542static const struct intel_dmi_quirk intel_dmi_quirks[] = {
14543 {
14544 .dmi_id_list = &(const struct dmi_system_id[]) {
14545 {
14546 .callback = intel_dmi_reverse_brightness,
14547 .ident = "NCR Corporation",
14548 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
14549 DMI_MATCH(DMI_PRODUCT_NAME, ""),
14550 },
14551 },
14552 { } /* terminating entry */
14553 },
14554 .hook = quirk_invert_brightness,
14555 },
14556};
14557
Ben Widawskyc43b5632012-04-16 14:07:40 -070014558static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070014559 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -040014560 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -070014561
Jesse Barnesb690e962010-07-19 13:53:12 -070014562 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
14563 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
14564
Jesse Barnesb690e962010-07-19 13:53:12 -070014565 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
14566 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
14567
Ville Syrjälä5f080c02014-08-15 01:22:06 +030014568 /* 830 needs to leave pipe A & dpll A up */
14569 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
14570
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030014571 /* 830 needs to leave pipe B & dpll B up */
14572 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
14573
Keith Packard435793d2011-07-12 14:56:22 -070014574 /* Lenovo U160 cannot use SSC on LVDS */
14575 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020014576
14577 /* Sony Vaio Y cannot use SSC on LVDS */
14578 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010014579
Alexander van Heukelumbe505f62013-12-28 21:00:39 +010014580 /* Acer Aspire 5734Z must invert backlight brightness */
14581 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
14582
14583 /* Acer/eMachines G725 */
14584 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
14585
14586 /* Acer/eMachines e725 */
14587 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
14588
14589 /* Acer/Packard Bell NCL20 */
14590 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
14591
14592 /* Acer Aspire 4736Z */
14593 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jani Nikula0f540c32014-01-13 17:30:34 +020014594
14595 /* Acer Aspire 5336 */
14596 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
Scot Doyle2e93a1a2014-07-03 23:27:51 +000014597
14598 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
14599 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
Scot Doyled4967d82014-07-03 23:27:52 +000014600
Scot Doyledfb3d47b2014-08-21 16:08:02 +000014601 /* Acer C720 Chromebook (Core i3 4005U) */
14602 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
14603
jens steinb2a96012014-10-28 20:25:53 +010014604 /* Apple Macbook 2,1 (Core 2 T7400) */
14605 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
14606
Scot Doyled4967d82014-07-03 23:27:52 +000014607 /* Toshiba CB35 Chromebook (Celeron 2955U) */
14608 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
Scot Doyle724cb062014-07-11 22:16:30 +000014609
14610 /* HP Chromebook 14 (Celeron 2955U) */
14611 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
Jani Nikulacf6f0af2015-02-19 10:53:39 +020014612
14613 /* Dell Chromebook 11 */
14614 { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present },
Jesse Barnesb690e962010-07-19 13:53:12 -070014615};
14616
14617static void intel_init_quirks(struct drm_device *dev)
14618{
14619 struct pci_dev *d = dev->pdev;
14620 int i;
14621
14622 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
14623 struct intel_quirk *q = &intel_quirks[i];
14624
14625 if (d->device == q->device &&
14626 (d->subsystem_vendor == q->subsystem_vendor ||
14627 q->subsystem_vendor == PCI_ANY_ID) &&
14628 (d->subsystem_device == q->subsystem_device ||
14629 q->subsystem_device == PCI_ANY_ID))
14630 q->hook(dev);
14631 }
Egbert Eich5f85f172012-10-14 15:46:38 +020014632 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
14633 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
14634 intel_dmi_quirks[i].hook(dev);
14635 }
Jesse Barnesb690e962010-07-19 13:53:12 -070014636}
14637
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014638/* Disable the VGA plane that we never use */
14639static void i915_disable_vga(struct drm_device *dev)
14640{
14641 struct drm_i915_private *dev_priv = dev->dev_private;
14642 u8 sr1;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020014643 u32 vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014644
Ville Syrjälä2b37c612014-01-22 21:32:38 +020014645 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014646 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070014647 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014648 sr1 = inb(VGA_SR_DATA);
14649 outb(sr1 | 1<<5, VGA_SR_DATA);
14650 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
14651 udelay(300);
14652
Ville Syrjälä01f5a622014-12-16 18:38:37 +020014653 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014654 POSTING_READ(vga_reg);
14655}
14656
Daniel Vetterf8175862012-04-10 15:50:11 +020014657void intel_modeset_init_hw(struct drm_device *dev)
14658{
Eugeni Dodonova8f78b52012-06-28 15:55:35 -030014659 intel_prepare_ddi(dev);
14660
Ville Syrjäläf8bf63f2014-06-13 13:37:54 +030014661 if (IS_VALLEYVIEW(dev))
14662 vlv_update_cdclk(dev);
14663
Daniel Vetterf8175862012-04-10 15:50:11 +020014664 intel_init_clock_gating(dev);
14665
Daniel Vetter8090c6b2012-06-24 16:42:32 +020014666 intel_enable_gt_powersave(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020014667}
14668
Jesse Barnes79e53942008-11-07 14:24:08 -080014669void intel_modeset_init(struct drm_device *dev)
14670{
Jesse Barnes652c3932009-08-17 13:31:43 -070014671 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau1fe47782014-03-03 17:31:47 +000014672 int sprite, ret;
Damien Lespiau8cc87b72014-03-03 17:31:44 +000014673 enum pipe pipe;
Jesse Barnes46f297f2014-03-07 08:57:48 -080014674 struct intel_crtc *crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -080014675
14676 drm_mode_config_init(dev);
14677
14678 dev->mode_config.min_width = 0;
14679 dev->mode_config.min_height = 0;
14680
Dave Airlie019d96c2011-09-29 16:20:42 +010014681 dev->mode_config.preferred_depth = 24;
14682 dev->mode_config.prefer_shadow = 1;
14683
Tvrtko Ursulin25bab382015-02-10 17:16:16 +000014684 dev->mode_config.allow_fb_modifiers = true;
14685
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020014686 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080014687
Jesse Barnesb690e962010-07-19 13:53:12 -070014688 intel_init_quirks(dev);
14689
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030014690 intel_init_pm(dev);
14691
Ben Widawskye3c74752013-04-05 13:12:39 -070014692 if (INTEL_INFO(dev)->num_pipes == 0)
14693 return;
14694
Jesse Barnese70236a2009-09-21 10:42:27 -070014695 intel_init_display(dev);
Jani Nikula7c10a2b2014-10-27 16:26:43 +020014696 intel_init_audio(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070014697
Chris Wilsona6c45cf2010-09-17 00:32:17 +010014698 if (IS_GEN2(dev)) {
14699 dev->mode_config.max_width = 2048;
14700 dev->mode_config.max_height = 2048;
14701 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070014702 dev->mode_config.max_width = 4096;
14703 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080014704 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010014705 dev->mode_config.max_width = 8192;
14706 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080014707 }
Damien Lespiau068be562014-03-28 14:17:49 +000014708
Ville Syrjälädc41c152014-08-13 11:57:05 +030014709 if (IS_845G(dev) || IS_I865G(dev)) {
14710 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
14711 dev->mode_config.cursor_height = 1023;
14712 } else if (IS_GEN2(dev)) {
Damien Lespiau068be562014-03-28 14:17:49 +000014713 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
14714 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
14715 } else {
14716 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
14717 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
14718 }
14719
Ben Widawsky5d4545a2013-01-17 12:45:15 -080014720 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080014721
Zhao Yakui28c97732009-10-09 11:39:41 +080014722 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070014723 INTEL_INFO(dev)->num_pipes,
14724 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080014725
Damien Lespiau055e3932014-08-18 13:49:10 +010014726 for_each_pipe(dev_priv, pipe) {
Damien Lespiau8cc87b72014-03-03 17:31:44 +000014727 intel_crtc_init(dev, pipe);
Damien Lespiau3bdcfc02015-02-28 14:54:09 +000014728 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau1fe47782014-03-03 17:31:47 +000014729 ret = intel_plane_init(dev, pipe, sprite);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070014730 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030014731 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +000014732 pipe_name(pipe), sprite_name(pipe, sprite), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070014733 }
Jesse Barnes79e53942008-11-07 14:24:08 -080014734 }
14735
Jesse Barnesf42bb702013-12-16 16:34:23 -080014736 intel_init_dpio(dev);
14737
Daniel Vettere72f9fb2013-06-05 13:34:06 +020014738 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010014739
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014740 /* Just disable it once at startup */
14741 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080014742 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000014743
14744 /* Just in case the BIOS is doing something questionable. */
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020014745 intel_fbc_disable(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080014746
Daniel Vetter6e9f7982014-05-29 23:54:47 +020014747 drm_modeset_lock_all(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080014748 intel_modeset_setup_hw_state(dev, false);
Daniel Vetter6e9f7982014-05-29 23:54:47 +020014749 drm_modeset_unlock_all(dev);
Jesse Barnes46f297f2014-03-07 08:57:48 -080014750
Damien Lespiaud3fcc802014-05-13 23:32:22 +010014751 for_each_intel_crtc(dev, crtc) {
Jesse Barnes46f297f2014-03-07 08:57:48 -080014752 if (!crtc->active)
14753 continue;
14754
Jesse Barnes46f297f2014-03-07 08:57:48 -080014755 /*
Jesse Barnes46f297f2014-03-07 08:57:48 -080014756 * Note that reserving the BIOS fb up front prevents us
14757 * from stuffing other stolen allocations like the ring
14758 * on top. This prevents some ugliness at boot time, and
14759 * can even allow for smooth boot transitions if the BIOS
14760 * fb is large enough for the active pipe configuration.
14761 */
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014762 if (dev_priv->display.get_initial_plane_config) {
14763 dev_priv->display.get_initial_plane_config(crtc,
Jesse Barnes46f297f2014-03-07 08:57:48 -080014764 &crtc->plane_config);
14765 /*
14766 * If the fb is shared between multiple heads, we'll
14767 * just get the first one.
14768 */
Daniel Vetterf6936e22015-03-26 12:17:05 +010014769 intel_find_initial_plane_obj(crtc, &crtc->plane_config);
Jesse Barnes46f297f2014-03-07 08:57:48 -080014770 }
Jesse Barnes46f297f2014-03-07 08:57:48 -080014771 }
Chris Wilson2c7111d2011-03-29 10:40:27 +010014772}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080014773
Daniel Vetter7fad7982012-07-04 17:51:47 +020014774static void intel_enable_pipe_a(struct drm_device *dev)
14775{
14776 struct intel_connector *connector;
14777 struct drm_connector *crt = NULL;
14778 struct intel_load_detect_pipe load_detect_temp;
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030014779 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
Daniel Vetter7fad7982012-07-04 17:51:47 +020014780
14781 /* We can't just switch on the pipe A, we need to set things up with a
14782 * proper mode and output configuration. As a gross hack, enable pipe A
14783 * by enabling the load detect pipe once. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020014784 for_each_intel_connector(dev, connector) {
Daniel Vetter7fad7982012-07-04 17:51:47 +020014785 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
14786 crt = &connector->base;
14787 break;
14788 }
14789 }
14790
14791 if (!crt)
14792 return;
14793
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030014794 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
Ander Conselvan de Oliveira49172fe2015-03-20 16:18:02 +020014795 intel_release_load_detect_pipe(crt, &load_detect_temp, ctx);
Daniel Vetter7fad7982012-07-04 17:51:47 +020014796}
14797
Daniel Vetterfa555832012-10-10 23:14:00 +020014798static bool
14799intel_check_plane_mapping(struct intel_crtc *crtc)
14800{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070014801 struct drm_device *dev = crtc->base.dev;
14802 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020014803 u32 reg, val;
14804
Ben Widawsky7eb552a2013-03-13 14:05:41 -070014805 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020014806 return true;
14807
14808 reg = DSPCNTR(!crtc->plane);
14809 val = I915_READ(reg);
14810
14811 if ((val & DISPLAY_PLANE_ENABLE) &&
14812 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
14813 return false;
14814
14815 return true;
14816}
14817
Daniel Vetter24929352012-07-02 20:28:59 +020014818static void intel_sanitize_crtc(struct intel_crtc *crtc)
14819{
14820 struct drm_device *dev = crtc->base.dev;
14821 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020014822 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +020014823
Daniel Vetter24929352012-07-02 20:28:59 +020014824 /* Clear any frame start delays used for debugging left by the BIOS */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020014825 reg = PIPECONF(crtc->config->cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +020014826 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
14827
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030014828 /* restore vblank interrupts to correct state */
Daniel Vetter96256042015-02-13 21:03:42 +010014829 drm_crtc_vblank_reset(&crtc->base);
Ville Syrjäläd297e102014-08-06 14:50:01 +030014830 if (crtc->active) {
14831 update_scanline_offset(crtc);
Daniel Vetter96256042015-02-13 21:03:42 +010014832 drm_crtc_vblank_on(&crtc->base);
14833 }
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030014834
Daniel Vetter24929352012-07-02 20:28:59 +020014835 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020014836 * disable the crtc (and hence change the state) if it is wrong. Note
14837 * that gen4+ has a fixed plane -> pipe mapping. */
14838 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020014839 struct intel_connector *connector;
14840 bool plane;
14841
Daniel Vetter24929352012-07-02 20:28:59 +020014842 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
14843 crtc->base.base.id);
14844
14845 /* Pipe has the wrong plane attached and the plane is active.
14846 * Temporarily change the plane mapping and disable everything
14847 * ... */
14848 plane = crtc->plane;
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030014849 to_intel_plane_state(crtc->base.primary->state)->visible = true;
Daniel Vetter24929352012-07-02 20:28:59 +020014850 crtc->plane = !plane;
Maarten Lankhorstce22dba2015-04-21 17:12:56 +030014851 intel_crtc_disable_planes(&crtc->base);
Daniel Vetter24929352012-07-02 20:28:59 +020014852 dev_priv->display.crtc_disable(&crtc->base);
14853 crtc->plane = plane;
14854
14855 /* ... and break all links. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020014856 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020014857 if (connector->encoder->base.crtc != &crtc->base)
14858 continue;
14859
Egbert Eich7f1950f2014-04-25 10:56:22 +020014860 connector->base.dpms = DRM_MODE_DPMS_OFF;
14861 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020014862 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020014863 /* multiple connectors may have the same encoder:
14864 * handle them and break crtc link separately */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020014865 for_each_intel_connector(dev, connector)
Egbert Eich7f1950f2014-04-25 10:56:22 +020014866 if (connector->encoder->base.crtc == &crtc->base) {
14867 connector->encoder->base.crtc = NULL;
14868 connector->encoder->connectors_active = false;
14869 }
Daniel Vetter24929352012-07-02 20:28:59 +020014870
14871 WARN_ON(crtc->active);
Matt Roper83d65732015-02-25 13:12:16 -080014872 crtc->base.state->enable = false;
Daniel Vetter24929352012-07-02 20:28:59 +020014873 crtc->base.enabled = false;
14874 }
Daniel Vetter24929352012-07-02 20:28:59 +020014875
Daniel Vetter7fad7982012-07-04 17:51:47 +020014876 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
14877 crtc->pipe == PIPE_A && !crtc->active) {
14878 /* BIOS forgot to enable pipe A, this mostly happens after
14879 * resume. Force-enable the pipe to fix this, the update_dpms
14880 * call below we restore the pipe to the right state, but leave
14881 * the required bits on. */
14882 intel_enable_pipe_a(dev);
14883 }
14884
Daniel Vetter24929352012-07-02 20:28:59 +020014885 /* Adjust the state of the output pipe according to whether we
14886 * have active connectors/encoders. */
14887 intel_crtc_update_dpms(&crtc->base);
14888
Matt Roper83d65732015-02-25 13:12:16 -080014889 if (crtc->active != crtc->base.state->enable) {
Daniel Vetter24929352012-07-02 20:28:59 +020014890 struct intel_encoder *encoder;
14891
14892 /* This can happen either due to bugs in the get_hw_state
14893 * functions or because the pipe is force-enabled due to the
14894 * pipe A quirk. */
14895 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
14896 crtc->base.base.id,
Matt Roper83d65732015-02-25 13:12:16 -080014897 crtc->base.state->enable ? "enabled" : "disabled",
Daniel Vetter24929352012-07-02 20:28:59 +020014898 crtc->active ? "enabled" : "disabled");
14899
Matt Roper83d65732015-02-25 13:12:16 -080014900 crtc->base.state->enable = crtc->active;
Daniel Vetter24929352012-07-02 20:28:59 +020014901 crtc->base.enabled = crtc->active;
14902
14903 /* Because we only establish the connector -> encoder ->
14904 * crtc links if something is active, this means the
14905 * crtc is now deactivated. Break the links. connector
14906 * -> encoder links are only establish when things are
14907 * actually up, hence no need to break them. */
14908 WARN_ON(crtc->active);
14909
14910 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
14911 WARN_ON(encoder->connectors_active);
14912 encoder->base.crtc = NULL;
14913 }
14914 }
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020014915
Ville Syrjäläa3ed6aa2014-09-03 14:09:52 +030014916 if (crtc->active || HAS_GMCH_DISPLAY(dev)) {
Daniel Vetter4cc31482014-03-24 00:01:41 +010014917 /*
14918 * We start out with underrun reporting disabled to avoid races.
14919 * For correct bookkeeping mark this on active crtcs.
14920 *
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020014921 * Also on gmch platforms we dont have any hardware bits to
14922 * disable the underrun reporting. Which means we need to start
14923 * out with underrun reporting disabled also on inactive pipes,
14924 * since otherwise we'll complain about the garbage we read when
14925 * e.g. coming up after runtime pm.
14926 *
Daniel Vetter4cc31482014-03-24 00:01:41 +010014927 * No protection against concurrent access is required - at
14928 * worst a fifo underrun happens which also sets this to false.
14929 */
14930 crtc->cpu_fifo_underrun_disabled = true;
14931 crtc->pch_fifo_underrun_disabled = true;
14932 }
Daniel Vetter24929352012-07-02 20:28:59 +020014933}
14934
14935static void intel_sanitize_encoder(struct intel_encoder *encoder)
14936{
14937 struct intel_connector *connector;
14938 struct drm_device *dev = encoder->base.dev;
14939
14940 /* We need to check both for a crtc link (meaning that the
14941 * encoder is active and trying to read from a pipe) and the
14942 * pipe itself being active. */
14943 bool has_active_crtc = encoder->base.crtc &&
14944 to_intel_crtc(encoder->base.crtc)->active;
14945
14946 if (encoder->connectors_active && !has_active_crtc) {
14947 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
14948 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030014949 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020014950
14951 /* Connector is active, but has no active pipe. This is
14952 * fallout from our resume register restoring. Disable
14953 * the encoder manually again. */
14954 if (encoder->base.crtc) {
14955 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
14956 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030014957 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020014958 encoder->disable(encoder);
Ville Syrjäläa62d1492014-06-28 02:04:01 +030014959 if (encoder->post_disable)
14960 encoder->post_disable(encoder);
Daniel Vetter24929352012-07-02 20:28:59 +020014961 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020014962 encoder->base.crtc = NULL;
14963 encoder->connectors_active = false;
Daniel Vetter24929352012-07-02 20:28:59 +020014964
14965 /* Inconsistent output/port/pipe state happens presumably due to
14966 * a bug in one of the get_hw_state functions. Or someplace else
14967 * in our code, like the register restore mess on resume. Clamp
14968 * things to off as a safer default. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020014969 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020014970 if (connector->encoder != encoder)
14971 continue;
Egbert Eich7f1950f2014-04-25 10:56:22 +020014972 connector->base.dpms = DRM_MODE_DPMS_OFF;
14973 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020014974 }
14975 }
14976 /* Enabled encoders without active connectors will be fixed in
14977 * the crtc fixup. */
14978}
14979
Imre Deak04098752014-02-18 00:02:16 +020014980void i915_redisable_vga_power_on(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010014981{
14982 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020014983 u32 vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010014984
Imre Deak04098752014-02-18 00:02:16 +020014985 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
14986 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
14987 i915_disable_vga(dev);
14988 }
14989}
14990
14991void i915_redisable_vga(struct drm_device *dev)
14992{
14993 struct drm_i915_private *dev_priv = dev->dev_private;
14994
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030014995 /* This function can be called both from intel_modeset_setup_hw_state or
14996 * at a very early point in our resume sequence, where the power well
14997 * structures are not yet restored. Since this function is at a very
14998 * paranoid "someone might have enabled VGA while we were not looking"
14999 * level, just check if the power well is enabled instead of trying to
15000 * follow the "don't touch the power well if we don't need it" policy
15001 * the rest of the driver uses. */
Daniel Vetterf458ebb2014-09-30 10:56:39 +020015002 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_VGA))
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030015003 return;
15004
Imre Deak04098752014-02-18 00:02:16 +020015005 i915_redisable_vga_power_on(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010015006}
15007
Ville Syrjälä98ec7732014-04-30 17:43:01 +030015008static bool primary_get_hw_state(struct intel_crtc *crtc)
15009{
15010 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
15011
15012 if (!crtc->active)
15013 return false;
15014
15015 return I915_READ(DSPCNTR(crtc->plane)) & DISPLAY_PLANE_ENABLE;
15016}
15017
Daniel Vetter30e984d2013-06-05 13:34:17 +020015018static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020015019{
15020 struct drm_i915_private *dev_priv = dev->dev_private;
15021 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020015022 struct intel_crtc *crtc;
15023 struct intel_encoder *encoder;
15024 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020015025 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020015026
Damien Lespiaud3fcc802014-05-13 23:32:22 +010015027 for_each_intel_crtc(dev, crtc) {
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030015028 struct drm_plane *primary = crtc->base.primary;
15029 struct intel_plane_state *plane_state;
15030
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020015031 memset(crtc->config, 0, sizeof(*crtc->config));
Daniel Vetter3b117c82013-04-17 20:15:07 +020015032
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020015033 crtc->config->quirks |= PIPE_CONFIG_QUIRK_INHERITED_MODE;
Daniel Vetter99535992014-04-13 12:00:33 +020015034
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010015035 crtc->active = dev_priv->display.get_pipe_config(crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020015036 crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020015037
Matt Roper83d65732015-02-25 13:12:16 -080015038 crtc->base.state->enable = crtc->active;
Daniel Vetter24929352012-07-02 20:28:59 +020015039 crtc->base.enabled = crtc->active;
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030015040
15041 plane_state = to_intel_plane_state(primary->state);
15042 plane_state->visible = primary_get_hw_state(crtc);
Daniel Vetter24929352012-07-02 20:28:59 +020015043
15044 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
15045 crtc->base.base.id,
15046 crtc->active ? "enabled" : "disabled");
15047 }
15048
Daniel Vetter53589012013-06-05 13:34:16 +020015049 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
15050 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
15051
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015052 pll->on = pll->get_hw_state(dev_priv, pll,
15053 &pll->config.hw_state);
Daniel Vetter53589012013-06-05 13:34:16 +020015054 pll->active = 0;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015055 pll->config.crtc_mask = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010015056 for_each_intel_crtc(dev, crtc) {
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020015057 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll) {
Daniel Vetter53589012013-06-05 13:34:16 +020015058 pll->active++;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015059 pll->config.crtc_mask |= 1 << crtc->pipe;
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020015060 }
Daniel Vetter53589012013-06-05 13:34:16 +020015061 }
Daniel Vetter53589012013-06-05 13:34:16 +020015062
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020015063 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015064 pll->name, pll->config.crtc_mask, pll->on);
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030015065
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015066 if (pll->config.crtc_mask)
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030015067 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
Daniel Vetter53589012013-06-05 13:34:16 +020015068 }
15069
Damien Lespiaub2784e12014-08-05 11:29:37 +010015070 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020015071 pipe = 0;
15072
15073 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -070015074 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
15075 encoder->base.crtc = &crtc->base;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020015076 encoder->get_config(encoder, crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020015077 } else {
15078 encoder->base.crtc = NULL;
15079 }
15080
15081 encoder->connectors_active = false;
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010015082 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
Daniel Vetter24929352012-07-02 20:28:59 +020015083 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030015084 encoder->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020015085 encoder->base.crtc ? "enabled" : "disabled",
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010015086 pipe_name(pipe));
Daniel Vetter24929352012-07-02 20:28:59 +020015087 }
15088
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020015089 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020015090 if (connector->get_hw_state(connector)) {
15091 connector->base.dpms = DRM_MODE_DPMS_ON;
15092 connector->encoder->connectors_active = true;
15093 connector->base.encoder = &connector->encoder->base;
15094 } else {
15095 connector->base.dpms = DRM_MODE_DPMS_OFF;
15096 connector->base.encoder = NULL;
15097 }
15098 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
15099 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030015100 connector->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020015101 connector->base.encoder ? "enabled" : "disabled");
15102 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020015103}
15104
15105/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
15106 * and i915 state tracking structures. */
15107void intel_modeset_setup_hw_state(struct drm_device *dev,
15108 bool force_restore)
15109{
15110 struct drm_i915_private *dev_priv = dev->dev_private;
15111 enum pipe pipe;
Daniel Vetter30e984d2013-06-05 13:34:17 +020015112 struct intel_crtc *crtc;
15113 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020015114 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020015115
15116 intel_modeset_readout_hw_state(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020015117
Jesse Barnesbabea612013-06-26 18:57:38 +030015118 /*
15119 * Now that we have the config, copy it to each CRTC struct
15120 * Note that this could go away if we move to using crtc_config
15121 * checking everywhere.
15122 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010015123 for_each_intel_crtc(dev, crtc) {
Jani Nikulad330a952014-01-21 11:24:25 +020015124 if (crtc->active && i915.fastboot) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020015125 intel_mode_from_pipe_config(&crtc->base.mode,
15126 crtc->config);
Jesse Barnesbabea612013-06-26 18:57:38 +030015127 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
15128 crtc->base.base.id);
15129 drm_mode_debug_printmodeline(&crtc->base.mode);
15130 }
15131 }
15132
Daniel Vetter24929352012-07-02 20:28:59 +020015133 /* HW state is read out, now we need to sanitize this mess. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010015134 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020015135 intel_sanitize_encoder(encoder);
15136 }
15137
Damien Lespiau055e3932014-08-18 13:49:10 +010015138 for_each_pipe(dev_priv, pipe) {
Daniel Vetter24929352012-07-02 20:28:59 +020015139 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
15140 intel_sanitize_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020015141 intel_dump_pipe_config(crtc, crtc->config,
15142 "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020015143 }
Daniel Vetter9a935852012-07-05 22:34:27 +020015144
Ander Conselvan de Oliveirad29b2f92015-03-20 16:18:05 +020015145 intel_modeset_update_connector_atomic_state(dev);
15146
Daniel Vetter35c95372013-07-17 06:55:04 +020015147 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
15148 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
15149
15150 if (!pll->on || pll->active)
15151 continue;
15152
15153 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
15154
15155 pll->disable(dev_priv, pll);
15156 pll->on = false;
15157 }
15158
Pradeep Bhat30789992014-11-04 17:06:45 +000015159 if (IS_GEN9(dev))
15160 skl_wm_get_hw_state(dev);
15161 else if (HAS_PCH_SPLIT(dev))
Ville Syrjälä243e6a42013-10-14 14:55:24 +030015162 ilk_wm_get_hw_state(dev);
15163
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010015164 if (force_restore) {
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030015165 i915_redisable_vga(dev);
15166
Daniel Vetterf30da182013-04-11 20:22:50 +020015167 /*
15168 * We need to use raw interfaces for restoring state to avoid
15169 * checking (bogus) intermediate states.
15170 */
Damien Lespiau055e3932014-08-18 13:49:10 +010015171 for_each_pipe(dev_priv, pipe) {
Jesse Barnesb5644d02013-03-26 13:25:27 -070015172 struct drm_crtc *crtc =
15173 dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vetterf30da182013-04-11 20:22:50 +020015174
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020015175 intel_crtc_restore_mode(crtc);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010015176 }
15177 } else {
15178 intel_modeset_update_staged_output_state(dev);
15179 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020015180
15181 intel_modeset_check_state(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +010015182}
15183
15184void intel_modeset_gem_init(struct drm_device *dev)
15185{
Jesse Barnes92122782014-10-09 12:57:42 -070015186 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes484b41d2014-03-07 08:57:55 -080015187 struct drm_crtc *c;
Matt Roper2ff8fde2014-07-08 07:50:07 -070015188 struct drm_i915_gem_object *obj;
Tvrtko Ursuline0d61492015-04-13 16:03:03 +010015189 int ret;
Jesse Barnes484b41d2014-03-07 08:57:55 -080015190
Imre Deakae484342014-03-31 15:10:44 +030015191 mutex_lock(&dev->struct_mutex);
15192 intel_init_gt_powersave(dev);
15193 mutex_unlock(&dev->struct_mutex);
15194
Jesse Barnes92122782014-10-09 12:57:42 -070015195 /*
15196 * There may be no VBT; and if the BIOS enabled SSC we can
15197 * just keep using it to avoid unnecessary flicker. Whereas if the
15198 * BIOS isn't using it, don't assume it will work even if the VBT
15199 * indicates as much.
15200 */
15201 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
15202 dev_priv->vbt.lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
15203 DREF_SSC1_ENABLE);
15204
Chris Wilson1833b132012-05-09 11:56:28 +010015205 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020015206
15207 intel_setup_overlay(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -080015208
15209 /*
15210 * Make sure any fbs we allocated at startup are properly
15211 * pinned & fenced. When we do the allocation it's too early
15212 * for this.
15213 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010015214 for_each_crtc(dev, c) {
Matt Roper2ff8fde2014-07-08 07:50:07 -070015215 obj = intel_fb_obj(c->primary->fb);
15216 if (obj == NULL)
Jesse Barnes484b41d2014-03-07 08:57:55 -080015217 continue;
15218
Tvrtko Ursuline0d61492015-04-13 16:03:03 +010015219 mutex_lock(&dev->struct_mutex);
15220 ret = intel_pin_and_fence_fb_obj(c->primary,
15221 c->primary->fb,
15222 c->primary->state,
15223 NULL);
15224 mutex_unlock(&dev->struct_mutex);
15225 if (ret) {
Jesse Barnes484b41d2014-03-07 08:57:55 -080015226 DRM_ERROR("failed to pin boot fb on pipe %d\n",
15227 to_intel_crtc(c)->pipe);
Dave Airlie66e514c2014-04-03 07:51:54 +100015228 drm_framebuffer_unreference(c->primary->fb);
15229 c->primary->fb = NULL;
Matt Roperafd65eb2015-02-03 13:10:04 -080015230 update_state_fb(c->primary);
Jesse Barnes484b41d2014-03-07 08:57:55 -080015231 }
15232 }
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020015233
15234 intel_backlight_register(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080015235}
15236
Imre Deak4932e2c2014-02-11 17:12:48 +020015237void intel_connector_unregister(struct intel_connector *intel_connector)
15238{
15239 struct drm_connector *connector = &intel_connector->base;
15240
15241 intel_panel_destroy_backlight(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +010015242 drm_connector_unregister(connector);
Imre Deak4932e2c2014-02-11 17:12:48 +020015243}
15244
Jesse Barnes79e53942008-11-07 14:24:08 -080015245void intel_modeset_cleanup(struct drm_device *dev)
15246{
Jesse Barnes652c3932009-08-17 13:31:43 -070015247 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid9255d52013-09-26 20:05:59 -030015248 struct drm_connector *connector;
Jesse Barnes652c3932009-08-17 13:31:43 -070015249
Imre Deak2eb52522014-11-19 15:30:05 +020015250 intel_disable_gt_powersave(dev);
15251
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020015252 intel_backlight_unregister(dev);
15253
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015254 /*
15255 * Interrupts and polling as the first thing to avoid creating havoc.
Imre Deak2eb52522014-11-19 15:30:05 +020015256 * Too much stuff here (turning of connectors, ...) would
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015257 * experience fancy races otherwise.
15258 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +020015259 intel_irq_uninstall(dev_priv);
Jesse Barneseb21b922014-06-20 11:57:33 -070015260
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015261 /*
15262 * Due to the hpd irq storm handling the hotplug work can re-arm the
15263 * poll handlers. Hence disable polling after hpd handling is shut down.
15264 */
Keith Packardf87ea762010-10-03 19:36:26 -070015265 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015266
Jesse Barnes652c3932009-08-17 13:31:43 -070015267 mutex_lock(&dev->struct_mutex);
15268
Jesse Barnes723bfd72010-10-07 16:01:13 -070015269 intel_unregister_dsm_handler();
15270
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -020015271 intel_fbc_disable(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070015272
Kristian Høgsberg69341a52009-11-11 12:19:17 -050015273 mutex_unlock(&dev->struct_mutex);
15274
Chris Wilson1630fe72011-07-08 12:22:42 +010015275 /* flush any delayed tasks or pending work */
15276 flush_scheduled_work();
15277
Jani Nikuladb31af1d2013-11-08 16:48:53 +020015278 /* destroy the backlight and sysfs files before encoders/connectors */
15279 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Imre Deak4932e2c2014-02-11 17:12:48 +020015280 struct intel_connector *intel_connector;
15281
15282 intel_connector = to_intel_connector(connector);
15283 intel_connector->unregister(intel_connector);
Jani Nikuladb31af1d2013-11-08 16:48:53 +020015284 }
Paulo Zanonid9255d52013-09-26 20:05:59 -030015285
Jesse Barnes79e53942008-11-07 14:24:08 -080015286 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010015287
15288 intel_cleanup_overlay(dev);
Imre Deakae484342014-03-31 15:10:44 +030015289
15290 mutex_lock(&dev->struct_mutex);
15291 intel_cleanup_gt_powersave(dev);
15292 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080015293}
15294
Dave Airlie28d52042009-09-21 14:33:58 +100015295/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +080015296 * Return which encoder is currently attached for connector.
15297 */
Chris Wilsondf0e9242010-09-09 16:20:55 +010015298struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -080015299{
Chris Wilsondf0e9242010-09-09 16:20:55 +010015300 return &intel_attached_encoder(connector)->base;
15301}
Jesse Barnes79e53942008-11-07 14:24:08 -080015302
Chris Wilsondf0e9242010-09-09 16:20:55 +010015303void intel_connector_attach_encoder(struct intel_connector *connector,
15304 struct intel_encoder *encoder)
15305{
15306 connector->encoder = encoder;
15307 drm_mode_connector_attach_encoder(&connector->base,
15308 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080015309}
Dave Airlie28d52042009-09-21 14:33:58 +100015310
15311/*
15312 * set vga decode state - true == enable VGA decode
15313 */
15314int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
15315{
15316 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona885b3c2013-12-17 14:34:50 +000015317 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
Dave Airlie28d52042009-09-21 14:33:58 +100015318 u16 gmch_ctrl;
15319
Chris Wilson75fa0412014-02-07 18:37:02 -020015320 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
15321 DRM_ERROR("failed to read control word\n");
15322 return -EIO;
15323 }
15324
Chris Wilsonc0cc8a52014-02-07 18:37:03 -020015325 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
15326 return 0;
15327
Dave Airlie28d52042009-09-21 14:33:58 +100015328 if (state)
15329 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
15330 else
15331 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
Chris Wilson75fa0412014-02-07 18:37:02 -020015332
15333 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
15334 DRM_ERROR("failed to write control word\n");
15335 return -EIO;
15336 }
15337
Dave Airlie28d52042009-09-21 14:33:58 +100015338 return 0;
15339}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015340
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015341struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030015342
15343 u32 power_well_driver;
15344
Chris Wilson63b66e52013-08-08 15:12:06 +020015345 int num_transcoders;
15346
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015347 struct intel_cursor_error_state {
15348 u32 control;
15349 u32 position;
15350 u32 base;
15351 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010015352 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015353
15354 struct intel_pipe_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020015355 bool power_domain_on;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015356 u32 source;
Imre Deakf301b1e2014-04-18 15:55:04 +030015357 u32 stat;
Damien Lespiau52331302012-08-15 19:23:25 +010015358 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015359
15360 struct intel_plane_error_state {
15361 u32 control;
15362 u32 stride;
15363 u32 size;
15364 u32 pos;
15365 u32 addr;
15366 u32 surface;
15367 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010015368 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020015369
15370 struct intel_transcoder_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020015371 bool power_domain_on;
Chris Wilson63b66e52013-08-08 15:12:06 +020015372 enum transcoder cpu_transcoder;
15373
15374 u32 conf;
15375
15376 u32 htotal;
15377 u32 hblank;
15378 u32 hsync;
15379 u32 vtotal;
15380 u32 vblank;
15381 u32 vsync;
15382 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015383};
15384
15385struct intel_display_error_state *
15386intel_display_capture_error_state(struct drm_device *dev)
15387{
Jani Nikulafbee40d2014-03-31 14:27:18 +030015388 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015389 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020015390 int transcoders[] = {
15391 TRANSCODER_A,
15392 TRANSCODER_B,
15393 TRANSCODER_C,
15394 TRANSCODER_EDP,
15395 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015396 int i;
15397
Chris Wilson63b66e52013-08-08 15:12:06 +020015398 if (INTEL_INFO(dev)->num_pipes == 0)
15399 return NULL;
15400
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020015401 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015402 if (error == NULL)
15403 return NULL;
15404
Imre Deak190be112013-11-25 17:15:31 +020015405 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030015406 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
15407
Damien Lespiau055e3932014-08-18 13:49:10 +010015408 for_each_pipe(dev_priv, i) {
Imre Deakddf9c532013-11-27 22:02:02 +020015409 error->pipe[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020015410 __intel_display_power_is_enabled(dev_priv,
15411 POWER_DOMAIN_PIPE(i));
Imre Deakddf9c532013-11-27 22:02:02 +020015412 if (!error->pipe[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020015413 continue;
15414
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030015415 error->cursor[i].control = I915_READ(CURCNTR(i));
15416 error->cursor[i].position = I915_READ(CURPOS(i));
15417 error->cursor[i].base = I915_READ(CURBASE(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015418
15419 error->plane[i].control = I915_READ(DSPCNTR(i));
15420 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030015421 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030015422 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030015423 error->plane[i].pos = I915_READ(DSPPOS(i));
15424 }
Paulo Zanonica291362013-03-06 20:03:14 -030015425 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
15426 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015427 if (INTEL_INFO(dev)->gen >= 4) {
15428 error->plane[i].surface = I915_READ(DSPSURF(i));
15429 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
15430 }
15431
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015432 error->pipe[i].source = I915_READ(PIPESRC(i));
Imre Deakf301b1e2014-04-18 15:55:04 +030015433
Sonika Jindal3abfce72014-07-21 15:23:43 +053015434 if (HAS_GMCH_DISPLAY(dev))
Imre Deakf301b1e2014-04-18 15:55:04 +030015435 error->pipe[i].stat = I915_READ(PIPESTAT(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020015436 }
15437
15438 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
15439 if (HAS_DDI(dev_priv->dev))
15440 error->num_transcoders++; /* Account for eDP. */
15441
15442 for (i = 0; i < error->num_transcoders; i++) {
15443 enum transcoder cpu_transcoder = transcoders[i];
15444
Imre Deakddf9c532013-11-27 22:02:02 +020015445 error->transcoder[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020015446 __intel_display_power_is_enabled(dev_priv,
Paulo Zanoni38cc1da2013-12-20 15:09:41 -020015447 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020015448 if (!error->transcoder[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020015449 continue;
15450
Chris Wilson63b66e52013-08-08 15:12:06 +020015451 error->transcoder[i].cpu_transcoder = cpu_transcoder;
15452
15453 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
15454 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
15455 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
15456 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
15457 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
15458 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
15459 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015460 }
15461
15462 return error;
15463}
15464
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015465#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
15466
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015467void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015468intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015469 struct drm_device *dev,
15470 struct intel_display_error_state *error)
15471{
Damien Lespiau055e3932014-08-18 13:49:10 +010015472 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015473 int i;
15474
Chris Wilson63b66e52013-08-08 15:12:06 +020015475 if (!error)
15476 return;
15477
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015478 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Imre Deak190be112013-11-25 17:15:31 +020015479 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015480 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030015481 error->power_well_driver);
Damien Lespiau055e3932014-08-18 13:49:10 +010015482 for_each_pipe(dev_priv, i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015483 err_printf(m, "Pipe [%d]:\n", i);
Imre Deakddf9c532013-11-27 22:02:02 +020015484 err_printf(m, " Power: %s\n",
15485 error->pipe[i].power_domain_on ? "on" : "off");
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015486 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Imre Deakf301b1e2014-04-18 15:55:04 +030015487 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015488
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015489 err_printf(m, "Plane [%d]:\n", i);
15490 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
15491 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030015492 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015493 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
15494 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030015495 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030015496 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015497 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015498 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015499 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
15500 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015501 }
15502
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015503 err_printf(m, "Cursor [%d]:\n", i);
15504 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
15505 err_printf(m, " POS: %08x\n", error->cursor[i].position);
15506 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015507 }
Chris Wilson63b66e52013-08-08 15:12:06 +020015508
15509 for (i = 0; i < error->num_transcoders; i++) {
Chris Wilson1cf84bb2013-10-21 09:10:33 +010015510 err_printf(m, "CPU transcoder: %c\n",
Chris Wilson63b66e52013-08-08 15:12:06 +020015511 transcoder_name(error->transcoder[i].cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020015512 err_printf(m, " Power: %s\n",
15513 error->transcoder[i].power_domain_on ? "on" : "off");
Chris Wilson63b66e52013-08-08 15:12:06 +020015514 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
15515 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
15516 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
15517 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
15518 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
15519 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
15520 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
15521 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015522}
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030015523
15524void intel_modeset_preclose(struct drm_device *dev, struct drm_file *file)
15525{
15526 struct intel_crtc *crtc;
15527
15528 for_each_intel_crtc(dev, crtc) {
15529 struct intel_unpin_work *work;
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030015530
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020015531 spin_lock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030015532
15533 work = crtc->unpin_work;
15534
15535 if (work && work->event &&
15536 work->event->base.file_priv == file) {
15537 kfree(work->event);
15538 work->event = NULL;
15539 }
15540
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020015541 spin_unlock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030015542 }
15543}